FD.io VPP  v21.10.1-2-g0a485f517
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_srv6_h
23 #define included_vnet_srv6_h
24 
25 #include <vnet/vnet.h>
26 #include <vnet/srv6/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_T 3
40 #define SR_BEHAVIOR_D_FIRST 4 /* Unused. Separator in between regular and D */
41 #define SR_BEHAVIOR_DX2 5
42 #define SR_BEHAVIOR_DX6 6
43 #define SR_BEHAVIOR_DX4 7
44 #define SR_BEHAVIOR_DT6 8
45 #define SR_BEHAVIOR_DT4 9
46 #define SR_BEHAVIOR_END_UN_PERF 10
47 #define SR_BEHAVIOR_END_UN 11
48 #define SR_BEHAVIOR_LAST 12 /* Must always be the last one */
49 
50 #define SR_STEER_L2 2
51 #define SR_STEER_IPV4 4
52 #define SR_STEER_IPV6 6
53 
54 #define SR_FUNCTION_SIZE 4
55 #define SR_ARGUMENT_SIZE 4
56 
57 #define SR_SEGMENT_LIST_WEIGHT_DEFAULT 1
58 
59 /* *INDENT-OFF* */
60 typedef struct
61 {
64 } __attribute__ ((packed)) ip6srv_combo_header_t;
65 /* *INDENT-ON* */
66 
67 /**
68  * @brief SR Segment List (SID list)
69  */
70 typedef struct
71 {
72  ip6_address_t *segments; /**< SIDs (key) */
73 
74  u32 weight; /**< SID list weight (wECMP / UCMP) */
75 
76  u8 *rewrite; /**< Precomputed rewrite header */
77  u8 *rewrite_bsid; /**< Precomputed rewrite header for bindingSID */
79 
80  u32 egress_fib_table; /**< Egress FIB table for encap packet */
81 
82  dpo_id_t bsid_dpo; /**< DPO for Encaps/Insert for BSID */
83  dpo_id_t ip6_dpo; /**< DPO for Encaps/Insert IPv6 */
84  dpo_id_t ip4_dpo; /**< DPO for Encaps IPv6 */
85 
87  void *plugin_mem;
88 } ip6_sr_sl_t;
89 
90 /* SR policy types */
91 #define SR_POLICY_TYPE_DEFAULT 0
92 #define SR_POLICY_TYPE_SPRAY 1
93 /**
94  * @brief SR Policy
95  */
96 typedef struct
97 {
98  u32 *segments_lists; /**< SID lists indexes (vector) */
99 
100  ip6_address_t bsid; /**< BindingSID (key) */
101 
102  u8 type; /**< Type (default is 0) */
103  /* SR Policy specific DPO */
104  /* IF Type = DEFAULT Then Load Balancer DPO among SID lists */
105  /* IF Type = SPRAY then Spray DPO with all SID lists */
106  dpo_id_t bsid_dpo; /**< SR Policy specific DPO - BSID */
107  dpo_id_t ip4_dpo; /**< SR Policy specific DPO - IPv6 */
108  dpo_id_t ip6_dpo; /**< SR Policy specific DPO - IPv4 */
109 
110  u32 fib_table; /**< FIB table */
111 
112  u8 is_encap; /**< Mode (0 is SRH insert, 1 Encaps) */
113 
115  void *plugin_mem;
117 
119 
120 /**
121  * @brief SR LocalSID
122  */
123 typedef struct
124 {
125  ip6_address_t localsid; /**< LocalSID IPv6 address */
126 
128 
129  char end_psp; /**< Combined with End.PSP? */
130 
131  u16 behavior; /**< Behavior associated to this localsid */
132 
133  union
134  {
135  u32 sw_if_index; /**< xconnect only */
136  u32 vrf_index; /**< vrf only */
137  };
138 
139  u32 fib_table; /**< FIB table where localsid is registered */
140 
141  u32 vlan_index; /**< VLAN tag (not an index) */
142 
143  ip46_address_t next_hop; /**< Next_hop for xconnect usage only */
144 
145  u32 nh_adj; /**< Next_adj for xconnect usage only */
146 
147  ip6_address_t usid_block;
148  ip6_address_t usid_block_mask;
149 
152 
155 
156  void *plugin_mem; /**< Memory to be used by the plugin callback functions */
158 
159 typedef int (sr_plugin_callback_t) (ip6_sr_localsid_t * localsid);
160 
161 /**
162  * @brief SR LocalSID behavior registration
163  */
164 typedef struct
165 {
166  u16 sr_localsid_function_number; /**< SR LocalSID plugin function (>SR_BEHAVIOR_LAST) */
167 
168  u8 *function_name; /**< Function name. (key). */
169 
170  u8 *keyword_str; /**< Behavior keyword (i.e. End.X) */
171 
172  u8 *def_str; /**< Behavior definition (i.e. Endpoint with cross-connect) */
173 
174  u8 *params_str; /**< Behavior parameters (i.e. <oif> <IP46next_hop>) */
175 
177 
178  dpo_type_t dpo; /**< DPO type registration */
179 
180  format_function_t *ls_format; /**< LocalSID format function */
181 
182  unformat_function_t *ls_unformat; /**< LocalSID unformat function */
183 
184  sr_plugin_callback_t *creation; /**< Function within plugin that will be called after localsid creation*/
185 
186  sr_plugin_callback_t *removal; /**< Function within plugin that will be called before localsid removal */
188 
189 /**
190  * @brief SR Policy behavior registration
191  */
192 typedef struct
193 {
194  u16 sr_policy_function_number; /**< SR Policy plugin function */
195 
196  u8 *function_name; /**< Function name. (key). */
197 
198  u8 *keyword_str; /**< Behavior keyword (i.e. End.X) */
199 
200  u8 *def_str; /**< Behavior definition (i.e. Endpoint with cross-connect) */
201 
202  u8 *params_str; /**< Behavior parameters (i.e. <oif> <IP46next_hop>) */
203 
205 
206  dpo_type_t dpo; /**< DPO type registration */
207 
208  format_function_t *ls_format; /**< LocalSID format function */
209 
210  unformat_function_t *ls_unformat; /**< LocalSID unformat function */
211 
212  sr_p_plugin_callback_t *creation; /**< Function within plugin that will be called after localsid creation*/
213 
214  sr_p_plugin_callback_t *removal; /**< Function within plugin that will be called before localsid removal */
216 
217 /**
218  * @brief Steering db key
219  *
220  * L3 is IPv4/IPv6 + mask
221  * L2 is sf_if_index + vlan
222  */
223 typedef struct
224 {
225  union
226  {
227  struct
228  {
229  ip46_address_t prefix; /**< IP address of the prefix */
230  u32 mask_width; /**< Mask width of the prefix */
231  u32 fib_table; /**< VRF of the prefix */
232  } l3;
233  struct
234  {
235  u32 sw_if_index; /**< Incoming software interface */
236  } l2;
237  };
238  u8 traffic_type; /**< Traffic type (IPv4, IPv6, L2) */
241 
242 typedef struct
243 {
244  sr_steering_key_t classify; /**< Traffic classification */
245  u32 sr_policy; /**< SR Policy index */
247 
248 typedef struct
249 {
250  ip6_address_t address;
254 
255 /**
256  * @brief Segment Routing main datastructure
257  */
258 typedef struct
259 {
260  /* L2-input -> SR rewrite next index */
262 
263  /* SR SID lists */
265 
266  /* SRv6 policies */
268 
269  /* Hash table mapping BindingSID to SRv6 policy */
271 
272  /* Pool of SR localsid instances */
274 
275  /* Hash table mapping LOC:FUNC to SR LocalSID instance */
277 
278  /* Pool of SR steer policies instances */
280 
281  /* Hash table mapping steering rules to SR steer instance */
283 
284  /* L2 steering ifaces - sr_policies */
286 
287  /* Spray DPO */
289 
290  /* Plugin functions */
292 
293  /* Find plugin function by name */
295 
296  /* Plugin functions for Policy */
298 
299  /* Find plugin function by name */
301 
302  /* Counters */
305 
306  /* SR Policies FIBs */
309 
310  /* convenience */
314 } ip6_sr_main_t;
315 
316 extern ip6_sr_main_t sr_main;
317 
322 
323 extern void sr_dpo_lock (dpo_id_t * dpo);
324 extern void sr_dpo_unlock (dpo_id_t * dpo);
325 
326 extern int
328  u8 * keyword_str, u8 * def_str,
329  u8 * params_str, u8 prefix_length,
330  dpo_type_t * dpo,
331  format_function_t * ls_format,
332  unformat_function_t * ls_unformat,
333  sr_plugin_callback_t * creation_fn,
334  sr_plugin_callback_t * removal_fn);
335 
336 extern int
338  u8 * keyword_str, u8 * def_str,
339  u8 * params_str, u8 prefix_length,
340  dpo_type_t * dpo,
341  format_function_t * ls_format,
342  unformat_function_t * ls_unformat,
343  sr_p_plugin_callback_t * creation_fn,
344  sr_p_plugin_callback_t * removal_fn);
345 
346 extern int sr_policy_add (ip6_address_t *bsid, ip6_address_t *segments,
347  u32 weight, u8 type, u32 fib_table, u8 is_encap,
348  u16 plugin, void *plugin_mem);
349 extern int sr_policy_mod (ip6_address_t * bsid, u32 index, u32 fib_table,
350  u8 operation, ip6_address_t * segments,
352 extern int sr_policy_del (ip6_address_t * bsid, u32 index);
353 
354 extern int
355 sr_cli_localsid (char is_del, ip6_address_t * localsid_addr,
356  u16 localsid_prefix_len, char end_psp, u8 behavior,
357  u32 sw_if_index, u32 vlan_index, u32 fib_table,
358  ip46_address_t * nh_addr, int usid_len, void *ls_plugin_mem);
359 
360 extern int
361 sr_steering_policy (int is_del, ip6_address_t * bsid, u32 sr_policy_index,
362  u32 table_id, ip46_address_t * prefix, u32 mask_width,
363  u32 sw_if_index, u8 traffic_type);
364 
365 extern void sr_set_source (ip6_address_t * address);
366 extern ip6_address_t *sr_get_encaps_source ();
367 
368 extern void sr_set_hop_limit (u8 hop_limit);
369 extern u8 sr_get_hop_limit (void);
370 
371 /**
372  * @brief SR rewrite string computation for SRH insertion (inline)
373  *
374  * @param sl is a vector of IPv6 addresses composing the Segment List
375  *
376  * @return precomputed rewrite string for SRH insertion
377  */
378 static inline u8 *
380 {
381  ip6_sr_header_t *srh;
382  ip6_address_t *addrp, *this_address;
383  u32 header_length = 0;
384  u8 *rs = NULL;
385 
386  header_length = 0;
387  header_length += sizeof (ip6_sr_header_t);
388  header_length += (vec_len (sl) + 1) * sizeof (ip6_address_t);
389 
390  vec_validate (rs, header_length - 1);
391 
392  srh = (ip6_sr_header_t *) rs;
394  srh->segments_left = vec_len (sl);
395  srh->last_entry = vec_len (sl);
396  srh->length = ((sizeof (ip6_sr_header_t) +
397  ((vec_len (sl) + 1) * sizeof (ip6_address_t))) / 8) - 1;
398  srh->flags = 0x00;
399  srh->tag = 0x0000;
400  addrp = srh->segments + vec_len (sl);
401  vec_foreach (this_address, sl)
402  {
403  clib_memcpy_fast (addrp->as_u8, this_address->as_u8,
404  sizeof (ip6_address_t));
405  addrp--;
406  }
407  return rs;
408 }
409 
410 #endif /* included_vnet_sr_h */
411 
412 /*
413  * fd.io coding-style-patch-verification: ON
414  *
415  * Local Variables:
416  * eval: (c-set-style "gnu")
417  * End:
418  */
ip6_sr_localsid_t::end_psp
char end_psp
Combined with End.PSP?
Definition: sr.h:129
ip6_sr_policy_t::is_encap
u8 is_encap
Mode (0 is SRH insert, 1 Encaps)
Definition: sr.h:112
sr_localsid_fn_registration_t::sr_localsid_function_number
u16 sr_localsid_function_number
SR LocalSID plugin function (>SR_BEHAVIOR_LAST)
Definition: sr.h:166
weight
u8 weight
Definition: fib_types.api:120
sr_dpo_lock
void sr_dpo_lock(dpo_id_t *dpo)
no-op lock function.
Definition: sr.c:38
sr_steering_key_t::prefix
ip46_address_t prefix
IP address of the prefix.
Definition: sr.h:229
ip6_sr_main_t::sr_ls_valid_counters
vlib_combined_counter_main_t sr_ls_valid_counters
Definition: sr.h:303
sr_dpo_unlock
void sr_dpo_unlock(dpo_id_t *dpo)
no-op unlock function.
Definition: sr.c:47
ip6_sr_localsid_t::usid_block
ip6_address_t usid_block
Definition: sr.h:147
sr_policy_fn_registration_t::ls_unformat
unformat_function_t * ls_unformat
LocalSID unformat function.
Definition: sr.h:210
ip6_sr_localsid_t
SR LocalSID.
Definition: sr.h:123
sr_localsid_register_function
int sr_localsid_register_function(vlib_main_t *vm, u8 *fn_name, u8 *keyword_str, u8 *def_str, u8 *params_str, u8 prefix_length, 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:2347
ip6_sr_main_t::l2_sr_policy_rewrite_index
u32 l2_sr_policy_rewrite_index
Definition: sr.h:261
sl_index
u32 sl_index
Definition: sr.api:35
sr_policy_fn_registration_t::creation
sr_p_plugin_callback_t * creation
Function within plugin that will be called after localsid creation.
Definition: sr.h:212
string.h
sr_localsid_fn_registration_t::ls_format
format_function_t * ls_format
LocalSID format function.
Definition: sr.h:180
ip6_sr_localsid_t::plugin_mem
void * plugin_mem
Memory to be used by the plugin callback functions.
Definition: sr.h:156
ip6_sr_main_t::plugin_functions_by_key
uword * plugin_functions_by_key
Definition: sr.h:294
ip6_sr_sl_t::policy_type
u8 policy_type
Definition: sr.h:78
padding
u32 padding
Definition: vhost_user.h:124
mhash_t
Definition: mhash.h:46
sr_localsid_fn_registration_t::params_str
u8 * params_str
Behavior parameters (i.e.
Definition: sr.h:174
ip6_sr_localsid_t::sw_if_index
u32 sw_if_index
xconnect only
Definition: sr.h:135
ip6_sr_sl_t::plugin
u16 plugin
Definition: sr.h:86
ip6_sr_localsid_t::next_hop
ip46_address_t next_hop
Next_hop for xconnect usage only.
Definition: sr.h:143
ip6_sr_main_t::steer_policies
ip6_sr_steering_policy_t * steer_policies
Definition: sr.h:279
u16
unsigned short u16
Definition: types.h:57
ip6_sr_sl_t::plugin_mem
void * plugin_mem
Definition: sr.h:87
vm
vlib_main_t * vm
X-connect all packets from the HOST to the PHY.
Definition: nat44_ei.c:3047
ip6_sr_localsid_t::usid_block_mask
ip6_address_t usid_block_mask
Definition: sr.h:148
ip6_sr_main_t::sw_iface_sr_policies
u32 * sw_iface_sr_policies
Definition: sr.h:285
ip6_sr_localsid_t::usid_len
u8 usid_len
Definition: sr.h:151
ip6_sr_main_t::policy_plugin_functions_by_key
uword * policy_plugin_functions_by_key
Definition: sr.h:300
ip6_sr_localsid_t::usid_next_len
u8 usid_next_len
Definition: sr.h:154
def_str
unsigned char def_str[64]
Definition: srv6_localsid_sample.c:30
sr_policy_fn_registration_t::ls_format
format_function_t * ls_format
LocalSID format function.
Definition: sr.h:208
ip6_sr_sl_t::rewrite
u8 * rewrite
Precomputed rewrite header.
Definition: sr.h:76
sr_cli_localsid
int sr_cli_localsid(char is_del, ip6_address_t *localsid_addr, u16 localsid_prefix_len, char end_psp, u8 behavior, u32 sw_if_index, u32 vlan_index, u32 fib_table, ip46_address_t *nh_addr, int usid_len, void *ls_plugin_mem)
SR localsid add/del.
Definition: sr_localsid.c:77
clib_memcpy_fast
static_always_inline void * clib_memcpy_fast(void *restrict dst, const void *restrict src, size_t n)
Definition: string.h:92
ip6_sr_localsid_t::vlan_index
u32 vlan_index
VLAN tag (not an index)
Definition: sr.h:141
ip6_sr_header_t::segments
ip6_address_t segments[0]
Definition: sr_packet.h:149
ethernet.h
sr_policy_fn_registration_t::removal
sr_p_plugin_callback_t * removal
Function within plugin that will be called before localsid removal.
Definition: sr.h:214
ip6_sr_steering_policy_t::classify
sr_steering_key_t classify
Traffic classification.
Definition: sr.h:244
sr_packet.h
ip6srv_combo_header_t::sr
ip6_sr_header_t sr
Definition: sr.h:63
mask_width
u8 mask_width
Definition: dhcp.api:204
ip6_sr_header_t::type
u8 type
Definition: sr_packet.h:130
sr_localsid_fn_registration_t::dpo
dpo_type_t dpo
DPO type registration.
Definition: sr.h:178
ip6_packet.h
ip6_sr_sl_t::ip4_dpo
dpo_id_t ip4_dpo
DPO for Encaps IPv6.
Definition: sr.h:84
ip6_sr_policy_t::plugin_mem
void * plugin_mem
Definition: sr.h:115
ip6_sr_policy_t
SR Policy.
Definition: sr.h:96
ip6_sr_main_t::sr_ls_invalid_counters
vlib_combined_counter_main_t sr_ls_invalid_counters
Definition: sr.h:304
vec_len
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
Definition: vec_bootstrap.h:142
sr_steering_key_t::mask_width
u32 mask_width
Mask width of the prefix.
Definition: sr.h:230
ip6_sr_main_t::vnet_main
vnet_main_t * vnet_main
Definition: sr.h:312
sr_steering_key_t::fib_table
u32 fib_table
VRF of the prefix.
Definition: sr.h:231
fn_name
static u8 fn_name[]
Definition: gtp4_d.c:66
sr_policy_rewrite_insert_node
vlib_node_registration_t sr_policy_rewrite_insert_node
(constructor) VLIB_REGISTER_NODE (sr_policy_rewrite_insert_node)
Definition: sr_policy_rewrite.c:2663
sr_steering_key_t::traffic_type
u8 traffic_type
Traffic type (IPv4, IPv6, L2)
Definition: sr.h:238
ip6_sr_sl_t::egress_fib_table
u32 egress_fib_table
Egress FIB table for encap packet.
Definition: sr.h:80
ip6_sr_sl_t
SR Segment List (SID list)
Definition: sr.h:70
ip6_sr_main_t::vlib_main
vlib_main_t * vlib_main
Definition: sr.h:311
sr_p_plugin_callback_t
int() sr_p_plugin_callback_t(ip6_sr_policy_t *sr)
Definition: sr.h:118
ip6_sr_header_t::flags
u8 flags
Definition: sr_packet.h:145
sr_policy_mod
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.
Definition: sr_policy_rewrite.c:832
sr_policy_del
int sr_policy_del(ip6_address_t *bsid, u32 index)
Delete a SR policy.
Definition: sr_policy_rewrite.c:724
ip6_sr_policy_t::segments_lists
u32 * segments_lists
SID lists indexes (vector)
Definition: sr.h:98
ip6_sr_header_t::segments_left
u8 segments_left
Definition: sr_packet.h:133
sr_policy_rewrite_encaps_node
vlib_node_registration_t sr_policy_rewrite_encaps_node
(constructor) VLIB_REGISTER_NODE (sr_policy_rewrite_encaps_node)
Definition: sr_policy_rewrite.c:1506
sr_set_source
void sr_set_source(ip6_address_t *address)
Definition: sr_policy_rewrite.c:117
uword
u64 uword
Definition: types.h:112
sr_localsid_d_node
vlib_node_registration_t sr_localsid_d_node
(constructor) VLIB_REGISTER_NODE (sr_localsid_d_node)
Definition: sr_localsid.c:1442
ip6_sr_main_t::policy_plugin_functions
sr_policy_fn_registration_t * policy_plugin_functions
Definition: sr.h:297
sr_policy_fn_registration_t::function_name
u8 * function_name
Function name.
Definition: sr.h:196
ip6_sr_steering_policy_t::sr_policy
u32 sr_policy
SR Policy index.
Definition: sr.h:245
dpo_type_t
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_get_encaps_source
ip6_address_t * sr_get_encaps_source()
Definition: sr_policy_rewrite.c:123
ip6_sr_sl_t::weight
u32 weight
SID list weight (wECMP / UCMP)
Definition: sr.h:74
sr_steering_key_t::sw_if_index
u32 sw_if_index
Incoming software interface.
Definition: sr.h:235
vec_validate
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment)
Definition: vec.h:523
sr_policy_register_function
int sr_policy_register_function(vlib_main_t *vm, u8 *fn_name, u8 *keyword_str, u8 *def_str, u8 *params_str, u8 prefix_length, dpo_type_t *dpo, format_function_t *ls_format, unformat_function_t *ls_unformat, sr_p_plugin_callback_t *creation_fn, sr_p_plugin_callback_t *removal_fn)
SR Policy plugin registry.
Definition: sr_policy_rewrite.c:3405
address
manual_print typedef address
Definition: ip_types.api:96
ip6_sr_policy_t::bsid_dpo
dpo_id_t bsid_dpo
SR Policy specific DPO - BSID.
Definition: sr.h:106
ip6_sr_policy_t::ip4_dpo
dpo_id_t ip4_dpo
SR Policy specific DPO - IPv6.
Definition: sr.h:107
sr_steering_policy
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
hop_limit
u8 hop_limit
Definition: tunnel_types.api:88
ip6_sr_header_t::length
u8 length
Definition: sr_packet.h:127
sr_policy_fn_registration_t::prefix_length
u8 prefix_length
Definition: sr.h:204
vlib_node_registration_t
struct _vlib_node_registration vlib_node_registration_t
ip6_sr_localsid_t::nh_adj
u32 nh_adj
Next_adj for xconnect usage only.
Definition: sr.h:145
sr_plugin_callback_t
int() sr_plugin_callback_t(ip6_sr_localsid_t *localsid)
Definition: sr.h:159
params_str
unsigned char params_str[32]
Definition: srv6_localsid_sample.c:31
sr_localsid_fn_registration_t::ls_unformat
unformat_function_t * ls_unformat
LocalSID unformat function.
Definition: sr.h:182
ip6_sr_main_t::localsids
ip6_sr_localsid_t * localsids
Definition: sr.h:273
sr_localsid_fn_registration_t::prefix_length
u8 prefix_length
Definition: sr.h:176
keyword_str
unsigned char keyword_str[32]
Definition: srv6_localsid_sample.c:29
sr_policy_fn_registration_t::keyword_str
u8 * keyword_str
Behavior keyword (i.e.
Definition: sr.h:198
ip6_sr_header_t::last_entry
u8 last_entry
Definition: sr_packet.h:136
format_function_t
u8 *() format_function_t(u8 *s, va_list *args)
Definition: format.h:48
ip6_sr_main_t
Segment Routing main datastructure.
Definition: sr.h:258
vnet_main_t
Definition: vnet.h:76
index
u32 index
Definition: flow_types.api:221
ip6_sr_policy_t::bsid
ip6_address_t bsid
BindingSID (key)
Definition: sr.h:100
ip6_sr_localsid_t::usid_index
u8 usid_index
Definition: sr.h:150
sr_localsid_node
vlib_node_registration_t sr_localsid_node
(constructor) VLIB_REGISTER_NODE (sr_localsid_node)
Definition: sr_localsid.c:1752
ip6_sr_policy_t::type
u8 type
Type (default is 0)
Definition: sr.h:102
ip6_sr_localsid_t::localsid
ip6_address_t localsid
LocalSID IPv6 address.
Definition: sr.h:125
sr_policy_fn_registration_t::dpo
dpo_type_t dpo
DPO type registration.
Definition: sr.h:206
vlib_combined_counter_main_t
A collection of combined counters.
Definition: counter.h:203
sr_localsid_fn_registration_t::creation
sr_plugin_callback_t * creation
Function within plugin that will be called after localsid creation.
Definition: sr.h:184
ip6srv_combo_header_t
Definition: sr.h:60
ip6_sr_localsid_t::vrf_index
u32 vrf_index
vrf only
Definition: sr.h:136
ip6_sr_sl_t::segments
ip6_address_t * segments
SIDs (key)
Definition: sr.h:72
u32
unsigned int u32
Definition: types.h:88
sr_set_hop_limit
void sr_set_hop_limit(u8 hop_limit)
Definition: sr_policy_rewrite.c:154
table_id
u32 table_id
Definition: wireguard.api:102
nh_addr
vl_api_address_t nh_addr
Definition: lisp_gpe.api:222
vec_foreach
#define vec_foreach(var, vec)
Vector iterator.
Definition: vec_bootstrap.h:213
sr_localsid_fn_registration_t::function_name
u8 * function_name
Function name.
Definition: sr.h:168
ROUTING_HEADER_TYPE_SR
#define ROUTING_HEADER_TYPE_SR
Definition: sr_packet.h:117
ip6_sr_localsid_t::localsid_prefix_len
u16 localsid_prefix_len
Definition: sr.h:127
unformat_function_t
uword() unformat_function_t(unformat_input_t *input, va_list *args)
Definition: format.h:225
sr_localsid_key_t
Definition: sr.h:248
ip6_sr_main_t::msg_id_base
u16 msg_id_base
Definition: sr.h:313
ip6_sr_header_t
Definition: sr_packet.h:119
ip6_header_t
Definition: ip6_packet.h:294
sr_localsid_key_t::address
ip6_address_t address
Definition: sr.h:250
ip6_sr_main_t::sr_steer_policies_hash
mhash_t sr_steer_policies_hash
Definition: sr.h:282
sr_policy_fn_registration_t::def_str
u8 * def_str
Behavior definition (i.e.
Definition: sr.h:200
vlib_main_t
Definition: main.h:102
ip6_sr_main_t::sr_pr_spray_dpo_type
dpo_type_t sr_pr_spray_dpo_type
Definition: sr.h:288
sr_policy_add
int sr_policy_add(ip6_address_t *bsid, ip6_address_t *segments, u32 weight, u8 type, u32 fib_table, u8 is_encap, u16 plugin, void *plugin_mem)
Create a new SR policy.
Definition: sr_policy_rewrite.c:636
sr_steering_key_t
Steering db key.
Definition: sr.h:223
sr_localsid_key_t::pref_len
u16 pref_len
Definition: sr.h:251
sr_localsid_fn_registration_t::removal
sr_plugin_callback_t * removal
Function within plugin that will be called before localsid removal.
Definition: sr.h:186
u8
unsigned char u8
Definition: types.h:56
sr_main
ip6_sr_main_t sr_main
Definition: sr.c:31
ip6_sr_main_t::fib_table_ip6
u32 fib_table_ip6
Definition: sr.h:307
ip6_sr_sl_t::ip6_dpo
dpo_id_t ip6_dpo
DPO for Encaps/Insert IPv6.
Definition: sr.h:83
ip6_sr_main_t::plugin_functions
sr_localsid_fn_registration_t * plugin_functions
Definition: sr.h:291
ip6_sr_header_t::tag
u16 tag
Definition: sr_packet.h:146
sr_get_hop_limit
u8 sr_get_hop_limit(void)
Definition: sr_policy_rewrite.c:160
ip6_sr_compute_rewrite_string_insert
static u8 * ip6_sr_compute_rewrite_string_insert(ip6_address_t *sl)
SR rewrite string computation for SRH insertion (inline)
Definition: sr.h:379
sr_policy_fn_registration_t
SR Policy behavior registration.
Definition: sr.h:192
ip6_sr_policy_t::fib_table
u32 fib_table
FIB table.
Definition: sr.h:110
ip6_sr_main_t::sr_policies
ip6_sr_policy_t * sr_policies
Definition: sr.h:267
ip6_sr_policy_t::ip6_dpo
dpo_id_t ip6_dpo
SR Policy specific DPO - IPv4.
Definition: sr.h:108
dpo_id_t_
The identity of a DPO is a combination of its type and its instance number/index of objects of that t...
Definition: dpo.h:172
sr_policy_fn_registration_t::params_str
u8 * params_str
Behavior parameters (i.e.
Definition: sr.h:202
sr_policy_fn_registration_t::sr_policy_function_number
u16 sr_policy_function_number
SR Policy plugin function.
Definition: sr.h:194
vnet.h
ip6_sr_steering_policy_t
Definition: sr.h:242
ip6_sr_sl_t::bsid_dpo
dpo_id_t bsid_dpo
DPO for Encaps/Insert for BSID.
Definition: sr.h:82
ip6_sr_main_t::sid_lists
ip6_sr_sl_t * sid_lists
Definition: sr.h:264
ip6_sr_localsid_t::behavior
u16 behavior
Behavior associated to this localsid.
Definition: sr.h:131
sw_if_index
vl_api_interface_index_t sw_if_index
Definition: wireguard.api:34
sr_localsid_fn_registration_t::keyword_str
u8 * keyword_str
Behavior keyword (i.e.
Definition: sr.h:170
ip6_sr_localsid_t::fib_table
u32 fib_table
FIB table where localsid is registered.
Definition: sr.h:139
ip6_sr_main_t::sr_policies_index_hash
mhash_t sr_policies_index_hash
Definition: sr.h:270
ip6_sr_main_t::fib_table_ip4
u32 fib_table_ip4
Definition: sr.h:308
sr_localsid_fn_registration_t::def_str
u8 * def_str
Behavior definition (i.e.
Definition: sr.h:172
ip6srv_combo_header_t::ip
ip6_header_t ip
Definition: sr.h:62
type
vl_api_fib_path_type_t type
Definition: fib_types.api:123
ip6_sr_policy_t::plugin
u16 plugin
Definition: sr.h:114
sr_localsid_fn_registration_t
SR LocalSID behavior registration.
Definition: sr.h:164
ip6_sr_main_t::sr_localsids_index_hash
mhash_t sr_localsids_index_hash
Definition: sr.h:276
ip6_sr_sl_t::rewrite_bsid
u8 * rewrite_bsid
Precomputed rewrite header for bindingSID.
Definition: sr.h:77
prefix
vl_api_prefix_t prefix
Definition: ip.api:175
ip6_sr_localsid_t::usid_next_index
u8 usid_next_index
Definition: sr.h:153