Dave Barach | c07bf5d | 2016-02-17 17:52:26 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2016 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 | #include <vnet/cop/cop.h> |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 16 | #include <vnet/fib/ip6_fib.h> |
| 17 | #include <vnet/dpo/load_balance.h> |
Dave Barach | c07bf5d | 2016-02-17 17:52:26 -0500 | [diff] [blame] | 18 | |
| 19 | typedef struct { |
| 20 | u32 next_index; |
| 21 | u32 sw_if_index; |
| 22 | } ip6_cop_whitelist_trace_t; |
| 23 | |
| 24 | /* packet trace format function */ |
| 25 | static u8 * format_ip6_cop_whitelist_trace (u8 * s, va_list * args) |
| 26 | { |
| 27 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *); |
| 28 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *); |
| 29 | ip6_cop_whitelist_trace_t * t = va_arg (*args, ip6_cop_whitelist_trace_t *); |
| 30 | |
| 31 | s = format (s, "IP6_COP_WHITELIST: sw_if_index %d, next index %d", |
| 32 | t->sw_if_index, t->next_index); |
| 33 | return s; |
| 34 | } |
| 35 | |
Dave Barach | c07bf5d | 2016-02-17 17:52:26 -0500 | [diff] [blame] | 36 | #define foreach_ip6_cop_whitelist_error \ |
| 37 | _(DROPPED, "ip6 cop whitelist packets dropped") |
| 38 | |
| 39 | typedef enum { |
| 40 | #define _(sym,str) IP6_COP_WHITELIST_ERROR_##sym, |
| 41 | foreach_ip6_cop_whitelist_error |
| 42 | #undef _ |
| 43 | IP6_COP_WHITELIST_N_ERROR, |
| 44 | } ip6_cop_whitelist_error_t; |
| 45 | |
| 46 | static char * ip6_cop_whitelist_error_strings[] = { |
| 47 | #define _(sym,string) string, |
| 48 | foreach_ip6_cop_whitelist_error |
| 49 | #undef _ |
| 50 | }; |
| 51 | |
Filip Tehlar | 1fc33b3 | 2019-03-05 01:22:04 -0800 | [diff] [blame] | 52 | VLIB_NODE_FN (ip6_cop_whitelist_node) (vlib_main_t * vm, |
Dave Barach | c07bf5d | 2016-02-17 17:52:26 -0500 | [diff] [blame] | 53 | vlib_node_runtime_t * node, |
| 54 | vlib_frame_t * frame) |
| 55 | { |
| 56 | u32 n_left_from, * from, * to_next; |
| 57 | cop_feature_type_t next_index; |
| 58 | cop_main_t *cm = &cop_main; |
| 59 | ip6_main_t * im6 = &ip6_main; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 60 | vlib_combined_counter_main_t * vcm = &load_balance_main.lbm_via_counters; |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 61 | u32 thread_index = vm->thread_index; |
Dave Barach | c07bf5d | 2016-02-17 17:52:26 -0500 | [diff] [blame] | 62 | |
| 63 | from = vlib_frame_vector_args (frame); |
| 64 | n_left_from = frame->n_vectors; |
| 65 | next_index = node->cached_next_index; |
| 66 | |
| 67 | while (n_left_from > 0) |
| 68 | { |
| 69 | u32 n_left_to_next; |
| 70 | |
| 71 | vlib_get_next_frame (vm, node, next_index, |
| 72 | to_next, n_left_to_next); |
| 73 | |
| 74 | while (n_left_from >= 4 && n_left_to_next >= 2) |
| 75 | { |
| 76 | u32 bi0, bi1; |
| 77 | vlib_buffer_t * b0, * b1; |
| 78 | u32 next0, next1; |
| 79 | u32 sw_if_index0, sw_if_index1; |
| 80 | ip6_header_t * ip0, * ip1; |
| 81 | cop_config_main_t * ccm0, * ccm1; |
| 82 | cop_config_data_t * c0, * c1; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 83 | u32 lb_index0, lb_index1; |
| 84 | const load_balance_t * lb0, *lb1; |
| 85 | const dpo_id_t *dpo0, *dpo1; |
| 86 | |
Dave Barach | c07bf5d | 2016-02-17 17:52:26 -0500 | [diff] [blame] | 87 | /* Prefetch next iteration. */ |
| 88 | { |
| 89 | vlib_buffer_t * p2, * p3; |
| 90 | |
| 91 | p2 = vlib_get_buffer (vm, from[2]); |
| 92 | p3 = vlib_get_buffer (vm, from[3]); |
| 93 | |
| 94 | vlib_prefetch_buffer_header (p2, LOAD); |
| 95 | vlib_prefetch_buffer_header (p3, LOAD); |
| 96 | |
| 97 | CLIB_PREFETCH (p2->data, CLIB_CACHE_LINE_BYTES, STORE); |
| 98 | CLIB_PREFETCH (p3->data, CLIB_CACHE_LINE_BYTES, STORE); |
| 99 | } |
| 100 | |
| 101 | /* speculatively enqueue b0 and b1 to the current next frame */ |
| 102 | to_next[0] = bi0 = from[0]; |
| 103 | to_next[1] = bi1 = from[1]; |
| 104 | from += 2; |
| 105 | to_next += 2; |
| 106 | n_left_from -= 2; |
| 107 | n_left_to_next -= 2; |
| 108 | |
| 109 | b0 = vlib_get_buffer (vm, bi0); |
| 110 | sw_if_index0 = vnet_buffer(b0)->sw_if_index[VLIB_RX]; |
| 111 | |
| 112 | ip0 = vlib_buffer_get_current (b0); |
| 113 | |
| 114 | ccm0 = cm->cop_config_mains + VNET_COP_IP6; |
| 115 | |
| 116 | c0 = vnet_get_config_data |
| 117 | (&ccm0->config_main, |
| 118 | &vnet_buffer (b0)->cop.current_config_index, |
| 119 | &next0, |
| 120 | sizeof (c0[0])); |
| 121 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 122 | lb_index0 = ip6_fib_table_fwding_lookup (im6, c0->fib_index, |
| 123 | &ip0->src_address); |
| 124 | lb0 = load_balance_get (lb_index0); |
| 125 | dpo0 = load_balance_get_bucket_i(lb0, 0); |
| 126 | |
| 127 | if (PREDICT_FALSE(dpo0->dpoi_type != DPO_RECEIVE)) |
Dave Barach | c07bf5d | 2016-02-17 17:52:26 -0500 | [diff] [blame] | 128 | { |
| 129 | b0->error = node->errors[IP6_COP_WHITELIST_ERROR_DROPPED]; |
| 130 | next0 = RX_COP_DROP; |
| 131 | } |
| 132 | |
| 133 | b1 = vlib_get_buffer (vm, bi1); |
| 134 | sw_if_index1 = vnet_buffer(b1)->sw_if_index[VLIB_RX]; |
| 135 | |
| 136 | ip1 = vlib_buffer_get_current (b1); |
| 137 | |
| 138 | ccm1 = cm->cop_config_mains + VNET_COP_IP6; |
| 139 | |
| 140 | c1 = vnet_get_config_data |
| 141 | (&ccm1->config_main, |
| 142 | &vnet_buffer (b1)->cop.current_config_index, |
| 143 | &next1, |
| 144 | sizeof (c1[0])); |
| 145 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 146 | lb_index1 = ip6_fib_table_fwding_lookup (im6, c1->fib_index, |
| 147 | &ip1->src_address); |
Dave Barach | c07bf5d | 2016-02-17 17:52:26 -0500 | [diff] [blame] | 148 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 149 | lb1 = load_balance_get (lb_index1); |
| 150 | dpo1 = load_balance_get_bucket_i(lb1, 0); |
Dave Barach | c07bf5d | 2016-02-17 17:52:26 -0500 | [diff] [blame] | 151 | |
| 152 | vlib_increment_combined_counter |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 153 | (vcm, thread_index, lb_index0, 1, |
Dave Barach | c07bf5d | 2016-02-17 17:52:26 -0500 | [diff] [blame] | 154 | vlib_buffer_length_in_chain (vm, b0) |
| 155 | + sizeof(ethernet_header_t)); |
| 156 | |
| 157 | vlib_increment_combined_counter |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 158 | (vcm, thread_index, lb_index1, 1, |
Dave Barach | c07bf5d | 2016-02-17 17:52:26 -0500 | [diff] [blame] | 159 | vlib_buffer_length_in_chain (vm, b1) |
| 160 | + sizeof(ethernet_header_t)); |
| 161 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 162 | if (PREDICT_FALSE(dpo1->dpoi_type != DPO_RECEIVE)) |
Dave Barach | c07bf5d | 2016-02-17 17:52:26 -0500 | [diff] [blame] | 163 | { |
| 164 | b1->error = node->errors[IP6_COP_WHITELIST_ERROR_DROPPED]; |
| 165 | next1 = RX_COP_DROP; |
| 166 | } |
| 167 | |
| 168 | if (PREDICT_FALSE((node->flags & VLIB_NODE_FLAG_TRACE) |
| 169 | && (b0->flags & VLIB_BUFFER_IS_TRACED))) |
| 170 | { |
| 171 | ip6_cop_whitelist_trace_t *t = |
| 172 | vlib_add_trace (vm, node, b0, sizeof (*t)); |
| 173 | t->sw_if_index = sw_if_index0; |
| 174 | t->next_index = next0; |
| 175 | } |
| 176 | |
| 177 | if (PREDICT_FALSE((node->flags & VLIB_NODE_FLAG_TRACE) |
| 178 | && (b1->flags & VLIB_BUFFER_IS_TRACED))) |
| 179 | { |
| 180 | ip6_cop_whitelist_trace_t *t = |
| 181 | vlib_add_trace (vm, node, b1, sizeof (*t)); |
| 182 | t->sw_if_index = sw_if_index1; |
| 183 | t->next_index = next1; |
| 184 | } |
| 185 | |
| 186 | /* verify speculative enqueues, maybe switch current next frame */ |
| 187 | vlib_validate_buffer_enqueue_x2 (vm, node, next_index, |
| 188 | to_next, n_left_to_next, |
| 189 | bi0, bi1, next0, next1); |
| 190 | } |
| 191 | |
| 192 | while (n_left_from > 0 && n_left_to_next > 0) |
| 193 | { |
| 194 | u32 bi0; |
| 195 | vlib_buffer_t * b0; |
| 196 | u32 next0; |
| 197 | u32 sw_if_index0; |
| 198 | ip6_header_t * ip0; |
| 199 | cop_config_main_t *ccm0; |
| 200 | cop_config_data_t *c0; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 201 | u32 lb_index0; |
| 202 | const load_balance_t * lb0; |
| 203 | const dpo_id_t *dpo0; |
Dave Barach | c07bf5d | 2016-02-17 17:52:26 -0500 | [diff] [blame] | 204 | |
| 205 | /* speculatively enqueue b0 to the current next frame */ |
| 206 | bi0 = from[0]; |
| 207 | to_next[0] = bi0; |
| 208 | from += 1; |
| 209 | to_next += 1; |
| 210 | n_left_from -= 1; |
| 211 | n_left_to_next -= 1; |
| 212 | |
| 213 | b0 = vlib_get_buffer (vm, bi0); |
| 214 | sw_if_index0 = vnet_buffer(b0)->sw_if_index[VLIB_RX]; |
| 215 | |
| 216 | ip0 = vlib_buffer_get_current (b0); |
| 217 | |
| 218 | ccm0 = cm->cop_config_mains + VNET_COP_IP6; |
| 219 | |
| 220 | c0 = vnet_get_config_data |
| 221 | (&ccm0->config_main, |
| 222 | &vnet_buffer (b0)->cop.current_config_index, |
| 223 | &next0, |
| 224 | sizeof (c0[0])); |
| 225 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 226 | lb_index0 = ip6_fib_table_fwding_lookup (im6, c0->fib_index, |
| 227 | &ip0->src_address); |
Dave Barach | c07bf5d | 2016-02-17 17:52:26 -0500 | [diff] [blame] | 228 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 229 | lb0 = load_balance_get (lb_index0); |
| 230 | dpo0 = load_balance_get_bucket_i(lb0, 0); |
Dave Barach | c07bf5d | 2016-02-17 17:52:26 -0500 | [diff] [blame] | 231 | |
| 232 | vlib_increment_combined_counter |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 233 | (vcm, thread_index, lb_index0, 1, |
Dave Barach | c07bf5d | 2016-02-17 17:52:26 -0500 | [diff] [blame] | 234 | vlib_buffer_length_in_chain (vm, b0) |
| 235 | + sizeof(ethernet_header_t)); |
| 236 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 237 | if (PREDICT_FALSE(dpo0->dpoi_type != DPO_RECEIVE)) |
Dave Barach | c07bf5d | 2016-02-17 17:52:26 -0500 | [diff] [blame] | 238 | { |
| 239 | b0->error = node->errors[IP6_COP_WHITELIST_ERROR_DROPPED]; |
| 240 | next0 = RX_COP_DROP; |
| 241 | } |
| 242 | |
| 243 | if (PREDICT_FALSE((node->flags & VLIB_NODE_FLAG_TRACE) |
| 244 | && (b0->flags & VLIB_BUFFER_IS_TRACED))) |
| 245 | { |
| 246 | ip6_cop_whitelist_trace_t *t = |
| 247 | vlib_add_trace (vm, node, b0, sizeof (*t)); |
| 248 | t->sw_if_index = sw_if_index0; |
| 249 | t->next_index = next0; |
| 250 | } |
| 251 | |
| 252 | /* verify speculative enqueue, maybe switch current next frame */ |
| 253 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, |
| 254 | to_next, n_left_to_next, |
| 255 | bi0, next0); |
| 256 | } |
| 257 | |
| 258 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
| 259 | } |
| 260 | return frame->n_vectors; |
| 261 | } |
| 262 | |
| 263 | VLIB_REGISTER_NODE (ip6_cop_whitelist_node) = { |
Dave Barach | c07bf5d | 2016-02-17 17:52:26 -0500 | [diff] [blame] | 264 | .name = "ip6-cop-whitelist", |
| 265 | .vector_size = sizeof (u32), |
| 266 | .format_trace = format_ip6_cop_whitelist_trace, |
| 267 | .type = VLIB_NODE_TYPE_INTERNAL, |
| 268 | |
| 269 | .n_errors = ARRAY_LEN(ip6_cop_whitelist_error_strings), |
| 270 | .error_strings = ip6_cop_whitelist_error_strings, |
| 271 | |
| 272 | .n_next_nodes = COP_RX_N_FEATURES, |
| 273 | |
| 274 | /* edit / add dispositions here */ |
| 275 | .next_nodes = { |
| 276 | [IP4_RX_COP_WHITELIST] = "ip4-cop-whitelist", |
| 277 | [IP6_RX_COP_WHITELIST] = "ip6-cop-whitelist", |
| 278 | [DEFAULT_RX_COP_WHITELIST] = "default-cop-whitelist", |
| 279 | [IP4_RX_COP_INPUT] = "ip4-input", |
| 280 | [IP6_RX_COP_INPUT] = "ip6-input", |
| 281 | [DEFAULT_RX_COP_INPUT] = "ethernet-input", |
| 282 | [RX_COP_DROP] = "error-drop", |
| 283 | }, |
| 284 | }; |
| 285 | |
Dave Barach | c07bf5d | 2016-02-17 17:52:26 -0500 | [diff] [blame] | 286 | static clib_error_t * |
| 287 | ip6_whitelist_init (vlib_main_t * vm) |
| 288 | { |
| 289 | return 0; |
| 290 | } |
| 291 | |
| 292 | VLIB_INIT_FUNCTION (ip6_whitelist_init); |