]> git.proxmox.com Git - mirror_frr.git/blob - lib/prefix.c
Merge pull request #4722 from ak503/static
[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(const 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 /* If given string is valid return 1 else 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_pton(AF_INET, cp, &p->prefix);
885 XFREE(MTYPE_TMP, cp);
886 if (ret == 0)
887 return 0;
888
889 /* Get prefix length. */
890 plen = (uint8_t)atoi(++pnt);
891 if (plen > IPV4_MAX_PREFIXLEN)
892 return 0;
893
894 p->family = AF_INET;
895 p->prefixlen = plen;
896 }
897
898 return ret;
899 }
900
901 /* When string format is invalid return 0. */
902 int str2prefix_eth(const char *str, struct prefix_eth *p)
903 {
904 int ret = 0;
905 int plen = 48;
906 char *pnt;
907 char *cp = NULL;
908 const char *str_addr = str;
909 unsigned int a[6];
910 int i;
911 bool slash = false;
912
913 if (!strcmp(str, "any")) {
914 memset(p, 0, sizeof(*p));
915 p->family = AF_ETHERNET;
916 return 1;
917 }
918
919 /* Find slash inside string. */
920 pnt = strchr(str, '/');
921
922 if (pnt) {
923 /* Get prefix length. */
924 plen = (uint8_t)atoi(++pnt);
925 if (plen > 48) {
926 ret = 0;
927 goto done;
928 }
929
930 cp = XMALLOC(MTYPE_TMP, (pnt - str) + 1);
931 memcpy(cp, str, pnt - str);
932 *(cp + (pnt - str)) = '\0';
933
934 str_addr = cp;
935 slash = true;
936 }
937
938 /* Convert string to prefix. */
939 if (sscanf(str_addr, "%2x:%2x:%2x:%2x:%2x:%2x", a + 0, a + 1, a + 2,
940 a + 3, a + 4, a + 5)
941 != 6) {
942 ret = 0;
943 goto done;
944 }
945 for (i = 0; i < 6; ++i) {
946 p->eth_addr.octet[i] = a[i] & 0xff;
947 }
948 p->prefixlen = plen;
949 p->family = AF_ETHERNET;
950
951 /*
952 * special case to allow old configurations to work
953 * Since all zero's is implicitly meant to allow
954 * a comparison to zero, let's assume
955 */
956 if (!slash && is_zero_mac(&(p->eth_addr)))
957 p->prefixlen = 0;
958
959 ret = 1;
960
961 done:
962 XFREE(MTYPE_TMP, cp);
963
964 return ret;
965 }
966
967 /* Convert masklen into IP address's netmask (network byte order). */
968 void masklen2ip(const int masklen, struct in_addr *netmask)
969 {
970 assert(masklen >= 0 && masklen <= IPV4_MAX_BITLEN);
971
972 /* left shift is only defined for less than the size of the type.
973 * we unconditionally use long long in case the target platform
974 * has defined behaviour for << 32 (or has a 64-bit left shift) */
975
976 if (sizeof(unsigned long long) > 4)
977 netmask->s_addr = htonl(0xffffffffULL << (32 - masklen));
978 else
979 netmask->s_addr =
980 htonl(masklen ? 0xffffffffU << (32 - masklen) : 0);
981 }
982
983 /* Convert IP address's netmask into integer. We assume netmask is
984 * sequential one. Argument netmask should be network byte order. */
985 uint8_t ip_masklen(struct in_addr netmask)
986 {
987 uint32_t tmp = ~ntohl(netmask.s_addr);
988
989 /*
990 * clz: count leading zeroes. sadly, the behaviour of this builtin is
991 * undefined for a 0 argument, even though most CPUs give 32
992 */
993 return tmp ? __builtin_clz(tmp) : 32;
994 }
995
996 /* Apply mask to IPv4 prefix (network byte order). */
997 void apply_mask_ipv4(struct prefix_ipv4 *p)
998 {
999 struct in_addr mask;
1000 masklen2ip(p->prefixlen, &mask);
1001 p->prefix.s_addr &= mask.s_addr;
1002 }
1003
1004 /* If prefix is 0.0.0.0/0 then return 1 else return 0. */
1005 int prefix_ipv4_any(const struct prefix_ipv4 *p)
1006 {
1007 return (p->prefix.s_addr == 0 && p->prefixlen == 0);
1008 }
1009
1010 /* Allocate a new ip version 6 route */
1011 struct prefix_ipv6 *prefix_ipv6_new(void)
1012 {
1013 struct prefix_ipv6 *p;
1014
1015 /* Allocate a full-size struct prefix to avoid problems with structure
1016 size mismatches. */
1017 p = (struct prefix_ipv6 *)prefix_new();
1018 p->family = AF_INET6;
1019 return p;
1020 }
1021
1022 /* Free prefix for IPv6. */
1023 void prefix_ipv6_free(struct prefix_ipv6 *p)
1024 {
1025 prefix_free((struct prefix *)p);
1026 }
1027
1028 /* If given string is valid return 1 else return 0 */
1029 int str2prefix_ipv6(const char *str, struct prefix_ipv6 *p)
1030 {
1031 char *pnt;
1032 char *cp;
1033 int ret;
1034
1035 pnt = strchr(str, '/');
1036
1037 /* If string doesn't contain `/' treat it as host route. */
1038 if (pnt == NULL) {
1039 ret = inet_pton(AF_INET6, str, &p->prefix);
1040 if (ret == 0)
1041 return 0;
1042 p->prefixlen = IPV6_MAX_BITLEN;
1043 } else {
1044 int plen;
1045
1046 cp = XMALLOC(MTYPE_TMP, (pnt - str) + 1);
1047 memcpy(cp, str, pnt - str);
1048 *(cp + (pnt - str)) = '\0';
1049 ret = inet_pton(AF_INET6, cp, &p->prefix);
1050 XFREE(MTYPE_TMP, cp);
1051 if (ret == 0)
1052 return 0;
1053 plen = (uint8_t)atoi(++pnt);
1054 if (plen > IPV6_MAX_BITLEN)
1055 return 0;
1056 p->prefixlen = plen;
1057 }
1058 p->family = AF_INET6;
1059
1060 return ret;
1061 }
1062
1063 /* Convert struct in6_addr netmask into integer.
1064 * FIXME return uint8_t as ip_maskleni() does. */
1065 int ip6_masklen(struct in6_addr netmask)
1066 {
1067 int len = 0;
1068 unsigned char val;
1069 unsigned char *pnt;
1070
1071 pnt = (unsigned char *)&netmask;
1072
1073 while ((*pnt == 0xff) && len < IPV6_MAX_BITLEN) {
1074 len += 8;
1075 pnt++;
1076 }
1077
1078 if (len < IPV6_MAX_BITLEN) {
1079 val = *pnt;
1080 while (val) {
1081 len++;
1082 val <<= 1;
1083 }
1084 }
1085 return len;
1086 }
1087
1088 void masklen2ip6(const int masklen, struct in6_addr *netmask)
1089 {
1090 assert(masklen >= 0 && masklen <= IPV6_MAX_BITLEN);
1091 memcpy(netmask, maskbytes6 + masklen, sizeof(struct in6_addr));
1092 }
1093
1094 void apply_mask_ipv6(struct prefix_ipv6 *p)
1095 {
1096 uint8_t *pnt;
1097 int index;
1098 int offset;
1099
1100 index = p->prefixlen / 8;
1101
1102 if (index < 16) {
1103 pnt = (uint8_t *)&p->prefix;
1104 offset = p->prefixlen % 8;
1105
1106 pnt[index] &= maskbit[offset];
1107 index++;
1108
1109 while (index < 16)
1110 pnt[index++] = 0;
1111 }
1112 }
1113
1114 void apply_mask(struct prefix *p)
1115 {
1116 switch (p->family) {
1117 case AF_INET:
1118 apply_mask_ipv4((struct prefix_ipv4 *)p);
1119 break;
1120 case AF_INET6:
1121 apply_mask_ipv6((struct prefix_ipv6 *)p);
1122 break;
1123 default:
1124 break;
1125 }
1126 return;
1127 }
1128
1129 /* Utility function of convert between struct prefix <=> union sockunion.
1130 * FIXME This function isn't used anywhere. */
1131 struct prefix *sockunion2prefix(const union sockunion *dest,
1132 const union sockunion *mask)
1133 {
1134 if (dest->sa.sa_family == AF_INET) {
1135 struct prefix_ipv4 *p;
1136
1137 p = prefix_ipv4_new();
1138 p->family = AF_INET;
1139 p->prefix = dest->sin.sin_addr;
1140 p->prefixlen = ip_masklen(mask->sin.sin_addr);
1141 return (struct prefix *)p;
1142 }
1143 if (dest->sa.sa_family == AF_INET6) {
1144 struct prefix_ipv6 *p;
1145
1146 p = prefix_ipv6_new();
1147 p->family = AF_INET6;
1148 p->prefixlen = ip6_masklen(mask->sin6.sin6_addr);
1149 memcpy(&p->prefix, &dest->sin6.sin6_addr,
1150 sizeof(struct in6_addr));
1151 return (struct prefix *)p;
1152 }
1153 return NULL;
1154 }
1155
1156 /* Utility function of convert between struct prefix <=> union sockunion. */
1157 struct prefix *sockunion2hostprefix(const union sockunion *su,
1158 struct prefix *prefix)
1159 {
1160 if (su->sa.sa_family == AF_INET) {
1161 struct prefix_ipv4 *p;
1162
1163 p = prefix ? (struct prefix_ipv4 *)prefix : prefix_ipv4_new();
1164 p->family = AF_INET;
1165 p->prefix = su->sin.sin_addr;
1166 p->prefixlen = IPV4_MAX_BITLEN;
1167 return (struct prefix *)p;
1168 }
1169 if (su->sa.sa_family == AF_INET6) {
1170 struct prefix_ipv6 *p;
1171
1172 p = prefix ? (struct prefix_ipv6 *)prefix : prefix_ipv6_new();
1173 p->family = AF_INET6;
1174 p->prefixlen = IPV6_MAX_BITLEN;
1175 memcpy(&p->prefix, &su->sin6.sin6_addr,
1176 sizeof(struct in6_addr));
1177 return (struct prefix *)p;
1178 }
1179 return NULL;
1180 }
1181
1182 void prefix2sockunion(const struct prefix *p, union sockunion *su)
1183 {
1184 memset(su, 0, sizeof(*su));
1185
1186 su->sa.sa_family = p->family;
1187 if (p->family == AF_INET)
1188 su->sin.sin_addr = p->u.prefix4;
1189 if (p->family == AF_INET6)
1190 memcpy(&su->sin6.sin6_addr, &p->u.prefix6,
1191 sizeof(struct in6_addr));
1192 }
1193
1194 int prefix_blen(const struct prefix *p)
1195 {
1196 switch (p->family) {
1197 case AF_INET:
1198 return IPV4_MAX_BYTELEN;
1199 break;
1200 case AF_INET6:
1201 return IPV6_MAX_BYTELEN;
1202 break;
1203 case AF_ETHERNET:
1204 return ETH_ALEN;
1205 break;
1206 }
1207 return 0;
1208 }
1209
1210 /* Generic function for conversion string to struct prefix. */
1211 int str2prefix(const char *str, struct prefix *p)
1212 {
1213 int ret;
1214
1215 if (!str || !p)
1216 return 0;
1217
1218 /* First we try to convert string to struct prefix_ipv4. */
1219 ret = str2prefix_ipv4(str, (struct prefix_ipv4 *)p);
1220 if (ret)
1221 return ret;
1222
1223 /* Next we try to convert string to struct prefix_ipv6. */
1224 ret = str2prefix_ipv6(str, (struct prefix_ipv6 *)p);
1225 if (ret)
1226 return ret;
1227
1228 /* Next we try to convert string to struct prefix_eth. */
1229 ret = str2prefix_eth(str, (struct prefix_eth *)p);
1230 if (ret)
1231 return ret;
1232
1233 return 0;
1234 }
1235
1236 static const char *prefixevpn_ead2str(const struct prefix_evpn *p, char *str,
1237 int size)
1238 {
1239 snprintf(str, size, "Unsupported EVPN prefix");
1240 return str;
1241 }
1242
1243 static const char *prefixevpn_macip2str(const struct prefix_evpn *p, char *str,
1244 int size)
1245 {
1246 uint8_t family;
1247 char buf[PREFIX2STR_BUFFER];
1248 char buf2[ETHER_ADDR_STRLEN];
1249
1250 if (is_evpn_prefix_ipaddr_none(p))
1251 snprintf(str, size, "[%d]:[%s]/%d",
1252 p->prefix.route_type,
1253 prefix_mac2str(&p->prefix.macip_addr.mac,
1254 buf2, sizeof(buf2)),
1255 p->prefixlen);
1256 else {
1257 family = is_evpn_prefix_ipaddr_v4(p)
1258 ? AF_INET
1259 : AF_INET6;
1260 snprintf(str, size, "[%d]:[%s]:[%s]/%d",
1261 p->prefix.route_type,
1262 prefix_mac2str(&p->prefix.macip_addr.mac,
1263 buf2, sizeof(buf2)),
1264 inet_ntop(family,
1265 &p->prefix.macip_addr.ip.ip.addr,
1266 buf, PREFIX2STR_BUFFER),
1267 p->prefixlen);
1268 }
1269 return str;
1270 }
1271
1272 static const char *prefixevpn_imet2str(const struct prefix_evpn *p, char *str,
1273 int size)
1274 {
1275 uint8_t family;
1276 char buf[PREFIX2STR_BUFFER];
1277
1278 family = is_evpn_prefix_ipaddr_v4(p)
1279 ? AF_INET
1280 : AF_INET6;
1281 snprintf(str, size, "[%d]:[%s]/%d", p->prefix.route_type,
1282 inet_ntop(family,
1283 &p->prefix.imet_addr.ip.ip.addr, buf,
1284 PREFIX2STR_BUFFER),
1285 p->prefixlen);
1286 return str;
1287 }
1288
1289 static const char *prefixevpn_es2str(const struct prefix_evpn *p, char *str,
1290 int size)
1291 {
1292 char buf[ESI_STR_LEN];
1293
1294 snprintf(str, size, "[%d]:[%s]:[%s]/%d", p->prefix.route_type,
1295 esi_to_str(&p->prefix.es_addr.esi, buf, sizeof(buf)),
1296 inet_ntoa(p->prefix.es_addr.ip.ipaddr_v4),
1297 p->prefixlen);
1298 return str;
1299 }
1300
1301 static const char *prefixevpn_prefix2str(const struct prefix_evpn *p, char *str,
1302 int size)
1303 {
1304 uint8_t family;
1305 char buf[PREFIX2STR_BUFFER];
1306
1307 family = is_evpn_prefix_ipaddr_v4(p)
1308 ? AF_INET
1309 : AF_INET6;
1310 snprintf(str, size, "[%d]:[%u][%s/%d]/%d",
1311 p->prefix.route_type,
1312 p->prefix.prefix_addr.eth_tag,
1313 inet_ntop(family,
1314 &p->prefix.prefix_addr.ip.ip.addr, buf,
1315 PREFIX2STR_BUFFER),
1316 p->prefix.prefix_addr.ip_prefix_length,
1317 p->prefixlen);
1318 return str;
1319 }
1320
1321 static const char *prefixevpn2str(const struct prefix_evpn *p, char *str,
1322 int size)
1323 {
1324 switch (p->prefix.route_type) {
1325 case 1:
1326 return prefixevpn_ead2str(p, str, size);
1327 case 2:
1328 return prefixevpn_macip2str(p, str, size);
1329 case 3:
1330 return prefixevpn_imet2str(p, str, size);
1331 case 4:
1332 return prefixevpn_es2str(p, str, size);
1333 case 5:
1334 return prefixevpn_prefix2str(p, str, size);
1335 default:
1336 snprintf(str, size, "Unsupported EVPN prefix");
1337 break;
1338 }
1339 return str;
1340 }
1341
1342 const char *prefix2str(union prefixconstptr pu, char *str, int size)
1343 {
1344 const struct prefix *p = pu.p;
1345 char buf[PREFIX2STR_BUFFER];
1346 int byte, tmp, a, b;
1347 bool z = false;
1348 size_t l;
1349
1350 switch (p->family) {
1351 case AF_INET:
1352 case AF_INET6:
1353 inet_ntop(p->family, &p->u.prefix, buf, sizeof(buf));
1354 l = strlen(buf);
1355 buf[l++] = '/';
1356 byte = p->prefixlen;
1357 if ((tmp = p->prefixlen - 100) >= 0) {
1358 buf[l++] = '1';
1359 z = true;
1360 byte = tmp;
1361 }
1362 b = byte % 10;
1363 a = byte / 10;
1364 if (a || z)
1365 buf[l++] = '0' + a;
1366 buf[l++] = '0' + b;
1367 buf[l] = '\0';
1368 strlcpy(str, buf, size);
1369 break;
1370
1371 case AF_ETHERNET:
1372 snprintf(str, size, "%s/%d",
1373 prefix_mac2str(&p->u.prefix_eth, buf, sizeof(buf)),
1374 p->prefixlen);
1375 break;
1376
1377 case AF_EVPN:
1378 prefixevpn2str((const struct prefix_evpn *)p, str, size);
1379 break;
1380
1381 case AF_FLOWSPEC:
1382 strlcpy(str, "FS prefix", size);
1383 break;
1384
1385 default:
1386 strlcpy(str, "UNK prefix", size);
1387 break;
1388 }
1389
1390 return str;
1391 }
1392
1393 void prefix_mcast_inet4_dump(const char *onfail, struct in_addr addr,
1394 char *buf, int buf_size)
1395 {
1396 int save_errno = errno;
1397
1398 if (addr.s_addr == INADDR_ANY)
1399 strlcpy(buf, "*", buf_size);
1400 else {
1401 if (!inet_ntop(AF_INET, &addr, buf, buf_size)) {
1402 if (onfail)
1403 snprintf(buf, buf_size, "%s", onfail);
1404 }
1405 }
1406
1407 errno = save_errno;
1408 }
1409
1410 const char *prefix_sg2str(const struct prefix_sg *sg, char *sg_str)
1411 {
1412 char src_str[INET_ADDRSTRLEN];
1413 char grp_str[INET_ADDRSTRLEN];
1414
1415 prefix_mcast_inet4_dump("<src?>", sg->src, src_str, sizeof(src_str));
1416 prefix_mcast_inet4_dump("<grp?>", sg->grp, grp_str, sizeof(grp_str));
1417 snprintf(sg_str, PREFIX_SG_STR_LEN, "(%s,%s)", src_str, grp_str);
1418
1419 return sg_str;
1420 }
1421
1422 struct prefix *prefix_new(void)
1423 {
1424 struct prefix *p;
1425
1426 p = XCALLOC(MTYPE_PREFIX, sizeof *p);
1427 return p;
1428 }
1429
1430 /* Free prefix structure. */
1431 void prefix_free(struct prefix *p)
1432 {
1433 XFREE(MTYPE_PREFIX, p);
1434 }
1435
1436 /* Utility function to convert ipv4 prefixes to Classful prefixes */
1437 void apply_classful_mask_ipv4(struct prefix_ipv4 *p)
1438 {
1439
1440 uint32_t destination;
1441
1442 destination = ntohl(p->prefix.s_addr);
1443
1444 if (p->prefixlen == IPV4_MAX_PREFIXLEN)
1445 ;
1446 /* do nothing for host routes */
1447 else if (IN_CLASSC(destination)) {
1448 p->prefixlen = 24;
1449 apply_mask_ipv4(p);
1450 } else if (IN_CLASSB(destination)) {
1451 p->prefixlen = 16;
1452 apply_mask_ipv4(p);
1453 } else {
1454 p->prefixlen = 8;
1455 apply_mask_ipv4(p);
1456 }
1457 }
1458
1459 in_addr_t ipv4_network_addr(in_addr_t hostaddr, int masklen)
1460 {
1461 struct in_addr mask;
1462
1463 masklen2ip(masklen, &mask);
1464 return hostaddr & mask.s_addr;
1465 }
1466
1467 in_addr_t ipv4_broadcast_addr(in_addr_t hostaddr, int masklen)
1468 {
1469 struct in_addr mask;
1470
1471 masklen2ip(masklen, &mask);
1472 return (masklen != IPV4_MAX_PREFIXLEN - 1) ?
1473 /* normal case */
1474 (hostaddr | ~mask.s_addr)
1475 :
1476 /* special case for /31 */
1477 (hostaddr ^ ~mask.s_addr);
1478 }
1479
1480 /* Utility function to convert ipv4 netmask to prefixes
1481 ex.) "1.1.0.0" "255.255.0.0" => "1.1.0.0/16"
1482 ex.) "1.0.0.0" NULL => "1.0.0.0/8" */
1483 int netmask_str2prefix_str(const char *net_str, const char *mask_str,
1484 char *prefix_str)
1485 {
1486 struct in_addr network;
1487 struct in_addr mask;
1488 uint8_t prefixlen;
1489 uint32_t destination;
1490 int ret;
1491
1492 ret = inet_aton(net_str, &network);
1493 if (!ret)
1494 return 0;
1495
1496 if (mask_str) {
1497 ret = inet_aton(mask_str, &mask);
1498 if (!ret)
1499 return 0;
1500
1501 prefixlen = ip_masklen(mask);
1502 } else {
1503 destination = ntohl(network.s_addr);
1504
1505 if (network.s_addr == 0)
1506 prefixlen = 0;
1507 else if (IN_CLASSC(destination))
1508 prefixlen = 24;
1509 else if (IN_CLASSB(destination))
1510 prefixlen = 16;
1511 else if (IN_CLASSA(destination))
1512 prefixlen = 8;
1513 else
1514 return 0;
1515 }
1516
1517 sprintf(prefix_str, "%s/%d", net_str, prefixlen);
1518
1519 return 1;
1520 }
1521
1522 /* Utility function for making IPv6 address string. */
1523 const char *inet6_ntoa(struct in6_addr addr)
1524 {
1525 static char buf[INET6_ADDRSTRLEN];
1526
1527 inet_ntop(AF_INET6, &addr, buf, INET6_ADDRSTRLEN);
1528 return buf;
1529 }
1530
1531 /* converts to internal representation of mac address
1532 * returns 1 on success, 0 otherwise
1533 * format accepted: AA:BB:CC:DD:EE:FF
1534 * if mac parameter is null, then check only
1535 */
1536 int prefix_str2mac(const char *str, struct ethaddr *mac)
1537 {
1538 unsigned int a[6];
1539 int i;
1540
1541 if (!str)
1542 return 0;
1543
1544 if (sscanf(str, "%2x:%2x:%2x:%2x:%2x:%2x", a + 0, a + 1, a + 2, a + 3,
1545 a + 4, a + 5)
1546 != 6) {
1547 /* error in incoming str length */
1548 return 0;
1549 }
1550 /* valid mac address */
1551 if (!mac)
1552 return 1;
1553 for (i = 0; i < 6; ++i)
1554 mac->octet[i] = a[i] & 0xff;
1555 return 1;
1556 }
1557
1558 char *prefix_mac2str(const struct ethaddr *mac, char *buf, int size)
1559 {
1560 char *ptr;
1561
1562 if (!mac)
1563 return NULL;
1564 if (!buf)
1565 ptr = XMALLOC(MTYPE_TMP, ETHER_ADDR_STRLEN * sizeof(char));
1566 else {
1567 assert(size >= ETHER_ADDR_STRLEN);
1568 ptr = buf;
1569 }
1570 snprintf(ptr, (ETHER_ADDR_STRLEN), "%02x:%02x:%02x:%02x:%02x:%02x",
1571 (uint8_t)mac->octet[0], (uint8_t)mac->octet[1],
1572 (uint8_t)mac->octet[2], (uint8_t)mac->octet[3],
1573 (uint8_t)mac->octet[4], (uint8_t)mac->octet[5]);
1574 return ptr;
1575 }
1576
1577 unsigned prefix_hash_key(const void *pp)
1578 {
1579 struct prefix copy;
1580
1581 if (((struct prefix *)pp)->family == AF_FLOWSPEC) {
1582 uint32_t len;
1583 void *temp;
1584
1585 /* make sure *all* unused bits are zero,
1586 * particularly including alignment /
1587 * padding and unused prefix bytes.
1588 */
1589 memset(&copy, 0, sizeof(copy));
1590 prefix_copy(&copy, (struct prefix *)pp);
1591 len = jhash((void *)copy.u.prefix_flowspec.ptr,
1592 copy.u.prefix_flowspec.prefixlen,
1593 0x55aa5a5a);
1594 temp = (void *)copy.u.prefix_flowspec.ptr;
1595 XFREE(MTYPE_PREFIX_FLOWSPEC, temp);
1596 copy.u.prefix_flowspec.ptr = (uintptr_t)NULL;
1597 return len;
1598 }
1599 /* make sure *all* unused bits are zero, particularly including
1600 * alignment /
1601 * padding and unused prefix bytes. */
1602 memset(&copy, 0, sizeof(copy));
1603 prefix_copy(&copy, (struct prefix *)pp);
1604 return jhash(&copy,
1605 offsetof(struct prefix, u.prefix) + PSIZE(copy.prefixlen),
1606 0x55aa5a5a);
1607 }
1608
1609 /* converts to internal representation of esi
1610 * returns 1 on success, 0 otherwise
1611 * format accepted: aa:aa:aa:aa:aa:aa:aa:aa:aa:aa
1612 * if esi parameter is null, then check only
1613 */
1614 int str_to_esi(const char *str, esi_t *esi)
1615 {
1616 int i;
1617 unsigned int a[ESI_BYTES];
1618
1619 if (!str)
1620 return 0;
1621
1622 if (sscanf(str, "%2x:%2x:%2x:%2x:%2x:%2x:%2x:%2x:%2x:%2x",
1623 a + 0, a + 1, a + 2, a + 3,
1624 a + 4, a + 5, a + 6, a + 7,
1625 a + 8, a + 9)
1626 != ESI_BYTES) {
1627 /* error in incoming str length */
1628 return 0;
1629 }
1630
1631 /* valid ESI */
1632 if (!esi)
1633 return 1;
1634 for (i = 0; i < ESI_BYTES; ++i)
1635 esi->val[i] = a[i] & 0xff;
1636 return 1;
1637 }
1638
1639 char *esi_to_str(const esi_t *esi, char *buf, int size)
1640 {
1641 char *ptr;
1642
1643 if (!esi)
1644 return NULL;
1645 if (!buf)
1646 ptr = XMALLOC(MTYPE_TMP, ESI_STR_LEN * sizeof(char));
1647 else {
1648 assert(size >= ESI_STR_LEN);
1649 ptr = buf;
1650 }
1651
1652 snprintf(ptr, ESI_STR_LEN,
1653 "%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x",
1654 esi->val[0], esi->val[1], esi->val[2],
1655 esi->val[3], esi->val[4], esi->val[5],
1656 esi->val[6], esi->val[7], esi->val[8],
1657 esi->val[9]);
1658 return ptr;
1659 }
1660
1661 printfrr_ext_autoreg_p("I4", printfrr_i4)
1662 static ssize_t printfrr_i4(char *buf, size_t bsz, const char *fmt,
1663 int prec, const void *ptr)
1664 {
1665 inet_ntop(AF_INET, ptr, buf, bsz);
1666 return 2;
1667 }
1668
1669 printfrr_ext_autoreg_p("I6", printfrr_i6)
1670 static ssize_t printfrr_i6(char *buf, size_t bsz, const char *fmt,
1671 int prec, const void *ptr)
1672 {
1673 inet_ntop(AF_INET6, ptr, buf, bsz);
1674 return 2;
1675 }
1676
1677 printfrr_ext_autoreg_p("FX", printfrr_pfx)
1678 static ssize_t printfrr_pfx(char *buf, size_t bsz, const char *fmt,
1679 int prec, const void *ptr)
1680 {
1681 prefix2str(ptr, buf, bsz);
1682 return 2;
1683 }
1684
1685 printfrr_ext_autoreg_p("SG4", printfrr_psg)
1686 static ssize_t printfrr_psg(char *buf, size_t bsz, const char *fmt,
1687 int prec, const void *ptr)
1688 {
1689 const struct prefix_sg *sg = ptr;
1690 struct fbuf fb = { .buf = buf, .pos = buf, .len = bsz - 1 };
1691
1692 if (sg->src.s_addr == INADDR_ANY)
1693 bprintfrr(&fb, "(*,");
1694 else
1695 bprintfrr(&fb, "(%pI4,", &sg->src);
1696
1697 if (sg->grp.s_addr == INADDR_ANY)
1698 bprintfrr(&fb, "*)");
1699 else
1700 bprintfrr(&fb, "%pI4)", &sg->grp);
1701
1702 fb.pos[0] = '\0';
1703 return 3;
1704 }