FIB Interpose Source 28/10728/10
authorNeale Ranns <nranns@cisco.com>
Wed, 21 Feb 2018 12:57:17 +0000 (04:57 -0800)
committerNeale Ranns <nranns@cisco.com>
Tue, 20 Mar 2018 23:59:06 +0000 (23:59 +0000)
commit2303cb181b51f63c909cd506125c1f832432865a
treeea2389593abc50790e06b6ac2e80f2a38c536942
parentf55957e71c58e38770b12af0720e9d19a8f6a8d6
FIB Interpose Source

The interpose source allows the source/provider to insert/interpose
a DPO in the forwarding chain of the FIB entry ahead of the forwarding
provided by the next best source. For example if the API source (i.e
the 'control plane') has provided an adjacency for forwarding, then
an interpose source (e.g. a monitoring service) couold interpose a
replicatte DPO to copy the traffic to another location AND forward
using the API's adjacency.
To use the interose feature an existing source (i.e FIB_SOURCE_PLUGIN_HI)
cn specifiy as a flag FIB_ENTRY_FLAG_INTERPOSE and provide a DPO to
interpose. One might also consider using interpose in conjunction with
FIB_ENTRY_FLAG_COVER_INHERIT to ensure the interpose object affects
all prefixes in the sub-tree.

Change-Id: I8b2737b985f8f7c08123406d0491881def347b52
Signed-off-by: Neale Ranns <nranns@cisco.com>
35 files changed:
src/vnet.am
src/vnet/adj/adj.c
src/vnet/adj/adj_glean.c
src/vnet/bier/bier_api.c
src/vnet/bier/bier_fmask.c
src/vnet/bier/bier_test.c
src/vnet/dpo/dpo.c
src/vnet/dpo/dpo.h
src/vnet/dpo/load_balance.c
src/vnet/dpo/mpls_label_dpo.c
src/vnet/dpo/replicate_dpo.h
src/vnet/ethernet/arp.c
src/vnet/fib/fib_api.c
src/vnet/fib/fib_api.h
src/vnet/fib/fib_attached_export.c
src/vnet/fib/fib_entry.c
src/vnet/fib/fib_entry.h
src/vnet/fib/fib_entry_src.c
src/vnet/fib/fib_entry_src.h
src/vnet/fib/fib_entry_src_adj.c
src/vnet/fib/fib_entry_src_interface.c
src/vnet/fib/fib_entry_src_interpose.c [new file with mode: 0644]
src/vnet/fib/fib_entry_src_lisp.c
src/vnet/fib/fib_entry_src_mpls.c
src/vnet/fib/fib_entry_src_rr.c
src/vnet/fib/fib_entry_src_rr.h [new file with mode: 0644]
src/vnet/fib/fib_path_list.c
src/vnet/fib/fib_test.c
src/vnet/fib/fib_test.h
src/vnet/fib/fib_types.api
src/vnet/mfib/mfib_test.c
src/vnet/udp/udp_encap.c
test/test_bier.py
test/vpp_bier.py
test/vpp_ip_route.py