VPP-651: Ensure sw_if_index to node mapping for L2 output path is only done via l2out...
[vpp.git] / src / plugins / acl / node_in.c
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 <vlib/vlib.h>
16 #include <vnet/vnet.h>
17 #include <vnet/pg/pg.h>
18 #include <vppinfra/error.h>
19 #include <acl/acl.h>
20 #include "node_in.h"
21
22 typedef struct
23 {
24   u32 next_index;
25   u32 sw_if_index;
26   u32 match_acl_index;
27   u32 match_rule_index;
28   u32 trace_bitmap;
29 } acl_in_trace_t;
30
31 /* packet trace format function */
32 static u8 *
33 format_acl_in_trace (u8 * s, va_list * args)
34 {
35   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
36   CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
37   acl_in_trace_t *t = va_arg (*args, acl_in_trace_t *);
38
39   s =
40     format (s,
41             "ACL_IN: sw_if_index %d, next index %d, match: inacl %d rule %d trace_bits %08x",
42             t->sw_if_index, t->next_index, t->match_acl_index,
43             t->match_rule_index, t->trace_bitmap);
44   return s;
45 }
46
47 vlib_node_registration_t acl_in_node;
48
49 #define foreach_acl_in_error \
50 _(ACL_CHECK, "InACL check packets processed")
51
52 typedef enum
53 {
54 #define _(sym,str) ACL_IN_ERROR_##sym,
55   foreach_acl_in_error
56 #undef _
57     ACL_IN_N_ERROR,
58 } acl_in_error_t;
59
60 static char *acl_in_error_strings[] = {
61 #define _(sym,string) string,
62   foreach_acl_in_error
63 #undef _
64 };
65
66 static uword
67 acl_in_node_fn (vlib_main_t * vm,
68                 vlib_node_runtime_t * node, vlib_frame_t * frame)
69 {
70   u32 n_left_from, *from, *to_next;
71   acl_in_next_t next_index;
72   u32 pkts_acl_checked = 0;
73   u32 feature_bitmap0;
74   u32 trace_bitmap = 0;
75   u32 *input_feat_next_node_index =
76     acl_main.acl_in_node_feat_next_node_index;
77
78   from = vlib_frame_vector_args (frame);
79   n_left_from = frame->n_vectors;
80   next_index = node->cached_next_index;
81
82   while (n_left_from > 0)
83     {
84       u32 n_left_to_next;
85
86       vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
87
88       while (n_left_from > 0 && n_left_to_next > 0)
89         {
90           u32 bi0;
91           vlib_buffer_t *b0;
92           u32 next0 = ~0;
93           u32 sw_if_index0;
94           u32 next = ~0;
95           u32 match_acl_index = ~0;
96           u32 match_rule_index = ~0;
97
98           /* speculatively enqueue b0 to the current next frame */
99           bi0 = from[0];
100           to_next[0] = bi0;
101           from += 1;
102           to_next += 1;
103           n_left_from -= 1;
104           n_left_to_next -= 1;
105
106           b0 = vlib_get_buffer (vm, bi0);
107
108
109           sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX];
110           feature_bitmap0 = vnet_buffer (b0)->l2.feature_bitmap;
111
112           input_acl_packet_match (sw_if_index0, b0, &next, &match_acl_index,
113                                   &match_rule_index, &trace_bitmap);
114           if (next != ~0)
115             {
116               next0 = next;
117             }
118           if (next0 == ~0)
119             {
120               next0 =
121                 feat_bitmap_get_next_node_index (input_feat_next_node_index,
122                                                  feature_bitmap0);
123             }
124
125           if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE)
126                              && (b0->flags & VLIB_BUFFER_IS_TRACED)))
127             {
128               acl_in_trace_t *t = vlib_add_trace (vm, node, b0, sizeof (*t));
129               t->sw_if_index = sw_if_index0;
130               t->next_index = next0;
131               t->match_acl_index = match_acl_index;
132               t->match_rule_index = match_rule_index;
133               t->trace_bitmap = trace_bitmap;
134             }
135
136           next0 = next0 < node->n_next_nodes ? next0 : 0;
137
138           pkts_acl_checked += 1;
139
140           /* verify speculative enqueue, maybe switch current next frame */
141           vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
142                                            to_next, n_left_to_next,
143                                            bi0, next0);
144         }
145
146       vlib_put_next_frame (vm, node, next_index, n_left_to_next);
147     }
148
149   vlib_node_increment_counter (vm, acl_in_node.index,
150                                ACL_IN_ERROR_ACL_CHECK, pkts_acl_checked);
151   return frame->n_vectors;
152 }
153
154 VLIB_REGISTER_NODE (acl_in_node) =
155 {
156   .function = acl_in_node_fn,.name = "acl-plugin-in",.vector_size =
157     sizeof (u32),.format_trace = format_acl_in_trace,.type =
158     VLIB_NODE_TYPE_INTERNAL,.n_errors =
159     ARRAY_LEN (acl_in_error_strings),.error_strings =
160     acl_in_error_strings,.n_next_nodes = ACL_IN_N_NEXT,
161     /* edit / add dispositions here */
162     .next_nodes =
163   {
164   [ACL_IN_ERROR_DROP] = "error-drop",
165       [ACL_IN_ETHERNET_INPUT] = "ethernet-input",
166       [ACL_IN_L2S_INPUT_IP4_ADD] = "aclp-l2s-input-ip4-add",
167       [ACL_IN_L2S_INPUT_IP6_ADD] = "aclp-l2s-input-ip6-add",}
168 ,};