aboutsummaryrefslogtreecommitdiffstats
path: root/src/vlibmemory
AgeCommit message (Expand)AuthorFilesLines
2023-07-06api: memclnt - Mark old message versions as deprecatedOndrej Fabry1-0/+4
2023-04-20api: fix trace_plugin_msg_ids segv in trace dumpMatthew Smith2-1/+2
2023-01-27api: keep AddressSanitizer happyBenoît Ganne1-10/+11
2023-01-27api: keep AddressSanitizer happyBenoît Ganne2-6/+8
2023-01-04vapi: add vapi_stop_rx_thread()Matthew Smith2-4/+10
2022-12-07api: avoid sigpipe for unruly api clientOle Troan1-1/+7
2022-09-29api: deprecate vl_msg_api_set_handlersDamjan Marion4-22/+60
2022-09-26api: replace print functions wth formatDamjan Marion6-91/+46
2022-09-26api: keep api common code in vlibapiDamjan Marion6-976/+5
2022-08-30vlib: fix coverity 274750, part 2Andrew Yourtchenko1-1/+1
2022-08-17vlib: fix coverity 274750Andrew Yourtchenko1-1/+4
2022-05-19api: refactor api data storageDamjan Marion7-127/+87
2022-05-11api: revert the changes to atexit for shared memory clientAndrew Yourtchenko1-1/+1
2022-05-02vapi: support api clients within vpp processOle Troan2-2/+103
2022-04-15api: fix infinite loop in show api dump CLIAndrew Yourtchenko1-1/+1
2022-04-05vppinfra: refactor address sanitizerDamjan Marion4-7/+7
2022-04-04vppinfra: make _vec_len() read-onlyDamjan Marion4-12/+12
2022-03-23api: better segregate client and server codeBenoît Ganne2-5/+144
2022-03-16vpp: binary-api CLI weak linking workaroundDamjan Marion1-1/+1
2022-03-04api: harden api trace parsingBenoît Ganne1-23/+22
2022-03-01vat2: include src/vlibmemory/vlib.api messagesDave Wallace1-0/+3
2021-12-16api: Fix reaper functions for socket clientsNeale Ranns1-1/+2
2021-12-14api: verify message size on receiptKlement Sekera4-31/+58
2021-10-27api: fix buffer overflow in vl_msg_replay_jsonBenoît Ganne1-0/+4
2021-10-18interface: add api test fileFilip Tehlar5-64/+43
2021-10-12api: cli coverity fixesFlorin Coras1-2/+2
2021-10-11api: set missing handlersFilip Tehlar1-0/+3
2021-09-28api: API trace improvementsFilip Tehlar8-155/+485
2021-09-28misc: vpe.api messages dynamically allocatedOle Troan2-1/+9
2021-09-27misc: api move continuedFlorin Coras3-0/+61
2021-09-27misc: move part of vpe apis to vlibmemoryFlorin Coras5-601/+1674
2021-07-14api: fix memory error in multi-thread environmentXiaoming Jiang1-1/+7
2021-06-22api: asan: use vec_set_len() so ASan can keep track of buffer lenBenoît Ganne1-6/+6
2021-06-16api: remove custom dumpFilip Tehlar1-32/+3
2021-05-26api: socket client connect set to blockingFlorin Coras1-1/+1
2021-03-26vlib: split vlib_main_t into global and per-threadDamjan Marion1-2/+3
2021-03-26vlib: introduce vlib_get_elog_main()Damjan Marion1-11/+16
2021-03-26vlib: introduce vlib_get_main_by_index(), vlib_get_n_threads()Damjan Marion1-2/+2
2021-03-19api: Avoid the usage of the freed registration by the API callsAndrew Yourtchenko1-23/+51
2021-03-03api: fix crash when cf removedwanghanlin1-2/+16
2021-01-20vlib: fix build with muslNathan Moos1-0/+1
2020-12-28vlib: add missing file template descriptionsPaul Vinciguerra1-0/+2
2020-12-14misc: move to new pool_foreach macrosDamjan Marion3-13/+13
2020-10-21svm: fix ASAN annotations for external chunksBenoît Ganne1-0/+5
2020-09-30svm: harmonize ssvm namesFlorin Coras2-3/+3
2020-08-18api: retry sending fd on EAGAINFlorin Coras1-1/+2
2020-07-19api: call api reaper callbacks for socket clientsDave Barach2-5/+7
2020-06-17docs: add more FEATURE.yaml documentationDave Barach1-0/+13
2020-05-27dhcp: vat support for the dhcp_client_dump APIDave Barach2-0/+12
2020-05-25api: add new stream message conventionOle Troan1-0/+22
earn") \ _(VTR, "l2-input-vtr") \ _(L2_IP_QOS_RECORD, "l2-ip-qos-record") \ _(VPATH, "vpath-input-l2") \ _(ACL, "l2-input-acl") \ _(POLICER_CLAS, "l2-policer-classify") \ _(INPUT_FEAT_ARC, "l2-input-feat-arc") \ _(INPUT_CLASSIFY, "l2-input-classify") \ _(SPAN, "span-l2-input") /* Feature bitmap positions */ typedef enum { #define _(sym,str) L2INPUT_FEAT_##sym##_BIT, foreach_l2input_feat #undef _ L2INPUT_N_FEAT } l2input_feat_t; STATIC_ASSERT (L2INPUT_N_FEAT <= 32, "too many l2 input features"); /* Feature bit masks */ typedef enum { L2INPUT_FEAT_NONE = 0, #define _(sym,str) L2INPUT_FEAT_##sym = (1<<L2INPUT_FEAT_##sym##_BIT), foreach_l2input_feat #undef _ L2INPUT_VALID_MASK = #define _(sym,str) L2INPUT_FEAT_##sym | foreach_l2input_feat #undef _ 0 } l2input_feat_masks_t; STATIC_ASSERT ((u64) L2INPUT_VALID_MASK == (1ull << L2INPUT_N_FEAT) - 1, ""); /** Return an array of strings containing graph node names of each feature */ char **l2input_get_feat_names (void); /* arg0 - u32 feature_bitmap, arg1 - u32 verbose */ u8 *format_l2_input_feature_bitmap (u8 * s, va_list * args); u8 *format_l2_input_features (u8 * s, va_list * args); u8 *format_l2_input (u8 * s, va_list * args); static_always_inline u8 bd_feature_flood (l2_bridge_domain_t * bd_config) { return ((bd_config->feature_bitmap & L2INPUT_FEAT_FLOOD) == L2INPUT_FEAT_FLOOD); } static_always_inline u8 bd_feature_uu_flood (l2_bridge_domain_t * bd_config) { return ((bd_config->feature_bitmap & L2INPUT_FEAT_UU_FLOOD) == L2INPUT_FEAT_UU_FLOOD); } static_always_inline u8 bd_feature_forward (l2_bridge_domain_t * bd_config) { return ((bd_config->feature_bitmap & L2INPUT_FEAT_FWD) == L2INPUT_FEAT_FWD); } static_always_inline u8 bd_feature_learn (l2_bridge_domain_t * bd_config) { return ((bd_config->feature_bitmap & L2INPUT_FEAT_LEARN) == L2INPUT_FEAT_LEARN); } static_always_inline u8 bd_feature_arp_term (l2_bridge_domain_t * bd_config) { return ((bd_config->feature_bitmap & L2INPUT_FEAT_ARP_TERM) == L2INPUT_FEAT_ARP_TERM); } static_always_inline u8 bd_feature_arp_ufwd (l2_bridge_domain_t * bd_config) { return ((bd_config->feature_bitmap & L2INPUT_FEAT_ARP_UFWD) == L2INPUT_FEAT_ARP_UFWD); } static inline bool l2_input_is_bridge (const l2_input_config_t * input) { return (input->flags & L2_INPUT_FLAG_BRIDGE); } static inline bool l2_input_is_xconnect (const l2_input_config_t * input) { return (input->flags & L2_INPUT_FLAG_XCONNECT); } static inline bool l2_input_is_bvi (const l2_input_config_t * input) { return (input->flags & L2_INPUT_FLAG_BVI); } static_always_inline u8 l2_input_seq_num (u32 sw_if_index) { l2_input_config_t *input; input = vec_elt_at_index (l2input_main.configs, sw_if_index); return input->seq_num; } /** Masks for eliminating features that do not apply to a packet */ /** Get a pointer to the config for the given interface */ l2_input_config_t *l2input_intf_config (u32 sw_if_index); /* Enable (or disable) the feature in the bitmap for the given interface */ u32 l2input_intf_bitmap_enable (u32 sw_if_index, l2input_feat_masks_t feature_bitmap, u32 enable); /* Sets modifies flags from a bridge domain */ u32 l2input_set_bridge_features (u32 bd_index, u32 feat_mask, u32 feat_value); void l2input_interface_mac_change (u32 sw_if_index, const u8 * old_address, const u8 * new_address); void l2_input_seq_num_inc (u32 sw_if_index); walk_rc_t l2input_recache (u32 bd_index, u32 sw_if_index); #define MODE_L3 0 #define MODE_L2_BRIDGE 1 #define MODE_L2_XC 2 #define MODE_L2_CLASSIFY 3 #define MODE_ERROR_ETH 1 #define MODE_ERROR_BVI_DEF 2 u32 set_int_l2_mode (vlib_main_t * vm, vnet_main_t * vnet_main, u32 mode, u32 sw_if_index, u32 bd_index, l2_bd_port_type_t port_type, u32 shg, u32 xc_sw_if_index); static inline u16 vnet_update_l2_len (vlib_buffer_t *b) { ethernet_header_t *eth; u16 ethertype; u8 vlan_count = 0; /* point at current l2 hdr */ eth = vlib_buffer_get_current (b); /* * l2-output pays no attention to this * but the tag push/pop code on an l2 subif needs it. * * Determine l2 header len, check for up to 2 vlans */ vnet_buffer (b)->l2.l2_len = sizeof (ethernet_header_t); ethertype = clib_net_to_host_u16 (eth->type); if (ethernet_frame_is_tagged (ethertype)) { ethernet_vlan_header_t *vlan; vnet_buffer (b)->l2.l2_len += sizeof (*vlan); vlan_count = 1; vlan = (void *) (eth + 1); ethertype = clib_net_to_host_u16 (vlan->type); if (ethertype == ETHERNET_TYPE_VLAN) { vnet_buffer (b)->l2.l2_len += sizeof (*vlan); vlan_count = 2; } } ethernet_buffer_set_vlan_count (b, vlan_count); return (ethertype); } /* * Compute flow hash of an ethernet packet, use 5-tuple hash if L3 packet * is ip4 or ip6. Otherwise hash on smac/dmac/etype. * The vlib buffer current pointer is expected to be at ethernet header * and vnet l2.l2_len is expected to be setup already. */ static inline u32 vnet_l2_compute_flow_hash (vlib_buffer_t * b) { ethernet_header_t *eh = vlib_buffer_get_current (b); u8 *l3h = (u8 *) eh + vnet_buffer (b)->l2.l2_len; u16 ethertype = clib_net_to_host_u16 (*(u16 *) (l3h - 2)); if (ethertype == ETHERNET_TYPE_IP4) return ip4_compute_flow_hash ((ip4_header_t *) l3h, IP_FLOW_HASH_DEFAULT); else if (ethertype == ETHERNET_TYPE_IP6) return ip6_compute_flow_hash ((ip6_header_t *) l3h, IP_FLOW_HASH_DEFAULT); else { u32 a, b, c; u32 *ap = (u32 *) & eh->dst_address[2]; u32 *bp = (u32 *) & eh->src_address[2]; a = *ap; b = *bp; c = ethertype; hash_v3_mix32 (a, b, c); hash_v3_finalize32 (a, b, c); return c; } } #endif /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */