unittest: fix test crypto perf for AEAD algos
[vpp.git] / src / plugins / unittest / crypto_test.c
1 /*
2  * Copyright (c) 2019 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 #include <vlib/vlib.h>
16 #include <vppinfra/time.h>
17 #include <vppinfra/cache.h>
18 #include <vppinfra/error.h>
19 #include <vnet/crypto/crypto.h>
20 #include <unittest/crypto/crypto.h>
21
22 crypto_test_main_t crypto_test_main;
23
24 static int
25 sort_registrations (void *a0, void *a1)
26 {
27   unittest_crypto_test_registration_t **r0 = a0;
28   unittest_crypto_test_registration_t **r1 = a1;
29
30   return (strncmp (r0[0]->name, r1[0]->name, 256));
31 }
32
33 static clib_error_t *
34 test_crypto (vlib_main_t * vm, crypto_test_main_t * tm)
35 {
36   vnet_crypto_main_t *cm = &crypto_main;
37   unittest_crypto_test_registration_t *r = tm->test_registrations;
38   unittest_crypto_test_registration_t **rv = 0;
39   vnet_crypto_alg_data_t *ad;
40   vnet_crypto_op_t *ops = 0, *op;
41   vnet_crypto_key_index_t *key_indices = 0;
42   u8 *computed_data = 0, *s = 0, *err = 0;
43   u32 computed_data_total_len = 0, n_ops = 0;
44   u32 i;
45
46   /* construct registration vector */
47   while (r)
48     {
49       vec_add1 (rv, r);
50       ad = vec_elt_at_index (cm->algs, r->alg);
51
52       for (i = 0; i < VNET_CRYPTO_OP_N_TYPES; i++)
53         {
54           vnet_crypto_op_id_t id = ad->op_by_type[i];
55
56           if (id == 0)
57             continue;
58
59           switch (i)
60             {
61             case VNET_CRYPTO_OP_TYPE_ENCRYPT:
62             case VNET_CRYPTO_OP_TYPE_DECRYPT:
63             case VNET_CRYPTO_OP_TYPE_AEAD_DECRYPT:
64               computed_data_total_len += r->ciphertext.length;
65               n_ops += 1;
66               break;
67             case VNET_CRYPTO_OP_TYPE_AEAD_ENCRYPT:
68               computed_data_total_len += r->ciphertext.length;
69               computed_data_total_len += r->tag.length;
70               n_ops += 1;
71               break;
72             case VNET_CRYPTO_OP_TYPE_HMAC:
73               computed_data_total_len += r->digest.length;
74               n_ops += 1;
75               break;
76             default:
77               break;
78             };
79         }
80
81       /* next */
82       r = r->next;
83     }
84
85   /* no tests registered */
86   if (n_ops == 0)
87     return 0;
88
89   vec_sort_with_function (rv, sort_registrations);
90
91   vec_validate_aligned (computed_data, computed_data_total_len - 1,
92                         CLIB_CACHE_LINE_BYTES);
93   vec_validate_aligned (ops, n_ops - 1, CLIB_CACHE_LINE_BYTES);
94   computed_data_total_len = 0;
95
96   op = ops;
97   /* *INDENT-OFF* */
98   vec_foreach_index (i, rv)
99     {
100       r = rv[i];
101       int t;
102       ad = vec_elt_at_index (cm->algs, r->alg);
103       for (t = 0; t < VNET_CRYPTO_OP_N_TYPES; t++)
104         {
105           vnet_crypto_op_id_t id = ad->op_by_type[t];
106
107           if (id == 0)
108             continue;
109
110           vnet_crypto_op_init (op, id);
111
112           switch (t)
113             {
114             case VNET_CRYPTO_OP_TYPE_ENCRYPT:
115             case VNET_CRYPTO_OP_TYPE_DECRYPT:
116               op->iv = r->iv.data;
117               op->key_index = vnet_crypto_key_add (vm, r->alg,
118                                                    r->key.data,
119                                                    r->key.length);
120               vec_add1 (key_indices, op->key_index);
121               op->len = r->plaintext.length;
122               op->src = t == VNET_CRYPTO_OP_TYPE_ENCRYPT ?
123                 r->plaintext.data : r->ciphertext.data;
124               op->dst = computed_data + computed_data_total_len;
125               computed_data_total_len += r->ciphertext.length;
126               break;
127             case VNET_CRYPTO_OP_TYPE_AEAD_ENCRYPT:
128             case VNET_CRYPTO_OP_TYPE_AEAD_DECRYPT:
129               op->iv = r->iv.data;
130               op->key_index = vnet_crypto_key_add (vm, r->alg,
131                                                    r->key.data,
132                                                    r->key.length);
133               vec_add1 (key_indices, op->key_index);
134               op->aad = r->aad.data;
135               op->aad_len = r->aad.length;
136               op->len = r->plaintext.length;
137               op->dst = computed_data + computed_data_total_len;
138               computed_data_total_len += r->ciphertext.length;
139               if (t == VNET_CRYPTO_OP_TYPE_AEAD_ENCRYPT)
140                 {
141                   op->src = r->plaintext.data;
142                   op->tag = computed_data + computed_data_total_len;
143                   computed_data_total_len += r->tag.length;
144                 }
145               else
146                 {
147                   op->src = r->ciphertext.data;
148                   op->tag = r->tag.data;
149                 }
150               op->tag_len = r->tag.length;
151               break;
152             case VNET_CRYPTO_OP_TYPE_HMAC:
153               op->key_index = vnet_crypto_key_add (vm, r->alg,
154                                                    r->key.data,
155                                                    r->key.length);
156               vec_add1 (key_indices, op->key_index);
157               op->src = r->plaintext.data;
158               op->len = r->plaintext.length;
159               op->digest_len = r->digest.length;
160               op->digest = computed_data + computed_data_total_len;
161               computed_data_total_len += r->digest.length;
162               break;
163             default:
164               break;
165             };
166
167           op->user_data = i;
168           op++;
169         }
170     }
171   /* *INDENT-ON* */
172
173   vnet_crypto_process_ops (vm, ops, vec_len (ops));
174
175   /* *INDENT-OFF* */
176   vec_foreach (op, ops)
177     {
178       int fail = 0;
179       r = rv[op->user_data];
180       unittest_crypto_test_data_t *exp_pt = 0, *exp_ct = 0;
181       unittest_crypto_test_data_t *exp_digest = 0, *exp_tag = 0;
182
183       switch (vnet_crypto_get_op_type (op->op))
184         {
185         case VNET_CRYPTO_OP_TYPE_AEAD_ENCRYPT:
186           exp_tag = &r->tag;
187           /* fall through */
188         case VNET_CRYPTO_OP_TYPE_ENCRYPT:
189           exp_ct = &r->ciphertext;
190           break;
191         case VNET_CRYPTO_OP_TYPE_AEAD_DECRYPT:
192         case VNET_CRYPTO_OP_TYPE_DECRYPT:
193           exp_pt = &r->plaintext;
194           break;
195         case VNET_CRYPTO_OP_TYPE_HMAC:
196           exp_digest = &r->digest;
197           break;
198         default:
199           break;
200         }
201
202       vec_reset_length (err);
203
204       if (op->status != VNET_CRYPTO_OP_STATUS_COMPLETED)
205         err = format (err, "%sengine error: %U", vec_len (err) ? ", " : "",
206                       format_vnet_crypto_op_status, op->status);
207
208       if (exp_ct && memcmp (op->dst, exp_ct->data, exp_ct->length) != 0)
209         err = format (err, "%sciphertext mismatch",
210                       vec_len (err) ? ", " : "");
211
212       if (exp_pt && memcmp (op->dst, exp_pt->data, exp_pt->length) != 0)
213         err = format (err, "%splaintext mismatch", vec_len (err) ? ", " : "");
214
215       if (exp_tag && memcmp (op->tag, exp_tag->data, exp_tag->length) != 0)
216         err = format (err, "%stag mismatch", vec_len (err) ? ", " : "");
217
218       if (exp_digest &&
219           memcmp (op->digest, exp_digest->data, exp_digest->length) != 0)
220         err = format (err, "%sdigest mismatch", vec_len (err) ? ", " : "");
221
222       vec_reset_length (s);
223       s = format (s, "%s (%U)", r->name, format_vnet_crypto_op, op->op);
224
225       if (vec_len (err))
226         fail = 1;
227
228       vlib_cli_output (vm, "%-60v%s%v", s, vec_len (err) ? "FAIL: " : "OK",
229                        err);
230       if (tm->verbose)
231         {
232           if (tm->verbose == 2)
233             fail = 1;
234
235           if (exp_ct && fail)
236             vlib_cli_output (vm, "Expected ciphertext:\n%U"
237                              "\nCalculated ciphertext:\n%U",
238                              format_hexdump, exp_ct->data, exp_ct->length,
239                              format_hexdump, op->dst, exp_ct->length);
240           if (exp_pt && fail)
241             vlib_cli_output (vm, "Expected plaintext:\n%U"
242                              "\nCalculated plaintext:\n%U",
243                              format_hexdump, exp_pt->data, exp_pt->length,
244                              format_hexdump, op->dst, exp_pt->length);
245           if (r->tag.length && fail)
246             vlib_cli_output (vm, "Expected tag:\n%U"
247                              "\nCalculated tag:\n%U",
248                              format_hexdump, r->tag.data, r->tag.length,
249                              format_hexdump, op->tag, op->tag_len);
250           if (exp_digest && fail)
251             vlib_cli_output (vm, "Expected digest:\n%U"
252                              "\nCalculated Digest:\n%U",
253                              format_hexdump, exp_digest->data,
254                              exp_digest->length, format_hexdump, op->digest,
255                              op->digest_len);
256         }
257     }
258
259   vec_foreach_index (i, key_indices)
260     vnet_crypto_key_del (vm, key_indices[i]);
261   /* *INDENT-ON* */
262
263   vec_free (computed_data);
264   vec_free (ops);
265   vec_free (err);
266   vec_free (rv);
267   vec_free (s);
268   return 0;
269 }
270
271 static clib_error_t *
272 test_crypto_perf (vlib_main_t * vm, crypto_test_main_t * tm)
273 {
274   vnet_crypto_main_t *cm = &crypto_main;
275   clib_error_t *err = 0;
276   u32 n_buffers, n_alloc = 0, warmup_rounds, rounds;
277   u32 *buffer_indices = 0;
278   vnet_crypto_op_t *ops1 = 0, *ops2 = 0, *op1, *op2;
279   vnet_crypto_alg_data_t *ad = vec_elt_at_index (cm->algs, tm->alg);
280   vnet_crypto_key_index_t key_index = ~0;
281   u8 key[32];
282   int buffer_size = vlib_buffer_get_default_data_size (vm);
283   u64 seed = clib_cpu_time_now ();
284   u64 t0[5], t1[5], t2[5], n_bytes = 0;
285   int i, j;
286
287   if (tm->buffer_size > buffer_size)
288     return clib_error_return (0, "buffer size must be <= %u", buffer_size);
289
290   rounds = tm->rounds ? tm->rounds : 100;
291   n_buffers = tm->n_buffers ? tm->n_buffers : 256;
292   buffer_size = tm->buffer_size ? tm->buffer_size : 2048;
293   warmup_rounds = tm->warmup_rounds ? tm->warmup_rounds : 100;
294
295   if (buffer_size > vlib_buffer_get_default_data_size (vm))
296     return clib_error_return (0, "buffer size too big");
297
298   vec_validate_aligned (buffer_indices, n_buffers - 1, CLIB_CACHE_LINE_BYTES);
299   vec_validate_aligned (ops1, n_buffers - 1, CLIB_CACHE_LINE_BYTES);
300   vec_validate_aligned (ops2, n_buffers - 1, CLIB_CACHE_LINE_BYTES);
301
302   n_alloc = vlib_buffer_alloc (vm, buffer_indices, n_buffers);
303   if (n_alloc != n_buffers)
304     {
305       if (n_alloc)
306         vlib_buffer_free (vm, buffer_indices, n_alloc);
307       err = clib_error_return (0, "buffer alloc failure");
308       goto done;
309     }
310
311   vlib_cli_output (vm, "%U: n_buffers %u buffer-size %u rounds %u "
312                    "warmup-rounds %u",
313                    format_vnet_crypto_alg, tm->alg, n_buffers, buffer_size,
314                    rounds, warmup_rounds);
315   vlib_cli_output (vm, "   cpu-freq %.2f GHz",
316                    (f64) vm->clib_time.clocks_per_second * 1e-9);
317
318   vnet_crypto_op_type_t ot = 0;
319
320   for (i = 0; i < sizeof (key); i++)
321     key[i] = i;
322
323   key_index = vnet_crypto_key_add (vm, tm->alg, key, sizeof (key));
324
325   for (i = 0; i < VNET_CRYPTO_OP_N_TYPES; i++)
326     {
327       vnet_crypto_op_id_t id = ad->op_by_type[i];
328       if (id == 0)
329         continue;
330       ot = i;
331       break;
332     }
333
334   for (i = 0; i < n_buffers; i++)
335     {
336       vlib_buffer_t *b = vlib_get_buffer (vm, buffer_indices[i]);
337       op1 = ops1 + i;
338       op2 = ops2 + i;
339
340       switch (ot)
341         {
342         case VNET_CRYPTO_OP_TYPE_ENCRYPT:
343         case VNET_CRYPTO_OP_TYPE_DECRYPT:
344           vnet_crypto_op_init (op1,
345                                ad->op_by_type[VNET_CRYPTO_OP_TYPE_ENCRYPT]);
346           vnet_crypto_op_init (op2,
347                                ad->op_by_type[VNET_CRYPTO_OP_TYPE_DECRYPT]);
348           op1->flags = VNET_CRYPTO_OP_FLAG_INIT_IV;
349           op1->src = op2->src = op1->dst = op2->dst = b->data;
350           op1->key_index = op2->key_index = key_index;
351           op1->iv = op2->iv = b->data - 64;
352           n_bytes += op1->len = op2->len = buffer_size;
353           break;
354         case VNET_CRYPTO_OP_TYPE_AEAD_ENCRYPT:
355         case VNET_CRYPTO_OP_TYPE_AEAD_DECRYPT:
356           vnet_crypto_op_init (op1,
357                                ad->op_by_type
358                                [VNET_CRYPTO_OP_TYPE_AEAD_ENCRYPT]);
359           vnet_crypto_op_init (op2,
360                                ad->op_by_type
361                                [VNET_CRYPTO_OP_TYPE_AEAD_DECRYPT]);
362           op1->src = op2->src = op1->dst = op2->dst = b->data;
363           op1->key_index = op2->key_index = key_index;
364           op1->tag = op2->tag = b->data - 32;
365           op1->iv = op2->iv = b->data - 64;
366           op1->aad = op2->aad = b->data - VLIB_BUFFER_PRE_DATA_SIZE;
367           op1->aad_len = op2->aad_len = 64;
368           op1->tag_len = op2->tag_len = 16;
369           n_bytes += op1->len = op2->len = buffer_size;
370           break;
371         case VNET_CRYPTO_OP_TYPE_HMAC:
372           vnet_crypto_op_init (op1, ad->op_by_type[VNET_CRYPTO_OP_TYPE_HMAC]);
373           op1->src = b->data;
374           op1->key_index = key_index;
375           op1->iv = 0;
376           op1->digest = b->data - VLIB_BUFFER_PRE_DATA_SIZE;
377           op1->digest_len = 0;
378           n_bytes += op1->len = buffer_size;
379           break;
380         default:
381           return 0;
382         }
383
384       for (j = -VLIB_BUFFER_PRE_DATA_SIZE; j < buffer_size; j += 8)
385         *(u64 *) (b->data + j) = 1 + random_u64 (&seed);
386     }
387
388   for (i = 0; i < 5; i++)
389     {
390       for (j = 0; j < warmup_rounds; j++)
391         {
392           vnet_crypto_process_ops (vm, ops1, n_buffers);
393           if (ot != VNET_CRYPTO_OP_TYPE_HMAC)
394             vnet_crypto_process_ops (vm, ops2, n_buffers);
395         }
396
397       t0[i] = clib_cpu_time_now ();
398       for (j = 0; j < rounds; j++)
399         vnet_crypto_process_ops (vm, ops1, n_buffers);
400       t1[i] = clib_cpu_time_now ();
401
402       if (ot != VNET_CRYPTO_OP_TYPE_HMAC)
403         {
404           for (j = 0; j < rounds; j++)
405             vnet_crypto_process_ops (vm, ops2, n_buffers);
406           t2[i] = clib_cpu_time_now ();
407         }
408     }
409
410   for (i = 0; i < 5; i++)
411     {
412       f64 tpb1 = (f64) (t1[i] - t0[i]) / (n_bytes * rounds);
413       f64 gbps1 = vm->clib_time.clocks_per_second * 1e-9 * 8 / tpb1;
414       f64 tpb2, gbps2;
415
416       if (ot != VNET_CRYPTO_OP_TYPE_HMAC)
417         {
418           tpb2 = (f64) (t2[i] - t1[i]) / (n_bytes * rounds);
419           gbps2 = vm->clib_time.clocks_per_second * 1e-9 * 8 / tpb2;
420           vlib_cli_output (vm, "%-2u: encrypt %.03f ticks/byte, %.02f Gbps; "
421                            "decrypt %.03f ticks/byte, %.02f Gbps",
422                            i + 1, tpb1, gbps1, tpb2, gbps2);
423         }
424       else
425         {
426           vlib_cli_output (vm, "%-2u: hash %.03f ticks/byte, %.02f Gbps\n",
427                            i + 1, tpb1, gbps1);
428         }
429     }
430
431 done:
432   if (n_alloc)
433     vlib_buffer_free (vm, buffer_indices, n_alloc);
434
435   if (key_index != ~0)
436     vnet_crypto_key_del (vm, key_index);
437
438   vec_free (buffer_indices);
439   vec_free (ops1);
440   vec_free (ops2);
441   return err;
442 }
443
444 static clib_error_t *
445 test_crypto_command_fn (vlib_main_t * vm,
446                         unformat_input_t * input, vlib_cli_command_t * cmd)
447 {
448   crypto_test_main_t *tm = &crypto_test_main;
449   unittest_crypto_test_registration_t *tr;
450   int is_perf = 0;
451
452   tr = tm->test_registrations;
453   memset (tm, 0, sizeof (crypto_test_main_t));
454   tm->test_registrations = tr;
455   tm->alg = ~0;
456
457   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
458     {
459       if (unformat (input, "verbose"))
460         tm->verbose = 1;
461       else if (unformat (input, "detail"))
462         tm->verbose = 2;
463       else
464         if (unformat (input, "perf %U", unformat_vnet_crypto_alg, &tm->alg))
465         is_perf = 1;
466       else if (unformat (input, "buffers %u", &tm->n_buffers))
467         ;
468       else if (unformat (input, "rounds %u", &tm->rounds))
469         ;
470       else if (unformat (input, "warmup-rounds %u", &tm->warmup_rounds))
471         ;
472       else if (unformat (input, "buffer-size %u", &tm->buffer_size))
473         ;
474       else
475         return clib_error_return (0, "unknown input '%U'",
476                                   format_unformat_error, input);
477     }
478
479   if (is_perf)
480     return test_crypto_perf (vm, tm);
481   else
482     return test_crypto (vm, tm);
483 }
484
485 /* *INDENT-OFF* */
486 VLIB_CLI_COMMAND (test_crypto_command, static) =
487 {
488   .path = "test crypto",
489   .short_help = "test crypto",
490   .function = test_crypto_command_fn,
491 };
492 /* *INDENT-ON* */
493
494 static clib_error_t *
495 crypto_test_init (vlib_main_t * vm)
496 {
497   return (0);
498 }
499
500 VLIB_INIT_FUNCTION (crypto_test_init);
501
502 /*
503  * fd.io coding-style-patch-verification: ON
504  *
505  * Local Variables:
506  * eval: (c-set-style "gnu")
507  * End:
508  */