]> git.proxmox.com Git - mirror_frr.git/blame - bgpd/rfapi/rfapi_monitor.c
bgpd, isisd, lib: Make key values const for skiplist
[mirror_frr.git] / bgpd / rfapi / rfapi_monitor.c
CommitLineData
d62a17ae 1/*
65efcfce
LB
2 *
3 * Copyright 2009-2016, LabN Consulting, L.L.C.
4 *
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
896014f4
DL
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
65efcfce
LB
19 */
20
21/*
22 * File: rfapi_monitor.c
23 */
24
25/* TBD remove unneeded includes */
26
f8b6f499
LB
27#include "lib/zebra.h"
28#include "lib/prefix.h"
fe08ba7e 29#include "lib/agg_table.h"
f8b6f499
LB
30#include "lib/vty.h"
31#include "lib/memory.h"
32#include "lib/log.h"
33#include "lib/table.h"
34#include "lib/skiplist.h"
35
36#include "bgpd/bgpd.h"
37
38#include "bgpd/rfapi/bgp_rfapi_cfg.h"
39#include "bgpd/rfapi/rfapi.h"
40#include "bgpd/rfapi/rfapi_backend.h"
41
42#include "bgpd/rfapi/rfapi.h"
43#include "bgpd/rfapi/rfapi_import.h"
44#include "bgpd/rfapi/vnc_import_bgp.h"
45#include "bgpd/rfapi/rfapi_private.h"
46#include "bgpd/rfapi/rfapi_monitor.h"
47#include "bgpd/rfapi/rfapi_vty.h"
48#include "bgpd/rfapi/rfapi_rib.h"
a3b55c25 49#include "bgpd/rfapi/vnc_debug.h"
65efcfce
LB
50
51#define DEBUG_L2_EXTRA 0
52#define DEBUG_DUP_CHECK 0
53#define DEBUG_ETH_SL 0
54
d62a17ae 55static void rfapiMonitorTimerRestart(struct rfapi_monitor_vpn *m);
65efcfce 56
d62a17ae 57static void rfapiMonitorEthTimerRestart(struct rfapi_monitor_eth *m);
65efcfce
LB
58
59/*
60 * Forward declarations
61 */
d62a17ae 62static void rfapiMonitorEthDetachImport(struct bgp *bgp,
63 struct rfapi_monitor_eth *mon);
65efcfce
LB
64
65#if DEBUG_ETH_SL
66/*
67 * Debug function, special case
68 */
fe08ba7e 69void rfapiMonitorEthSlCheck(struct agg_node *rn, const char *tag1,
d62a17ae 70 const char *tag2)
65efcfce 71{
fe08ba7e 72 struct agg_node *rn_saved = NULL;
d62a17ae 73 static struct skiplist *sl_saved = NULL;
74 struct skiplist *sl;
75
76 if (!rn)
77 return;
78
79 if (rn_saved && (rn != rn_saved))
80 return;
81
82 if (!rn_saved)
83 rn_saved = rn;
84
85 sl = RFAPI_MONITOR_ETH(rn);
86 if (sl || sl_saved) {
87 vnc_zlog_debug_verbose(
88 "%s[%s%s]: rn=%p, rn->lock=%d, old sl=%p, new sl=%p",
89 __func__, (tag1 ? tag1 : ""), (tag2 ? tag2 : ""), rn,
90 rn->lock, sl_saved, sl);
91 sl_saved = sl;
92 }
65efcfce
LB
93}
94#endif
95
96/*
97 * Debugging function that aborts when it finds monitors whose
98 * "next" pointer * references themselves
99 */
d62a17ae 100void rfapiMonitorLoopCheck(struct rfapi_monitor_vpn *mchain)
65efcfce 101{
d62a17ae 102 struct rfapi_monitor_vpn *m;
65efcfce 103
d62a17ae 104 for (m = mchain; m; m = m->next)
105 assert(m != m->next);
65efcfce
LB
106}
107
108#if DEBUG_DUP_CHECK
109/*
110 * Debugging code: see if a monitor is mentioned more than once
111 * in a HD's monitor list
112 */
d62a17ae 113void rfapiMonitorDupCheck(struct bgp *bgp)
65efcfce 114{
d62a17ae 115 struct listnode *hnode;
116 struct rfapi_descriptor *rfd;
117
118 for (ALL_LIST_ELEMENTS_RO(&bgp->rfapi->descriptors, hnode, rfd)) {
fe08ba7e 119 struct agg_node *mrn;
d62a17ae 120
121 if (!rfd->mon)
122 continue;
123
fe08ba7e
DS
124 for (mrn = agg_route_top(rfd->mon); mrn;
125 mrn = agg_route_next(mrn)) {
d62a17ae 126 struct rfapi_monitor_vpn *m;
127 for (m = (struct rfapi_monitor_vpn *)(mrn->info); m;
128 m = m->next)
129 m->dcount = 0;
130 }
131 }
132
133 for (ALL_LIST_ELEMENTS_RO(&bgp->rfapi->descriptors, hnode, rfd)) {
fe08ba7e 134 struct agg_node *mrn;
d62a17ae 135
136 if (!rfd->mon)
137 continue;
138
fe08ba7e
DS
139 for (mrn = agg_route_top(rfd->mon); mrn;
140 mrn = agg_route_next(mrn)) {
d62a17ae 141 struct rfapi_monitor_vpn *m;
142
143 for (m = (struct rfapi_monitor_vpn *)(mrn->info); m;
144 m = m->next)
145 assert(++m->dcount == 1);
146 }
147 }
65efcfce
LB
148}
149#endif
150
151/* debug */
d62a17ae 152void rfapiMonitorCleanCheck(struct bgp *bgp)
65efcfce 153{
d62a17ae 154 struct listnode *hnode;
155 struct rfapi_descriptor *rfd;
65efcfce 156
d62a17ae 157 for (ALL_LIST_ELEMENTS_RO(&bgp->rfapi->descriptors, hnode, rfd)) {
158 assert(!rfd->import_table->vpn0_queries[AFI_IP]);
159 assert(!rfd->import_table->vpn0_queries[AFI_IP6]);
65efcfce 160
fe08ba7e 161 struct agg_node *rn;
65efcfce 162
fe08ba7e
DS
163 for (rn = agg_route_top(
164 rfd->import_table->imported_vpn[AFI_IP]);
165 rn; rn = agg_route_next(rn)) {
65efcfce 166
d62a17ae 167 assert(!RFAPI_MONITOR_VPN(rn));
168 }
fe08ba7e
DS
169 for (rn = agg_route_top(
170 rfd->import_table->imported_vpn[AFI_IP6]);
171 rn; rn = agg_route_next(rn)) {
65efcfce 172
d62a17ae 173 assert(!RFAPI_MONITOR_VPN(rn));
174 }
175 }
65efcfce
LB
176}
177
178/* debug */
d62a17ae 179void rfapiMonitorCheckAttachAllowed(void)
65efcfce 180{
d62a17ae 181 struct bgp *bgp = bgp_get_default();
182 assert(!(bgp->rfapi_cfg->flags & BGP_VNC_CONFIG_CALLBACK_DISABLE));
65efcfce
LB
183}
184
fe08ba7e 185void rfapiMonitorExtraFlush(safi_t safi, struct agg_node *rn)
65efcfce 186{
d62a17ae 187 struct rfapi_it_extra *hie;
188 struct rfapi_monitor_vpn *v;
189 struct rfapi_monitor_vpn *v_next;
190 struct rfapi_monitor_encap *e = NULL;
191 struct rfapi_monitor_encap *e_next = NULL;
192
193 if (!rn)
194 return;
195
196 if (!rn->aggregate)
197 return;
198
199 hie = (struct rfapi_it_extra *)(rn->aggregate);
200
201 switch (safi) {
202 case SAFI_ENCAP:
203 for (e = hie->u.encap.e; e; e = e_next) {
204 e_next = e->next;
205 e->next = NULL;
206 XFREE(MTYPE_RFAPI_MONITOR_ENCAP, e);
fe08ba7e 207 agg_unlock_node(rn);
d62a17ae 208 }
209 hie->u.encap.e = NULL;
210 break;
211
212 case SAFI_MPLS_VPN:
213 for (v = hie->u.vpn.v; v; v = v_next) {
214 v_next = v->next;
215 v->next = NULL;
216 XFREE(MTYPE_RFAPI_MONITOR, e);
fe08ba7e 217 agg_unlock_node(rn);
d62a17ae 218 }
219 hie->u.vpn.v = NULL;
220 if (hie->u.vpn.e.source) {
221 while (!skiplist_delete_first(hie->u.vpn.e.source)) {
fe08ba7e 222 agg_unlock_node(rn);
d62a17ae 223 }
224 skiplist_free(hie->u.vpn.e.source);
225 hie->u.vpn.e.source = NULL;
fe08ba7e 226 agg_unlock_node(rn);
d62a17ae 227 }
228 if (hie->u.vpn.idx_rd) {
40381db7 229 /* looping through bpi->extra->vnc.import.rd is tbd */
d62a17ae 230 while (!skiplist_delete_first(hie->u.vpn.idx_rd)) {
fe08ba7e 231 agg_unlock_node(rn);
d62a17ae 232 }
233 skiplist_free(hie->u.vpn.idx_rd);
234 hie->u.vpn.idx_rd = NULL;
fe08ba7e 235 agg_unlock_node(rn);
d62a17ae 236 }
237 if (hie->u.vpn.mon_eth) {
238 while (!skiplist_delete_first(hie->u.vpn.mon_eth)) {
fe08ba7e 239 agg_unlock_node(rn);
d62a17ae 240 }
241 skiplist_free(hie->u.vpn.mon_eth);
242 hie->u.vpn.mon_eth = NULL;
fe08ba7e 243 agg_unlock_node(rn);
d62a17ae 244 }
245 break;
246
247 default:
248 assert(0);
249 }
250 XFREE(MTYPE_RFAPI_IT_EXTRA, hie);
251 rn->aggregate = NULL;
fe08ba7e 252 agg_unlock_node(rn);
65efcfce
LB
253}
254
255/*
256 * If the child lists are empty, release the rfapi_it_extra struct
257 */
fe08ba7e 258void rfapiMonitorExtraPrune(safi_t safi, struct agg_node *rn)
65efcfce 259{
d62a17ae 260 struct rfapi_it_extra *hie;
261
262 if (!rn)
263 return;
264
265 if (!rn->aggregate)
266 return;
267
268 hie = (struct rfapi_it_extra *)(rn->aggregate);
269
270 switch (safi) {
271 case SAFI_ENCAP:
272 if (hie->u.encap.e)
273 return;
274 break;
275
276 case SAFI_MPLS_VPN:
277 if (hie->u.vpn.v)
278 return;
279 if (hie->u.vpn.mon_eth) {
280 if (skiplist_count(hie->u.vpn.mon_eth))
281 return;
282 skiplist_free(hie->u.vpn.mon_eth);
283 hie->u.vpn.mon_eth = NULL;
fe08ba7e 284 agg_unlock_node(rn); /* uncount skiplist */
d62a17ae 285 }
286 if (hie->u.vpn.e.source) {
287 if (skiplist_count(hie->u.vpn.e.source))
288 return;
289 skiplist_free(hie->u.vpn.e.source);
290 hie->u.vpn.e.source = NULL;
fe08ba7e 291 agg_unlock_node(rn);
d62a17ae 292 }
293 if (hie->u.vpn.idx_rd) {
294 if (skiplist_count(hie->u.vpn.idx_rd))
295 return;
296 skiplist_free(hie->u.vpn.idx_rd);
297 hie->u.vpn.idx_rd = NULL;
fe08ba7e 298 agg_unlock_node(rn);
d62a17ae 299 }
300 if (hie->u.vpn.mon_eth) {
301 if (skiplist_count(hie->u.vpn.mon_eth))
302 return;
303 skiplist_free(hie->u.vpn.mon_eth);
304 hie->u.vpn.mon_eth = NULL;
fe08ba7e 305 agg_unlock_node(rn);
d62a17ae 306 }
307 break;
308
309 default:
310 assert(0);
311 }
312 XFREE(MTYPE_RFAPI_IT_EXTRA, hie);
313 rn->aggregate = NULL;
fe08ba7e 314 agg_unlock_node(rn);
65efcfce
LB
315}
316
317/*
318 * returns locked node
319 */
fe08ba7e
DS
320struct agg_node *rfapiMonitorGetAttachNode(struct rfapi_descriptor *rfd,
321 struct prefix *p)
65efcfce 322{
d62a17ae 323 afi_t afi;
fe08ba7e 324 struct agg_node *rn;
d62a17ae 325
326 if (RFAPI_0_PREFIX(p)) {
327 assert(1);
328 }
329
330 afi = family2afi(p->family);
331 assert(afi);
332
333 /*
334 * It's possible that even though there is a route at this node,
335 * there are no routes with valid UN addresses (i.e,. with no
336 * valid tunnel routes). Check for that and walk back up the
337 * tree if necessary.
338 *
339 * When the outer loop completes, the matched node, if any, is
340 * locked (i.e., its reference count has been incremented) to
341 * account for the VPN monitor we are about to attach.
342 *
343 * if a monitor is moved to another node, there must be
344 * corresponding unlock/locks
345 */
fe08ba7e 346 for (rn = agg_node_match(rfd->import_table->imported_vpn[afi], p);
d62a17ae 347 rn;) {
348
40381db7 349 struct bgp_path_info *bpi;
d62a17ae 350 struct prefix pfx_dummy;
351
352 /* TBD update this code to use new valid_interior_count */
40381db7 353 for (bpi = rn->info; bpi; bpi = bpi->next) {
d62a17ae 354 /*
355 * If there is a cached ENCAP UN address, it's a usable
356 * VPN route
357 */
40381db7 358 if (bpi->extra && bpi->extra->vnc.import.un_family) {
d62a17ae 359 break;
360 }
361
362 /*
363 * Or if there is a valid Encap Attribute tunnel subtlv
364 * address,
365 * it's a usable VPN route.
366 */
40381db7 367 if (!rfapiGetVncTunnelUnAddr(bpi->attr, &pfx_dummy)) {
d62a17ae 368 break;
369 }
370 }
40381db7 371 if (bpi)
d62a17ae 372 break;
373
fe08ba7e
DS
374 agg_unlock_node(rn);
375 if ((rn = agg_node_parent(rn))) {
376 agg_lock_node(rn);
d62a17ae 377 }
378 }
379
380 if (!rn) {
381 struct prefix pfx_default;
382
383 memset(&pfx_default, 0, sizeof(pfx_default));
384 pfx_default.family = p->family;
385
386 /* creates default node if none exists, and increments ref count
387 */
fe08ba7e
DS
388 rn = agg_node_get(rfd->import_table->imported_vpn[afi],
389 &pfx_default);
d62a17ae 390 }
391
392 return rn;
65efcfce
LB
393}
394
d62a17ae 395/*
65efcfce
LB
396 * If this function happens to attach the monitor to a radix tree
397 * node (as opposed to the 0-prefix list), the node pointer is
398 * returned (for the benefit of caller which might like to use it
399 * to generate an immediate query response).
400 */
fe08ba7e
DS
401static struct agg_node *rfapiMonitorAttachImport(struct rfapi_descriptor *rfd,
402 struct rfapi_monitor_vpn *m)
65efcfce 403{
fe08ba7e 404 struct agg_node *rn;
d62a17ae 405
406 rfapiMonitorCheckAttachAllowed();
407
408 if (RFAPI_0_PREFIX(&m->p)) {
409 /*
410 * Add new monitor entry to vpn0 list
411 */
412 afi_t afi;
413
414 afi = family2afi(m->p.family);
415 assert(afi);
416
417 m->next = rfd->import_table->vpn0_queries[afi];
418 rfd->import_table->vpn0_queries[afi] = m;
419 vnc_zlog_debug_verbose("%s: attached monitor %p to vpn0 list",
420 __func__, m);
421 return NULL;
422 }
423
424 /*
425 * Attach new monitor entry to import table node
426 */
427 rn = rfapiMonitorGetAttachNode(rfd, &m->p); /* returns locked rn */
428 m->node = rn;
429 m->next = RFAPI_MONITOR_VPN(rn);
430 RFAPI_MONITOR_VPN_W_ALLOC(rn) = m;
431 RFAPI_CHECK_REFCOUNT(rn, SAFI_MPLS_VPN, 0);
432 vnc_zlog_debug_verbose("%s: attached monitor %p to rn %p", __func__, m,
433 rn);
434 return rn;
65efcfce
LB
435}
436
437
438/*
439 * reattach monitors for this HD to import table
440 */
d62a17ae 441void rfapiMonitorAttachImportHd(struct rfapi_descriptor *rfd)
65efcfce 442{
fe08ba7e 443 struct agg_node *mrn;
d62a17ae 444
445 if (!rfd->mon) {
446 /*
447 * No monitors for this HD
448 */
449 return;
450 }
451
fe08ba7e 452 for (mrn = agg_route_top(rfd->mon); mrn; mrn = agg_route_next(mrn)) {
d62a17ae 453
454 if (!mrn->info)
455 continue;
456
457 (void)rfapiMonitorAttachImport(
458 rfd, (struct rfapi_monitor_vpn *)(mrn->info));
459 }
65efcfce
LB
460}
461
462/*
463 * Adds a monitor for a query to the NVE descriptor's list
464 * and, if callbacks are enabled, attaches it to the import table.
465 *
466 * If we happened to locate the import table radix tree attachment
467 * point, return it so the caller can use it to generate a query
468 * response without repeating the lookup. Note that when callbacks
469 * are disabled, this function will not perform a lookup, and the
470 * caller will have to do its own lookup.
471 */
fe08ba7e
DS
472struct agg_node *rfapiMonitorAdd(struct bgp *bgp, struct rfapi_descriptor *rfd,
473 struct prefix *p)
65efcfce 474{
d62a17ae 475 struct rfapi_monitor_vpn *m;
fe08ba7e 476 struct agg_node *rn;
d62a17ae 477
478 /*
479 * Initialize nve's monitor list if needed
480 * NB use the same radix tree for IPv4 and IPv6 targets.
481 * The prefix will always have full-length mask (/32, /128)
482 * or be 0/0 so they won't get mixed up.
483 */
484 if (!rfd->mon) {
fe08ba7e 485 rfd->mon = agg_table_init();
d62a17ae 486 }
fe08ba7e 487 rn = agg_node_get(rfd->mon, p);
d62a17ae 488 if (rn->info) {
489 /*
490 * received this query before, no further action needed
491 */
492 rfapiMonitorTimerRestart((struct rfapi_monitor_vpn *)rn->info);
fe08ba7e 493 agg_unlock_node(rn);
d62a17ae 494 return NULL;
495 }
496
497 /*
498 * New query for this nve, record it in the HD
499 */
500 rn->info =
501 XCALLOC(MTYPE_RFAPI_MONITOR, sizeof(struct rfapi_monitor_vpn));
502 m = (struct rfapi_monitor_vpn *)(rn->info);
503 m->rfd = rfd;
504 prefix_copy(&m->p, p);
505
506 ++rfd->monitor_count;
507 ++bgp->rfapi->monitor_count;
508
509 rfapiMonitorTimerRestart(m);
510
511 if (bgp->rfapi_cfg->flags & BGP_VNC_CONFIG_CALLBACK_DISABLE) {
512 /*
513 * callbacks turned off, so don't attach monitor to import table
514 */
515 return NULL;
516 }
517
518
519 /*
520 * attach to import table
521 */
522 return rfapiMonitorAttachImport(rfd, m);
65efcfce
LB
523}
524
525/*
526 * returns monitor pointer if found, NULL if not
527 */
528static struct rfapi_monitor_vpn *
d62a17ae 529rfapiMonitorDetachImport(struct rfapi_monitor_vpn *m)
65efcfce 530{
d62a17ae 531 struct rfapi_monitor_vpn *prev;
532 struct rfapi_monitor_vpn *this = NULL;
533
534 if (RFAPI_0_PREFIX(&m->p)) {
535 afi_t afi;
536
537 /*
538 * 0-prefix monitors are stored in a special list and not
539 * in the import VPN tree
540 */
541
542 afi = family2afi(m->p.family);
543 assert(afi);
544
545 if (m->rfd->import_table) {
546 for (prev = NULL,
547 this = m->rfd->import_table->vpn0_queries[afi];
548 this; prev = this, this = this->next) {
549
550 if (this == m)
551 break;
552 }
553 if (this) {
554 if (!prev) {
555 m->rfd->import_table
556 ->vpn0_queries[afi] =
557 this->next;
558 } else {
559 prev->next = this->next;
560 }
561 }
562 }
563 } else {
564
565 if (m->node) {
566 for (prev = NULL, this = RFAPI_MONITOR_VPN(m->node);
567 this; prev = this, this = this->next) {
568
569 if (this == m)
570 break;
571 }
572 if (this) {
573 if (prev) {
574 prev->next = this->next;
575 } else {
576 RFAPI_MONITOR_VPN_W_ALLOC(m->node) =
577 this->next;
578 }
579 RFAPI_CHECK_REFCOUNT(m->node, SAFI_MPLS_VPN, 1);
fe08ba7e 580 agg_unlock_node(m->node);
d62a17ae 581 }
582 m->node = NULL;
583 }
584 }
585 return this;
65efcfce
LB
586}
587
588
d62a17ae 589void rfapiMonitorDetachImportHd(struct rfapi_descriptor *rfd)
65efcfce 590{
fe08ba7e 591 struct agg_node *rn;
d62a17ae 592
593 if (!rfd->mon)
594 return;
595
fe08ba7e 596 for (rn = agg_route_top(rfd->mon); rn; rn = agg_route_next(rn)) {
d62a17ae 597 if (rn->info) {
598 rfapiMonitorDetachImport(
599 (struct rfapi_monitor_vpn *)(rn->info));
600 }
601 }
65efcfce
LB
602}
603
d62a17ae 604void rfapiMonitorDel(struct bgp *bgp, struct rfapi_descriptor *rfd,
605 struct prefix *p)
65efcfce 606{
fe08ba7e 607 struct agg_node *rn;
d62a17ae 608 struct rfapi_monitor_vpn *m;
609
610 assert(rfd->mon);
fe08ba7e 611 rn = agg_node_get(rfd->mon, p); /* locks node */
d62a17ae 612 m = rn->info;
613
614 assert(m);
615
616 /*
617 * remove from import table
618 */
619 if (!(bgp->rfapi_cfg->flags & BGP_VNC_CONFIG_CALLBACK_DISABLE)) {
620 rfapiMonitorDetachImport(m);
621 }
622
623 if (m->timer) {
624 thread_cancel(m->timer);
625 m->timer = NULL;
626 }
627
628 /*
629 * remove from rfd list
630 */
631 XFREE(MTYPE_RFAPI_MONITOR, m);
632 rn->info = NULL;
fe08ba7e
DS
633 agg_unlock_node(rn); /* undo original lock when created */
634 agg_unlock_node(rn); /* undo lock in agg_node_get */
d62a17ae 635
636 --rfd->monitor_count;
637 --bgp->rfapi->monitor_count;
65efcfce
LB
638}
639
640/*
641 * returns count of monitors deleted
642 */
d62a17ae 643int rfapiMonitorDelHd(struct rfapi_descriptor *rfd)
65efcfce 644{
fe08ba7e 645 struct agg_node *rn;
d62a17ae 646 struct bgp *bgp;
647 int count = 0;
648
649 vnc_zlog_debug_verbose("%s: entry rfd=%p", __func__, rfd);
650
651 bgp = bgp_get_default();
652
653 if (rfd->mon) {
fe08ba7e
DS
654 for (rn = agg_route_top(rfd->mon); rn;
655 rn = agg_route_next(rn)) {
d62a17ae 656 struct rfapi_monitor_vpn *m;
657 if ((m = rn->info)) {
658 if (!(bgp->rfapi_cfg->flags
659 & BGP_VNC_CONFIG_CALLBACK_DISABLE)) {
660 rfapiMonitorDetachImport(m);
661 }
662
663 if (m->timer) {
664 thread_cancel(m->timer);
665 m->timer = NULL;
666 }
667
668 XFREE(MTYPE_RFAPI_MONITOR, m);
669 rn->info = NULL;
fe08ba7e 670 agg_unlock_node(rn); /* undo original lock
d62a17ae 671 when created */
672 ++count;
673 --rfd->monitor_count;
674 --bgp->rfapi->monitor_count;
675 }
676 }
fe08ba7e 677 agg_table_finish(rfd->mon);
d62a17ae 678 rfd->mon = NULL;
679 }
680
681 if (rfd->mon_eth) {
682
683 struct rfapi_monitor_eth *mon_eth;
684
685 while (!skiplist_first(rfd->mon_eth, NULL, (void **)&mon_eth)) {
686
687 int rc;
688
689 if (!(bgp->rfapi_cfg->flags
690 & BGP_VNC_CONFIG_CALLBACK_DISABLE)) {
691 rfapiMonitorEthDetachImport(bgp, mon_eth);
692 } else {
65efcfce 693#if DEBUG_L2_EXTRA
d62a17ae 694 vnc_zlog_debug_verbose(
695 "%s: callbacks disabled, not attempting to detach mon_eth %p",
696 __func__, mon_eth);
65efcfce 697#endif
d62a17ae 698 }
699
700 if (mon_eth->timer) {
701 thread_cancel(mon_eth->timer);
702 mon_eth->timer = NULL;
703 }
704
705 /*
706 * remove from rfd list
707 */
708 rc = skiplist_delete(rfd->mon_eth, mon_eth, mon_eth);
709 assert(!rc);
710
711 vnc_zlog_debug_verbose("%s: freeing mon_eth %p",
712 __func__, mon_eth);
713 XFREE(MTYPE_RFAPI_MONITOR_ETH, mon_eth);
714
715 ++count;
716 --rfd->monitor_count;
717 --bgp->rfapi->monitor_count;
718 }
719 skiplist_free(rfd->mon_eth);
720 rfd->mon_eth = NULL;
721 }
722
723 return count;
65efcfce
LB
724}
725
d62a17ae 726void rfapiMonitorResponseRemovalOff(struct bgp *bgp)
65efcfce 727{
d62a17ae 728 if (bgp->rfapi_cfg->flags & BGP_VNC_CONFIG_RESPONSE_REMOVAL_DISABLE) {
729 return;
730 }
731 bgp->rfapi_cfg->flags |= BGP_VNC_CONFIG_RESPONSE_REMOVAL_DISABLE;
65efcfce
LB
732}
733
d62a17ae 734void rfapiMonitorResponseRemovalOn(struct bgp *bgp)
65efcfce 735{
d62a17ae 736 if (!(bgp->rfapi_cfg->flags
737 & BGP_VNC_CONFIG_RESPONSE_REMOVAL_DISABLE)) {
738 return;
739 }
740 bgp->rfapi_cfg->flags &= ~BGP_VNC_CONFIG_RESPONSE_REMOVAL_DISABLE;
65efcfce
LB
741}
742
d62a17ae 743static int rfapiMonitorTimerExpire(struct thread *t)
65efcfce 744{
d62a17ae 745 struct rfapi_monitor_vpn *m = t->arg;
65efcfce 746
d62a17ae 747 /* forget reference to thread, it's gone */
748 m->timer = NULL;
65efcfce 749
d62a17ae 750 /* delete the monitor */
751 rfapiMonitorDel(bgp_get_default(), m->rfd, &m->p);
65efcfce 752
d62a17ae 753 return 0;
65efcfce
LB
754}
755
d62a17ae 756static void rfapiMonitorTimerRestart(struct rfapi_monitor_vpn *m)
65efcfce 757{
d62a17ae 758 if (m->timer) {
759 unsigned long remain = thread_timer_remain_second(m->timer);
760
761 /* unexpected case, but avoid wraparound problems below */
762 if (remain > m->rfd->response_lifetime)
763 return;
764
765 /* don't restart if we just restarted recently */
766 if (m->rfd->response_lifetime - remain < 2)
767 return;
768
769 thread_cancel(m->timer);
770 m->timer = NULL;
771 }
772
773 {
774 char buf[BUFSIZ];
775
776 vnc_zlog_debug_verbose(
777 "%s: target %s life %u", __func__,
778 rfapi_ntop(m->p.family, m->p.u.val, buf, BUFSIZ),
779 m->rfd->response_lifetime);
780 }
781 m->timer = NULL;
782 thread_add_timer(bm->master, rfapiMonitorTimerExpire, m,
783 m->rfd->response_lifetime, &m->timer);
65efcfce
LB
784}
785
d62a17ae 786/*
65efcfce
LB
787 * called when an updated response is sent to the NVE. Per
788 * ticket 255, restart timers for any monitors that could have
789 * been responsible for the response, i.e., any monitors for
790 * the exact prefix or a parent of it.
791 */
d62a17ae 792void rfapiMonitorTimersRestart(struct rfapi_descriptor *rfd, struct prefix *p)
65efcfce 793{
fe08ba7e 794 struct agg_node *rn;
d62a17ae 795
796 if (AF_ETHERNET == p->family) {
797 struct rfapi_monitor_eth *mon_eth;
798 int rc;
799 void *cursor;
800
801 /*
802 * XXX match any LNI
803 */
804 for (cursor = NULL,
805 rc = skiplist_next(rfd->mon_eth, NULL, (void **)&mon_eth,
806 &cursor);
807 rc == 0; rc = skiplist_next(rfd->mon_eth, NULL,
808 (void **)&mon_eth, &cursor)) {
809
810 if (!memcmp(mon_eth->macaddr.octet,
28328ea9 811 p->u.prefix_eth.octet, ETH_ALEN)) {
d62a17ae 812
813 rfapiMonitorEthTimerRestart(mon_eth);
814 }
815 }
816
817 } else {
fe08ba7e
DS
818 for (rn = agg_route_top(rfd->mon); rn;
819 rn = agg_route_next(rn)) {
d62a17ae 820 struct rfapi_monitor_vpn *m;
821
822 if (!((m = rn->info)))
823 continue;
824
825 /* NB order of test is significant ! */
826 if (!m->node || prefix_match(&m->node->p, p)) {
827 rfapiMonitorTimerRestart(m);
828 }
829 }
830 }
65efcfce
LB
831}
832
833/*
834 * Find monitors at this node and all its parents. Call
835 * rfapiRibUpdatePendingNode with this node and all corresponding NVEs.
836 */
d62a17ae 837void rfapiMonitorItNodeChanged(
fe08ba7e 838 struct rfapi_import_table *import_table, struct agg_node *it_node,
d62a17ae 839 struct rfapi_monitor_vpn *monitor_list) /* for base it node, NULL=all */
65efcfce 840{
d62a17ae 841 struct skiplist *nves_seen;
fe08ba7e 842 struct agg_node *rn = it_node;
d62a17ae 843 struct bgp *bgp = bgp_get_default();
844 afi_t afi = family2afi(rn->p.family);
65efcfce 845#if DEBUG_L2_EXTRA
872ed4c7 846 char buf_prefix[PREFIX_STRLEN];
65efcfce
LB
847#endif
848
d62a17ae 849 assert(bgp);
850 assert(import_table);
65efcfce 851
d62a17ae 852 nves_seen = skiplist_new(0, NULL, NULL);
65efcfce
LB
853
854#if DEBUG_L2_EXTRA
872ed4c7 855 prefix2str(&it_node->p, buf_prefix, sizeof(buf_prefix));
d62a17ae 856 vnc_zlog_debug_verbose("%s: it=%p, it_node=%p, it_node->prefix=%s",
857 __func__, import_table, it_node, buf_prefix);
65efcfce
LB
858#endif
859
d62a17ae 860 if (AFI_L2VPN == afi) {
861 struct rfapi_monitor_eth *m;
862 struct skiplist *sl;
863 void *cursor;
864 int rc;
865
866 if ((sl = RFAPI_MONITOR_ETH(rn))) {
867
868 for (cursor = NULL,
869 rc = skiplist_next(sl, NULL, (void **)&m,
870 (void **)&cursor);
871 !rc; rc = skiplist_next(sl, NULL, (void **)&m,
872 (void **)&cursor)) {
873
874 if (skiplist_search(nves_seen, m->rfd, NULL)) {
875 /*
876 * Haven't done this NVE yet. Add to
877 * "seen" list.
878 */
879 assert(!skiplist_insert(nves_seen,
880 m->rfd, NULL));
881
882 /*
883 * update its RIB
884 */
885 rfapiRibUpdatePendingNode(
886 bgp, m->rfd, import_table,
887 it_node,
888 m->rfd->response_lifetime);
889 }
890 }
891 }
892
893 } else {
894
895 struct rfapi_monitor_vpn *m;
896
897 if (monitor_list) {
898 m = monitor_list;
899 } else {
900 m = RFAPI_MONITOR_VPN(rn);
901 }
902
903 do {
904 /*
905 * If we have reached the root node (parent==NULL) and
906 * there
907 * are no routes here (info==NULL), and the IT node that
908 * changed was not the root node (it_node->parent !=
909 * NULL),
910 * then any monitors at this node are here because they
911 * had
912 * no match at all. Therefore, do not send route updates
913 * to them
914 * because we haven't sent them an initial route.
915 */
fe08ba7e
DS
916 if (!agg_node_parent(rn) && !rn->info
917 && it_node->parent)
d62a17ae 918 break;
919
920 for (; m; m = m->next) {
921
922 if (RFAPI_0_PREFIX(&m->p)) {
923 /* shouldn't happen, but be safe */
924 continue;
925 }
926 if (skiplist_search(nves_seen, m->rfd, NULL)) {
927 /*
928 * Haven't done this NVE yet. Add to
929 * "seen" list.
930 */
931 assert(!skiplist_insert(nves_seen,
932 m->rfd, NULL));
933
872ed4c7
DS
934 char buf_attach_pfx[PREFIX_STRLEN];
935 char buf_target_pfx[PREFIX_STRLEN];
936
996c9314 937 prefix2str(&m->node->p, buf_attach_pfx,
872ed4c7 938 sizeof(buf_attach_pfx));
996c9314 939 prefix2str(&m->p, buf_target_pfx,
872ed4c7
DS
940 sizeof(buf_target_pfx));
941 vnc_zlog_debug_verbose(
942 "%s: update rfd %p attached to pfx %s (targ=%s)",
943 __func__, m->rfd,
996c9314 944 buf_attach_pfx, buf_target_pfx);
d62a17ae 945
946 /*
947 * update its RIB
948 */
949 rfapiRibUpdatePendingNode(
950 bgp, m->rfd, import_table,
951 it_node,
952 m->rfd->response_lifetime);
953 }
954 }
fe08ba7e 955 rn = agg_node_parent(rn);
d62a17ae 956 if (rn)
957 m = RFAPI_MONITOR_VPN(rn);
958 } while (rn);
959 }
960
961 /*
962 * All-routes L2 monitors
963 */
964 if (AFI_L2VPN == afi) {
965 struct rfapi_monitor_eth *e;
65efcfce
LB
966
967#if DEBUG_L2_EXTRA
d62a17ae 968 vnc_zlog_debug_verbose("%s: checking L2 all-routes monitors",
969 __func__);
65efcfce
LB
970#endif
971
d62a17ae 972 for (e = import_table->eth0_queries; e; e = e->next) {
65efcfce 973#if DEBUG_L2_EXTRA
d62a17ae 974 vnc_zlog_debug_verbose("%s: checking eth0 mon=%p",
975 __func__, e);
65efcfce 976#endif
d62a17ae 977 if (skiplist_search(nves_seen, e->rfd, NULL)) {
978 /*
979 * Haven't done this NVE yet. Add to "seen"
980 * list.
981 */
982 assert(!skiplist_insert(nves_seen, e->rfd,
983 NULL));
984
985/*
986 * update its RIB
987 */
65efcfce 988#if DEBUG_L2_EXTRA
d62a17ae 989 vnc_zlog_debug_verbose(
990 "%s: found L2 all-routes monitor %p",
991 __func__, e);
65efcfce 992#endif
d62a17ae 993 rfapiRibUpdatePendingNode(
994 bgp, e->rfd, import_table, it_node,
995 e->rfd->response_lifetime);
996 }
997 }
998 } else {
999 struct rfapi_monitor_vpn *m;
1000
1001 /*
1002 * All-routes IPv4. IPv6 monitors
1003 */
1004 for (m = import_table->vpn0_queries[afi]; m; m = m->next) {
1005 if (skiplist_search(nves_seen, m->rfd, NULL)) {
1006 /*
1007 * Haven't done this NVE yet. Add to "seen"
1008 * list.
1009 */
1010 assert(!skiplist_insert(nves_seen, m->rfd,
1011 NULL));
1012
1013 /*
1014 * update its RIB
1015 */
1016 rfapiRibUpdatePendingNode(
1017 bgp, m->rfd, import_table, it_node,
1018 m->rfd->response_lifetime);
1019 }
1020 }
1021 }
1022
1023 skiplist_free(nves_seen);
65efcfce
LB
1024}
1025
1026/*
1027 * For the listed monitors, update new node and its subtree, but
1028 * omit old node and its subtree
1029 */
d62a17ae 1030void rfapiMonitorMovedUp(struct rfapi_import_table *import_table,
fe08ba7e 1031 struct agg_node *old_node, struct agg_node *new_node,
d62a17ae 1032 struct rfapi_monitor_vpn *monitor_list)
65efcfce 1033{
d62a17ae 1034 struct bgp *bgp = bgp_get_default();
1035 struct rfapi_monitor_vpn *m;
1036
1037 assert(new_node);
1038 assert(old_node);
1039 assert(new_node != old_node);
1040
1041 /*
1042 * If new node is 0/0 and there is no route there, don't
1043 * generate an update because it will not contain any
1044 * routes including the target.
1045 */
1046 if (!new_node->parent && !new_node->info) {
1047 vnc_zlog_debug_verbose(
1048 "%s: new monitor at 0/0 and no routes, no updates",
1049 __func__);
1050 return;
1051 }
1052
1053 for (m = monitor_list; m; m = m->next) {
1054 rfapiRibUpdatePendingNode(bgp, m->rfd, import_table, new_node,
1055 m->rfd->response_lifetime);
1056 rfapiRibUpdatePendingNodeSubtree(bgp, m->rfd, import_table,
1057 new_node, old_node,
1058 m->rfd->response_lifetime);
1059 }
65efcfce
LB
1060}
1061
d62a17ae 1062static int rfapiMonitorEthTimerExpire(struct thread *t)
65efcfce 1063{
d62a17ae 1064 struct rfapi_monitor_eth *m = t->arg;
65efcfce 1065
d62a17ae 1066 /* forget reference to thread, it's gone */
1067 m->timer = NULL;
65efcfce 1068
d62a17ae 1069 /* delete the monitor */
1070 rfapiMonitorEthDel(bgp_get_default(), m->rfd, &m->macaddr,
1071 m->logical_net_id);
65efcfce 1072
d62a17ae 1073 return 0;
65efcfce
LB
1074}
1075
d62a17ae 1076static void rfapiMonitorEthTimerRestart(struct rfapi_monitor_eth *m)
65efcfce 1077{
d62a17ae 1078 if (m->timer) {
1079 unsigned long remain = thread_timer_remain_second(m->timer);
1080
1081 /* unexpected case, but avoid wraparound problems below */
1082 if (remain > m->rfd->response_lifetime)
1083 return;
1084
1085 /* don't restart if we just restarted recently */
1086 if (m->rfd->response_lifetime - remain < 2)
1087 return;
1088
1089 thread_cancel(m->timer);
1090 m->timer = NULL;
1091 }
1092
1093 {
1094 char buf[BUFSIZ];
1095
1096 vnc_zlog_debug_verbose(
1097 "%s: target %s life %u", __func__,
1098 rfapiEthAddr2Str(&m->macaddr, buf, BUFSIZ),
1099 m->rfd->response_lifetime);
1100 }
1101 m->timer = NULL;
1102 thread_add_timer(bm->master, rfapiMonitorEthTimerExpire, m,
1103 m->rfd->response_lifetime, &m->timer);
65efcfce
LB
1104}
1105
1a4189d4 1106static int mon_eth_cmp(const void *a, const void *b)
65efcfce 1107{
1a4189d4
DS
1108 const struct rfapi_monitor_eth *m1;
1109 const struct rfapi_monitor_eth *m2;
d62a17ae 1110
1111 int i;
1112
1113 m1 = (struct rfapi_monitor_eth *)a;
1114 m2 = (struct rfapi_monitor_eth *)b;
1115
1116 /*
1117 * compare ethernet addresses
1118 */
28328ea9 1119 for (i = 0; i < ETH_ALEN; ++i) {
d62a17ae 1120 if (m1->macaddr.octet[i] != m2->macaddr.octet[i])
1121 return (m1->macaddr.octet[i] - m2->macaddr.octet[i]);
1122 }
1123
1124 /*
1125 * compare LNIs
1126 */
1127 return (m1->logical_net_id - m2->logical_net_id);
65efcfce
LB
1128}
1129
d62a17ae 1130static void rfapiMonitorEthAttachImport(
1131 struct rfapi_import_table *it,
fe08ba7e 1132 struct agg_node *rn, /* it node attach point if non-0 */
d62a17ae 1133 struct rfapi_monitor_eth *mon) /* monitor struct to attach */
65efcfce 1134{
d62a17ae 1135 struct skiplist *sl;
1136 int rc;
65efcfce 1137
d62a17ae 1138 vnc_zlog_debug_verbose("%s: it=%p", __func__, it);
65efcfce 1139
d62a17ae 1140 rfapiMonitorCheckAttachAllowed();
65efcfce 1141
d62a17ae 1142 if (RFAPI_0_ETHERADDR(&mon->macaddr)) {
1143 /*
1144 * These go on a different list
1145 */
1146 mon->next = it->eth0_queries;
1147 it->eth0_queries = mon;
65efcfce 1148#if DEBUG_L2_EXTRA
d62a17ae 1149 vnc_zlog_debug_verbose("%s: attached monitor %p to eth0 list",
1150 __func__, mon);
65efcfce 1151#endif
d62a17ae 1152 return;
1153 }
65efcfce 1154
d62a17ae 1155 if (rn == NULL) {
65efcfce 1156#if DEBUG_L2_EXTRA
d62a17ae 1157 vnc_zlog_debug_verbose("%s: rn is null!", __func__);
65efcfce 1158#endif
d62a17ae 1159 return;
1160 }
1161
1162 /*
1163 * Get sl to attach to
1164 */
1165 sl = RFAPI_MONITOR_ETH_W_ALLOC(rn);
1166 if (!sl) {
1167 sl = RFAPI_MONITOR_ETH_W_ALLOC(rn) =
1168 skiplist_new(0, NULL, NULL);
fe08ba7e 1169 agg_lock_node(rn); /* count skiplist mon_eth */
d62a17ae 1170 }
65efcfce
LB
1171
1172#if DEBUG_L2_EXTRA
d62a17ae 1173 vnc_zlog_debug_verbose(
1174 "%s: rn=%p, rn->lock=%d, sl=%p, attaching eth mon %p", __func__,
1175 rn, rn->lock, sl, mon);
65efcfce
LB
1176#endif
1177
d62a17ae 1178 rc = skiplist_insert(sl, (void *)mon, (void *)mon);
1179 assert(!rc);
65efcfce 1180
d62a17ae 1181 /* count eth monitor */
fe08ba7e 1182 agg_lock_node(rn);
65efcfce
LB
1183}
1184
1185/*
1186 * reattach monitors for this HD to import table
1187 */
d62a17ae 1188static void rfapiMonitorEthAttachImportHd(struct bgp *bgp,
1189 struct rfapi_descriptor *rfd)
65efcfce 1190{
d62a17ae 1191 void *cursor;
1192 struct rfapi_monitor_eth *mon;
1193 int rc;
1194
1195 if (!rfd->mon_eth) {
1196 /*
1197 * No monitors for this HD
1198 */
1199 return;
1200 }
1201
1202 for (cursor = NULL,
1203 rc = skiplist_next(rfd->mon_eth, NULL, (void **)&mon, &cursor);
1204 rc == 0;
1205 rc = skiplist_next(rfd->mon_eth, NULL, (void **)&mon, &cursor)) {
1206
1207 struct rfapi_import_table *it;
1208 struct prefix pfx_mac_buf;
fe08ba7e 1209 struct agg_node *rn;
d62a17ae 1210
1211 it = rfapiMacImportTableGet(bgp, mon->logical_net_id);
1212 assert(it);
1213
1214 memset((void *)&pfx_mac_buf, 0, sizeof(struct prefix));
1215 pfx_mac_buf.family = AF_ETHERNET;
1216 pfx_mac_buf.prefixlen = 48;
1217 pfx_mac_buf.u.prefix_eth = mon->macaddr;
1218
fe08ba7e 1219 rn = agg_node_get(it->imported_vpn[AFI_L2VPN], &pfx_mac_buf);
d62a17ae 1220 assert(rn);
1221
1222 (void)rfapiMonitorEthAttachImport(it, rn, mon);
1223 }
65efcfce
LB
1224}
1225
d62a17ae 1226static void rfapiMonitorEthDetachImport(
1227 struct bgp *bgp,
1228 struct rfapi_monitor_eth *mon) /* monitor struct to detach */
65efcfce 1229{
d62a17ae 1230 struct rfapi_import_table *it;
1231 struct prefix pfx_mac_buf;
1232 struct skiplist *sl;
fe08ba7e 1233 struct agg_node *rn;
d62a17ae 1234 int rc;
1235
1236 it = rfapiMacImportTableGet(bgp, mon->logical_net_id);
1237 assert(it);
1238
1239 if (RFAPI_0_ETHERADDR(&mon->macaddr)) {
1240 struct rfapi_monitor_eth *prev;
1241 struct rfapi_monitor_eth *this = NULL;
1242
1243 for (prev = NULL, this = it->eth0_queries; this;
1244 prev = this, this = this->next) {
1245
1246 if (this == mon)
1247 break;
1248 }
1249 if (this) {
1250 if (!prev) {
1251 it->eth0_queries = this->next;
1252 } else {
1253 prev->next = this->next;
1254 }
1255 }
65efcfce 1256#if DEBUG_L2_EXTRA
d62a17ae 1257 vnc_zlog_debug_verbose(
1258 "%s: it=%p, LNI=%d, detached eth0 mon %p", __func__, it,
1259 mon->logical_net_id, mon);
65efcfce 1260#endif
d62a17ae 1261 return;
1262 }
65efcfce 1263
d62a17ae 1264 memset((void *)&pfx_mac_buf, 0, sizeof(struct prefix));
1265 pfx_mac_buf.family = AF_ETHERNET;
1266 pfx_mac_buf.prefixlen = 48;
1267 pfx_mac_buf.u.prefix_eth = mon->macaddr;
65efcfce 1268
fe08ba7e 1269 rn = agg_node_get(it->imported_vpn[AFI_L2VPN], &pfx_mac_buf);
d62a17ae 1270 assert(rn);
65efcfce
LB
1271
1272#if DEBUG_L2_EXTRA
872ed4c7
DS
1273 char buf_prefix[PREFIX_STRLEN];
1274
1275 prefix2str(&rn->p, buf_prefix, sizeof(buf_prefix));
65efcfce
LB
1276#endif
1277
d62a17ae 1278 /*
1279 * Get sl to detach from
1280 */
1281 sl = RFAPI_MONITOR_ETH(rn);
65efcfce 1282#if DEBUG_L2_EXTRA
d62a17ae 1283 vnc_zlog_debug_verbose(
1284 "%s: it=%p, rn=%p, rn->lock=%d, sl=%p, pfx=%s, LNI=%d, detaching eth mon %p",
1285 __func__, it, rn, rn->lock, sl, buf_prefix, mon->logical_net_id,
1286 mon);
65efcfce 1287#endif
d62a17ae 1288 assert(sl);
65efcfce
LB
1289
1290
d62a17ae 1291 rc = skiplist_delete(sl, (void *)mon, (void *)mon);
1292 assert(!rc);
65efcfce 1293
d62a17ae 1294 /* uncount eth monitor */
fe08ba7e 1295 agg_unlock_node(rn);
65efcfce
LB
1296}
1297
fe08ba7e
DS
1298struct agg_node *rfapiMonitorEthAdd(struct bgp *bgp,
1299 struct rfapi_descriptor *rfd,
1300 struct ethaddr *macaddr,
1301 uint32_t logical_net_id)
65efcfce 1302{
d62a17ae 1303 int rc;
1304 struct rfapi_monitor_eth mon_buf;
1305 struct rfapi_monitor_eth *val;
1306 struct rfapi_import_table *it;
fe08ba7e 1307 struct agg_node *rn = NULL;
d62a17ae 1308 struct prefix pfx_mac_buf;
1309
1310 if (!rfd->mon_eth) {
1311 rfd->mon_eth = skiplist_new(0, mon_eth_cmp, NULL);
1312 }
1313
1314 it = rfapiMacImportTableGet(bgp, logical_net_id);
1315 assert(it);
1316
1317 /*
1318 * Get route node in import table. Here is where we attach the
1319 * monitor.
1320 *
1321 * Look it up now because we return it to caller regardless of
1322 * whether we create a new monitor or not.
1323 */
1324 memset((void *)&pfx_mac_buf, 0, sizeof(struct prefix));
1325 pfx_mac_buf.family = AF_ETHERNET;
1326 pfx_mac_buf.prefixlen = 48;
1327 pfx_mac_buf.u.prefix_eth = *macaddr;
1328
1329 if (!RFAPI_0_ETHERADDR(macaddr)) {
fe08ba7e 1330 rn = agg_node_get(it->imported_vpn[AFI_L2VPN], &pfx_mac_buf);
d62a17ae 1331 assert(rn);
1332 }
1333
1334 memset((void *)&mon_buf, 0, sizeof(mon_buf));
1335 mon_buf.rfd = rfd;
1336 mon_buf.macaddr = *macaddr;
1337 mon_buf.logical_net_id = logical_net_id;
1338
1339 {
1340 char buf[BUFSIZ];
1341
9d303b37
DL
1342 vnc_zlog_debug_verbose(
1343 "%s: LNI=%d: rfd=%p, pfx=%s", __func__, logical_net_id,
1344 rfd, rfapi_ntop(pfx_mac_buf.family, pfx_mac_buf.u.val,
1345 buf, BUFSIZ));
d62a17ae 1346 }
1347
1348
1349 /*
1350 * look up query
1351 */
1352 rc = skiplist_search(rfd->mon_eth, (void *)&mon_buf, (void **)&val);
1353 if (!rc) {
1354 /*
1355 * Found monitor - we have seen this query before
1356 * restart timer
1357 */
1358 vnc_zlog_debug_verbose(
1359 "%s: already present in rfd->mon_eth, not adding",
1360 __func__);
1361 rfapiMonitorEthTimerRestart(val);
1362 return rn;
1363 }
1364
1365 /*
1366 * New query
1367 */
1368 val = XCALLOC(MTYPE_RFAPI_MONITOR_ETH,
1369 sizeof(struct rfapi_monitor_eth));
1370 assert(val);
1371 *val = mon_buf;
1372
1373 ++rfd->monitor_count;
1374 ++bgp->rfapi->monitor_count;
1375
1376 rc = skiplist_insert(rfd->mon_eth, val, val);
65efcfce
LB
1377
1378#if DEBUG_L2_EXTRA
d62a17ae 1379 vnc_zlog_debug_verbose("%s: inserted rfd=%p mon_eth=%p, rc=%d",
1380 __func__, rfd, val, rc);
8881d722
VJ
1381#else
1382 (void)rc;
65efcfce
LB
1383#endif
1384
d62a17ae 1385 /*
1386 * start timer
1387 */
1388 rfapiMonitorEthTimerRestart(val);
65efcfce 1389
d62a17ae 1390 if (bgp->rfapi_cfg->flags & BGP_VNC_CONFIG_CALLBACK_DISABLE) {
1391/*
1392 * callbacks turned off, so don't attach monitor to import table
1393 */
65efcfce 1394#if DEBUG_L2_EXTRA
d62a17ae 1395 vnc_zlog_debug_verbose(
1396 "%s: callbacks turned off, not attaching mon_eth %p to import table",
1397 __func__, val);
65efcfce 1398#endif
d62a17ae 1399 return rn;
1400 }
65efcfce 1401
d62a17ae 1402 /*
1403 * attach to import table
1404 */
1405 rfapiMonitorEthAttachImport(it, rn, val);
65efcfce 1406
d62a17ae 1407 return rn;
65efcfce
LB
1408}
1409
d62a17ae 1410void rfapiMonitorEthDel(struct bgp *bgp, struct rfapi_descriptor *rfd,
1411 struct ethaddr *macaddr, uint32_t logical_net_id)
65efcfce 1412{
d62a17ae 1413 struct rfapi_monitor_eth *val;
1414 struct rfapi_monitor_eth mon_buf;
1415 int rc;
65efcfce 1416
d62a17ae 1417 vnc_zlog_debug_verbose("%s: entry rfd=%p", __func__, rfd);
65efcfce 1418
d62a17ae 1419 assert(rfd->mon_eth);
65efcfce 1420
d62a17ae 1421 memset((void *)&mon_buf, 0, sizeof(mon_buf));
1422 mon_buf.macaddr = *macaddr;
1423 mon_buf.logical_net_id = logical_net_id;
65efcfce 1424
d62a17ae 1425 rc = skiplist_search(rfd->mon_eth, (void *)&mon_buf, (void **)&val);
1426 assert(!rc);
65efcfce 1427
d62a17ae 1428 /*
1429 * remove from import table
1430 */
1431 if (!(bgp->rfapi_cfg->flags & BGP_VNC_CONFIG_CALLBACK_DISABLE)) {
1432 rfapiMonitorEthDetachImport(bgp, val);
1433 }
65efcfce 1434
d62a17ae 1435 if (val->timer) {
1436 thread_cancel(val->timer);
1437 val->timer = NULL;
1438 }
65efcfce 1439
d62a17ae 1440 /*
1441 * remove from rfd list
1442 */
1443 rc = skiplist_delete(rfd->mon_eth, val, val);
1444 assert(!rc);
65efcfce
LB
1445
1446#if DEBUG_L2_EXTRA
d62a17ae 1447 vnc_zlog_debug_verbose("%s: freeing mon_eth %p", __func__, val);
65efcfce 1448#endif
d62a17ae 1449 XFREE(MTYPE_RFAPI_MONITOR_ETH, val);
65efcfce 1450
d62a17ae 1451 --rfd->monitor_count;
1452 --bgp->rfapi->monitor_count;
65efcfce
LB
1453}
1454
1455
d62a17ae 1456void rfapiMonitorCallbacksOff(struct bgp *bgp)
65efcfce 1457{
d62a17ae 1458 struct rfapi_import_table *it;
1459 afi_t afi;
fe08ba7e
DS
1460 struct agg_table *rt;
1461 struct agg_node *rn;
d62a17ae 1462 void *cursor;
1463 int rc;
1464 struct rfapi *h = bgp->rfapi;
1465
1466 if (bgp->rfapi_cfg->flags & BGP_VNC_CONFIG_CALLBACK_DISABLE) {
1467 /*
1468 * Already off.
1469 */
1470 return;
1471 }
1472 bgp->rfapi_cfg->flags |= BGP_VNC_CONFIG_CALLBACK_DISABLE;
65efcfce
LB
1473
1474#if DEBUG_L2_EXTRA
d62a17ae 1475 vnc_zlog_debug_verbose("%s: turned off callbacks", __func__);
65efcfce
LB
1476#endif
1477
d62a17ae 1478 if (h == NULL)
1479 return;
1480 /*
1481 * detach monitors from import VPN tables. The monitors
1482 * will still be linked in per-nve monitor lists.
1483 */
1484 for (it = h->imports; it; it = it->next) {
1485 for (afi = AFI_IP; afi < AFI_MAX; ++afi) {
1486
1487 struct rfapi_monitor_vpn *m;
1488 struct rfapi_monitor_vpn *next;
1489
1490 rt = it->imported_vpn[afi];
1491
fe08ba7e
DS
1492 for (rn = agg_route_top(rt); rn;
1493 rn = agg_route_next(rn)) {
d62a17ae 1494 m = RFAPI_MONITOR_VPN(rn);
1495 if (RFAPI_MONITOR_VPN(rn))
1496 RFAPI_MONITOR_VPN_W_ALLOC(rn) = NULL;
1497 for (; m; m = next) {
1498 next = m->next;
1499 m->next =
1500 NULL; /* gratuitous safeness */
1501 m->node = NULL;
fe08ba7e 1502 agg_unlock_node(rn); /* uncount */
d62a17ae 1503 }
1504 }
1505
1506 for (m = it->vpn0_queries[afi]; m; m = next) {
1507 next = m->next;
1508 m->next = NULL; /* gratuitous safeness */
1509 m->node = NULL;
1510 }
1511 it->vpn0_queries[afi] = NULL; /* detach first monitor */
1512 }
1513 }
1514
1515 /*
1516 * detach monitors from import Eth tables. The monitors
1517 * will still be linked in per-nve monitor lists.
1518 */
1519
1520 /*
1521 * Loop over ethernet import tables
1522 */
1523 for (cursor = NULL,
1524 rc = skiplist_next(h->import_mac, NULL, (void **)&it, &cursor);
1525 !rc;
1526 rc = skiplist_next(h->import_mac, NULL, (void **)&it, &cursor)) {
1527 struct rfapi_monitor_eth *e;
1528 struct rfapi_monitor_eth *enext;
1529
1530 /*
1531 * The actual route table
1532 */
1533 rt = it->imported_vpn[AFI_L2VPN];
1534
1535 /*
1536 * Find non-0 monitors (i.e., actual addresses, not FTD
1537 * monitors)
1538 */
fe08ba7e 1539 for (rn = agg_route_top(rt); rn; rn = agg_route_next(rn)) {
d62a17ae 1540 struct skiplist *sl;
1541
1542 sl = RFAPI_MONITOR_ETH(rn);
1543 while (!skiplist_delete_first(sl)) {
fe08ba7e 1544 agg_unlock_node(rn); /* uncount monitor */
d62a17ae 1545 }
1546 }
1547
1548 /*
1549 * Find 0-monitors (FTD queries)
1550 */
1551 for (e = it->eth0_queries; e; e = enext) {
65efcfce 1552#if DEBUG_L2_EXTRA
d62a17ae 1553 vnc_zlog_debug_verbose("%s: detaching eth0 mon %p",
1554 __func__, e);
65efcfce 1555#endif
d62a17ae 1556 enext = e->next;
1557 e->next = NULL; /* gratuitous safeness */
1558 }
1559 it->eth0_queries = NULL; /* detach first monitor */
1560 }
65efcfce
LB
1561}
1562
d62a17ae 1563void rfapiMonitorCallbacksOn(struct bgp *bgp)
65efcfce 1564{
d62a17ae 1565 struct listnode *hnode;
1566 struct rfapi_descriptor *rfd;
1567
1568 if (!(bgp->rfapi_cfg->flags & BGP_VNC_CONFIG_CALLBACK_DISABLE)) {
1569 /*
1570 * Already on. It's important that we don't try to reattach
1571 * monitors that are already attached because, in the interest
1572 * of performance, there is no checking at the lower level
1573 * whether a monitor is already attached. It leads to
1574 * corrupted chains (e.g., looped pointers)
1575 */
1576 return;
1577 }
1578 bgp->rfapi_cfg->flags &= ~BGP_VNC_CONFIG_CALLBACK_DISABLE;
65efcfce 1579#if DEBUG_L2_EXTRA
d62a17ae 1580 vnc_zlog_debug_verbose("%s: turned on callbacks", __func__);
65efcfce 1581#endif
d62a17ae 1582 if (bgp->rfapi == NULL)
1583 return;
1584
1585 /*
1586 * reattach monitors
1587 */
1588 for (ALL_LIST_ELEMENTS_RO(&bgp->rfapi->descriptors, hnode, rfd)) {
1589
1590 rfapiMonitorAttachImportHd(rfd);
1591 rfapiMonitorEthAttachImportHd(bgp, rfd);
1592 }
65efcfce 1593}