]>
Commit | Line | Data |
---|---|---|
57d187bc | 1 | /* BGP Large Communities Attribute |
2acb4ac2 DL |
2 | * |
3 | * Copyright (C) 2016 Keyur Patel <keyur@arrcus.com> | |
4 | * | |
5 | * This file is part of FreeRangeRouting (FRR). | |
6 | * | |
7 | * FRR is free software; you can redistribute it and/or modify it under the | |
8 | * terms of the GNU General Public License as published by the Free Software | |
9 | * Foundation; either version 2, or (at your option) any later version. | |
10 | * | |
11 | * FRR is distributed in the hope that it will be useful, but WITHOUT ANY | |
12 | * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS | |
13 | * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more | |
14 | * details. | |
15 | * | |
16 | * You should have received a copy of the GNU General Public License along | |
896014f4 DL |
17 | * with this program; see the file COPYING; if not, write to the Free Software |
18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
2acb4ac2 | 19 | */ |
57d187bc JS |
20 | |
21 | #include <zebra.h> | |
22 | ||
23 | #include "hash.h" | |
24 | #include "memory.h" | |
25 | #include "prefix.h" | |
26 | #include "command.h" | |
27 | #include "filter.h" | |
3f65c5b1 | 28 | #include "jhash.h" |
937652c6 | 29 | #include "stream.h" |
57d187bc JS |
30 | |
31 | #include "bgpd/bgpd.h" | |
32 | #include "bgpd/bgp_lcommunity.h" | |
33 | #include "bgpd/bgp_aspath.h" | |
34 | ||
35 | /* Hash of community attribute. */ | |
36 | static struct hash *lcomhash; | |
37 | ||
38 | /* Allocate a new lcommunities. */ | |
d62a17ae | 39 | static struct lcommunity *lcommunity_new(void) |
57d187bc | 40 | { |
d62a17ae | 41 | return (struct lcommunity *)XCALLOC(MTYPE_LCOMMUNITY, |
42 | sizeof(struct lcommunity)); | |
57d187bc JS |
43 | } |
44 | ||
45 | /* Allocate lcommunities. */ | |
d62a17ae | 46 | void lcommunity_free(struct lcommunity **lcom) |
57d187bc | 47 | { |
d62a17ae | 48 | if ((*lcom)->val) |
49 | XFREE(MTYPE_LCOMMUNITY_VAL, (*lcom)->val); | |
50 | if ((*lcom)->str) | |
51 | XFREE(MTYPE_LCOMMUNITY_STR, (*lcom)->str); | |
52 | XFREE(MTYPE_LCOMMUNITY, *lcom); | |
57d187bc JS |
53 | } |
54 | ||
d62a17ae | 55 | static void lcommunity_hash_free(struct lcommunity *lcom) |
47350fd9 | 56 | { |
d62a17ae | 57 | lcommunity_free(&lcom); |
47350fd9 DS |
58 | } |
59 | ||
57d187bc JS |
60 | /* Add a new Large Communities value to Large Communities |
61 | Attribute structure. When the value is already exists in the | |
62 | structure, we don't add the value. Newly added value is sorted by | |
63 | numerical order. When the value is added to the structure return 1 | |
64 | else return 0. */ | |
d62a17ae | 65 | static int lcommunity_add_val(struct lcommunity *lcom, |
66 | struct lcommunity_val *lval) | |
57d187bc | 67 | { |
d7c0a89a | 68 | uint8_t *p; |
d62a17ae | 69 | int ret; |
70 | int c; | |
71 | ||
72 | /* When this is fist value, just add it. */ | |
73 | if (lcom->val == NULL) { | |
74 | lcom->size++; | |
75 | lcom->val = XMALLOC(MTYPE_LCOMMUNITY_VAL, lcom_length(lcom)); | |
76 | memcpy(lcom->val, lval->val, LCOMMUNITY_SIZE); | |
77 | return 1; | |
78 | } | |
79 | ||
80 | /* If the value already exists in the structure return 0. */ | |
81 | c = 0; | |
82 | for (p = lcom->val; c < lcom->size; p += LCOMMUNITY_SIZE, c++) { | |
83 | ret = memcmp(p, lval->val, LCOMMUNITY_SIZE); | |
84 | if (ret == 0) | |
85 | return 0; | |
86 | if (ret > 0) | |
87 | break; | |
88 | } | |
89 | ||
90 | /* Add the value to the structure with numerical sorting. */ | |
91 | lcom->size++; | |
92 | lcom->val = | |
93 | XREALLOC(MTYPE_LCOMMUNITY_VAL, lcom->val, lcom_length(lcom)); | |
94 | ||
95 | memmove(lcom->val + (c + 1) * LCOMMUNITY_SIZE, | |
96 | lcom->val + c * LCOMMUNITY_SIZE, | |
97 | (lcom->size - 1 - c) * LCOMMUNITY_SIZE); | |
98 | memcpy(lcom->val + c * LCOMMUNITY_SIZE, lval->val, LCOMMUNITY_SIZE); | |
99 | ||
100 | return 1; | |
57d187bc JS |
101 | } |
102 | ||
103 | /* This function takes pointer to Large Communites strucutre then | |
104 | create a new Large Communities structure by uniq and sort each | |
105 | Large Communities value. */ | |
d62a17ae | 106 | struct lcommunity *lcommunity_uniq_sort(struct lcommunity *lcom) |
57d187bc | 107 | { |
d62a17ae | 108 | int i; |
109 | struct lcommunity *new; | |
110 | struct lcommunity_val *lval; | |
57d187bc | 111 | |
d62a17ae | 112 | if (!lcom) |
113 | return NULL; | |
57d187bc | 114 | |
d62a17ae | 115 | new = lcommunity_new(); |
57d187bc | 116 | |
d62a17ae | 117 | for (i = 0; i < lcom->size; i++) { |
118 | lval = (struct lcommunity_val *)(lcom->val | |
119 | + (i * LCOMMUNITY_SIZE)); | |
120 | lcommunity_add_val(new, lval); | |
121 | } | |
122 | return new; | |
57d187bc JS |
123 | } |
124 | ||
125 | /* Parse Large Communites Attribute in BGP packet. */ | |
d7c0a89a | 126 | struct lcommunity *lcommunity_parse(uint8_t *pnt, unsigned short length) |
57d187bc | 127 | { |
d62a17ae | 128 | struct lcommunity tmp; |
129 | struct lcommunity *new; | |
57d187bc | 130 | |
d62a17ae | 131 | /* Length check. */ |
132 | if (length % LCOMMUNITY_SIZE) | |
133 | return NULL; | |
57d187bc | 134 | |
d62a17ae | 135 | /* Prepare tmporary structure for making a new Large Communities |
136 | Attribute. */ | |
137 | tmp.size = length / LCOMMUNITY_SIZE; | |
138 | tmp.val = pnt; | |
57d187bc | 139 | |
d62a17ae | 140 | /* Create a new Large Communities Attribute by uniq and sort each |
141 | Large Communities value */ | |
142 | new = lcommunity_uniq_sort(&tmp); | |
57d187bc | 143 | |
d62a17ae | 144 | return lcommunity_intern(new); |
57d187bc JS |
145 | } |
146 | ||
147 | /* Duplicate the Large Communities Attribute structure. */ | |
d62a17ae | 148 | struct lcommunity *lcommunity_dup(struct lcommunity *lcom) |
57d187bc | 149 | { |
d62a17ae | 150 | struct lcommunity *new; |
151 | ||
cb0c2da3 | 152 | new = lcommunity_new(); |
d62a17ae | 153 | new->size = lcom->size; |
154 | if (new->size) { | |
79dab4b7 NK |
155 | new->val = XMALLOC(MTYPE_LCOMMUNITY_VAL, lcom_length(lcom)); |
156 | memcpy(new->val, lcom->val, lcom_length(lcom)); | |
d62a17ae | 157 | } else |
158 | new->val = NULL; | |
159 | return new; | |
57d187bc JS |
160 | } |
161 | ||
57d187bc | 162 | /* Merge two Large Communities Attribute structure. */ |
d62a17ae | 163 | struct lcommunity *lcommunity_merge(struct lcommunity *lcom1, |
164 | struct lcommunity *lcom2) | |
57d187bc | 165 | { |
d62a17ae | 166 | if (lcom1->val) |
996c9314 LB |
167 | lcom1->val = XREALLOC(MTYPE_LCOMMUNITY_VAL, lcom1->val, |
168 | lcom_length(lcom1) + lcom_length(lcom2)); | |
d62a17ae | 169 | else |
996c9314 LB |
170 | lcom1->val = XMALLOC(MTYPE_LCOMMUNITY_VAL, |
171 | lcom_length(lcom1) + lcom_length(lcom2)); | |
d62a17ae | 172 | |
79dab4b7 | 173 | memcpy(lcom1->val + lcom_length(lcom1), lcom2->val, lcom_length(lcom2)); |
d62a17ae | 174 | lcom1->size += lcom2->size; |
175 | ||
176 | return lcom1; | |
57d187bc JS |
177 | } |
178 | ||
8d9b8ed9 PM |
179 | static void set_lcommunity_string(struct lcommunity *lcom, bool make_json) |
180 | { | |
181 | int i; | |
182 | int len; | |
183 | bool first = 1; | |
184 | char *str_buf; | |
185 | char *str_pnt; | |
186 | uint8_t *pnt; | |
187 | uint32_t global, local1, local2; | |
188 | json_object *json_lcommunity_list = NULL; | |
189 | json_object *json_string = NULL; | |
190 | ||
191 | #define LCOMMUNITY_STR_DEFAULT_LEN 32 | |
192 | ||
193 | if (!lcom) | |
194 | return; | |
195 | ||
196 | if (make_json) { | |
197 | lcom->json = json_object_new_object(); | |
198 | json_lcommunity_list = json_object_new_array(); | |
199 | } | |
200 | ||
201 | if (lcom->size == 0) { | |
202 | str_buf = XMALLOC(MTYPE_LCOMMUNITY_STR, 1); | |
203 | str_buf[0] = '\0'; | |
204 | ||
205 | if (make_json) { | |
206 | json_object_string_add(lcom->json, "string", ""); | |
207 | json_object_object_add(lcom->json, "list", | |
208 | json_lcommunity_list); | |
209 | } | |
210 | ||
211 | lcom->str = str_buf; | |
212 | return; | |
213 | } | |
214 | ||
215 | str_buf = str_pnt = | |
216 | XMALLOC(MTYPE_LCOMMUNITY_STR, | |
217 | (LCOMMUNITY_STR_DEFAULT_LEN * lcom->size) + 1); | |
218 | ||
219 | for (i = 0; i < lcom->size; i++) { | |
220 | if (first) | |
221 | first = 0; | |
222 | else | |
223 | *str_pnt++ = ' '; | |
224 | ||
225 | pnt = lcom->val + (i * LCOMMUNITY_SIZE); | |
226 | pnt = ptr_get_be32(pnt, &global); | |
227 | pnt = ptr_get_be32(pnt, &local1); | |
228 | pnt = ptr_get_be32(pnt, &local2); | |
229 | (void)pnt; | |
230 | ||
231 | len = sprintf(str_pnt, "%u:%u:%u", global, local1, local2); | |
232 | if (make_json) { | |
233 | json_string = json_object_new_string(str_pnt); | |
234 | json_object_array_add(json_lcommunity_list, | |
235 | json_string); | |
236 | } | |
237 | ||
238 | str_pnt += len; | |
239 | } | |
240 | ||
241 | str_buf = | |
242 | XREALLOC(MTYPE_LCOMMUNITY_STR, str_buf, str_pnt - str_buf + 1); | |
243 | ||
244 | if (make_json) { | |
245 | json_object_string_add(lcom->json, "string", str_buf); | |
246 | json_object_object_add(lcom->json, "list", | |
247 | json_lcommunity_list); | |
248 | } | |
249 | ||
250 | lcom->str = str_buf; | |
251 | } | |
252 | ||
57d187bc | 253 | /* Intern Large Communities Attribute. */ |
d62a17ae | 254 | struct lcommunity *lcommunity_intern(struct lcommunity *lcom) |
57d187bc | 255 | { |
d62a17ae | 256 | struct lcommunity *find; |
57d187bc | 257 | |
d62a17ae | 258 | assert(lcom->refcnt == 0); |
57d187bc | 259 | |
d62a17ae | 260 | find = (struct lcommunity *)hash_get(lcomhash, lcom, hash_alloc_intern); |
57d187bc | 261 | |
d62a17ae | 262 | if (find != lcom) |
263 | lcommunity_free(&lcom); | |
57d187bc | 264 | |
d62a17ae | 265 | find->refcnt++; |
57d187bc | 266 | |
d62a17ae | 267 | if (!find->str) |
8d9b8ed9 | 268 | set_lcommunity_string(find, false); |
57d187bc | 269 | |
d62a17ae | 270 | return find; |
57d187bc JS |
271 | } |
272 | ||
273 | /* Unintern Large Communities Attribute. */ | |
d62a17ae | 274 | void lcommunity_unintern(struct lcommunity **lcom) |
57d187bc | 275 | { |
d62a17ae | 276 | struct lcommunity *ret; |
57d187bc | 277 | |
d62a17ae | 278 | if ((*lcom)->refcnt) |
279 | (*lcom)->refcnt--; | |
57d187bc | 280 | |
d62a17ae | 281 | /* Pull off from hash. */ |
282 | if ((*lcom)->refcnt == 0) { | |
283 | /* Large community must be in the hash. */ | |
284 | ret = (struct lcommunity *)hash_release(lcomhash, *lcom); | |
285 | assert(ret != NULL); | |
57d187bc | 286 | |
d62a17ae | 287 | lcommunity_free(lcom); |
288 | } | |
57d187bc JS |
289 | } |
290 | ||
8d9b8ed9 PM |
291 | /* Retrun string representation of communities attribute. */ |
292 | char *lcommunity_str(struct lcommunity *lcom, bool make_json) | |
293 | { | |
294 | if (!lcom) | |
295 | return NULL; | |
296 | ||
297 | if (make_json && !lcom->json && lcom->str) | |
298 | XFREE(MTYPE_LCOMMUNITY_STR, lcom->str); | |
299 | ||
300 | if (!lcom->str) | |
301 | set_lcommunity_string(lcom, make_json); | |
302 | ||
303 | return lcom->str; | |
304 | } | |
305 | ||
57d187bc | 306 | /* Utility function to make hash key. */ |
d62a17ae | 307 | unsigned int lcommunity_hash_make(void *arg) |
57d187bc | 308 | { |
d62a17ae | 309 | const struct lcommunity *lcom = arg; |
79dab4b7 | 310 | int size = lcom_length(lcom); |
d62a17ae | 311 | |
3f65c5b1 | 312 | return jhash(lcom->val, size, 0xab125423); |
57d187bc JS |
313 | } |
314 | ||
315 | /* Compare two Large Communities Attribute structure. */ | |
74df8d6d | 316 | bool lcommunity_cmp(const void *arg1, const void *arg2) |
57d187bc | 317 | { |
d62a17ae | 318 | const struct lcommunity *lcom1 = arg1; |
319 | const struct lcommunity *lcom2 = arg2; | |
57d187bc | 320 | |
fbcdff82 RW |
321 | if (lcom1 == NULL && lcom2 == NULL) |
322 | return 1; | |
323 | ||
324 | if (lcom1 == NULL || lcom2 == NULL) | |
325 | return 0; | |
326 | ||
d62a17ae | 327 | return (lcom1->size == lcom2->size |
996c9314 | 328 | && memcmp(lcom1->val, lcom2->val, lcom_length(lcom1)) == 0); |
57d187bc JS |
329 | } |
330 | ||
331 | /* Return communities hash. */ | |
d62a17ae | 332 | struct hash *lcommunity_hash(void) |
57d187bc | 333 | { |
d62a17ae | 334 | return lcomhash; |
57d187bc JS |
335 | } |
336 | ||
337 | /* Initialize Large Comminities related hash. */ | |
d62a17ae | 338 | void lcommunity_init(void) |
57d187bc | 339 | { |
996c9314 | 340 | lcomhash = hash_create(lcommunity_hash_make, lcommunity_cmp, |
3f65c5b1 | 341 | "BGP lcommunity hash"); |
57d187bc JS |
342 | } |
343 | ||
d62a17ae | 344 | void lcommunity_finish(void) |
57d187bc | 345 | { |
d62a17ae | 346 | hash_clean(lcomhash, (void (*)(void *))lcommunity_hash_free); |
347 | hash_free(lcomhash); | |
348 | lcomhash = NULL; | |
57d187bc JS |
349 | } |
350 | ||
351 | /* Large Communities token enum. */ | |
d62a17ae | 352 | enum lcommunity_token { |
353 | lcommunity_token_unknown = 0, | |
354 | lcommunity_token_val, | |
57d187bc JS |
355 | }; |
356 | ||
357 | /* Get next Large Communities token from the string. */ | |
d62a17ae | 358 | static const char *lcommunity_gettoken(const char *str, |
359 | struct lcommunity_val *lval, | |
360 | enum lcommunity_token *token) | |
57d187bc | 361 | { |
d62a17ae | 362 | const char *p = str; |
363 | ||
364 | /* Skip white space. */ | |
365 | while (isspace((int)*p)) { | |
366 | p++; | |
367 | str++; | |
368 | } | |
369 | ||
370 | /* Check the end of the line. */ | |
371 | if (*p == '\0') | |
372 | return NULL; | |
373 | ||
374 | /* Community value. */ | |
375 | if (isdigit((int)*p)) { | |
376 | int separator = 0; | |
377 | int digit = 0; | |
d7c0a89a QY |
378 | uint32_t globaladmin = 0; |
379 | uint32_t localdata1 = 0; | |
380 | uint32_t localdata2 = 0; | |
d62a17ae | 381 | |
382 | while (isdigit((int)*p) || *p == ':') { | |
383 | if (*p == ':') { | |
384 | if (separator == 2) { | |
385 | *token = lcommunity_token_unknown; | |
386 | return NULL; | |
387 | } else { | |
388 | separator++; | |
389 | digit = 0; | |
390 | if (separator == 1) { | |
391 | globaladmin = localdata2; | |
392 | } else { | |
393 | localdata1 = localdata2; | |
394 | } | |
395 | localdata2 = 0; | |
396 | } | |
397 | } else { | |
398 | digit = 1; | |
399 | localdata2 *= 10; | |
400 | localdata2 += (*p - '0'); | |
401 | } | |
402 | p++; | |
57d187bc | 403 | } |
d62a17ae | 404 | if (!digit) { |
405 | *token = lcommunity_token_unknown; | |
406 | return NULL; | |
57d187bc | 407 | } |
57d187bc | 408 | |
d62a17ae | 409 | /* |
410 | * Copy the large comm. | |
411 | */ | |
412 | lval->val[0] = (globaladmin >> 24) & 0xff; | |
413 | lval->val[1] = (globaladmin >> 16) & 0xff; | |
414 | lval->val[2] = (globaladmin >> 8) & 0xff; | |
415 | lval->val[3] = globaladmin & 0xff; | |
416 | lval->val[4] = (localdata1 >> 24) & 0xff; | |
417 | lval->val[5] = (localdata1 >> 16) & 0xff; | |
418 | lval->val[6] = (localdata1 >> 8) & 0xff; | |
419 | lval->val[7] = localdata1 & 0xff; | |
420 | lval->val[8] = (localdata2 >> 24) & 0xff; | |
421 | lval->val[9] = (localdata2 >> 16) & 0xff; | |
422 | lval->val[10] = (localdata2 >> 8) & 0xff; | |
423 | lval->val[11] = localdata2 & 0xff; | |
424 | ||
425 | *token = lcommunity_token_val; | |
426 | return p; | |
427 | } | |
428 | *token = lcommunity_token_unknown; | |
429 | return p; | |
57d187bc JS |
430 | } |
431 | ||
432 | /* | |
433 | Convert string to large community attribute. | |
434 | When type is already known, please specify both str and type. | |
435 | ||
436 | When string includes keyword for each large community value. | |
437 | Please specify keyword_included as non-zero value. | |
438 | */ | |
d62a17ae | 439 | struct lcommunity *lcommunity_str2com(const char *str) |
57d187bc | 440 | { |
d62a17ae | 441 | struct lcommunity *lcom = NULL; |
442 | enum lcommunity_token token = lcommunity_token_unknown; | |
443 | struct lcommunity_val lval; | |
444 | ||
445 | while ((str = lcommunity_gettoken(str, &lval, &token))) { | |
446 | switch (token) { | |
447 | case lcommunity_token_val: | |
448 | if (lcom == NULL) | |
449 | lcom = lcommunity_new(); | |
450 | lcommunity_add_val(lcom, &lval); | |
451 | break; | |
452 | case lcommunity_token_unknown: | |
453 | default: | |
454 | if (lcom) | |
455 | lcommunity_free(&lcom); | |
456 | return NULL; | |
457 | } | |
458 | } | |
459 | return lcom; | |
57d187bc JS |
460 | } |
461 | ||
d7c0a89a | 462 | int lcommunity_include(struct lcommunity *lcom, uint8_t *ptr) |
57d187bc | 463 | { |
d62a17ae | 464 | int i; |
d7c0a89a | 465 | uint8_t *lcom_ptr; |
d62a17ae | 466 | |
d62a17ae | 467 | for (i = 0; i < lcom->size; i++) { |
3ac053e6 | 468 | lcom_ptr = lcom->val + (i * LCOMMUNITY_SIZE); |
d62a17ae | 469 | if (memcmp(ptr, lcom_ptr, LCOMMUNITY_SIZE) == 0) |
470 | return 1; | |
471 | } | |
472 | return 0; | |
57d187bc JS |
473 | } |
474 | ||
d62a17ae | 475 | int lcommunity_match(const struct lcommunity *lcom1, |
476 | const struct lcommunity *lcom2) | |
57d187bc | 477 | { |
d62a17ae | 478 | int i = 0; |
479 | int j = 0; | |
480 | ||
481 | if (lcom1 == NULL && lcom2 == NULL) | |
482 | return 1; | |
483 | ||
484 | if (lcom1 == NULL || lcom2 == NULL) | |
485 | return 0; | |
486 | ||
487 | if (lcom1->size < lcom2->size) | |
488 | return 0; | |
489 | ||
490 | /* Every community on com2 needs to be on com1 for this to match */ | |
491 | while (i < lcom1->size && j < lcom2->size) { | |
996c9314 LB |
492 | if (memcmp(lcom1->val + (i * LCOMMUNITY_SIZE), |
493 | lcom2->val + (j * LCOMMUNITY_SIZE), LCOMMUNITY_SIZE) | |
d62a17ae | 494 | == 0) |
495 | j++; | |
496 | i++; | |
497 | } | |
498 | ||
499 | if (j == lcom2->size) | |
500 | return 1; | |
501 | else | |
502 | return 0; | |
57d187bc JS |
503 | } |
504 | ||
505 | /* Delete one lcommunity. */ | |
d7c0a89a | 506 | void lcommunity_del_val(struct lcommunity *lcom, uint8_t *ptr) |
57d187bc | 507 | { |
d62a17ae | 508 | int i = 0; |
509 | int c = 0; | |
510 | ||
511 | if (!lcom->val) | |
512 | return; | |
513 | ||
514 | while (i < lcom->size) { | |
515 | if (memcmp(lcom->val + i * LCOMMUNITY_SIZE, ptr, | |
516 | LCOMMUNITY_SIZE) | |
517 | == 0) { | |
518 | c = lcom->size - i - 1; | |
519 | ||
520 | if (c > 0) | |
521 | memmove(lcom->val + i * LCOMMUNITY_SIZE, | |
522 | lcom->val + (i + 1) * LCOMMUNITY_SIZE, | |
523 | c * LCOMMUNITY_SIZE); | |
524 | ||
525 | lcom->size--; | |
526 | ||
527 | if (lcom->size > 0) | |
528 | lcom->val = | |
996c9314 LB |
529 | XREALLOC(MTYPE_LCOMMUNITY_VAL, |
530 | lcom->val, lcom_length(lcom)); | |
d62a17ae | 531 | else { |
600d7ff8 | 532 | XFREE(MTYPE_LCOMMUNITY_VAL, lcom->val); |
d62a17ae | 533 | lcom->val = NULL; |
534 | } | |
535 | return; | |
536 | } | |
537 | i++; | |
57d187bc | 538 | } |
57d187bc | 539 | } |