1 /* Copyright (c) 2016 Facebook
3 * This program is free software; you can redistribute it and/or
4 * modify it under the terms of version 2 of the GNU General Public
5 * License as published by the Free Software Foundation.
10 #include <sys/types.h>
11 #include <asm/unistd.h>
17 #include <linux/bpf.h>
20 #include <sys/resource.h>
21 #include <arpa/inet.h>
27 #define TEST_BIT(t) (1U << (t))
28 #define MAX_NR_CPUS 1024
30 static __u64
time_get_ns(void)
34 clock_gettime(CLOCK_MONOTONIC
, &ts
);
35 return ts
.tv_sec
* 1000000000ull + ts
.tv_nsec
;
44 NOCOMMON_LRU_HASH_PREALLOC
,
48 INNER_LRU_HASH_PREALLOC
,
53 const char *test_map_names
[NR_TESTS
] = {
54 [HASH_PREALLOC
] = "hash_map",
55 [PERCPU_HASH_PREALLOC
] = "percpu_hash_map",
56 [HASH_KMALLOC
] = "hash_map_alloc",
57 [PERCPU_HASH_KMALLOC
] = "percpu_hash_map_alloc",
58 [LRU_HASH_PREALLOC
] = "lru_hash_map",
59 [NOCOMMON_LRU_HASH_PREALLOC
] = "nocommon_lru_hash_map",
60 [LPM_KMALLOC
] = "lpm_trie_map_alloc",
61 [HASH_LOOKUP
] = "hash_map",
62 [ARRAY_LOOKUP
] = "array_map",
63 [INNER_LRU_HASH_PREALLOC
] = "inner_lru_hash_map",
64 [LRU_HASH_LOOKUP
] = "lru_hash_lookup_map",
67 static int test_flags
= ~0;
68 static uint32_t num_map_entries
;
69 static uint32_t inner_lru_hash_size
;
70 static int inner_lru_hash_idx
= -1;
71 static int array_of_lru_hashs_idx
= -1;
72 static int lru_hash_lookup_idx
= -1;
73 static int lru_hash_lookup_test_entries
= 32;
74 static uint32_t max_cnt
= 1000000;
76 static int check_test_flags(enum test_type t
)
78 return test_flags
& TEST_BIT(t
);
81 static void test_hash_prealloc(int cpu
)
86 start_time
= time_get_ns();
87 for (i
= 0; i
< max_cnt
; i
++)
89 printf("%d:hash_map_perf pre-alloc %lld events per sec\n",
90 cpu
, max_cnt
* 1000000000ll / (time_get_ns() - start_time
));
93 static int pre_test_lru_hash_lookup(int tasks
)
95 int fd
= map_fd
[lru_hash_lookup_idx
];
100 if (num_map_entries
> lru_hash_lookup_test_entries
)
101 lru_hash_lookup_test_entries
= num_map_entries
;
103 /* Populate the lru_hash_map for LRU_HASH_LOOKUP perf test.
105 * It is fine that the user requests for a map with
106 * num_map_entries < 32 and some of the later lru hash lookup
107 * may return not found. For LRU map, we are not interested
108 * in such small map performance.
110 for (key
= 0; key
< lru_hash_lookup_test_entries
; key
++) {
111 ret
= bpf_map_update_elem(fd
, &key
, &val
, BPF_NOEXIST
);
119 static void do_test_lru(enum test_type test
, int cpu
)
121 static int inner_lru_map_fds
[MAX_NR_CPUS
];
123 struct sockaddr_in6 in6
= { .sin6_family
= AF_INET6
};
124 const char *test_name
;
128 if (test
== INNER_LRU_HASH_PREALLOC
) {
129 int outer_fd
= map_fd
[array_of_lru_hashs_idx
];
130 unsigned int mycpu
, mynode
;
132 assert(cpu
< MAX_NR_CPUS
);
135 ret
= syscall(__NR_getcpu
, &mycpu
, &mynode
, NULL
);
138 inner_lru_map_fds
[cpu
] =
139 bpf_create_map_node(BPF_MAP_TYPE_LRU_HASH
,
140 test_map_names
[INNER_LRU_HASH_PREALLOC
],
143 inner_lru_hash_size
, 0,
145 if (inner_lru_map_fds
[cpu
] == -1) {
146 printf("cannot create BPF_MAP_TYPE_LRU_HASH %s(%d)\n",
147 strerror(errno
), errno
);
151 inner_lru_map_fds
[cpu
] = map_fd
[inner_lru_hash_idx
];
154 ret
= bpf_map_update_elem(outer_fd
, &cpu
,
155 &inner_lru_map_fds
[cpu
],
158 printf("cannot update ARRAY_OF_LRU_HASHS with key:%u. %s(%d)\n",
159 cpu
, strerror(errno
), errno
);
164 in6
.sin6_addr
.s6_addr16
[0] = 0xdead;
165 in6
.sin6_addr
.s6_addr16
[1] = 0xbeef;
167 if (test
== LRU_HASH_PREALLOC
) {
168 test_name
= "lru_hash_map_perf";
169 in6
.sin6_addr
.s6_addr16
[2] = 0;
170 } else if (test
== NOCOMMON_LRU_HASH_PREALLOC
) {
171 test_name
= "nocommon_lru_hash_map_perf";
172 in6
.sin6_addr
.s6_addr16
[2] = 1;
173 } else if (test
== INNER_LRU_HASH_PREALLOC
) {
174 test_name
= "inner_lru_hash_map_perf";
175 in6
.sin6_addr
.s6_addr16
[2] = 2;
176 } else if (test
== LRU_HASH_LOOKUP
) {
177 test_name
= "lru_hash_lookup_perf";
178 in6
.sin6_addr
.s6_addr16
[2] = 3;
179 in6
.sin6_addr
.s6_addr32
[3] = 0;
184 start_time
= time_get_ns();
185 for (i
= 0; i
< max_cnt
; i
++) {
186 ret
= connect(-1, (const struct sockaddr
*)&in6
, sizeof(in6
));
187 assert(ret
== -1 && errno
== EBADF
);
188 if (in6
.sin6_addr
.s6_addr32
[3] <
189 lru_hash_lookup_test_entries
- 32)
190 in6
.sin6_addr
.s6_addr32
[3] += 32;
192 in6
.sin6_addr
.s6_addr32
[3] = 0;
194 printf("%d:%s pre-alloc %lld events per sec\n",
196 max_cnt
* 1000000000ll / (time_get_ns() - start_time
));
199 static void test_lru_hash_prealloc(int cpu
)
201 do_test_lru(LRU_HASH_PREALLOC
, cpu
);
204 static void test_nocommon_lru_hash_prealloc(int cpu
)
206 do_test_lru(NOCOMMON_LRU_HASH_PREALLOC
, cpu
);
209 static void test_inner_lru_hash_prealloc(int cpu
)
211 do_test_lru(INNER_LRU_HASH_PREALLOC
, cpu
);
214 static void test_lru_hash_lookup(int cpu
)
216 do_test_lru(LRU_HASH_LOOKUP
, cpu
);
219 static void test_percpu_hash_prealloc(int cpu
)
224 start_time
= time_get_ns();
225 for (i
= 0; i
< max_cnt
; i
++)
226 syscall(__NR_geteuid
);
227 printf("%d:percpu_hash_map_perf pre-alloc %lld events per sec\n",
228 cpu
, max_cnt
* 1000000000ll / (time_get_ns() - start_time
));
231 static void test_hash_kmalloc(int cpu
)
236 start_time
= time_get_ns();
237 for (i
= 0; i
< max_cnt
; i
++)
238 syscall(__NR_getgid
);
239 printf("%d:hash_map_perf kmalloc %lld events per sec\n",
240 cpu
, max_cnt
* 1000000000ll / (time_get_ns() - start_time
));
243 static void test_percpu_hash_kmalloc(int cpu
)
248 start_time
= time_get_ns();
249 for (i
= 0; i
< max_cnt
; i
++)
250 syscall(__NR_getegid
);
251 printf("%d:percpu_hash_map_perf kmalloc %lld events per sec\n",
252 cpu
, max_cnt
* 1000000000ll / (time_get_ns() - start_time
));
255 static void test_lpm_kmalloc(int cpu
)
260 start_time
= time_get_ns();
261 for (i
= 0; i
< max_cnt
; i
++)
262 syscall(__NR_gettid
);
263 printf("%d:lpm_perf kmalloc %lld events per sec\n",
264 cpu
, max_cnt
* 1000000000ll / (time_get_ns() - start_time
));
267 static void test_hash_lookup(int cpu
)
272 start_time
= time_get_ns();
273 for (i
= 0; i
< max_cnt
; i
++)
274 syscall(__NR_getpgid
, 0);
275 printf("%d:hash_lookup %lld lookups per sec\n",
276 cpu
, max_cnt
* 1000000000ll * 64 / (time_get_ns() - start_time
));
279 static void test_array_lookup(int cpu
)
284 start_time
= time_get_ns();
285 for (i
= 0; i
< max_cnt
; i
++)
286 syscall(__NR_getppid
, 0);
287 printf("%d:array_lookup %lld lookups per sec\n",
288 cpu
, max_cnt
* 1000000000ll * 64 / (time_get_ns() - start_time
));
291 typedef int (*pre_test_func
)(int tasks
);
292 const pre_test_func pre_test_funcs
[] = {
293 [LRU_HASH_LOOKUP
] = pre_test_lru_hash_lookup
,
296 typedef void (*test_func
)(int cpu
);
297 const test_func test_funcs
[] = {
298 [HASH_PREALLOC
] = test_hash_prealloc
,
299 [PERCPU_HASH_PREALLOC
] = test_percpu_hash_prealloc
,
300 [HASH_KMALLOC
] = test_hash_kmalloc
,
301 [PERCPU_HASH_KMALLOC
] = test_percpu_hash_kmalloc
,
302 [LRU_HASH_PREALLOC
] = test_lru_hash_prealloc
,
303 [NOCOMMON_LRU_HASH_PREALLOC
] = test_nocommon_lru_hash_prealloc
,
304 [LPM_KMALLOC
] = test_lpm_kmalloc
,
305 [HASH_LOOKUP
] = test_hash_lookup
,
306 [ARRAY_LOOKUP
] = test_array_lookup
,
307 [INNER_LRU_HASH_PREALLOC
] = test_inner_lru_hash_prealloc
,
308 [LRU_HASH_LOOKUP
] = test_lru_hash_lookup
,
311 static int pre_test(int tasks
)
315 for (i
= 0; i
< NR_TESTS
; i
++) {
316 if (pre_test_funcs
[i
] && check_test_flags(i
)) {
317 int ret
= pre_test_funcs
[i
](tasks
);
327 static void loop(int cpu
)
333 CPU_SET(cpu
, &cpuset
);
334 sched_setaffinity(0, sizeof(cpuset
), &cpuset
);
336 for (i
= 0; i
< NR_TESTS
; i
++) {
337 if (check_test_flags(i
))
342 static void run_perf_test(int tasks
)
347 assert(!pre_test(tasks
));
349 for (i
= 0; i
< tasks
; i
++) {
354 } else if (pid
[i
] == -1) {
355 printf("couldn't spawn #%d process\n", i
);
359 for (i
= 0; i
< tasks
; i
++) {
362 assert(waitpid(pid
[i
], &status
, 0) == pid
[i
]);
367 static void fill_lpm_trie(void)
369 struct bpf_lpm_trie_key
*key
;
370 unsigned long value
= 0;
374 key
= alloca(sizeof(*key
) + 4);
377 for (i
= 0; i
< 512; ++i
) {
378 key
->prefixlen
= rand() % 33;
379 key
->data
[0] = rand() & 0xff;
380 key
->data
[1] = rand() & 0xff;
381 key
->data
[2] = rand() & 0xff;
382 key
->data
[3] = rand() & 0xff;
383 r
= bpf_map_update_elem(map_fd
[6], key
, &value
, 0);
394 r
= bpf_map_update_elem(map_fd
[6], key
, &value
, 0);
398 static void fixup_map(struct bpf_map_data
*map
, int idx
)
402 if (!strcmp("inner_lru_hash_map", map
->name
)) {
403 inner_lru_hash_idx
= idx
;
404 inner_lru_hash_size
= map
->def
.max_entries
;
407 if (!strcmp("array_of_lru_hashs", map
->name
)) {
408 if (inner_lru_hash_idx
== -1) {
409 printf("inner_lru_hash_map must be defined before array_of_lru_hashs\n");
412 map
->def
.inner_map_idx
= inner_lru_hash_idx
;
413 array_of_lru_hashs_idx
= idx
;
416 if (!strcmp("lru_hash_lookup_map", map
->name
))
417 lru_hash_lookup_idx
= idx
;
419 if (num_map_entries
<= 0)
422 inner_lru_hash_size
= num_map_entries
;
424 /* Only change the max_entries for the enabled test(s) */
425 for (i
= 0; i
< NR_TESTS
; i
++) {
426 if (!strcmp(test_map_names
[i
], map
->name
) &&
427 (check_test_flags(i
))) {
428 map
->def
.max_entries
= num_map_entries
;
433 int main(int argc
, char **argv
)
435 struct rlimit r
= {RLIM_INFINITY
, RLIM_INFINITY
};
439 snprintf(filename
, sizeof(filename
), "%s_kern.o", argv
[0]);
440 setrlimit(RLIMIT_MEMLOCK
, &r
);
443 test_flags
= atoi(argv
[1]) ? : test_flags
;
446 num_cpu
= atoi(argv
[2]) ? : num_cpu
;
449 num_map_entries
= atoi(argv
[3]);
452 max_cnt
= atoi(argv
[4]);
454 if (load_bpf_file_fixup_map(filename
, fixup_map
)) {
455 printf("%s", bpf_log_buf
);
461 run_perf_test(num_cpu
);