GNU Linux-libre 4.14.290-gnu1
[releases.git] / tools / testing / selftests / net / psock_fanout.c
1 /*
2  * Copyright 2013 Google Inc.
3  * Author: Willem de Bruijn (willemb@google.com)
4  *
5  * A basic test of packet socket fanout behavior.
6  *
7  * Control:
8  * - create fanout fails as expected with illegal flag combinations
9  * - join   fanout fails as expected with diverging types or flags
10  *
11  * Datapath:
12  *   Open a pair of packet sockets and a pair of INET sockets, send a known
13  *   number of packets across the two INET sockets and count the number of
14  *   packets enqueued onto the two packet sockets.
15  *
16  *   The test currently runs for
17  *   - PACKET_FANOUT_HASH
18  *   - PACKET_FANOUT_HASH with PACKET_FANOUT_FLAG_ROLLOVER
19  *   - PACKET_FANOUT_LB
20  *   - PACKET_FANOUT_CPU
21  *   - PACKET_FANOUT_ROLLOVER
22  *   - PACKET_FANOUT_CBPF
23  *   - PACKET_FANOUT_EBPF
24  *
25  * Todo:
26  * - functionality: PACKET_FANOUT_FLAG_DEFRAG
27  *
28  * License (GPLv2):
29  *
30  * This program is free software; you can redistribute it and/or modify it
31  * under the terms and conditions of the GNU General Public License,
32  * version 2, as published by the Free Software Foundation.
33  *
34  * This program is distributed in the hope it will be useful, but WITHOUT
35  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
36  * FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for
37  * more details.
38  *
39  * You should have received a copy of the GNU General Public License along with
40  * this program; if not, write to the Free Software Foundation, Inc.,
41  * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
42  */
43
44 #define _GNU_SOURCE             /* for sched_setaffinity */
45
46 #include <arpa/inet.h>
47 #include <errno.h>
48 #include <fcntl.h>
49 #include <linux/unistd.h>       /* for __NR_bpf */
50 #include <linux/filter.h>
51 #include <linux/bpf.h>
52 #include <linux/if_packet.h>
53 #include <net/ethernet.h>
54 #include <netinet/ip.h>
55 #include <netinet/udp.h>
56 #include <poll.h>
57 #include <sched.h>
58 #include <stdint.h>
59 #include <stdio.h>
60 #include <stdlib.h>
61 #include <string.h>
62 #include <sys/mman.h>
63 #include <sys/socket.h>
64 #include <sys/stat.h>
65 #include <sys/types.h>
66 #include <unistd.h>
67
68 #include "psock_lib.h"
69
70 #define RING_NUM_FRAMES                 20
71
72 /* Open a socket in a given fanout mode.
73  * @return -1 if mode is bad, a valid socket otherwise */
74 static int sock_fanout_open(uint16_t typeflags, uint16_t group_id)
75 {
76         int fd, val;
77
78         fd = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_IP));
79         if (fd < 0) {
80                 perror("socket packet");
81                 exit(1);
82         }
83
84         val = (((int) typeflags) << 16) | group_id;
85         if (setsockopt(fd, SOL_PACKET, PACKET_FANOUT, &val, sizeof(val))) {
86                 if (close(fd)) {
87                         perror("close packet");
88                         exit(1);
89                 }
90                 return -1;
91         }
92
93         pair_udp_setfilter(fd);
94         return fd;
95 }
96
97 static void sock_fanout_set_cbpf(int fd)
98 {
99         struct sock_filter bpf_filter[] = {
100                 BPF_STMT(BPF_LD+BPF_B+BPF_ABS, 80),           /* ldb [80] */
101                 BPF_STMT(BPF_RET+BPF_A, 0),                   /* ret A */
102         };
103         struct sock_fprog bpf_prog;
104
105         bpf_prog.filter = bpf_filter;
106         bpf_prog.len = sizeof(bpf_filter) / sizeof(struct sock_filter);
107
108         if (setsockopt(fd, SOL_PACKET, PACKET_FANOUT_DATA, &bpf_prog,
109                        sizeof(bpf_prog))) {
110                 perror("fanout data cbpf");
111                 exit(1);
112         }
113 }
114
115 static void sock_fanout_getopts(int fd, uint16_t *typeflags, uint16_t *group_id)
116 {
117         int sockopt;
118         socklen_t sockopt_len = sizeof(sockopt);
119
120         if (getsockopt(fd, SOL_PACKET, PACKET_FANOUT,
121                        &sockopt, &sockopt_len)) {
122                 perror("failed to getsockopt");
123                 exit(1);
124         }
125         *typeflags = sockopt >> 16;
126         *group_id = sockopt & 0xfffff;
127 }
128
129 static void sock_fanout_set_ebpf(int fd)
130 {
131         static char log_buf[65536];
132
133         const int len_off = __builtin_offsetof(struct __sk_buff, len);
134         struct bpf_insn prog[] = {
135                 { BPF_ALU64 | BPF_MOV | BPF_X,   6, 1, 0, 0 },
136                 { BPF_LDX   | BPF_W   | BPF_MEM, 0, 6, len_off, 0 },
137                 { BPF_JMP   | BPF_JGE | BPF_K,   0, 0, 1, DATA_LEN },
138                 { BPF_JMP   | BPF_JA  | BPF_K,   0, 0, 4, 0 },
139                 { BPF_LD    | BPF_B   | BPF_ABS, 0, 0, 0, 0x50 },
140                 { BPF_JMP   | BPF_JEQ | BPF_K,   0, 0, 2, DATA_CHAR },
141                 { BPF_JMP   | BPF_JEQ | BPF_K,   0, 0, 1, DATA_CHAR_1 },
142                 { BPF_ALU   | BPF_MOV | BPF_K,   0, 0, 0, 0 },
143                 { BPF_JMP   | BPF_EXIT,          0, 0, 0, 0 }
144         };
145         union bpf_attr attr;
146         int pfd;
147
148         memset(&attr, 0, sizeof(attr));
149         attr.prog_type = BPF_PROG_TYPE_SOCKET_FILTER;
150         attr.insns = (unsigned long) prog;
151         attr.insn_cnt = sizeof(prog) / sizeof(prog[0]);
152         attr.license = (unsigned long) "GPL";
153         attr.log_buf = (unsigned long) log_buf,
154         attr.log_size = sizeof(log_buf),
155         attr.log_level = 1,
156
157         pfd = syscall(__NR_bpf, BPF_PROG_LOAD, &attr, sizeof(attr));
158         if (pfd < 0) {
159                 perror("bpf");
160                 fprintf(stderr, "bpf verifier:\n%s\n", log_buf);
161                 exit(1);
162         }
163
164         if (setsockopt(fd, SOL_PACKET, PACKET_FANOUT_DATA, &pfd, sizeof(pfd))) {
165                 perror("fanout data ebpf");
166                 exit(1);
167         }
168
169         if (close(pfd)) {
170                 perror("close ebpf");
171                 exit(1);
172         }
173 }
174
175 static char *sock_fanout_open_ring(int fd)
176 {
177         struct tpacket_req req = {
178                 .tp_block_size = getpagesize(),
179                 .tp_frame_size = getpagesize(),
180                 .tp_block_nr   = RING_NUM_FRAMES,
181                 .tp_frame_nr   = RING_NUM_FRAMES,
182         };
183         char *ring;
184         int val = TPACKET_V2;
185
186         if (setsockopt(fd, SOL_PACKET, PACKET_VERSION, (void *) &val,
187                        sizeof(val))) {
188                 perror("packetsock ring setsockopt version");
189                 exit(1);
190         }
191         if (setsockopt(fd, SOL_PACKET, PACKET_RX_RING, (void *) &req,
192                        sizeof(req))) {
193                 perror("packetsock ring setsockopt");
194                 exit(1);
195         }
196
197         ring = mmap(0, req.tp_block_size * req.tp_block_nr,
198                     PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
199         if (ring == MAP_FAILED) {
200                 perror("packetsock ring mmap");
201                 exit(1);
202         }
203
204         return ring;
205 }
206
207 static int sock_fanout_read_ring(int fd, void *ring)
208 {
209         struct tpacket2_hdr *header = ring;
210         int count = 0;
211
212         while (count < RING_NUM_FRAMES && header->tp_status & TP_STATUS_USER) {
213                 count++;
214                 header = ring + (count * getpagesize());
215         }
216
217         return count;
218 }
219
220 static int sock_fanout_read(int fds[], char *rings[], const int expect[])
221 {
222         int ret[2];
223
224         ret[0] = sock_fanout_read_ring(fds[0], rings[0]);
225         ret[1] = sock_fanout_read_ring(fds[1], rings[1]);
226
227         fprintf(stderr, "info: count=%d,%d, expect=%d,%d\n",
228                         ret[0], ret[1], expect[0], expect[1]);
229
230         if ((!(ret[0] == expect[0] && ret[1] == expect[1])) &&
231             (!(ret[0] == expect[1] && ret[1] == expect[0]))) {
232                 fprintf(stderr, "ERROR: incorrect queue lengths\n");
233                 return 1;
234         }
235
236         return 0;
237 }
238
239 /* Test illegal mode + flag combination */
240 static void test_control_single(void)
241 {
242         fprintf(stderr, "test: control single socket\n");
243
244         if (sock_fanout_open(PACKET_FANOUT_ROLLOVER |
245                                PACKET_FANOUT_FLAG_ROLLOVER, 0) != -1) {
246                 fprintf(stderr, "ERROR: opened socket with dual rollover\n");
247                 exit(1);
248         }
249 }
250
251 /* Test illegal group with different modes or flags */
252 static void test_control_group(void)
253 {
254         int fds[2];
255
256         fprintf(stderr, "test: control multiple sockets\n");
257
258         fds[0] = sock_fanout_open(PACKET_FANOUT_HASH, 0);
259         if (fds[0] == -1) {
260                 fprintf(stderr, "ERROR: failed to open HASH socket\n");
261                 exit(1);
262         }
263         if (sock_fanout_open(PACKET_FANOUT_HASH |
264                                PACKET_FANOUT_FLAG_DEFRAG, 0) != -1) {
265                 fprintf(stderr, "ERROR: joined group with wrong flag defrag\n");
266                 exit(1);
267         }
268         if (sock_fanout_open(PACKET_FANOUT_HASH |
269                                PACKET_FANOUT_FLAG_ROLLOVER, 0) != -1) {
270                 fprintf(stderr, "ERROR: joined group with wrong flag ro\n");
271                 exit(1);
272         }
273         if (sock_fanout_open(PACKET_FANOUT_CPU, 0) != -1) {
274                 fprintf(stderr, "ERROR: joined group with wrong mode\n");
275                 exit(1);
276         }
277         fds[1] = sock_fanout_open(PACKET_FANOUT_HASH, 0);
278         if (fds[1] == -1) {
279                 fprintf(stderr, "ERROR: failed to join group\n");
280                 exit(1);
281         }
282         if (close(fds[1]) || close(fds[0])) {
283                 fprintf(stderr, "ERROR: closing sockets\n");
284                 exit(1);
285         }
286 }
287
288 /* Test creating a unique fanout group ids */
289 static void test_unique_fanout_group_ids(void)
290 {
291         int fds[3];
292         uint16_t typeflags, first_group_id, second_group_id;
293
294         fprintf(stderr, "test: unique ids\n");
295
296         fds[0] = sock_fanout_open(PACKET_FANOUT_HASH |
297                                   PACKET_FANOUT_FLAG_UNIQUEID, 0);
298         if (fds[0] == -1) {
299                 fprintf(stderr, "ERROR: failed to create a unique id group.\n");
300                 exit(1);
301         }
302
303         sock_fanout_getopts(fds[0], &typeflags, &first_group_id);
304         if (typeflags != PACKET_FANOUT_HASH) {
305                 fprintf(stderr, "ERROR: unexpected typeflags %x\n", typeflags);
306                 exit(1);
307         }
308
309         if (sock_fanout_open(PACKET_FANOUT_CPU, first_group_id) != -1) {
310                 fprintf(stderr, "ERROR: joined group with wrong type.\n");
311                 exit(1);
312         }
313
314         fds[1] = sock_fanout_open(PACKET_FANOUT_HASH, first_group_id);
315         if (fds[1] == -1) {
316                 fprintf(stderr,
317                         "ERROR: failed to join previously created group.\n");
318                 exit(1);
319         }
320
321         fds[2] = sock_fanout_open(PACKET_FANOUT_HASH |
322                                   PACKET_FANOUT_FLAG_UNIQUEID, 0);
323         if (fds[2] == -1) {
324                 fprintf(stderr,
325                         "ERROR: failed to create a second unique id group.\n");
326                 exit(1);
327         }
328
329         sock_fanout_getopts(fds[2], &typeflags, &second_group_id);
330         if (sock_fanout_open(PACKET_FANOUT_HASH | PACKET_FANOUT_FLAG_UNIQUEID,
331                              second_group_id) != -1) {
332                 fprintf(stderr,
333                         "ERROR: specified a group id when requesting unique id\n");
334                 exit(1);
335         }
336
337         if (close(fds[0]) || close(fds[1]) || close(fds[2])) {
338                 fprintf(stderr, "ERROR: closing sockets\n");
339                 exit(1);
340         }
341 }
342
343 static int test_datapath(uint16_t typeflags, int port_off,
344                          const int expect1[], const int expect2[])
345 {
346         const int expect0[] = { 0, 0 };
347         char *rings[2];
348         uint8_t type = typeflags & 0xFF;
349         int fds[2], fds_udp[2][2], ret;
350
351         fprintf(stderr, "test: datapath 0x%hx\n", typeflags);
352
353         fds[0] = sock_fanout_open(typeflags, 0);
354         fds[1] = sock_fanout_open(typeflags, 0);
355         if (fds[0] == -1 || fds[1] == -1) {
356                 fprintf(stderr, "ERROR: failed open\n");
357                 exit(1);
358         }
359         if (type == PACKET_FANOUT_CBPF)
360                 sock_fanout_set_cbpf(fds[0]);
361         else if (type == PACKET_FANOUT_EBPF)
362                 sock_fanout_set_ebpf(fds[0]);
363
364         rings[0] = sock_fanout_open_ring(fds[0]);
365         rings[1] = sock_fanout_open_ring(fds[1]);
366         pair_udp_open(fds_udp[0], PORT_BASE);
367         pair_udp_open(fds_udp[1], PORT_BASE + port_off);
368         sock_fanout_read(fds, rings, expect0);
369
370         /* Send data, but not enough to overflow a queue */
371         pair_udp_send(fds_udp[0], 15);
372         pair_udp_send_char(fds_udp[1], 5, DATA_CHAR_1);
373         ret = sock_fanout_read(fds, rings, expect1);
374
375         /* Send more data, overflow the queue */
376         pair_udp_send_char(fds_udp[0], 15, DATA_CHAR_1);
377         /* TODO: ensure consistent order between expect1 and expect2 */
378         ret |= sock_fanout_read(fds, rings, expect2);
379
380         if (munmap(rings[1], RING_NUM_FRAMES * getpagesize()) ||
381             munmap(rings[0], RING_NUM_FRAMES * getpagesize())) {
382                 fprintf(stderr, "close rings\n");
383                 exit(1);
384         }
385         if (close(fds_udp[1][1]) || close(fds_udp[1][0]) ||
386             close(fds_udp[0][1]) || close(fds_udp[0][0]) ||
387             close(fds[1]) || close(fds[0])) {
388                 fprintf(stderr, "close datapath\n");
389                 exit(1);
390         }
391
392         return ret;
393 }
394
395 static int set_cpuaffinity(int cpuid)
396 {
397         cpu_set_t mask;
398
399         CPU_ZERO(&mask);
400         CPU_SET(cpuid, &mask);
401         if (sched_setaffinity(0, sizeof(mask), &mask)) {
402                 if (errno != EINVAL) {
403                         fprintf(stderr, "setaffinity %d\n", cpuid);
404                         exit(1);
405                 }
406                 return 1;
407         }
408
409         return 0;
410 }
411
412 int main(int argc, char **argv)
413 {
414         const int expect_hash[2][2]     = { { 15, 5 },  { 20, 5 } };
415         const int expect_hash_rb[2][2]  = { { 15, 5 },  { 20, 15 } };
416         const int expect_lb[2][2]       = { { 10, 10 }, { 18, 17 } };
417         const int expect_rb[2][2]       = { { 15, 5 },  { 20, 15 } };
418         const int expect_cpu0[2][2]     = { { 20, 0 },  { 20, 0 } };
419         const int expect_cpu1[2][2]     = { { 0, 20 },  { 0, 20 } };
420         const int expect_bpf[2][2]      = { { 15, 5 },  { 15, 20 } };
421         const int expect_uniqueid[2][2] = { { 20, 20},  { 20, 20 } };
422         int port_off = 2, tries = 5, ret;
423
424         test_control_single();
425         test_control_group();
426         test_unique_fanout_group_ids();
427
428         /* find a set of ports that do not collide onto the same socket */
429         ret = test_datapath(PACKET_FANOUT_HASH, port_off,
430                             expect_hash[0], expect_hash[1]);
431         while (ret && tries--) {
432                 fprintf(stderr, "info: trying alternate ports (%d)\n", tries);
433                 ret = test_datapath(PACKET_FANOUT_HASH, ++port_off,
434                                     expect_hash[0], expect_hash[1]);
435         }
436
437         ret |= test_datapath(PACKET_FANOUT_HASH | PACKET_FANOUT_FLAG_ROLLOVER,
438                              port_off, expect_hash_rb[0], expect_hash_rb[1]);
439         ret |= test_datapath(PACKET_FANOUT_LB,
440                              port_off, expect_lb[0], expect_lb[1]);
441         ret |= test_datapath(PACKET_FANOUT_ROLLOVER,
442                              port_off, expect_rb[0], expect_rb[1]);
443
444         ret |= test_datapath(PACKET_FANOUT_CBPF,
445                              port_off, expect_bpf[0], expect_bpf[1]);
446         ret |= test_datapath(PACKET_FANOUT_EBPF,
447                              port_off, expect_bpf[0], expect_bpf[1]);
448
449         set_cpuaffinity(0);
450         ret |= test_datapath(PACKET_FANOUT_CPU, port_off,
451                              expect_cpu0[0], expect_cpu0[1]);
452         if (!set_cpuaffinity(1))
453                 /* TODO: test that choice alternates with previous */
454                 ret |= test_datapath(PACKET_FANOUT_CPU, port_off,
455                                      expect_cpu1[0], expect_cpu1[1]);
456
457         ret |= test_datapath(PACKET_FANOUT_FLAG_UNIQUEID, port_off,
458                              expect_uniqueid[0], expect_uniqueid[1]);
459
460         if (ret)
461                 return 1;
462
463         printf("OK. All tests passed\n");
464         return 0;
465 }