]> git.proxmox.com Git - mirror_frr.git/blob - ldpd/lde_lib.c
Merge branch 'frr/pull/822' ("EVPN fixes")
[mirror_frr.git] / ldpd / lde_lib.c
1 /* $OpenBSD$ */
2
3 /*
4 * Copyright (c) 2013, 2016 Renato Westphal <renato@openbsd.org>
5 * Copyright (c) 2009 Michele Marchetto <michele@openbsd.org>
6 *
7 * Permission to use, copy, modify, and distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
10 *
11 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18 */
19
20 #include <zebra.h>
21
22 #include "ldpd.h"
23 #include "lde.h"
24 #include "log.h"
25
26 #include "mpls.h"
27
28 static __inline int fec_compare(const struct fec *, const struct fec *);
29 static int lde_nbr_is_nexthop(struct fec_node *,
30 struct lde_nbr *);
31 static void fec_free(void *);
32 static struct fec_node *fec_add(struct fec *fec);
33 static struct fec_nh *fec_nh_add(struct fec_node *, int, union ldpd_addr *,
34 ifindex_t, uint8_t);
35 static void fec_nh_del(struct fec_nh *);
36
37 RB_GENERATE(fec_tree, fec, entry, fec_compare)
38
39 struct fec_tree ft = RB_INITIALIZER(&ft);
40 struct thread *gc_timer;
41
42 /* FEC tree functions */
43 void
44 fec_init(struct fec_tree *fh)
45 {
46 RB_INIT(fec_tree, fh);
47 }
48
49 static __inline int
50 fec_compare(const struct fec *a, const struct fec *b)
51 {
52 if (a->type < b->type)
53 return (-1);
54 if (a->type > b->type)
55 return (1);
56
57 switch (a->type) {
58 case FEC_TYPE_IPV4:
59 if (ntohl(a->u.ipv4.prefix.s_addr) <
60 ntohl(b->u.ipv4.prefix.s_addr))
61 return (-1);
62 if (ntohl(a->u.ipv4.prefix.s_addr) >
63 ntohl(b->u.ipv4.prefix.s_addr))
64 return (1);
65 if (a->u.ipv4.prefixlen < b->u.ipv4.prefixlen)
66 return (-1);
67 if (a->u.ipv4.prefixlen > b->u.ipv4.prefixlen)
68 return (1);
69 return (0);
70 case FEC_TYPE_IPV6:
71 if (memcmp(&a->u.ipv6.prefix, &b->u.ipv6.prefix,
72 sizeof(struct in6_addr)) < 0)
73 return (-1);
74 if (memcmp(&a->u.ipv6.prefix, &b->u.ipv6.prefix,
75 sizeof(struct in6_addr)) > 0)
76 return (1);
77 if (a->u.ipv6.prefixlen < b->u.ipv6.prefixlen)
78 return (-1);
79 if (a->u.ipv6.prefixlen > b->u.ipv6.prefixlen)
80 return (1);
81 return (0);
82 case FEC_TYPE_PWID:
83 if (a->u.pwid.type < b->u.pwid.type)
84 return (-1);
85 if (a->u.pwid.type > b->u.pwid.type)
86 return (1);
87 if (a->u.pwid.pwid < b->u.pwid.pwid)
88 return (-1);
89 if (a->u.pwid.pwid > b->u.pwid.pwid)
90 return (1);
91 if (ntohl(a->u.pwid.lsr_id.s_addr) <
92 ntohl(b->u.pwid.lsr_id.s_addr))
93 return (-1);
94 if (ntohl(a->u.pwid.lsr_id.s_addr) >
95 ntohl(b->u.pwid.lsr_id.s_addr))
96 return (1);
97 return (0);
98 }
99
100 return (-1);
101 }
102
103 struct fec *
104 fec_find(struct fec_tree *fh, struct fec *f)
105 {
106 return (RB_FIND(fec_tree, fh, f));
107 }
108
109 int
110 fec_insert(struct fec_tree *fh, struct fec *f)
111 {
112 if (RB_INSERT(fec_tree, fh, f) != NULL)
113 return (-1);
114 return (0);
115 }
116
117 int
118 fec_remove(struct fec_tree *fh, struct fec *f)
119 {
120 if (RB_REMOVE(fec_tree, fh, f) == NULL) {
121 log_warnx("%s failed for %s", __func__, log_fec(f));
122 return (-1);
123 }
124 return (0);
125 }
126
127 void
128 fec_clear(struct fec_tree *fh, void (*free_cb)(void *))
129 {
130 struct fec *f;
131
132 while ((f = RB_ROOT(fec_tree, fh)) != NULL) {
133 fec_remove(fh, f);
134 free_cb(f);
135 }
136 }
137
138 /* routing table functions */
139 static int
140 lde_nbr_is_nexthop(struct fec_node *fn, struct lde_nbr *ln)
141 {
142 struct fec_nh *fnh;
143
144 LIST_FOREACH(fnh, &fn->nexthops, entry)
145 if (lde_address_find(ln, fnh->af, &fnh->nexthop))
146 return (1);
147
148 return (0);
149 }
150
151 void
152 rt_dump(pid_t pid)
153 {
154 struct fec *f;
155 struct fec_node *fn;
156 struct lde_map *me;
157 static struct ctl_rt rtctl;
158
159 RB_FOREACH(f, fec_tree, &ft) {
160 fn = (struct fec_node *)f;
161 if (fn->local_label == NO_LABEL &&
162 RB_EMPTY(lde_map_head, &fn->downstream))
163 continue;
164
165 memset(&rtctl, 0, sizeof(rtctl));
166 switch (fn->fec.type) {
167 case FEC_TYPE_IPV4:
168 rtctl.af = AF_INET;
169 rtctl.prefix.v4 = fn->fec.u.ipv4.prefix;
170 rtctl.prefixlen = fn->fec.u.ipv4.prefixlen;
171 break;
172 case FEC_TYPE_IPV6:
173 rtctl.af = AF_INET6;
174 rtctl.prefix.v6 = fn->fec.u.ipv6.prefix;
175 rtctl.prefixlen = fn->fec.u.ipv6.prefixlen;
176 break;
177 default:
178 continue;
179 }
180
181 rtctl.local_label = fn->local_label;
182 if (RB_EMPTY(lde_map_head, &fn->downstream)) {
183 rtctl.in_use = 0;
184 rtctl.nexthop.s_addr = INADDR_ANY;
185 rtctl.remote_label = NO_LABEL;
186 rtctl.no_downstream = 1;
187 }
188 lde_imsg_compose_ldpe(IMSG_CTL_SHOW_LIB_BEGIN, 0, pid, &rtctl,
189 sizeof(rtctl));
190
191 RB_FOREACH(me, lde_map_head, &fn->upstream) {
192 rtctl.nexthop = me->nexthop->id;
193 lde_imsg_compose_ldpe(IMSG_CTL_SHOW_LIB_SENT, 0, pid,
194 &rtctl, sizeof(rtctl));
195 }
196
197 RB_FOREACH(me, lde_map_head, &fn->downstream) {
198 rtctl.in_use = lde_nbr_is_nexthop(fn, me->nexthop);
199 rtctl.nexthop = me->nexthop->id;
200 rtctl.remote_label = me->map.label;
201 lde_imsg_compose_ldpe(IMSG_CTL_SHOW_LIB_RCVD, 0, pid,
202 &rtctl, sizeof(rtctl));
203 }
204 lde_imsg_compose_ldpe(IMSG_CTL_SHOW_LIB_END, 0, pid, &rtctl,
205 sizeof(rtctl));
206 }
207 }
208
209 void
210 fec_snap(struct lde_nbr *ln)
211 {
212 struct fec *f;
213 struct fec_node *fn;
214
215 RB_FOREACH(f, fec_tree, &ft) {
216 fn = (struct fec_node *)f;
217 if (fn->local_label == NO_LABEL)
218 continue;
219
220 lde_send_labelmapping(ln, fn, 0);
221 }
222
223 lde_imsg_compose_ldpe(IMSG_MAPPING_ADD_END, ln->peerid, 0, NULL, 0);
224 }
225
226 static void
227 fec_free(void *arg)
228 {
229 struct fec_node *fn = arg;
230 struct fec_nh *fnh;
231
232 while ((fnh = LIST_FIRST(&fn->nexthops)))
233 fec_nh_del(fnh);
234 if (!RB_EMPTY(lde_map_head, &fn->downstream))
235 log_warnx("%s: fec %s downstream list not empty", __func__,
236 log_fec(&fn->fec));
237 if (!RB_EMPTY(lde_map_head, &fn->upstream))
238 log_warnx("%s: fec %s upstream list not empty", __func__,
239 log_fec(&fn->fec));
240
241 free(fn);
242 }
243
244 void
245 fec_tree_clear(void)
246 {
247 fec_clear(&ft, fec_free);
248 }
249
250 static struct fec_node *
251 fec_add(struct fec *fec)
252 {
253 struct fec_node *fn;
254
255 fn = calloc(1, sizeof(*fn));
256 if (fn == NULL)
257 fatal(__func__);
258
259 fn->fec = *fec;
260 fn->local_label = NO_LABEL;
261 RB_INIT(lde_map_head, &fn->upstream);
262 RB_INIT(lde_map_head, &fn->downstream);
263 LIST_INIT(&fn->nexthops);
264
265 if (fec_insert(&ft, &fn->fec))
266 log_warnx("failed to add %s to ft tree",
267 log_fec(&fn->fec));
268
269 return (fn);
270 }
271
272 struct fec_nh *
273 fec_nh_find(struct fec_node *fn, int af, union ldpd_addr *nexthop,
274 ifindex_t ifindex, uint8_t priority)
275 {
276 struct fec_nh *fnh;
277
278 LIST_FOREACH(fnh, &fn->nexthops, entry)
279 if (fnh->af == af &&
280 ldp_addrcmp(af, &fnh->nexthop, nexthop) == 0 &&
281 fnh->ifindex == ifindex &&
282 fnh->priority == priority)
283 return (fnh);
284
285 return (NULL);
286 }
287
288 static struct fec_nh *
289 fec_nh_add(struct fec_node *fn, int af, union ldpd_addr *nexthop,
290 ifindex_t ifindex, uint8_t priority)
291 {
292 struct fec_nh *fnh;
293
294 fnh = calloc(1, sizeof(*fnh));
295 if (fnh == NULL)
296 fatal(__func__);
297
298 fnh->af = af;
299 fnh->nexthop = *nexthop;
300 fnh->ifindex = ifindex;
301 fnh->remote_label = NO_LABEL;
302 fnh->priority = priority;
303 LIST_INSERT_HEAD(&fn->nexthops, fnh, entry);
304
305 return (fnh);
306 }
307
308 static void
309 fec_nh_del(struct fec_nh *fnh)
310 {
311 LIST_REMOVE(fnh, entry);
312 free(fnh);
313 }
314
315 void
316 lde_kernel_insert(struct fec *fec, int af, union ldpd_addr *nexthop,
317 ifindex_t ifindex, uint8_t priority, int connected, void *data)
318 {
319 struct fec_node *fn;
320 struct fec_nh *fnh;
321
322 fn = (struct fec_node *)fec_find(&ft, fec);
323 if (fn == NULL)
324 fn = fec_add(fec);
325 if (data)
326 fn->data = data;
327
328 fnh = fec_nh_find(fn, af, nexthop, ifindex, priority);
329 if (fnh == NULL)
330 fnh = fec_nh_add(fn, af, nexthop, ifindex, priority);
331 fnh->flags |= F_FEC_NH_NEW;
332 if (connected)
333 fnh->flags |= F_FEC_NH_CONNECTED;
334 }
335
336 void
337 lde_kernel_remove(struct fec *fec, int af, union ldpd_addr *nexthop,
338 ifindex_t ifindex, uint8_t priority)
339 {
340 struct fec_node *fn;
341 struct fec_nh *fnh;
342
343 fn = (struct fec_node *)fec_find(&ft, fec);
344 if (fn == NULL)
345 /* route lost */
346 return;
347 fnh = fec_nh_find(fn, af, nexthop, ifindex, priority);
348 if (fnh == NULL)
349 /* route lost */
350 return;
351
352 lde_send_delete_klabel(fn, fnh);
353 fec_nh_del(fnh);
354 }
355
356 /*
357 * Whenever a route is changed, zebra advertises its new version without
358 * withdrawing the old one. So, after processing a ZEBRA_REDISTRIBUTE_IPV[46]_ADD
359 * message, we need to check for nexthops that were removed and, for each of
360 * them (if any), withdraw the associated labels from zebra.
361 */
362 void
363 lde_kernel_update(struct fec *fec)
364 {
365 struct fec_node *fn;
366 struct fec_nh *fnh, *safe;
367 struct lde_nbr *ln;
368 struct lde_map *me;
369
370 fn = (struct fec_node *)fec_find(&ft, fec);
371 if (fn == NULL)
372 return;
373
374 LIST_FOREACH_SAFE(fnh, &fn->nexthops, entry, safe) {
375 if (fnh->flags & F_FEC_NH_NEW)
376 fnh->flags &= ~F_FEC_NH_NEW;
377 else {
378 lde_send_delete_klabel(fn, fnh);
379 fec_nh_del(fnh);
380 }
381 }
382
383 if (LIST_EMPTY(&fn->nexthops)) {
384 RB_FOREACH(ln, nbr_tree, &lde_nbrs)
385 lde_send_labelwithdraw(ln, fn, NULL, NULL);
386 fn->data = NULL;
387
388 /*
389 * Do not deallocate the local label now, do that only in the
390 * LIB garbage collector. This will prevent ldpd from changing
391 * the input label of some prefixes too often when running on
392 * an unstable network. Also, restart the garbage collector
393 * timer so that labels are deallocated only when the network
394 * is stabilized.
395 */
396 lde_gc_start_timer();
397 } else {
398 fn->local_label = lde_update_label(fn);
399 if (fn->local_label != NO_LABEL)
400 /* FEC.1: perform lsr label distribution procedure */
401 RB_FOREACH(ln, nbr_tree, &lde_nbrs)
402 lde_send_labelmapping(ln, fn, 1);
403 }
404
405 LIST_FOREACH(fnh, &fn->nexthops, entry) {
406 lde_send_change_klabel(fn, fnh);
407
408 switch (fn->fec.type) {
409 case FEC_TYPE_IPV4:
410 case FEC_TYPE_IPV6:
411 ln = lde_nbr_find_by_addr(fnh->af, &fnh->nexthop);
412 break;
413 case FEC_TYPE_PWID:
414 ln = lde_nbr_find_by_lsrid(fn->fec.u.pwid.lsr_id);
415 break;
416 default:
417 ln = NULL;
418 break;
419 }
420
421 if (ln) {
422 /* FEC.2 */
423 me = (struct lde_map *)fec_find(&ln->recv_map, &fn->fec);
424 if (me)
425 /* FEC.5 */
426 lde_check_mapping(&me->map, ln);
427 }
428 }
429 }
430
431 void
432 lde_check_mapping(struct map *map, struct lde_nbr *ln)
433 {
434 struct fec fec;
435 struct fec_node *fn;
436 struct fec_nh *fnh;
437 struct lde_req *lre;
438 struct lde_map *me;
439 struct l2vpn_pw *pw;
440
441 lde_map2fec(map, ln->id, &fec);
442
443 switch (fec.type) {
444 case FEC_TYPE_IPV4:
445 if (lde_acl_check(ldeconf->ipv4.acl_label_accept_from,
446 AF_INET, (union ldpd_addr *)&ln->id, 32) != FILTER_PERMIT)
447 return;
448 if (lde_acl_check(ldeconf->ipv4.acl_label_accept_for,
449 AF_INET, (union ldpd_addr *)&fec.u.ipv4.prefix,
450 fec.u.ipv4.prefixlen) != FILTER_PERMIT)
451 return;
452 break;
453 case FEC_TYPE_IPV6:
454 if (lde_acl_check(ldeconf->ipv6.acl_label_accept_from,
455 AF_INET, (union ldpd_addr *)&ln->id, 32) != FILTER_PERMIT)
456 return;
457 if (lde_acl_check(ldeconf->ipv6.acl_label_accept_for,
458 AF_INET6, (union ldpd_addr *)&fec.u.ipv6.prefix,
459 fec.u.ipv6.prefixlen) != FILTER_PERMIT)
460 return;
461 break;
462 default:
463 break;
464 }
465
466 fn = (struct fec_node *)fec_find(&ft, &fec);
467 if (fn == NULL)
468 fn = fec_add(&fec);
469
470 /* LMp.1: first check if we have a pending request running */
471 lre = (struct lde_req *)fec_find(&ln->sent_req, &fn->fec);
472 if (lre)
473 /* LMp.2: delete record of outstanding label request */
474 lde_req_del(ln, lre, 1);
475
476 /* RFC 4447 control word and status tlv negotiation */
477 if (map->type == MAP_TYPE_PWID && l2vpn_pw_negotiate(ln, fn, map))
478 return;
479
480 /*
481 * LMp.3 - LMp.8: loop detection - unnecessary for frame-mode
482 * mpls networks.
483 */
484
485 /* LMp.9 */
486 me = (struct lde_map *)fec_find(&ln->recv_map, &fn->fec);
487 if (me) {
488 /* LMp.10 */
489 if (me->map.label != map->label && lre == NULL) {
490 /* LMp.10a */
491 lde_send_labelrelease(ln, fn, NULL, me->map.label);
492
493 /*
494 * Can not use lde_nbr_find_by_addr() because there's
495 * the possibility of multipath.
496 */
497 LIST_FOREACH(fnh, &fn->nexthops, entry) {
498 if (lde_address_find(ln, fnh->af,
499 &fnh->nexthop) == NULL)
500 continue;
501
502 lde_send_delete_klabel(fn, fnh);
503 fnh->remote_label = NO_LABEL;
504 }
505 }
506 }
507
508 /*
509 * LMp.11 - 12: consider multiple nexthops in order to
510 * support multipath
511 */
512 LIST_FOREACH(fnh, &fn->nexthops, entry) {
513 /* LMp.15: install FEC in FIB */
514 switch (fec.type) {
515 case FEC_TYPE_IPV4:
516 case FEC_TYPE_IPV6:
517 if (!lde_address_find(ln, fnh->af, &fnh->nexthop))
518 continue;
519
520 fnh->remote_label = map->label;
521 lde_send_change_klabel(fn, fnh);
522 break;
523 case FEC_TYPE_PWID:
524 pw = (struct l2vpn_pw *) fn->data;
525 if (pw == NULL)
526 continue;
527
528 pw->remote_group = map->fec.pwid.group_id;
529 if (map->flags & F_MAP_PW_IFMTU)
530 pw->remote_mtu = map->fec.pwid.ifmtu;
531 if (map->flags & F_MAP_PW_STATUS)
532 pw->remote_status = map->pw_status;
533 else
534 pw->remote_status = PW_FORWARDING;
535 fnh->remote_label = map->label;
536 if (l2vpn_pw_ok(pw, fnh))
537 lde_send_change_klabel(fn, fnh);
538 break;
539 default:
540 break;
541 }
542 }
543 /* LMp.13 & LMp.16: Record the mapping from this peer */
544 if (me == NULL)
545 me = lde_map_add(ln, fn, 0);
546 me->map = *map;
547
548 /*
549 * LMp.17 - LMp.27 are unnecessary since we don't need to implement
550 * loop detection. LMp.28 - LMp.30 are unnecessary because we are
551 * merging capable.
552 */
553 }
554
555 void
556 lde_check_request(struct map *map, struct lde_nbr *ln)
557 {
558 struct fec fec;
559 struct lde_req *lre;
560 struct fec_node *fn;
561 struct fec_nh *fnh;
562
563 /* wildcard label request */
564 if (map->type == MAP_TYPE_TYPED_WCARD) {
565 lde_check_request_wcard(map, ln);
566 return;
567 }
568
569 /* LRq.1: skip loop detection (not necessary) */
570
571 /* LRq.2: is there a next hop for fec? */
572 lde_map2fec(map, ln->id, &fec);
573 fn = (struct fec_node *)fec_find(&ft, &fec);
574 if (fn == NULL || LIST_EMPTY(&fn->nexthops)) {
575 /* LRq.5: send No Route notification */
576 lde_send_notification(ln, S_NO_ROUTE, map->msg_id,
577 htons(MSG_TYPE_LABELREQUEST));
578 return;
579 }
580
581 /* LRq.3: is MsgSource the next hop? */
582 LIST_FOREACH(fnh, &fn->nexthops, entry) {
583 switch (fec.type) {
584 case FEC_TYPE_IPV4:
585 case FEC_TYPE_IPV6:
586 if (!lde_address_find(ln, fnh->af, &fnh->nexthop))
587 continue;
588
589 /* LRq.4: send Loop Detected notification */
590 lde_send_notification(ln, S_LOOP_DETECTED, map->msg_id,
591 htons(MSG_TYPE_LABELREQUEST));
592 return;
593 default:
594 break;
595 }
596 }
597
598 /* LRq.6: first check if we have a pending request running */
599 lre = (struct lde_req *)fec_find(&ln->recv_req, &fn->fec);
600 if (lre != NULL)
601 /* LRq.7: duplicate request */
602 return;
603
604 /* LRq.8: record label request */
605 lre = lde_req_add(ln, &fn->fec, 0);
606 if (lre != NULL)
607 lre->msg_id = ntohl(map->msg_id);
608
609 /* LRq.9: perform LSR label distribution */
610 lde_send_labelmapping(ln, fn, 1);
611
612 /*
613 * LRq.10: do nothing (Request Never) since we use liberal
614 * label retention.
615 * LRq.11 - 12 are unnecessary since we are merging capable.
616 */
617 }
618
619 void
620 lde_check_request_wcard(struct map *map, struct lde_nbr *ln)
621 {
622 struct fec *f;
623 struct fec_node *fn;
624 struct lde_req *lre;
625
626 RB_FOREACH(f, fec_tree, &ft) {
627 fn = (struct fec_node *)f;
628
629 /* only a typed wildcard is possible here */
630 if (lde_wildcard_apply(map, &fn->fec, NULL) == 0)
631 continue;
632
633 /* LRq.2: is there a next hop for fec? */
634 if (LIST_EMPTY(&fn->nexthops))
635 continue;
636
637 /* LRq.6: first check if we have a pending request running */
638 lre = (struct lde_req *)fec_find(&ln->recv_req, &fn->fec);
639 if (lre != NULL)
640 /* LRq.7: duplicate request */
641 continue;
642
643 /* LRq.8: record label request */
644 lre = lde_req_add(ln, &fn->fec, 0);
645 if (lre != NULL)
646 lre->msg_id = ntohl(map->msg_id);
647
648 /* LRq.9: perform LSR label distribution */
649 lde_send_labelmapping(ln, fn, 1);
650 }
651 }
652
653 void
654 lde_check_release(struct map *map, struct lde_nbr *ln)
655 {
656 struct fec fec;
657 struct fec_node *fn;
658 struct lde_wdraw *lw;
659 struct lde_map *me;
660 struct fec *pending_map;
661
662 /* wildcard label release */
663 if (map->type == MAP_TYPE_WILDCARD ||
664 map->type == MAP_TYPE_TYPED_WCARD ||
665 (map->type == MAP_TYPE_PWID && !(map->flags & F_MAP_PW_ID))) {
666 lde_check_release_wcard(map, ln);
667 return;
668 }
669
670 lde_map2fec(map, ln->id, &fec);
671 fn = (struct fec_node *)fec_find(&ft, &fec);
672 /* LRl.1: does FEC match a known FEC? */
673 if (fn == NULL)
674 return;
675
676 /* LRl.6: check sent map list and remove it if available */
677 me = (struct lde_map *)fec_find(&ln->sent_map, &fn->fec);
678 if (me && (map->label == NO_LABEL || map->label == me->map.label))
679 lde_map_del(ln, me, 1);
680
681 /* LRl.3: first check if we have a pending withdraw running */
682 lw = (struct lde_wdraw *)fec_find(&ln->sent_wdraw, &fn->fec);
683 if (lw && (map->label == NO_LABEL || map->label == lw->label)) {
684 /* LRl.4: delete record of outstanding label withdraw */
685 lde_wdraw_del(ln, lw);
686
687 /* send pending label mapping if any */
688 pending_map = fec_find(&ln->sent_map_pending, &fn->fec);
689 if (pending_map) {
690 lde_send_labelmapping(ln, fn, 1);
691 lde_map_pending_del(ln, pending_map);
692 }
693 }
694
695 /*
696 * LRl.11 - 13 are unnecessary since we remove the label from
697 * forwarding/switching as soon as the FEC is unreachable.
698 */
699 }
700
701 void
702 lde_check_release_wcard(struct map *map, struct lde_nbr *ln)
703 {
704 struct fec *f;
705 struct fec_node *fn;
706 struct lde_wdraw *lw;
707 struct lde_map *me;
708 struct fec *pending_map;
709
710 RB_FOREACH(f, fec_tree, &ft) {
711 fn = (struct fec_node *)f;
712 me = (struct lde_map *)fec_find(&ln->sent_map, &fn->fec);
713
714 /* LRl.1: does FEC match a known FEC? */
715 if (lde_wildcard_apply(map, &fn->fec, me) == 0)
716 continue;
717
718 /* LRl.6: check sent map list and remove it if available */
719 if (me &&
720 (map->label == NO_LABEL || map->label == me->map.label))
721 lde_map_del(ln, me, 1);
722
723 /* LRl.3: first check if we have a pending withdraw running */
724 lw = (struct lde_wdraw *)fec_find(&ln->sent_wdraw, &fn->fec);
725 if (lw && (map->label == NO_LABEL || map->label == lw->label)) {
726 /* LRl.4: delete record of outstanding lbl withdraw */
727 lde_wdraw_del(ln, lw);
728
729 /* send pending label mapping if any */
730 pending_map = fec_find(&ln->sent_map_pending, &fn->fec);
731 if (pending_map) {
732 lde_send_labelmapping(ln, fn, 1);
733 lde_map_pending_del(ln, pending_map);
734 }
735 }
736
737 /*
738 * LRl.11 - 13 are unnecessary since we remove the label from
739 * forwarding/switching as soon as the FEC is unreachable.
740 */
741 }
742 }
743
744 void
745 lde_check_withdraw(struct map *map, struct lde_nbr *ln)
746 {
747 struct fec fec;
748 struct fec_node *fn;
749 struct fec_nh *fnh;
750 struct lde_map *me;
751 struct l2vpn_pw *pw;
752
753 /* wildcard label withdraw */
754 if (map->type == MAP_TYPE_WILDCARD ||
755 map->type == MAP_TYPE_TYPED_WCARD ||
756 (map->type == MAP_TYPE_PWID && !(map->flags & F_MAP_PW_ID))) {
757 lde_check_withdraw_wcard(map, ln);
758 return;
759 }
760
761 lde_map2fec(map, ln->id, &fec);
762 fn = (struct fec_node *)fec_find(&ft, &fec);
763 if (fn == NULL)
764 fn = fec_add(&fec);
765
766 /* LWd.1: remove label from forwarding/switching use */
767 LIST_FOREACH(fnh, &fn->nexthops, entry) {
768 switch (fec.type) {
769 case FEC_TYPE_IPV4:
770 case FEC_TYPE_IPV6:
771 if (!lde_address_find(ln, fnh->af, &fnh->nexthop))
772 continue;
773 break;
774 case FEC_TYPE_PWID:
775 pw = (struct l2vpn_pw *) fn->data;
776 if (pw == NULL)
777 continue;
778 pw->remote_status = PW_NOT_FORWARDING;
779 break;
780 default:
781 break;
782 }
783 if (map->label != NO_LABEL && map->label != fnh->remote_label)
784 continue;
785
786 lde_send_delete_klabel(fn, fnh);
787 fnh->remote_label = NO_LABEL;
788 }
789
790 /* LWd.2: send label release */
791 lde_send_labelrelease(ln, fn, NULL, map->label);
792
793 /* LWd.3: check previously received label mapping */
794 me = (struct lde_map *)fec_find(&ln->recv_map, &fn->fec);
795 if (me && (map->label == NO_LABEL || map->label == me->map.label))
796 /* LWd.4: remove record of previously received lbl mapping */
797 lde_map_del(ln, me, 0);
798 }
799
800 void
801 lde_check_withdraw_wcard(struct map *map, struct lde_nbr *ln)
802 {
803 struct fec *f;
804 struct fec_node *fn;
805 struct fec_nh *fnh;
806 struct lde_map *me;
807 struct l2vpn_pw *pw;
808
809 /* LWd.2: send label release */
810 lde_send_labelrelease(ln, NULL, map, map->label);
811
812 RB_FOREACH(f, fec_tree, &ft) {
813 fn = (struct fec_node *)f;
814 me = (struct lde_map *)fec_find(&ln->recv_map, &fn->fec);
815
816 if (lde_wildcard_apply(map, &fn->fec, me) == 0)
817 continue;
818
819 /* LWd.1: remove label from forwarding/switching use */
820 LIST_FOREACH(fnh, &fn->nexthops, entry) {
821 switch (f->type) {
822 case FEC_TYPE_IPV4:
823 case FEC_TYPE_IPV6:
824 if (!lde_address_find(ln, fnh->af,
825 &fnh->nexthop))
826 continue;
827 break;
828 case FEC_TYPE_PWID:
829 if (f->u.pwid.lsr_id.s_addr != ln->id.s_addr)
830 continue;
831 pw = (struct l2vpn_pw *) fn->data;
832 if (pw)
833 pw->remote_status = PW_NOT_FORWARDING;
834 break;
835 default:
836 break;
837 }
838 if (map->label != NO_LABEL && map->label !=
839 fnh->remote_label)
840 continue;
841
842 lde_send_delete_klabel(fn, fnh);
843 fnh->remote_label = NO_LABEL;
844 }
845
846 /* LWd.3: check previously received label mapping */
847 if (me && (map->label == NO_LABEL ||
848 map->label == me->map.label))
849 /*
850 * LWd.4: remove record of previously received
851 * label mapping
852 */
853 lde_map_del(ln, me, 0);
854 }
855 }
856
857 int
858 lde_wildcard_apply(struct map *wcard, struct fec *fec, struct lde_map *me)
859 {
860 switch (wcard->type) {
861 case MAP_TYPE_WILDCARD:
862 /* full wildcard */
863 return (1);
864 case MAP_TYPE_TYPED_WCARD:
865 switch (wcard->fec.twcard.type) {
866 case MAP_TYPE_PREFIX:
867 if (wcard->fec.twcard.u.prefix_af == AF_INET &&
868 fec->type != FEC_TYPE_IPV4)
869 return (0);
870 if (wcard->fec.twcard.u.prefix_af == AF_INET6 &&
871 fec->type != FEC_TYPE_IPV6)
872 return (0);
873 return (1);
874 case MAP_TYPE_PWID:
875 if (fec->type != FEC_TYPE_PWID)
876 return (0);
877 if (wcard->fec.twcard.u.pw_type != PW_TYPE_WILDCARD &&
878 wcard->fec.twcard.u.pw_type != fec->u.pwid.type)
879 return (0);
880 return (1);
881 default:
882 fatalx("lde_wildcard_apply: unexpected fec type");
883 }
884 break;
885 case MAP_TYPE_PWID:
886 /* RFC4447 pw-id group wildcard */
887 if (fec->type != FEC_TYPE_PWID)
888 return (0);
889 if (fec->u.pwid.type != wcard->fec.pwid.type)
890 return (0);
891 if (me == NULL || (me->map.fec.pwid.group_id !=
892 wcard->fec.pwid.group_id))
893 return (0);
894 return (1);
895 default:
896 fatalx("lde_wildcard_apply: unexpected fec type");
897 }
898 }
899
900 /* gabage collector timer: timer to remove dead entries from the LIB */
901
902 /* ARGSUSED */
903 int
904 lde_gc_timer(struct thread *thread)
905 {
906 struct fec *fec, *safe;
907 struct fec_node *fn;
908 int count = 0;
909
910 RB_FOREACH_SAFE(fec, fec_tree, &ft, safe) {
911 fn = (struct fec_node *) fec;
912
913 if (!LIST_EMPTY(&fn->nexthops) ||
914 !RB_EMPTY(lde_map_head, &fn->downstream) ||
915 !RB_EMPTY(lde_map_head, &fn->upstream))
916 continue;
917
918 fec_remove(&ft, &fn->fec);
919 free(fn);
920 count++;
921 }
922
923 if (count > 0)
924 log_debug("%s: %u entries removed", __func__, count);
925
926 lde_gc_start_timer();
927
928 return (0);
929 }
930
931 void
932 lde_gc_start_timer(void)
933 {
934 THREAD_TIMER_OFF(gc_timer);
935 gc_timer = NULL;
936 thread_add_timer(master, lde_gc_timer, NULL, LDE_GC_INTERVAL,
937 &gc_timer);
938 }
939
940 void
941 lde_gc_stop_timer(void)
942 {
943 THREAD_TIMER_OFF(gc_timer);
944 }