FD.io VPP  v17.04-9-g99c0734
Vector Packet Processing
sr.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 /**
17  * @file
18  * @brief Segment Routing data structures definitions
19  *
20  */
21 
22 #ifndef included_vnet_sr_h
23 #define included_vnet_sr_h
24 
25 #include <vnet/vnet.h>
26 #include <vnet/sr/sr_packet.h>
27 #include <vnet/ip/ip6_packet.h>
28 #include <vnet/ethernet/ethernet.h>
29 
30 #include <stdlib.h>
31 #include <string.h>
32 
33 #define IPv6_DEFAULT_HEADER_LENGTH 40
34 #define IPv6_DEFAULT_HOP_LIMIT 64
35 #define IPv6_DEFAULT_MAX_MASK_WIDTH 128
36 
37 #define SR_BEHAVIOR_END 1
38 #define SR_BEHAVIOR_X 2
39 #define SR_BEHAVIOR_D_FIRST 3 /* Unused. Separator in between regular and D */
40 #define SR_BEHAVIOR_DX2 4
41 #define SR_BEHAVIOR_DX6 5
42 #define SR_BEHAVIOR_DX4 6
43 #define SR_BEHAVIOR_DT6 7
44 #define SR_BEHAVIOR_DT4 8
45 #define SR_BEHAVIOR_LAST 9 /* Must always be the last one */
46 
47 #define SR_STEER_L2 2
48 #define SR_STEER_IPV4 4
49 #define SR_STEER_IPV6 6
50 
51 #define SR_FUNCTION_SIZE 4
52 #define SR_ARGUMENT_SIZE 4
53 
54 #define SR_SEGMENT_LIST_WEIGHT_DEFAULT 1
55 
56 /**
57  * @brief SR Segment List (SID list)
58  */
59 typedef struct
60 {
61  ip6_address_t *segments; /**< SIDs (key) */
62 
63  u32 weight; /**< SID list weight (wECMP / UCMP) */
64 
65  u8 *rewrite; /**< Precomputed rewrite header */
66  u8 *rewrite_bsid; /**< Precomputed rewrite header for bindingSID */
67 
68  dpo_id_t bsid_dpo; /**< DPO for Encaps/Insert for BSID */
69  dpo_id_t ip6_dpo; /**< DPO for Encaps/Insert IPv6 */
70  dpo_id_t ip4_dpo; /**< DPO for Encaps IPv6 */
71 } ip6_sr_sl_t;
72 
73 /* SR policy types */
74 #define SR_POLICY_TYPE_DEFAULT 0
75 #define SR_POLICY_TYPE_SPRAY 1
76 /**
77  * @brief SR Policy
78  */
79 typedef struct
80 {
81  u32 *segments_lists; /**< SID lists indexes (vector) */
82 
83  ip6_address_t bsid; /**< BindingSID (key) */
84 
85  u8 type; /**< Type (default is 0) */
86  /* SR Policy specific DPO */
87  /* IF Type = DEFAULT Then Load Balancer DPO among SID lists */
88  /* IF Type = SPRAY then Spray DPO with all SID lists */
89  dpo_id_t bsid_dpo; /**< SR Policy specific DPO - BSID */
90  dpo_id_t ip4_dpo; /**< SR Policy specific DPO - IPv6 */
91  dpo_id_t ip6_dpo; /**< SR Policy specific DPO - IPv4 */
92 
93  u32 fib_table; /**< FIB table */
94 
95  u8 is_encap; /**< Mode (0 is SRH insert, 1 Encaps) */
97 
98 /**
99  * @brief SR LocalSID
100  */
101 typedef struct
102 {
103  ip6_address_t localsid; /**< LocalSID IPv6 address */
104 
105  char end_psp; /**< Combined with End.PSP? */
106 
107  u16 behavior; /**< Behavior associated to this localsid */
108 
109  union
110  {
111  u32 sw_if_index; /**< xconnect only */
112  u32 vrf_index; /**< vrf only */
113  };
114 
115  u32 fib_table; /**< FIB table where localsid is registered */
116 
117  u32 vlan_index; /**< VLAN tag (not an index) */
118 
119  ip46_address_t next_hop; /**< Next_hop for xconnect usage only */
120 
121  u32 nh_adj; /**< Next_adj for xconnect usage only */
122 
123  void *plugin_mem; /**< Memory to be used by the plugin callback functions */
125 
126 typedef int (sr_plugin_callback_t) (ip6_sr_localsid_t * localsid);
127 
128 /**
129  * @brief SR LocalSID behavior registration
130  */
131 typedef struct
132 {
133  u16 sr_localsid_function_number; /**< SR LocalSID plugin function (>SR_BEHAVIOR_LAST) */
134 
135  u8 *function_name; /**< Function name. (key). */
136 
137  u8 *keyword_str; /**< Behavior keyword (i.e. End.X) */
138 
139  u8 *def_str; /**< Behavior definition (i.e. Endpoint with cross-connect) */
140 
141  u8 *params_str; /**< Behavior parameters (i.e. <oif> <IP46next_hop>) */
142 
143  dpo_type_t dpo; /**< DPO type registration */
144 
145  format_function_t *ls_format; /**< LocalSID format function */
146 
147  unformat_function_t *ls_unformat; /**< LocalSID unformat function */
148 
149  sr_plugin_callback_t *creation; /**< Function within plugin that will be called after localsid creation*/
150 
151  sr_plugin_callback_t *removal; /**< Function within plugin that will be called before localsid removal */
153 
154 /**
155  * @brief Steering db key
156  *
157  * L3 is IPv4/IPv6 + mask
158  * L2 is sf_if_index + vlan
159  */
160 typedef struct
161 {
162  union
163  {
164  struct
165  {
166  ip46_address_t prefix; /**< IP address of the prefix */
167  u32 mask_width; /**< Mask width of the prefix */
168  u32 fib_table; /**< VRF of the prefix */
169  } l3;
170  struct
171  {
172  u32 sw_if_index; /**< Incoming software interface */
173  } l2;
174  };
175  u8 traffic_type; /**< Traffic type (IPv4, IPv6, L2) */
178 
179 typedef struct
180 {
181  sr_steering_key_t classify; /**< Traffic classification */
182  u32 sr_policy; /**< SR Policy index */
184 
185 /**
186  * @brief Segment Routing main datastructure
187  */
188 typedef struct
189 {
190  /* L2-input -> SR rewrite next index */
192 
193  /* SR SID lists */
195 
196  /* SR policies */
198 
199  /* Hash table mapping BindingSID to SR policy */
201 
202  /* Pool of SR localsid instances */
204 
205  /* Hash table mapping LOC:FUNC to SR LocalSID instance */
207 
208  /* Pool of SR steer policies instances */
210 
211  /* Hash table mapping steering rules to SR steer instance */
213 
214  /* L2 steering ifaces - sr_policies */
216 
217  /* Spray DPO */
219 
220  /* Plugin functions */
222 
223  /* Find plugin function by name */
225 
226  /* Counters */
229 
230  /* SR Policies FIBs */
233 
234  /* convenience */
237 } ip6_sr_main_t;
238 
240 
245 
246 void sr_dpo_lock (dpo_id_t * dpo);
247 void sr_dpo_unlock (dpo_id_t * dpo);
248 
250  u8 * keyword_str, u8 * def_str,
251  u8 * params_str, dpo_type_t * dpo,
252  format_function_t * ls_format,
253  unformat_function_t * ls_unformat,
254  sr_plugin_callback_t * creation_fn,
255  sr_plugin_callback_t * removal_fn);
256 
257 int
258 sr_policy_add (ip6_address_t * bsid, ip6_address_t * segments,
259  u32 weight, u8 behavior, u32 fib_table, u8 is_encap);
260 int
261 sr_policy_mod (ip6_address_t * bsid, u32 index, u32 fib_table,
262  u8 operation, ip6_address_t * segments, u32 sl_index,
263  u32 weight);
264 int sr_policy_del (ip6_address_t * bsid, u32 index);
265 
266 int sr_cli_localsid (char is_del, ip6_address_t * localsid_addr,
267  char end_psp, u8 behavior, u32 sw_if_index,
268  u32 vlan_index, u32 fib_table, ip46_address_t * nh_addr,
269  void *ls_plugin_mem);
270 
271 int
272 sr_steering_policy (int is_del, ip6_address_t * bsid, u32 sr_policy_index,
273  u32 table_id, ip46_address_t * prefix, u32 mask_width,
274  u32 sw_if_index, u8 traffic_type);
275 
276 /**
277  * @brief SR rewrite string computation for SRH insertion (inline)
278  *
279  * @param sl is a vector of IPv6 addresses composing the Segment List
280  *
281  * @return precomputed rewrite string for SRH insertion
282  */
283 static inline u8 *
285 {
286  ip6_sr_header_t *srh;
287  ip6_address_t *addrp, *this_address;
288  u32 header_length = 0;
289  u8 *rs = NULL;
290 
291  header_length = 0;
292  header_length += sizeof (ip6_sr_header_t);
293  header_length += (vec_len (sl) + 1) * sizeof (ip6_address_t);
294 
295  vec_validate (rs, header_length - 1);
296 
297  srh = (ip6_sr_header_t *) rs;
299  srh->segments_left = vec_len (sl);
300  srh->first_segment = vec_len (sl);
301  srh->length = ((sizeof (ip6_sr_header_t) +
302  ((vec_len (sl) + 1) * sizeof (ip6_address_t))) / 8) - 1;
303  srh->flags = 0x00;
304  srh->reserved = 0x0000;
305  addrp = srh->segments + vec_len (sl);
306  vec_foreach (this_address, sl)
307  {
308  clib_memcpy (addrp->as_u8, this_address->as_u8, sizeof (ip6_address_t));
309  addrp--;
310  }
311  return rs;
312 }
313 
314 
315 #endif /* included_vnet_sr_h */
316 
317 /*
318  * fd.io coding-style-patch-verification: ON
319  *
320  * Local Variables:
321  * eval: (c-set-style "gnu")
322  * End:
323  */
u8 * function_name
Function name.
Definition: sr.h:135
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:436
u32 sw_if_index
Incoming software interface.
Definition: sr.h:172
u8 type
Type (default is 0)
Definition: sr.h:85
Definition: mhash.h:46
u32 vlan_index
VLAN tag (not an index)
Definition: sr.h:117
uword( unformat_function_t)(unformat_input_t *input, va_list *args)
Definition: format.h:231
vlib_node_registration_t sr_policy_rewrite_encaps_node
(constructor) VLIB_REGISTER_NODE (sr_policy_rewrite_encaps_node)
u32 nh_adj
Next_adj for xconnect usage only.
Definition: sr.h:121
int sr_cli_localsid(char is_del, ip6_address_t *localsid_addr, char end_psp, u8 behavior, u32 sw_if_index, u32 vlan_index, u32 fib_table, ip46_address_t *nh_addr, void *ls_plugin_mem)
SR localsid add/del.
Definition: sr_localsid.c:66
u32 mask_width
Mask width of the prefix.
Definition: sr.h:167
SR LocalSID.
Definition: sr.h:101
u32 fib_table
FIB table.
Definition: sr.h:93
u8 as_u8[16]
Definition: ip6_packet.h:48
int sr_steering_policy(int is_del, ip6_address_t *bsid, u32 sr_policy_index, u32 table_id, ip46_address_t *prefix, u32 mask_width, u32 sw_if_index, u8 traffic_type)
Steer traffic L2 and L3 traffic through a given SR policy.
Definition: sr_steering.c:60
unsigned char params_str[32]
#define NULL
Definition: clib.h:55
format_function_t * ls_format
LocalSID format function.
Definition: sr.h:145
dpo_id_t ip4_dpo
DPO for Encaps IPv6.
Definition: sr.h:70
ip6_address_t * segments
SIDs (key)
Definition: sr.h:61
u32 padding
Definition: vhost-user.h:78
struct _vlib_node_registration vlib_node_registration_t
u32 l2_sr_policy_rewrite_index
Definition: sr.h:191
u16 behavior
Behavior associated to this localsid.
Definition: sr.h:107
#define ROUTING_HEADER_TYPE_SR
Definition: sr_packet.h:116
u8 *( format_function_t)(u8 *s, va_list *args)
Definition: format.h:48
unsigned char keyword_str[32]
vlib_combined_counter_main_t sr_ls_invalid_counters
Definition: sr.h:228
vlib_combined_counter_main_t sr_ls_valid_counters
Definition: sr.h:227
ip6_sr_steering_policy_t * steer_policies
Definition: sr.h:209
u8 * rewrite_bsid
Precomputed rewrite header for bindingSID.
Definition: sr.h:66
dpo_id_t ip6_dpo
DPO for Encaps/Insert IPv6.
Definition: sr.h:69
u32 * sw_iface_sr_policies
Definition: sr.h:215
enum dpo_type_t_ dpo_type_t
Common types of data-path objects New types can be dynamically added using dpo_register_new_type() ...
SR Segment List (SID list)
Definition: sr.h:59
int( sr_plugin_callback_t)(ip6_sr_localsid_t *localsid)
Definition: sr.h:126
vlib_node_registration_t sr_localsid_node
(constructor) VLIB_REGISTER_NODE (sr_localsid_node)
Definition: sr_localsid.c:1310
The identity of a DPO is a combination of its type and its instance number/index of objects of that t...
Definition: dpo.h:146
vlib_main_t * vlib_main
Definition: sr.h:235
SR LocalSID behavior registration.
Definition: sr.h:131
unsigned char def_str[64]
char end_psp
Combined with End.PSP?
Definition: sr.h:105
sr_steering_key_t classify
Traffic classification.
Definition: sr.h:181
u8 is_encap
Mode (0 is SRH insert, 1 Encaps)
Definition: sr.h:95
u32 sr_policy
SR Policy index.
Definition: sr.h:182
u32 weight
SID list weight (wECMP / UCMP)
Definition: sr.h:63
ip6_sr_localsid_t * localsids
Definition: sr.h:203
vnet_main_t * vnet_main
Definition: sr.h:236
vlib_main_t * vm
Definition: buffer.c:276
int sr_policy_del(ip6_address_t *bsid, u32 index)
Delete a SR policy.
int sr_policy_add(ip6_address_t *bsid, ip6_address_t *segments, u32 weight, u8 behavior, u32 fib_table, u8 is_encap)
Create a new SR policy.
u32 * segments_lists
SID lists indexes (vector)
Definition: sr.h:81
#define clib_memcpy(a, b, c)
Definition: string.h:69
unformat_function_t * ls_unformat
LocalSID unformat function.
Definition: sr.h:147
void sr_dpo_lock(dpo_id_t *dpo)
no-op lock function.
Definition: sr.c:38
dpo_id_t bsid_dpo
DPO for Encaps/Insert for BSID.
Definition: sr.h:68
dpo_type_t sr_pr_spray_dpo_type
Definition: sr.h:218
Steering db key.
Definition: sr.h:160
unsigned int u32
Definition: types.h:88
dpo_type_t dpo
DPO type registration.
Definition: sr.h:143
u8 * def_str
Behavior definition (i.e.
Definition: sr.h:139
void * plugin_mem
Memory to be used by the plugin callback functions.
Definition: sr.h:123
void sr_dpo_unlock(dpo_id_t *dpo)
no-op unlock function.
Definition: sr.c:47
u32 vrf_index
vrf only
Definition: sr.h:112
vlib_node_registration_t sr_localsid_d_node
(constructor) VLIB_REGISTER_NODE (sr_localsid_d_node)
Definition: sr_localsid.c:1077
u32 fib_table
FIB table where localsid is registered.
Definition: sr.h:115
u64 uword
Definition: types.h:112
mhash_t sr_policies_index_hash
Definition: sr.h:200
u16 sr_localsid_function_number
SR LocalSID plugin function (>SR_BEHAVIOR_LAST)
Definition: sr.h:133
unsigned short u16
Definition: types.h:57
vlib_node_registration_t sr_policy_rewrite_insert_node
(constructor) VLIB_REGISTER_NODE (sr_policy_rewrite_insert_node)
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
ip6_sr_policy_t * sr_policies
Definition: sr.h:197
unsigned char u8
Definition: types.h:56
mhash_t sr_steer_policies_hash
Definition: sr.h:212
ip6_address_t segments[0]
Definition: sr_packet.h:148
SR Policy.
Definition: sr.h:79
sr_plugin_callback_t * creation
Function within plugin that will be called after localsid creation.
Definition: sr.h:149
u8 * rewrite
Precomputed rewrite header.
Definition: sr.h:65
dpo_id_t bsid_dpo
SR Policy specific DPO - BSID.
Definition: sr.h:89
A collection of combined counters.
Definition: counter.h:180
ip6_sr_sl_t * sid_lists
Definition: sr.h:194
Segment Routing main datastructure.
Definition: sr.h:188
dpo_id_t ip6_dpo
SR Policy specific DPO - IPv4.
Definition: sr.h:91
u32 fib_table
VRF of the prefix.
Definition: sr.h:168
int sr_localsid_register_function(vlib_main_t *vm, u8 *fn_name, u8 *keyword_str, u8 *def_str, u8 *params_str, dpo_type_t *dpo, format_function_t *ls_format, unformat_function_t *ls_unformat, sr_plugin_callback_t *creation_fn, sr_plugin_callback_t *removal_fn)
SR LocalSID plugin registry.
Definition: sr_localsid.c:1366
ip46_address_t prefix
IP address of the prefix.
Definition: sr.h:166
#define vec_foreach(var, vec)
Vector iterator.
u8 traffic_type
Traffic type (IPv4, IPv6, L2)
Definition: sr.h:175
u32 fib_table_ip4
Definition: sr.h:232
ip46_address_t next_hop
Next_hop for xconnect usage only.
Definition: sr.h:119
mhash_t sr_localsids_index_hash
Definition: sr.h:206
u8 * params_str
Behavior parameters (i.e.
Definition: sr.h:141
u32 sw_if_index
xconnect only
Definition: sr.h:111
sr_plugin_callback_t * removal
Function within plugin that will be called before localsid removal.
Definition: sr.h:151
dpo_id_t ip4_dpo
SR Policy specific DPO - IPv6.
Definition: sr.h:90
ip6_address_t localsid
LocalSID IPv6 address.
Definition: sr.h:103
u32 fib_table_ip6
Definition: sr.h:231
u8 * keyword_str
Behavior keyword (i.e.
Definition: sr.h:137
ip6_sr_main_t sr_main
Definition: sr.h:239
sr_localsid_fn_registration_t * plugin_functions
Definition: sr.h:221
int sr_policy_mod(ip6_address_t *bsid, u32 index, u32 fib_table, u8 operation, ip6_address_t *segments, u32 sl_index, u32 weight)
Modify an existing SR policy.
ip6_address_t bsid
BindingSID (key)
Definition: sr.h:83
uword * plugin_functions_by_key
Definition: sr.h:224
static u8 * ip6_sr_compute_rewrite_string_insert(ip6_address_t *sl)
SR rewrite string computation for SRH insertion (inline)
Definition: sr.h:284