pg: A Tunnel mode variant of a pg interface
[vpp.git] / src / vnet / pg / stream.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  * pg_stream.c: packet generator streams
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/pg/pg.h>
42 #include <vnet/ethernet/ethernet.h>
43 #include <vnet/ip/ip.h>
44 #include <vnet/mpls/mpls.h>
45 #include <vnet/devices/devices.h>
46
47 /* Mark stream active or inactive. */
48 void
49 pg_stream_enable_disable (pg_main_t * pg, pg_stream_t * s, int want_enabled)
50 {
51   vlib_main_t *vm;
52   vnet_main_t *vnm = vnet_get_main ();
53   pg_interface_t *pi = pool_elt_at_index (pg->interfaces, s->pg_if_index);
54
55   want_enabled = want_enabled != 0;
56
57   if (pg_stream_is_enabled (s) == want_enabled)
58     /* No change necessary. */
59     return;
60
61   if (want_enabled)
62     s->n_packets_generated = 0;
63
64   /* Toggle enabled flag. */
65   s->flags ^= PG_STREAM_FLAGS_IS_ENABLED;
66
67   ASSERT (!pool_is_free (pg->streams, s));
68
69   vec_validate (pg->enabled_streams, s->worker_index);
70   pg->enabled_streams[s->worker_index] =
71     clib_bitmap_set (pg->enabled_streams[s->worker_index], s - pg->streams,
72                      want_enabled);
73
74   if (want_enabled)
75     {
76       vnet_hw_interface_set_flags (vnm, pi->hw_if_index,
77                                    VNET_HW_INTERFACE_FLAG_LINK_UP);
78
79       vnet_sw_interface_set_flags (vnm, pi->sw_if_index,
80                                    VNET_SW_INTERFACE_FLAG_ADMIN_UP);
81     }
82
83   if (vlib_num_workers ())
84     vm = vlib_get_worker_vlib_main (s->worker_index);
85   else
86     vm = vlib_get_main ();
87
88   vlib_node_set_state (vm, pg_input_node.index,
89                        (clib_bitmap_is_zero
90                         (pg->enabled_streams[s->worker_index]) ?
91                         VLIB_NODE_STATE_DISABLED : VLIB_NODE_STATE_POLLING));
92
93   s->packet_accumulator = 0;
94   s->time_last_generate = 0;
95 }
96
97 static u8 *
98 format_pg_output_trace (u8 * s, va_list * va)
99 {
100   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
101   CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
102   pg_output_trace_t *t = va_arg (*va, pg_output_trace_t *);
103   u32 indent = format_get_indent (s);
104
105   s = format (s, "%Ubuffer 0x%x: %U",
106               format_white_space, indent,
107               t->buffer_index, format_vnet_buffer, &t->buffer);
108
109   s = format (s, "\n%U%U", format_white_space, indent,
110               format_ethernet_header_with_length, t->buffer.pre_data,
111               sizeof (t->buffer.pre_data));
112
113   return s;
114 }
115
116 static u8 *
117 format_pg_interface_name (u8 * s, va_list * args)
118 {
119   pg_main_t *pg = &pg_main;
120   u32 if_index = va_arg (*args, u32);
121   pg_interface_t *pi;
122
123   pi = pool_elt_at_index (pg->interfaces, if_index);
124   s = format (s, "pg%d", pi->id);
125
126   return s;
127 }
128
129 static clib_error_t *
130 pg_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
131 {
132   u32 hw_flags = 0;
133
134   if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
135     hw_flags = VNET_HW_INTERFACE_FLAG_LINK_UP;
136
137   vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags);
138
139   return 0;
140 }
141
142 static int
143 pg_mac_address_cmp (const mac_address_t * m1, const mac_address_t * m2)
144 {
145   return (!mac_address_cmp (m1, m2));
146 }
147
148 static clib_error_t *
149 pg_add_del_mac_address (vnet_hw_interface_t * hi,
150                         const u8 * address, u8 is_add)
151 {
152   pg_main_t *pg = &pg_main;
153
154   if (ethernet_address_cast (address))
155     {
156       mac_address_t mac;
157       pg_interface_t *pi;
158
159       pi = pool_elt_at_index (pg->interfaces, hi->dev_instance);
160
161       mac_address_from_bytes (&mac, address);
162       if (is_add)
163         vec_add1 (pi->allowed_mcast_macs, mac);
164       else
165         {
166           u32 pos = vec_search_with_function (pi->allowed_mcast_macs, &mac,
167                                               pg_mac_address_cmp);
168           if (~0 != pos)
169             vec_del1 (pi->allowed_mcast_macs, pos);
170         }
171     }
172   return (NULL);
173 }
174
175 /* *INDENT-OFF* */
176 VNET_DEVICE_CLASS (pg_dev_class) = {
177   .name = "pg",
178   .tx_function = pg_output,
179   .format_device_name = format_pg_interface_name,
180   .format_tx_trace = format_pg_output_trace,
181   .admin_up_down_function = pg_interface_admin_up_down,
182   .mac_addr_add_del_function = pg_add_del_mac_address,
183 };
184 /* *INDENT-ON* */
185
186 static u8 *
187 pg_build_rewrite (vnet_main_t * vnm,
188                   u32 sw_if_index,
189                   vnet_link_t link_type, const void *dst_address)
190 {
191   u8 *rewrite = NULL;
192   u16 *h;
193
194   vec_validate (rewrite, sizeof (*h) - 1);
195   h = (u16 *) rewrite;
196   h[0] = clib_host_to_net_u16 (vnet_link_to_l3_proto (link_type));
197
198   return (rewrite);
199 }
200
201 /* *INDENT-OFF* */
202 VNET_HW_INTERFACE_CLASS (pg_interface_class,static) = {
203   .name = "Packet generator",
204   .build_rewrite = pg_build_rewrite,
205 };
206 /* *INDENT-ON* */
207
208 static u32
209 pg_eth_flag_change (vnet_main_t * vnm, vnet_hw_interface_t * hi, u32 flags)
210 {
211   /* nothing for now */
212   return 0;
213 }
214
215 void
216 pg_interface_enable_disable_coalesce (pg_interface_t * pi, u8 enable,
217                                       u32 tx_node_index)
218 {
219   if (enable)
220     {
221       gro_flow_table_init (&pi->flow_table, 1 /* is_l2 */ ,
222                            tx_node_index);
223       pi->coalesce_enabled = 1;
224     }
225   else
226     {
227       pi->coalesce_enabled = 0;
228       gro_flow_table_free (pi->flow_table);
229     }
230 }
231
232 u8 *
233 format_pg_tun_tx_trace (u8 *s, va_list *args)
234 {
235   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
236   CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
237
238   s = format (s, "PG: tunnel (no-encap)");
239   return s;
240 }
241
242 VNET_HW_INTERFACE_CLASS (pg_tun_hw_interface_class) = {
243   .name = "PG-tun",
244   //.format_header = format_gre_header_with_length,
245   //.unformat_header = unformat_gre_header,
246   .build_rewrite = NULL,
247   //.update_adjacency = gre_update_adj,
248   .flags = VNET_HW_INTERFACE_CLASS_FLAG_P2P,
249 };
250
251 u32
252 pg_interface_add_or_get (pg_main_t *pg, uword if_id, u8 gso_enabled,
253                          u32 gso_size, u8 coalesce_enabled,
254                          pg_interface_mode_t mode)
255 {
256   vnet_main_t *vnm = vnet_get_main ();
257   vlib_main_t *vm = vlib_get_main ();
258   pg_interface_t *pi;
259   vnet_hw_interface_t *hi;
260   uword *p;
261   u32 i;
262
263   p = hash_get (pg->if_index_by_if_id, if_id);
264
265   if (p)
266     {
267       return p[0];
268     }
269   else
270     {
271       u8 hw_addr[6];
272       f64 now = vlib_time_now (vm);
273       u32 rnd;
274
275       pool_get (pg->interfaces, pi);
276       i = pi - pg->interfaces;
277
278       rnd = (u32) (now * 1e6);
279       rnd = random_u32 (&rnd);
280       clib_memcpy_fast (hw_addr + 2, &rnd, sizeof (rnd));
281       hw_addr[0] = 2;
282       hw_addr[1] = 0xfe;
283
284       pi->id = if_id;
285       pi->mode = mode;
286
287       switch (pi->mode)
288         {
289         case PG_MODE_ETHERNET:
290           ethernet_register_interface (vnm, pg_dev_class.index, i, hw_addr,
291                                        &pi->hw_if_index, pg_eth_flag_change);
292           break;
293         case PG_MODE_IP4:
294         case PG_MODE_IP6:
295           pi->hw_if_index = vnet_register_interface (
296             vnm, pg_dev_class.index, i, pg_tun_hw_interface_class.index, i);
297           break;
298         }
299       hi = vnet_get_hw_interface (vnm, pi->hw_if_index);
300       if (gso_enabled)
301         {
302           hi->caps |= VNET_HW_INTERFACE_CAP_SUPPORTS_TCP_GSO;
303           pi->gso_enabled = 1;
304           pi->gso_size = gso_size;
305           if (coalesce_enabled)
306             {
307               pg_interface_enable_disable_coalesce (pi, 1, hi->tx_node_index);
308             }
309         }
310       pi->sw_if_index = hi->sw_if_index;
311
312       hash_set (pg->if_index_by_if_id, if_id, i);
313
314       vec_validate (pg->if_id_by_sw_if_index, hi->sw_if_index);
315       pg->if_id_by_sw_if_index[hi->sw_if_index] = i;
316
317       if (vlib_num_workers ())
318         {
319           pi->lockp = clib_mem_alloc_aligned (CLIB_CACHE_LINE_BYTES,
320                                               CLIB_CACHE_LINE_BYTES);
321           *pi->lockp = 0;
322         }
323     }
324
325   return i;
326 }
327
328 static void
329 do_edit (pg_stream_t * stream,
330          pg_edit_group_t * g, pg_edit_t * e, uword want_commit)
331 {
332   u32 i, i0, i1, mask, n_bits_left;
333   u8 *v, *s, *m;
334
335   i0 = e->lsb_bit_offset / BITS (u8);
336
337   /* Make space for edit in value and mask. */
338   vec_validate (g->fixed_packet_data, i0);
339   vec_validate (g->fixed_packet_data_mask, i0);
340
341   if (e->type != PG_EDIT_FIXED)
342     {
343       switch (e->type)
344         {
345         case PG_EDIT_RANDOM:
346         case PG_EDIT_INCREMENT:
347           e->last_increment_value = pg_edit_get_value (e, PG_EDIT_LO);
348           break;
349
350         default:
351           break;
352         }
353
354       if (want_commit)
355         {
356           ASSERT (e->type != PG_EDIT_INVALID_TYPE);
357           vec_add1 (g->non_fixed_edits, e[0]);
358         }
359       return;
360     }
361
362   s = g->fixed_packet_data;
363   m = g->fixed_packet_data_mask;
364
365   n_bits_left = e->n_bits;
366   i0 = e->lsb_bit_offset / BITS (u8);
367   i1 = e->lsb_bit_offset % BITS (u8);
368
369   v = e->values[PG_EDIT_LO];
370   i = pg_edit_n_alloc_bytes (e) - 1;
371
372   /* Odd low order bits?. */
373   if (i1 != 0 && n_bits_left > 0)
374     {
375       u32 n = clib_min (n_bits_left, BITS (u8) - i1);
376
377       mask = pow2_mask (n) << i1;
378
379       ASSERT (i0 < vec_len (s));
380       ASSERT (i < vec_len (v));
381       ASSERT ((v[i] & ~mask) == 0);
382
383       s[i0] |= v[i] & mask;
384       m[i0] |= mask;
385
386       i0--;
387       i--;
388       n_bits_left -= n;
389     }
390
391   /* Even bytes. */
392   while (n_bits_left >= 8)
393     {
394       ASSERT (i0 < vec_len (s));
395       ASSERT (i < vec_len (v));
396
397       s[i0] = v[i];
398       m[i0] = ~0;
399
400       i0--;
401       i--;
402       n_bits_left -= 8;
403     }
404
405   /* Odd high order bits. */
406   if (n_bits_left > 0)
407     {
408       mask = pow2_mask (n_bits_left);
409
410       ASSERT (i0 < vec_len (s));
411       ASSERT (i < vec_len (v));
412       ASSERT ((v[i] & ~mask) == 0);
413
414       s[i0] |= v[i] & mask;
415       m[i0] |= mask;
416     }
417
418   if (want_commit)
419     pg_edit_free (e);
420 }
421
422 void
423 pg_edit_group_get_fixed_packet_data (pg_stream_t * s,
424                                      u32 group_index,
425                                      void *packet_data,
426                                      void *packet_data_mask)
427 {
428   pg_edit_group_t *g = pg_stream_get_group (s, group_index);
429   pg_edit_t *e;
430
431   vec_foreach (e, g->edits) do_edit (s, g, e, /* want_commit */ 0);
432
433   clib_memcpy_fast (packet_data, g->fixed_packet_data,
434                     vec_len (g->fixed_packet_data));
435   clib_memcpy_fast (packet_data_mask, g->fixed_packet_data_mask,
436                     vec_len (g->fixed_packet_data_mask));
437 }
438
439 static void
440 perform_fixed_edits (pg_stream_t * s)
441 {
442   pg_edit_group_t *g;
443   pg_edit_t *e;
444   word i;
445
446   for (i = vec_len (s->edit_groups) - 1; i >= 0; i--)
447     {
448       g = vec_elt_at_index (s->edit_groups, i);
449       vec_foreach (e, g->edits) do_edit (s, g, e, /* want_commit */ 1);
450
451       /* All edits have either been performed or added to
452          g->non_fixed_edits.  So, we can delete the vector. */
453       vec_free (g->edits);
454     }
455
456   vec_free (s->fixed_packet_data_mask);
457   vec_free (s->fixed_packet_data);
458   vec_foreach (g, s->edit_groups)
459   {
460     int i;
461     g->start_byte_offset = vec_len (s->fixed_packet_data);
462
463     /* Relocate and copy non-fixed edits from group to stream. */
464     vec_foreach (e, g->non_fixed_edits)
465       e->lsb_bit_offset += g->start_byte_offset * BITS (u8);
466
467     for (i = 0; i < vec_len (g->non_fixed_edits); i++)
468       ASSERT (g->non_fixed_edits[i].type != PG_EDIT_INVALID_TYPE);
469
470     vec_add (s->non_fixed_edits,
471              g->non_fixed_edits, vec_len (g->non_fixed_edits));
472     vec_free (g->non_fixed_edits);
473
474     vec_add (s->fixed_packet_data,
475              g->fixed_packet_data, vec_len (g->fixed_packet_data));
476     vec_add (s->fixed_packet_data_mask,
477              g->fixed_packet_data_mask, vec_len (g->fixed_packet_data_mask));
478   }
479 }
480
481 void
482 pg_stream_add (pg_main_t * pg, pg_stream_t * s_init)
483 {
484   vlib_main_t *vm = vlib_get_main ();
485   pg_stream_t *s;
486   uword *p;
487
488   if (!pg->stream_index_by_name)
489     pg->stream_index_by_name
490       = hash_create_vec (0, sizeof (s->name[0]), sizeof (uword));
491
492   /* Delete any old stream with the same name. */
493   if (s_init->name
494       && (p = hash_get_mem (pg->stream_index_by_name, s_init->name)))
495     {
496       pg_stream_del (pg, p[0]);
497     }
498
499   pool_get (pg->streams, s);
500   s[0] = s_init[0];
501
502   /* Give it a name. */
503   if (!s->name)
504     s->name = format (0, "stream%d", s - pg->streams);
505   else
506     s->name = vec_dup (s->name);
507
508   hash_set_mem (pg->stream_index_by_name, s->name, s - pg->streams);
509
510   /* Get fixed part of buffer data. */
511   if (s->edit_groups)
512     perform_fixed_edits (s);
513
514   /* Determine packet size. */
515   switch (s->packet_size_edit_type)
516     {
517     case PG_EDIT_INCREMENT:
518     case PG_EDIT_RANDOM:
519       if (s->min_packet_bytes == s->max_packet_bytes)
520         s->packet_size_edit_type = PG_EDIT_FIXED;
521       break;
522
523     default:
524       /* Get packet size from fixed edits. */
525       s->packet_size_edit_type = PG_EDIT_FIXED;
526       if (!s->replay_packet_templates)
527         s->min_packet_bytes = s->max_packet_bytes =
528           vec_len (s->fixed_packet_data);
529       break;
530     }
531
532   s->last_increment_packet_size = s->min_packet_bytes;
533
534   {
535     int n;
536
537     s->buffer_bytes = vlib_buffer_get_default_data_size (vm);
538     n = s->max_packet_bytes / s->buffer_bytes;
539     n += (s->max_packet_bytes % s->buffer_bytes) != 0;
540
541     vec_resize (s->buffer_indices, n);
542   }
543
544   /* Find an interface to use. */
545   s->pg_if_index = pg_interface_add_or_get (
546     pg, s->if_id, 0 /* gso_enabled */, 0 /* gso_size */,
547     0 /* coalesce_enabled */, PG_MODE_ETHERNET);
548
549   if (s->sw_if_index[VLIB_RX] == ~0)
550     {
551       pg_interface_t *pi = pool_elt_at_index (pg->interfaces, s->pg_if_index);
552       /*
553        * Default the RX interface if unset. It's a bad mistake to
554        * set [VLIB_TX] prior to ip lookup, since the ip lookup code
555        * interprets [VLIB_TX] as a fib index...
556        */
557       s->sw_if_index[VLIB_RX] = pi->sw_if_index;
558     }
559
560   /* Connect the graph. */
561   s->next_index = vlib_node_add_next (vm, device_input_node.index,
562                                       s->node_index);
563 }
564
565 void
566 pg_stream_del (pg_main_t * pg, uword index)
567 {
568   pg_stream_t *s;
569   pg_buffer_index_t *bi;
570
571   s = pool_elt_at_index (pg->streams, index);
572
573   pg_stream_enable_disable (pg, s, /* want_enabled */ 0);
574   hash_unset_mem (pg->stream_index_by_name, s->name);
575
576   vec_foreach (bi, s->buffer_indices)
577   {
578     clib_fifo_free (bi->buffer_fifo);
579   }
580
581   pg_stream_free (s);
582   pool_put (pg->streams, s);
583 }
584
585 void
586 pg_stream_change (pg_main_t * pg, pg_stream_t * s)
587 {
588   /* Determine packet size. */
589   switch (s->packet_size_edit_type)
590     {
591     case PG_EDIT_INCREMENT:
592     case PG_EDIT_RANDOM:
593       if (s->min_packet_bytes == s->max_packet_bytes)
594         s->packet_size_edit_type = PG_EDIT_FIXED;
595     case PG_EDIT_FIXED:
596       break;
597
598     default:
599       /* Get packet size from fixed edits. */
600       s->packet_size_edit_type = PG_EDIT_FIXED;
601       if (!s->replay_packet_templates)
602         s->min_packet_bytes = s->max_packet_bytes =
603           vec_len (s->fixed_packet_data);
604       break;
605     }
606
607   s->last_increment_packet_size = s->min_packet_bytes;
608 }
609
610
611 /*
612  * fd.io coding-style-patch-verification: ON
613  *
614  * Local Variables:
615  * eval: (c-set-style "gnu")
616  * End:
617  */