25 #include <vpp/app/version.h> 36 #include <acl/acl.api_enum.h> 37 #include <acl/acl.api_types.h> 39 #define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__) 46 #define REPLY_MSG_ID_BASE am->msg_id_base 58 .version = VPP_BUILD_VER,
59 .description =
"Access Control Lists (ACL)",
70 u16 *v = va_arg (*va,
u16 *);
71 char *
fmt = va_arg (*va,
char *);
73 for (i = 0; i <
vec_len (v); i++)
87 int msg_size =
sizeof (*rmp);
116 rmp->
vpe_pid = ntohl (getpid ());
149 s =
format (s,
"permit+reflect");
152 s =
format (s,
"action %d", action);
163 u8 *out0 =
format (0,
"acl-index %u count %u tag {%s}\n", acl_index,
167 for (j = 0; j <
vec_len (acl_rules); j++)
170 out0 =
format (out0,
" %9d: %s ", j, r->
is_ipv6 ?
"ipv6" :
"ipv4");
195 out0 =
format (out0,
"\n");
206 int msg_size =
sizeof (*rmp);
214 memset (rmp, 0, msg_size);
216 ntohs (VL_API_ACL_PLUGIN_GET_CONN_TABLE_MAX_ENTRIES_REPLY +
240 u32 **ppolicy_epoch_by_swi =
256 if (acl_num <
vec_len (*p_swi_vec_by_acl))
291 format (0,
"/acl/%d/matches%c", i, 0);
317 u32 * acl_list_index,
u8 * tag)
326 clib_warning (
"API dbg: acl_add_list index %d tag %s", *acl_list_index,
330 for (i = 0; i <
count; i++)
333 return VNET_API_ERROR_INVALID_SRC_ADDRESS;
335 return VNET_API_ERROR_INVALID_DST_ADDRESS;
338 return VNET_API_ERROR_INVALID_VALUE_2;
341 return VNET_API_ERROR_INVALID_VALUE_2;
344 if (*acl_list_index != ~0)
351 (
"acl-plugin-error: Trying to replace nonexistent ACL %d (tag %s)",
352 *acl_list_index, tag);
353 return VNET_API_ERROR_NO_SUCH_ENTRY;
359 (
"acl-plugin-warning: supplied no rules for ACL %d (tag %s)",
360 *acl_list_index, tag);
367 for (i = 0; i <
count; i++)
372 r->
is_ipv6 = rules[
i].src_prefix.address.af;
377 r->
proto = rules[
i].proto;
386 if (~0 == *acl_list_index)
392 *acl_list_index = a - am->
acls;
396 a = am->
acls + *acl_list_index;
401 a->
rules = acl_new_rules;
402 memcpy (a->
tag, tag, sizeof (a->
tag));
418 if (acl_index <
vec_len (foo_index_vec_by_acl))
436 return VNET_API_ERROR_NO_SUCH_ENTRY;
439 return VNET_API_ERROR_ACL_IN_USE_INBOUND;
441 return VNET_API_ERROR_ACL_IN_USE_OUTBOUND;
444 return VNET_API_ERROR_ACL_IN_USE_BY_LOOKUP_CONTEXT;
464 while ((0ULL == *p64) && ((
u8 *) p64 - p) <
size)
468 return (p64 - (
u64 *) p) / 2;
473 u32 mask_len,
u32 next_table_index,
474 u32 miss_next_index,
u32 * table_index,
480 u32 match = (mask_len / 16) - skip;
481 u8 *skip_mask_ptr = mask + 16 * skip;
482 u32 current_data_flag = 0;
483 int current_data_offset = 0;
489 memory_size, skip, match,
490 next_table_index, miss_next_index,
491 table_index, current_data_flag,
492 current_data_offset, is_add,
504 return vec_len (whitelist) > 0;
525 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
534 sw_if_index, enable_disable, 0, 0);
538 sw_if_index, enable_disable, 0, 0);
544 "acl-plugin-in-nonip-l2", sw_if_index,
545 enable_disable, 0, 0);
561 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
571 sw_if_index, enable_disable, 0, 0);
576 sw_if_index, enable_disable, 0, 0);
581 "acl-plugin-out-nonip-l2", sw_if_index,
582 enable_disable, 0, 0);
601 int is_input,
int enable_disable)
617 u8 is_input,
u32 * vec_acl_list_index,
618 int *may_clear_sessions)
621 uword *seen_acl_bitmap = 0;
622 uword *old_seen_acl_bitmap = 0;
623 uword *change_acl_bitmap = 0;
630 (
"API dbg: acl_interface_set_inout_acl_list: sw_if_index %d is_input %d acl_vec: [%U]",
631 sw_if_index, is_input,
format_vec32, vec_acl_list_index,
"%d");
639 rv = VNET_API_ERROR_NO_SUCH_ENTRY;
645 clib_warning (
"ERROR: ACL %d being applied twice", *pacln);
646 rv = VNET_API_ERROR_ENTRY_ALREADY_EXISTS;
653 u32 **pinout_lc_index_by_sw_if_index =
655 output_lc_index_by_sw_if_index;
657 u32 ***pinout_acl_vec_by_sw_if_index =
659 output_acl_vec_by_sw_if_index;
661 u32 ***pinout_sw_if_index_vec_by_acl =
663 output_sw_if_index_vec_by_acl;
665 vec_validate ((*pinout_acl_vec_by_sw_if_index), sw_if_index);
669 vec_foreach (pacln, (*pinout_acl_vec_by_sw_if_index)[sw_if_index])
671 old_seen_acl_bitmap =
clib_bitmap_set (old_seen_acl_bitmap, *pacln, 1);
677 clib_warning (
"bitmaps: old seen %U new seen %U changed %U",
678 format_bitmap_hex, old_seen_acl_bitmap, format_bitmap_hex,
679 seen_acl_bitmap, format_bitmap_hex, change_acl_bitmap);
685 if (acln <
vec_len((*pinout_sw_if_index_vec_by_acl))) {
686 int index =
vec_search((*pinout_sw_if_index_vec_by_acl)[acln], sw_if_index);
687 vec_del1((*pinout_sw_if_index_vec_by_acl)[acln], index);
692 vec_add1((*pinout_sw_if_index_vec_by_acl)[acln], sw_if_index);
697 vec_free ((*pinout_acl_vec_by_sw_if_index)[sw_if_index]);
709 if (may_clear_sessions && *may_clear_sessions
713 *may_clear_sessions = 0;
722 if (
vec_len (vec_acl_list_index) > 0)
729 sw_if_index, is_input);
730 (*pinout_lc_index_by_sw_if_index)[
sw_if_index] = lc_index;
732 acl_plugin.set_acl_vec_for_context (lc_index, vec_acl_list_index);
736 if (~0 != (*pinout_lc_index_by_sw_if_index)[sw_if_index])
739 put_lookup_context_index ((*pinout_lc_index_by_sw_if_index)
741 (*pinout_lc_index_by_sw_if_index)[
sw_if_index] = ~0;
746 vec_len (vec_acl_list_index) > 0);
757 int *may_clear_sessions)
771 int may_clear_sessions = 1;
773 int error_already_applied = is_input ? VNET_API_ERROR_ACL_IN_USE_INBOUND
774 : VNET_API_ERROR_ACL_IN_USE_OUTBOUND;
776 u32 ***pinout_acl_vec_by_sw_if_index =
778 output_acl_vec_by_sw_if_index;
782 vec_validate ((*pinout_acl_vec_by_sw_if_index), sw_if_index);
788 rv = error_already_applied;
792 acl_vec =
vec_dup ((*pinout_acl_vec_by_sw_if_index)[sw_if_index]);
797 if (sw_if_index >=
vec_len (*pinout_acl_vec_by_sw_if_index))
799 rv = VNET_API_ERROR_NO_SUCH_ENTRY;
808 rv = VNET_API_ERROR_NO_SUCH_ENTRY;
812 acl_vec =
vec_dup ((*pinout_acl_vec_by_sw_if_index)[sw_if_index]);
817 &may_clear_sessions);
890 for (i = 0; i <
vec_len (mv); i++)
893 && (0 == memcmp (mv[i].mac_mask, mac_mask, 6)))
908 unsigned int mac_bits_set = 0;
909 unsigned int mac_byte;
911 for (i = 0; i < 6; i++)
914 for (; mac_byte; mac_byte >>= 1)
915 mac_bits_set += mac_byte & 1;
965 return (is_permit == 3);
975 u32 match_type_index;
982 for (i = 0; i < a->
count; i++)
990 match_type_index =
vec_len (mvec);
992 memcpy (mvec[match_type_index].mac_mask,
1010 mvec[match_type_index].
count++;
1018 out_last_table = ~0;
1025 u32 *last_tag_table;
1026 u32 *out_last_tag_table;
1058 for (tags = 2; tags >= 0; tags--)
1062 memcpy (&mask[6], mt->
mac_mask, 6);
1088 memcpy (&mask[l3_offset + 8], mt->
mac_mask, 6);
1091 mask[l3_offset + 14 + i] = 0xff;
1093 mask[l3_offset + 14 + (mt->
prefix_len / 8)] =
1094 0xff - ((1 << (8 - mt->
prefix_len % 8)) - 1);
1096 mask_len = ((l3_offset + 14 + ((mt->
prefix_len + 7) / 8) +
1100 (~0 == last_table) ? 0 : ~0,
1102 last_table = *last_tag_table;
1133 mask_len = ((l3_offset +
1139 out_last_table) ? 0 : ~0,
1140 out_last_tag_table, 1);
1141 out_last_table = *out_last_tag_table;
1154 u32 *last_tag_table;
1155 u32 *out_last_tag_table;
1160 for (tags = 2; tags >= 0; tags--)
1163 memcpy (&mask[6], mt->
mac_mask, 6);
1186 mask[l3_src_offs +
i] = 0xff;
1191 0xff - ((1 << (8 - mt->
prefix_len % 8)) - 1);
1197 mask_len = ((l3_src_offs + ((mt->
prefix_len + 7) / 8) +
1200 (~0 == last_table) ? 0 : ~0,
1202 last_table = *last_tag_table;
1206 for (tags = 2; tags >= 0; tags--)
1210 memcpy (&mask[0], mt->
mac_mask, 6);
1233 mask[l3_dst_offs +
i] = 0xff;
1238 0xff - ((1 << (8 - mt->
prefix_len % 8)) - 1);
1244 mask_len = ((l3_dst_offs + ((mt->
prefix_len + 7) / 8) +
1249 (~0 == out_last_table) ? 0 : ~0,
1250 out_last_tag_table, 1);
1251 out_last_table = *out_last_tag_table;
1264 for (i = 0; i < a->
count; i++)
1278 ASSERT (match_type_index != ~0);
1280 for (tags = 2; tags >= 0; tags--)
1311 mask[eth + 1] = 0xdd;
1317 mask[eth + 1] = 0x00;
1323 i, 0, action, metadata, 1);
1328 if (!is6 && (mvec[match_type_index].arp_table_index != ~0))
1333 for (tags = 2; tags >= 0; tags--)
1364 memcpy (&mask[l3_src_offs + 8], a->
rules[i].
src_mac, 6);
1369 i, 0, action, metadata, 1);
1375 for (tags = 2; tags >= 0; tags--)
1408 mask[eth + 1] = 0xdd;
1415 mask[eth + 1] = 0x00;
1422 i, 0, action, metadata, 1);
1427 if (!is6 && (mvec[match_type_index].out_arp_table_index != ~0))
1429 for (tags = 2; tags >= 0; tags--)
1463 is_permit ? ~0 : 0, i, 0,
1464 action, metadata, 1);
1545 u32 * acl_list_index,
u8 * tag)
1554 if (*acl_list_index != ~0)
1561 (
"acl-plugin-error: Trying to replace nonexistent MACIP ACL %d (tag %s)",
1562 *acl_list_index, tag);
1563 return VNET_API_ERROR_NO_SUCH_ENTRY;
1570 (
"acl-plugin-warning: Trying to create empty MACIP ACL (tag %s)",
1574 if (~0 != *acl_list_index)
1580 for (i = 0; i <
count; i++)
1582 r = &acl_new_rules[
i];
1584 r->
is_ipv6 = rules[
i].src_prefix.address.af;
1592 if (~0 == *acl_list_index)
1610 a->
rules = acl_new_rules;
1612 memcpy (a->
tag, tag, sizeof (a->
tag));
1633 u32 macip_acl_index;
1638 return VNET_API_ERROR_NO_SUCH_ENTRY;
1642 if (~0 == macip_acl_index)
1643 return VNET_API_ERROR_NO_SUCH_ENTRY;
1668 u32 macip_acl_index)
1674 return VNET_API_ERROR_NO_SUCH_ENTRY;
1704 return VNET_API_ERROR_NO_SUCH_ENTRY;
1767 if (supplied_len < expected_len)
1769 clib_warning (
"%s: Supplied message length %d is less than expected %d",
1770 where, supplied_len, expected_len);
1788 u32 expected_len =
sizeof (*mp) + acl_count *
sizeof (mp->
r[0]);
1796 rv = VNET_API_ERROR_INVALID_VALUE;
1811 vl_api_acl_del_reply_t *rmp;
1825 vl_api_acl_stats_intf_counters_enable_reply_t *rmp;
1840 vl_api_acl_interface_add_del_reply_t *rmp;
1844 rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;
1858 vl_api_acl_interface_set_acl_list_reply_t *rmp;
1865 rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;
1868 int may_clear_sessions = 1;
1869 for (i = 0; i < mp->
count; i++)
1874 rv = VNET_API_ERROR_NO_SUCH_ENTRY;
1879 u32 *in_acl_vec = 0;
1880 u32 *out_acl_vec = 0;
1881 for (i = 0; i < mp->
count; i++)
1882 if (i < mp->n_input)
1883 vec_add1 (in_acl_vec, clib_net_to_host_u32 (mp->
acls[i]));
1885 vec_add1 (out_acl_vec, clib_net_to_host_u32 (mp->
acls[i]));
1889 &may_clear_sessions);
1893 &may_clear_sessions);
1899 REPLY_MACRO (VL_API_ACL_INTERFACE_SET_ACL_LIST_REPLY);
1907 &api_rule->src_prefix.address);
1909 &api_rule->dst_prefix.address);
1912 api_rule->proto = r->
proto;
1926 vl_api_acl_rule_t *
rules;
1929 int msg_size =
sizeof (*mp) +
sizeof (mp->
r[0]) *
vec_len (acl_rules);
1939 memcpy (mp->
tag, acl->
tag, sizeof (mp->
tag));
1942 for (i = 0; i <
vec_len (acl_rules); i++)
2008 count = n_input + n_output;
2010 msg_size =
sizeof (*mp);
2011 msg_size +=
sizeof (mp->
acls[0]) * count;
2023 for (i = 0; i < n_input; i++)
2027 for (i = 0; i < n_output; i++)
2029 mp->
acls[n_input +
i] =
2075 u32 acl_list_index = ~0;
2077 u32 expected_len =
sizeof (*mp) + acl_count *
sizeof (mp->
r[0]);
2085 rv = VNET_API_ERROR_INVALID_VALUE;
2104 u32 expected_len =
sizeof (*mp) + acl_count *
sizeof (mp->
r[0]);
2112 rv = VNET_API_ERROR_INVALID_VALUE;
2127 vl_api_macip_acl_del_reply_t *rmp;
2140 vl_api_macip_acl_interface_add_del_reply_t *rmp;
2146 rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;
2152 REPLY_MACRO (VL_API_MACIP_ACL_INTERFACE_ADD_DEL_REPLY);
2160 vl_api_macip_acl_rule_t *
rules;
2163 int msg_size =
sizeof (*mp) + (acl ?
sizeof (mp->
r[0]) * acl->
count : 0);
2173 memcpy (mp->
tag, acl->
tag, sizeof (mp->
tag));
2177 for (i = 0; i < acl->
count; i++)
2184 rules[i].src_mac_mask);
2187 &rules[i].src_prefix.address);
2242 int msg_size =
sizeof (*rmp) +
sizeof (rmp->
acls[0]) * count;
2255 rmp->
count = htonl (count);
2256 for (i = 0; i <
count; i++)
2272 int msg_size =
sizeof (*rmp) +
sizeof (rmp->
acls[0]);
2283 rmp->
acls[0] = htonl (acl_index);
2300 if (sw_if_index == ~0)
2308 macip_acl_by_sw_if_index
2330 vl_api_acl_interface_set_etype_whitelist_reply_t *rmp;
2335 u16 *vec_in = 0, *vec_out = 0;
2338 rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;
2341 for (i = 0; i < mp->
count; i++)
2343 if (i < mp->n_input)
2351 REPLY_MACRO (VL_API_ACL_INTERFACE_SET_ETYPE_WHITELIST_REPLY);
2366 u16 *whitelist_in = 0;
2367 u16 *whitelist_out = 0;
2377 if ((0 == whitelist_in) && (0 == whitelist_out))
2380 n_input =
vec_len (whitelist_in);
2381 n_output =
vec_len (whitelist_out);
2382 count = n_input + n_output;
2384 msg_size =
sizeof (*mp);
2385 msg_size +=
sizeof (mp->
whitelist[0]) * count;
2397 for (i = 0; i < n_input; i++)
2401 for (i = 0; i < n_output; i++)
2403 mp->
whitelist[n_input +
i] = htons (whitelist_out[i]);
2454 clib_warning (
"Unknown timeout type %d", timeout_type);
2473 if ((eh < 256) && (value < 2))
2490 int may_clear_sessions = 1;
2517 if (
unformat (input,
"skip-ipv6-extension-header %u %u", &eh_val, &val))
2525 if (
unformat (input,
"use-hash-acl-matching %u", &val))
2530 if (
unformat (input,
"l4-match-nonfirst-fragment %u", &val))
2535 if (
unformat (input,
"reclassify-sessions %u", &val))
2540 if (
unformat (input,
"event-trace"))
2545 "expecting trace level, got `%U`",
2559 if (
unformat (input,
"validate %u", &val))
2561 else if (
unformat (input,
"trace %u", &val))
2567 if (
unformat (input,
"validate %u", &val))
2569 else if (
unformat (input,
"trace %u", &val))
2580 if (
unformat (input,
"max-entries"))
2585 "expecting maximum number of entries, got `%U`",
2595 if (
unformat (input,
"hash-table-buckets"))
2600 "expecting maximum number of hash table buckets, got `%U`",
2610 if (
unformat (input,
"hash-table-memory"))
2615 "expecting maximum amount of hash table memory, got `%U`",
2625 if (
unformat (input,
"event-trace"))
2630 "expecting trace level, got `%U`",
2648 if (!
unformat (input,
"%u", &timeout))
2651 "expecting timeout value in seconds, got `%U`",
2667 if (!
unformat (input,
"%u", &timeout))
2670 "expecting timeout value in seconds, got `%U`",
2683 if (!
unformat (input,
"%u", &timeout))
2686 "expecting timeout value in seconds, got `%U`",
2709 u8 *
a = va_arg (*args,
u8 *);
2710 return format (s,
"%02x:%02x:%02x:%02x:%02x:%02x",
2711 a[0], a[1], a[2], a[3], a[4], a[5]);
2719 out =
format (out,
"%s action %d ip %U/%d mac %U mask %U",
2743 "MACIP acl_index: %d, count: %d (true len %d) tag {%s} is free pool slot: %d\n",
2747 " ip4_table_index %d, ip6_table_index %d, l2_table_index %d\n",
2750 " out_ip4_table_index %d, out_ip6_table_index %d, out_l2_table_index %d\n",
2768 is_add = is_input = 1;
2769 acl_index = sw_if_index = ~0;
2780 else if (
unformat (line_input,
"add"))
2782 else if (
unformat (line_input,
"del"))
2784 else if (
unformat (line_input,
"acl %d", &acl_index))
2786 else if (
unformat (line_input,
"input"))
2788 else if (
unformat (line_input,
"output"))
2794 if (~0 == sw_if_index)
2796 if (~0 == acl_index)
2805 #define vec_validate_acl_rules(v, idx) \ 2807 if (vec_len(v) < idx+1) { \ 2808 vec_validate(v, idx); \ 2809 v[idx].is_permit = 0x1; \ 2810 v[idx].srcport_or_icmptype_last = 0xffff; \ 2811 v[idx].dstport_or_icmpcode_last = 0xffff; \ 2820 vl_api_acl_rule_t *
rules = 0;
2823 int n_rules_override = -1;
2828 u32 tcpflags, tcpmask;
2829 u32 src_prefix_length = 0, dst_prefix_length = 0;
2831 u8 *tag = (
u8 *)
"cli";
2838 if (
unformat (line_input,
"permit+reflect"))
2841 rules[rule_idx].is_permit = 2;
2843 else if (
unformat (line_input,
"permit"))
2846 rules[rule_idx].is_permit = 1;
2848 else if (
unformat (line_input,
"deny"))
2851 rules[rule_idx].is_permit = 0;
2853 else if (
unformat (line_input,
"count %d", &n_rules_override))
2857 else if (
unformat (line_input,
"action %d", &action))
2860 rules[rule_idx].is_permit =
action;
2862 else if (
unformat (line_input,
"src %U/%d",
2864 &src_prefix_length))
2869 rules[rule_idx].src_prefix.address.af =
ADDRESS_IP4;
2870 rules[rule_idx].src_prefix.len = src_prefix_length;
2872 else if (
unformat (line_input,
"dst %U/%d",
2874 &dst_prefix_length))
2879 rules[rule_idx].dst_prefix.address.af =
ADDRESS_IP4;
2880 rules[rule_idx].dst_prefix.len = dst_prefix_length;
2882 else if (
unformat (line_input,
"sport %d-%d", &port1, &port2))
2885 rules[rule_idx].srcport_or_icmptype_first = htons (port1);
2886 rules[rule_idx].srcport_or_icmptype_last = htons (port2);
2888 else if (
unformat (line_input,
"sport %d", &port1))
2891 rules[rule_idx].srcport_or_icmptype_first = htons (port1);
2892 rules[rule_idx].srcport_or_icmptype_last = htons (port1);
2894 else if (
unformat (line_input,
"dport %d-%d", &port1, &port2))
2897 rules[rule_idx].dstport_or_icmpcode_first = htons (port1);
2898 rules[rule_idx].dstport_or_icmpcode_last = htons (port2);
2900 else if (
unformat (line_input,
"dport %d", &port1))
2903 rules[rule_idx].dstport_or_icmpcode_first = htons (port1);
2904 rules[rule_idx].dstport_or_icmpcode_last = htons (port1);
2906 else if (
unformat (line_input,
"tcpflags %d %d", &tcpflags, &tcpmask))
2909 rules[rule_idx].tcp_flags_value = tcpflags;
2910 rules[rule_idx].tcp_flags_mask = tcpmask;
2913 if (
unformat (line_input,
"tcpflags %d mask %d", &tcpflags, &tcpmask))
2916 rules[rule_idx].tcp_flags_value = tcpflags;
2917 rules[rule_idx].tcp_flags_mask = tcpmask;
2919 else if (
unformat (line_input,
"proto %d", &proto))
2922 rules[rule_idx].proto =
proto;
2924 else if (
unformat (line_input,
"tag %s", &tag))
2927 else if (
unformat (line_input,
","))
2960 (void)
unformat (input,
"index %u", &acl_index);
2968 if ((acl_index != ~0) && (acl_index !=
i))
3015 if ((acl_index != ~0) && (acl_index !=
i))
3049 (void)
unformat (input,
"index %u", &acl_index);
3063 (void)
unformat (input,
"index %u", &lc_index);
3077 (void)
unformat (input,
"index %u", &lc_index);
3095 if ((sw_if_index != ~0) && (sw_if_index != swi))
3174 u64 five_tuple[6] = { 0, 0, 0, 0, 0, 0 };
3177 (input,
"%llx %llx %llx %llx %llx %llx", &five_tuple[0], &five_tuple[1],
3178 &five_tuple[2], &five_tuple[3], &five_tuple[4], &five_tuple[5]))
3196 (void)
unformat (input,
"sw_if_index %u", &sw_if_index);
3197 int show_acl =
unformat (input,
"acl");
3198 int detail =
unformat (input,
"detail");
3216 u32 show_session_thread_id,
3217 u32 show_session_session_index)
3230 vlib_cli_output (vm,
"Sessions total: add %lu - del %lu = %lu", n_adds,
3231 n_dels, n_adds - n_dels);
3232 vlib_cli_output (vm,
"Sessions active: add %lu - deact %lu = %lu", n_adds,
3233 n_deact, n_adds - n_deact);
3234 vlib_cli_output (vm,
"Sessions being purged: deact %lu - del %lu = %lu",
3235 n_deact, n_dels, n_deact - n_dels);
3244 if (show_session_thread_id == wk
3248 show_session_session_index);
3253 " info: %016llx %016llx %016llx %016llx %016llx %016llx",
3254 m[0], m[1], m[2], m[3], m[4], m[5]);
3282 u64 n_epoch_changes =
3287 " sw_if_index %d: add %lu - del %lu = %lu; epoch chg: %lu",
3303 head_session_index);
3304 if (~0 != head_session_index)
3347 #define _(cnt, desc) vlib_cli_output(vm, " %20lu: %s", am->cnt, desc); 3353 "Sessions per interval: min %lu max %lu increment: %f ms current: %f ms",
3370 u32 show_bihash_verbose = 0;
3371 u32 show_session_thread_id = ~0;
3372 u32 show_session_session_index = ~0;
3373 (void)
unformat (input,
"thread %u index %u", &show_session_thread_id,
3374 &show_session_session_index);
3375 (void)
unformat (input,
"verbose %u", &show_bihash_verbose);
3378 show_session_session_index);
3392 int show_acl_hash_info = 0;
3393 int show_applied_info = 0;
3394 int show_mask_type = 0;
3395 int show_bihash = 0;
3396 u32 show_bihash_verbose = 0;
3400 show_acl_hash_info = 1;
3403 unformat (input,
"index %u", &acl_index);
3405 else if (
unformat (input,
"applied"))
3407 show_applied_info = 1;
3408 unformat (input,
"lc_index %u", &lc_index);
3417 unformat (input,
"verbose %u", &show_bihash_verbose);
3421 (show_mask_type || show_acl_hash_info || show_applied_info
3426 show_acl_hash_info = 1;
3427 show_applied_info = 1;
3434 if (show_acl_hash_info)
3436 if (show_applied_info)
3457 .path =
"set acl-plugin",
3458 .short_help =
"set acl-plugin session timeout {{udp idle}|tcp {idle|transient}} <seconds>",
3463 .path =
"show acl-plugin acl",
3464 .short_help =
"show acl-plugin acl [index N]",
3469 .path =
"show acl-plugin lookup context",
3470 .short_help =
"show acl-plugin lookup context [index N]",
3475 .path =
"show acl-plugin lookup user",
3476 .short_help =
"show acl-plugin lookup user [index N]",
3481 .path =
"show acl-plugin decode 5tuple",
3482 .short_help =
"show acl-plugin decode 5tuple XXXX XXXX XXXX XXXX XXXX XXXX",
3487 .path =
"show acl-plugin interface",
3488 .short_help =
"show acl-plugin interface [sw_if_index N] [acl]",
3493 .path =
"show acl-plugin memory",
3494 .short_help =
"show acl-plugin memory",
3499 .path =
"show acl-plugin sessions",
3500 .short_help =
"show acl-plugin sessions",
3505 .path =
"show acl-plugin tables",
3506 .short_help =
"show acl-plugin tables [ acl [index N] | applied [ lc_index N ] | mask | hash [verbose N] ]",
3511 .path =
"show acl-plugin macip acl",
3512 .short_help =
"show acl-plugin macip acl [index N]",
3517 .path =
"show acl-plugin macip interface",
3518 .short_help =
"show acl-plugin macip interface",
3523 .path =
"clear acl-plugin sessions",
3524 .short_help =
"clear acl-plugin sessions",
3538 .path =
"set acl-plugin interface",
3539 .short_help =
"set acl-plugin interface <interface> <input|output> <acl INDEX> [del] ",
3560 .path =
"set acl-plugin acl",
3561 .short_help =
"set acl-plugin acl <permit|deny> src <PREFIX> dst <PREFIX> proto X sport X-Y dport X-Y [tag FOO] {use comma separated list for multiple rules}",
3570 u32 conn_table_hash_buckets;
3571 uword conn_table_hash_memory_size;
3572 u32 conn_table_max_entries;
3573 uword main_heap_size;
3574 uword hash_heap_size;
3575 u32 hash_lookup_hash_buckets;
3576 uword hash_lookup_hash_memory;
3577 u32 reclassify_sessions;
3578 u32 use_tuple_merge;
3579 u32 tuple_merge_split_threshold;
3584 (input,
"connection hash buckets %d", &conn_table_hash_buckets))
3589 &conn_table_hash_memory_size))
3591 else if (
unformat (input,
"connection count max %d",
3592 &conn_table_max_entries))
3599 (
"WARNING: ACL heap is now part of the main heap. 'main heap size' is ineffective.");
3605 (
"WARNING: ACL heap is now part of the main heap. 'hash lookup heap size' is ineffective.");
3608 (input,
"hash lookup hash buckets %d", &hash_lookup_hash_buckets))
3613 &hash_lookup_hash_memory))
3615 else if (
unformat (input,
"use tuple merge %d", &use_tuple_merge))
3619 (input,
"tuple merge split threshold %d",
3620 &tuple_merge_split_threshold))
3623 else if (
unformat (input,
"reclassify sessions %d",
3624 &reclassify_sessions))
3638 #include <acl/acl.api.c> 3706 am->fa_cleaner_cnt_delete_by_sw_index = 0;
3707 am->fa_cleaner_cnt_delete_by_sw_index_ok = 0;
3708 am->fa_cleaner_cnt_unknown_event = 0;
3709 am->fa_cleaner_cnt_timer_restarted = 0;
3710 am->fa_cleaner_cnt_wait_with_timeout = 0;
3713 #define _(N, v, s) am->fa_ipv6_known_eh_bitmap = clib_bitmap_set(am->fa_ipv6_known_eh_bitmap, v, 1); 3726 acl_plugin.register_user_module (
"interface ACL",
"sw_if_index",
static void vl_api_acl_stats_intf_counters_enable_t_handler(vl_api_acl_stats_intf_counters_enable_t *mp)
vlib_log_class_t vlib_log_register_class(char *class, char *subclass)
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
u32 * input_policy_epoch_by_sw_if_index
static int acl_api_invalid_prefix(const vl_api_prefix_t *prefix)
u8 * format_vec16(u8 *s, va_list *va)
static int macip_acl_interface_add_acl(acl_main_t *am, u32 sw_if_index, u32 macip_acl_index)
u32 fa_cleaner_node_index
u32 session_timeout_sec[ACL_N_TIMEOUTS]
static clib_error_t * acl_set_aclplugin_interface_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Use acl_interface_set_acl_list instead Append/remove an ACL index to/from the list of ACLs checked fo...
#define vec_foreach_index(var, v)
Iterate over vector indices.
static int macip_acl_interface_add_del_acl(u32 sw_if_index, u8 is_add, u32 acl_list_index)
static void vl_api_acl_plugin_get_conn_table_max_entries_t_handler(vl_api_acl_plugin_get_conn_table_max_entries_t *mp)
static clib_error_t * acl_clear_aclplugin_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
static int acl_set_skip_ipv6_eh(u32 eh, u32 value)
vl_api_prefix_t dst_prefix
static clib_error_t * acl_show_aclplugin_lookup_user_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
static int verify_message_len(void *mp, u32 expected_len, char *where)
#define UDP_SESSION_IDLE_TIMEOUT_SEC
static clib_error_t * acl_init(vlib_main_t *vm)
#define FA_SESSION_BOGUS_INDEX
uword * pending_clear_sw_if_index_bitmap
static void acl_plugin_counter_lock(acl_main_t *am)
void acl_plugin_show_tables_mask_type(void)
vlib_combined_counter_main_t * combined_acl_counters
void vlib_validate_combined_counter(vlib_combined_counter_main_t *cm, u32 index)
validate a combined counter
static void vl_api_acl_plugin_get_version_t_handler(vl_api_acl_plugin_get_version_t *mp)
u64 fa_current_cleaner_timer_wait_interval
Set the vector of input/output ACLs checked for an interface.
static u8 * format_acl_action(u8 *s, u8 action)
char * stat_segment_name
Name in stat segment directory.
vl_api_interface_index_t sw_if_index
Set the ethertype whitelists on an interface.
u32 ** input_acl_vec_by_sw_if_index
void acl_plugin_show_tables_applied_info(u32 lc_index)
Dump the list(s) of ACL applied to specific or all interfaces.
vnet_main_t * vnet_get_main(void)
vl_api_macip_acl_rule_t r[count]
bool is_add[default=true]
void mac_address_encode(const mac_address_t *in, u8 *out)
#define pool_foreach(VAR, POOL)
Iterate through pool.
static int count_skip(u8 *p, u32 size)
vnet_interface_main_t interface_main
static void vl_api_acl_add_replace_t_handler(vl_api_acl_add_replace_t *mp)
static void vl_api_macip_acl_dump_t_handler(vl_api_macip_acl_dump_t *mp)
#define clib_error(format, args...)
int l4_match_nonfirst_fragment
Control ping from the client to the server response.
#define ACL_FA_CONN_TABLE_DEFAULT_HASH_NUM_BUCKETS
#define ACL_PLUGIN_VERSION_MINOR
static clib_error_t * acl_plugin_config(vlib_main_t *vm, unformat_input_t *input)
#define ACL_PLUGIN_HASH_LOOKUP_HASH_MEMORY
#define REPLY_MACRO2(t, body)
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
static void vl_api_macip_acl_add_t_handler(vl_api_macip_acl_add_t *mp)
static void vl_api_acl_interface_etype_whitelist_dump_t_handler(vl_api_acl_interface_list_dump_t *mp)
Details about ethertype whitelist on a single interface.
static void vl_api_send_msg(vl_api_registration_t *rp, u8 *elem)
#define clib_bitmap_foreach(i, ai)
Macro to iterate across set bits in a bitmap.
vl_api_interface_index_t sw_if_index
Reply to get connection table max entries.
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
static u64 clib_cpu_time_now(void)
static void acl_clear_sessions(acl_main_t *am, u32 sw_if_index)
static int get_l3_dst_offset(int is6)
u16 srcport_or_icmptype_last
static uword * clib_bitmap_set(uword *ai, uword i, uword value)
Sets the ith bit of a bitmap to new_value Removes trailing zeros from the bitmap. ...
u64 session_timeout[ACL_N_TIMEOUTS]
fa_session_t * fa_sessions_pool
u16 srcport_or_icmptype_first
bool is_add[default=true]
u32 * output_policy_epoch_by_sw_if_index
u32 out_dot1q_table_index
void(* acl_vector_print_func_t)(vlib_main_t *vm, u8 *out0)
unformat_function_t unformat_vnet_sw_interface
static void validate_and_reset_acl_counters(acl_main_t *am, u32 acl_index)
void * vl_msg_api_alloc(int nbytes)
#define pool_len(p)
Number of elements in pool vector.
static u32 macip_find_match_type(macip_match_type_t *mv, u8 *mac_mask, u8 prefix_len, u8 is_ipv6)
vl_api_interface_index_t sw_if_index
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
vlib_log_class_t log_default
Details about one MACIP ACL.
void acl_plugin_lookup_context_notify_acl_change(u32 acl_num)
f64 fa_cleaner_wait_time_increment
u32 arp_dot1q_table_index
#define clib_bitmap_validate(v, n_bits)
u32 interface_acl_user_id
u32 ** lc_index_vec_by_acl
uword fa_conn_table_hash_memory_size
u16 dst_port_or_code_last
static int acl_interface_in_enable_disable(acl_main_t *am, u32 sw_if_index, int enable_disable)
static clib_error_t * acl_sw_interface_add_del(vnet_main_t *vnm, u32 sw_if_index, u32 is_add)
u64 rcvd_session_change_requests
ip46_address_t src_ip_addr
void mv(vnet_classify_table_t *t)
void vlib_clear_combined_counters(vlib_combined_counter_main_t *cm)
Clear a collection of combined counters.
#define VLIB_INIT_FUNCTION(x)
static int acl_is_not_defined(acl_main_t *am, u32 acl_list_index)
static clib_error_t * acl_show_aclplugin_acl_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
volatile u32 * acl_counter_lock
u64 fa_conn_table_max_entries
static uword clib_bitmap_is_zero(uword *ai)
predicate function; is an entire bitmap empty?
static int acl_is_used_by(u32 acl_index, u32 **foo_index_vec_by_acl)
description fragment has unexpected format
u64 cnt_session_timer_restarted
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
Add or delete a MACIP ACL to/from interface.
static void increment_policy_epoch(acl_main_t *am, u32 sw_if_index, int is_input)
static clib_error_t * acl_show_aclplugin_interface_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
#define clib_error_return(e, args...)
#define ACL_FA_CONN_TABLE_DEFAULT_MAX_ENTRIES
uword * in_acl_on_sw_if_index
static void acl_print_acl(vlib_main_t *vm, acl_main_t *am, int acl_index)
u32 acl_index[default=0xffffffff]
u32 out_arp_dot1q_table_index
#define vec_search(v, E)
Search a vector for the index of the entry that matches.
VNET_SW_INTERFACE_ADD_DEL_FUNCTION(acl_sw_interface_add_del)
static clib_error_t * acl_show_aclplugin_decode_5tuple_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Get Connection table max entries.
ip46_type_t ip_address_decode(const vl_api_address_t *in, ip46_address_t *out)
Decode/Encode for struct/union types.
Reply to add/replace MACIP ACL.
static u8 * my_macip_acl_rule_t_pretty_format(u8 *out, va_list *args)
static void clib_spinlock_init(clib_spinlock_t *p)
int vnet_classify_add_del_session(vnet_classify_main_t *cm, u32 table_index, u8 *match, u32 hit_next_index, u32 opaque_index, i32 advance, u8 action, u32 metadata, int is_add)
static clib_error_t * acl_show_aclplugin_memory_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
static void acl_plugin_show_interface(acl_main_t *am, u32 sw_if_index, int show_acl, int detail)
Details about a single MACIP ACL contents.
static void acl_set_session_max_entries(u32 value)
Control ping from client to api server request.
static void vlib_process_signal_event(vlib_main_t *vm, uword node_index, uword type_opaque, uword data)
#define ACL_FA_DEFAULT_CLEANER_WAIT_TIME_INCREMENT
u16 dst_port_or_code_first
#define TCP_SESSION_IDLE_TIMEOUT_SEC
static void warning_acl_print_acl(vlib_main_t *vm, acl_main_t *am, int acl_index)
static void vl_api_acl_dump_t_handler(vl_api_acl_dump_t *mp)
uword * fa_ipv6_known_eh_bitmap
Replace an existing ACL in-place or create a new ACL.
#define ACL_FA_DEFAULT_MIN_DELETED_SESSIONS_PER_INTERVAL
#define pool_put(P, E)
Free an object E in pool P.
#define vec_dup(V)
Return copy of vector (no header, no alignment)
u64 * fa_session_epoch_change_by_sw_if_index
u32 * output_lc_index_by_sw_if_index
Details about a single ACL contents.
static clib_error_t * acl_show_aclplugin_tables_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
#define VLIB_CONFIG_FUNCTION(x, n,...)
#define vec_del1(v, i)
Delete the element at index I.
vl_api_acl_rule_t r[count]
static void send_acl_details(acl_main_t *am, vl_api_registration_t *reg, acl_list_t *acl, u32 context)
vl_api_address_union_t src_address
static int get_l3_src_offset(int is6)
int vnet_set_input_acl_intfc(vlib_main_t *vm, u32 sw_if_index, u32 ip4_table_index, u32 ip6_table_index, u32 l2_table_index, u32 is_add)
static int macip_maybe_apply_unapply_classifier_tables(acl_main_t *am, u32 acl_index, int is_apply)
static void send_acl_interface_etype_whitelist_details(acl_main_t *am, vl_api_registration_t *reg, u32 sw_if_index, u32 context)
u32 interface_acl_counters_enabled
int interrupt_is_unwanted
static u8 * my_format_mac_address(u8 *s, va_list *args)
u64 * fa_conn_list_head_expiry_time
u32 out_arp_dot1ad_table_index
u64 * fa_session_adds_by_sw_if_index
#define FA_POLICY_EPOCH_IS_INPUT
u16 src_port_or_type_first
u64 * fa_session_dels_by_sw_if_index
u64 fa_min_deleted_sessions_per_interval
static int match_type_compare(macip_match_type_t *m1, macip_match_type_t *m2)
static void acl_print_acl_x(acl_vector_print_func_t vpr, vlib_main_t *vm, acl_main_t *am, int acl_index)
format_function_t format_ip46_address
void acl_plugin_show_tables_bihash(u32 show_bihash_verbose)
#define pool_get_aligned(P, E, A)
Allocate an object E from a pool P with alignment A.
vl_api_prefix_t src_prefix
union fa_session_t::@16 tcp_flags_seen
vl_api_acl_rule_t r[count]
An API client registration, only in vpp/vlib.
Dump the list(s) of MACIP ACLs applied to specific or all interfaces.
static void setup_message_id_table(api_main_t *am)
static void vl_api_acl_interface_set_etype_whitelist_t_handler(vl_api_acl_interface_set_etype_whitelist_t *mp)
int vnet_l2_feature_enable_disable(const char *arc_name, const char *node_name, u32 sw_if_index, int enable_disable, void *feature_config, u32 n_feature_config_bytes)
static int match_type_metric(macip_match_type_t *m)
static int macip_acl_del_list(u32 acl_list_index)
Dump one or all defined MACIP ACLs.
static int acl_classify_add_del_table_small(vnet_classify_main_t *cm, u8 *mask, u32 mask_len, u32 next_table_index, u32 miss_next_index, u32 *table_index, int is_add)
int ip_prefix_decode2(const vl_api_prefix_t *in, ip_prefix_t *out)
u64 sent_session_change_requests
static void acl_plugin_show_acl(acl_main_t *am, u32 acl_index)
static uword * clib_bitmap_dup_xor(uword *ai, uword *bi)
Logical operator across two bitmaps which duplicates the first bitmap.
sll srl srl sll sra u16x4 i
u64 fa_session_total_adds
#define vec_free(V)
Free vector's memory (no header).
void acl_fa_enable_disable(u32 sw_if_index, int is_input, int enable_disable)
static int acl_stats_intf_counters_enable_disable(acl_main_t *am, int enable_disable)
Reply to add/replace ACL.
#define clib_warning(format, args...)
Reply with the vector of MACIP ACLs by sw_if_index.
static void acl_plugin_counter_unlock(acl_main_t *am)
void acl_plugin_show_lookup_user(u32 user_index)
int use_hash_acl_matching
#define pool_is_free_index(P, I)
Use free bitmap to query whether given index is free.
static clib_error_t * acl_plugin_exports_init(acl_plugin_methods_t *m)
static uword clib_bitmap_get(uword *ai, uword i)
Gets the ith bit value from a bitmap.
vl_api_interface_index_t sw_if_index
uword hash_lookup_hash_memory
static vl_api_registration_t * vl_api_client_index_to_registration(u32 index)
#define foreach_fa_cleaner_counter
vl_api_macip_acl_rule_t r[count]
u32 acl_index[default=0xffffffff]
static int acl_interface_out_enable_disable(acl_main_t *am, u32 sw_if_index, int enable_disable)
int tuple_merge_split_threshold
vl_api_interface_index_t sw_if_index
vl_api_mac_address_t src_mac
#define VLIB_CLI_COMMAND(x,...)
struct _vnet_classify_main vnet_classify_main_t
vl_api_gbp_rule_t rules[n_rules]
static clib_error_t * acl_show_aclplugin_macip_acl_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
#define ACL_PLUGIN_HASH_LOOKUP_HASH_BUCKETS
u32 hash_lookup_hash_buckets
vl_api_interface_index_t sw_if_index
static void vl_api_acl_interface_add_del_t_handler(vl_api_acl_interface_add_del_t *mp)
static int macip_acl_interface_del_acl(acl_main_t *am, u32 sw_if_index)
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
static void vl_api_macip_acl_del_t_handler(vl_api_macip_acl_del_t *mp)
#define vec_validate_acl_rules(v, idx)
static int acl_interface_inout_enable_disable(acl_main_t *am, u32 sw_if_index, int is_input, int enable_disable)
u16 src_port_or_type_last
static int macip_create_classify_tables(acl_main_t *am, u32 macip_acl_index)
static void acl_set_timeout_sec(int timeout_type, u32 value)
uword * out_acl_on_sw_if_index
void acl_plugin_show_lookup_context(u32 lc_index)
u32 ** sw_if_index_vec_by_macip_acl
static int macip_permit_also_egress(u8 is_permit)
#define clib_bitmap_free(v)
Free a bitmap.
vnet_classify_main_t vnet_classify_main
static void vl_api_macip_acl_add_replace_t_handler(vl_api_macip_acl_add_replace_t *mp)
Reply to get the plugin version.
static int macip_acl_add_list(u32 count, vl_api_macip_acl_rule_t rules[], u32 *acl_list_index, u8 *tag)
uword * serviced_sw_if_index_bitmap
vl_api_macip_acl_rule_t r[count]
Reply to set the ACL list on an interface.
int vnet_classify_add_del_table(vnet_classify_main_t *cm, u8 *mask, u32 nbuckets, u32 memory_size, u32 skip, u32 match, u32 next_table_index, u32 miss_next_index, u32 *table_index, u8 current_data_flag, i16 current_data_offset, int is_add, int del_chain)
#define vec_elt(v, i)
Get vector value at index i.
static void macip_acl_print(acl_main_t *am, u32 macip_acl_index)
u32 * macip_acl_by_sw_if_index
Get the vector of MACIP ACL IDs applied to the interfaces.
static void vl_api_acl_interface_list_dump_t_handler(vl_api_acl_interface_list_dump_t *mp)
static void acl_interface_reset_inout_acls(u32 sw_if_index, u8 is_input, int *may_clear_sessions)
static int acl_add_list(u32 count, vl_api_acl_rule_t rules[], u32 *acl_list_index, u8 *tag)
static void print_clib_warning_and_reset(vlib_main_t *vm, u8 *out0)
static int acl_set_etype_whitelists(acl_main_t *am, u32 sw_if_index, u16 *vec_in, u16 *vec_out)
static clib_error_t * acl_set_aclplugin_acl_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
u32 arp_dot1ad_table_index
static void vl_api_acl_del_t_handler(vl_api_acl_del_t *mp)
static void send_macip_acl_details(acl_main_t *am, vl_api_registration_t *reg, macip_acl_list_t *acl, u32 context)
macip_acl_list_t * macip_acls
static clib_error_t * acl_show_aclplugin_sessions_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
static acl_plugin_methods_t acl_plugin
static void send_macip_acl_interface_list_details(acl_main_t *am, vl_api_registration_t *reg, u32 sw_if_index, u32 acl_index, u32 context)
vl_api_mac_event_action_t action
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
Details about a single ACL contents.
static void vl_api_macip_acl_interface_list_dump_t_handler(vl_api_macip_acl_interface_list_dump_t *mp)
vl_api_mac_address_t src_mac_mask
acl_fa_per_worker_data_t * per_worker_data
u64 conn_table_max_entries
#define vec_sort_with_function(vec, f)
Sort a vector using the supplied element comparison function.
u16 dstport_or_icmpcode_first
vnet_sw_interface_t * sw_interfaces
int fa_interrupt_generation
u32 ** input_sw_if_index_vec_by_acl
u64 cnt_already_deleted_sessions
char * name
The counter collection's name.
u16 ** output_etype_whitelist_by_sw_if_index
static void vl_api_acl_interface_set_acl_list_t_handler(vl_api_acl_interface_set_acl_list_t *mp)
u64 fa_max_deleted_sessions_per_interval
static clib_error_t * acl_set_aclplugin_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
vl_api_interface_index_t sw_if_index[default=0xffffffff]
vl_api_interface_index_t sw_if_index
void ip_address_encode(const ip46_address_t *in, ip46_type_t type, vl_api_address_t *out)
static void try_increment_acl_policy_epoch(acl_main_t *am, u32 acl_num, int is_input)
static void * clib_mem_alloc_aligned(uword size, uword align)
static int acl_interface_add_del_inout_acl(u32 sw_if_index, u8 is_add, u8 is_input, u32 acl_list_index)
static void policy_notify_acl_change(acl_main_t *am, u32 acl_num)
static vlib_thread_main_t * vlib_get_thread_main()
static void acl_plugin_show_sessions(acl_main_t *am, u32 show_session_thread_id, u32 show_session_session_index)
static void copy_acl_rule_to_api_rule(vl_api_acl_rule_t *api_rule, acl_rule_t *r)
u16 ** input_etype_whitelist_by_sw_if_index
#define vec_foreach(var, vec)
Vector iterator.
clib_spinlock_t pending_session_change_request_lock
u64 fa_session_total_deactivations
static void print_cli_and_reset(vlib_main_t *vm, u8 *out0)
void show_fa_sessions_hash(vlib_main_t *vm, u32 verbose)
u8 * format_acl_plugin_5tuple(u8 *s, va_list *args)
u32 * input_lc_index_by_sw_if_index
u32 vl_msg_api_get_msg_length(void *msg_arg)
u16 dstport_or_icmpcode_last
u32 ** output_sw_if_index_vec_by_acl
#define ACL_PLUGIN_VERSION_MAJOR
static clib_error_t * acl_show_aclplugin_macip_interface_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
#define FA_POLICY_EPOCH_MASK
#define vec_validate_init_empty(V, I, INIT)
Make sure vector is long enough for given index and initialize empty space (no header, unspecified alignment)
#define CLIB_CACHE_LINE_BYTES
static int intf_has_etype_whitelist(acl_main_t *am, u32 sw_if_index, int is_input)
void acl_plugin_show_tables_acl_hash_info(u32 acl_index)
#define TM_SPLIT_THRESHOLD
vl_api_interface_index_t sw_if_index
static int acl_interface_set_inout_acl_list(acl_main_t *am, u32 sw_if_index, u8 is_input, u32 *vec_acl_list_index, int *may_clear_sessions)
#define ACL_FA_DEFAULT_MAX_DELETED_SESSIONS_PER_INTERVAL
static void vl_api_acl_plugin_control_ping_t_handler(vl_api_acl_plugin_control_ping_t *mp)
void mac_address_decode(const u8 *in, mac_address_t *out)
Conversion functions to/from (decode/encode) API types to VPP internal types.
int vnet_set_output_acl_intfc(vlib_main_t *vm, u32 sw_if_index, u32 ip4_table_index, u32 ip6_table_index, u32 l2_table_index, u32 is_add)
u32 ** output_acl_vec_by_sw_if_index
static clib_error_t * acl_show_aclplugin_lookup_context_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
u32 out_dot1ad_table_index
#define TCP_SESSION_TRANSIENT_TIMEOUT_SEC
static void vl_api_macip_acl_interface_add_del_t_handler(vl_api_macip_acl_interface_add_del_t *mp)
u64 current_time_wait_interval
vl_api_interface_index_t sw_if_index
u32 fa_conn_table_hash_num_buckets
#define ACL_FA_CONN_TABLE_DEFAULT_HASH_MEMORY_SIZE
u64 fa_session_total_dels
static int acl_del_list(u32 acl_list_index)
static void send_acl_interface_list_details(acl_main_t *am, vl_api_registration_t *reg, u32 sw_if_index, u32 context)
static void macip_destroy_classify_tables(acl_main_t *am, u32 macip_acl_index)
Enable or disable incrementing ACL counters in stats segment by interface processing.
static void vl_api_macip_acl_interface_get_t_handler(vl_api_macip_acl_interface_get_t *mp)
foreach_fa_cleaner_counter vlib_main_t * vlib_main