Move the punt/drop nodes into vlib
[vpp.git] / src / vnet / interface_output.c
1 /*
2  * Copyright (c) 2015 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 /*
16  * interface_output.c: interface output node
17  *
18  * Copyright (c) 2008 Eliot Dresselhaus
19  *
20  * Permission is hereby granted, free of charge, to any person obtaining
21  * a copy of this software and associated documentation files (the
22  * "Software"), to deal in the Software without restriction, including
23  * without limitation the rights to use, copy, modify, merge, publish,
24  * distribute, sublicense, and/or sell copies of the Software, and to
25  * permit persons to whom the Software is furnished to do so, subject to
26  * the following conditions:
27  *
28  * The above copyright notice and this permission notice shall be
29  * included in all copies or substantial portions of the Software.
30  *
31  *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32  *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33  *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34  *  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35  *  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36  *  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37  *  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38  */
39
40 #include <vnet/vnet.h>
41 #include <vnet/ip/icmp46_packet.h>
42 #include <vnet/ip/ip4.h>
43 #include <vnet/ip/ip6.h>
44 #include <vnet/udp/udp_packet.h>
45 #include <vnet/feature/feature.h>
46
47 typedef struct
48 {
49   u32 sw_if_index;
50   u32 flags;
51   u16 gso_size;
52   u8 gso_l4_hdr_sz;
53   u8 data[128 - 3 * sizeof (u32)];
54 }
55 interface_output_trace_t;
56
57 #ifndef CLIB_MARCH_VARIANT
58 u8 *
59 format_vnet_interface_output_trace (u8 * s, va_list * va)
60 {
61   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
62   vlib_node_t *node = va_arg (*va, vlib_node_t *);
63   interface_output_trace_t *t = va_arg (*va, interface_output_trace_t *);
64   vnet_main_t *vnm = vnet_get_main ();
65   vnet_sw_interface_t *si;
66   u32 indent;
67
68   if (t->sw_if_index != (u32) ~ 0)
69     {
70       indent = format_get_indent (s);
71
72       if (pool_is_free_index
73           (vnm->interface_main.sw_interfaces, t->sw_if_index))
74         {
75           /* the interface may have been deleted by the time the trace is printed */
76           s = format (s, "sw_if_index: %d ", t->sw_if_index);
77         }
78       else
79         {
80           si = vnet_get_sw_interface (vnm, t->sw_if_index);
81           s =
82             format (s, "%U ", format_vnet_sw_interface_name, vnm, si,
83                     t->flags);
84         }
85 #define _(bit, name, v, x) \
86           if (v && (t->flags & VNET_BUFFER_F_##name)) \
87             s = format (s, "%s ", v);
88       foreach_vnet_buffer_flag
89 #undef _
90         if (t->flags & VNET_BUFFER_F_GSO)
91         {
92           s = format (s, "\n%Ugso_sz %d gso_l4_hdr_sz %d",
93                       format_white_space, indent + 2, t->gso_size,
94                       t->gso_l4_hdr_sz);
95         }
96       s =
97         format (s, "\n%U%U", format_white_space, indent,
98                 node->format_buffer ? node->format_buffer : format_hex_bytes,
99                 t->data, sizeof (t->data));
100     }
101   return s;
102 }
103
104 static void
105 vnet_interface_output_trace (vlib_main_t * vm,
106                              vlib_node_runtime_t * node,
107                              vlib_frame_t * frame, uword n_buffers)
108 {
109   u32 n_left, *from;
110
111   n_left = n_buffers;
112   from = vlib_frame_vector_args (frame);
113
114   while (n_left >= 4)
115     {
116       u32 bi0, bi1;
117       vlib_buffer_t *b0, *b1;
118       interface_output_trace_t *t0, *t1;
119
120       /* Prefetch next iteration. */
121       vlib_prefetch_buffer_with_index (vm, from[2], LOAD);
122       vlib_prefetch_buffer_with_index (vm, from[3], LOAD);
123
124       bi0 = from[0];
125       bi1 = from[1];
126
127       b0 = vlib_get_buffer (vm, bi0);
128       b1 = vlib_get_buffer (vm, bi1);
129
130       if (b0->flags & VLIB_BUFFER_IS_TRACED)
131         {
132           t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0]));
133           t0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_TX];
134           t0->flags = b0->flags;
135           t0->gso_size = vnet_buffer2 (b0)->gso_size;
136           t0->gso_l4_hdr_sz = vnet_buffer2 (b0)->gso_l4_hdr_sz;
137           clib_memcpy_fast (t0->data, vlib_buffer_get_current (b0),
138                             sizeof (t0->data));
139         }
140       if (b1->flags & VLIB_BUFFER_IS_TRACED)
141         {
142           t1 = vlib_add_trace (vm, node, b1, sizeof (t1[0]));
143           t1->sw_if_index = vnet_buffer (b1)->sw_if_index[VLIB_TX];
144           t1->flags = b1->flags;
145           t1->gso_size = vnet_buffer2 (b1)->gso_size;
146           t1->gso_l4_hdr_sz = vnet_buffer2 (b1)->gso_l4_hdr_sz;
147           clib_memcpy_fast (t1->data, vlib_buffer_get_current (b1),
148                             sizeof (t1->data));
149         }
150       from += 2;
151       n_left -= 2;
152     }
153
154   while (n_left >= 1)
155     {
156       u32 bi0;
157       vlib_buffer_t *b0;
158       interface_output_trace_t *t0;
159
160       bi0 = from[0];
161
162       b0 = vlib_get_buffer (vm, bi0);
163
164       if (b0->flags & VLIB_BUFFER_IS_TRACED)
165         {
166           t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0]));
167           t0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_TX];
168           t0->flags = b0->flags;
169           t0->gso_size = vnet_buffer2 (b0)->gso_size;
170           t0->gso_l4_hdr_sz = vnet_buffer2 (b0)->gso_l4_hdr_sz;
171           clib_memcpy_fast (t0->data, vlib_buffer_get_current (b0),
172                             sizeof (t0->data));
173         }
174       from += 1;
175       n_left -= 1;
176     }
177 }
178
179 static_always_inline void
180 calc_checksums (vlib_main_t * vm, vlib_buffer_t * b)
181 {
182   ip4_header_t *ip4;
183   ip6_header_t *ip6;
184   tcp_header_t *th;
185   udp_header_t *uh;
186
187   int is_ip4 = (b->flags & VNET_BUFFER_F_IS_IP4) != 0;
188   int is_ip6 = (b->flags & VNET_BUFFER_F_IS_IP6) != 0;
189
190   ASSERT (!(is_ip4 && is_ip6));
191
192   ip4 = (ip4_header_t *) (b->data + vnet_buffer (b)->l3_hdr_offset);
193   ip6 = (ip6_header_t *) (b->data + vnet_buffer (b)->l3_hdr_offset);
194   th = (tcp_header_t *) (b->data + vnet_buffer (b)->l4_hdr_offset);
195   uh = (udp_header_t *) (b->data + vnet_buffer (b)->l4_hdr_offset);
196
197   if (is_ip4)
198     {
199       ip4 = (ip4_header_t *) (b->data + vnet_buffer (b)->l3_hdr_offset);
200       if (b->flags & VNET_BUFFER_F_OFFLOAD_IP_CKSUM)
201         ip4->checksum = ip4_header_checksum (ip4);
202       if (b->flags & VNET_BUFFER_F_OFFLOAD_TCP_CKSUM)
203         {
204           th->checksum = 0;
205           th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ip4);
206         }
207       if (b->flags & VNET_BUFFER_F_OFFLOAD_UDP_CKSUM)
208         uh->checksum = ip4_tcp_udp_compute_checksum (vm, b, ip4);
209     }
210   if (is_ip6)
211     {
212       int bogus;
213       if (b->flags & VNET_BUFFER_F_OFFLOAD_TCP_CKSUM)
214         {
215           th->checksum = 0;
216           th->checksum =
217             ip6_tcp_udp_icmp_compute_checksum (vm, b, ip6, &bogus);
218         }
219       if (b->flags & VNET_BUFFER_F_OFFLOAD_UDP_CKSUM)
220         {
221           uh->checksum = 0;
222           uh->checksum =
223             ip6_tcp_udp_icmp_compute_checksum (vm, b, ip6, &bogus);
224         }
225     }
226
227   b->flags &= ~VNET_BUFFER_F_OFFLOAD_TCP_CKSUM;
228   b->flags &= ~VNET_BUFFER_F_OFFLOAD_UDP_CKSUM;
229   b->flags &= ~VNET_BUFFER_F_OFFLOAD_IP_CKSUM;
230 }
231
232 static_always_inline u16
233 tso_alloc_tx_bufs (vlib_main_t * vm,
234                    vnet_interface_per_thread_data_t * ptd,
235                    vlib_buffer_t * b0, u16 l4_hdr_sz)
236 {
237   u32 n_bytes_b0 = vlib_buffer_length_in_chain (vm, b0);
238   u16 gso_size = vnet_buffer2 (b0)->gso_size;
239   u16 l234_sz = vnet_buffer (b0)->l4_hdr_offset + l4_hdr_sz;
240   /* rounded-up division */
241   u16 n_bufs = (n_bytes_b0 - l234_sz + (gso_size - 1)) / gso_size;
242   u16 n_alloc;
243
244   ASSERT (n_bufs > 0);
245   vec_validate (ptd->split_buffers, n_bufs - 1);
246
247   n_alloc = vlib_buffer_alloc (vm, ptd->split_buffers, n_bufs);
248   if (n_alloc < n_bufs)
249     {
250       vlib_buffer_free (vm, ptd->split_buffers, n_alloc);
251       return 0;
252     }
253   return 1;
254 }
255
256 static_always_inline void
257 tso_init_buf_from_template_base (vlib_buffer_t * nb0, vlib_buffer_t * b0,
258                                  u32 flags, u16 length)
259 {
260   nb0->current_data = 0;
261   nb0->total_length_not_including_first_buffer = 0;
262   nb0->flags = VLIB_BUFFER_TOTAL_LENGTH_VALID | flags;
263   clib_memcpy_fast (&nb0->opaque, &b0->opaque, sizeof (nb0->opaque));
264   clib_memcpy_fast (nb0->data, b0->data, length);
265   nb0->current_length = length;
266 }
267
268 static_always_inline void
269 tso_init_buf_from_template (vlib_main_t * vm, vlib_buffer_t * nb0,
270                             vlib_buffer_t * b0, u16 template_data_sz,
271                             u16 gso_size, u8 ** p_dst_ptr, u16 * p_dst_left,
272                             u32 next_tcp_seq, u32 flags)
273 {
274   tso_init_buf_from_template_base (nb0, b0, flags, template_data_sz);
275
276   *p_dst_left =
277     clib_min (gso_size,
278               vlib_buffer_get_default_data_size (vm) - template_data_sz);
279   *p_dst_ptr = nb0->data + template_data_sz;
280
281   tcp_header_t *tcp =
282     (tcp_header_t *) (nb0->data + vnet_buffer (nb0)->l4_hdr_offset);
283   tcp->seq_number = clib_host_to_net_u32 (next_tcp_seq);
284 }
285
286 static_always_inline void
287 tso_fixup_segmented_buf (vlib_buffer_t * b0, u8 tcp_flags, int is_ip6)
288 {
289   u16 l3_hdr_offset = vnet_buffer (b0)->l3_hdr_offset;
290   u16 l4_hdr_offset = vnet_buffer (b0)->l4_hdr_offset;
291   ip4_header_t *ip4 = (ip4_header_t *) (b0->data + l3_hdr_offset);
292   ip6_header_t *ip6 = (ip6_header_t *) (b0->data + l3_hdr_offset);
293   tcp_header_t *tcp = (tcp_header_t *) (b0->data + l4_hdr_offset);
294
295   tcp->flags = tcp_flags;
296
297   if (is_ip6)
298     ip6->payload_length =
299       clib_host_to_net_u16 (b0->current_length -
300                             vnet_buffer (b0)->l4_hdr_offset);
301   else
302     ip4->length =
303       clib_host_to_net_u16 (b0->current_length -
304                             vnet_buffer (b0)->l3_hdr_offset);
305 }
306
307 /**
308  * Allocate the necessary number of ptd->split_buffers,
309  * and segment the possibly chained buffer(s) from b0 into
310  * there.
311  *
312  * Return the cumulative number of bytes sent or zero
313  * if allocation failed.
314  */
315
316 static_always_inline u32
317 tso_segment_buffer (vlib_main_t * vm, vnet_interface_per_thread_data_t * ptd,
318                     int do_tx_offloads, u32 sbi0, vlib_buffer_t * sb0,
319                     u32 n_bytes_b0)
320 {
321   u32 n_tx_bytes = 0;
322   int is_ip4 = sb0->flags & VNET_BUFFER_F_IS_IP4;
323   int is_ip6 = sb0->flags & VNET_BUFFER_F_IS_IP6;
324   ASSERT (is_ip4 || is_ip6);
325   ASSERT (sb0->flags & VNET_BUFFER_F_L2_HDR_OFFSET_VALID);
326   ASSERT (sb0->flags & VNET_BUFFER_F_L3_HDR_OFFSET_VALID);
327   ASSERT (sb0->flags & VNET_BUFFER_F_L4_HDR_OFFSET_VALID);
328   u16 gso_size = vnet_buffer2 (sb0)->gso_size;
329
330   int l4_hdr_sz = vnet_buffer2 (sb0)->gso_l4_hdr_sz;
331   u8 save_tcp_flags = 0;
332   u8 tcp_flags_no_fin_psh = 0;
333   u32 next_tcp_seq = 0;
334
335   tcp_header_t *tcp =
336     (tcp_header_t *) (sb0->data + vnet_buffer (sb0)->l4_hdr_offset);
337   next_tcp_seq = clib_net_to_host_u32 (tcp->seq_number);
338   /* store original flags for last packet and reset FIN and PSH */
339   save_tcp_flags = tcp->flags;
340   tcp_flags_no_fin_psh = tcp->flags & ~(TCP_FLAG_FIN | TCP_FLAG_PSH);
341   tcp->checksum = 0;
342
343   u32 default_bflags =
344     sb0->flags & ~(VNET_BUFFER_F_GSO | VLIB_BUFFER_NEXT_PRESENT);
345   u16 l234_sz = vnet_buffer (sb0)->l4_hdr_offset + l4_hdr_sz;
346   int first_data_size = clib_min (gso_size, sb0->current_length - l234_sz);
347   next_tcp_seq += first_data_size;
348
349   if (PREDICT_FALSE (!tso_alloc_tx_bufs (vm, ptd, sb0, l4_hdr_sz)))
350     return 0;
351
352   vlib_buffer_t *b0 = vlib_get_buffer (vm, ptd->split_buffers[0]);
353   tso_init_buf_from_template_base (b0, sb0, default_bflags,
354                                    l4_hdr_sz + first_data_size);
355
356   u32 total_src_left = n_bytes_b0 - l234_sz - first_data_size;
357   if (total_src_left)
358     {
359       /* Need to copy more segments */
360       u8 *src_ptr, *dst_ptr;
361       u16 src_left, dst_left;
362       /* current source buffer */
363       vlib_buffer_t *csb0 = sb0;
364       u32 csbi0 = sbi0;
365       /* current dest buffer */
366       vlib_buffer_t *cdb0;
367       u16 dbi = 1;              /* the buffer [0] is b0 */
368
369       src_ptr = sb0->data + l234_sz + first_data_size;
370       src_left = sb0->current_length - l234_sz - first_data_size;
371       b0->current_length = l234_sz + first_data_size;
372
373       tso_fixup_segmented_buf (b0, tcp_flags_no_fin_psh, is_ip6);
374       if (do_tx_offloads)
375         calc_checksums (vm, b0);
376
377       /* grab a second buffer and prepare the loop */
378       ASSERT (dbi < vec_len (ptd->split_buffers));
379       cdb0 = vlib_get_buffer (vm, ptd->split_buffers[dbi++]);
380       tso_init_buf_from_template (vm, cdb0, b0, l234_sz, gso_size, &dst_ptr,
381                                   &dst_left, next_tcp_seq, default_bflags);
382
383       /* an arbitrary large number to catch the runaway loops */
384       int nloops = 2000;
385       while (total_src_left)
386         {
387           if (nloops-- <= 0)
388             clib_panic ("infinite loop detected");
389           u16 bytes_to_copy = clib_min (src_left, dst_left);
390
391           clib_memcpy_fast (dst_ptr, src_ptr, bytes_to_copy);
392
393           src_left -= bytes_to_copy;
394           src_ptr += bytes_to_copy;
395           total_src_left -= bytes_to_copy;
396           dst_left -= bytes_to_copy;
397           dst_ptr += bytes_to_copy;
398           next_tcp_seq += bytes_to_copy;
399           cdb0->current_length += bytes_to_copy;
400
401           if (0 == src_left)
402             {
403               int has_next = (csb0->flags & VLIB_BUFFER_NEXT_PRESENT);
404               u32 next_bi = csb0->next_buffer;
405
406               /* init src to the next buffer in chain */
407               if (has_next)
408                 {
409                   csbi0 = next_bi;
410                   csb0 = vlib_get_buffer (vm, csbi0);
411                   src_left = csb0->current_length;
412                   src_ptr = csb0->data;
413                 }
414               else
415                 {
416                   ASSERT (total_src_left == 0);
417                   break;
418                 }
419             }
420           if (0 == dst_left && total_src_left)
421             {
422               if (do_tx_offloads)
423                 calc_checksums (vm, cdb0);
424               n_tx_bytes += cdb0->current_length;
425               ASSERT (dbi < vec_len (ptd->split_buffers));
426               cdb0 = vlib_get_buffer (vm, ptd->split_buffers[dbi++]);
427               tso_init_buf_from_template (vm, cdb0, b0, l234_sz,
428                                           gso_size, &dst_ptr, &dst_left,
429                                           next_tcp_seq, default_bflags);
430             }
431         }
432
433       tso_fixup_segmented_buf (cdb0, save_tcp_flags, is_ip6);
434       if (do_tx_offloads)
435         calc_checksums (vm, cdb0);
436
437       n_tx_bytes += cdb0->current_length;
438     }
439   n_tx_bytes += b0->current_length;
440   return n_tx_bytes;
441 }
442
443 static_always_inline void
444 drop_one_buffer_and_count (vlib_main_t * vm, vnet_main_t * vnm,
445                            vlib_node_runtime_t * node, u32 * pbi0,
446                            u32 drop_error_code)
447 {
448   u32 thread_index = vm->thread_index;
449   vnet_interface_output_runtime_t *rt = (void *) node->runtime_data;
450
451   vlib_simple_counter_main_t *cm;
452   cm =
453     vec_elt_at_index (vnm->interface_main.sw_if_counters,
454                       VNET_INTERFACE_COUNTER_TX_ERROR);
455   vlib_increment_simple_counter (cm, thread_index, rt->sw_if_index, 1);
456
457   vlib_error_drop_buffers (vm, node, pbi0,
458                            /* buffer stride */ 1,
459                            /* n_buffers */ 1,
460                            VNET_INTERFACE_OUTPUT_NEXT_DROP,
461                            node->node_index, drop_error_code);
462 }
463
464 static_always_inline uword
465 vnet_interface_output_node_inline_gso (vlib_main_t * vm,
466                                        vlib_node_runtime_t * node,
467                                        vlib_frame_t * frame,
468                                        vnet_main_t * vnm,
469                                        vnet_hw_interface_t * hi,
470                                        int do_tx_offloads,
471                                        int do_segmentation)
472 {
473   vnet_interface_output_runtime_t *rt = (void *) node->runtime_data;
474   vnet_sw_interface_t *si;
475   u32 n_left_to_tx, *from, *from_end, *to_tx;
476   u32 n_bytes, n_buffers, n_packets;
477   u32 n_bytes_b0, n_bytes_b1, n_bytes_b2, n_bytes_b3;
478   u32 thread_index = vm->thread_index;
479   vnet_interface_main_t *im = &vnm->interface_main;
480   u32 next_index = VNET_INTERFACE_OUTPUT_NEXT_TX;
481   u32 current_config_index = ~0;
482   u8 arc = im->output_feature_arc_index;
483   vnet_interface_per_thread_data_t *ptd =
484     vec_elt_at_index (im->per_thread_data, thread_index);
485
486   n_buffers = frame->n_vectors;
487
488   if (node->flags & VLIB_NODE_FLAG_TRACE)
489     vnet_interface_output_trace (vm, node, frame, n_buffers);
490
491   from = vlib_frame_vector_args (frame);
492
493   if (rt->is_deleted)
494     return vlib_error_drop_buffers (vm, node, from,
495                                     /* buffer stride */ 1,
496                                     n_buffers,
497                                     VNET_INTERFACE_OUTPUT_NEXT_DROP,
498                                     node->node_index,
499                                     VNET_INTERFACE_OUTPUT_ERROR_INTERFACE_DELETED);
500
501   si = vnet_get_sw_interface (vnm, rt->sw_if_index);
502   hi = vnet_get_sup_hw_interface (vnm, rt->sw_if_index);
503   if (!(si->flags & (VNET_SW_INTERFACE_FLAG_ADMIN_UP |
504                      VNET_SW_INTERFACE_FLAG_BOND_SLAVE)) ||
505       !(hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP))
506     {
507       vlib_simple_counter_main_t *cm;
508
509       cm = vec_elt_at_index (vnm->interface_main.sw_if_counters,
510                              VNET_INTERFACE_COUNTER_TX_ERROR);
511       vlib_increment_simple_counter (cm, thread_index,
512                                      rt->sw_if_index, n_buffers);
513
514       return vlib_error_drop_buffers (vm, node, from,
515                                       /* buffer stride */ 1,
516                                       n_buffers,
517                                       VNET_INTERFACE_OUTPUT_NEXT_DROP,
518                                       node->node_index,
519                                       VNET_INTERFACE_OUTPUT_ERROR_INTERFACE_DOWN);
520     }
521
522   from_end = from + n_buffers;
523
524   /* Total byte count of all buffers. */
525   n_bytes = 0;
526   n_packets = 0;
527
528   /* interface-output feature arc handling */
529   if (PREDICT_FALSE (vnet_have_features (arc, rt->sw_if_index)))
530     {
531       vnet_feature_config_main_t *fcm;
532       fcm = vnet_feature_get_config_main (arc);
533       current_config_index = vnet_get_feature_config_index (arc,
534                                                             rt->sw_if_index);
535       vnet_get_config_data (&fcm->config_main, &current_config_index,
536                             &next_index, 0);
537     }
538
539   while (from < from_end)
540     {
541       /* Get new next frame since previous incomplete frame may have less
542          than VNET_FRAME_SIZE vectors in it. */
543       vlib_get_new_next_frame (vm, node, next_index, to_tx, n_left_to_tx);
544
545       while (from + 8 <= from_end && n_left_to_tx >= 4)
546         {
547           u32 bi0, bi1, bi2, bi3;
548           vlib_buffer_t *b0, *b1, *b2, *b3;
549           u32 tx_swif0, tx_swif1, tx_swif2, tx_swif3;
550           u32 or_flags;
551
552           /* Prefetch next iteration. */
553           vlib_prefetch_buffer_with_index (vm, from[4], LOAD);
554           vlib_prefetch_buffer_with_index (vm, from[5], LOAD);
555           vlib_prefetch_buffer_with_index (vm, from[6], LOAD);
556           vlib_prefetch_buffer_with_index (vm, from[7], LOAD);
557
558           bi0 = from[0];
559           bi1 = from[1];
560           bi2 = from[2];
561           bi3 = from[3];
562           to_tx[0] = bi0;
563           to_tx[1] = bi1;
564           to_tx[2] = bi2;
565           to_tx[3] = bi3;
566           if (!do_segmentation)
567             {
568               from += 4;
569               to_tx += 4;
570               n_left_to_tx -= 4;
571             }
572
573           b0 = vlib_get_buffer (vm, bi0);
574           b1 = vlib_get_buffer (vm, bi1);
575           b2 = vlib_get_buffer (vm, bi2);
576           b3 = vlib_get_buffer (vm, bi3);
577
578           if (do_segmentation)
579             {
580               or_flags = b0->flags | b1->flags | b2->flags | b3->flags;
581
582               /* go to single loop if we need TSO segmentation */
583               if (PREDICT_FALSE (or_flags & VNET_BUFFER_F_GSO))
584                 break;
585               from += 4;
586               to_tx += 4;
587               n_left_to_tx -= 4;
588             }
589
590           /* Be grumpy about zero length buffers for benefit of
591              driver tx function. */
592           ASSERT (b0->current_length > 0);
593           ASSERT (b1->current_length > 0);
594           ASSERT (b2->current_length > 0);
595           ASSERT (b3->current_length > 0);
596
597           n_bytes_b0 = vlib_buffer_length_in_chain (vm, b0);
598           n_bytes_b1 = vlib_buffer_length_in_chain (vm, b1);
599           n_bytes_b2 = vlib_buffer_length_in_chain (vm, b2);
600           n_bytes_b3 = vlib_buffer_length_in_chain (vm, b3);
601           tx_swif0 = vnet_buffer (b0)->sw_if_index[VLIB_TX];
602           tx_swif1 = vnet_buffer (b1)->sw_if_index[VLIB_TX];
603           tx_swif2 = vnet_buffer (b2)->sw_if_index[VLIB_TX];
604           tx_swif3 = vnet_buffer (b3)->sw_if_index[VLIB_TX];
605
606           n_bytes += n_bytes_b0 + n_bytes_b1;
607           n_bytes += n_bytes_b2 + n_bytes_b3;
608           n_packets += 4;
609
610           if (PREDICT_FALSE (current_config_index != ~0))
611             {
612               vnet_buffer (b0)->feature_arc_index = arc;
613               vnet_buffer (b1)->feature_arc_index = arc;
614               vnet_buffer (b2)->feature_arc_index = arc;
615               vnet_buffer (b3)->feature_arc_index = arc;
616               b0->current_config_index = current_config_index;
617               b1->current_config_index = current_config_index;
618               b2->current_config_index = current_config_index;
619               b3->current_config_index = current_config_index;
620             }
621
622           /* update vlan subif tx counts, if required */
623           if (PREDICT_FALSE (tx_swif0 != rt->sw_if_index))
624             {
625               vlib_increment_combined_counter (im->combined_sw_if_counters +
626                                                VNET_INTERFACE_COUNTER_TX,
627                                                thread_index, tx_swif0, 1,
628                                                n_bytes_b0);
629             }
630
631           if (PREDICT_FALSE (tx_swif1 != rt->sw_if_index))
632             {
633
634               vlib_increment_combined_counter (im->combined_sw_if_counters +
635                                                VNET_INTERFACE_COUNTER_TX,
636                                                thread_index, tx_swif1, 1,
637                                                n_bytes_b1);
638             }
639
640           if (PREDICT_FALSE (tx_swif2 != rt->sw_if_index))
641             {
642
643               vlib_increment_combined_counter (im->combined_sw_if_counters +
644                                                VNET_INTERFACE_COUNTER_TX,
645                                                thread_index, tx_swif2, 1,
646                                                n_bytes_b2);
647             }
648           if (PREDICT_FALSE (tx_swif3 != rt->sw_if_index))
649             {
650
651               vlib_increment_combined_counter (im->combined_sw_if_counters +
652                                                VNET_INTERFACE_COUNTER_TX,
653                                                thread_index, tx_swif3, 1,
654                                                n_bytes_b3);
655             }
656
657           if (!do_segmentation)
658             or_flags = b0->flags | b1->flags | b2->flags | b3->flags;
659
660           if (do_tx_offloads)
661             {
662               if (or_flags &
663                   (VNET_BUFFER_F_OFFLOAD_TCP_CKSUM |
664                    VNET_BUFFER_F_OFFLOAD_UDP_CKSUM |
665                    VNET_BUFFER_F_OFFLOAD_IP_CKSUM))
666                 {
667                   calc_checksums (vm, b0);
668                   calc_checksums (vm, b1);
669                   calc_checksums (vm, b2);
670                   calc_checksums (vm, b3);
671                 }
672             }
673         }
674
675       while (from + 1 <= from_end && n_left_to_tx >= 1)
676         {
677           u32 bi0;
678           vlib_buffer_t *b0;
679           u32 tx_swif0;
680
681           bi0 = from[0];
682           to_tx[0] = bi0;
683           from += 1;
684           to_tx += 1;
685           n_left_to_tx -= 1;
686
687           b0 = vlib_get_buffer (vm, bi0);
688
689           /* Be grumpy about zero length buffers for benefit of
690              driver tx function. */
691           ASSERT (b0->current_length > 0);
692
693           n_bytes_b0 = vlib_buffer_length_in_chain (vm, b0);
694           tx_swif0 = vnet_buffer (b0)->sw_if_index[VLIB_TX];
695           n_bytes += n_bytes_b0;
696           n_packets += 1;
697
698           if (PREDICT_FALSE (current_config_index != ~0))
699             {
700               vnet_buffer (b0)->feature_arc_index = arc;
701               b0->current_config_index = current_config_index;
702             }
703
704           if (do_segmentation)
705             {
706               if (PREDICT_FALSE (b0->flags & VNET_BUFFER_F_GSO))
707                 {
708                   /*
709                    * Undo the enqueue of the b0 - it is not going anywhere,
710                    * and will be freed either after it's segmented or
711                    * when dropped, if there is no buffers to segment into.
712                    */
713                   to_tx -= 1;
714                   n_left_to_tx += 1;
715                   /* undo the counting. */
716                   n_bytes -= n_bytes_b0;
717                   n_packets -= 1;
718
719                   u32 n_tx_bytes = 0;
720
721                   n_tx_bytes =
722                     tso_segment_buffer (vm, ptd, do_tx_offloads, bi0, b0,
723                                         n_bytes_b0);
724
725                   if (PREDICT_FALSE (n_tx_bytes == 0))
726                     {
727                       drop_one_buffer_and_count (vm, vnm, node, from - 1,
728                                                  VNET_INTERFACE_OUTPUT_ERROR_NO_BUFFERS_FOR_GSO);
729                       continue;
730                     }
731
732                   u16 n_tx_bufs = vec_len (ptd->split_buffers);
733                   u32 *from_tx_seg = ptd->split_buffers;
734
735                   while (n_tx_bufs > 0)
736                     {
737                       if (n_tx_bufs >= n_left_to_tx)
738                         {
739                           while (n_left_to_tx > 0)
740                             {
741                               to_tx[0] = from_tx_seg[0];
742                               to_tx += 1;
743                               from_tx_seg += 1;
744                               n_left_to_tx -= 1;
745                               n_tx_bufs -= 1;
746                               n_packets += 1;
747                             }
748                           vlib_put_next_frame (vm, node, next_index,
749                                                n_left_to_tx);
750                           vlib_get_new_next_frame (vm, node, next_index,
751                                                    to_tx, n_left_to_tx);
752                         }
753                       else
754                         {
755                           while (n_tx_bufs > 0)
756                             {
757                               to_tx[0] = from_tx_seg[0];
758                               to_tx += 1;
759                               from_tx_seg += 1;
760                               n_left_to_tx -= 1;
761                               n_tx_bufs -= 1;
762                               n_packets += 1;
763                             }
764                         }
765                     }
766                   n_bytes += n_tx_bytes;
767                   if (PREDICT_FALSE (tx_swif0 != rt->sw_if_index))
768                     {
769
770                       vlib_increment_combined_counter
771                         (im->combined_sw_if_counters +
772                          VNET_INTERFACE_COUNTER_TX, thread_index, tx_swif0,
773                          _vec_len (ptd->split_buffers), n_tx_bytes);
774                     }
775                   /* The buffers were enqueued. Reset the length */
776                   _vec_len (ptd->split_buffers) = 0;
777                   /* Free the now segmented buffer */
778                   vlib_buffer_free_one (vm, bi0);
779                   continue;
780                 }
781             }
782
783           if (PREDICT_FALSE (tx_swif0 != rt->sw_if_index))
784             {
785
786               vlib_increment_combined_counter (im->combined_sw_if_counters +
787                                                VNET_INTERFACE_COUNTER_TX,
788                                                thread_index, tx_swif0, 1,
789                                                n_bytes_b0);
790             }
791
792           if (do_tx_offloads)
793             calc_checksums (vm, b0);
794         }
795
796       vlib_put_next_frame (vm, node, next_index, n_left_to_tx);
797     }
798
799   /* Update main interface stats. */
800   vlib_increment_combined_counter (im->combined_sw_if_counters
801                                    + VNET_INTERFACE_COUNTER_TX,
802                                    thread_index,
803                                    rt->sw_if_index, n_packets, n_bytes);
804   return n_buffers;
805 }
806 #endif /* CLIB_MARCH_VARIANT */
807
808 static_always_inline void vnet_interface_pcap_tx_trace
809   (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame,
810    int sw_if_index_from_buffer)
811 {
812   u32 n_left_from, *from;
813   u32 sw_if_index;
814
815   if (PREDICT_TRUE (vm->pcap[VLIB_TX].pcap_enable == 0))
816     return;
817
818   if (sw_if_index_from_buffer == 0)
819     {
820       vnet_interface_output_runtime_t *rt = (void *) node->runtime_data;
821       sw_if_index = rt->sw_if_index;
822     }
823   else
824     sw_if_index = ~0;
825
826   n_left_from = frame->n_vectors;
827   from = vlib_frame_vector_args (frame);
828
829   while (n_left_from > 0)
830     {
831       u32 bi0 = from[0];
832       vlib_buffer_t *b0 = vlib_get_buffer (vm, bi0);
833
834       if (sw_if_index_from_buffer)
835         sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_TX];
836
837       if (vm->pcap[VLIB_TX].pcap_sw_if_index == 0 ||
838           vm->pcap[VLIB_TX].pcap_sw_if_index == sw_if_index)
839         pcap_add_buffer (&vm->pcap[VLIB_TX].pcap_main, vm, bi0, 512);
840       from++;
841       n_left_from--;
842     }
843 }
844
845 #ifndef CLIB_MARCH_VARIANT
846 static_always_inline uword
847 vnet_interface_output_node_inline (vlib_main_t * vm,
848                                    vlib_node_runtime_t * node,
849                                    vlib_frame_t * frame, vnet_main_t * vnm,
850                                    vnet_hw_interface_t * hi,
851                                    int do_tx_offloads)
852 {
853   vnet_interface_pcap_tx_trace (vm, node, frame,
854                                 0 /* sw_if_index_from_buffer */ );
855
856   /*
857    * The 3-headed "if" is here because we want to err on the side
858    * of not impacting the non-GSO performance - so for the more
859    * common case of no GSO interfaces we want to prevent the
860    * segmentation codepath from being there altogether.
861    */
862   if (PREDICT_TRUE (vnm->interface_main.gso_interface_count == 0))
863     return vnet_interface_output_node_inline_gso (vm, node, frame, vnm, hi,
864                                                   do_tx_offloads,
865                                                   /* do_segmentation */ 0);
866   else if (hi->flags & VNET_HW_INTERFACE_FLAG_SUPPORTS_GSO)
867     return vnet_interface_output_node_inline_gso (vm, node, frame, vnm, hi,
868                                                   do_tx_offloads,
869                                                   /* do_segmentation */ 0);
870   else
871     return vnet_interface_output_node_inline_gso (vm, node, frame, vnm, hi,
872                                                   do_tx_offloads,
873                                                   /* do_segmentation */ 1);
874 }
875
876 uword
877 vnet_interface_output_node (vlib_main_t * vm, vlib_node_runtime_t * node,
878                             vlib_frame_t * frame)
879 {
880   vnet_main_t *vnm = vnet_get_main ();
881   vnet_hw_interface_t *hi;
882   vnet_interface_output_runtime_t *rt = (void *) node->runtime_data;
883   hi = vnet_get_sup_hw_interface (vnm, rt->sw_if_index);
884
885   vnet_interface_pcap_tx_trace (vm, node, frame,
886                                 0 /* sw_if_index_from_buffer */ );
887
888   if (hi->flags & VNET_HW_INTERFACE_FLAG_SUPPORTS_TX_L4_CKSUM_OFFLOAD)
889     return vnet_interface_output_node_inline (vm, node, frame, vnm, hi,
890                                               /* do_tx_offloads */ 0);
891   else
892     return vnet_interface_output_node_inline (vm, node, frame, vnm, hi,
893                                               /* do_tx_offloads */ 1);
894 }
895 #endif /* CLIB_MARCH_VARIANT */
896
897 /* Use buffer's sw_if_index[VNET_TX] to choose output interface. */
898 VLIB_NODE_FN (vnet_per_buffer_interface_output_node) (vlib_main_t * vm,
899                                                       vlib_node_runtime_t *
900                                                       node,
901                                                       vlib_frame_t * frame)
902 {
903   vnet_main_t *vnm = vnet_get_main ();
904   u32 n_left_to_next, *from, *to_next;
905   u32 n_left_from, next_index;
906
907   vnet_interface_pcap_tx_trace (vm, node, frame,
908                                 1 /* sw_if_index_from_buffer */ );
909
910   n_left_from = frame->n_vectors;
911
912   from = vlib_frame_vector_args (frame);
913   next_index = node->cached_next_index;
914
915   while (n_left_from > 0)
916     {
917       vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
918
919       while (n_left_from >= 4 && n_left_to_next >= 2)
920         {
921           u32 bi0, bi1, next0, next1;
922           vlib_buffer_t *b0, *b1;
923           vnet_hw_interface_t *hi0, *hi1;
924
925           /* Prefetch next iteration. */
926           vlib_prefetch_buffer_with_index (vm, from[2], LOAD);
927           vlib_prefetch_buffer_with_index (vm, from[3], LOAD);
928
929           bi0 = from[0];
930           bi1 = from[1];
931           to_next[0] = bi0;
932           to_next[1] = bi1;
933           from += 2;
934           to_next += 2;
935           n_left_to_next -= 2;
936           n_left_from -= 2;
937
938           b0 = vlib_get_buffer (vm, bi0);
939           b1 = vlib_get_buffer (vm, bi1);
940
941           hi0 =
942             vnet_get_sup_hw_interface (vnm,
943                                        vnet_buffer (b0)->sw_if_index
944                                        [VLIB_TX]);
945           hi1 =
946             vnet_get_sup_hw_interface (vnm,
947                                        vnet_buffer (b1)->sw_if_index
948                                        [VLIB_TX]);
949
950           next0 = hi0->output_node_next_index;
951           next1 = hi1->output_node_next_index;
952
953           vlib_validate_buffer_enqueue_x2 (vm, node, next_index, to_next,
954                                            n_left_to_next, bi0, bi1, next0,
955                                            next1);
956         }
957
958       while (n_left_from > 0 && n_left_to_next > 0)
959         {
960           u32 bi0, next0;
961           vlib_buffer_t *b0;
962           vnet_hw_interface_t *hi0;
963
964           bi0 = from[0];
965           to_next[0] = bi0;
966           from += 1;
967           to_next += 1;
968           n_left_to_next -= 1;
969           n_left_from -= 1;
970
971           b0 = vlib_get_buffer (vm, bi0);
972
973           hi0 =
974             vnet_get_sup_hw_interface (vnm,
975                                        vnet_buffer (b0)->sw_if_index
976                                        [VLIB_TX]);
977
978           next0 = hi0->output_node_next_index;
979
980           vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
981                                            n_left_to_next, bi0, next0);
982         }
983
984       vlib_put_next_frame (vm, node, next_index, n_left_to_next);
985     }
986
987   return frame->n_vectors;
988 }
989
990 typedef struct vnet_error_trace_t_
991 {
992   u32 sw_if_index;
993 } vnet_error_trace_t;
994
995
996 static u8 *
997 format_vnet_error_trace (u8 * s, va_list * va)
998 {
999   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
1000   CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
1001   vnet_error_trace_t *t = va_arg (*va, vnet_error_trace_t *);
1002
1003   s = format (s, " rx:%d", t->sw_if_index);
1004
1005   return s;
1006 }
1007
1008 static void
1009 interface_trace_buffers (vlib_main_t * vm,
1010                          vlib_node_runtime_t * node, vlib_frame_t * frame)
1011 {
1012   u32 n_left, *buffers;
1013
1014   buffers = vlib_frame_vector_args (frame);
1015   n_left = frame->n_vectors;
1016
1017   while (n_left >= 4)
1018     {
1019       u32 bi0, bi1;
1020       vlib_buffer_t *b0, *b1;
1021       vnet_error_trace_t *t0, *t1;
1022
1023       /* Prefetch next iteration. */
1024       vlib_prefetch_buffer_with_index (vm, buffers[2], LOAD);
1025       vlib_prefetch_buffer_with_index (vm, buffers[3], LOAD);
1026
1027       bi0 = buffers[0];
1028       bi1 = buffers[1];
1029
1030       b0 = vlib_get_buffer (vm, bi0);
1031       b1 = vlib_get_buffer (vm, bi1);
1032
1033       if (b0->flags & VLIB_BUFFER_IS_TRACED)
1034         {
1035           t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0]));
1036           t0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
1037         }
1038       if (b1->flags & VLIB_BUFFER_IS_TRACED)
1039         {
1040           t1 = vlib_add_trace (vm, node, b1, sizeof (t1[0]));
1041           t1->sw_if_index = vnet_buffer (b1)->sw_if_index[VLIB_RX];
1042         }
1043       buffers += 2;
1044       n_left -= 2;
1045     }
1046
1047   while (n_left >= 1)
1048     {
1049       u32 bi0;
1050       vlib_buffer_t *b0;
1051       vnet_error_trace_t *t0;
1052
1053       bi0 = buffers[0];
1054
1055       b0 = vlib_get_buffer (vm, bi0);
1056
1057       if (b0->flags & VLIB_BUFFER_IS_TRACED)
1058         {
1059           t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0]));
1060           t0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
1061         }
1062       buffers += 1;
1063       n_left -= 1;
1064     }
1065 }
1066
1067 typedef enum
1068 {
1069   VNET_ERROR_DISPOSITION_DROP,
1070   VNET_ERROR_DISPOSITION_PUNT,
1071   VNET_ERROR_N_DISPOSITION,
1072 } vnet_error_disposition_t;
1073
1074 static_always_inline uword
1075 interface_drop_punt (vlib_main_t * vm,
1076                      vlib_node_runtime_t * node,
1077                      vlib_frame_t * frame,
1078                      vnet_error_disposition_t disposition)
1079 {
1080   u32 *from, n_left, thread_index, *sw_if_index;
1081   vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
1082   u32 sw_if_indices[VLIB_FRAME_SIZE];
1083   vlib_simple_counter_main_t *cm;
1084   u16 nexts[VLIB_FRAME_SIZE];
1085   vnet_main_t *vnm;
1086
1087   vnm = vnet_get_main ();
1088   thread_index = vm->thread_index;
1089   from = vlib_frame_vector_args (frame);
1090   n_left = frame->n_vectors;
1091   b = bufs;
1092   sw_if_index = sw_if_indices;
1093
1094   vlib_get_buffers (vm, from, bufs, n_left);
1095
1096   if (node->flags & VLIB_NODE_FLAG_TRACE)
1097     interface_trace_buffers (vm, node, frame);
1098
1099   /* All going to drop regardless, this is just a counting exercise */
1100   clib_memset (nexts, 0, sizeof (nexts));
1101
1102   cm = vec_elt_at_index (vnm->interface_main.sw_if_counters,
1103                          (disposition == VNET_ERROR_DISPOSITION_PUNT
1104                           ? VNET_INTERFACE_COUNTER_PUNT
1105                           : VNET_INTERFACE_COUNTER_DROP));
1106
1107   /* collect the array of interfaces first ... */
1108   while (n_left >= 4)
1109     {
1110       if (n_left >= 12)
1111         {
1112           /* Prefetch 8 ahead - there's not much going on in each iteration */
1113           vlib_prefetch_buffer_header (b[4], LOAD);
1114           vlib_prefetch_buffer_header (b[5], LOAD);
1115           vlib_prefetch_buffer_header (b[6], LOAD);
1116           vlib_prefetch_buffer_header (b[7], LOAD);
1117         }
1118       sw_if_index[0] = vnet_buffer (b[0])->sw_if_index[VLIB_RX];
1119       sw_if_index[1] = vnet_buffer (b[1])->sw_if_index[VLIB_RX];
1120       sw_if_index[2] = vnet_buffer (b[2])->sw_if_index[VLIB_RX];
1121       sw_if_index[3] = vnet_buffer (b[3])->sw_if_index[VLIB_RX];
1122
1123       sw_if_index += 4;
1124       n_left -= 4;
1125       b += 4;
1126     }
1127   while (n_left)
1128     {
1129       sw_if_index[0] = vnet_buffer (b[0])->sw_if_index[VLIB_RX];
1130
1131       sw_if_index += 1;
1132       n_left -= 1;
1133       b += 1;
1134     }
1135
1136   /* ... then count against them in blocks */
1137   n_left = frame->n_vectors;
1138
1139   while (n_left)
1140     {
1141       vnet_sw_interface_t *sw_if0;
1142       u16 off, count;
1143
1144       off = frame->n_vectors - n_left;
1145
1146       sw_if_index = sw_if_indices + off;
1147
1148       count = clib_count_equal_u32 (sw_if_index, n_left);
1149       n_left -= count;
1150
1151       vlib_increment_simple_counter (cm, thread_index, sw_if_index[0], count);
1152
1153       /* Increment super-interface drop/punt counters for
1154          sub-interfaces. */
1155       sw_if0 = vnet_get_sw_interface (vnm, sw_if_index[0]);
1156       if (sw_if0->sup_sw_if_index != sw_if_index[0])
1157         vlib_increment_simple_counter
1158           (cm, thread_index, sw_if0->sup_sw_if_index, count);
1159     }
1160
1161   vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
1162
1163   return frame->n_vectors;
1164 }
1165
1166 static inline void
1167 pcap_drop_trace (vlib_main_t * vm,
1168                  vnet_interface_main_t * im, vlib_frame_t * f)
1169 {
1170   u32 *from;
1171   u32 n_left = f->n_vectors;
1172   vlib_buffer_t *b0, *p1;
1173   u32 bi0;
1174   i16 save_current_data;
1175   u16 save_current_length;
1176
1177   from = vlib_frame_vector_args (f);
1178
1179   while (n_left > 0)
1180     {
1181       if (PREDICT_TRUE (n_left > 1))
1182         {
1183           p1 = vlib_get_buffer (vm, from[1]);
1184           vlib_prefetch_buffer_header (p1, LOAD);
1185         }
1186
1187       bi0 = from[0];
1188       b0 = vlib_get_buffer (vm, bi0);
1189       from++;
1190       n_left--;
1191
1192       /* See if we're pointedly ignoring this specific error */
1193       if (im->pcap_drop_filter_hash
1194           && hash_get (im->pcap_drop_filter_hash, b0->error))
1195         continue;
1196
1197       /* Trace all drops, or drops received on a specific interface */
1198       if (im->pcap_sw_if_index == 0 ||
1199           im->pcap_sw_if_index == vnet_buffer (b0)->sw_if_index[VLIB_RX])
1200         {
1201           save_current_data = b0->current_data;
1202           save_current_length = b0->current_length;
1203
1204           /*
1205            * Typically, we'll need to rewind the buffer
1206            */
1207           if (b0->current_data > 0)
1208             vlib_buffer_advance (b0, (word) - b0->current_data);
1209
1210           pcap_add_buffer (&im->pcap_main, vm, bi0, 512);
1211
1212           b0->current_data = save_current_data;
1213           b0->current_length = save_current_length;
1214         }
1215     }
1216 }
1217
1218 #ifndef CLIB_MARCH_VARIANT
1219 void
1220 vnet_pcap_drop_trace_filter_add_del (u32 error_index, int is_add)
1221 {
1222   vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
1223
1224   if (im->pcap_drop_filter_hash == 0)
1225     im->pcap_drop_filter_hash = hash_create (0, sizeof (uword));
1226
1227   if (is_add)
1228     hash_set (im->pcap_drop_filter_hash, error_index, 1);
1229   else
1230     hash_unset (im->pcap_drop_filter_hash, error_index);
1231 }
1232 #endif /* CLIB_MARCH_VARIANT */
1233
1234 VLIB_NODE_FN (interface_drop) (vlib_main_t * vm,
1235                                vlib_node_runtime_t * node,
1236                                vlib_frame_t * frame)
1237 {
1238   vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
1239
1240   if (PREDICT_FALSE (im->drop_pcap_enable))
1241     pcap_drop_trace (vm, im, frame);
1242
1243   return interface_drop_punt (vm, node, frame, VNET_ERROR_DISPOSITION_DROP);
1244 }
1245
1246 VLIB_NODE_FN (interface_punt) (vlib_main_t * vm,
1247                                vlib_node_runtime_t * node,
1248                                vlib_frame_t * frame)
1249 {
1250   return interface_drop_punt (vm, node, frame, VNET_ERROR_DISPOSITION_PUNT);
1251 }
1252
1253 /* *INDENT-OFF* */
1254 VLIB_REGISTER_NODE (interface_drop) = {
1255   .name = "error-drop",
1256   .vector_size = sizeof (u32),
1257   .format_trace = format_vnet_error_trace,
1258   .n_next_nodes = 1,
1259   .next_nodes = {
1260     [0] = "drop",
1261   },
1262 };
1263 /* *INDENT-ON* */
1264
1265 /* *INDENT-OFF* */
1266 VLIB_REGISTER_NODE (interface_punt) = {
1267   .name = "error-punt",
1268   .vector_size = sizeof (u32),
1269   .format_trace = format_vnet_error_trace,
1270   .n_next_nodes = 1,
1271   .next_nodes = {
1272     [0] = "punt",
1273   },
1274 };
1275 /* *INDENT-ON* */
1276
1277 /* *INDENT-OFF* */
1278 VLIB_REGISTER_NODE (vnet_per_buffer_interface_output_node) = {
1279   .name = "interface-output",
1280   .vector_size = sizeof (u32),
1281 };
1282 /* *INDENT-ON* */
1283
1284 static uword
1285 interface_tx_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
1286                       vlib_frame_t * from_frame)
1287 {
1288   vnet_main_t *vnm = vnet_get_main ();
1289   u32 last_sw_if_index = ~0;
1290   vlib_frame_t *to_frame = 0;
1291   vnet_hw_interface_t *hw = 0;
1292   u32 *from, *to_next = 0;
1293   u32 n_left_from;
1294
1295   from = vlib_frame_vector_args (from_frame);
1296   n_left_from = from_frame->n_vectors;
1297   while (n_left_from > 0)
1298     {
1299       u32 bi0;
1300       vlib_buffer_t *b0;
1301       u32 sw_if_index0;
1302
1303       bi0 = from[0];
1304       from++;
1305       n_left_from--;
1306       b0 = vlib_get_buffer (vm, bi0);
1307       sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_TX];
1308
1309       if (PREDICT_FALSE ((last_sw_if_index != sw_if_index0) || to_frame == 0))
1310         {
1311           if (to_frame)
1312             {
1313               hw = vnet_get_sup_hw_interface (vnm, last_sw_if_index);
1314               vlib_put_frame_to_node (vm, hw->tx_node_index, to_frame);
1315             }
1316           last_sw_if_index = sw_if_index0;
1317           hw = vnet_get_sup_hw_interface (vnm, sw_if_index0);
1318           to_frame = vlib_get_frame_to_node (vm, hw->tx_node_index);
1319           to_next = vlib_frame_vector_args (to_frame);
1320         }
1321
1322       to_next[0] = bi0;
1323       to_next++;
1324       to_frame->n_vectors++;
1325     }
1326   vlib_put_frame_to_node (vm, hw->tx_node_index, to_frame);
1327   return from_frame->n_vectors;
1328 }
1329
1330 /* *INDENT-OFF* */
1331 VLIB_REGISTER_NODE (interface_tx, static) = {
1332   .function = interface_tx_node_fn,
1333   .name = "interface-tx",
1334   .vector_size = sizeof (u32),
1335   .n_next_nodes = 1,
1336   .next_nodes = {
1337     [0] = "error-drop",
1338   },
1339 };
1340
1341 VNET_FEATURE_ARC_INIT (interface_output, static) =
1342 {
1343   .arc_name  = "interface-output",
1344   .start_nodes = VNET_FEATURES (0),
1345   .last_in_arc = "interface-tx",
1346   .arc_index_ptr = &vnet_main.interface_main.output_feature_arc_index,
1347 };
1348
1349 VNET_FEATURE_INIT (span_tx, static) = {
1350   .arc_name = "interface-output",
1351   .node_name = "span-output",
1352   .runs_before = VNET_FEATURES ("interface-tx"),
1353 };
1354
1355 VNET_FEATURE_INIT (ipsec_if_tx, static) = {
1356   .arc_name = "interface-output",
1357   .node_name = "ipsec-if-output",
1358   .runs_before = VNET_FEATURES ("interface-tx"),
1359 };
1360
1361 VNET_FEATURE_INIT (interface_tx, static) = {
1362   .arc_name = "interface-output",
1363   .node_name = "interface-tx",
1364   .runs_before = 0,
1365 };
1366 /* *INDENT-ON* */
1367
1368 #ifndef CLIB_MARCH_VARIANT
1369 clib_error_t *
1370 vnet_per_buffer_interface_output_hw_interface_add_del (vnet_main_t * vnm,
1371                                                        u32 hw_if_index,
1372                                                        u32 is_create)
1373 {
1374   vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1375   u32 next_index;
1376
1377   if (hi->output_node_index == 0)
1378     return 0;
1379
1380   next_index = vlib_node_add_next
1381     (vnm->vlib_main, vnet_per_buffer_interface_output_node.index,
1382      hi->output_node_index);
1383   hi->output_node_next_index = next_index;
1384
1385   return 0;
1386 }
1387
1388 VNET_HW_INTERFACE_ADD_DEL_FUNCTION
1389   (vnet_per_buffer_interface_output_hw_interface_add_del);
1390
1391 void
1392 vnet_set_interface_output_node (vnet_main_t * vnm,
1393                                 u32 hw_if_index, u32 node_index)
1394 {
1395   ASSERT (node_index);
1396   vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1397   u32 next_index = vlib_node_add_next
1398     (vnm->vlib_main, vnet_per_buffer_interface_output_node.index, node_index);
1399   hi->output_node_next_index = next_index;
1400   hi->output_node_index = node_index;
1401 }
1402 #endif /* CLIB_MARCH_VARIANT */
1403
1404 static clib_error_t *
1405 pcap_drop_trace_command_fn (vlib_main_t * vm,
1406                             unformat_input_t * input,
1407                             vlib_cli_command_t * cmd)
1408 {
1409   vnet_main_t *vnm = vnet_get_main ();
1410   vnet_interface_main_t *im = &vnm->interface_main;
1411   u8 *filename;
1412   u32 max;
1413   int matched = 0;
1414   clib_error_t *error = 0;
1415
1416   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1417     {
1418       if (unformat (input, "on"))
1419         {
1420           if (im->drop_pcap_enable == 0)
1421             {
1422               if (im->pcap_filename == 0)
1423                 im->pcap_filename = format (0, "/tmp/drop.pcap%c", 0);
1424
1425               clib_memset (&im->pcap_main, 0, sizeof (im->pcap_main));
1426               im->pcap_main.file_name = (char *) im->pcap_filename;
1427               im->pcap_main.n_packets_to_capture = 100;
1428               if (im->pcap_pkts_to_capture)
1429                 im->pcap_main.n_packets_to_capture = im->pcap_pkts_to_capture;
1430
1431               im->pcap_main.packet_type = PCAP_PACKET_TYPE_ethernet;
1432               im->drop_pcap_enable = 1;
1433               matched = 1;
1434               vlib_cli_output (vm, "pcap drop capture on...");
1435             }
1436           else
1437             {
1438               vlib_cli_output (vm, "pcap drop capture already on...");
1439             }
1440           matched = 1;
1441         }
1442       else if (unformat (input, "off"))
1443         {
1444           matched = 1;
1445
1446           if (im->drop_pcap_enable)
1447             {
1448               vlib_cli_output (vm, "captured %d pkts...",
1449                                im->pcap_main.n_packets_captured);
1450               if (im->pcap_main.n_packets_captured)
1451                 {
1452                   im->pcap_main.n_packets_to_capture =
1453                     im->pcap_main.n_packets_captured;
1454                   error = pcap_write (&im->pcap_main);
1455                   if (error)
1456                     clib_error_report (error);
1457                   else
1458                     vlib_cli_output (vm, "saved to %s...", im->pcap_filename);
1459                 }
1460             }
1461           else
1462             {
1463               vlib_cli_output (vm, "pcap drop capture already off...");
1464             }
1465
1466           im->drop_pcap_enable = 0;
1467         }
1468       else if (unformat (input, "max %d", &max))
1469         {
1470           im->pcap_pkts_to_capture = max;
1471           matched = 1;
1472         }
1473
1474       else if (unformat (input, "intfc %U",
1475                          unformat_vnet_sw_interface, vnm,
1476                          &im->pcap_sw_if_index))
1477         matched = 1;
1478       else if (unformat (input, "intfc any"))
1479         {
1480           im->pcap_sw_if_index = 0;
1481           matched = 1;
1482         }
1483       else if (unformat (input, "file %s", &filename))
1484         {
1485           u8 *chroot_filename;
1486           /* Brain-police user path input */
1487           if (strstr ((char *) filename, "..")
1488               || index ((char *) filename, '/'))
1489             {
1490               vlib_cli_output (vm, "illegal characters in filename '%s'",
1491                                filename);
1492               continue;
1493             }
1494
1495           chroot_filename = format (0, "/tmp/%s%c", filename, 0);
1496           vec_free (filename);
1497
1498           if (im->pcap_filename)
1499             vec_free (im->pcap_filename);
1500           im->pcap_filename = chroot_filename;
1501           im->pcap_main.file_name = (char *) im->pcap_filename;
1502           matched = 1;
1503         }
1504       else if (unformat (input, "status"))
1505         {
1506           if (im->drop_pcap_enable == 0)
1507             {
1508               vlib_cli_output (vm, "pcap drop capture is off...");
1509               continue;
1510             }
1511
1512           vlib_cli_output (vm, "pcap drop capture: %d of %d pkts...",
1513                            im->pcap_main.n_packets_captured,
1514                            im->pcap_main.n_packets_to_capture);
1515           matched = 1;
1516         }
1517
1518       else
1519         break;
1520     }
1521
1522   if (matched == 0)
1523     return clib_error_return (0, "unknown input `%U'",
1524                               format_unformat_error, input);
1525
1526   return 0;
1527 }
1528
1529 /* *INDENT-OFF* */
1530 VLIB_CLI_COMMAND (pcap_trace_command, static) = {
1531   .path = "pcap drop trace",
1532   .short_help =
1533   "pcap drop trace on off max <nn> intfc <intfc> file <name> status",
1534   .function = pcap_drop_trace_command_fn,
1535 };
1536 /* *INDENT-ON* */
1537
1538 /*
1539  * fd.io coding-style-patch-verification: ON
1540  *
1541  * Local Variables:
1542  * eval: (c-set-style "gnu")
1543  * End:
1544  */