Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 2 | * l2_in_out_acl.c : layer 2 input/output acl processing |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3 | * |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 4 | * Copyright (c) 2013,2018 Cisco and/or its affiliates. |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | * you may not use this file except in compliance with the License. |
| 7 | * You may obtain a copy of the License at: |
| 8 | * |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | * |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| 16 | */ |
| 17 | |
| 18 | #include <vlib/vlib.h> |
| 19 | #include <vnet/vnet.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 20 | #include <vnet/ethernet/ethernet.h> |
| 21 | #include <vnet/ethernet/packet.h> |
| 22 | #include <vnet/ip/ip_packet.h> |
| 23 | #include <vnet/ip/ip4_packet.h> |
| 24 | #include <vnet/ip/ip6_packet.h> |
| 25 | #include <vlib/cli.h> |
| 26 | #include <vnet/l2/l2_input.h> |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 27 | #include <vnet/l2/l2_output.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 28 | #include <vnet/l2/feat_bitmap.h> |
| 29 | |
| 30 | #include <vppinfra/error.h> |
| 31 | #include <vppinfra/hash.h> |
| 32 | #include <vppinfra/cache.h> |
| 33 | |
| 34 | #include <vnet/classify/vnet_classify.h> |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 35 | #include <vnet/classify/in_out_acl.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 36 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 37 | typedef struct |
| 38 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 39 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 40 | /* Next nodes for each feature */ |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 41 | u32 feat_next_node_index[IN_OUT_ACL_N_TABLE_GROUPS][32]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 42 | |
| 43 | /* convenience variables */ |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 44 | vlib_main_t *vlib_main; |
| 45 | vnet_main_t *vnet_main; |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 46 | } l2_in_out_acl_main_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 47 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 48 | typedef struct |
| 49 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 50 | u32 sw_if_index; |
| 51 | u32 next_index; |
| 52 | u32 table_index; |
| 53 | u32 offset; |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 54 | } l2_in_out_acl_trace_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 55 | |
| 56 | /* packet trace format function */ |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 57 | static u8 * |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 58 | format_l2_in_out_acl_trace (u8 * s, u32 is_output, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 59 | { |
| 60 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *); |
| 61 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *); |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 62 | l2_in_out_acl_trace_t *t = va_arg (*args, l2_in_out_acl_trace_t *); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 63 | |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 64 | s = format (s, "%s: sw_if_index %d, next_index %d, table %d, offset %d", |
| 65 | is_output ? "OUTACL" : "INACL", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 66 | t->sw_if_index, t->next_index, t->table_index, t->offset); |
| 67 | return s; |
| 68 | } |
| 69 | |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 70 | static u8 * |
| 71 | format_l2_inacl_trace (u8 * s, va_list * args) |
| 72 | { |
| 73 | return format_l2_in_out_acl_trace (s, IN_OUT_ACL_INPUT_TABLE_GROUP, args); |
| 74 | } |
| 75 | |
| 76 | static u8 * |
| 77 | format_l2_outacl_trace (u8 * s, va_list * args) |
| 78 | { |
| 79 | return format_l2_in_out_acl_trace (s, IN_OUT_ACL_OUTPUT_TABLE_GROUP, args); |
| 80 | } |
| 81 | |
Filip Tehlar | 44f0f71 | 2019-03-11 04:26:37 -0700 | [diff] [blame] | 82 | extern l2_in_out_acl_main_t l2_in_out_acl_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 83 | |
Filip Tehlar | 44f0f71 | 2019-03-11 04:26:37 -0700 | [diff] [blame] | 84 | #ifndef CLIB_MARCH_VARIANT |
| 85 | l2_in_out_acl_main_t l2_in_out_acl_main; |
| 86 | #endif /* CLIB_MARCH_VARIANT */ |
| 87 | |
| 88 | extern vlib_node_registration_t l2_inacl_node; |
| 89 | extern vlib_node_registration_t l2_outacl_node; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 90 | |
| 91 | #define foreach_l2_inacl_error \ |
| 92 | _(NONE, "valid input ACL packets") \ |
| 93 | _(MISS, "input ACL misses") \ |
| 94 | _(HIT, "input ACL hits") \ |
| 95 | _(CHAIN_HIT, "input ACL hits after chain walk") \ |
| 96 | _(TABLE_MISS, "input ACL table-miss drops") \ |
| 97 | _(SESSION_DENY, "input ACL session deny drops") |
| 98 | |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 99 | #define foreach_l2_outacl_error \ |
| 100 | _(NONE, "valid output ACL packets") \ |
| 101 | _(MISS, "output ACL misses") \ |
| 102 | _(HIT, "output ACL hits") \ |
| 103 | _(CHAIN_HIT, "output ACL hits after chain walk") \ |
| 104 | _(TABLE_MISS, "output ACL table-miss drops") \ |
| 105 | _(SESSION_DENY, "output ACL session deny drops") |
| 106 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 107 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 108 | typedef enum |
| 109 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 110 | #define _(sym,str) L2_INACL_ERROR_##sym, |
| 111 | foreach_l2_inacl_error |
| 112 | #undef _ |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 113 | L2_INACL_N_ERROR, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 114 | } l2_inacl_error_t; |
| 115 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 116 | static char *l2_inacl_error_strings[] = { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 117 | #define _(sym,string) string, |
| 118 | foreach_l2_inacl_error |
| 119 | #undef _ |
| 120 | }; |
| 121 | |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 122 | typedef enum |
| 123 | { |
| 124 | #define _(sym,str) L2_OUTACL_ERROR_##sym, |
| 125 | foreach_l2_outacl_error |
| 126 | #undef _ |
| 127 | L2_OUTACL_N_ERROR, |
| 128 | } l2_outacl_error_t; |
| 129 | |
| 130 | static char *l2_outacl_error_strings[] = { |
| 131 | #define _(sym,string) string, |
| 132 | foreach_l2_outacl_error |
| 133 | #undef _ |
| 134 | }; |
| 135 | |
| 136 | |
| 137 | static inline uword |
| 138 | l2_in_out_acl_node_fn (vlib_main_t * vm, |
| 139 | vlib_node_runtime_t * node, vlib_frame_t * frame, |
| 140 | int is_output) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 141 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 142 | u32 n_left_from, *from, *to_next; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 143 | acl_next_index_t next_index; |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 144 | l2_in_out_acl_main_t *msm = &l2_in_out_acl_main; |
| 145 | in_out_acl_main_t *am = &in_out_acl_main; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 146 | vnet_classify_main_t *vcm = am->vnet_classify_main; |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 147 | in_out_acl_table_id_t tid = IN_OUT_ACL_TABLE_L2; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 148 | f64 now = vlib_time_now (vm); |
| 149 | u32 hits = 0; |
| 150 | u32 misses = 0; |
| 151 | u32 chain_hits = 0; |
| 152 | |
| 153 | from = vlib_frame_vector_args (frame); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 154 | n_left_from = frame->n_vectors; /* number of packets to process */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 155 | next_index = node->cached_next_index; |
| 156 | |
| 157 | /* First pass: compute hashes */ |
| 158 | while (n_left_from > 2) |
| 159 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 160 | vlib_buffer_t *b0, *b1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 161 | u32 bi0, bi1; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 162 | u8 *h0, *h1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 163 | u32 sw_if_index0, sw_if_index1; |
| 164 | u32 table_index0, table_index1; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 165 | vnet_classify_table_t *t0, *t1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 166 | |
| 167 | /* prefetch next iteration */ |
| 168 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 169 | vlib_buffer_t *p1, *p2; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 170 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 171 | p1 = vlib_get_buffer (vm, from[1]); |
| 172 | p2 = vlib_get_buffer (vm, from[2]); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 173 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 174 | vlib_prefetch_buffer_header (p1, STORE); |
Damjan Marion | af7fb04 | 2021-07-15 11:54:41 +0200 | [diff] [blame] | 175 | clib_prefetch_store (p1->data); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 176 | vlib_prefetch_buffer_header (p2, STORE); |
Damjan Marion | af7fb04 | 2021-07-15 11:54:41 +0200 | [diff] [blame] | 177 | clib_prefetch_store (p2->data); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 178 | } |
| 179 | |
| 180 | bi0 = from[0]; |
| 181 | b0 = vlib_get_buffer (vm, bi0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 182 | |
| 183 | bi1 = from[1]; |
| 184 | b1 = vlib_get_buffer (vm, bi1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 185 | |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 186 | sw_if_index0 = |
| 187 | vnet_buffer (b0)->sw_if_index[is_output ? VLIB_TX : VLIB_RX]; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 188 | table_index0 = |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 189 | am->classify_table_index_by_sw_if_index[is_output][tid][sw_if_index0]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 190 | |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 191 | sw_if_index1 = |
| 192 | vnet_buffer (b1)->sw_if_index[is_output ? VLIB_TX : VLIB_RX]; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 193 | table_index1 = |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 194 | am->classify_table_index_by_sw_if_index[is_output][tid][sw_if_index1]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 195 | |
| 196 | t0 = pool_elt_at_index (vcm->tables, table_index0); |
| 197 | |
| 198 | t1 = pool_elt_at_index (vcm->tables, table_index1); |
| 199 | |
Steve Shin | 25e26dc | 2016-11-08 10:47:10 -0800 | [diff] [blame] | 200 | if (t0->current_data_flag == CLASSIFY_FLAG_USE_CURR_DATA) |
| 201 | h0 = (void *) vlib_buffer_get_current (b0) + t0->current_data_offset; |
| 202 | else |
Steve Shin | 2ae03d2 | 2018-02-26 11:43:31 -0800 | [diff] [blame] | 203 | h0 = (void *) vlib_buffer_get_current (b0); |
Steve Shin | 25e26dc | 2016-11-08 10:47:10 -0800 | [diff] [blame] | 204 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 205 | vnet_buffer (b0)->l2_classify.hash = |
| 206 | vnet_classify_hash_packet (t0, (u8 *) h0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 207 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 208 | vnet_classify_prefetch_bucket (t0, vnet_buffer (b0)->l2_classify.hash); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 209 | |
Steve Shin | 25e26dc | 2016-11-08 10:47:10 -0800 | [diff] [blame] | 210 | if (t1->current_data_flag == CLASSIFY_FLAG_USE_CURR_DATA) |
| 211 | h1 = (void *) vlib_buffer_get_current (b1) + t1->current_data_offset; |
| 212 | else |
Steve Shin | 2ae03d2 | 2018-02-26 11:43:31 -0800 | [diff] [blame] | 213 | h1 = (void *) vlib_buffer_get_current (b1); |
Steve Shin | 25e26dc | 2016-11-08 10:47:10 -0800 | [diff] [blame] | 214 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 215 | vnet_buffer (b1)->l2_classify.hash = |
| 216 | vnet_classify_hash_packet (t1, (u8 *) h1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 217 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 218 | vnet_classify_prefetch_bucket (t1, vnet_buffer (b1)->l2_classify.hash); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 219 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 220 | vnet_buffer (b0)->l2_classify.table_index = table_index0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 221 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 222 | vnet_buffer (b1)->l2_classify.table_index = table_index1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 223 | |
| 224 | from += 2; |
| 225 | n_left_from -= 2; |
| 226 | } |
| 227 | |
| 228 | while (n_left_from > 0) |
| 229 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 230 | vlib_buffer_t *b0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 231 | u32 bi0; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 232 | u8 *h0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 233 | u32 sw_if_index0; |
| 234 | u32 table_index0; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 235 | vnet_classify_table_t *t0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 236 | |
| 237 | bi0 = from[0]; |
| 238 | b0 = vlib_get_buffer (vm, bi0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 239 | |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 240 | sw_if_index0 = |
| 241 | vnet_buffer (b0)->sw_if_index[is_output ? VLIB_TX : VLIB_RX]; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 242 | table_index0 = |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 243 | am->classify_table_index_by_sw_if_index[is_output][tid][sw_if_index0]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 244 | |
| 245 | t0 = pool_elt_at_index (vcm->tables, table_index0); |
Steve Shin | 25e26dc | 2016-11-08 10:47:10 -0800 | [diff] [blame] | 246 | |
| 247 | if (t0->current_data_flag == CLASSIFY_FLAG_USE_CURR_DATA) |
| 248 | h0 = (void *) vlib_buffer_get_current (b0) + t0->current_data_offset; |
| 249 | else |
Steve Shin | 2ae03d2 | 2018-02-26 11:43:31 -0800 | [diff] [blame] | 250 | h0 = (void *) vlib_buffer_get_current (b0); |
Steve Shin | 25e26dc | 2016-11-08 10:47:10 -0800 | [diff] [blame] | 251 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 252 | vnet_buffer (b0)->l2_classify.hash = |
| 253 | vnet_classify_hash_packet (t0, (u8 *) h0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 254 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 255 | vnet_buffer (b0)->l2_classify.table_index = table_index0; |
| 256 | vnet_classify_prefetch_bucket (t0, vnet_buffer (b0)->l2_classify.hash); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 257 | |
| 258 | from++; |
| 259 | n_left_from--; |
| 260 | } |
| 261 | |
| 262 | next_index = node->cached_next_index; |
| 263 | from = vlib_frame_vector_args (frame); |
| 264 | n_left_from = frame->n_vectors; |
| 265 | |
| 266 | while (n_left_from > 0) |
| 267 | { |
| 268 | u32 n_left_to_next; |
| 269 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 270 | vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 271 | |
| 272 | /* Not enough load/store slots to dual loop... */ |
| 273 | while (n_left_from > 0 && n_left_to_next > 0) |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 274 | { |
| 275 | u32 bi0; |
| 276 | vlib_buffer_t *b0; |
| 277 | u32 next0 = ACL_NEXT_INDEX_DENY; |
| 278 | u32 table_index0; |
| 279 | vnet_classify_table_t *t0; |
| 280 | vnet_classify_entry_t *e0; |
Benoît Ganne | b03eec9 | 2022-06-08 10:49:17 +0200 | [diff] [blame] | 281 | u32 hash0; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 282 | u8 *h0; |
| 283 | u8 error0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 284 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 285 | /* Stride 3 seems to work best */ |
| 286 | if (PREDICT_TRUE (n_left_from > 3)) |
| 287 | { |
| 288 | vlib_buffer_t *p1 = vlib_get_buffer (vm, from[3]); |
| 289 | vnet_classify_table_t *tp1; |
| 290 | u32 table_index1; |
Benoît Ganne | b03eec9 | 2022-06-08 10:49:17 +0200 | [diff] [blame] | 291 | u32 phash1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 292 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 293 | table_index1 = vnet_buffer (p1)->l2_classify.table_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 294 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 295 | if (PREDICT_TRUE (table_index1 != ~0)) |
| 296 | { |
| 297 | tp1 = pool_elt_at_index (vcm->tables, table_index1); |
| 298 | phash1 = vnet_buffer (p1)->l2_classify.hash; |
| 299 | vnet_classify_prefetch_entry (tp1, phash1); |
| 300 | } |
| 301 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 302 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 303 | /* speculatively enqueue b0 to the current next frame */ |
| 304 | bi0 = from[0]; |
| 305 | to_next[0] = bi0; |
| 306 | from += 1; |
| 307 | to_next += 1; |
| 308 | n_left_from -= 1; |
| 309 | n_left_to_next -= 1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 310 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 311 | b0 = vlib_get_buffer (vm, bi0); |
Steve Shin | 25e26dc | 2016-11-08 10:47:10 -0800 | [diff] [blame] | 312 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 313 | table_index0 = vnet_buffer (b0)->l2_classify.table_index; |
| 314 | e0 = 0; |
| 315 | t0 = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 316 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 317 | vnet_buffer (b0)->l2_classify.opaque_index = ~0; |
John Lo | beb0b2e | 2017-07-22 00:21:36 -0400 | [diff] [blame] | 318 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 319 | /* Determine the next node */ |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 320 | next0 = |
| 321 | vnet_l2_feature_next (b0, msm->feat_next_node_index[is_output], |
| 322 | is_output ? L2OUTPUT_FEAT_ACL : |
| 323 | L2INPUT_FEAT_ACL); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 324 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 325 | if (PREDICT_TRUE (table_index0 != ~0)) |
| 326 | { |
| 327 | hash0 = vnet_buffer (b0)->l2_classify.hash; |
| 328 | t0 = pool_elt_at_index (vcm->tables, table_index0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 329 | |
Steve Shin | 25e26dc | 2016-11-08 10:47:10 -0800 | [diff] [blame] | 330 | if (t0->current_data_flag == CLASSIFY_FLAG_USE_CURR_DATA) |
| 331 | h0 = |
| 332 | (void *) vlib_buffer_get_current (b0) + |
| 333 | t0->current_data_offset; |
| 334 | else |
Steve Shin | 2ae03d2 | 2018-02-26 11:43:31 -0800 | [diff] [blame] | 335 | h0 = (void *) vlib_buffer_get_current (b0); |
Steve Shin | 25e26dc | 2016-11-08 10:47:10 -0800 | [diff] [blame] | 336 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 337 | e0 = vnet_classify_find_entry (t0, (u8 *) h0, hash0, now); |
| 338 | if (e0) |
| 339 | { |
| 340 | vnet_buffer (b0)->l2_classify.opaque_index |
| 341 | = e0->opaque_index; |
| 342 | vlib_buffer_advance (b0, e0->advance); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 343 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 344 | next0 = (e0->next_index < ACL_NEXT_INDEX_N_NEXT) ? |
| 345 | e0->next_index : next0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 346 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 347 | hits++; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 348 | |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 349 | if (is_output) |
| 350 | error0 = (next0 == ACL_NEXT_INDEX_DENY) ? |
| 351 | L2_OUTACL_ERROR_SESSION_DENY : L2_INACL_ERROR_NONE; |
| 352 | else |
| 353 | error0 = (next0 == ACL_NEXT_INDEX_DENY) ? |
| 354 | L2_OUTACL_ERROR_SESSION_DENY : L2_OUTACL_ERROR_NONE; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 355 | b0->error = node->errors[error0]; |
| 356 | } |
| 357 | else |
| 358 | { |
| 359 | while (1) |
| 360 | { |
| 361 | if (PREDICT_TRUE (t0->next_table_index != ~0)) |
| 362 | t0 = pool_elt_at_index (vcm->tables, |
| 363 | t0->next_table_index); |
| 364 | else |
| 365 | { |
| 366 | next0 = |
| 367 | (t0->miss_next_index < |
| 368 | ACL_NEXT_INDEX_N_NEXT) ? t0->miss_next_index : |
| 369 | next0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 370 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 371 | misses++; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 372 | |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 373 | if (is_output) |
| 374 | error0 = (next0 == ACL_NEXT_INDEX_DENY) ? |
| 375 | L2_OUTACL_ERROR_TABLE_MISS : |
| 376 | L2_OUTACL_ERROR_NONE; |
| 377 | else |
| 378 | error0 = (next0 == ACL_NEXT_INDEX_DENY) ? |
| 379 | L2_INACL_ERROR_TABLE_MISS : L2_INACL_ERROR_NONE; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 380 | b0->error = node->errors[error0]; |
| 381 | break; |
| 382 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 383 | |
Steve Shin | 25e26dc | 2016-11-08 10:47:10 -0800 | [diff] [blame] | 384 | if (t0->current_data_flag == |
| 385 | CLASSIFY_FLAG_USE_CURR_DATA) |
| 386 | h0 = |
| 387 | (void *) vlib_buffer_get_current (b0) + |
| 388 | t0->current_data_offset; |
| 389 | else |
Steve Shin | 2ae03d2 | 2018-02-26 11:43:31 -0800 | [diff] [blame] | 390 | h0 = (void *) vlib_buffer_get_current (b0); |
Steve Shin | 25e26dc | 2016-11-08 10:47:10 -0800 | [diff] [blame] | 391 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 392 | hash0 = vnet_classify_hash_packet (t0, (u8 *) h0); |
| 393 | e0 = vnet_classify_find_entry |
| 394 | (t0, (u8 *) h0, hash0, now); |
| 395 | if (e0) |
| 396 | { |
| 397 | vlib_buffer_advance (b0, e0->advance); |
| 398 | next0 = (e0->next_index < ACL_NEXT_INDEX_N_NEXT) ? |
| 399 | e0->next_index : next0; |
| 400 | hits++; |
| 401 | chain_hits++; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 402 | |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 403 | if (is_output) |
| 404 | error0 = (next0 == ACL_NEXT_INDEX_DENY) ? |
| 405 | L2_OUTACL_ERROR_SESSION_DENY : |
| 406 | L2_OUTACL_ERROR_NONE; |
| 407 | else |
| 408 | error0 = (next0 == ACL_NEXT_INDEX_DENY) ? |
| 409 | L2_INACL_ERROR_SESSION_DENY : |
| 410 | L2_INACL_ERROR_NONE; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 411 | b0->error = node->errors[error0]; |
| 412 | break; |
| 413 | } |
| 414 | } |
| 415 | } |
| 416 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 417 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 418 | if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE) |
| 419 | && (b0->flags & VLIB_BUFFER_IS_TRACED))) |
| 420 | { |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 421 | l2_in_out_acl_trace_t *t = |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 422 | vlib_add_trace (vm, node, b0, sizeof (*t)); |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 423 | t->sw_if_index = |
| 424 | vnet_buffer (b0)->sw_if_index[is_output ? VLIB_TX : VLIB_RX]; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 425 | t->next_index = next0; |
| 426 | t->table_index = t0 ? t0 - vcm->tables : ~0; |
| 427 | t->offset = (t0 && e0) ? vnet_classify_get_offset (t0, e0) : ~0; |
| 428 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 429 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 430 | /* verify speculative enqueue, maybe switch current next frame */ |
| 431 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, |
| 432 | to_next, n_left_to_next, |
| 433 | bi0, next0); |
| 434 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 435 | |
| 436 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
| 437 | } |
| 438 | |
| 439 | vlib_node_increment_counter (vm, node->node_index, |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 440 | is_output ? L2_OUTACL_ERROR_MISS : |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 441 | L2_INACL_ERROR_MISS, misses); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 442 | vlib_node_increment_counter (vm, node->node_index, |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 443 | is_output ? L2_OUTACL_ERROR_HIT : |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 444 | L2_INACL_ERROR_HIT, hits); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 445 | vlib_node_increment_counter (vm, node->node_index, |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 446 | is_output ? L2_OUTACL_ERROR_CHAIN_HIT : |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 447 | L2_INACL_ERROR_CHAIN_HIT, chain_hits); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 448 | return frame->n_vectors; |
| 449 | } |
| 450 | |
Filip Tehlar | 44f0f71 | 2019-03-11 04:26:37 -0700 | [diff] [blame] | 451 | VLIB_NODE_FN (l2_inacl_node) (vlib_main_t * vm, |
| 452 | vlib_node_runtime_t * node, |
| 453 | vlib_frame_t * frame) |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 454 | { |
| 455 | return l2_in_out_acl_node_fn (vm, node, frame, |
| 456 | IN_OUT_ACL_INPUT_TABLE_GROUP); |
| 457 | } |
| 458 | |
Filip Tehlar | 44f0f71 | 2019-03-11 04:26:37 -0700 | [diff] [blame] | 459 | VLIB_NODE_FN (l2_outacl_node) (vlib_main_t * vm, |
| 460 | vlib_node_runtime_t * node, |
| 461 | vlib_frame_t * frame) |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 462 | { |
| 463 | return l2_in_out_acl_node_fn (vm, node, frame, |
| 464 | IN_OUT_ACL_OUTPUT_TABLE_GROUP); |
| 465 | } |
| 466 | |
Filip Tehlar | 44f0f71 | 2019-03-11 04:26:37 -0700 | [diff] [blame] | 467 | VLIB_REGISTER_NODE (l2_inacl_node) = { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 468 | .name = "l2-input-acl", |
| 469 | .vector_size = sizeof (u32), |
| 470 | .format_trace = format_l2_inacl_trace, |
| 471 | .type = VLIB_NODE_TYPE_INTERNAL, |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 472 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 473 | .n_errors = ARRAY_LEN(l2_inacl_error_strings), |
| 474 | .error_strings = l2_inacl_error_strings, |
| 475 | |
| 476 | .n_next_nodes = ACL_NEXT_INDEX_N_NEXT, |
| 477 | |
| 478 | /* edit / add dispositions here */ |
| 479 | .next_nodes = { |
| 480 | [ACL_NEXT_INDEX_DENY] = "error-drop", |
| 481 | }, |
| 482 | }; |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 483 | |
Filip Tehlar | 44f0f71 | 2019-03-11 04:26:37 -0700 | [diff] [blame] | 484 | VLIB_REGISTER_NODE (l2_outacl_node) = { |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 485 | .name = "l2-output-acl", |
| 486 | .vector_size = sizeof (u32), |
| 487 | .format_trace = format_l2_outacl_trace, |
| 488 | .type = VLIB_NODE_TYPE_INTERNAL, |
| 489 | |
| 490 | .n_errors = ARRAY_LEN(l2_outacl_error_strings), |
| 491 | .error_strings = l2_outacl_error_strings, |
| 492 | |
| 493 | .n_next_nodes = ACL_NEXT_INDEX_N_NEXT, |
| 494 | |
| 495 | /* edit / add dispositions here */ |
| 496 | .next_nodes = { |
| 497 | [ACL_NEXT_INDEX_DENY] = "error-drop", |
| 498 | }, |
| 499 | }; |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 500 | |
| 501 | |
Filip Tehlar | 44f0f71 | 2019-03-11 04:26:37 -0700 | [diff] [blame] | 502 | #ifndef CLIB_MARCH_VARIANT |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 503 | clib_error_t * |
| 504 | l2_in_out_acl_init (vlib_main_t * vm) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 505 | { |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 506 | l2_in_out_acl_main_t *mp = &l2_in_out_acl_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 507 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 508 | mp->vlib_main = vm; |
| 509 | mp->vnet_main = vnet_get_main (); |
| 510 | |
| 511 | /* Initialize the feature next-node indexes */ |
| 512 | feat_bitmap_init_next_nodes (vm, |
| 513 | l2_inacl_node.index, |
| 514 | L2INPUT_N_FEAT, |
| 515 | l2input_get_feat_names (), |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 516 | mp->feat_next_node_index |
| 517 | [IN_OUT_ACL_INPUT_TABLE_GROUP]); |
| 518 | feat_bitmap_init_next_nodes (vm, l2_outacl_node.index, L2OUTPUT_N_FEAT, |
| 519 | l2output_get_feat_names (), |
| 520 | mp->feat_next_node_index |
| 521 | [IN_OUT_ACL_OUTPUT_TABLE_GROUP]); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 522 | |
| 523 | return 0; |
| 524 | } |
| 525 | |
Andrew Yourtchenko | 815d7d5 | 2018-02-07 11:37:02 +0100 | [diff] [blame] | 526 | VLIB_INIT_FUNCTION (l2_in_out_acl_init); |
Filip Tehlar | 44f0f71 | 2019-03-11 04:26:37 -0700 | [diff] [blame] | 527 | #endif /* CLIB_MARCH_VARIANT */ |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 528 | |
| 529 | /* |
| 530 | * fd.io coding-style-patch-verification: ON |
| 531 | * |
| 532 | * Local Variables: |
| 533 | * eval: (c-set-style "gnu") |
| 534 | * End: |
| 535 | */ |