]> git.proxmox.com Git - mirror_frr.git/blob - zebra/zebra_rnh.c
zebra: add handy res2str utility
[mirror_frr.git] / zebra / zebra_rnh.c
1 /* Zebra next hop tracking code
2 * Copyright (C) 2013 Cumulus Networks, Inc.
3 *
4 * This file is part of GNU Zebra.
5 *
6 * GNU Zebra 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 * GNU Zebra 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
21 #include <zebra.h>
22
23 #include "prefix.h"
24 #include "table.h"
25 #include "memory.h"
26 #include "command.h"
27 #include "if.h"
28 #include "log.h"
29 #include "sockunion.h"
30 #include "linklist.h"
31 #include "thread.h"
32 #include "workqueue.h"
33 #include "prefix.h"
34 #include "routemap.h"
35 #include "stream.h"
36 #include "nexthop.h"
37 #include "vrf.h"
38
39 #include "zebra/rib.h"
40 #include "zebra/rt.h"
41 #include "zebra/zserv.h"
42 #include "zebra/zebra_ns.h"
43 #include "zebra/zebra_vrf.h"
44 #include "zebra/redistribute.h"
45 #include "zebra/debug.h"
46 #include "zebra/zebra_rnh.h"
47 #include "zebra/zebra_routemap.h"
48 #include "zebra/interface.h"
49 #include "zebra/zebra_memory.h"
50 #include "zebra/zebra_errors.h"
51
52 static void free_state(vrf_id_t vrf_id, struct route_entry *re,
53 struct route_node *rn);
54 static void copy_state(struct rnh *rnh, struct route_entry *re,
55 struct route_node *rn);
56 #define lookup_rnh_table(v, f) \
57 ({ \
58 struct zebra_vrf *zvrf; \
59 struct route_table *t = NULL; \
60 zvrf = zebra_vrf_lookup_by_id(v); \
61 if (zvrf) \
62 t = zvrf->rnh_table[family2afi(f)]; \
63 t; \
64 })
65
66 static int compare_state(struct route_entry *r1, struct route_entry *r2);
67 static int send_client(struct rnh *rnh, struct zserv *client, rnh_type_t type,
68 vrf_id_t vrf_id);
69 static void print_rnh(struct route_node *rn, struct vty *vty);
70 static int zebra_client_cleanup_rnh(struct zserv *client);
71
72 int zebra_rnh_ip_default_route = 0;
73 int zebra_rnh_ipv6_default_route = 0;
74
75 void zebra_rnh_init(void)
76 {
77 hook_register(zserv_client_close, zebra_client_cleanup_rnh);
78 }
79
80 static inline struct route_table *get_rnh_table(vrf_id_t vrfid, int family,
81 rnh_type_t type)
82 {
83 struct zebra_vrf *zvrf;
84 struct route_table *t = NULL;
85
86 zvrf = zebra_vrf_lookup_by_id(vrfid);
87 if (zvrf)
88 switch (type) {
89 case RNH_NEXTHOP_TYPE:
90 t = zvrf->rnh_table[family2afi(family)];
91 break;
92 case RNH_IMPORT_CHECK_TYPE:
93 t = zvrf->import_check_table[family2afi(family)];
94 break;
95 }
96
97 return t;
98 }
99
100 char *rnh_str(struct rnh *rnh, char *buf, int size)
101 {
102 prefix2str(&(rnh->node->p), buf, size);
103 return buf;
104 }
105
106 struct rnh *zebra_add_rnh(struct prefix *p, vrf_id_t vrfid, rnh_type_t type,
107 bool *exists)
108 {
109 struct route_table *table;
110 struct route_node *rn;
111 struct rnh *rnh = NULL;
112 char buf[PREFIX2STR_BUFFER];
113
114 if (IS_ZEBRA_DEBUG_NHT) {
115 prefix2str(p, buf, sizeof(buf));
116 zlog_debug("%u: Add RNH %s type %d", vrfid, buf, type);
117 }
118 table = get_rnh_table(vrfid, PREFIX_FAMILY(p), type);
119 if (!table) {
120 prefix2str(p, buf, sizeof(buf));
121 flog_warn(EC_ZEBRA_RNH_NO_TABLE,
122 "%u: Add RNH %s type %d - table not found", vrfid,
123 buf, type);
124 exists = false;
125 return NULL;
126 }
127
128 /* Make it sure prefixlen is applied to the prefix. */
129 apply_mask(p);
130
131 /* Lookup (or add) route node.*/
132 rn = route_node_get(table, p);
133
134 if (!rn->info) {
135 rnh = XCALLOC(MTYPE_RNH, sizeof(struct rnh));
136 rnh->client_list = list_new();
137 rnh->vrf_id = vrfid;
138 rnh->zebra_pseudowire_list = list_new();
139 route_lock_node(rn);
140 rn->info = rnh;
141 rnh->node = rn;
142 *exists = false;
143 } else
144 *exists = true;
145
146 route_unlock_node(rn);
147 return (rn->info);
148 }
149
150 struct rnh *zebra_lookup_rnh(struct prefix *p, vrf_id_t vrfid, rnh_type_t type)
151 {
152 struct route_table *table;
153 struct route_node *rn;
154
155 table = get_rnh_table(vrfid, PREFIX_FAMILY(p), type);
156 if (!table)
157 return NULL;
158
159 /* Make it sure prefixlen is applied to the prefix. */
160 apply_mask(p);
161
162 /* Lookup route node.*/
163 rn = route_node_lookup(table, p);
164 if (!rn)
165 return NULL;
166
167 route_unlock_node(rn);
168 return (rn->info);
169 }
170
171 void zebra_free_rnh(struct rnh *rnh)
172 {
173 rnh->flags |= ZEBRA_NHT_DELETED;
174 list_delete(&rnh->client_list);
175 list_delete(&rnh->zebra_pseudowire_list);
176 free_state(rnh->vrf_id, rnh->state, rnh->node);
177 XFREE(MTYPE_RNH, rnh);
178 }
179
180 void zebra_delete_rnh(struct rnh *rnh, rnh_type_t type)
181 {
182 struct route_node *rn;
183
184 if (!rnh || (rnh->flags & ZEBRA_NHT_DELETED) || !(rn = rnh->node))
185 return;
186
187 if (IS_ZEBRA_DEBUG_NHT) {
188 char buf[PREFIX2STR_BUFFER];
189 zlog_debug("%u: Del RNH %s type %d", rnh->vrf_id,
190 rnh_str(rnh, buf, sizeof(buf)), type);
191 }
192
193 zebra_free_rnh(rnh);
194 rn->info = NULL;
195 route_unlock_node(rn);
196 }
197
198 /*
199 * This code will send to the registering client
200 * the looked up rnh.
201 * For a rnh that was created, there is no data
202 * so it will send an empty nexthop group
203 * If rnh exists then we know it has been evaluated
204 * and as such it will have a resolved rnh.
205 */
206 void zebra_add_rnh_client(struct rnh *rnh, struct zserv *client,
207 rnh_type_t type, vrf_id_t vrf_id)
208 {
209 if (IS_ZEBRA_DEBUG_NHT) {
210 char buf[PREFIX2STR_BUFFER];
211 zlog_debug("%u: Client %s registers for RNH %s type %d", vrf_id,
212 zebra_route_string(client->proto),
213 rnh_str(rnh, buf, sizeof(buf)), type);
214 }
215 if (!listnode_lookup(rnh->client_list, client)) {
216 listnode_add(rnh->client_list, client);
217 send_client(rnh, client, type, vrf_id);
218 }
219 }
220
221 void zebra_remove_rnh_client(struct rnh *rnh, struct zserv *client,
222 rnh_type_t type)
223 {
224 if (IS_ZEBRA_DEBUG_NHT) {
225 char buf[PREFIX2STR_BUFFER];
226 zlog_debug("Client %s unregisters for RNH %s type %d",
227 zebra_route_string(client->proto),
228 rnh_str(rnh, buf, sizeof(buf)), type);
229 }
230 listnode_delete(rnh->client_list, client);
231 if (list_isempty(rnh->client_list)
232 && list_isempty(rnh->zebra_pseudowire_list))
233 zebra_delete_rnh(rnh, type);
234 }
235
236 /* XXX move this utility function elsewhere? */
237 static void addr2hostprefix(int af, const union g_addr *addr,
238 struct prefix *prefix)
239 {
240 switch (af) {
241 case AF_INET:
242 prefix->family = AF_INET;
243 prefix->prefixlen = IPV4_MAX_BITLEN;
244 prefix->u.prefix4 = addr->ipv4;
245 break;
246 case AF_INET6:
247 prefix->family = AF_INET6;
248 prefix->prefixlen = IPV6_MAX_BITLEN;
249 prefix->u.prefix6 = addr->ipv6;
250 break;
251 default:
252 memset(prefix, 0, sizeof(*prefix));
253 zlog_debug("%s: unknown address family %d", __func__, af);
254 break;
255 }
256 }
257
258 void zebra_register_rnh_pseudowire(vrf_id_t vrf_id, struct zebra_pw *pw)
259 {
260 struct prefix nh;
261 struct rnh *rnh;
262 bool exists;
263 struct zebra_vrf *zvrf;
264
265 zvrf = vrf_info_lookup(vrf_id);
266 if (!zvrf)
267 return;
268
269 addr2hostprefix(pw->af, &pw->nexthop, &nh);
270 rnh = zebra_add_rnh(&nh, vrf_id, RNH_NEXTHOP_TYPE, &exists);
271 if (rnh && !listnode_lookup(rnh->zebra_pseudowire_list, pw)) {
272 listnode_add(rnh->zebra_pseudowire_list, pw);
273 pw->rnh = rnh;
274 zebra_evaluate_rnh(zvrf, pw->af, 1, RNH_NEXTHOP_TYPE, &nh);
275 }
276 }
277
278 void zebra_deregister_rnh_pseudowire(vrf_id_t vrf_id, struct zebra_pw *pw)
279 {
280 struct rnh *rnh;
281
282 rnh = pw->rnh;
283 if (!rnh)
284 return;
285
286 listnode_delete(rnh->zebra_pseudowire_list, pw);
287 pw->rnh = NULL;
288
289 if (list_isempty(rnh->client_list)
290 && list_isempty(rnh->zebra_pseudowire_list))
291 zebra_delete_rnh(rnh, RNH_NEXTHOP_TYPE);
292 }
293
294 /* Apply the NHT route-map for a client to the route (and nexthops)
295 * resolving a NH.
296 */
297 static int zebra_rnh_apply_nht_rmap(int family, struct zebra_vrf *zvrf,
298 struct route_node *prn,
299 struct route_entry *re, int proto)
300 {
301 int at_least_one = 0;
302 int rmap_family; /* Route map has diff AF family enum */
303 struct nexthop *nexthop;
304 int ret;
305
306 rmap_family = (family == AF_INET) ? AFI_IP : AFI_IP6;
307
308 if (prn && re) {
309 for (nexthop = re->ng.nexthop; nexthop;
310 nexthop = nexthop->next) {
311 ret = zebra_nht_route_map_check(
312 rmap_family, proto, &prn->p, zvrf, re, nexthop);
313 if (ret != RMAP_DENYMATCH) {
314 SET_FLAG(nexthop->flags, NEXTHOP_FLAG_ACTIVE);
315 at_least_one++; /* at least one valid NH */
316 } else {
317 UNSET_FLAG(nexthop->flags, NEXTHOP_FLAG_ACTIVE);
318 }
319 }
320 }
321 return (at_least_one);
322 }
323
324 /*
325 * Determine appropriate route (RE entry) resolving a tracked BGP route
326 * for BGP route for import.
327 */
328 static struct route_entry *
329 zebra_rnh_resolve_import_entry(struct zebra_vrf *zvrf, int family,
330 struct route_node *nrn, struct rnh *rnh,
331 struct route_node **prn)
332 {
333 struct route_table *route_table;
334 struct route_node *rn;
335 struct route_entry *re;
336
337 *prn = NULL;
338
339 route_table = zvrf->table[family2afi(family)][SAFI_UNICAST];
340 if (!route_table) // unexpected
341 return NULL;
342
343 rn = route_node_match(route_table, &nrn->p);
344 if (!rn)
345 return NULL;
346
347 /* Unlock route node - we don't need to lock when walking the tree. */
348 route_unlock_node(rn);
349
350 if (CHECK_FLAG(rnh->flags, ZEBRA_NHT_EXACT_MATCH)
351 && !prefix_same(&nrn->p, &rn->p))
352 return NULL;
353
354 /* Identify appropriate route entry. */
355 RNODE_FOREACH_RE (rn, re) {
356 if (!CHECK_FLAG(re->status, ROUTE_ENTRY_REMOVED)
357 && CHECK_FLAG(re->flags, ZEBRA_FLAG_SELECTED)
358 && (re->type != ZEBRA_ROUTE_BGP))
359 break;
360 }
361
362 if (re)
363 *prn = rn;
364 return re;
365 }
366
367 /*
368 * See if a tracked route entry for import (by BGP) has undergone any
369 * change, and if so, notify the client.
370 */
371 static void zebra_rnh_eval_import_check_entry(vrf_id_t vrfid, int family,
372 int force, struct route_node *nrn,
373 struct rnh *rnh,
374 struct route_entry *re)
375 {
376 int state_changed = 0;
377 struct zserv *client;
378 char bufn[INET6_ADDRSTRLEN];
379 struct listnode *node;
380 struct nexthop *nexthop;
381
382 if (re && (rnh->state == NULL)) {
383 for (ALL_NEXTHOPS(re->ng, nexthop))
384 if (CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_FIB)) {
385 state_changed = 1;
386 break;
387 }
388 } else if (!re && (rnh->state != NULL))
389 state_changed = 1;
390
391 if (compare_state(re, rnh->state))
392 copy_state(rnh, re, nrn);
393
394 if (state_changed || force) {
395 if (IS_ZEBRA_DEBUG_NHT) {
396 prefix2str(&nrn->p, bufn, INET6_ADDRSTRLEN);
397 zlog_debug("%u:%s: Route import check %s %s\n", vrfid,
398 bufn, rnh->state ? "passed" : "failed",
399 state_changed ? "(state changed)" : "");
400 }
401 /* state changed, notify clients */
402 for (ALL_LIST_ELEMENTS_RO(rnh->client_list, node, client)) {
403 send_client(rnh, client, RNH_IMPORT_CHECK_TYPE, vrfid);
404 }
405 }
406 }
407
408 /*
409 * Notify clients registered for this nexthop about a change.
410 */
411 static void zebra_rnh_notify_protocol_clients(
412 struct zebra_vrf *zvrf, int family, struct route_node *nrn,
413 struct rnh *rnh, struct route_node *prn, struct route_entry *re)
414 {
415 struct listnode *node;
416 struct zserv *client;
417 char bufn[INET6_ADDRSTRLEN];
418 char bufp[INET6_ADDRSTRLEN];
419 int num_resolving_nh;
420
421 if (IS_ZEBRA_DEBUG_NHT) {
422 prefix2str(&nrn->p, bufn, INET6_ADDRSTRLEN);
423 if (prn && re) {
424 prefix2str(&prn->p, bufp, INET6_ADDRSTRLEN);
425 zlog_debug("%u:%s: NH resolved over route %s",
426 zvrf->vrf->vrf_id, bufn, bufp);
427 } else
428 zlog_debug("%u:%s: NH has become unresolved",
429 zvrf->vrf->vrf_id, bufn);
430 }
431
432 for (ALL_LIST_ELEMENTS_RO(rnh->client_list, node, client)) {
433 if (prn && re) {
434 /* Apply route-map for this client to route resolving
435 * this
436 * nexthop to see if it is filtered or not.
437 */
438 num_resolving_nh = zebra_rnh_apply_nht_rmap(
439 family, zvrf, prn, re, client->proto);
440 if (num_resolving_nh)
441 rnh->filtered[client->proto] = 0;
442 else
443 rnh->filtered[client->proto] = 1;
444
445 if (IS_ZEBRA_DEBUG_NHT)
446 zlog_debug(
447 "%u:%s: Notifying client %s about NH %s",
448 zvrf->vrf->vrf_id, bufn,
449 zebra_route_string(client->proto),
450 num_resolving_nh
451 ? ""
452 : "(filtered by route-map)");
453 } else {
454 rnh->filtered[client->proto] = 0;
455 if (IS_ZEBRA_DEBUG_NHT)
456 zlog_debug(
457 "%u:%s: Notifying client %s about NH (unreachable)",
458 zvrf->vrf->vrf_id, bufn,
459 zebra_route_string(client->proto));
460 }
461
462 send_client(rnh, client, RNH_NEXTHOP_TYPE, zvrf->vrf->vrf_id);
463 }
464 }
465
466 static void zebra_rnh_process_pbr_tables(int family,
467 struct route_node *nrn,
468 struct rnh *rnh,
469 struct route_node *prn,
470 struct route_entry *re)
471 {
472 struct zebra_ns_table *znst;
473 struct route_entry *o_re;
474 struct route_node *o_rn;
475 struct listnode *node;
476 struct zserv *client;
477 struct zebra_ns *zns;
478 afi_t afi = AFI_IP;
479
480 if (family == AF_INET6)
481 afi = AFI_IP6;
482
483 /*
484 * We are only concerned about nexthops that change for
485 * anyone using PBR
486 */
487 for (ALL_LIST_ELEMENTS_RO(rnh->client_list, node, client)) {
488 if (client->proto == ZEBRA_ROUTE_PBR)
489 break;
490 }
491
492 if (!client)
493 return;
494
495 zns = zebra_ns_lookup(NS_DEFAULT);
496 RB_FOREACH (znst, zebra_ns_table_head, &zns->ns_tables) {
497 if (afi != znst->afi)
498 continue;
499
500 for (o_rn = route_top(znst->table);
501 o_rn; o_rn = srcdest_route_next(o_rn)) {
502 RNODE_FOREACH_RE (o_rn, o_re) {
503 if (o_re->type == ZEBRA_ROUTE_PBR)
504 break;
505
506 }
507
508 /*
509 * If we have a PBR route and a nexthop changes
510 * just rethink it. Yes this is a hammer, but
511 * a small one
512 */
513 if (o_re) {
514 SET_FLAG(o_re->status, ROUTE_ENTRY_CHANGED);
515 rib_queue_add(o_rn);
516 }
517 }
518 }
519 }
520
521 /*
522 * Determine appropriate route (route entry) resolving a tracked
523 * nexthop.
524 */
525 static struct route_entry *
526 zebra_rnh_resolve_nexthop_entry(struct zebra_vrf *zvrf, int family,
527 struct route_node *nrn, struct rnh *rnh,
528 struct route_node **prn)
529 {
530 struct route_table *route_table;
531 struct route_node *rn;
532 struct route_entry *re;
533 struct nexthop *nexthop;
534
535 *prn = NULL;
536
537 route_table = zvrf->table[family2afi(family)][SAFI_UNICAST];
538 if (!route_table)
539 return NULL;
540
541 rn = route_node_match(route_table, &nrn->p);
542 if (!rn)
543 return NULL;
544
545 /* Unlock route node - we don't need to lock when walking the tree. */
546 route_unlock_node(rn);
547
548 /* While resolving nexthops, we may need to walk up the tree from the
549 * most-specific match. Do similar logic as in zebra_rib.c
550 */
551 while (rn) {
552 /* Do not resolve over default route unless allowed &&
553 * match route to be exact if so specified
554 */
555 if (is_default_prefix(&rn->p)
556 && !rnh_resolve_via_default(rn->p.family))
557 return NULL;
558
559 /* Identify appropriate route entry. */
560 RNODE_FOREACH_RE (rn, re) {
561 if (CHECK_FLAG(re->status, ROUTE_ENTRY_REMOVED))
562 continue;
563 if (!CHECK_FLAG(re->flags, ZEBRA_FLAG_SELECTED))
564 continue;
565
566 /* Just being SELECTED isn't quite enough - must
567 * have an installed nexthop to be useful.
568 */
569 for (nexthop = re->ng.nexthop; nexthop;
570 nexthop = nexthop->next)
571 if ((CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_FIB)
572 || CHECK_FLAG(nexthop->flags,
573 NEXTHOP_FLAG_RECURSIVE))
574 && CHECK_FLAG(nexthop->flags,
575 NEXTHOP_FLAG_ACTIVE))
576 break;
577
578 if (nexthop == NULL)
579 continue;
580
581 if (CHECK_FLAG(rnh->flags, ZEBRA_NHT_CONNECTED)) {
582 if ((re->type == ZEBRA_ROUTE_CONNECT)
583 || (re->type == ZEBRA_ROUTE_STATIC))
584 break;
585 if (re->type == ZEBRA_ROUTE_NHRP) {
586
587 for (nexthop = re->ng.nexthop; nexthop;
588 nexthop = nexthop->next)
589 if (nexthop->type
590 == NEXTHOP_TYPE_IFINDEX)
591 break;
592 if (nexthop)
593 break;
594 }
595 } else
596 break;
597 }
598
599 /* Route entry found, we're done; else, walk up the tree. */
600 if (re) {
601 *prn = rn;
602 return re;
603 }
604
605 if (CHECK_FLAG(rnh->flags, ZEBRA_NHT_CONNECTED))
606 rn = rn->parent;
607 else
608 return NULL;
609 }
610
611 return NULL;
612 }
613
614 static void zebra_rnh_process_pseudowires(vrf_id_t vrfid, struct rnh *rnh)
615 {
616 struct zebra_pw *pw;
617 struct listnode *node;
618
619 for (ALL_LIST_ELEMENTS_RO(rnh->zebra_pseudowire_list, node, pw))
620 zebra_pw_update(pw);
621 }
622
623 /*
624 * See if a tracked nexthop entry has undergone any change, and if so,
625 * take appropriate action; this involves notifying any clients and/or
626 * scheduling dependent static routes for processing.
627 */
628 static void zebra_rnh_eval_nexthop_entry(struct zebra_vrf *zvrf, int family,
629 int force, struct route_node *nrn,
630 struct rnh *rnh,
631 struct route_node *prn,
632 struct route_entry *re)
633 {
634 int state_changed = 0;
635
636 /* If we're resolving over a different route, resolution has changed or
637 * the resolving route has some change (e.g., metric), there is a state
638 * change.
639 */
640 if (!prefix_same(&rnh->resolved_route, &prn->p)) {
641 if (prn)
642 prefix_copy(&rnh->resolved_route, &prn->p);
643 else
644 memset(&rnh->resolved_route, 0, sizeof(struct prefix));
645
646 copy_state(rnh, re, nrn);
647 state_changed = 1;
648 } else if (compare_state(re, rnh->state)) {
649 copy_state(rnh, re, nrn);
650 state_changed = 1;
651 }
652
653 if (state_changed || force) {
654 /* NOTE: Use the "copy" of resolving route stored in 'rnh' i.e.,
655 * rnh->state.
656 */
657 /* Notify registered protocol clients. */
658 zebra_rnh_notify_protocol_clients(zvrf, family, nrn, rnh, prn,
659 rnh->state);
660
661 zebra_rnh_process_pbr_tables(family, nrn, rnh, prn, rnh->state);
662
663 /* Process pseudowires attached to this nexthop */
664 zebra_rnh_process_pseudowires(zvrf->vrf->vrf_id, rnh);
665 }
666 }
667
668 /* Evaluate one tracked entry */
669 static void zebra_rnh_evaluate_entry(struct zebra_vrf *zvrf, int family,
670 int force, rnh_type_t type,
671 struct route_node *nrn)
672 {
673 struct rnh *rnh;
674 struct route_entry *re;
675 struct route_node *prn;
676 char bufn[INET6_ADDRSTRLEN];
677
678 if (IS_ZEBRA_DEBUG_NHT) {
679 prefix2str(&nrn->p, bufn, INET6_ADDRSTRLEN);
680 zlog_debug("%u:%s: Evaluate RNH, type %d %s", zvrf->vrf->vrf_id,
681 bufn, type, force ? "(force)" : "");
682 }
683
684 rnh = nrn->info;
685
686 /* Identify route entry (RE) resolving this tracked entry. */
687 if (type == RNH_IMPORT_CHECK_TYPE)
688 re = zebra_rnh_resolve_import_entry(zvrf, family, nrn, rnh,
689 &prn);
690 else
691 re = zebra_rnh_resolve_nexthop_entry(zvrf, family, nrn, rnh,
692 &prn);
693
694 /* If the entry cannot be resolved and that is also the existing state,
695 * there is nothing further to do.
696 */
697 if (!re && rnh->state == NULL && !force)
698 return;
699
700 /* Process based on type of entry. */
701 if (type == RNH_IMPORT_CHECK_TYPE)
702 zebra_rnh_eval_import_check_entry(zvrf->vrf->vrf_id, family,
703 force, nrn, rnh, re);
704 else
705 zebra_rnh_eval_nexthop_entry(zvrf, family, force, nrn, rnh, prn,
706 re);
707 }
708
709 /*
710 * Clear the ROUTE_ENTRY_NEXTHOPS_CHANGED flag
711 * from the re entries.
712 *
713 * Please note we are doing this *after* we have
714 * notified the world about each nexthop as that
715 * we can have a situation where one re entry
716 * covers multiple nexthops we are interested in.
717 */
718 static void zebra_rnh_clear_nhc_flag(struct zebra_vrf *zvrf, int family,
719 rnh_type_t type, struct route_node *nrn)
720 {
721 struct rnh *rnh;
722 struct route_entry *re;
723 struct route_node *prn;
724
725 rnh = nrn->info;
726
727 /* Identify route entry (RIB) resolving this tracked entry. */
728 if (type == RNH_IMPORT_CHECK_TYPE)
729 re = zebra_rnh_resolve_import_entry(zvrf, family, nrn, rnh,
730 &prn);
731 else
732 re = zebra_rnh_resolve_nexthop_entry(zvrf, family, nrn, rnh,
733 &prn);
734
735 if (re) {
736 UNSET_FLAG(re->status, ROUTE_ENTRY_NEXTHOPS_CHANGED);
737 UNSET_FLAG(re->status, ROUTE_ENTRY_LABELS_CHANGED);
738 }
739 }
740
741 /* Evaluate all tracked entries (nexthops or routes for import into BGP)
742 * of a particular VRF and address-family or a specific prefix.
743 */
744 void zebra_evaluate_rnh(struct zebra_vrf *zvrf, int family, int force,
745 rnh_type_t type, struct prefix *p)
746 {
747 struct route_table *rnh_table;
748 struct route_node *nrn;
749
750 rnh_table = get_rnh_table(zvrf->vrf->vrf_id, family, type);
751 if (!rnh_table) // unexpected
752 return;
753
754 if (p) {
755 /* Evaluating a specific entry, make sure it exists. */
756 nrn = route_node_lookup(rnh_table, p);
757 if (nrn && nrn->info)
758 zebra_rnh_evaluate_entry(zvrf, family, force, type,
759 nrn);
760
761 if (nrn)
762 route_unlock_node(nrn);
763 } else {
764 /* Evaluate entire table. */
765 nrn = route_top(rnh_table);
766 while (nrn) {
767 if (nrn->info)
768 zebra_rnh_evaluate_entry(zvrf, family, force,
769 type, nrn);
770 nrn = route_next(nrn); /* this will also unlock nrn */
771 }
772 nrn = route_top(rnh_table);
773 while (nrn) {
774 if (nrn->info)
775 zebra_rnh_clear_nhc_flag(zvrf, family, type,
776 nrn);
777 nrn = route_next(nrn); /* this will also unlock nrn */
778 }
779 }
780 }
781
782 void zebra_print_rnh_table(vrf_id_t vrfid, int af, struct vty *vty,
783 rnh_type_t type)
784 {
785 struct route_table *table;
786 struct route_node *rn;
787
788 table = get_rnh_table(vrfid, af, type);
789 if (!table) {
790 zlog_debug("print_rnhs: rnh table not found\n");
791 return;
792 }
793
794 for (rn = route_top(table); rn; rn = route_next(rn))
795 if (rn->info)
796 print_rnh(rn, vty);
797 }
798
799 /**
800 * free_state - free up the re structure associated with the rnh.
801 */
802 static void free_state(vrf_id_t vrf_id, struct route_entry *re,
803 struct route_node *rn)
804 {
805
806 if (!re)
807 return;
808
809 /* free RE and nexthops */
810 nexthops_free(re->ng.nexthop);
811 XFREE(MTYPE_RE, re);
812 }
813
814 static void copy_state(struct rnh *rnh, struct route_entry *re,
815 struct route_node *rn)
816 {
817 struct route_entry *state;
818
819 if (rnh->state) {
820 free_state(rnh->vrf_id, rnh->state, rn);
821 rnh->state = NULL;
822 }
823
824 if (!re)
825 return;
826
827 state = XCALLOC(MTYPE_RE, sizeof(struct route_entry));
828 state->type = re->type;
829 state->distance = re->distance;
830 state->metric = re->metric;
831 state->vrf_id = re->vrf_id;
832
833 route_entry_copy_nexthops(state, re->ng.nexthop);
834 rnh->state = state;
835 }
836
837 static int compare_state(struct route_entry *r1, struct route_entry *r2)
838 {
839
840 if (!r1 && !r2)
841 return 0;
842
843 if ((!r1 && r2) || (r1 && !r2))
844 return 1;
845
846 if (r1->distance != r2->distance)
847 return 1;
848
849 if (r1->metric != r2->metric)
850 return 1;
851
852 if (r1->nexthop_num != r2->nexthop_num)
853 return 1;
854
855 if (CHECK_FLAG(r1->status, ROUTE_ENTRY_NEXTHOPS_CHANGED)
856 || CHECK_FLAG(r1->status, ROUTE_ENTRY_LABELS_CHANGED))
857 return 1;
858
859 return 0;
860 }
861
862 static int send_client(struct rnh *rnh, struct zserv *client, rnh_type_t type,
863 vrf_id_t vrf_id)
864 {
865 struct stream *s;
866 struct route_entry *re;
867 unsigned long nump;
868 uint8_t num;
869 struct nexthop *nh;
870 struct route_node *rn;
871 int cmd = (type == RNH_IMPORT_CHECK_TYPE) ? ZEBRA_IMPORT_CHECK_UPDATE
872 : ZEBRA_NEXTHOP_UPDATE;
873
874 rn = rnh->node;
875 re = rnh->state;
876
877 /* Get output stream. */
878 s = stream_new(ZEBRA_MAX_PACKET_SIZ);
879
880 zclient_create_header(s, cmd, vrf_id);
881
882 stream_putw(s, rn->p.family);
883 switch (rn->p.family) {
884 case AF_INET:
885 stream_putc(s, rn->p.prefixlen);
886 stream_put_in_addr(s, &rn->p.u.prefix4);
887 break;
888 case AF_INET6:
889 stream_putc(s, rn->p.prefixlen);
890 stream_put(s, &rn->p.u.prefix6, IPV6_MAX_BYTELEN);
891 break;
892 default:
893 flog_err(EC_ZEBRA_RNH_UNKNOWN_FAMILY,
894 "%s: Unknown family (%d) notification attempted\n",
895 __FUNCTION__, rn->p.family);
896 break;
897 }
898 if (re) {
899 stream_putc(s, re->type);
900 stream_putw(s, re->instance);
901 stream_putc(s, re->distance);
902 stream_putl(s, re->metric);
903 num = 0;
904 nump = stream_get_endp(s);
905 stream_putc(s, 0);
906 for (nh = re->ng.nexthop; nh; nh = nh->next)
907 if ((CHECK_FLAG(nh->flags, NEXTHOP_FLAG_FIB)
908 || CHECK_FLAG(nh->flags, NEXTHOP_FLAG_RECURSIVE))
909 && CHECK_FLAG(nh->flags, NEXTHOP_FLAG_ACTIVE)) {
910 stream_putc(s, nh->type);
911 switch (nh->type) {
912 case NEXTHOP_TYPE_IPV4:
913 case NEXTHOP_TYPE_IPV4_IFINDEX:
914 stream_put_in_addr(s, &nh->gate.ipv4);
915 stream_putl(s, nh->ifindex);
916 break;
917 case NEXTHOP_TYPE_IFINDEX:
918 stream_putl(s, nh->ifindex);
919 break;
920 case NEXTHOP_TYPE_IPV6:
921 case NEXTHOP_TYPE_IPV6_IFINDEX:
922 stream_put(s, &nh->gate.ipv6, 16);
923 stream_putl(s, nh->ifindex);
924 break;
925 default:
926 /* do nothing */
927 break;
928 }
929 if (nh->nh_label) {
930 stream_putc(s,
931 nh->nh_label->num_labels);
932 if (nh->nh_label->num_labels)
933 stream_put(
934 s,
935 &nh->nh_label->label[0],
936 nh->nh_label->num_labels
937 * sizeof(mpls_label_t));
938 } else
939 stream_putc(s, 0);
940 num++;
941 }
942 stream_putc_at(s, nump, num);
943 } else {
944 stream_putc(s, 0); // type
945 stream_putw(s, 0); // instance
946 stream_putc(s, 0); // distance
947 stream_putl(s, 0); // metric
948 stream_putc(s, 0); // nexthops
949 }
950 stream_putw_at(s, 0, stream_get_endp(s));
951
952 client->nh_last_upd_time = monotime(NULL);
953 client->last_write_cmd = cmd;
954 return zserv_send_message(client, s);
955 }
956
957 static void print_nh(struct nexthop *nexthop, struct vty *vty)
958 {
959 char buf[BUFSIZ];
960 struct zebra_ns *zns = zebra_ns_lookup(NS_DEFAULT);
961
962 switch (nexthop->type) {
963 case NEXTHOP_TYPE_IPV4:
964 case NEXTHOP_TYPE_IPV4_IFINDEX:
965 vty_out(vty, " via %s", inet_ntoa(nexthop->gate.ipv4));
966 if (nexthop->ifindex)
967 vty_out(vty, ", %s",
968 ifindex2ifname_per_ns(zns, nexthop->ifindex));
969 break;
970 case NEXTHOP_TYPE_IPV6:
971 case NEXTHOP_TYPE_IPV6_IFINDEX:
972 vty_out(vty, " %s",
973 inet_ntop(AF_INET6, &nexthop->gate.ipv6, buf, BUFSIZ));
974 if (nexthop->ifindex)
975 vty_out(vty, ", via %s",
976 ifindex2ifname_per_ns(zns, nexthop->ifindex));
977 break;
978 case NEXTHOP_TYPE_IFINDEX:
979 vty_out(vty, " is directly connected, %s",
980 ifindex2ifname_per_ns(zns, nexthop->ifindex));
981 break;
982 case NEXTHOP_TYPE_BLACKHOLE:
983 vty_out(vty, " is directly connected, Null0");
984 break;
985 default:
986 break;
987 }
988 vty_out(vty, "\n");
989 }
990
991 static void print_rnh(struct route_node *rn, struct vty *vty)
992 {
993 struct rnh *rnh;
994 struct nexthop *nexthop;
995 struct listnode *node;
996 struct zserv *client;
997 char buf[BUFSIZ];
998
999 rnh = rn->info;
1000 vty_out(vty, "%s%s\n",
1001 inet_ntop(rn->p.family, &rn->p.u.prefix, buf, BUFSIZ),
1002 CHECK_FLAG(rnh->flags, ZEBRA_NHT_CONNECTED) ? "(Connected)"
1003 : "");
1004 if (rnh->state) {
1005 vty_out(vty, " resolved via %s\n",
1006 zebra_route_string(rnh->state->type));
1007 for (nexthop = rnh->state->ng.nexthop; nexthop;
1008 nexthop = nexthop->next)
1009 print_nh(nexthop, vty);
1010 } else
1011 vty_out(vty, " unresolved%s\n",
1012 CHECK_FLAG(rnh->flags, ZEBRA_NHT_CONNECTED)
1013 ? "(Connected)"
1014 : "");
1015
1016 vty_out(vty, " Client list:");
1017 for (ALL_LIST_ELEMENTS_RO(rnh->client_list, node, client))
1018 vty_out(vty, " %s(fd %d)%s", zebra_route_string(client->proto),
1019 client->sock,
1020 rnh->filtered[client->proto] ? "(filtered)" : "");
1021 if (!list_isempty(rnh->zebra_pseudowire_list))
1022 vty_out(vty, " zebra[pseudowires]");
1023 vty_out(vty, "\n");
1024 }
1025
1026 static int zebra_cleanup_rnh_client(vrf_id_t vrf_id, int family,
1027 struct zserv *client, rnh_type_t type)
1028 {
1029 struct route_table *ntable;
1030 struct route_node *nrn;
1031 struct rnh *rnh;
1032
1033 if (IS_ZEBRA_DEBUG_NHT)
1034 zlog_debug("%u: Client %s RNH cleanup for family %d type %d",
1035 vrf_id, zebra_route_string(client->proto), family,
1036 type);
1037
1038 ntable = get_rnh_table(vrf_id, family, type);
1039 if (!ntable) {
1040 zlog_debug("cleanup_rnh_client: rnh table not found\n");
1041 return -1;
1042 }
1043
1044 for (nrn = route_top(ntable); nrn; nrn = route_next(nrn)) {
1045 if (!nrn->info)
1046 continue;
1047
1048 rnh = nrn->info;
1049 zebra_remove_rnh_client(rnh, client, type);
1050 }
1051 return 1;
1052 }
1053
1054 /* Cleanup registered nexthops (across VRFs) upon client disconnect. */
1055 static int zebra_client_cleanup_rnh(struct zserv *client)
1056 {
1057 struct vrf *vrf;
1058 struct zebra_vrf *zvrf;
1059
1060 RB_FOREACH (vrf, vrf_id_head, &vrfs_by_id) {
1061 zvrf = vrf->info;
1062 if (zvrf) {
1063 zebra_cleanup_rnh_client(zvrf_id(zvrf), AF_INET, client,
1064 RNH_NEXTHOP_TYPE);
1065 zebra_cleanup_rnh_client(zvrf_id(zvrf), AF_INET6,
1066 client, RNH_NEXTHOP_TYPE);
1067 zebra_cleanup_rnh_client(zvrf_id(zvrf), AF_INET, client,
1068 RNH_IMPORT_CHECK_TYPE);
1069 zebra_cleanup_rnh_client(zvrf_id(zvrf), AF_INET6,
1070 client, RNH_IMPORT_CHECK_TYPE);
1071 if (client->proto == ZEBRA_ROUTE_LDP) {
1072 hash_iterate(zvrf->lsp_table,
1073 mpls_ldp_lsp_uninstall_all,
1074 zvrf->lsp_table);
1075 mpls_ldp_ftn_uninstall_all(zvrf, AFI_IP);
1076 mpls_ldp_ftn_uninstall_all(zvrf, AFI_IP6);
1077 }
1078 }
1079 }
1080
1081 return 0;
1082 }