blob: 1fb040608b415ac1287e2bc33c3d37e5be471dd9 [file] [log] [blame]
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001/*
2 * Copyright (c) 2016 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <vnet/adj/adj.h>
17#include <vnet/dpo/load_balance.h>
18#include <vnet/dpo/mpls_label_dpo.h>
19#include <vnet/dpo/drop_dpo.h>
20
Neale Ranns3ee44042016-10-03 13:05:48 +010021#include <vnet/fib/fib_entry_src.h>
22#include <vnet/fib/fib_table.h>
23#include <vnet/fib/fib_path_ext.h>
24#include <vnet/fib/fib_urpf_list.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010025
26/*
27 * per-source type vft
28 */
29static fib_entry_src_vft_t fib_entry_src_vft[FIB_SOURCE_MAX];
30
31static fib_protocol_t
32fib_entry_get_proto (const fib_entry_t * fib_entry)
33{
34 return (fib_entry->fe_prefix.fp_proto);
35}
36
37void
38fib_entry_src_register (fib_source_t source,
39 const fib_entry_src_vft_t *vft)
40{
41 fib_entry_src_vft[source] = *vft;
42}
43
44static int
45fib_entry_src_cmp_for_sort (void * v1,
46 void * v2)
47{
48 fib_entry_src_t *esrc1 = v1, *esrc2 = v2;
49
50 return (esrc1->fes_src - esrc2->fes_src);
51}
52
53void
54fib_entry_src_action_init (fib_entry_t *fib_entry,
55 fib_source_t source)
56
57{
58 fib_entry_src_t esrc = {
59 .fes_pl = FIB_NODE_INDEX_INVALID,
60 .fes_flags = FIB_ENTRY_SRC_FLAG_NONE,
61 .fes_src = source,
62 };
63
64 if (NULL != fib_entry_src_vft[source].fesv_init)
65 {
66 fib_entry_src_vft[source].fesv_init(&esrc);
67 }
68
69 vec_add1(fib_entry->fe_srcs, esrc);
70 vec_sort_with_function(fib_entry->fe_srcs,
71 fib_entry_src_cmp_for_sort);
72}
73
74static fib_entry_src_t *
75fib_entry_src_find (const fib_entry_t *fib_entry,
76 fib_source_t source,
77 u32 *index)
78
79{
80 fib_entry_src_t *esrc;
81 int ii;
82
83 ii = 0;
84 vec_foreach(esrc, fib_entry->fe_srcs)
85 {
86 if (esrc->fes_src == source)
87 {
88 if (NULL != index)
89 {
90 *index = ii;
91 }
92 return (esrc);
93 }
94 else
95 {
96 ii++;
97 }
98 }
99
100 return (NULL);
101}
102
103int
104fib_entry_is_sourced (fib_node_index_t fib_entry_index,
105 fib_source_t source)
106{
107 fib_entry_t *fib_entry;
108
109 fib_entry = fib_entry_get(fib_entry_index);
110
111 return (NULL != fib_entry_src_find(fib_entry, source, NULL));
112}
113
114static fib_entry_src_t *
115fib_entry_src_find_or_create (fib_entry_t *fib_entry,
116 fib_source_t source,
117 u32 *index)
118{
119 fib_entry_src_t *esrc;
120
121 esrc = fib_entry_src_find(fib_entry, source, NULL);
122
123 if (NULL == esrc)
124 {
125 fib_entry_src_action_init(fib_entry, source);
126 }
127
128 return (fib_entry_src_find(fib_entry, source, NULL));
129}
130
131void
132fib_entry_src_action_deinit (fib_entry_t *fib_entry,
133 fib_source_t source)
134
135{
136 fib_entry_src_t *esrc;
137 u32 index = ~0;
138
139 esrc = fib_entry_src_find(fib_entry, source, &index);
140
141 ASSERT(NULL != esrc);
142
143 if (NULL != fib_entry_src_vft[source].fesv_deinit)
144 {
145 fib_entry_src_vft[source].fesv_deinit(esrc);
146 }
147
148 vec_free(esrc->fes_path_exts);
149 vec_del1(fib_entry->fe_srcs, index);
150}
151
152fib_entry_src_cover_res_t
153fib_entry_src_action_cover_change (fib_entry_t *fib_entry,
154 fib_source_t source)
155{
156 if (NULL != fib_entry_src_vft[source].fesv_cover_change)
157 {
158 return (fib_entry_src_vft[source].fesv_cover_change(
159 fib_entry_src_find(fib_entry, source, NULL),
160 fib_entry));
161 }
162
163 fib_entry_src_cover_res_t res = {
164 .install = !0,
165 .bw_reason = FIB_NODE_BW_REASON_FLAG_NONE,
166 };
167 return (res);
168}
169
170fib_entry_src_cover_res_t
171fib_entry_src_action_cover_update (fib_entry_t *fib_entry,
172 fib_source_t source)
173{
174 if (NULL != fib_entry_src_vft[source].fesv_cover_update)
175 {
176 return (fib_entry_src_vft[source].fesv_cover_update(
177 fib_entry_src_find(fib_entry, source, NULL),
178 fib_entry));
179 }
180
181 fib_entry_src_cover_res_t res = {
182 .install = !0,
183 .bw_reason = FIB_NODE_BW_REASON_FLAG_NONE,
184 };
185 return (res);
186}
187
188typedef struct fib_entry_src_collect_forwarding_ctx_t_
189{
190 load_balance_path_t * next_hops;
191 const fib_entry_t *fib_entry;
192 const fib_entry_src_t *esrc;
193 fib_forward_chain_type_t fct;
194 int is_recursive;
195} fib_entry_src_collect_forwarding_ctx_t;
196
197/**
198 * @brief Determine whether this FIB entry should use a load-balance MAP
199 * to support PIC edge fast convergence
200 */
201load_balance_flags_t
202fib_entry_calc_lb_flags (fib_entry_src_collect_forwarding_ctx_t *ctx)
203{
204 /**
205 * We'll use a LB map is the path-list has recursive paths.
206 * recursive paths implies BGP, and hence scale.
207 */
208 if (ctx->is_recursive)
209 {
210 return (LOAD_BALANCE_FLAG_USES_MAP);
211 }
212 return (LOAD_BALANCE_FLAG_NONE);
213}
214
215static int
216fib_entry_src_valid_out_label (mpls_label_t label)
217{
218 return ((MPLS_LABEL_IS_REAL(label) ||
219 MPLS_IETF_IPV4_EXPLICIT_NULL_LABEL == label ||
220 MPLS_IETF_IPV6_EXPLICIT_NULL_LABEL == label ||
221 MPLS_IETF_IMPLICIT_NULL_LABEL == label));
222}
223
Neale Rannsad422ed2016-11-02 14:20:04 +0000224/**
225 * @brief Turn the chain type requested by the client into the one they
226 * really wanted
227 */
228fib_forward_chain_type_t
229fib_entry_chain_type_fixup (const fib_entry_t *entry,
230 fib_forward_chain_type_t fct)
231{
232 ASSERT(FIB_FORW_CHAIN_TYPE_MPLS_EOS == fct);
233
234 /*
235 * The EOS chain is a tricky since one cannot know the adjacency
236 * to link to without knowing what the packets payload protocol
237 * will be once the label is popped.
238 */
239 fib_forward_chain_type_t dfct;
240
241 dfct = fib_entry_get_default_chain_type(entry);
242
243 if (FIB_FORW_CHAIN_TYPE_MPLS_EOS == dfct)
244 {
245 /*
246 * If the entry being asked is a eos-MPLS label entry,
247 * then use the payload-protocol field, that we stashed there
248 * for just this purpose
249 */
250 return (fib_forw_chain_type_from_dpo_proto(
251 entry->fe_prefix.fp_payload_proto));
252 }
253 /*
254 * else give them what this entry would be by default. i.e. if it's a v6
255 * entry, then the label its local labelled should be carrying v6 traffic.
256 * If it's a non-EOS label entry, then there are more labels and we want
257 * a non-eos chain.
258 */
259 return (dfct);
260}
261
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100262static int
263fib_entry_src_collect_forwarding (fib_node_index_t pl_index,
264 fib_node_index_t path_index,
265 void *arg)
266{
267 fib_entry_src_collect_forwarding_ctx_t *ctx;
268 fib_path_ext_t *path_ext;
269
270 ctx = arg;
271
272 /*
273 * if the path is not resolved, don't include it.
274 */
275 if (!fib_path_is_resolved(path_index))
276 {
277 return (!0);
278 }
279
280 if (fib_path_is_recursive(path_index))
281 {
282 ctx->is_recursive = 1;
283 }
284
285 /*
286 * get the matching path-extension for the path being visited.
287 */
288 vec_foreach(path_ext, ctx->esrc->fes_path_exts)
289 {
290 if (path_ext->fpe_path_index == path_index)
291 break;
292 }
293
294 if (NULL != path_ext &&
295 path_ext->fpe_path_index == path_index &&
Neale Rannsad422ed2016-11-02 14:20:04 +0000296 fib_entry_src_valid_out_label(path_ext->fpe_label_stack[0]))
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100297 {
298 /*
299 * found a matching extension. stack it to obtain the forwarding
300 * info for this path.
301 */
Neale Rannsad422ed2016-11-02 14:20:04 +0000302 ctx->next_hops = fib_path_ext_stack(path_ext, ctx->fib_entry, ctx->fct, ctx->next_hops);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100303 }
304 else
305 {
306 load_balance_path_t *nh;
307
308 /*
309 * no extension => no out-going label for this path. that's OK
310 * in the case of an IP or EOS chain, but not for non-EOS
311 */
312 switch (ctx->fct)
313 {
314 case FIB_FORW_CHAIN_TYPE_UNICAST_IP4:
315 case FIB_FORW_CHAIN_TYPE_UNICAST_IP6:
316 /*
317 * EOS traffic with no label to stack, we need the IP Adj
318 */
319 vec_add2(ctx->next_hops, nh, 1);
320
321 nh->path_index = path_index;
322 nh->path_weight = fib_path_get_weight(path_index);
323 fib_path_contribute_forwarding(path_index, ctx->fct, &nh->path_dpo);
324
325 break;
326 case FIB_FORW_CHAIN_TYPE_MPLS_NON_EOS:
327 if (fib_path_is_exclusive(path_index) ||
328 fib_path_is_deag(path_index))
329 {
330 vec_add2(ctx->next_hops, nh, 1);
331
332 nh->path_index = path_index;
333 nh->path_weight = fib_path_get_weight(path_index);
334 fib_path_contribute_forwarding(path_index,
335 FIB_FORW_CHAIN_TYPE_MPLS_NON_EOS,
336 &nh->path_dpo);
337 }
338 break;
339 case FIB_FORW_CHAIN_TYPE_MPLS_EOS:
Neale Rannsad422ed2016-11-02 14:20:04 +0000340 {
341 /*
342 * no label. we need a chain based on the payload. fixup.
343 */
344 vec_add2(ctx->next_hops, nh, 1);
345
346 nh->path_index = path_index;
347 nh->path_weight = fib_path_get_weight(path_index);
348 fib_path_contribute_forwarding(path_index,
349 fib_entry_chain_type_fixup(ctx->fib_entry,
350 ctx->fct),
351 &nh->path_dpo);
352
353 break;
354 }
Neale Ranns5e575b12016-10-03 09:40:25 +0100355 case FIB_FORW_CHAIN_TYPE_ETHERNET:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100356 ASSERT(0);
357 break;
358 }
359 }
360
361 return (!0);
362}
363
364void
365fib_entry_src_mk_lb (fib_entry_t *fib_entry,
366 const fib_entry_src_t *esrc,
367 fib_forward_chain_type_t fct,
368 dpo_id_t *dpo_lb)
369{
370 dpo_proto_t lb_proto;
371
372 /*
373 * If the entry has path extensions then we construct a load-balance
374 * by stacking the extensions on the forwarding chains of the paths.
375 * Otherwise we use the load-balance of the path-list
376 */
377 fib_entry_src_collect_forwarding_ctx_t ctx = {
378 .esrc = esrc,
379 .fib_entry = fib_entry,
380 .next_hops = NULL,
381 .is_recursive = 0,
382 .fct = fct,
383 };
384
Neale Rannsc0790cf2017-01-05 01:01:47 -0800385 /*
386 * As an optimisation we allocate the vector of next-hops to be sized
387 * equal to the maximum nuber of paths we will need, which is also the
388 * most likely number we will need, since in most cases the paths are 'up'.
389 */
390 vec_validate(ctx.next_hops, fib_path_list_get_n_paths(esrc->fes_pl));
391 vec_reset_length(ctx.next_hops);
392
Neale Ranns8fe8cc22016-11-01 10:05:08 +0000393 lb_proto = fib_proto_to_dpo(fib_entry->fe_prefix.fp_proto);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100394
395 fib_path_list_walk(esrc->fes_pl,
396 fib_entry_src_collect_forwarding,
397 &ctx);
398
399 if (esrc->fes_entry_flags & FIB_ENTRY_FLAG_EXCLUSIVE)
400 {
401 /*
402 * the client provided the DPO that the entry should link to.
403 * all entries must link to a LB, so if it is an LB already
404 * then we can use it.
405 */
406 if ((1 == vec_len(ctx.next_hops)) &&
407 (DPO_LOAD_BALANCE == ctx.next_hops[0].path_dpo.dpoi_type))
408 {
409 dpo_copy(dpo_lb, &ctx.next_hops[0].path_dpo);
410 dpo_reset(&ctx.next_hops[0].path_dpo);
411 return;
412 }
413 }
414
415 if (!dpo_id_is_valid(dpo_lb))
416 {
417 /*
418 * first time create
419 */
420 flow_hash_config_t fhc;
421
422 fhc = fib_table_get_flow_hash_config(fib_entry->fe_fib_index,
423 dpo_proto_to_fib(lb_proto));
424 dpo_set(dpo_lb,
425 DPO_LOAD_BALANCE,
426 lb_proto,
427 load_balance_create(0, lb_proto, fhc));
428 }
429
430 load_balance_multipath_update(dpo_lb,
431 ctx.next_hops,
432 fib_entry_calc_lb_flags(&ctx));
Neale Ranns33a7dd52016-10-07 15:14:33 +0100433 vec_free(ctx.next_hops);
Neale Ranns3ee44042016-10-03 13:05:48 +0100434
435 /*
436 * if this entry is sourced by the uRPF-exempt source then we
437 * append the always present local0 interface (index 0) to the
438 * uRPF list so it is not empty. that way packets pass the loose check.
439 */
440 index_t ui = fib_path_list_get_urpf(esrc->fes_pl);
441
442 if (fib_entry_is_sourced(fib_entry_get_index(fib_entry),
443 FIB_SOURCE_URPF_EXEMPT) &&
444 (0 == fib_urpf_check_size(ui)))
445 {
446 /*
447 * The uRPF list we get from the path-list is shared by all
448 * other users of the list, but the uRPF exemption applies
449 * only to this prefix. So we need our own list.
450 */
451 ui = fib_urpf_list_alloc_and_lock();
452 fib_urpf_list_append(ui, 0);
453 fib_urpf_list_bake(ui);
454 load_balance_set_urpf(dpo_lb->dpoi_index, ui);
455 fib_urpf_list_unlock(ui);
456 }
457 else
458 {
459 load_balance_set_urpf(dpo_lb->dpoi_index, ui);
460 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100461}
462
463void
464fib_entry_src_action_install (fib_entry_t *fib_entry,
465 fib_source_t source)
466{
467 /*
468 * Install the forwarding chain for the given source into the forwarding
469 * tables
470 */
471 fib_forward_chain_type_t fct;
472 fib_entry_src_t *esrc;
Neale Ranns33a7dd52016-10-07 15:14:33 +0100473 int insert;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100474
475 fct = fib_entry_get_default_chain_type(fib_entry);
476 esrc = fib_entry_src_find(fib_entry, source, NULL);
477
Neale Ranns33a7dd52016-10-07 15:14:33 +0100478 /*
479 * Every entry has its own load-balance object. All changes to the entry's
480 * forwarding result in an inplace modify of the load-balance. This means
481 * the load-balance object only needs to be added to the forwarding
482 * DB once, when it is created.
483 */
Neale Rannsad422ed2016-11-02 14:20:04 +0000484 insert = !dpo_id_is_valid(&fib_entry->fe_lb);
Neale Ranns33a7dd52016-10-07 15:14:33 +0100485
Neale Rannsad422ed2016-11-02 14:20:04 +0000486 fib_entry_src_mk_lb(fib_entry, esrc, fct, &fib_entry->fe_lb);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100487
Neale Rannsad422ed2016-11-02 14:20:04 +0000488 ASSERT(dpo_id_is_valid(&fib_entry->fe_lb));
489 FIB_ENTRY_DBG(fib_entry, "install: %d", fib_entry->fe_lb);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100490
491 /*
492 * insert the adj into the data-plane forwarding trie
493 */
Neale Ranns33a7dd52016-10-07 15:14:33 +0100494 if (insert)
495 {
496 fib_table_fwding_dpo_update(fib_entry->fe_fib_index,
497 &fib_entry->fe_prefix,
Neale Rannsad422ed2016-11-02 14:20:04 +0000498 &fib_entry->fe_lb);
Neale Ranns33a7dd52016-10-07 15:14:33 +0100499 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100500
Neale Rannsad422ed2016-11-02 14:20:04 +0000501 /*
502 * if any of the other chain types are already created they will need
503 * updating too
504 */
505 fib_entry_delegate_type_t fdt;
506 fib_entry_delegate_t *fed;
507
508 FOR_EACH_DELEGATE_CHAIN(fib_entry, fdt, fed,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100509 {
Neale Rannsad422ed2016-11-02 14:20:04 +0000510 fib_entry_src_mk_lb(fib_entry, esrc,
511 fib_entry_delegate_type_to_chain_type(fdt),
512 &fed->fd_dpo);
513 });
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100514}
515
516void
517fib_entry_src_action_uninstall (fib_entry_t *fib_entry)
518{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100519 /*
Neale Ranns3ee44042016-10-03 13:05:48 +0100520 * uninstall the forwarding chain from the forwarding tables
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100521 */
522 FIB_ENTRY_DBG(fib_entry, "uninstall: %d",
523 fib_entry->fe_adj_index);
524
Neale Rannsad422ed2016-11-02 14:20:04 +0000525 if (dpo_id_is_valid(&fib_entry->fe_lb))
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100526 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100527 fib_table_fwding_dpo_remove(
528 fib_entry->fe_fib_index,
529 &fib_entry->fe_prefix,
Neale Rannsad422ed2016-11-02 14:20:04 +0000530 &fib_entry->fe_lb);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100531
Neale Rannsad422ed2016-11-02 14:20:04 +0000532 dpo_reset(&fib_entry->fe_lb);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100533 }
534}
535
536static void
537fib_entry_recursive_loop_detect_i (fib_node_index_t path_list_index)
538{
539 fib_node_index_t *entries = NULL;
540
541 fib_path_list_recursive_loop_detect(path_list_index, &entries);
542
543 vec_free(entries);
544}
545
546void
547fib_entry_src_action_activate (fib_entry_t *fib_entry,
548 fib_source_t source)
549
550{
551 int houston_we_are_go_for_install;
552 fib_entry_src_t *esrc;
553
554 esrc = fib_entry_src_find(fib_entry, source, NULL);
555
556 ASSERT(!(esrc->fes_flags & FIB_ENTRY_SRC_FLAG_ACTIVE));
557 ASSERT(esrc->fes_flags & FIB_ENTRY_SRC_FLAG_ADDED);
558
559 esrc->fes_flags |= FIB_ENTRY_SRC_FLAG_ACTIVE;
560
561 if (NULL != fib_entry_src_vft[source].fesv_activate)
562 {
563 houston_we_are_go_for_install =
564 fib_entry_src_vft[source].fesv_activate(esrc, fib_entry);
565 }
566 else
567 {
568 /*
569 * the source is not providing an activate function, we'll assume
570 * therefore it has no objection to installing the entry
571 */
572 houston_we_are_go_for_install = !0;
573 }
574
575 /*
576 * link to the path-list provided by the source, and go check
577 * if that forms any loops in the graph.
578 */
579 fib_entry->fe_parent = esrc->fes_pl;
580 fib_entry->fe_sibling =
581 fib_path_list_child_add(fib_entry->fe_parent,
582 FIB_NODE_TYPE_ENTRY,
583 fib_entry_get_index(fib_entry));
584
585 fib_entry_recursive_loop_detect_i(fib_entry->fe_parent);
586
587 FIB_ENTRY_DBG(fib_entry, "activate: %d",
588 fib_entry->fe_parent);
589
590 if (0 != houston_we_are_go_for_install)
591 {
592 fib_entry_src_action_install(fib_entry, source);
593 }
594 else
595 {
596 fib_entry_src_action_uninstall(fib_entry);
597 }
598}
599
600void
601fib_entry_src_action_deactivate (fib_entry_t *fib_entry,
602 fib_source_t source)
603
604{
605 fib_node_index_t path_list_index;
606 fib_entry_src_t *esrc;
607
608 esrc = fib_entry_src_find(fib_entry, source, NULL);
609
610 ASSERT(esrc->fes_flags & FIB_ENTRY_SRC_FLAG_ACTIVE);
611
612 if (NULL != fib_entry_src_vft[source].fesv_deactivate)
613 {
614 fib_entry_src_vft[source].fesv_deactivate(esrc, fib_entry);
615 }
616
617 esrc->fes_flags &= ~FIB_ENTRY_SRC_FLAG_ACTIVE;
618
619 FIB_ENTRY_DBG(fib_entry, "deactivate: %d", fib_entry->fe_parent);
620
621 /*
622 * un-link from an old path-list. Check for any loops this will clear
623 */
624 path_list_index = fib_entry->fe_parent;
625 fib_entry->fe_parent = FIB_NODE_INDEX_INVALID;
626
627 fib_entry_recursive_loop_detect_i(path_list_index);
628
629 /*
630 * this will unlock the path-list, so it may be invalid thereafter.
631 */
632 fib_path_list_child_remove(path_list_index, fib_entry->fe_sibling);
633 fib_entry->fe_sibling = FIB_NODE_INDEX_INVALID;
634}
635
636static void
637fib_entry_src_action_fwd_update (const fib_entry_t *fib_entry,
638 fib_source_t source)
639{
640 fib_entry_src_t *esrc;
641
642 vec_foreach(esrc, fib_entry->fe_srcs)
643 {
644 if (NULL != fib_entry_src_vft[esrc->fes_src].fesv_fwd_update)
645 {
646 fib_entry_src_vft[esrc->fes_src].fesv_fwd_update(esrc,
647 fib_entry,
648 source);
649 }
650 }
651}
652
653void
654fib_entry_src_action_reactivate (fib_entry_t *fib_entry,
655 fib_source_t source)
656{
657 fib_node_index_t path_list_index;
658 fib_entry_src_t *esrc;
659
660 esrc = fib_entry_src_find(fib_entry, source, NULL);
661
662 ASSERT(esrc->fes_flags & FIB_ENTRY_SRC_FLAG_ACTIVE);
663
664 FIB_ENTRY_DBG(fib_entry, "reactivate: %d to %d",
665 fib_entry->fe_parent,
666 esrc->fes_pl);
667
668 if (fib_entry->fe_parent != esrc->fes_pl)
669 {
670 /*
671 * un-link from an old path-list. Check for any loops this will clear
672 */
673 path_list_index = fib_entry->fe_parent;
674 fib_entry->fe_parent = FIB_NODE_INDEX_INVALID;
675
676 /*
677 * temporary lock so it doesn't get deleted when this entry is no
678 * longer a child.
679 */
680 fib_path_list_lock(path_list_index);
681
682 /*
683 * this entry is no longer a child. after unlinking check if any loops
684 * were broken
685 */
686 fib_path_list_child_remove(path_list_index,
687 fib_entry->fe_sibling);
688
689 fib_entry_recursive_loop_detect_i(path_list_index);
690
691 /*
692 * link to the path-list provided by the source, and go check
693 * if that forms any loops in the graph.
694 */
695 fib_entry->fe_parent = esrc->fes_pl;
696 fib_entry->fe_sibling =
697 fib_path_list_child_add(fib_entry->fe_parent,
698 FIB_NODE_TYPE_ENTRY,
699 fib_entry_get_index(fib_entry));
700
701 fib_entry_recursive_loop_detect_i(fib_entry->fe_parent);
702 fib_path_list_unlock(path_list_index);
703 }
704 fib_entry_src_action_install(fib_entry, source);
705 fib_entry_src_action_fwd_update(fib_entry, source);
706}
707
708void
709fib_entry_src_action_installed (const fib_entry_t *fib_entry,
710 fib_source_t source)
711{
712 fib_entry_src_t *esrc;
713
714 esrc = fib_entry_src_find(fib_entry, source, NULL);
715
716 if (NULL != fib_entry_src_vft[source].fesv_installed)
717 {
718 fib_entry_src_vft[source].fesv_installed(esrc,
719 fib_entry);
720 }
721
722 fib_entry_src_action_fwd_update(fib_entry, source);
723}
724
725/*
726 * fib_entry_src_action_add
727 *
728 * Adding a source can result in a new fib_entry being created, which
729 * can inturn mean the pool is realloc'd and thus the entry passed as
730 * an argument it also realloc'd
731 * @return the original entry
732 */
733fib_entry_t *
734fib_entry_src_action_add (fib_entry_t *fib_entry,
735 fib_source_t source,
736 fib_entry_flag_t flags,
737 const dpo_id_t *dpo)
738{
739 fib_node_index_t fib_entry_index;
740 fib_entry_src_t *esrc;
741
742 esrc = fib_entry_src_find_or_create(fib_entry, source, NULL);
743
744 esrc->fes_ref_count++;
745
746 if (1 != esrc->fes_ref_count)
747 {
748 /*
749 * we only want to add the source on the 0->1 transition
750 */
751 return (fib_entry);
752 }
753
754 esrc->fes_entry_flags = flags;
755
756 /*
757 * save variable so we can recover from a fib_entry realloc.
758 */
759 fib_entry_index = fib_entry_get_index(fib_entry);
760
761 if (NULL != fib_entry_src_vft[source].fesv_add)
762 {
763 fib_entry_src_vft[source].fesv_add(esrc,
764 fib_entry,
765 flags,
766 fib_entry_get_proto(fib_entry),
767 dpo);
768 }
769
770 fib_entry = fib_entry_get(fib_entry_index);
771
772 esrc->fes_flags |= FIB_ENTRY_SRC_FLAG_ADDED;
773
774 fib_path_list_lock(esrc->fes_pl);
775
776 /*
777 * the source owns a lock on the entry
778 */
779 fib_entry_lock(fib_entry_get_index(fib_entry));
780
781 return (fib_entry);
782}
783
Neale Ranns948e00f2016-10-20 13:39:34 +0100784/*
785 * fib_entry_src_action_update
786 *
787 * Adding a source can result in a new fib_entry being created, which
788 * can inturn mean the pool is realloc'd and thus the entry passed as
789 * an argument it also realloc'd
790 * @return the original entry
791 */
792fib_entry_t *
793fib_entry_src_action_update (fib_entry_t *fib_entry,
794 fib_source_t source,
795 fib_entry_flag_t flags,
796 const dpo_id_t *dpo)
797{
798 fib_node_index_t fib_entry_index, old_path_list_index;
799 fib_entry_src_t *esrc;
800
801 esrc = fib_entry_src_find_or_create(fib_entry, source, NULL);
802
803 if (NULL == esrc)
804 return (fib_entry_src_action_add(fib_entry, source, flags, dpo));
805
806 old_path_list_index = esrc->fes_pl;
807 esrc->fes_entry_flags = flags;
808
809 /*
810 * save variable so we can recover from a fib_entry realloc.
811 */
812 fib_entry_index = fib_entry_get_index(fib_entry);
813
814 if (NULL != fib_entry_src_vft[source].fesv_add)
815 {
816 fib_entry_src_vft[source].fesv_add(esrc,
817 fib_entry,
818 flags,
819 fib_entry_get_proto(fib_entry),
820 dpo);
821 }
822
823 fib_entry = fib_entry_get(fib_entry_index);
824
825 esrc->fes_flags |= FIB_ENTRY_SRC_FLAG_ADDED;
826
827 fib_path_list_lock(esrc->fes_pl);
828 fib_path_list_unlock(old_path_list_index);
829
830 return (fib_entry);
831}
832
833
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100834fib_entry_src_flag_t
835fib_entry_src_action_remove (fib_entry_t *fib_entry,
836 fib_source_t source)
837
838{
839 fib_node_index_t old_path_list;
840 fib_entry_src_flag_t sflags;
841 fib_entry_src_t *esrc;
842
843 esrc = fib_entry_src_find(fib_entry, source, NULL);
844
845 if (NULL == esrc)
846 return (FIB_ENTRY_SRC_FLAG_ACTIVE);
847
848 esrc->fes_ref_count--;
849 sflags = esrc->fes_flags;
850
851 if (0 != esrc->fes_ref_count)
852 {
853 /*
854 * only remove the source on the 1->0 transisition
855 */
856 return (sflags);
857 }
858
859 if (esrc->fes_flags & FIB_ENTRY_SRC_FLAG_ACTIVE)
860 {
861 fib_entry_src_action_deactivate(fib_entry, source);
862 }
863
864 old_path_list = esrc->fes_pl;
865
866 if (NULL != fib_entry_src_vft[source].fesv_remove)
867 {
868 fib_entry_src_vft[source].fesv_remove(esrc);
869 }
870
871 fib_path_list_unlock(old_path_list);
872 fib_entry_unlock(fib_entry_get_index(fib_entry));
873
874 sflags &= ~FIB_ENTRY_SRC_FLAG_ADDED;
875 fib_entry_src_action_deinit(fib_entry, source);
876
877 return (sflags);
878}
879
880static inline int
881fib_route_recurses_via_self (const fib_prefix_t *prefix,
882 const fib_route_path_t *rpath)
883{
884 /*
885 * not all zeros next hop &&
886 * is recursive path &&
887 * nexthop is same as the route's address
888 */
889 return ((!ip46_address_is_zero(&rpath->frp_addr)) &&
890 (~0 == rpath->frp_sw_if_index) &&
891 (0 == ip46_address_cmp(&rpath->frp_addr, &prefix->fp_addr)));
892
893}
894
895/*
896 * fib_route_attached_cross_table
897 *
898 * Return true the the route is attached via an interface that
899 * is not in the same table as the route
900 */
901static inline int
902fib_route_attached_cross_table (const fib_entry_t *fib_entry,
903 const fib_route_path_t *rpath)
904{
905 /*
906 * - All zeros next-hop
907 * - a valid interface
908 * - entry's fib index not equeal to interface's index
909 */
910 if (ip46_address_is_zero(&rpath->frp_addr) &&
911 (~0 != rpath->frp_sw_if_index) &&
912 (fib_entry->fe_fib_index !=
913 fib_table_get_index_for_sw_if_index(fib_entry_get_proto(fib_entry),
914 rpath->frp_sw_if_index)))
915 {
916 return (!0);
917 }
918 return (0);
919}
920
921/*
922 * fib_route_attached_cross_table
923 *
924 * Return true the the route is attached via an interface that
925 * is not in the same table as the route
926 */
927static inline int
928fib_path_is_attached (const fib_route_path_t *rpath)
929{
930 /*
931 * - All zeros next-hop
932 * - a valid interface
933 */
934 if (ip46_address_is_zero(&rpath->frp_addr) &&
935 (~0 != rpath->frp_sw_if_index))
936 {
937 return (!0);
938 }
939 return (0);
940}
941
942fib_path_list_flags_t
943fib_entry_src_flags_2_path_list_flags (fib_entry_flag_t eflags)
944{
945 fib_path_list_flags_t plf = FIB_PATH_LIST_FLAG_NONE;
946
947 if (eflags & FIB_ENTRY_FLAG_DROP)
948 {
949 plf |= FIB_PATH_LIST_FLAG_DROP;
950 }
951 if (eflags & FIB_ENTRY_FLAG_LOCAL)
952 {
953 plf |= FIB_PATH_LIST_FLAG_LOCAL;
954 }
955 if (eflags & FIB_ENTRY_FLAG_EXCLUSIVE)
956 {
957 plf |= FIB_PATH_LIST_FLAG_EXCLUSIVE;
958 }
959
960 return (plf);
961}
962
963static void
964fib_entry_flags_update (const fib_entry_t *fib_entry,
965 const fib_route_path_t *rpath,
966 fib_path_list_flags_t *pl_flags,
967 fib_entry_src_t *esrc)
968{
969 /*
970 * don't allow the addition of a recursive looped path for prefix
971 * via itself.
972 */
973 if (fib_route_recurses_via_self(&fib_entry->fe_prefix, rpath))
974 {
975 /*
976 * force the install of a drop path-list.
977 * we want the entry to have some path-list, mainly so
978 * the dodgy path can be rmeoved when the source stops playing
979 * silly buggers.
980 */
981 *pl_flags |= FIB_PATH_LIST_FLAG_DROP;
982 }
983 else
984 {
985 *pl_flags &= ~FIB_PATH_LIST_FLAG_DROP;
986 }
987
988 if ((esrc->fes_src == FIB_SOURCE_API) ||
989 (esrc->fes_src == FIB_SOURCE_CLI))
990 {
991 if (fib_path_is_attached(rpath))
992 {
993 esrc->fes_entry_flags |= FIB_ENTRY_FLAG_ATTACHED;
994 }
995 else
996 {
997 esrc->fes_entry_flags &= ~FIB_ENTRY_FLAG_ATTACHED;
998 }
999 }
1000 if (fib_route_attached_cross_table(fib_entry, rpath))
1001 {
1002 esrc->fes_entry_flags |= FIB_ENTRY_FLAG_IMPORT;
1003 }
1004 else
1005 {
1006 esrc->fes_entry_flags &= ~FIB_ENTRY_FLAG_IMPORT;
1007 }
1008}
1009
1010/*
1011 * fib_entry_src_path_ext_add
1012 *
1013 * append a path extension to the entry's list
1014 */
1015static void
1016fib_entry_src_path_ext_append (fib_entry_src_t *esrc,
1017 const fib_route_path_t *rpath)
1018{
Neale Rannsad422ed2016-11-02 14:20:04 +00001019 if (NULL != rpath->frp_label_stack)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001020 {
1021 fib_path_ext_t *path_ext;
1022
1023 vec_add2(esrc->fes_path_exts, path_ext, 1);
1024
1025 fib_path_ext_init(path_ext, esrc->fes_pl, rpath);
1026 }
1027}
1028
1029/*
1030 * fib_entry_src_path_ext_insert
1031 *
1032 * insert, sorted, a path extension to the entry's list.
1033 * It's not strictly necessary in sort the path extensions, since each
1034 * extension has the path index to which it resolves. However, by being
1035 * sorted the load-balance produced has a deterministic order, not an order
1036 * based on the sequence of extension additions. this is a considerable benefit.
1037 */
1038static void
1039fib_entry_src_path_ext_insert (fib_entry_src_t *esrc,
1040 const fib_route_path_t *rpath)
1041{
1042 if (0 == vec_len(esrc->fes_path_exts))
1043 return (fib_entry_src_path_ext_append(esrc, rpath));
1044
Neale Rannsad422ed2016-11-02 14:20:04 +00001045 if (NULL != rpath->frp_label_stack)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001046 {
1047 fib_path_ext_t path_ext;
1048 int i = 0;
1049
1050 fib_path_ext_init(&path_ext, esrc->fes_pl, rpath);
1051
1052 while (i < vec_len(esrc->fes_path_exts) &&
1053 (fib_path_ext_cmp(&esrc->fes_path_exts[i], rpath) < 0))
1054 {
1055 i++;
1056 }
1057
1058 vec_insert_elts(esrc->fes_path_exts, &path_ext, 1, i);
1059 }
1060}
1061
1062/*
1063 * fib_entry_src_action_add
1064 *
1065 * Adding a source can result in a new fib_entry being created, which
1066 * can inturn mean the pool is realloc'd and thus the entry passed as
1067 * an argument it also realloc'd
1068 * @return the entry
1069 */
1070fib_entry_t*
1071fib_entry_src_action_path_add (fib_entry_t *fib_entry,
1072 fib_source_t source,
1073 fib_entry_flag_t flags,
1074 const fib_route_path_t *rpath)
1075{
1076 fib_node_index_t old_path_list, fib_entry_index;
1077 fib_path_list_flags_t pl_flags;
1078 fib_path_ext_t *path_ext;
1079 fib_entry_src_t *esrc;
1080
1081 /*
1082 * save variable so we can recover from a fib_entry realloc.
1083 */
1084 fib_entry_index = fib_entry_get_index(fib_entry);
1085
1086 esrc = fib_entry_src_find(fib_entry, source, NULL);
1087 if (NULL == esrc)
1088 {
1089 fib_entry =
1090 fib_entry_src_action_add(fib_entry,
1091 source,
1092 flags,
1093 drop_dpo_get(
1094 fib_proto_to_dpo(
1095 fib_entry_get_proto(fib_entry))));
1096 esrc = fib_entry_src_find(fib_entry, source, NULL);
1097 }
1098
1099 /*
1100 * we are no doubt modifying a path-list. If the path-list
1101 * is shared, and hence not modifiable, then the index returned
1102 * will be for a different path-list. This FIB entry to needs
1103 * to maintain its lock appropriately.
1104 */
1105 old_path_list = esrc->fes_pl;
1106
1107 ASSERT(NULL != fib_entry_src_vft[source].fesv_path_add);
1108
1109 pl_flags = fib_entry_src_flags_2_path_list_flags(fib_entry_get_flags_i(fib_entry));
1110 fib_entry_flags_update(fib_entry, rpath, &pl_flags, esrc);
1111
1112 fib_entry_src_vft[source].fesv_path_add(esrc, fib_entry, pl_flags, rpath);
1113 fib_entry = fib_entry_get(fib_entry_index);
1114
1115 /*
1116 * re-resolve all the path-extensions with the new path-list
1117 */
1118 vec_foreach(path_ext, esrc->fes_path_exts)
1119 {
1120 fib_path_ext_resolve(path_ext, esrc->fes_pl);
1121 }
1122 /*
1123 * if the path has a label we need to add a path extension
1124 */
1125 fib_entry_src_path_ext_insert(esrc, rpath);
1126
1127 fib_path_list_lock(esrc->fes_pl);
1128 fib_path_list_unlock(old_path_list);
1129
1130 return (fib_entry);
1131}
1132
1133/*
1134 * fib_entry_src_action_swap
1135 *
1136 * The source is providing new paths to replace the old ones.
1137 * Adding a source can result in a new fib_entry being created, which
1138 * can inturn mean the pool is realloc'd and thus the entry passed as
1139 * an argument it also realloc'd
1140 * @return the entry
1141 */
1142fib_entry_t*
1143fib_entry_src_action_path_swap (fib_entry_t *fib_entry,
1144 fib_source_t source,
1145 fib_entry_flag_t flags,
1146 const fib_route_path_t *rpaths)
1147{
1148 fib_node_index_t old_path_list, fib_entry_index;
1149 fib_path_list_flags_t pl_flags;
1150 const fib_route_path_t *rpath;
Neale Rannsad422ed2016-11-02 14:20:04 +00001151 fib_path_ext_t *path_ext;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001152 fib_entry_src_t *esrc;
1153
1154 esrc = fib_entry_src_find(fib_entry, source, NULL);
1155
1156 /*
1157 * save variable so we can recover from a fib_entry realloc.
1158 */
1159 fib_entry_index = fib_entry_get_index(fib_entry);
1160
1161 if (NULL == esrc)
1162 {
1163 fib_entry = fib_entry_src_action_add(fib_entry,
1164 source,
1165 flags,
1166 drop_dpo_get(
1167 fib_proto_to_dpo(
1168 fib_entry_get_proto(fib_entry))));
1169 esrc = fib_entry_src_find(fib_entry, source, NULL);
1170 }
1171
1172 /*
1173 * swapping paths may create a new path-list (or may use an existing shared)
1174 * but we are certainly getting a different one. This FIB entry to needs
1175 * to maintain its lock appropriately.
1176 */
1177 old_path_list = esrc->fes_pl;
1178
1179 ASSERT(NULL != fib_entry_src_vft[source].fesv_path_swap);
1180
Neale Rannsdf089a82016-10-02 16:39:06 +01001181 pl_flags = fib_entry_src_flags_2_path_list_flags(flags);
1182
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001183 vec_foreach(rpath, rpaths)
1184 {
1185 fib_entry_flags_update(fib_entry, rpath, &pl_flags, esrc);
1186 }
1187
1188 fib_entry_src_vft[source].fesv_path_swap(esrc,
1189 fib_entry,
1190 pl_flags,
1191 rpaths);
1192
Neale Rannsad422ed2016-11-02 14:20:04 +00001193 vec_foreach(path_ext, esrc->fes_path_exts)
1194 {
1195 vec_free(path_ext->fpe_label_stack);
1196 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001197 vec_free(esrc->fes_path_exts);
Neale Rannsad422ed2016-11-02 14:20:04 +00001198
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001199 vec_foreach(rpath, rpaths)
1200 {
1201 fib_entry_src_path_ext_append(esrc, rpath);
1202 }
1203
1204 fib_entry = fib_entry_get(fib_entry_index);
1205
1206 fib_path_list_lock(esrc->fes_pl);
1207 fib_path_list_unlock(old_path_list);
1208
1209 return (fib_entry);
1210}
1211
1212fib_entry_src_flag_t
1213fib_entry_src_action_path_remove (fib_entry_t *fib_entry,
1214 fib_source_t source,
1215 const fib_route_path_t *rpath)
1216{
1217 fib_path_list_flags_t pl_flags;
1218 fib_node_index_t old_path_list;
1219 fib_path_ext_t *path_ext;
1220 fib_entry_src_t *esrc;
1221
1222 esrc = fib_entry_src_find(fib_entry, source, NULL);
1223
1224 ASSERT(NULL != esrc);
1225 ASSERT(esrc->fes_flags & FIB_ENTRY_SRC_FLAG_ADDED);
1226
1227 /*
1228 * we no doubt modifying a path-list. If the path-list
1229 * is shared, and hence not modifiable, then the index returned
1230 * will be for a different path-list. This FIB entry to needs
1231 * to maintain its lock appropriately.
1232 */
1233 old_path_list = esrc->fes_pl;
1234
1235 ASSERT(NULL != fib_entry_src_vft[source].fesv_path_remove);
1236
1237 pl_flags = fib_entry_src_flags_2_path_list_flags(fib_entry_get_flags_i(fib_entry));
1238 fib_entry_flags_update(fib_entry, rpath, &pl_flags, esrc);
1239
1240 fib_entry_src_vft[source].fesv_path_remove(esrc, pl_flags, rpath);
1241 /*
1242 * find the matching path extension and remove it
1243 */
1244 vec_foreach(path_ext, esrc->fes_path_exts)
1245 {
1246 if (!fib_path_ext_cmp(path_ext, rpath))
1247 {
1248 /*
1249 * delete the element moving the remaining elements down 1 position.
1250 * this preserves the sorted order.
1251 */
Neale Rannsad422ed2016-11-02 14:20:04 +00001252 vec_free(path_ext->fpe_label_stack);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001253 vec_delete(esrc->fes_path_exts, 1, (path_ext - esrc->fes_path_exts));
1254 break;
1255 }
1256 }
1257 /*
1258 * re-resolve all the path-extensions with the new path-list
1259 */
1260 vec_foreach(path_ext, esrc->fes_path_exts)
1261 {
1262 fib_path_ext_resolve(path_ext, esrc->fes_pl);
1263 }
1264
1265 /*
1266 * lock the new path-list, unlock the old if it had one
1267 */
1268 fib_path_list_unlock(old_path_list);
1269
1270 if (FIB_NODE_INDEX_INVALID != esrc->fes_pl) {
1271 fib_path_list_lock(esrc->fes_pl);
1272 return (FIB_ENTRY_SRC_FLAG_ADDED);
1273 }
1274 else
1275 {
1276 /*
1277 * no more paths left from this source
1278 */
1279 fib_entry_src_action_remove(fib_entry, source);
1280 return (FIB_ENTRY_SRC_FLAG_NONE);
1281 }
1282}
1283
1284u8*
1285fib_entry_src_format (fib_entry_t *fib_entry,
1286 fib_source_t source,
1287 u8* s)
1288{
1289 fib_entry_src_t *esrc;
1290
1291 esrc = fib_entry_src_find(fib_entry, source, NULL);
1292
1293 if (NULL != fib_entry_src_vft[source].fesv_format)
1294 {
1295 return (fib_entry_src_vft[source].fesv_format(esrc, s));
1296 }
1297 return (s);
1298}
1299
1300adj_index_t
1301fib_entry_get_adj_for_source (fib_node_index_t fib_entry_index,
1302 fib_source_t source)
1303{
1304 fib_entry_t *fib_entry;
1305 fib_entry_src_t *esrc;
1306
1307 if (FIB_NODE_INDEX_INVALID == fib_entry_index)
1308 return (ADJ_INDEX_INVALID);
1309
1310 fib_entry = fib_entry_get(fib_entry_index);
1311 esrc = fib_entry_src_find(fib_entry, source, NULL);
1312
1313 if (NULL != esrc)
1314 {
1315 if (FIB_NODE_INDEX_INVALID != esrc->fes_pl)
1316 {
1317 return (fib_path_list_get_adj(
1318 esrc->fes_pl,
1319 fib_entry_get_default_chain_type(fib_entry)));
1320 }
1321 }
1322 return (ADJ_INDEX_INVALID);
1323}
1324
1325const int
1326fib_entry_get_dpo_for_source (fib_node_index_t fib_entry_index,
1327 fib_source_t source,
1328 dpo_id_t *dpo)
1329{
1330 fib_entry_t *fib_entry;
1331 fib_entry_src_t *esrc;
1332
1333 if (FIB_NODE_INDEX_INVALID == fib_entry_index)
1334 return (0);
1335
1336 fib_entry = fib_entry_get(fib_entry_index);
1337 esrc = fib_entry_src_find(fib_entry, source, NULL);
1338
1339 if (NULL != esrc)
1340 {
1341 if (FIB_NODE_INDEX_INVALID != esrc->fes_pl)
1342 {
1343 fib_path_list_contribute_forwarding(
1344 esrc->fes_pl,
1345 fib_entry_get_default_chain_type(fib_entry),
1346 dpo);
1347
1348 return (dpo_id_is_valid(dpo));
1349 }
1350 }
1351 return (0);
1352}
1353
Neale Rannsdf089a82016-10-02 16:39:06 +01001354u32
1355fib_entry_get_resolving_interface_for_source (fib_node_index_t entry_index,
1356 fib_source_t source)
1357{
1358 fib_entry_t *fib_entry;
1359 fib_entry_src_t *esrc;
1360
1361 fib_entry = fib_entry_get(entry_index);
1362
1363 esrc = fib_entry_src_find(fib_entry, source, NULL);
1364
1365 if (NULL != esrc)
1366 {
1367 if (FIB_NODE_INDEX_INVALID != esrc->fes_pl)
1368 {
1369 return (fib_path_list_get_resolving_interface(esrc->fes_pl));
1370 }
1371 }
1372 return (~0);
1373}
1374
1375fib_entry_flag_t
1376fib_entry_get_flags_for_source (fib_node_index_t entry_index,
1377 fib_source_t source)
1378{
1379 fib_entry_t *fib_entry;
1380 fib_entry_src_t *esrc;
1381
1382 fib_entry = fib_entry_get(entry_index);
1383
1384 esrc = fib_entry_src_find(fib_entry, source, NULL);
1385
1386 if (NULL != esrc)
1387 {
1388 return (esrc->fes_entry_flags);
1389 }
1390
1391 return (FIB_ENTRY_FLAG_NONE);
1392}
1393
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001394fib_entry_flag_t
1395fib_entry_get_flags_i (const fib_entry_t *fib_entry)
1396{
1397 fib_entry_flag_t flags;
1398
1399 /*
1400 * the vector of sources is deliberately arranged in priority order
1401 */
1402 if (0 == vec_len(fib_entry->fe_srcs))
1403 {
1404 flags = FIB_ENTRY_FLAG_NONE;
1405 }
1406 else
1407 {
1408 fib_entry_src_t *esrc;
1409
1410 esrc = vec_elt_at_index(fib_entry->fe_srcs, 0);
1411 flags = esrc->fes_entry_flags;
1412 }
1413
1414 return (flags);
1415}
1416
1417void
1418fib_entry_set_source_data (fib_node_index_t fib_entry_index,
1419 fib_source_t source,
1420 const void *data)
1421{
1422 fib_entry_t *fib_entry;
1423 fib_entry_src_t *esrc;
1424
1425 fib_entry = fib_entry_get(fib_entry_index);
1426 esrc = fib_entry_src_find(fib_entry, source, NULL);
1427
1428 if (NULL != esrc &&
1429 NULL != fib_entry_src_vft[source].fesv_set_data)
1430 {
1431 fib_entry_src_vft[source].fesv_set_data(esrc, fib_entry, data);
1432 }
1433}
1434
1435const void*
1436fib_entry_get_source_data (fib_node_index_t fib_entry_index,
1437 fib_source_t source)
1438{
1439 fib_entry_t *fib_entry;
1440 fib_entry_src_t *esrc;
1441
1442 fib_entry = fib_entry_get(fib_entry_index);
1443 esrc = fib_entry_src_find(fib_entry, source, NULL);
1444
1445 if (NULL != esrc &&
1446 NULL != fib_entry_src_vft[source].fesv_get_data)
1447 {
1448 return (fib_entry_src_vft[source].fesv_get_data(esrc, fib_entry));
1449 }
1450 return (NULL);
1451}
1452
1453void
1454fib_entry_src_module_init (void)
1455{
1456 fib_entry_src_rr_register();
1457 fib_entry_src_interface_register();
1458 fib_entry_src_default_route_register();
1459 fib_entry_src_special_register();
1460 fib_entry_src_api_register();
1461 fib_entry_src_adj_register();
1462 fib_entry_src_mpls_register();
1463 fib_entry_src_lisp_register();
1464}