acl-plugin: change the src/dst L3 info in 5tuple struct to be always contiguous with...
[vpp.git] / src / plugins / acl / dataplane_node.c
1 /*
2  * Copyright (c) 2016-2018 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 <stddef.h>
16 #include <netinet/in.h>
17
18 #include <vlib/vlib.h>
19 #include <vnet/vnet.h>
20 #include <vnet/pg/pg.h>
21 #include <vppinfra/error.h>
22
23
24 #include <acl/acl.h>
25 #include <vnet/ip/icmp46_packet.h>
26
27 #include <plugins/acl/fa_node.h>
28 #include <plugins/acl/acl.h>
29 #include <plugins/acl/lookup_context.h>
30 #include <plugins/acl/public_inlines.h>
31 #include <plugins/acl/session_inlines.h>
32
33 #include <vppinfra/bihash_40_8.h>
34 #include <vppinfra/bihash_template.h>
35
36 typedef struct
37 {
38   u32 next_index;
39   u32 sw_if_index;
40   u32 lc_index;
41   u32 match_acl_in_index;
42   u32 match_rule_index;
43   u64 packet_info[6];
44   u32 trace_bitmap;
45   u8 action;
46 } acl_fa_trace_t;
47
48 /* *INDENT-OFF* */
49 #define foreach_acl_fa_error \
50 _(ACL_DROP, "ACL deny packets")  \
51 _(ACL_PERMIT, "ACL permit packets")  \
52 _(ACL_NEW_SESSION, "new sessions added") \
53 _(ACL_EXIST_SESSION, "existing session packets") \
54 _(ACL_CHECK, "checked packets") \
55 _(ACL_RESTART_SESSION_TIMER, "restart session timer") \
56 _(ACL_TOO_MANY_SESSIONS, "too many sessions to add new") \
57 /* end  of errors */
58
59 typedef enum
60 {
61 #define _(sym,str) ACL_FA_ERROR_##sym,
62   foreach_acl_fa_error
63 #undef _
64     ACL_FA_N_ERROR,
65 } acl_fa_error_t;
66
67 /* *INDENT-ON* */
68
69
70 always_inline uword
71 acl_fa_node_fn (vlib_main_t * vm,
72                 vlib_node_runtime_t * node, vlib_frame_t * frame, int is_ip6,
73                 int is_input, int is_l2_path, u32 * l2_feat_next_node_index,
74                 vlib_node_registration_t * acl_fa_node)
75 {
76   u32 n_left, *from;
77   u32 pkts_acl_checked = 0;
78   u32 pkts_new_session = 0;
79   u32 pkts_exist_session = 0;
80   u32 pkts_acl_permit = 0;
81   u32 pkts_restart_session_timer = 0;
82   u32 trace_bitmap = 0;
83   acl_main_t *am = &acl_main;
84   fa_5tuple_t fa_5tuple;
85   clib_bihash_kv_40_8_t value_sess;
86   vlib_node_runtime_t *error_node;
87   u64 now = clib_cpu_time_now ();
88   uword thread_index = os_get_thread_index ();
89   acl_fa_per_worker_data_t *pw = &am->per_worker_data[thread_index];
90
91   u16 nexts[VLIB_FRAME_SIZE], *next;
92   vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
93
94   from = vlib_frame_vector_args (frame);
95
96   error_node = vlib_node_get_runtime (vm, acl_fa_node->index);
97
98   vlib_get_buffers (vm, from, bufs, frame->n_vectors);
99   /* set the initial values for the current buffer the next pointers */
100   b = bufs;
101   next = nexts;
102
103   n_left = frame->n_vectors;
104   while (n_left > 0)
105     {
106       u32 next0 = 0;
107       u8 action = 0;
108       u32 sw_if_index0;
109       u32 lc_index0 = ~0;
110       int acl_check_needed = 1;
111       u32 match_acl_in_index = ~0;
112       u32 match_acl_pos = ~0;
113       u32 match_rule_index = ~0;
114       u8 error0 = 0;
115
116       n_left -= 1;
117
118       if (is_input)
119         sw_if_index0 = vnet_buffer (b[0])->sw_if_index[VLIB_RX];
120       else
121         sw_if_index0 = vnet_buffer (b[0])->sw_if_index[VLIB_TX];
122
123       if (is_input)
124         lc_index0 = am->input_lc_index_by_sw_if_index[sw_if_index0];
125       else
126         lc_index0 = am->output_lc_index_by_sw_if_index[sw_if_index0];
127
128
129       u32 **p_epoch_vec =
130         is_input ? &am->input_policy_epoch_by_sw_if_index :
131         &am->output_policy_epoch_by_sw_if_index;
132       u16 current_policy_epoch =
133         sw_if_index0 < vec_len (*p_epoch_vec) ? vec_elt (*p_epoch_vec,
134                                                          sw_if_index0)
135         : (is_input * FA_POLICY_EPOCH_IS_INPUT);
136       /*
137        * Extract the L3/L4 matching info into a 5-tuple structure.
138        */
139
140       acl_plugin_fill_5tuple_inline (lc_index0, b[0], is_ip6, is_input,
141                                      is_l2_path,
142                                      (fa_5tuple_opaque_t *) & fa_5tuple);
143       fa_5tuple.l4.lsb_of_sw_if_index = sw_if_index0 & 0xffff;
144       fa_5tuple.pkt.mask_type_index_lsb = ~0;
145 #ifdef FA_NODE_VERBOSE_DEBUG
146       clib_warning
147         ("ACL_FA_NODE_DBG: packet 5-tuple %016llx %016llx %016llx %016llx %016llx %016llx",
148          fa_5tuple.kv.key[0], fa_5tuple.kv.key[1], fa_5tuple.kv.key[2],
149          fa_5tuple.kv.key[3], fa_5tuple.kv.key[4], fa_5tuple.kv.value);
150 #endif
151
152       /* Try to match an existing session first */
153
154       if (acl_fa_ifc_has_sessions (am, sw_if_index0))
155         {
156           if (acl_fa_find_session (am, sw_if_index0, &fa_5tuple, &value_sess)
157               && (value_sess.value != ~0ULL))
158             {
159               trace_bitmap |= 0x80000000;
160               error0 = ACL_FA_ERROR_ACL_EXIST_SESSION;
161               fa_full_session_id_t f_sess_id;
162
163               f_sess_id.as_u64 = value_sess.value;
164               ASSERT (f_sess_id.thread_index < vec_len (vlib_mains));
165
166               fa_session_t *sess =
167                 get_session_ptr (am, f_sess_id.thread_index,
168                                  f_sess_id.session_index);
169               int old_timeout_type = fa_session_get_timeout_type (am, sess);
170               action =
171                 acl_fa_track_session (am, is_input, sw_if_index0, now,
172                                       sess, &fa_5tuple);
173               /* expose the session id to the tracer */
174               match_rule_index = f_sess_id.session_index;
175               int new_timeout_type = fa_session_get_timeout_type (am, sess);
176               acl_check_needed = 0;
177               pkts_exist_session += 1;
178               /* Tracking might have changed the session timeout type, e.g. from transient to established */
179               if (PREDICT_FALSE (old_timeout_type != new_timeout_type))
180                 {
181                   acl_fa_restart_timer_for_session (am, now, f_sess_id);
182                   pkts_restart_session_timer++;
183                   trace_bitmap |=
184                     0x00010000 + ((0xff & old_timeout_type) << 8) +
185                     (0xff & new_timeout_type);
186                 }
187               /*
188                * I estimate the likelihood to be very low - the VPP needs
189                * to have >64K interfaces to start with and then on
190                * exactly 64K indices apart needs to be exactly the same
191                * 5-tuple... Anyway, since this probability is nonzero -
192                * print an error and drop the unlucky packet.
193                * If this shows up in real world, we would need to bump
194                * the hash key length.
195                */
196               if (PREDICT_FALSE (sess->sw_if_index != sw_if_index0))
197                 {
198                   clib_warning
199                     ("BUG: session LSB16(sw_if_index) and 5-tuple collision!");
200                   acl_check_needed = 0;
201                   action = 0;
202                 }
203               if (PREDICT_FALSE (am->reclassify_sessions))
204                 {
205                   /* if the MSB of policy epoch matches but not the LSB means it is a stale session */
206                   if ((0 ==
207                        ((current_policy_epoch ^
208                          f_sess_id.intf_policy_epoch) &
209                         FA_POLICY_EPOCH_IS_INPUT))
210                       && (current_policy_epoch !=
211                           f_sess_id.intf_policy_epoch))
212                     {
213                       /* delete session and increment the counter */
214                       vec_validate
215                         (pw->fa_session_epoch_change_by_sw_if_index,
216                          sw_if_index0);
217                       vec_elt (pw->fa_session_epoch_change_by_sw_if_index,
218                                sw_if_index0)++;
219                       if (acl_fa_conn_list_delete_session
220                           (am, f_sess_id, now))
221                         {
222                           /* delete the session only if we were able to unlink it */
223                           acl_fa_two_stage_delete_session (am, sw_if_index0,
224                                                            f_sess_id, now);
225                         }
226                       acl_check_needed = 1;
227                       trace_bitmap |= 0x40000000;
228                     }
229                 }
230             }
231         }
232
233       if (acl_check_needed)
234         {
235           action = 0;           /* deny by default */
236           acl_plugin_match_5tuple_inline (lc_index0,
237                                           (fa_5tuple_opaque_t *) &
238                                           fa_5tuple, is_ip6, &action,
239                                           &match_acl_pos,
240                                           &match_acl_in_index,
241                                           &match_rule_index, &trace_bitmap);
242           error0 = action;
243           if (1 == action)
244             pkts_acl_permit += 1;
245           if (2 == action)
246             {
247               if (!acl_fa_can_add_session (am, is_input, sw_if_index0))
248                 acl_fa_try_recycle_session (am, is_input, thread_index,
249                                             sw_if_index0, now);
250
251               if (acl_fa_can_add_session (am, is_input, sw_if_index0))
252                 {
253                   fa_session_t *sess =
254                     acl_fa_add_session (am, is_input, is_ip6,
255                                         sw_if_index0,
256                                         now, &fa_5tuple,
257                                         current_policy_epoch);
258                   acl_fa_track_session (am, is_input, sw_if_index0,
259                                         now, sess, &fa_5tuple);
260                   pkts_new_session += 1;
261                 }
262               else
263                 {
264                   action = 0;
265                   error0 = ACL_FA_ERROR_ACL_TOO_MANY_SESSIONS;
266                 }
267             }
268         }
269
270
271
272       if (action > 0)
273         {
274           if (is_l2_path)
275             next0 = vnet_l2_feature_next (b[0], l2_feat_next_node_index, 0);
276           else
277             vnet_feature_next (sw_if_index0, &next0, b[0]);
278         }
279 #ifdef FA_NODE_VERBOSE_DEBUG
280       clib_warning
281         ("ACL_FA_NODE_DBG: sw_if_index %d lc_index %d action %d acl_index %d rule_index %d",
282          sw_if_index0, lc_index0, action, match_acl_in_index,
283          match_rule_index);
284 #endif
285
286       if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE)
287                          && (b[0]->flags & VLIB_BUFFER_IS_TRACED)))
288         {
289           acl_fa_trace_t *t = vlib_add_trace (vm, node, b[0], sizeof (*t));
290           t->sw_if_index = sw_if_index0;
291           t->lc_index = lc_index0;
292           t->next_index = next0;
293           t->match_acl_in_index = match_acl_in_index;
294           t->match_rule_index = match_rule_index;
295           t->packet_info[0] = fa_5tuple.kv.key[0];
296           t->packet_info[1] = fa_5tuple.kv.key[1];
297           t->packet_info[2] = fa_5tuple.kv.key[2];
298           t->packet_info[3] = fa_5tuple.kv.key[3];
299           t->packet_info[4] = fa_5tuple.kv.key[4];
300           t->packet_info[5] = fa_5tuple.kv.value;
301           t->action = action;
302           t->trace_bitmap = trace_bitmap;
303         }
304
305       next0 = next0 < node->n_next_nodes ? next0 : 0;
306       if (0 == next0)
307         b[0]->error = error_node->errors[error0];
308       next[0] = next0;
309
310       next++;
311       b++;
312       pkts_acl_checked += 1;
313     }
314
315   vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
316
317   vlib_node_increment_counter (vm, acl_fa_node->index,
318                                ACL_FA_ERROR_ACL_CHECK, pkts_acl_checked);
319   vlib_node_increment_counter (vm, acl_fa_node->index,
320                                ACL_FA_ERROR_ACL_PERMIT, pkts_acl_permit);
321   vlib_node_increment_counter (vm, acl_fa_node->index,
322                                ACL_FA_ERROR_ACL_NEW_SESSION,
323                                pkts_new_session);
324   vlib_node_increment_counter (vm, acl_fa_node->index,
325                                ACL_FA_ERROR_ACL_EXIST_SESSION,
326                                pkts_exist_session);
327   vlib_node_increment_counter (vm, acl_fa_node->index,
328                                ACL_FA_ERROR_ACL_RESTART_SESSION_TIMER,
329                                pkts_restart_session_timer);
330   return frame->n_vectors;
331 }
332
333 vlib_node_registration_t acl_in_l2_ip6_node;
334 VLIB_NODE_FN (acl_in_l2_ip6_node) (vlib_main_t * vm,
335                                    vlib_node_runtime_t * node,
336                                    vlib_frame_t * frame)
337 {
338   acl_main_t *am = &acl_main;
339   return acl_fa_node_fn (vm, node, frame, 1, 1, 1,
340                          am->fa_acl_in_ip6_l2_node_feat_next_node_index,
341                          &acl_in_l2_ip6_node);
342 }
343
344 vlib_node_registration_t acl_in_l2_ip4_node;
345 VLIB_NODE_FN (acl_in_l2_ip4_node) (vlib_main_t * vm,
346                                    vlib_node_runtime_t * node,
347                                    vlib_frame_t * frame)
348 {
349   acl_main_t *am = &acl_main;
350   return acl_fa_node_fn (vm, node, frame, 0, 1, 1,
351                          am->fa_acl_in_ip4_l2_node_feat_next_node_index,
352                          &acl_in_l2_ip4_node);
353 }
354
355 vlib_node_registration_t acl_out_l2_ip6_node;
356 VLIB_NODE_FN (acl_out_l2_ip6_node) (vlib_main_t * vm,
357                                     vlib_node_runtime_t * node,
358                                     vlib_frame_t * frame)
359 {
360   acl_main_t *am = &acl_main;
361   return acl_fa_node_fn (vm, node, frame, 1, 0, 1,
362                          am->fa_acl_out_ip6_l2_node_feat_next_node_index,
363                          &acl_out_l2_ip6_node);
364 }
365
366 vlib_node_registration_t acl_out_l2_ip4_node;
367 VLIB_NODE_FN (acl_out_l2_ip4_node) (vlib_main_t * vm,
368                                     vlib_node_runtime_t * node,
369                                     vlib_frame_t * frame)
370 {
371   acl_main_t *am = &acl_main;
372   return acl_fa_node_fn (vm, node, frame, 0, 0, 1,
373                          am->fa_acl_out_ip4_l2_node_feat_next_node_index,
374                          &acl_out_l2_ip4_node);
375 }
376
377 /**** L3 processing path nodes ****/
378
379 vlib_node_registration_t acl_in_fa_ip6_node;
380 VLIB_NODE_FN (acl_in_fa_ip6_node) (vlib_main_t * vm,
381                                    vlib_node_runtime_t * node,
382                                    vlib_frame_t * frame)
383 {
384   return acl_fa_node_fn (vm, node, frame, 1, 1, 0, 0, &acl_in_fa_ip6_node);
385 }
386
387 vlib_node_registration_t acl_in_fa_ip4_node;
388 VLIB_NODE_FN (acl_in_fa_ip4_node) (vlib_main_t * vm,
389                                    vlib_node_runtime_t * node,
390                                    vlib_frame_t * frame)
391 {
392   return acl_fa_node_fn (vm, node, frame, 0, 1, 0, 0, &acl_in_fa_ip4_node);
393 }
394
395 vlib_node_registration_t acl_out_fa_ip6_node;
396 VLIB_NODE_FN (acl_out_fa_ip6_node) (vlib_main_t * vm,
397                                     vlib_node_runtime_t * node,
398                                     vlib_frame_t * frame)
399 {
400   return acl_fa_node_fn (vm, node, frame, 1, 0, 0, 0, &acl_out_fa_ip6_node);
401 }
402
403 vlib_node_registration_t acl_out_fa_ip4_node;
404 VLIB_NODE_FN (acl_out_fa_ip4_node) (vlib_main_t * vm,
405                                     vlib_node_runtime_t * node,
406                                     vlib_frame_t * frame)
407 {
408   return acl_fa_node_fn (vm, node, frame, 0, 0, 0, 0, &acl_out_fa_ip4_node);
409 }
410
411 #ifndef CLIB_MARCH_VARIANT
412 static u8 *
413 format_fa_5tuple (u8 * s, va_list * args)
414 {
415   fa_5tuple_t *p5t = va_arg (*args, fa_5tuple_t *);
416
417   if (p5t->pkt.is_ip6)
418     return format (s, "lc_index %d (lsb16 of sw_if_index %d) l3 %s%s %U -> %U"
419                    " l4 proto %d l4_valid %d port %d -> %d tcp flags (%s) %02x rsvd %x",
420                    p5t->pkt.lc_index, p5t->l4.lsb_of_sw_if_index,
421                    "ip6",
422                    p5t->
423                    pkt.is_nonfirst_fragment ? " non-initial fragment" : "",
424                    format_ip6_address, &p5t->ip6_addr[0], format_ip6_address,
425                    &p5t->ip6_addr[1], p5t->l4.proto, p5t->pkt.l4_valid,
426                    p5t->l4.port[0], p5t->l4.port[1],
427                    p5t->pkt.tcp_flags_valid ? "valid" : "invalid",
428                    p5t->pkt.tcp_flags, p5t->pkt.flags_reserved);
429   else
430     return format (s, "lc_index %d (lsb16 of sw_if_index %d) l3 %s%s %U -> %U"
431                    " l4 proto %d l4_valid %d port %d -> %d tcp flags (%s) %02x rsvd %x",
432                    p5t->pkt.lc_index, p5t->l4.lsb_of_sw_if_index,
433                    "ip4",
434                    p5t->
435                    pkt.is_nonfirst_fragment ? " non-initial fragment" : "",
436                    format_ip4_address, &p5t->ip4_addr[0], format_ip4_address,
437                    &p5t->ip4_addr[1], p5t->l4.proto, p5t->pkt.l4_valid,
438                    p5t->l4.port[0], p5t->l4.port[1],
439                    p5t->pkt.tcp_flags_valid ? "valid" : "invalid",
440                    p5t->pkt.tcp_flags, p5t->pkt.flags_reserved);
441 }
442
443 u8 *
444 format_acl_plugin_5tuple (u8 * s, va_list * args)
445 {
446   return format_fa_5tuple (s, args);
447 }
448
449 /* packet trace format function */
450 u8 *
451 format_acl_plugin_trace (u8 * s, va_list * args)
452 {
453   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
454   CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
455   acl_fa_trace_t *t = va_arg (*args, acl_fa_trace_t *);
456
457   s =
458     format (s,
459             "acl-plugin: lc_index: %d, sw_if_index %d, next index %d, action: %d, match: acl %d rule %d trace_bits %08x\n"
460             "  pkt info %016llx %016llx %016llx %016llx %016llx %016llx",
461             t->lc_index, t->sw_if_index, t->next_index, t->action,
462             t->match_acl_in_index, t->match_rule_index, t->trace_bitmap,
463             t->packet_info[0], t->packet_info[1], t->packet_info[2],
464             t->packet_info[3], t->packet_info[4], t->packet_info[5]);
465
466   /* Now also print out the packet_info in a form usable by humans */
467   s = format (s, "\n   %U", format_fa_5tuple, t->packet_info);
468   return s;
469 }
470
471
472 /* *INDENT-OFF* */
473
474 static char *acl_fa_error_strings[] = {
475 #define _(sym,string) string,
476   foreach_acl_fa_error
477 #undef _
478 };
479
480 VLIB_REGISTER_NODE (acl_in_l2_ip6_node) =
481 {
482   .name = "acl-plugin-in-ip6-l2",
483   .vector_size = sizeof (u32),
484   .format_trace = format_acl_plugin_trace,
485   .type = VLIB_NODE_TYPE_INTERNAL,
486   .n_errors = ARRAY_LEN (acl_fa_error_strings),
487   .error_strings = acl_fa_error_strings,
488   .n_next_nodes = ACL_FA_N_NEXT,
489   .next_nodes =
490   {
491     [ACL_FA_ERROR_DROP] = "error-drop",
492   }
493 };
494
495 VLIB_REGISTER_NODE (acl_in_l2_ip4_node) =
496 {
497   .name = "acl-plugin-in-ip4-l2",
498   .vector_size = sizeof (u32),
499   .format_trace = format_acl_plugin_trace,
500   .type = VLIB_NODE_TYPE_INTERNAL,
501   .n_errors = ARRAY_LEN (acl_fa_error_strings),
502   .error_strings = acl_fa_error_strings,
503   .n_next_nodes = ACL_FA_N_NEXT,
504   .next_nodes =
505   {
506     [ACL_FA_ERROR_DROP] = "error-drop",
507   }
508 };
509
510 VLIB_REGISTER_NODE (acl_out_l2_ip6_node) =
511 {
512   .name = "acl-plugin-out-ip6-l2",
513   .vector_size = sizeof (u32),
514   .format_trace = format_acl_plugin_trace,
515   .type = VLIB_NODE_TYPE_INTERNAL,
516   .n_errors = ARRAY_LEN (acl_fa_error_strings),
517   .error_strings = acl_fa_error_strings,
518   .n_next_nodes = ACL_FA_N_NEXT,
519   .next_nodes =
520   {
521     [ACL_FA_ERROR_DROP] = "error-drop",
522   }
523 };
524
525 VLIB_REGISTER_NODE (acl_out_l2_ip4_node) =
526 {
527   .name = "acl-plugin-out-ip4-l2",
528   .vector_size = sizeof (u32),
529   .format_trace = format_acl_plugin_trace,
530   .type = VLIB_NODE_TYPE_INTERNAL,
531   .n_errors = ARRAY_LEN (acl_fa_error_strings),
532   .error_strings = acl_fa_error_strings,
533   .n_next_nodes = ACL_FA_N_NEXT,
534   .next_nodes =
535   {
536     [ACL_FA_ERROR_DROP] = "error-drop",
537   }
538 };
539
540
541 VLIB_REGISTER_NODE (acl_in_fa_ip6_node) =
542 {
543   .name = "acl-plugin-in-ip6-fa",
544   .vector_size = sizeof (u32),
545   .format_trace = format_acl_plugin_trace,
546   .type = VLIB_NODE_TYPE_INTERNAL,
547   .n_errors = ARRAY_LEN (acl_fa_error_strings),
548   .error_strings = acl_fa_error_strings,
549   .n_next_nodes = ACL_FA_N_NEXT,
550   .next_nodes =
551   {
552     [ACL_FA_ERROR_DROP] = "error-drop",
553   }
554 };
555
556 VNET_FEATURE_INIT (acl_in_ip6_fa_feature, static) =
557 {
558   .arc_name = "ip6-unicast",
559   .node_name = "acl-plugin-in-ip6-fa",
560   .runs_before = VNET_FEATURES ("ip6-flow-classify"),
561 };
562
563 VLIB_REGISTER_NODE (acl_in_fa_ip4_node) =
564 {
565   .name = "acl-plugin-in-ip4-fa",
566   .vector_size = sizeof (u32),
567   .format_trace = format_acl_plugin_trace,
568   .type = VLIB_NODE_TYPE_INTERNAL,
569   .n_errors = ARRAY_LEN (acl_fa_error_strings),
570   .error_strings = acl_fa_error_strings,
571   .n_next_nodes = ACL_FA_N_NEXT,
572   .next_nodes =
573   {
574     [ACL_FA_ERROR_DROP] = "error-drop",
575   }
576 };
577
578 VNET_FEATURE_INIT (acl_in_ip4_fa_feature, static) =
579 {
580   .arc_name = "ip4-unicast",
581   .node_name = "acl-plugin-in-ip4-fa",
582   .runs_before = VNET_FEATURES ("ip4-flow-classify"),
583 };
584
585
586 VLIB_REGISTER_NODE (acl_out_fa_ip6_node) =
587 {
588   .name = "acl-plugin-out-ip6-fa",
589   .vector_size = sizeof (u32),
590   .format_trace = format_acl_plugin_trace,
591   .type = VLIB_NODE_TYPE_INTERNAL,
592   .n_errors = ARRAY_LEN (acl_fa_error_strings),
593   .error_strings = acl_fa_error_strings,
594   .n_next_nodes = ACL_FA_N_NEXT,
595   .next_nodes =
596   {
597     [ACL_FA_ERROR_DROP] = "error-drop",
598   }
599 };
600
601 VNET_FEATURE_INIT (acl_out_ip6_fa_feature, static) =
602 {
603   .arc_name = "ip6-output",
604   .node_name = "acl-plugin-out-ip6-fa",
605   .runs_before = VNET_FEATURES ("interface-output"),
606 };
607
608 VLIB_REGISTER_NODE (acl_out_fa_ip4_node) =
609 {
610   .name = "acl-plugin-out-ip4-fa",
611   .vector_size = sizeof (u32),
612   .format_trace = format_acl_plugin_trace,
613   .type = VLIB_NODE_TYPE_INTERNAL,
614   .n_errors = ARRAY_LEN (acl_fa_error_strings),
615   .error_strings = acl_fa_error_strings,
616   .n_next_nodes = ACL_FA_N_NEXT,
617     /* edit / add dispositions here */
618   .next_nodes =
619   {
620     [ACL_FA_ERROR_DROP] = "error-drop",
621   }
622 };
623
624 VNET_FEATURE_INIT (acl_out_ip4_fa_feature, static) =
625 {
626   .arc_name = "ip4-output",
627   .node_name = "acl-plugin-out-ip4-fa",
628   .runs_before = VNET_FEATURES ("interface-output"),
629 };
630 #endif
631
632 /* *INDENT-ON* */
633
634 /*
635  * fd.io coding-style-patch-verification: ON
636  *
637  * Local Variables:
638  * eval: (c-set-style "gnu")
639  * End:
640  */