]> git.proxmox.com Git - mirror_frr.git/blame - lib/prefix.c
lib: fix doc comment of the "cli_show_end" northbound callback
[mirror_frr.git] / lib / prefix.c
CommitLineData
718e3744 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 *
896014f4
DL
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
718e3744 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"
7a7761d2 29#include "jhash.h"
472878dc 30#include "lib_errors.h"
d52ec572 31#include "printfrr.h"
6b0655a2 32
4a1ab8e4 33DEFINE_MTYPE_STATIC(LIB, PREFIX, "Prefix")
ecc4d697 34DEFINE_MTYPE_STATIC(LIB, PREFIX_FLOWSPEC, "Prefix Flowspec")
4a1ab8e4 35
718e3744 36/* Maskbit. */
d7c0a89a
QY
37static const uint8_t maskbit[] = {0x00, 0x80, 0xc0, 0xe0, 0xf0,
38 0xf8, 0xfc, 0xfe, 0xff};
d62a17ae 39
40static const struct in6_addr maskbytes6[] = {
41 /* /0 */ {{{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
42 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}}},
996c9314
LB
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}}}};
718e3744 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
50f74cf1 435void prefix_hexdump(const struct prefix *p)
436{
437 char buf[PREFIX_STRLEN];
2bb9eff4 438
50f74cf1 439 zlog_debug("prefix: %s",
440 prefix2str(p, buf, sizeof(buf)));
441 zlog_hexdump(p, sizeof(struct prefix));
442}
443
b7cfce93 444int is_zero_mac(struct ethaddr *mac)
69b61704
MK
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
f93eee44 456unsigned int prefix_bit(const uint8_t *prefix, const uint16_t prefixlen)
f63f06da 457{
d62a17ae 458 unsigned int offset = prefixlen / 8;
459 unsigned int shift = 7 - (prefixlen % 8);
460
461 return (prefix[offset] >> shift) & 1;
f63f06da
PJ
462}
463
f93eee44 464unsigned int prefix6_bit(const struct in6_addr *prefix, const uint16_t prefixlen)
f63f06da 465{
d7c0a89a 466 return prefix_bit((const uint8_t *)&prefix->s6_addr, prefixlen);
f63f06da 467}
6b0655a2 468
d62a17ae 469int str2family(const char *string)
f3ccedaa 470{
d62a17ae 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;
b03b8898
DS
477 else if (!strcmp("evpn", string))
478 return AF_EVPN;
d62a17ae 479 return -1;
f3ccedaa
CF
480}
481
db2fde34
PZ
482const 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
718e3744 497/* Address Famiy Identifier to Address Family converter. */
d62a17ae 498int afi2family(afi_t afi)
718e3744 499{
d62a17ae 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;
b03b8898 506 /* NOTE: EVPN code should NOT use this interface. */
d62a17ae 507 return 0;
718e3744 508}
509
d62a17ae 510afi_t family2afi(int family)
718e3744 511{
d62a17ae 512 if (family == AF_INET)
513 return AFI_IP;
514 else if (family == AF_INET6)
515 return AFI_IP6;
b03b8898 516 else if (family == AF_ETHERNET || family == AF_EVPN)
d62a17ae 517 return AFI_L2VPN;
518 return 0;
718e3744 519}
520
d62a17ae 521const char *afi2str(afi_t afi)
32ac65d9 522{
d62a17ae 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;
32ac65d9
LB
536}
537
d62a17ae 538const char *safi2str(safi_t safi)
1ec23d90 539{
d62a17ae 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";
7c40bf39 553 case SAFI_FLOWSPEC:
554 return "flowspec";
5c525538
RW
555 default:
556 return "unknown";
d62a17ae 557 }
1ec23d90
LB
558}
559
718e3744 560/* If n includes p prefix then return 1 else return 0. */
d62a17ae 561int prefix_match(const struct prefix *n, const struct prefix *p)
718e3744 562{
d62a17ae 563 int offset;
564 int shift;
d7c0a89a 565 const uint8_t *np, *pp;
d62a17ae 566
567 /* If n's prefix is longer than p's one return 0. */
568 if (n->prefixlen > p->prefixlen)
569 return 0;
570
9a14899b
PG
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
d62a17ae 589 /* Set both prefix's head pointer. */
f0ed6bea 590 np = n->u.val;
591 pp = p->u.val;
d62a17ae 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;
3bec29ac
DS
604}
605
606/* If n includes p then return 1 else return 0. Prefix mask is not considered */
d62a17ae 607int prefix_match_network_statement(const struct prefix *n,
608 const struct prefix *p)
3bec29ac 609{
d62a17ae 610 int offset;
611 int shift;
d7c0a89a 612 const uint8_t *np, *pp;
3bec29ac 613
d62a17ae 614 /* Set both prefix's head pointer. */
f0ed6bea 615 np = n->u.val;
616 pp = p->u.val;
3bec29ac 617
d62a17ae 618 offset = n->prefixlen / PNBBY;
619 shift = n->prefixlen % PNBBY;
3bec29ac 620
d62a17ae 621 if (shift)
622 if (maskbit[shift] & (np[offset] ^ pp[offset]))
623 return 0;
3bec29ac 624
d62a17ae 625 while (offset--)
626 if (np[offset] != pp[offset])
627 return 0;
628 return 1;
718e3744 629}
630
4937287f
DL
631#ifdef __clang_analyzer__
632#undef prefix_copy /* cf. prefix.h */
633#endif
634
9c3a2171 635void prefix_copy(union prefixptr udest, union prefixconstptr usrc)
718e3744 636{
9c3a2171
DL
637 struct prefix *dest = udest.p;
638 const struct prefix *src = usrc.p;
639
d62a17ae 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) {
b03b8898
DS
648 memcpy(&dest->u.prefix_eth, &src->u.prefix_eth,
649 sizeof(struct ethaddr));
650 } else if (src->family == AF_EVPN) {
d62a17ae 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;
9a14899b
PG
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);
d62a17ae 668 } else {
450971aa 669 flog_err(EC_LIB_DEVELOPMENT,
1c50c1c0
QY
670 "prefix_copy(): Unknown address family %d",
671 src->family);
d62a17ae 672 assert(0);
673 }
718e3744 674}
675
d62a17ae 676/*
9d24baaa 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 */
9c3a2171 684int prefix_same(union prefixconstptr up1, union prefixconstptr up2)
718e3744 685{
9c3a2171
DL
686 const struct prefix *p1 = up1.p;
687 const struct prefix *p2 = up2.p;
688
d62a17ae 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)
19aad877 697 if (IPV4_ADDR_SAME(&p1->u.prefix4, &p2->u.prefix4))
d62a17ae 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)
b03b8898
DS
704 if (!memcmp(&p1->u.prefix_eth, &p2->u.prefix_eth,
705 sizeof(struct ethaddr)))
706 return 1;
707 if (p1->family == AF_EVPN)
d62a17ae 708 if (!memcmp(&p1->u.prefix_evpn, &p2->u.prefix_evpn,
709 sizeof(struct evpn_addr)))
710 return 1;
9a14899b
PG
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 }
d62a17ae 720 }
721 return 0;
718e3744 722}
723
9d24baaa 724/*
1315d74d
DL
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
9d24baaa 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 */
9c3a2171 735int prefix_cmp(union prefixconstptr up1, union prefixconstptr up2)
718e3744 736{
9c3a2171
DL
737 const struct prefix *p1 = up1.p;
738 const struct prefix *p2 = up2.p;
d62a17ae 739 int offset;
740 int shift;
1315d74d 741 int i;
718e3744 742
d62a17ae 743 /* Set both prefix's head pointer. */
9a14899b
PG
744 const uint8_t *pp1;
745 const uint8_t *pp2;
718e3744 746
9a14899b 747 if (p1->family != p2->family)
1315d74d 748 return numcmp(p1->family, p2->family);
9a14899b
PG
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;
718e3744 752
9a14899b
PG
753 if (p1->u.prefix_flowspec.prefixlen !=
754 p2->u.prefix_flowspec.prefixlen)
1315d74d
DL
755 return numcmp(p1->u.prefix_flowspec.prefixlen,
756 p2->u.prefix_flowspec.prefixlen);
9a14899b
PG
757
758 offset = p1->u.prefix_flowspec.prefixlen;
759 while (offset--)
760 if (pp1[offset] != pp2[offset])
1315d74d 761 return numcmp(pp1[offset], pp2[offset]);
9a14899b
PG
762 return 0;
763 }
f0ed6bea 764 pp1 = p1->u.val;
765 pp2 = p2->u.val;
9a14899b
PG
766
767 if (p1->prefixlen != p2->prefixlen)
1315d74d 768 return numcmp(p1->prefixlen, p2->prefixlen);
d62a17ae 769 offset = p1->prefixlen / PNBBY;
770 shift = p1->prefixlen % PNBBY;
718e3744 771
1315d74d
DL
772 i = memcmp(pp1, pp2, offset);
773 if (i)
774 return i;
718e3744 775
1315d74d
DL
776 return numcmp(pp1[offset] & maskbit[shift],
777 pp2[offset] & maskbit[shift]);
718e3744 778}
779
17e52061
DL
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 */
d62a17ae 786int prefix_common_bits(const struct prefix *p1, const struct prefix *p2)
17e52061 787{
d62a17ae 788 int pos, bit;
789 int length = 0;
d7c0a89a 790 uint8_t xor ;
d62a17ae 791
792 /* Set both prefix's head pointer. */
f0ed6bea 793 const uint8_t *pp1 = p1->u.val;
794 const uint8_t *pp2 = p2->u.val;
d62a17ae 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)
b03b8898
DS
801 length = ETH_ALEN;
802 if (p1->family == AF_EVPN)
d62a17ae 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;
17e52061
DL
820}
821
718e3744 822/* Return prefix family type string. */
d62a17ae 823const char *prefix_family_str(const struct prefix *p)
718e3744 824{
d62a17ae 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";
b03b8898
DS
831 if (p->family == AF_EVPN)
832 return "evpn";
d62a17ae 833 return "unspec";
718e3744 834}
835
836/* Allocate new prefix_ipv4 structure. */
4d762f26 837struct prefix_ipv4 *prefix_ipv4_new(void)
718e3744 838{
d62a17ae 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;
718e3744 848}
849
850/* Free prefix_ipv4 structure. */
d62a17ae 851void prefix_ipv4_free(struct prefix_ipv4 *p)
718e3744 852{
d62a17ae 853 prefix_free((struct prefix *)p);
718e3744 854}
855
856/* When string format is invalid return 0. */
d62a17ae 857int str2prefix_ipv4(const char *str, struct prefix_ipv4 *p)
718e3744 858{
d62a17ae 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. */
8d920049 870 ret = inet_pton(AF_INET, str, &p->prefix);
d62a17ae 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);
aab9a0a0 882 memcpy(cp, str, pnt - str);
d62a17ae 883 *(cp + (pnt - str)) = '\0';
884 ret = inet_aton(cp, &p->prefix);
885 XFREE(MTYPE_TMP, cp);
886
887 /* Get prefix length. */
d7c0a89a 888 plen = (uint8_t)atoi(++pnt);
d62a17ae 889 if (plen > IPV4_MAX_PREFIXLEN)
890 return 0;
891
892 p->family = AF_INET;
893 p->prefixlen = plen;
894 }
718e3744 895
d62a17ae 896 return ret;
718e3744 897}
898
32ac65d9 899/* When string format is invalid return 0. */
d62a17ae 900int str2prefix_eth(const char *str, struct prefix_eth *p)
32ac65d9 901{
d62a17ae 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;
0f6476cc 909 bool slash = false;
d62a17ae 910
3b0f6068
DL
911 if (!strcmp(str, "any")) {
912 memset(p, 0, sizeof(*p));
913 p->family = AF_ETHERNET;
914 return 1;
915 }
916
d62a17ae 917 /* Find slash inside string. */
918 pnt = strchr(str, '/');
919
920 if (pnt) {
921 /* Get prefix length. */
d7c0a89a 922 plen = (uint8_t)atoi(++pnt);
d62a17ae 923 if (plen > 48) {
924 ret = 0;
925 goto done;
926 }
927
928 cp = XMALLOC(MTYPE_TMP, (pnt - str) + 1);
aab9a0a0 929 memcpy(cp, str, pnt - str);
d62a17ae 930 *(cp + (pnt - str)) = '\0';
931
932 str_addr = cp;
0f6476cc 933 slash = true;
32ac65d9
LB
934 }
935
d62a17ae 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;
0f6476cc
DS
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)))
996c9314 955 p->prefixlen = 0;
0f6476cc 956
d62a17ae 957 ret = 1;
32ac65d9
LB
958
959done:
0a22ddfb 960 XFREE(MTYPE_TMP, cp);
32ac65d9 961
d62a17ae 962 return ret;
32ac65d9
LB
963}
964
051954f5 965/* Convert masklen into IP address's netmask (network byte order). */
d62a17ae 966void masklen2ip(const int masklen, struct in_addr *netmask)
718e3744 967{
d62a17ae 968 assert(masklen >= 0 && masklen <= IPV4_MAX_BITLEN);
e96b3121 969
d62a17ae 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) */
e96b3121 973
d62a17ae 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);
718e3744 979}
980
981/* Convert IP address's netmask into integer. We assume netmask is
f93eee44 982 * sequential one. Argument netmask should be network byte order. */
d7c0a89a 983uint8_t ip_masklen(struct in_addr netmask)
718e3744 984{
d62a17ae 985 uint32_t tmp = ~ntohl(netmask.s_addr);
f93eee44 986
61be6e94
QY
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 */
f93eee44 991 return tmp ? __builtin_clz(tmp) : 32;
718e3744 992}
993
caff7905 994/* Apply mask to IPv4 prefix (network byte order). */
d62a17ae 995void apply_mask_ipv4(struct prefix_ipv4 *p)
718e3744 996{
d62a17ae 997 struct in_addr mask;
998 masklen2ip(p->prefixlen, &mask);
999 p->prefix.s_addr &= mask.s_addr;
718e3744 1000}
1001
1002/* If prefix is 0.0.0.0/0 then return 1 else return 0. */
d62a17ae 1003int prefix_ipv4_any(const struct prefix_ipv4 *p)
718e3744 1004{
d62a17ae 1005 return (p->prefix.s_addr == 0 && p->prefixlen == 0);
718e3744 1006}
6b0655a2 1007
718e3744 1008/* Allocate a new ip version 6 route */
d62a17ae 1009struct prefix_ipv6 *prefix_ipv6_new(void)
718e3744 1010{
d62a17ae 1011 struct prefix_ipv6 *p;
718e3744 1012
d62a17ae 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;
718e3744 1018}
1019
1020/* Free prefix for IPv6. */
d62a17ae 1021void prefix_ipv6_free(struct prefix_ipv6 *p)
718e3744 1022{
d62a17ae 1023 prefix_free((struct prefix *)p);
718e3744 1024}
1025
1026/* If given string is valid return pin6 else return NULL */
d62a17ae 1027int str2prefix_ipv6(const char *str, struct prefix_ipv6 *p)
718e3744 1028{
d62a17ae 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);
aab9a0a0 1045 memcpy(cp, str, pnt - str);
d62a17ae 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;
d7c0a89a 1051 plen = (uint8_t)atoi(++pnt);
d62a17ae 1052 if (plen > IPV6_MAX_BITLEN)
1053 return 0;
1054 p->prefixlen = plen;
1055 }
1056 p->family = AF_INET6;
718e3744 1057
d62a17ae 1058 return ret;
718e3744 1059}
1060
b04c699e 1061/* Convert struct in6_addr netmask into integer.
d7c0a89a 1062 * FIXME return uint8_t as ip_maskleni() does. */
d62a17ae 1063int ip6_masklen(struct in6_addr netmask)
718e3744 1064{
d62a17ae 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++;
718e3744 1074 }
d62a17ae 1075
1076 if (len < IPV6_MAX_BITLEN) {
1077 val = *pnt;
1078 while (val) {
1079 len++;
1080 val <<= 1;
1081 }
1082 }
1083 return len;
718e3744 1084}
1085
d62a17ae 1086void masklen2ip6(const int masklen, struct in6_addr *netmask)
718e3744 1087{
d62a17ae 1088 assert(masklen >= 0 && masklen <= IPV6_MAX_BITLEN);
1089 memcpy(netmask, maskbytes6 + masklen, sizeof(struct in6_addr));
718e3744 1090}
1091
d62a17ae 1092void apply_mask_ipv6(struct prefix_ipv6 *p)
718e3744 1093{
d7c0a89a 1094 uint8_t *pnt;
d62a17ae 1095 int index;
1096 int offset;
8c7f49d2 1097
d62a17ae 1098 index = p->prefixlen / 8;
8c7f49d2 1099
d62a17ae 1100 if (index < 16) {
d7c0a89a 1101 pnt = (uint8_t *)&p->prefix;
d62a17ae 1102 offset = p->prefixlen % 8;
8c7f49d2 1103
d62a17ae 1104 pnt[index] &= maskbit[offset];
1105 index++;
8c7f49d2 1106
d62a17ae 1107 while (index < 16)
1108 pnt[index++] = 0;
1109 }
718e3744 1110}
1111
d62a17ae 1112void apply_mask(struct prefix *p)
718e3744 1113{
d62a17ae 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;
718e3744 1125}
1126
b04c699e 1127/* Utility function of convert between struct prefix <=> union sockunion.
1128 * FIXME This function isn't used anywhere. */
d62a17ae 1129struct prefix *sockunion2prefix(const union sockunion *dest,
1130 const union sockunion *mask)
718e3744 1131{
d62a17ae 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;
718e3744 1152}
1153
b04c699e 1154/* Utility function of convert between struct prefix <=> union sockunion. */
d62a17ae 1155struct prefix *sockunion2hostprefix(const union sockunion *su,
1156 struct prefix *prefix)
718e3744 1157{
d62a17ae 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;
718e3744 1178}
1179
d62a17ae 1180void prefix2sockunion(const struct prefix *p, union sockunion *su)
17e52061 1181{
d62a17ae 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));
17e52061
DL
1190}
1191
d62a17ae 1192int prefix_blen(const struct prefix *p)
718e3744 1193{
d62a17ae 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:
7628d862 1202 return ETH_ALEN;
b03b8898 1203 break;
d62a17ae 1204 }
1205 return 0;
718e3744 1206}
1207
1208/* Generic function for conversion string to struct prefix. */
d62a17ae 1209int str2prefix(const char *str, struct prefix *p)
718e3744 1210{
d62a17ae 1211 int ret;
718e3744 1212
c37a11ad 1213 if (!str || !p)
1214 return 0;
1215
d62a17ae 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;
718e3744 1220
d62a17ae 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;
718e3744 1225
d62a17ae 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;
32ac65d9 1230
d62a17ae 1231 return 0;
718e3744 1232}
1233
3714a385 1234static 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
1241static const char *prefixevpn_macip2str(const struct prefix_evpn *p, char *str,
1242 int size)
86f1ef44 1243{
d7c0a89a 1244 uint8_t family;
d62a17ae 1245 char buf[PREFIX2STR_BUFFER];
1246 char buf2[ETHER_ADDR_STRLEN];
1247
3714a385 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)),
d62a17ae 1253 p->prefixlen);
3714a385 1254 else {
1255 family = is_evpn_prefix_ipaddr_v4(p)
d62a17ae 1256 ? AF_INET
1257 : AF_INET6;
3714a385 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);
d62a17ae 1266 }
3714a385 1267 return str;
1268}
1269
1270static const char *prefixevpn_imet2str(const struct prefix_evpn *p, char *str,
1271 int size)
1272{
1273 uint8_t family;
1274 char buf[PREFIX2STR_BUFFER];
d62a17ae 1275
3714a385 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
1287static const char *prefixevpn_es2str(const struct prefix_evpn *p, char *str,
1288 int size)
1289{
50f74cf1 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);
3714a385 1296 return str;
1297}
1298
1299static 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
1319static 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 }
d62a17ae 1337 return str;
86f1ef44 1338}
1339
d62a17ae 1340const char *prefix2str(union prefixconstptr pu, char *str, int size)
718e3744 1341{
d62a17ae 1342 const struct prefix *p = pu.p;
1343 char buf[PREFIX2STR_BUFFER];
ec466f65
QY
1344 int byte, tmp, a, b;
1345 bool z = false;
1346 size_t l;
d62a17ae 1347
1348 switch (p->family) {
1349 case AF_INET:
1350 case AF_INET6:
ec466f65
QY
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);
d62a17ae 1367 break;
1368
1369 case AF_ETHERNET:
b03b8898
DS
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:
3714a385 1376 prefixevpn2str((const struct prefix_evpn *)p, str, size);
d62a17ae 1377 break;
1378
9a14899b 1379 case AF_FLOWSPEC:
ec466f65 1380 strlcpy(str, "FS prefix", size);
9a14899b
PG
1381 break;
1382
d62a17ae 1383 default:
ec466f65 1384 strlcpy(str, "UNK prefix", size);
d62a17ae 1385 break;
1386 }
1387
1388 return str;
718e3744 1389}
1390
c6b6b53b
AK
1391void 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)
9f73d2c9 1397 strlcpy(buf, "*", buf_size);
c6b6b53b
AK
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
1408const 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
4d762f26 1420struct prefix *prefix_new(void)
718e3744 1421{
d62a17ae 1422 struct prefix *p;
718e3744 1423
d62a17ae 1424 p = XCALLOC(MTYPE_PREFIX, sizeof *p);
1425 return p;
718e3744 1426}
1427
1428/* Free prefix structure. */
d62a17ae 1429void prefix_free(struct prefix *p)
718e3744 1430{
d62a17ae 1431 XFREE(MTYPE_PREFIX, p);
718e3744 1432}
1433
718e3744 1434/* Utility function to convert ipv4 prefixes to Classful prefixes */
d62a17ae 1435void apply_classful_mask_ipv4(struct prefix_ipv4 *p)
718e3744 1436{
1437
d7c0a89a 1438 uint32_t destination;
d62a17ae 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 }
718e3744 1455}
1456
d62a17ae 1457in_addr_t ipv4_network_addr(in_addr_t hostaddr, int masklen)
3fb9cd6e 1458{
d62a17ae 1459 struct in_addr mask;
3fb9cd6e 1460
d62a17ae 1461 masklen2ip(masklen, &mask);
1462 return hostaddr & mask.s_addr;
3fb9cd6e 1463}
1464
d62a17ae 1465in_addr_t ipv4_broadcast_addr(in_addr_t hostaddr, int masklen)
3fb9cd6e 1466{
d62a17ae 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);
3fb9cd6e 1476}
1477
d62a17ae 1478/* Utility function to convert ipv4 netmask to prefixes
718e3744 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" */
d62a17ae 1481int netmask_str2prefix_str(const char *net_str, const char *mask_str,
1482 char *prefix_str)
718e3744 1483{
d62a17ae 1484 struct in_addr network;
1485 struct in_addr mask;
d7c0a89a
QY
1486 uint8_t prefixlen;
1487 uint32_t destination;
d62a17ae 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 }
718e3744 1514
d62a17ae 1515 sprintf(prefix_str, "%s/%d", net_str, prefixlen);
718e3744 1516
d62a17ae 1517 return 1;
718e3744 1518}
1519
5920990f 1520/* Utility function for making IPv6 address string. */
d62a17ae 1521const char *inet6_ntoa(struct in6_addr addr)
5920990f 1522{
d62a17ae 1523 static char buf[INET6_ADDRSTRLEN];
5920990f 1524
d62a17ae 1525 inet_ntop(AF_INET6, &addr, buf, INET6_ADDRSTRLEN);
1526 return buf;
5920990f 1527}
c215ecaf 1528
c215ecaf 1529/* converts to internal representation of mac address
d62a17ae 1530 * returns 1 on success, 0 otherwise
c215ecaf
PG
1531 * format accepted: AA:BB:CC:DD:EE:FF
1532 * if mac parameter is null, then check only
1533 */
db42a173 1534int prefix_str2mac(const char *str, struct ethaddr *mac)
c215ecaf 1535{
d62a17ae 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;
c215ecaf
PG
1554}
1555
db42a173 1556char *prefix_mac2str(const struct ethaddr *mac, char *buf, int size)
c215ecaf 1557{
d62a17ae 1558 char *ptr;
1559
1560 if (!mac)
1561 return NULL;
1562 if (!buf)
9f5dc319 1563 ptr = XMALLOC(MTYPE_TMP, ETHER_ADDR_STRLEN * sizeof(char));
d62a17ae 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;
c215ecaf 1573}
7a7761d2 1574
62b4b3b6 1575unsigned prefix_hash_key(const void *pp)
7a7761d2
CF
1576{
1577 struct prefix copy;
1578
9a14899b
PG
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 }
7a7761d2
CF
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);
996c9314
LB
1602 return jhash(&copy,
1603 offsetof(struct prefix, u.prefix) + PSIZE(copy.prefixlen),
1604 0x55aa5a5a);
7a7761d2 1605}
50f74cf1 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 */
1612int 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
1637char *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)
9f5dc319 1644 ptr = XMALLOC(MTYPE_TMP, ESI_STR_LEN * sizeof(char));
50f74cf1 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}
d52ec572
DL
1658
1659printfrr_ext_autoreg_p("I4", printfrr_i4)
1660static 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
1667printfrr_ext_autoreg_p("I6", printfrr_i6)
1668static 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
1675printfrr_ext_autoreg_p("FX", printfrr_pfx)
1676static 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
1683printfrr_ext_autoreg_p("SG4", printfrr_psg)
1684static 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}