FD.io VPP  v19.08-27-gf4dcae4
Vector Packet Processing
node.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017 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 #ifndef __included_vnet_bonding_node_h__
16 #define __included_vnet_bonding_node_h__
17 
18 #include <vlib/vlib.h>
19 #include <vlib/unix/unix.h>
20 #include <vppinfra/format.h>
21 #include <vppinfra/hash.h>
22 #include <vnet/ethernet/ethernet.h>
23 #include <vnet/interface.h>
24 
25 #define LACP_FAST_PERIODIC_TIMER 1.0
26 #define LACP_SHORT_TIMOUT_TIME (LACP_FAST_PERIODIC_TIMER * 3)
27 #define LACP_SLOW_PERIODIC_TIMER 30.0
28 #define LACP_LONG_TIMOUT_TIME (LACP_SLOW_PERIODIC_TIMER * 3)
29 
30 #ifndef MIN
31 #define MIN(x,y) (((x)<(y))?(x):(y))
32 #endif
33 
34 #define BOND_MODULO_SHORTCUT(a) \
35  (is_pow2 (a))
36 
37 #define foreach_bond_mode \
38  _ (1, ROUND_ROBIN, "round-robin") \
39  _ (2, ACTIVE_BACKUP, "active-backup") \
40  _ (3, XOR, "xor") \
41  _ (4, BROADCAST, "broadcast") \
42  _ (5, LACP, "lacp")
43 
44 typedef enum
45 {
46 #define _(v, f, s) BOND_MODE_##f = v,
48 #undef _
49 } bond_mode_t;
50 
51 /* configurable load-balances */
52 #define foreach_bond_lb \
53  _ (2, L23, "l23", l23) \
54  _ (1, L34 , "l34", l34) \
55  _ (0, L2, "l2", l2)
56 
57 /* load-balance functions implemented in bond-output */
58 #define foreach_bond_lb_algo \
59  _ (0, L2, "l2", l2) \
60  _ (1, L34 , "l34", l34) \
61  _ (2, L23, "l23", l23) \
62  _ (3, RR, "round-robin", round_robin) \
63  _ (4, BC, "broadcast", broadcast) \
64  _ (5, AB, "active-backup", active_backup)
65 
66 typedef enum
67 {
68 #define _(v, f, s, p) BOND_LB_##f = v,
70 #undef _
72 
73 typedef enum
74 {
77 
78 typedef struct
79 {
82  u8 hw_addr[6];
84  u8 lb;
86  /* return */
88  int rv;
91 
92 typedef struct
93 {
94  /* slave's sw_if_index */
96  /* bond's sw_if_index */
100  /* return */
101  int rv;
104 
105 typedef struct
106 {
108  /* return */
109  int rv;
112 
113 /** BOND interface details struct */
114 typedef struct
115 {
118  u8 interface_name[64];
125 
126 /** slave interface details struct */
127 typedef struct
128 {
130  u8 interface_name[64];
135 
136 typedef CLIB_PACKED (struct
137  {
138  u16 system_priority;
139  u8 system[6];
140  u16 key; u16 port_priority; u16 port_number;
141  u8 state;
142  }) lacp_port_info_t;
143 
144 typedef struct
145 {
146  CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
150 
151 typedef struct
152 {
155 
156 typedef struct
157 {
161 
162  /* This flag works for active-backup mode only
163  and marks if the working port is local numa. */
165  /* current working sw_if_index in active-bakeup mode. */
167  /* the last slave index for the rr lb */
169 
170  /* Real device instance in interface vector */
172 
173  /* Interface ID being shown to user */
175 
178 
179  /* Configured slaves */
181 
182  /* Slaves that are in DISTRIBUTING state */
184 
185  /* rapidly find an active slave */
187 
188  lacp_port_info_t partner;
189  lacp_port_info_t actor;
191 
192  /* If the flag numa_only is set, it means that only slaves
193  on local numa node works for lacp mode if have at least one,
194  otherwise it works as usual. */
196 
197  /* How many slaves on local numa node are there in lacp mode? */
199 
203  u8 hw_address[6];
204 
206 } bond_if_t;
207 
208 typedef struct
209 {
210  u8 persistent_hw_address[6];
211 
212  /* neighbor's vlib software interface index */
214 
215  /* Neighbor time-to-live (usually 3s) */
217 
218  /* 1 = interface is configured with long timeout (60s) */
220 
221  /* 1 = debug is on; 0 = debug is off */
223 
224  /* tx packet template id for this neighbor */
226 
227  /* Info we actually keep about each neighbor */
228 
229  /* Jenkins hash optimization: avoid tlv scan, send short keepalive msg */
232 
233  /* last received lacp packet, for the J-hash optimization */
235 
236  /* last marker packet */
238 
239  /* neighbor vlib hw_if_index */
241 
242  /* actor does not initiate the protocol exchange */
244 
245  /* Partner port information */
246  lacp_port_info_t partner;
247  lacp_port_info_t partner_admin;;
248 
249  /* Actor port information */
250  lacp_port_info_t actor;
251  lacp_port_info_t actor_admin;
252 
253  /* Need To Transmit flag */
255 
256  /* Link has been established and Aggregate Port is operable */
258 
259  /* Initialization or reinitialization of the lacp protocol entity */
261 
262  /* Aggregation Port is operating the lacp */
264 
265  /* MUX to indicate to the Selection Logic wait_while_timer expired */
267 
268  /* Selection Logic indicates al Aggregation Ports attached */
270 
271  /* Selection Logic selected an Aggregator */
272  int selected;
273 
274  /* RX machine indicates an Aggregation Port in PORT_DISABLED state */
276 
277  /* timer used to detect whether received protocol information has expired */
279 
280  /* timer used to detect actor churn states */
282 
283  /* time last lacpdu was sent */
285 
286  /* time last lacpdu was received */
288 
289  /* time last marker pdu was sent */
291 
292  /* time last marker pdu was received */
294 
295  /* timer used to generate periodic transmission */
297 
298  /* timer used to detect partner churn states */
300 
301  /* provides hysteresis before performing an aggregation change */
303 
304  /* Implemention variables, not in the spec */
305  int rx_state;
306  int tx_state;
309 
310  /* actor admin key */
312 
314 
316 
318 
319  /* bond mode */
321 
322  /* good lacp pdu received */
324 
325  /* bad lacp pdu received */
327 
328  /* pdu sent */
330 
331  /* good marker pdu received */
333 
334  /* bad marker pdu received */
336 
337  /* pdu sent */
339 } slave_if_t;
340 
342  slave_if_t * sif, u8 enable);
343 
344 typedef struct
345 {
346  /* pool of bonding interfaces */
348 
349  /* record used interface IDs */
351 
352  /* pool of slave interfaces */
354 
355  /* rapidly find a bond by vlib software interface index */
357 
358  /* convenience variables */
361 
362  /* lacp plugin is loaded */
364 
366 
368 
370 } bond_main_t;
371 
372 /* bond packet trace capture */
373 typedef struct
374 {
379 
381  vlib_node_runtime_t * node, bond_if_t * bif,
382  vlib_buffer_t * b0, uword slave_count);
383 
384 typedef struct
385 {
388 
392 extern bond_main_t bond_main;
393 
395  slave_if_t * sif);
397 u8 *format_bond_interface_name (u8 * s, va_list * args);
398 
401 void bond_enslave (vlib_main_t * vm, bond_enslave_args_t * args);
403 int bond_dump_ifs (bond_interface_details_t ** out_bondids);
405  u32 bond_sw_if_index);
406 
407 static inline uword
408 unformat_bond_mode (unformat_input_t * input, va_list * args)
409 {
410  u8 *r = va_arg (*args, u8 *);
411 
412  if (0);
413 #define _(v, f, s) else if (unformat (input, s)) *r = BOND_MODE_##f;
415 #undef _
416  else
417  return 0;
418 
419  return 1;
420 }
421 
422 static inline u8 *
423 format_bond_mode (u8 * s, va_list * args)
424 {
425  u32 i = va_arg (*args, u32);
426  u8 *t = 0;
427 
428  switch (i)
429  {
430 #define _(v, f, s) case BOND_MODE_##f: t = (u8 *) s; break;
432 #undef _
433  default:
434  return format (s, "unknown");
435  }
436  return format (s, "%s", t);
437 }
438 
439 static inline uword
441 {
442  u8 *r = va_arg (*args, u8 *);
443 
444  if (0);
445 #define _(v, f, s, p) else if (unformat (input, s)) *r = BOND_LB_##f;
447 #undef _
448  else
449  return 0;
450 
451  return 1;
452 }
453 
454 static inline u8 *
455 format_bond_load_balance (u8 * s, va_list * args)
456 {
457  u32 i = va_arg (*args, u32);
458  u8 *t = 0;
459 
460  switch (i)
461  {
462 #define _(v, f, s, p) case BOND_LB_##f: t = (u8 *) s; break;
464 #undef _
465  default:
466  return format (s, "unknown");
467  }
468  return format (s, "%s", t);
469 }
470 
471 static inline void
473 {
474  bond_main_t *bm = &bond_main;
475 
476  bm->lacp_plugin_loaded = 1;
477  bm->lacp_enable_disable = func;
478 }
479 
480 static inline bond_if_t *
482 {
483  bond_main_t *bm = &bond_main;
484  uword *p;
485 
486  p = hash_get (bm->bond_by_sw_if_index, sw_if_index);
487  if (!p)
488  {
489  return 0;
490  }
491  return pool_elt_at_index (bm->interfaces, p[0]);
492 }
493 
494 static inline bond_if_t *
496 {
497  bond_main_t *bm = &bond_main;
498 
499  return pool_elt_at_index (bm->interfaces, dev_instance);
500 }
501 
502 static inline slave_if_t *
504 {
505  bond_main_t *bm = &bond_main;
506  slave_if_t *sif = 0;
507  uword p;
508 
509  if (sw_if_index < vec_len (bm->slave_by_sw_if_index))
510  {
512  if (p)
513  sif = pool_elt_at_index (bm->neighbors, p >> 1);
514  }
515 
516  return sif;
517 }
518 
519 #endif /* __included_vnet_bonding_node_h__ */
520 
521 /*
522  * fd.io coding-style-patch-verification: ON
523  *
524  * Local Variables:
525  * eval: (c-set-style "gnu")
526  * End:
527  */
vnet_main_t * vnet_main
Definition: node.h:360
bond_mode_t
Definition: node.h:44
u32 dev_instance
Definition: node.h:171
u32 group
Definition: node.h:200
u32 hw_if_index
Definition: node.h:176
static uword unformat_bond_mode(unformat_input_t *input, va_list *args)
Definition: node.h:408
#define CLIB_CACHE_LINE_ALIGN_MARK(mark)
Definition: cache.h:60
u64 marker_pdu_sent
Definition: node.h:338
u8 individual_aggregator
Definition: node.h:190
int selected
Definition: node.h:272
u8 last_packet_signature_valid
Definition: node.h:230
u8 lb
Definition: node.h:160
clib_error_t * error
Definition: node.h:89
f64 last_lacpdu_recd_time
Definition: node.h:287
uword * id_used
Definition: node.h:350
unsigned long u64
Definition: types.h:89
static bond_if_t * bond_get_master_by_sw_if_index(u32 sw_if_index)
Definition: node.h:481
u8 is_long_timeout
Definition: node.h:99
u8 * last_marker_pkt
Definition: node.h:237
void(* lacp_enable_disable_func)(vlib_main_t *vm, bond_if_t *bif, slave_if_t *sif, u8 enable)
Definition: node.h:341
int tx_state
Definition: node.h:306
int i
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:424
lacp_enable_disable_func lacp_enable_disable
Definition: node.h:365
u64 pdu_received
Definition: node.h:323
struct _vnet_device_class vnet_device_class_t
u32 id
Definition: node.h:174
f64 current_while_timer
Definition: node.h:278
u8 mode
Definition: node.h:320
unsigned char u8
Definition: types.h:56
bond_per_thread_data_t * per_thread_data
Definition: node.h:369
typedef CLIB_PACKED(struct{u16 system_priority;u8 system[6];u16 key;u16 port_priority;u16 port_number;u8 state;}) lacp_port_info_t
#define foreach_bond_lb
Definition: node.h:52
u8 ntt
Definition: node.h:254
double f64
Definition: types.h:142
f64 periodic_timer
Definition: node.h:296
u32(* load_balance_func)(vlib_main_t *vm, vlib_node_runtime_t *node, bond_if_t *bif, vlib_buffer_t *b0, uword slave_count)
Definition: node.h:380
static void bond_register_callback(lacp_enable_disable_func func)
Definition: node.h:472
f32 ttl_in_seconds
Definition: node.h:216
u8 numa_only
Definition: node.h:195
u8 is_local_numa
Definition: node.h:164
i64 word
Definition: types.h:111
vl_api_interface_index_t sw_if_index
Definition: gre.api:50
u8 use_custom_mac
Definition: node.h:202
f64 last_marker_pdu_recd_time
Definition: node.h:293
bond_main_t bond_main
Definition: node.c:25
u32 sw_if_index
Definition: node.h:177
u64 bad_pdu_received
Definition: node.h:326
uword * active_slave_by_sw_if_index
Definition: node.h:186
u64 marker_pdu_received
Definition: node.h:332
vlib_main_t * vlib_main
Definition: node.h:359
lacp_port_info_t actor
Definition: node.h:189
vhost_vring_state_t state
Definition: vhost_user.h:146
unsigned int u32
Definition: types.h:88
u32 lb_rr_last_index
Definition: node.h:168
f64 partner_churn_timer
Definition: node.h:299
#define VLIB_FRAME_SIZE
Definition: node.h:376
void bond_create_if(vlib_main_t *vm, bond_create_if_args_t *args)
Definition: cli.c:334
u8 * last_rx_pkt
Definition: node.h:234
bond_load_balance_t
Definition: node.h:66
#define hash_get(h, key)
Definition: hash.h:249
vnet_device_class_t bond_dev_class
u8 ready
Definition: node.h:269
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:514
u8 admin_up
Definition: node.h:158
int bond_delete_if(vlib_main_t *vm, u32 sw_if_index)
Definition: cli.c:285
f64 last_marker_pdu_sent_time
Definition: node.h:290
struct _unformat_input_t unformat_input_t
unsigned short u16
Definition: types.h:57
u8 port_moved
Definition: node.h:275
static uword unformat_bond_load_balance(unformat_input_t *input, va_list *args)
Definition: node.h:440
bond_if_t * interfaces
Definition: node.h:347
vlib_node_registration_t bond_input_node
(constructor) VLIB_REGISTER_NODE (bond_input_node)
Definition: node.c:362
u8 is_long_timeout
Definition: node.h:219
int ptx_state
Definition: node.h:308
u32 marker_tx_id
Definition: node.h:313
u32 * slaves
Definition: node.h:180
u8 is_passive
Definition: node.h:243
u8 mode
Definition: node.h:159
u32 sw_if_index
Definition: node.h:213
word n_numa_slaves
Definition: node.h:198
vlib_main_t * vm
Definition: buffer.c:312
lacp_port_info_t partner
Definition: node.h:246
uword * bond_by_sw_if_index
Definition: node.h:356
ethernet_header_t ethernet
Definition: node.h:375
u32 group
Definition: node.h:311
clib_spinlock_t lockp
Definition: node.h:205
int rx_state
Definition: node.h:305
void bond_detach_slave(vlib_main_t *vm, bond_detach_slave_args_t *args)
Definition: cli.c:731
f64 last_lacpdu_sent_time
Definition: node.h:284
BOND interface details struct.
Definition: node.h:114
#define foreach_bond_lb_algo
Definition: node.h:58
void bond_enable_collecting_distributing(vlib_main_t *vm, slave_if_t *sif)
Definition: cli.c:103
uword * slave_by_sw_if_index
Definition: node.h:367
u8 loopback_port
Definition: node.h:317
u32 sw_if_index_working
Definition: node.h:166
u8 lacp_plugin_loaded
Definition: node.h:363
static bond_if_t * bond_get_master_by_dev_instance(u32 dev_instance)
Definition: node.h:495
u32 bif_dev_instance
Definition: node.h:315
u8 debug
Definition: node.h:222
u32 * active_slaves
Definition: node.h:183
u8 ready_n
Definition: node.h:266
bond_send_garp_na_process_event_t
Definition: node.h:73
clib_error_t * error
Definition: node.h:102
float f32
Definition: types.h:143
clib_error_t * error
Definition: node.h:110
int bond_dump_ifs(bond_interface_details_t **out_bondids)
Definition: cli.c:172
struct _vlib_node_registration vlib_node_registration_t
u8 lacp_enabled
Definition: node.h:263
u64 pdu_sent
Definition: node.h:329
u8 begin
Definition: node.h:260
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
u8 * format_bond_interface_name(u8 *s, va_list *args)
Definition: device.c:69
VLIB buffer representation.
Definition: buffer.h:102
uword * port_number_bitmap
Definition: node.h:201
u64 uword
Definition: types.h:112
typedef key
Definition: ipsec.api:245
lacp_port_info_t partner_admin
Definition: node.h:247
static u8 * format_bond_mode(u8 *s, va_list *args)
Definition: node.h:423
slave interface details struct
Definition: node.h:127
#define foreach_bond_mode
Definition: node.h:37
void bond_disable_collecting_distributing(vlib_main_t *vm, slave_if_t *sif)
Definition: cli.c:25
slave_if_t * neighbors
Definition: node.h:353
f64 actor_churn_timer
Definition: node.h:281
static u8 * format_bond_load_balance(u8 *s, va_list *args)
Definition: node.h:455
u8 port_enabled
Definition: node.h:257
vlib_node_registration_t bond_process_node
(constructor) VLIB_REGISTER_NODE (bond_process_node)
Definition: device.c:790
static slave_if_t * bond_get_slave_by_sw_if_index(u32 sw_if_index)
Definition: node.h:503
void bond_enslave(vlib_main_t *vm, bond_enslave_args_t *args)
Definition: cli.c:542
lacp_port_info_t actor_admin
Definition: node.h:251
u32 bond_sw_if_index
Definition: node.h:377
uword last_packet_signature
Definition: node.h:231
u8 packet_template_index
Definition: node.h:225
f64 wait_while_timer
Definition: node.h:302
int bond_dump_slave_ifs(slave_interface_details_t **out_slaveids, u32 bond_sw_if_index)
Definition: cli.c:205
load_balance_func load_balance
Definition: node.h:386
u32 hw_if_index
Definition: node.h:240
int mux_state
Definition: node.h:307
u64 marker_bad_pdu_received
Definition: node.h:335
bond_per_port_queue_t * per_port_queue
Definition: node.h:153
lacp_port_info_t partner
Definition: node.h:188