]> git.proxmox.com Git - mirror_frr.git/blame - pbrd/pbr_map.c
bgpd, lib, pbrd, zebra: Pass by ifname
[mirror_frr.git] / pbrd / pbr_map.c
CommitLineData
e5c83d9b
DS
1/*
2 * PBR-map Code
3 * Copyright (C) 2018 Cumulus Networks, Inc.
4 * Donald Sharp
5 *
6 * FRR is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
10 *
11 * FRR is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
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
19 */
20#include <zebra.h>
21
22#include "thread.h"
23#include "linklist.h"
24#include "prefix.h"
25#include "table.h"
26#include "vrf.h"
27#include "nexthop.h"
28#include "nexthop_group.h"
29#include "memory.h"
30#include "log.h"
31#include "vty.h"
32
33#include "pbr_nht.h"
34#include "pbr_map.h"
e5c83d9b
DS
35#include "pbr_zebra.h"
36#include "pbr_memory.h"
37#include "pbr_debug.h"
be3b67b5 38#include "pbr_vrf.h"
e5c83d9b
DS
39
40DEFINE_MTYPE_STATIC(PBRD, PBR_MAP, "PBR Map")
41DEFINE_MTYPE_STATIC(PBRD, PBR_MAP_SEQNO, "PBR Map Sequence")
42DEFINE_MTYPE_STATIC(PBRD, PBR_MAP_INTERFACE, "PBR Map Interface")
43
44static uint32_t pbr_map_sequence_unique;
45
be3b67b5 46static bool pbr_map_check_valid_internal(struct pbr_map *pbrm);
d3765386
DS
47static inline int pbr_map_compare(const struct pbr_map *pbrmap1,
48 const struct pbr_map *pbrmap2);
e5c83d9b
DS
49
50RB_GENERATE(pbr_map_entry_head, pbr_map, pbr_map_entry, pbr_map_compare)
51
52struct pbr_map_entry_head pbr_maps = RB_INITIALIZER(&pbr_maps);
53
54DEFINE_QOBJ_TYPE(pbr_map_sequence)
55
d3765386
DS
56static inline int pbr_map_compare(const struct pbr_map *pbrmap1,
57 const struct pbr_map *pbrmap2)
e5c83d9b
DS
58{
59 return strcmp(pbrmap1->name, pbrmap2->name);
60}
61
62static int pbr_map_sequence_compare(const struct pbr_map_sequence *pbrms1,
63 const struct pbr_map_sequence *pbrms2)
64{
65 if (pbrms1->seqno == pbrms2->seqno)
66 return 0;
67
68 if (pbrms1->seqno < pbrms2->seqno)
69 return -1;
70
71 return 1;
72}
73
74static void pbr_map_sequence_delete(struct pbr_map_sequence *pbrms)
75{
0a22ddfb 76 XFREE(MTYPE_TMP, pbrms->internal_nhg_name);
e5c83d9b 77
20953065 78 QOBJ_UNREG(pbrms);
e5c83d9b
DS
79 XFREE(MTYPE_PBR_MAP_SEQNO, pbrms);
80}
81
82static int pbr_map_interface_compare(const struct pbr_map_interface *pmi1,
83 const struct pbr_map_interface *pmi2)
84{
85 return strcmp(pmi1->ifp->name, pmi2->ifp->name);
86}
87
b13e5ad6 88static void pbr_map_interface_list_delete(struct pbr_map_interface *pmi)
e5c83d9b 89{
b13e5ad6
DS
90 struct pbr_map_interface *pmi_int;
91 struct listnode *node, *nnode;
92 struct pbr_map *pbrm;
93
94 RB_FOREACH (pbrm, pbr_map_entry_head, &pbr_maps) {
95 for (ALL_LIST_ELEMENTS(pbrm->incoming, node, nnode, pmi_int)) {
96 if (pmi == pmi_int) {
97 pbr_map_policy_delete(pbrm, pmi);
98 return;
99 }
100 }
101 }
e5c83d9b
DS
102}
103
74a0ae12
SW
104static bool pbrms_is_installed(const struct pbr_map_sequence *pbrms,
105 const struct pbr_map_interface *pmi)
106{
107 uint64_t is_installed = (uint64_t)1 << pmi->install_bit;
108
109 is_installed &= pbrms->installed;
110
111 if (is_installed)
112 return true;
113
114 return false;
115}
116
117/* If any sequence is installed on the interface, assume installed */
118static bool
119pbr_map_interface_is_installed(const struct pbr_map *pbrm,
120 const struct pbr_map_interface *check_pmi)
121{
122
123 struct pbr_map_sequence *pbrms;
124 struct pbr_map_interface *pmi;
125 struct listnode *node, *inode;
126
127 for (ALL_LIST_ELEMENTS_RO(pbrm->seqnumbers, node, pbrms))
128 for (ALL_LIST_ELEMENTS_RO(pbrm->incoming, inode, pmi))
129 if (pmi == check_pmi && pbrms_is_installed(pbrms, pmi))
130 return true;
131
132 return false;
133}
134
be3b67b5
SW
135static bool pbr_map_interface_is_valid(const struct pbr_map_interface *pmi)
136{
137 /* Don't install rules without a real ifindex on the incoming interface.
138 *
139 * This can happen when we have config for an interface that does not
140 * exist or when an interface is changing vrfs.
141 */
142 if (pmi->ifp && pmi->ifp->ifindex != IFINDEX_INTERNAL)
143 return true;
144
145 return false;
146}
147
148static void pbr_map_pbrms_update_common(struct pbr_map_sequence *pbrms,
f143cffa 149 bool install, bool changed)
be3b67b5
SW
150{
151 struct pbr_map *pbrm;
152 struct listnode *node;
153 struct pbr_map_interface *pmi;
154
155 pbrm = pbrms->parent;
156
157 if (pbrms->nhs_installed && pbrm->incoming->count) {
158 for (ALL_LIST_ELEMENTS_RO(pbrm->incoming, node, pmi)) {
159 if (!pmi->ifp)
160 continue;
161
162 if (install && !pbr_map_interface_is_valid(pmi))
163 continue;
164
f143cffa 165 pbr_send_pbr_map(pbrms, pmi, install, changed);
be3b67b5
SW
166 }
167 }
168}
169
f143cffa 170static void pbr_map_pbrms_install(struct pbr_map_sequence *pbrms, bool changed)
be3b67b5 171{
f143cffa 172 pbr_map_pbrms_update_common(pbrms, true, changed);
be3b67b5
SW
173}
174
175static void pbr_map_pbrms_uninstall(struct pbr_map_sequence *pbrms)
176{
f143cffa 177 pbr_map_pbrms_update_common(pbrms, false, false);
be3b67b5
SW
178}
179
2b64873d 180static const char *const pbr_map_reason_str[] = {
e5c83d9b 181 "Invalid NH-group", "Invalid NH", "No Nexthops",
be3b67b5
SW
182 "Both NH and NH-Group", "Invalid Src or Dst", "Invalid VRF",
183 "Deleting Sequence",
e5c83d9b
DS
184};
185
186void pbr_map_reason_string(unsigned int reason, char *buf, int size)
187{
188 unsigned int bit;
189 int len = 0;
190
191 if (!buf)
192 return;
193
194 for (bit = 0; bit < array_size(pbr_map_reason_str); bit++) {
195 if ((reason & (1 << bit)) && (len < size)) {
196 len += snprintf((buf + len), (size - len), "%s%s",
197 (len > 0) ? ", " : "",
198 pbr_map_reason_str[bit]);
199 }
200 }
201}
202
38e9ccde
DS
203void pbr_map_final_interface_deletion(struct pbr_map *pbrm,
204 struct pbr_map_interface *pmi)
205{
a8f58eb6 206 if (pmi->delete && !pbr_map_interface_is_installed(pbrm, pmi)) {
38e9ccde
DS
207 listnode_delete(pbrm->incoming, pmi);
208 pmi->pbrm = NULL;
209
210 bf_release_index(pbrm->ifi_bitfield, pmi->install_bit);
211 XFREE(MTYPE_PBR_MAP_INTERFACE, pmi);
212 }
213}
e5c83d9b
DS
214
215void pbr_map_interface_delete(struct pbr_map *pbrm, struct interface *ifp_del)
216{
217
218 struct listnode *node;
219 struct pbr_map_interface *pmi;
e5c83d9b
DS
220
221 for (ALL_LIST_ELEMENTS_RO(pbrm->incoming, node, pmi)) {
222 if (ifp_del == pmi->ifp)
223 break;
224 }
225
b13e5ad6
DS
226 if (pmi)
227 pbr_map_policy_delete(pbrm, pmi);
e5c83d9b
DS
228}
229
230void pbr_map_add_interface(struct pbr_map *pbrm, struct interface *ifp_add)
231{
232 struct listnode *node;
233 struct pbr_map_interface *pmi;
e5c83d9b
DS
234
235 for (ALL_LIST_ELEMENTS_RO(pbrm->incoming, node, pmi)) {
236 if (ifp_add == pmi->ifp)
237 return;
238 }
239
240 pmi = XCALLOC(MTYPE_PBR_MAP_INTERFACE, sizeof(*pmi));
241 pmi->ifp = ifp_add;
242 pmi->pbrm = pbrm;
243 listnode_add_sort(pbrm->incoming, pmi);
244
37c606ff 245 bf_assign_index(pbrm->ifi_bitfield, pmi->install_bit);
b13e5ad6 246 pbr_map_check_valid(pbrm->name);
d02e9432 247 if (pbrm->valid)
b13e5ad6 248 pbr_map_install(pbrm);
e5c83d9b
DS
249}
250
be3b67b5
SW
251static int
252pbr_map_policy_interface_update_common(const struct interface *ifp,
253 struct pbr_interface **pbr_ifp,
254 struct pbr_map **pbrm)
255{
256 if (!ifp->info) {
257 DEBUGD(&pbr_dbg_map, "%s: %s has no pbr_interface info",
258 __func__, ifp->name);
259 return -1;
260 }
261
262 *pbr_ifp = ifp->info;
263
264 *pbrm = pbrm_find((*pbr_ifp)->mapname);
265
266 if (!*pbrm) {
267 DEBUGD(&pbr_dbg_map, "%s: applied PBR-MAP(%s) does not exist?",
268 __func__, (*pbr_ifp)->mapname);
269 return -1;
270 }
271
272 return 0;
273}
274
275void pbr_map_policy_interface_update(const struct interface *ifp, bool state_up)
276{
277 struct pbr_interface *pbr_ifp;
278 struct pbr_map_sequence *pbrms;
279 struct pbr_map *pbrm;
280 struct listnode *node, *inode;
281 struct pbr_map_interface *pmi;
282
283 if (pbr_map_policy_interface_update_common(ifp, &pbr_ifp, &pbrm))
284 return;
285
286 DEBUGD(&pbr_dbg_map, "%s: %s %s rules on interface %s", __func__,
287 pbr_ifp->mapname, (state_up ? "installing" : "removing"),
288 ifp->name);
289
290 /*
291 * Walk the list and install/remove maps on the interface.
292 */
293 for (ALL_LIST_ELEMENTS_RO(pbrm->seqnumbers, node, pbrms))
294 for (ALL_LIST_ELEMENTS_RO(pbrm->incoming, inode, pmi))
295 if (pmi->ifp == ifp && pbr_map_interface_is_valid(pmi))
f143cffa 296 pbr_send_pbr_map(pbrms, pmi, state_up, false);
be3b67b5
SW
297}
298
299static void pbrms_vrf_update(struct pbr_map_sequence *pbrms,
300 const struct pbr_vrf *pbr_vrf)
301{
302 const char *vrf_name = pbr_vrf_name(pbr_vrf);
303
304 if (pbrms->vrf_lookup
305 && (strncmp(vrf_name, pbrms->vrf_name, sizeof(pbrms->vrf_name))
306 == 0)) {
307 DEBUGD(&pbr_dbg_map, "\tSeq %u uses vrf %s (%u), updating map",
308 pbrms->seqno, vrf_name, pbr_vrf_id(pbr_vrf));
309
f143cffa 310 pbr_map_check(pbrms, false);
be3b67b5
SW
311 }
312}
313
314/* Vrf enabled/disabled */
315void pbr_map_vrf_update(const struct pbr_vrf *pbr_vrf)
316{
317 struct pbr_map *pbrm;
318 struct pbr_map_sequence *pbrms;
319 struct listnode *node;
320
321 if (!pbr_vrf)
322 return;
323
324 bool enabled = pbr_vrf_is_enabled(pbr_vrf);
325
326 DEBUGD(&pbr_dbg_map, "%s: %s (%u) %s, updating pbr maps", __func__,
327 pbr_vrf_name(pbr_vrf), pbr_vrf_id(pbr_vrf),
328 enabled ? "enabled" : "disabled");
329
330 RB_FOREACH (pbrm, pbr_map_entry_head, &pbr_maps) {
5e81f5dd 331 DEBUGD(&pbr_dbg_map, "%s: Looking at %s", __func__, pbrm->name);
be3b67b5
SW
332 for (ALL_LIST_ELEMENTS_RO(pbrm->seqnumbers, node, pbrms))
333 pbrms_vrf_update(pbrms, pbr_vrf);
334 }
335}
336
e5c83d9b
DS
337void pbr_map_write_interfaces(struct vty *vty, struct interface *ifp)
338{
339 struct pbr_interface *pbr_ifp = ifp->info;
340
f1c3fe1b
QY
341 if (pbr_ifp
342 && strncmp(pbr_ifp->mapname, "", sizeof(pbr_ifp->mapname)) != 0)
e5c83d9b
DS
343 vty_out(vty, " pbr-policy %s\n", pbr_ifp->mapname);
344}
345
346struct pbr_map *pbrm_find(const char *name)
347{
348 struct pbr_map pbrm;
349
350 strlcpy(pbrm.name, name, sizeof(pbrm.name));
351
352 return RB_FIND(pbr_map_entry_head, &pbr_maps, &pbrm);
353}
354
b13e5ad6 355extern void pbr_map_delete(struct pbr_map_sequence *pbrms)
e5c83d9b
DS
356{
357 struct pbr_map *pbrm;
b13e5ad6
DS
358 struct listnode *inode;
359 struct pbr_map_interface *pmi;
e5c83d9b 360
b13e5ad6 361 pbrm = pbrms->parent;
e5c83d9b 362
b13e5ad6 363 for (ALL_LIST_ELEMENTS_RO(pbrm->incoming, inode, pmi))
f143cffa 364 pbr_send_pbr_map(pbrms, pmi, false, false);
e5c83d9b 365
b13e5ad6
DS
366 if (pbrms->nhg)
367 pbr_nht_delete_individual_nexthop(pbrms);
e5c83d9b 368
b13e5ad6 369 listnode_delete(pbrm->seqnumbers, pbrms);
e5c83d9b
DS
370
371 if (pbrm->seqnumbers->count == 0) {
372 RB_REMOVE(pbr_map_entry_head, &pbr_maps, pbrm);
37c606ff
DS
373
374 bf_free(pbrm->ifi_bitfield);
e5c83d9b
DS
375 XFREE(MTYPE_PBR_MAP, pbrm);
376 }
377}
378
be3b67b5 379static void pbr_map_delete_common(struct pbr_map_sequence *pbrms)
b13e5ad6
DS
380{
381 struct pbr_map *pbrm = pbrms->parent;
b13e5ad6 382
be3b67b5 383 pbr_map_pbrms_uninstall(pbrms);
b13e5ad6
DS
384
385 pbrm->valid = false;
386 pbrms->nhs_installed = false;
b13e5ad6 387 pbrms->reason |= PBR_MAP_INVALID_NO_NEXTHOPS;
10fcd2a2 388 XFREE(MTYPE_TMP, pbrms->nhgrp_name);
b13e5ad6
DS
389}
390
be3b67b5
SW
391void pbr_map_delete_nexthops(struct pbr_map_sequence *pbrms)
392{
393 pbr_map_delete_common(pbrms);
394}
395
396void pbr_map_delete_vrf(struct pbr_map_sequence *pbrms)
397{
398 pbr_map_delete_common(pbrms);
399}
400
58a1d249 401struct pbr_map_sequence *pbrms_lookup_unique(uint32_t unique, char *ifname,
37c606ff 402 struct pbr_map_interface **ppmi)
e5c83d9b
DS
403{
404 struct pbr_map_sequence *pbrms;
405 struct listnode *snode, *inode;
406 struct pbr_map_interface *pmi;
407 struct pbr_map *pbrm;
408
409 RB_FOREACH (pbrm, pbr_map_entry_head, &pbr_maps) {
410 for (ALL_LIST_ELEMENTS_RO(pbrm->incoming, inode, pmi)) {
58a1d249
DS
411 if (strncmp(pmi->ifp->name, ifname, INTERFACE_NAMSIZ)
412 != 0)
e5c83d9b
DS
413 continue;
414
37c606ff
DS
415 if (ppmi)
416 *ppmi = pmi;
417
e5c83d9b
DS
418 for (ALL_LIST_ELEMENTS_RO(pbrm->seqnumbers, snode,
419 pbrms)) {
420 DEBUGD(&pbr_dbg_map, "%s: Comparing %u to %u",
5e81f5dd 421 __func__, pbrms->unique, unique);
e5c83d9b
DS
422 if (pbrms->unique == unique)
423 return pbrms;
424 }
425 }
426 }
427
428 return NULL;
429}
430
b13e5ad6
DS
431static void pbr_map_add_interfaces(struct pbr_map *pbrm)
432{
433 struct interface *ifp;
434 struct pbr_interface *pbr_ifp;
435 struct vrf *vrf;
436
437 RB_FOREACH (vrf, vrf_name_head, &vrfs_by_name) {
438 FOR_ALL_INTERFACES (vrf, ifp) {
439 if (ifp->info) {
440 pbr_ifp = ifp->info;
441 if (strcmp(pbrm->name, pbr_ifp->mapname) == 0)
442 pbr_map_add_interface(pbrm, ifp);
443 }
444 }
445 }
446}
447
116b86bd
WC
448/* Decodes a standardized DSCP into its representative value */
449uint8_t pbr_map_decode_dscp_enum(const char *name)
450{
451 /* Standard Differentiated Services Field Codepoints */
452 if (!strcmp(name, "cs0"))
453 return 0;
454 if (!strcmp(name, "cs1"))
455 return 8;
456 if (!strcmp(name, "cs2"))
457 return 16;
458 if (!strcmp(name, "cs3"))
459 return 24;
460 if (!strcmp(name, "cs4"))
461 return 32;
462 if (!strcmp(name, "cs5"))
463 return 40;
464 if (!strcmp(name, "cs6"))
465 return 48;
466 if (!strcmp(name, "cs7"))
467 return 56;
468 if (!strcmp(name, "af11"))
469 return 10;
470 if (!strcmp(name, "af12"))
471 return 12;
472 if (!strcmp(name, "af13"))
473 return 14;
474 if (!strcmp(name, "af21"))
475 return 18;
476 if (!strcmp(name, "af22"))
477 return 20;
478 if (!strcmp(name, "af23"))
479 return 22;
480 if (!strcmp(name, "af31"))
481 return 26;
482 if (!strcmp(name, "af32"))
483 return 28;
484 if (!strcmp(name, "af33"))
485 return 30;
486 if (!strcmp(name, "af41"))
487 return 34;
488 if (!strcmp(name, "af42"))
489 return 36;
490 if (!strcmp(name, "af43"))
491 return 38;
492 if (!strcmp(name, "ef"))
493 return 46;
494 if (!strcmp(name, "voice-admit"))
495 return 44;
496
497 /* No match? Error out */
498 return -1;
499}
500
d3765386 501struct pbr_map_sequence *pbrms_get(const char *name, uint32_t seqno)
e5c83d9b
DS
502{
503 struct pbr_map *pbrm;
504 struct pbr_map_sequence *pbrms;
505 struct listnode *node;
e5c83d9b
DS
506
507 pbrm = pbrm_find(name);
508 if (!pbrm) {
509 pbrm = XCALLOC(MTYPE_PBR_MAP, sizeof(*pbrm));
6612590d 510 snprintf(pbrm->name, sizeof(pbrm->name), "%s", name);
e5c83d9b
DS
511
512 pbrm->seqnumbers = list_new();
513 pbrm->seqnumbers->cmp =
514 (int (*)(void *, void *))pbr_map_sequence_compare;
515 pbrm->seqnumbers->del =
516 (void (*)(void *))pbr_map_sequence_delete;
517
518 pbrm->incoming = list_new();
519 pbrm->incoming->cmp =
520 (int (*)(void *, void *))pbr_map_interface_compare;
521 pbrm->incoming->del =
522 (void (*)(void *))pbr_map_interface_list_delete;
523
524 RB_INSERT(pbr_map_entry_head, &pbr_maps, pbrm);
525
37c606ff 526 bf_init(pbrm->ifi_bitfield, 64);
b13e5ad6
DS
527 pbr_map_add_interfaces(pbrm);
528 }
e5c83d9b
DS
529
530 for (ALL_LIST_ELEMENTS_RO(pbrm->seqnumbers, node, pbrms)) {
531 if (pbrms->seqno == seqno)
532 break;
533
534 }
535
536 if (!pbrms) {
537 pbrms = XCALLOC(MTYPE_PBR_MAP_SEQNO, sizeof(*pbrms));
538 pbrms->unique = pbr_map_sequence_unique++;
539 pbrms->seqno = seqno;
540 pbrms->ruleno = pbr_nht_get_next_rule(seqno);
541 pbrms->parent = pbrm;
542 pbrms->reason =
95a9fe02 543 PBR_MAP_INVALID_EMPTY |
e5c83d9b 544 PBR_MAP_INVALID_NO_NEXTHOPS;
be3b67b5 545 pbrms->vrf_name[0] = '\0';
e5c83d9b
DS
546
547 QOBJ_REG(pbrms, pbr_map_sequence);
548 listnode_add_sort(pbrm->seqnumbers, pbrms);
e5c83d9b
DS
549 }
550
e5c83d9b
DS
551 return pbrms;
552}
553
554static void
555pbr_map_sequence_check_nexthops_valid(struct pbr_map_sequence *pbrms)
556{
be3b67b5
SW
557 /* Check if any are present first */
558 if (!pbrms->vrf_unchanged && !pbrms->vrf_lookup && !pbrms->nhg
559 && !pbrms->nhgrp_name) {
560 pbrms->reason |= PBR_MAP_INVALID_NO_NEXTHOPS;
561 return;
562 }
563
564 /*
565 * Check validness of vrf.
566 */
567
568 /* This one can be considered always valid */
569 if (pbrms->vrf_unchanged)
570 pbrms->nhs_installed = true;
571
572 if (pbrms->vrf_lookup) {
573 struct pbr_vrf *pbr_vrf =
574 pbr_vrf_lookup_by_name(pbrms->vrf_name);
575
576 if (pbr_vrf && pbr_vrf_is_valid(pbr_vrf))
577 pbrms->nhs_installed = true;
578 else
579 pbrms->reason |= PBR_MAP_INVALID_VRF;
580 }
581
e5c83d9b
DS
582 /*
583 * Check validness of the nexthop or nexthop-group
584 */
e5c83d9b 585
be3b67b5 586 /* Only nexthop or nexthop group allowed */
e5c83d9b
DS
587 if (pbrms->nhg && pbrms->nhgrp_name)
588 pbrms->reason |= PBR_MAP_INVALID_BOTH_NHANDGRP;
589
590 if (pbrms->nhg &&
591 !pbr_nht_nexthop_group_valid(pbrms->internal_nhg_name))
592 pbrms->reason |= PBR_MAP_INVALID_NEXTHOP;
593
594 if (pbrms->nhgrp_name) {
595 if (!pbr_nht_nexthop_group_valid(pbrms->nhgrp_name))
596 pbrms->reason |= PBR_MAP_INVALID_NEXTHOP_GROUP;
597 else
598 pbrms->nhs_installed = true;
599 }
600}
601
95a9fe02 602static void pbr_map_sequence_check_not_empty(struct pbr_map_sequence *pbrms)
e5c83d9b 603{
01f23aff 604 if (!pbrms->src && !pbrms->dst && !pbrms->mark && !pbrms->dsfield)
95a9fe02 605 pbrms->reason |= PBR_MAP_INVALID_EMPTY;
e5c83d9b
DS
606}
607
608/*
609 * Checks to see if we think that the pbmrs is valid. If we think
610 * the config is valid return true.
611 */
612static void pbr_map_sequence_check_valid(struct pbr_map_sequence *pbrms)
613{
614 pbr_map_sequence_check_nexthops_valid(pbrms);
615
95a9fe02 616 pbr_map_sequence_check_not_empty(pbrms);
e5c83d9b
DS
617}
618
619static bool pbr_map_check_valid_internal(struct pbr_map *pbrm)
620{
621 struct pbr_map_sequence *pbrms;
622 struct listnode *node;
623
624 pbrm->valid = true;
625 for (ALL_LIST_ELEMENTS_RO(pbrm->seqnumbers, node, pbrms)) {
626 pbrms->reason = 0;
627 pbr_map_sequence_check_valid(pbrms);
628 /*
629 * A pbr_map_sequence that is invalid causes
630 * the whole shebang to be invalid
631 */
632 if (pbrms->reason != 0)
633 pbrm->valid = false;
634 }
635
636 return pbrm->valid;
637}
638
639/*
640 * For a given PBR-MAP check to see if we think it is a
641 * valid config or not. If so note that it is and return
642 * that we are valid.
643 */
d3765386 644bool pbr_map_check_valid(const char *name)
e5c83d9b
DS
645{
646 struct pbr_map *pbrm;
647
648 pbrm = pbrm_find(name);
649 if (!pbrm) {
650 DEBUGD(&pbr_dbg_map,
15569c58
DA
651 "%s: Specified PBR-MAP(%s) does not exist?", __func__,
652 name);
e5c83d9b
DS
653 return false;
654 }
655
656 pbr_map_check_valid_internal(pbrm);
657 return pbrm->valid;
658}
659
09813729 660void pbr_map_schedule_policy_from_nhg(const char *nh_group, bool installed)
e5c83d9b
DS
661{
662 struct pbr_map_sequence *pbrms;
e5c83d9b
DS
663 struct pbr_map *pbrm;
664 struct listnode *node;
665
666 RB_FOREACH (pbrm, pbr_map_entry_head, &pbr_maps) {
5e81f5dd 667 DEBUGD(&pbr_dbg_map, "%s: Looking at %s", __func__, pbrm->name);
e5c83d9b
DS
668 for (ALL_LIST_ELEMENTS_RO(pbrm->seqnumbers, node, pbrms)) {
669 DEBUGD(&pbr_dbg_map, "\tNH Grp name: %s",
2f61710b
DS
670 pbrms->nhgrp_name ?
671 pbrms->nhgrp_name : pbrms->internal_nhg_name);
e5c83d9b
DS
672
673 if (pbrms->nhgrp_name
674 && (strcmp(nh_group, pbrms->nhgrp_name) == 0)) {
09813729 675 pbrms->nhs_installed = installed;
e5c83d9b 676
f143cffa 677 pbr_map_check(pbrms, false);
e5c83d9b
DS
678 }
679
680 if (pbrms->nhg
681 && (strcmp(nh_group, pbrms->internal_nhg_name)
682 == 0)) {
09813729 683 pbrms->nhs_installed = installed;
e5c83d9b 684
f143cffa 685 pbr_map_check(pbrms, false);
e5c83d9b
DS
686 }
687 }
688 }
689}
690
d3765386 691void pbr_map_policy_install(const char *name)
e5c83d9b
DS
692{
693 struct pbr_map_sequence *pbrms;
694 struct pbr_map *pbrm;
b13e5ad6
DS
695 struct listnode *node, *inode;
696 struct pbr_map_interface *pmi;
e5c83d9b 697
5e81f5dd 698 DEBUGD(&pbr_dbg_map, "%s: for %s", __func__, name);
e5c83d9b
DS
699 pbrm = pbrm_find(name);
700 if (!pbrm)
701 return;
702
e5c83d9b
DS
703 for (ALL_LIST_ELEMENTS_RO(pbrm->seqnumbers, node, pbrms)) {
704 DEBUGD(&pbr_dbg_map,
5e81f5dd
DS
705 "%s: Looking at what to install %s(%u) %d %d", __func__,
706 name, pbrms->seqno, pbrm->valid, pbrms->nhs_installed);
e5c83d9b 707
be3b67b5
SW
708 if (pbrm->valid && pbrms->nhs_installed
709 && pbrm->incoming->count) {
710 DEBUGD(&pbr_dbg_map, "\tInstalling %s %u", pbrm->name,
711 pbrms->seqno);
b13e5ad6 712 for (ALL_LIST_ELEMENTS_RO(pbrm->incoming, inode, pmi))
be3b67b5 713 if (pbr_map_interface_is_valid(pmi))
f143cffa
SW
714 pbr_send_pbr_map(pbrms, pmi, true,
715 false);
b13e5ad6 716 }
e5c83d9b
DS
717 }
718}
719
b13e5ad6 720void pbr_map_policy_delete(struct pbr_map *pbrm, struct pbr_map_interface *pmi)
e5c83d9b 721{
b13e5ad6
DS
722 struct listnode *node;
723 struct pbr_map_sequence *pbrms;
e5c83d9b 724
e5c83d9b 725
b13e5ad6 726 for (ALL_LIST_ELEMENTS_RO(pbrm->seqnumbers, node, pbrms))
f143cffa 727 pbr_send_pbr_map(pbrms, pmi, false, false);
b13e5ad6 728
38e9ccde 729 pmi->delete = true;
e5c83d9b
DS
730}
731
732/*
733 * For a nexthop group specified, see if any of the pbr-maps
734 * are using it and if so, check to see that we are still
735 * valid for usage. If we are valid then schedule the installation/deletion
736 * of the pbr-policy.
737 */
d3765386 738void pbr_map_check_nh_group_change(const char *nh_group)
e5c83d9b
DS
739{
740 struct pbr_map_sequence *pbrms;
741 struct pbr_map *pbrm;
ff9799c3
DS
742 struct listnode *node, *inode;
743 struct pbr_map_interface *pmi;
e5c83d9b
DS
744 bool found_name;
745
e5c83d9b
DS
746 RB_FOREACH (pbrm, pbr_map_entry_head, &pbr_maps) {
747 for (ALL_LIST_ELEMENTS_RO(pbrm->seqnumbers, node, pbrms)) {
748 found_name = false;
749 if (pbrms->nhgrp_name)
750 found_name =
751 !strcmp(nh_group, pbrms->nhgrp_name);
752 else if (pbrms->nhg)
753 found_name = !strcmp(nh_group,
754 pbrms->internal_nhg_name);
755
756 if (found_name) {
757 bool original = pbrm->valid;
e5c83d9b
DS
758
759 pbr_map_check_valid_internal(pbrm);
760
ff9799c3 761 if (pbrm->valid && (original != pbrm->valid))
b13e5ad6 762 pbr_map_install(pbrm);
ff9799c3
DS
763
764 if (pbrm->valid == false)
765 for (ALL_LIST_ELEMENTS_RO(
766 pbrm->incoming, inode,
767 pmi))
768 pbr_send_pbr_map(pbrms, pmi,
f143cffa 769 false, false);
e5c83d9b
DS
770 }
771 }
772 }
773}
774
fcf29c69
DS
775void pbr_map_check_vrf_nh_group_change(const char *nh_group,
776 struct pbr_vrf *pbr_vrf,
777 uint32_t old_vrf_id)
778{
779 struct pbr_map *pbrm;
780 struct pbr_map_sequence *pbrms;
781 struct listnode *node;
782
9d961247 783
fcf29c69
DS
784 RB_FOREACH (pbrm, pbr_map_entry_head, &pbr_maps) {
785 for (ALL_LIST_ELEMENTS_RO(pbrm->seqnumbers, node, pbrms)) {
786 if (pbrms->nhgrp_name)
787 continue;
788
9d0b324d
MS
789 if (pbrms->nhg == NULL)
790 continue;
791
792 if (strcmp(nh_group, pbrms->internal_nhg_name))
793 continue;
794
795 if (pbrms->nhg->nexthop == NULL)
fcf29c69
DS
796 continue;
797
798 if (pbrms->nhg->nexthop->vrf_id != old_vrf_id)
799 continue;
800
801 pbrms->nhg->nexthop->vrf_id = pbr_vrf_id(pbr_vrf);
802 }
803 }
804}
805
7cbdabff
DS
806void pbr_map_check_interface_nh_group_change(const char *nh_group,
807 struct interface *ifp,
808 ifindex_t oldifindex)
809{
810 struct pbr_map *pbrm;
811 struct pbr_map_sequence *pbrms;
812 struct listnode *node;
813
814 RB_FOREACH (pbrm, pbr_map_entry_head, &pbr_maps) {
815 for (ALL_LIST_ELEMENTS_RO(pbrm->seqnumbers, node, pbrms)) {
816 if (pbrms->nhgrp_name)
817 continue;
818
9d0b324d
MS
819 if (pbrms->nhg == NULL)
820 continue;
821
822 if (strcmp(nh_group, pbrms->internal_nhg_name))
823 continue;
824
825 if (pbrms->nhg->nexthop == NULL)
7cbdabff
DS
826 continue;
827
828 if (pbrms->nhg->nexthop->ifindex != oldifindex)
829 continue;
830
831 pbrms->nhg->nexthop->ifindex = ifp->ifindex;
832 }
833 }
834}
835
f143cffa 836void pbr_map_check(struct pbr_map_sequence *pbrms, bool changed)
e5c83d9b 837{
e5c83d9b 838 struct pbr_map *pbrm;
b13e5ad6 839 bool install;
e5c83d9b 840
b13e5ad6 841 pbrm = pbrms->parent;
15569c58
DA
842 DEBUGD(&pbr_dbg_map, "%s: for %s(%u)", __func__, pbrm->name,
843 pbrms->seqno);
b13e5ad6 844 if (pbr_map_check_valid(pbrm->name))
2f61710b 845 DEBUGD(&pbr_dbg_map, "We are totally valid %s",
b13e5ad6 846 pbrm->name);
e5c83d9b 847
b13e5ad6
DS
848 if (pbrms->reason == PBR_MAP_VALID_SEQUENCE_NUMBER) {
849 install = true;
e5c83d9b 850 DEBUGD(&pbr_dbg_map, "%s: Installing %s(%u) reason: %" PRIu64,
15569c58 851 __func__, pbrm->name, pbrms->seqno, pbrms->reason);
e5c83d9b 852 DEBUGD(&pbr_dbg_map,
b13e5ad6
DS
853 "\tSending PBR_MAP_POLICY_INSTALL event");
854 } else {
855 install = false;
15569c58
DA
856 DEBUGD(&pbr_dbg_map, "%s: Removing %s(%u) reason: %" PRIu64,
857 __func__, pbrm->name, pbrms->seqno, pbrms->reason);
e5c83d9b
DS
858 }
859
be3b67b5 860 if (install)
f143cffa 861 pbr_map_pbrms_install(pbrms, changed);
be3b67b5
SW
862 else
863 pbr_map_pbrms_uninstall(pbrms);
e5c83d9b
DS
864}
865
b13e5ad6 866void pbr_map_install(struct pbr_map *pbrm)
e5c83d9b 867{
b13e5ad6 868 struct pbr_map_sequence *pbrms;
be3b67b5 869 struct listnode *node;
e5c83d9b 870
b13e5ad6 871 if (!pbrm->incoming->count)
e5c83d9b 872 return;
e5c83d9b 873
b13e5ad6 874 for (ALL_LIST_ELEMENTS_RO(pbrm->seqnumbers, node, pbrms))
f143cffa 875 pbr_map_pbrms_install(pbrms, false);
e5c83d9b
DS
876}
877
d3765386 878void pbr_map_init(void)
e5c83d9b
DS
879{
880 RB_INIT(pbr_map_entry_head, &pbr_maps);
881
882 pbr_map_sequence_unique = 1;
883}