FD.io VPP  v17.07-30-g839fa73
Vector Packet Processing
mpls_tunnel.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 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 #ifndef __MPLS_TUNNEL_H__
17 #define __MPLS_TUNNEL_H__
18 
19 #include <vnet/mpls/mpls.h>
20 #include <vnet/fib/fib_path_ext.h>
21 
23 {
25  /**
26  * @brief The tunnel has an underlying multicast LSP
27  */
31 
32 #define MPLS_TUNNEL_ATTRIBUTES { \
33  [MPLS_TUNNEL_ATTRIBUTE_MCAST] = "multicast", \
34 }
35 #define FOR_EACH_MPLS_TUNNEL_ATTRIBUTE(_item) \
36  for (_item = MPLS_TUNNEL_ATTRIBUTE_FIRST; \
37  _item <= MPLS_TUNNEL_ATTRIBUTE_LAST; \
38  _item++)
39 
40 typedef enum mpls_tunnel_flag_t_ {
43 } __attribute__ ((packed)) mpls_tunnel_flags_t;
44 
45 
46 /**
47  * @brief A uni-directional MPLS tunnel
48  */
49 typedef struct mpls_tunnel_t_
50 {
51  /**
52  * @brief The tunnel hooks into the FIB control plane graph.
53  */
55 
56  /**
57  * @brief Tunnel flags
58  */
60 
61  /**
62  * @brief If the tunnel is an L2 tunnel, this is the link type ETHERNET
63  * adjacency
64  */
66 
67  /**
68  * @brief on a L2 tunnel this is the VLIB arc from the L2-tx to the l2-midchain
69  */
71 
72  /**
73  * @brief The path-list over which the tunnel's destination is reachable
74  */
76 
77  /**
78  * @brief sibling index on the path-list so notifications are received.
79  */
81 
82  /**
83  * A vector of path extensions o hold the label stack for each path
84  */
86 
87  /**
88  * @brief Flag to indicate the tunnel is only for L2 traffic, that is
89  * this tunnel belongs in a bridge domain.
90  */
92 
93  /**
94  * @brief The HW interface index of the tunnel interfaces
95  */
97 
98  /**
99  * @brief The SW interface index of the tunnel interfaces
100  */
102 
103 } mpls_tunnel_t;
104 
105 /**
106  * @brief Create a new MPLS tunnel
107  * @return the SW Interface index of the newly created tuneel
108  */
109 extern u32 vnet_mpls_tunnel_create (u8 l2_only,
110  u8 is_multicast);
111 
112 /**
113  * @brief Add a path to an MPLS tunnel
114  */
115 extern void vnet_mpls_tunnel_path_add (u32 sw_if_index,
116  fib_route_path_t *rpath);
117 
118 /**
119  * @brief remove a path from a tunnel.
120  * @return the number of remaining paths. 0 implies the tunnel can be deleted
121  */
122 extern int vnet_mpls_tunnel_path_remove (u32 sw_if_index,
123  fib_route_path_t *rpath);
124 
125 /**
126  * @brief Delete an MPLS tunnel
127  */
128 extern void vnet_mpls_tunnel_del (u32 sw_if_index);
129 
130 extern const mpls_tunnel_t *mpls_tunnel_get(u32 index);
131 
132 /**
133  * @brief Callback function invoked while walking MPLS tunnels
134  */
135 typedef void (*mpls_tunnel_walk_cb_t)(u32 index, void *ctx);
136 
137 /**
138  * @brief Walk all the MPLS tunnels
139  */
141  void *ctx);
142 
143 #endif
int vnet_mpls_tunnel_path_remove(u32 sw_if_index, fib_route_path_t *rpath)
remove a path from a tunnel.
Definition: mpls_tunnel.c:696
A representation of a path as described by a route producer.
Definition: fib_types.h:336
fib_node_index_t mt_path_list
The path-list over which the tunnel&#39;s destination is reachable.
Definition: mpls_tunnel.h:75
mpls_tunnel_flags_t mt_flags
Tunnel flags.
Definition: mpls_tunnel.h:59
A uni-directional MPLS tunnel.
Definition: mpls_tunnel.h:49
const mpls_tunnel_t * mpls_tunnel_get(u32 index)
Definition: mpls_tunnel.c:535
fib_node_t mt_node
The tunnel hooks into the FIB control plane graph.
Definition: mpls_tunnel.h:54
u8 mt_l2_only
Flag to indicate the tunnel is only for L2 traffic, that is this tunnel belongs in a bridge domain...
Definition: mpls_tunnel.h:91
void(* mpls_tunnel_walk_cb_t)(u32 index, void *ctx)
Callback function invoked while walking MPLS tunnels.
Definition: mpls_tunnel.h:135
adj_index_t mt_l2_adj
If the tunnel is an L2 tunnel, this is the link type ETHERNET adjacency.
Definition: mpls_tunnel.h:65
mpls_tunnel_flag_t_
Definition: mpls_tunnel.h:40
void vnet_mpls_tunnel_path_add(u32 sw_if_index, fib_route_path_t *rpath)
Add a path to an MPLS tunnel.
Definition: mpls_tunnel.c:644
fib_path_ext_list_t mt_path_exts
A vector of path extensions o hold the label stack for each path.
Definition: mpls_tunnel.h:85
u32 mt_l2_tx_arc
on a L2 tunnel this is the VLIB arc from the L2-tx to the l2-midchain
Definition: mpls_tunnel.h:70
void vnet_mpls_tunnel_del(u32 sw_if_index)
Delete an MPLS tunnel.
Definition: mpls_tunnel.c:556
u32 mt_sibling_index
sibling index on the path-list so notifications are received.
Definition: mpls_tunnel.h:80
A list of path-extensions.
Definition: fib_types.h:415
The tunnel has an underlying multicast LSP.
Definition: mpls_tunnel.h:28
An node in the FIB graph.
Definition: fib_node.h:279
struct mpls_tunnel_t_ mpls_tunnel_t
A uni-directional MPLS tunnel.
void mpls_tunnel_walk(mpls_tunnel_walk_cb_t cb, void *ctx)
Walk all the MPLS tunnels.
Definition: mpls_tunnel.c:544
u32 fib_node_index_t
A typedef of a node index.
Definition: fib_types.h:28
u32 adj_index_t
An index for adjacencies.
Definition: adj_types.h:30
mpls_tunnel_attribute_t_
Definition: mpls_tunnel.h:22
unsigned int u32
Definition: types.h:88
u32 mt_hw_if_index
The HW interface index of the tunnel interfaces.
Definition: mpls_tunnel.h:96
u32 vnet_mpls_tunnel_create(u8 l2_only, u8 is_multicast)
Create a new MPLS tunnel.
Definition: mpls_tunnel.c:577
unsigned char u8
Definition: types.h:56
enum mpls_tunnel_flag_t_ mpls_tunnel_flags_t
u32 mt_sw_if_index
The SW interface index of the tunnel interfaces.
Definition: mpls_tunnel.h:101
enum mpls_tunnel_attribute_t_ mpls_tunnel_attribute_t