blob: b8508ee449d3d82887355e518454b8885a6caaa4 [file] [log] [blame]
Damjan Marionaa63bc62021-11-08 11:18:30 +00001/* SPDX-License-Identifier: Apache-2.0
2 * Copyright(c) 2021 Cisco Systems, Inc.
3 */
4
5#include <vppinfra/format.h>
Damjan Marionc3542e12023-03-15 11:42:06 +00006#include <vppinfra/test/test.h>
Damjan Marionaa63bc62021-11-08 11:18:30 +00007#include <vppinfra/vector/ip_csum.h>
8
9typedef struct
10{
11 struct
12 {
13 u8 *src;
14 u32 count;
15 } chunk[5];
16 u16 result;
17} ip_csum_test_t;
18
19static u8 test1[] = { 0x45, 0x00, 0x00, 0x73, 0x00, 0x00, 0x40,
20 0x00, 0x40, 0x11, 0x00, 0x00, 0xc0, 0xa8,
21 0x00, 0x01, 0xc0, 0xa8, 0x00, 0xc7, 0x00 };
22#define TEST_LEN(x) (ARRAY_LEN (x) - 1)
23
24static ip_csum_test_t tests[] = { {
25 .chunk[0].src = test1,
26 .chunk[0].count = TEST_LEN (test1),
27 .result = 0x61b8,
28 },
29 {
30 .chunk[0].src = test1,
31 .chunk[0].count = 1,
32 .chunk[1].src = test1 + 1,
33 .chunk[1].count = 2,
34 .chunk[2].src = test1 + 3,
35 .chunk[2].count = 3,
36 .chunk[3].src = test1 + 6,
37 .chunk[3].count = 4,
38 .chunk[4].src = test1 + 10,
39 .chunk[4].count = TEST_LEN (test1) - 10,
40 .result = 0x61b8,
41 },
42 {
43 .chunk[0].count = 1,
44 .result = 0xff0f,
45 },
46 {
47 .chunk[0].count = 2,
48 .result = 0x080f,
49 },
50 {
51 .chunk[0].count = 3,
52 .result = 0x0711,
53 },
54 {
55 .chunk[0].count = 4,
56 .result = 0x1210,
57 },
58 {
59 .chunk[0].count = 63,
60 .result = 0xda01,
61 },
62 {
63 .chunk[0].count = 64,
64 .result = 0xe100,
65 },
66 {
67 .chunk[0].count = 65,
68 .result = 0xe010,
69 },
70 {
71 .chunk[0].count = 65535,
72 .result = 0xfc84,
73 },
74 {
75 .chunk[0].count = 65536,
76 .result = 0xffff,
77 } };
78
79static clib_error_t *
80test_clib_ip_csum (clib_error_t *err)
81{
82 u8 *buf;
Damjan Marion3323e202021-12-02 11:28:57 +010083 buf = test_mem_alloc (65536);
Damjan Marionaa63bc62021-11-08 11:18:30 +000084 for (int i = 0; i < 65536; i++)
85 buf[i] = 0xf0 + ((i * 7) & 0xf);
86
87 for (int i = 0; i < ARRAY_LEN (tests); i++)
88 {
89 clib_ip_csum_t c = {};
90 ip_csum_test_t *t = tests + i;
91 u16 rv;
92
93 for (int j = 0; j < ARRAY_LEN (((ip_csum_test_t *) 0)->chunk); j++)
94 if (t->chunk[j].count > 0)
95 {
96 if (t->chunk[j].src == 0)
97 clib_ip_csum_chunk (&c, buf, t->chunk[j].count);
98 else
99 clib_ip_csum_chunk (&c, t->chunk[j].src, t->chunk[j].count);
100 }
101 rv = clib_ip_csum_fold (&c);
102
103 if (rv != tests[i].result)
104 {
105 err = clib_error_return (err,
106 "bad checksum in test case %u (expected "
107 "0x%04x, calculated 0x%04x)",
108 i, tests[i].result, rv);
109 goto done;
110 }
111 }
112done:
Damjan Marionaa63bc62021-11-08 11:18:30 +0000113 return err;
114}
115
Damjan Marion3323e202021-12-02 11:28:57 +0100116void __test_perf_fn
Damjan Mariond5045e62022-04-06 21:16:37 +0200117perftest_ip4_hdr (test_perf_t *tp)
Damjan Marion3323e202021-12-02 11:28:57 +0100118{
119 u32 n = tp->n_ops;
120 u8 *data = test_mem_alloc_and_splat (20, n, (void *) &test1);
121 u16 *res = test_mem_alloc (n * sizeof (u16));
122
Damjan Mariond5045e62022-04-06 21:16:37 +0200123 test_perf_event_enable (tp);
Damjan Marion3323e202021-12-02 11:28:57 +0100124 for (int i = 0; i < n; i++)
125 res[i] = clib_ip_csum (data + i * 20, 20);
Damjan Mariond5045e62022-04-06 21:16:37 +0200126 test_perf_event_disable (tp);
Damjan Marion3323e202021-12-02 11:28:57 +0100127}
128
129void __test_perf_fn
Damjan Mariond5045e62022-04-06 21:16:37 +0200130perftest_tcp_payload (test_perf_t *tp)
Damjan Marion3323e202021-12-02 11:28:57 +0100131{
132 u32 n = tp->n_ops;
133 volatile uword *lenp = &tp->arg0;
134 u8 *data = test_mem_alloc_and_splat (20, n, (void *) &test1);
135 u16 *res = test_mem_alloc (n * sizeof (u16));
136
Damjan Mariond5045e62022-04-06 21:16:37 +0200137 test_perf_event_enable (tp);
Damjan Marion3323e202021-12-02 11:28:57 +0100138 for (int i = 0; i < n; i++)
139 res[i] = clib_ip_csum (data + i * lenp[0], lenp[0]);
Damjan Mariond5045e62022-04-06 21:16:37 +0200140 test_perf_event_disable (tp);
Damjan Marion3323e202021-12-02 11:28:57 +0100141}
142
143void __test_perf_fn
Damjan Mariond5045e62022-04-06 21:16:37 +0200144perftest_byte (test_perf_t *tp)
Damjan Marion3323e202021-12-02 11:28:57 +0100145{
146 volatile uword *np = &tp->n_ops;
147 u8 *data = test_mem_alloc_and_fill_inc_u8 (*np, 0, 0);
148 u16 *res = test_mem_alloc (sizeof (u16));
149
Damjan Mariond5045e62022-04-06 21:16:37 +0200150 test_perf_event_enable (tp);
Damjan Marion3323e202021-12-02 11:28:57 +0100151 res[0] = clib_ip_csum (data, np[0]);
Damjan Mariond5045e62022-04-06 21:16:37 +0200152 test_perf_event_disable (tp);
Damjan Marion3323e202021-12-02 11:28:57 +0100153}
154
Damjan Marionaa63bc62021-11-08 11:18:30 +0000155REGISTER_TEST (clib_ip_csum) = {
156 .name = "clib_ip_csum",
157 .fn = test_clib_ip_csum,
Damjan Marion3323e202021-12-02 11:28:57 +0100158 .perf_tests = PERF_TESTS (
Damjan Mariond5045e62022-04-06 21:16:37 +0200159 { .name = "fixed size (per IPv4 Header)",
Damjan Marion3323e202021-12-02 11:28:57 +0100160 .n_ops = 1024,
161 .fn = perftest_ip4_hdr },
Damjan Mariond5045e62022-04-06 21:16:37 +0200162 { .name = "fixed size (per 1460 byte block)",
Damjan Marion3323e202021-12-02 11:28:57 +0100163 .n_ops = 16,
164 .arg0 = 1460,
165 .fn = perftest_tcp_payload },
Damjan Mariond5045e62022-04-06 21:16:37 +0200166 { .name = "variable size (per byte)", .n_ops = 16384, .fn = perftest_byte }
Damjan Marion3323e202021-12-02 11:28:57 +0100167
168 ),
Damjan Marionaa63bc62021-11-08 11:18:30 +0000169};