acl-plugin: multicore: session management fixes
[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   return format (s, "lc_index %d (lsb16 of sw_if_index %d) l3 %s%s %U -> %U"
418                  " l4 proto %d l4_valid %d port %d -> %d tcp flags (%s) %02x rsvd %x",
419                  p5t->pkt.lc_index, p5t->l4.lsb_of_sw_if_index,
420                  p5t->pkt.is_ip6 ? "ip6" : "ip4",
421                  p5t->pkt.is_nonfirst_fragment ? " non-initial fragment" : "",
422                  format_ip46_address, &p5t->addr[0],
423                  p5t->pkt.is_ip6 ? IP46_TYPE_IP6 : IP46_TYPE_IP4,
424                  format_ip46_address, &p5t->addr[1],
425                  p5t->pkt.is_ip6 ? IP46_TYPE_IP6 : IP46_TYPE_IP4,
426                  p5t->l4.proto, p5t->pkt.l4_valid, p5t->l4.port[0],
427                  p5t->l4.port[1],
428                  p5t->pkt.tcp_flags_valid ? "valid" : "invalid",
429                  p5t->pkt.tcp_flags, p5t->pkt.flags_reserved);
430 }
431
432 u8 *
433 format_acl_plugin_5tuple (u8 * s, va_list * args)
434 {
435   return format_fa_5tuple (s, args);
436 }
437
438 /* packet trace format function */
439 u8 *
440 format_acl_plugin_trace (u8 * s, va_list * args)
441 {
442   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
443   CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
444   acl_fa_trace_t *t = va_arg (*args, acl_fa_trace_t *);
445
446   s =
447     format (s,
448             "acl-plugin: lc_index: %d, sw_if_index %d, next index %d, action: %d, match: acl %d rule %d trace_bits %08x\n"
449             "  pkt info %016llx %016llx %016llx %016llx %016llx %016llx",
450             t->lc_index, t->sw_if_index, t->next_index, t->action,
451             t->match_acl_in_index, t->match_rule_index, t->trace_bitmap,
452             t->packet_info[0], t->packet_info[1], t->packet_info[2],
453             t->packet_info[3], t->packet_info[4], t->packet_info[5]);
454
455   /* Now also print out the packet_info in a form usable by humans */
456   s = format (s, "\n   %U", format_fa_5tuple, t->packet_info);
457   return s;
458 }
459
460
461 /* *INDENT-OFF* */
462
463 static char *acl_fa_error_strings[] = {
464 #define _(sym,string) string,
465   foreach_acl_fa_error
466 #undef _
467 };
468
469 VLIB_REGISTER_NODE (acl_in_l2_ip6_node) =
470 {
471   .name = "acl-plugin-in-ip6-l2",
472   .vector_size = sizeof (u32),
473   .format_trace = format_acl_plugin_trace,
474   .type = VLIB_NODE_TYPE_INTERNAL,
475   .n_errors = ARRAY_LEN (acl_fa_error_strings),
476   .error_strings = acl_fa_error_strings,
477   .n_next_nodes = ACL_FA_N_NEXT,
478   .next_nodes =
479   {
480     [ACL_FA_ERROR_DROP] = "error-drop",
481   }
482 };
483
484 VLIB_REGISTER_NODE (acl_in_l2_ip4_node) =
485 {
486   .name = "acl-plugin-in-ip4-l2",
487   .vector_size = sizeof (u32),
488   .format_trace = format_acl_plugin_trace,
489   .type = VLIB_NODE_TYPE_INTERNAL,
490   .n_errors = ARRAY_LEN (acl_fa_error_strings),
491   .error_strings = acl_fa_error_strings,
492   .n_next_nodes = ACL_FA_N_NEXT,
493   .next_nodes =
494   {
495     [ACL_FA_ERROR_DROP] = "error-drop",
496   }
497 };
498
499 VLIB_REGISTER_NODE (acl_out_l2_ip6_node) =
500 {
501   .name = "acl-plugin-out-ip6-l2",
502   .vector_size = sizeof (u32),
503   .format_trace = format_acl_plugin_trace,
504   .type = VLIB_NODE_TYPE_INTERNAL,
505   .n_errors = ARRAY_LEN (acl_fa_error_strings),
506   .error_strings = acl_fa_error_strings,
507   .n_next_nodes = ACL_FA_N_NEXT,
508   .next_nodes =
509   {
510     [ACL_FA_ERROR_DROP] = "error-drop",
511   }
512 };
513
514 VLIB_REGISTER_NODE (acl_out_l2_ip4_node) =
515 {
516   .name = "acl-plugin-out-ip4-l2",
517   .vector_size = sizeof (u32),
518   .format_trace = format_acl_plugin_trace,
519   .type = VLIB_NODE_TYPE_INTERNAL,
520   .n_errors = ARRAY_LEN (acl_fa_error_strings),
521   .error_strings = acl_fa_error_strings,
522   .n_next_nodes = ACL_FA_N_NEXT,
523   .next_nodes =
524   {
525     [ACL_FA_ERROR_DROP] = "error-drop",
526   }
527 };
528
529
530 VLIB_REGISTER_NODE (acl_in_fa_ip6_node) =
531 {
532   .name = "acl-plugin-in-ip6-fa",
533   .vector_size = sizeof (u32),
534   .format_trace = format_acl_plugin_trace,
535   .type = VLIB_NODE_TYPE_INTERNAL,
536   .n_errors = ARRAY_LEN (acl_fa_error_strings),
537   .error_strings = acl_fa_error_strings,
538   .n_next_nodes = ACL_FA_N_NEXT,
539   .next_nodes =
540   {
541     [ACL_FA_ERROR_DROP] = "error-drop",
542   }
543 };
544
545 VNET_FEATURE_INIT (acl_in_ip6_fa_feature, static) =
546 {
547   .arc_name = "ip6-unicast",
548   .node_name = "acl-plugin-in-ip6-fa",
549   .runs_before = VNET_FEATURES ("ip6-flow-classify"),
550 };
551
552 VLIB_REGISTER_NODE (acl_in_fa_ip4_node) =
553 {
554   .name = "acl-plugin-in-ip4-fa",
555   .vector_size = sizeof (u32),
556   .format_trace = format_acl_plugin_trace,
557   .type = VLIB_NODE_TYPE_INTERNAL,
558   .n_errors = ARRAY_LEN (acl_fa_error_strings),
559   .error_strings = acl_fa_error_strings,
560   .n_next_nodes = ACL_FA_N_NEXT,
561   .next_nodes =
562   {
563     [ACL_FA_ERROR_DROP] = "error-drop",
564   }
565 };
566
567 VNET_FEATURE_INIT (acl_in_ip4_fa_feature, static) =
568 {
569   .arc_name = "ip4-unicast",
570   .node_name = "acl-plugin-in-ip4-fa",
571   .runs_before = VNET_FEATURES ("ip4-flow-classify"),
572 };
573
574
575 VLIB_REGISTER_NODE (acl_out_fa_ip6_node) =
576 {
577   .name = "acl-plugin-out-ip6-fa",
578   .vector_size = sizeof (u32),
579   .format_trace = format_acl_plugin_trace,
580   .type = VLIB_NODE_TYPE_INTERNAL,
581   .n_errors = ARRAY_LEN (acl_fa_error_strings),
582   .error_strings = acl_fa_error_strings,
583   .n_next_nodes = ACL_FA_N_NEXT,
584   .next_nodes =
585   {
586     [ACL_FA_ERROR_DROP] = "error-drop",
587   }
588 };
589
590 VNET_FEATURE_INIT (acl_out_ip6_fa_feature, static) =
591 {
592   .arc_name = "ip6-output",
593   .node_name = "acl-plugin-out-ip6-fa",
594   .runs_before = VNET_FEATURES ("interface-output"),
595 };
596
597 VLIB_REGISTER_NODE (acl_out_fa_ip4_node) =
598 {
599   .name = "acl-plugin-out-ip4-fa",
600   .vector_size = sizeof (u32),
601   .format_trace = format_acl_plugin_trace,
602   .type = VLIB_NODE_TYPE_INTERNAL,
603   .n_errors = ARRAY_LEN (acl_fa_error_strings),
604   .error_strings = acl_fa_error_strings,
605   .n_next_nodes = ACL_FA_N_NEXT,
606     /* edit / add dispositions here */
607   .next_nodes =
608   {
609     [ACL_FA_ERROR_DROP] = "error-drop",
610   }
611 };
612
613 VNET_FEATURE_INIT (acl_out_ip4_fa_feature, static) =
614 {
615   .arc_name = "ip4-output",
616   .node_name = "acl-plugin-out-ip4-fa",
617   .runs_before = VNET_FEATURES ("interface-output"),
618 };
619 #endif
620
621 /* *INDENT-ON* */
622
623 /*
624  * fd.io coding-style-patch-verification: ON
625  *
626  * Local Variables:
627  * eval: (c-set-style "gnu")
628  * End:
629  */