Linux Audio

Check our new training course

Loading...
v6.13.7
  1// SPDX-License-Identifier: GPL-2.0-only
  2/*
  3 * Copyright (c) 2016 Facebook
 
 
 
 
  4 */
  5#define _GNU_SOURCE
  6#include <linux/types.h>
  7#include <stdio.h>
  8#include <unistd.h>
  9#include <linux/bpf.h>
 10#include <errno.h>
 11#include <string.h>
 12#include <assert.h>
 13#include <sched.h>
 14#include <sys/wait.h>
 15#include <sys/stat.h>
 
 16#include <fcntl.h>
 17#include <stdlib.h>
 18#include <time.h>
 19
 20#include <bpf/bpf.h>
 21#include "bpf_util.h"
 22
 23#define min(a, b) ((a) < (b) ? (a) : (b))
 24#ifndef offsetof
 25# define offsetof(TYPE, MEMBER)	((size_t)&((TYPE *)0)->MEMBER)
 26#endif
 27#define container_of(ptr, type, member) ({			\
 28	const typeof( ((type *)0)->member ) *__mptr = (ptr);	\
 29	(type *)( (char *)__mptr - offsetof(type,member) );})
 30
 31static int nr_cpus;
 32static unsigned long long *dist_keys;
 33static unsigned int dist_key_counts;
 34
 35struct list_head {
 36	struct list_head *next, *prev;
 37};
 38
 39static inline void INIT_LIST_HEAD(struct list_head *list)
 40{
 41	list->next = list;
 42	list->prev = list;
 43}
 44
 
 
 
 
 
 45static inline void __list_add(struct list_head *new,
 46			      struct list_head *prev,
 47			      struct list_head *next)
 48{
 49	next->prev = new;
 50	new->next = next;
 51	new->prev = prev;
 52	prev->next = new;
 53}
 54
 55static inline void list_add(struct list_head *new, struct list_head *head)
 56{
 57	__list_add(new, head, head->next);
 58}
 59
 60static inline void __list_del(struct list_head *prev, struct list_head *next)
 61{
 62	next->prev = prev;
 63	prev->next = next;
 64}
 65
 66static inline void __list_del_entry(struct list_head *entry)
 67{
 68	__list_del(entry->prev, entry->next);
 69}
 70
 71static inline void list_move(struct list_head *list, struct list_head *head)
 72{
 73	__list_del_entry(list);
 74	list_add(list, head);
 75}
 76
 77#define list_entry(ptr, type, member) \
 78	container_of(ptr, type, member)
 79
 80#define list_last_entry(ptr, type, member) \
 81	list_entry((ptr)->prev, type, member)
 82
 83struct pfect_lru_node {
 84	struct list_head list;
 85	unsigned long long key;
 86};
 87
 88struct pfect_lru {
 89	struct list_head list;
 90	struct pfect_lru_node *free_nodes;
 91	unsigned int cur_size;
 92	unsigned int lru_size;
 93	unsigned int nr_unique;
 94	unsigned int nr_misses;
 95	unsigned int total;
 96	int map_fd;
 97};
 98
 99static void pfect_lru_init(struct pfect_lru *lru, unsigned int lru_size,
100			   unsigned int nr_possible_elems)
101{
102	lru->map_fd = bpf_map_create(BPF_MAP_TYPE_HASH, NULL,
103				     sizeof(unsigned long long),
104				     sizeof(struct pfect_lru_node *),
105				     nr_possible_elems, NULL);
106	assert(lru->map_fd != -1);
107
108	lru->free_nodes = malloc(lru_size * sizeof(struct pfect_lru_node));
109	assert(lru->free_nodes);
110
111	INIT_LIST_HEAD(&lru->list);
112	lru->cur_size = 0;
113	lru->lru_size = lru_size;
114	lru->nr_unique = lru->nr_misses = lru->total = 0;
115}
116
117static void pfect_lru_destroy(struct pfect_lru *lru)
118{
119	close(lru->map_fd);
120	free(lru->free_nodes);
121}
122
123static int pfect_lru_lookup_or_insert(struct pfect_lru *lru,
124				      unsigned long long key)
125{
126	struct pfect_lru_node *node = NULL;
127	int seen = 0;
128
129	lru->total++;
130	if (!bpf_map_lookup_elem(lru->map_fd, &key, &node)) {
131		if (node) {
132			list_move(&node->list, &lru->list);
133			return 1;
134		}
135		seen = 1;
136	}
137
138	if (lru->cur_size < lru->lru_size) {
139		node =  &lru->free_nodes[lru->cur_size++];
140		INIT_LIST_HEAD(&node->list);
141	} else {
142		struct pfect_lru_node *null_node = NULL;
143
144		node = list_last_entry(&lru->list,
145				       struct pfect_lru_node,
146				       list);
147		bpf_map_update_elem(lru->map_fd, &node->key, &null_node, BPF_EXIST);
148	}
149
150	node->key = key;
151	list_move(&node->list, &lru->list);
152
153	lru->nr_misses++;
154	if (seen) {
155		assert(!bpf_map_update_elem(lru->map_fd, &key, &node, BPF_EXIST));
156	} else {
157		lru->nr_unique++;
158		assert(!bpf_map_update_elem(lru->map_fd, &key, &node, BPF_NOEXIST));
159	}
160
161	return seen;
162}
163
164static unsigned int read_keys(const char *dist_file,
165			      unsigned long long **keys)
166{
167	struct stat fst;
168	unsigned long long *retkeys;
169	unsigned int counts = 0;
170	int dist_fd;
171	char *b, *l;
172	int i;
173
174	dist_fd = open(dist_file, 0);
175	assert(dist_fd != -1);
176
177	assert(fstat(dist_fd, &fst) == 0);
178	b = malloc(fst.st_size);
179	assert(b);
180
181	assert(read(dist_fd, b, fst.st_size) == fst.st_size);
182	close(dist_fd);
183	for (i = 0; i < fst.st_size; i++) {
184		if (b[i] == '\n')
185			counts++;
186	}
187	counts++; /* in case the last line has no \n */
188
189	retkeys = malloc(counts * sizeof(unsigned long long));
190	assert(retkeys);
191
192	counts = 0;
193	for (l = strtok(b, "\n"); l; l = strtok(NULL, "\n"))
194		retkeys[counts++] = strtoull(l, NULL, 10);
195	free(b);
196
197	*keys = retkeys;
198
199	return counts;
200}
201
202static int create_map(int map_type, int map_flags, unsigned int size)
203{
204	LIBBPF_OPTS(bpf_map_create_opts, opts,
205		.map_flags = map_flags,
206	);
207	int map_fd;
208
209	map_fd = bpf_map_create(map_type, NULL, sizeof(unsigned long long),
210				sizeof(unsigned long long), size, &opts);
211
212	if (map_fd == -1)
213		perror("bpf_create_map");
214
215	return map_fd;
216}
217
218static int sched_next_online(int pid, int next_to_try)
219{
220	cpu_set_t cpuset;
221
222	if (next_to_try == nr_cpus)
223		return -1;
224
225	while (next_to_try < nr_cpus) {
226		CPU_ZERO(&cpuset);
227		CPU_SET(next_to_try++, &cpuset);
228		if (!sched_setaffinity(pid, sizeof(cpuset), &cpuset))
229			break;
230	}
231
232	return next_to_try;
233}
234
235static void run_parallel(unsigned int tasks, void (*fn)(int i, void *data),
236			 void *data)
237{
238	int next_sched_cpu = 0;
239	pid_t pid[tasks];
240	int i;
241
242	for (i = 0; i < tasks; i++) {
243		pid[i] = fork();
244		if (pid[i] == 0) {
245			next_sched_cpu = sched_next_online(0, next_sched_cpu);
246			fn(i, data);
247			exit(0);
248		} else if (pid[i] == -1) {
249			printf("couldn't spawn #%d process\n", i);
250			exit(1);
251		}
252		/* It is mostly redundant and just allow the parent
253		 * process to update next_shced_cpu for the next child
254		 * process
255		 */
256		next_sched_cpu = sched_next_online(pid[i], next_sched_cpu);
257	}
258	for (i = 0; i < tasks; i++) {
259		int status;
260
261		assert(waitpid(pid[i], &status, 0) == pid[i]);
262		assert(status == 0);
263	}
264}
265
266static void do_test_lru_dist(int task, void *data)
267{
268	unsigned int nr_misses = 0;
269	struct pfect_lru pfect_lru;
270	unsigned long long key, value = 1234;
271	unsigned int i;
272
273	unsigned int lru_map_fd = ((unsigned int *)data)[0];
274	unsigned int lru_size = ((unsigned int *)data)[1];
275	unsigned long long key_offset = task * dist_key_counts;
276
277	pfect_lru_init(&pfect_lru, lru_size, dist_key_counts);
278
279	for (i = 0; i < dist_key_counts; i++) {
280		key = dist_keys[i] + key_offset;
281
282		pfect_lru_lookup_or_insert(&pfect_lru, key);
283
284		if (!bpf_map_lookup_elem(lru_map_fd, &key, &value))
285			continue;
286
287		if (bpf_map_update_elem(lru_map_fd, &key, &value, BPF_NOEXIST)) {
288			printf("bpf_map_update_elem(lru_map_fd, %llu): errno:%d\n",
289			       key, errno);
290			assert(0);
291		}
292
293		nr_misses++;
294	}
295
296	printf("    task:%d BPF LRU: nr_unique:%u(/%u) nr_misses:%u(/%u)\n",
297	       task, pfect_lru.nr_unique, dist_key_counts, nr_misses,
298	       dist_key_counts);
299	printf("    task:%d Perfect LRU: nr_unique:%u(/%u) nr_misses:%u(/%u)\n",
300	       task, pfect_lru.nr_unique, pfect_lru.total,
301	       pfect_lru.nr_misses, pfect_lru.total);
302
303	pfect_lru_destroy(&pfect_lru);
304	close(lru_map_fd);
305}
306
307static void test_parallel_lru_dist(int map_type, int map_flags,
308				   int nr_tasks, unsigned int lru_size)
309{
310	int child_data[2];
311	int lru_map_fd;
312
313	printf("%s (map_type:%d map_flags:0x%X):\n", __func__, map_type,
314	       map_flags);
315
316	if (map_flags & BPF_F_NO_COMMON_LRU)
317		lru_map_fd = create_map(map_type, map_flags,
318					nr_cpus * lru_size);
319	else
320		lru_map_fd = create_map(map_type, map_flags,
321					nr_tasks * lru_size);
322	assert(lru_map_fd != -1);
323
324	child_data[0] = lru_map_fd;
325	child_data[1] = lru_size;
326
327	run_parallel(nr_tasks, do_test_lru_dist, child_data);
328
329	close(lru_map_fd);
330}
331
332static void test_lru_loss0(int map_type, int map_flags)
333{
334	unsigned long long key, value[nr_cpus];
335	unsigned int old_unused_losses = 0;
336	unsigned int new_unused_losses = 0;
337	unsigned int used_losses = 0;
338	int map_fd;
339
340	printf("%s (map_type:%d map_flags:0x%X): ", __func__, map_type,
341	       map_flags);
342
343	assert(sched_next_online(0, 0) != -1);
344
345	if (map_flags & BPF_F_NO_COMMON_LRU)
346		map_fd = create_map(map_type, map_flags, 900 * nr_cpus);
347	else
348		map_fd = create_map(map_type, map_flags, 900);
349
350	assert(map_fd != -1);
351
352	value[0] = 1234;
353
354	for (key = 1; key <= 1000; key++) {
355		int start_key, end_key;
356
357		assert(bpf_map_update_elem(map_fd, &key, value, BPF_NOEXIST) == 0);
358
359		start_key = 101;
360		end_key = min(key, 900);
361
362		while (start_key <= end_key) {
363			bpf_map_lookup_elem(map_fd, &start_key, value);
364			start_key++;
365		}
366	}
367
368	for (key = 1; key <= 1000; key++) {
369		if (bpf_map_lookup_elem(map_fd, &key, value)) {
370			if (key <= 100)
371				old_unused_losses++;
372			else if (key <= 900)
373				used_losses++;
374			else
375				new_unused_losses++;
376		}
377	}
378
379	close(map_fd);
380
381	printf("older-elem-losses:%d(/100) active-elem-losses:%d(/800) "
382	       "newer-elem-losses:%d(/100)\n",
383	       old_unused_losses, used_losses, new_unused_losses);
384}
385
386static void test_lru_loss1(int map_type, int map_flags)
387{
388	unsigned long long key, value[nr_cpus];
389	int map_fd;
390	unsigned int nr_losses = 0;
391
392	printf("%s (map_type:%d map_flags:0x%X): ", __func__, map_type,
393	       map_flags);
394
395	assert(sched_next_online(0, 0) != -1);
396
397	if (map_flags & BPF_F_NO_COMMON_LRU)
398		map_fd = create_map(map_type, map_flags, 1000 * nr_cpus);
399	else
400		map_fd = create_map(map_type, map_flags, 1000);
401
402	assert(map_fd != -1);
403
404	value[0] = 1234;
405
406	for (key = 1; key <= 1000; key++)
407		assert(!bpf_map_update_elem(map_fd, &key, value, BPF_NOEXIST));
408
409	for (key = 1; key <= 1000; key++) {
410		if (bpf_map_lookup_elem(map_fd, &key, value))
411			nr_losses++;
412	}
413
414	close(map_fd);
415
416	printf("nr_losses:%d(/1000)\n", nr_losses);
417}
418
419static void do_test_parallel_lru_loss(int task, void *data)
420{
421	const unsigned int nr_stable_elems = 1000;
422	const unsigned int nr_repeats = 100000;
423
424	int map_fd = *(int *)data;
425	unsigned long long stable_base;
426	unsigned long long key, value[nr_cpus];
427	unsigned long long next_ins_key;
428	unsigned int nr_losses = 0;
429	unsigned int i;
430
431	stable_base = task * nr_repeats * 2 + 1;
432	next_ins_key = stable_base;
433	value[0] = 1234;
434	for (i = 0; i < nr_stable_elems; i++) {
435		assert(bpf_map_update_elem(map_fd, &next_ins_key, value,
436				       BPF_NOEXIST) == 0);
437		next_ins_key++;
438	}
439
440	for (i = 0; i < nr_repeats; i++) {
441		int rn;
442
443		rn = rand();
444
445		if (rn % 10) {
446			key = rn % nr_stable_elems + stable_base;
447			bpf_map_lookup_elem(map_fd, &key, value);
448		} else {
449			bpf_map_update_elem(map_fd, &next_ins_key, value,
450					BPF_NOEXIST);
451			next_ins_key++;
452		}
453	}
454
455	key = stable_base;
456	for (i = 0; i < nr_stable_elems; i++) {
457		if (bpf_map_lookup_elem(map_fd, &key, value))
458			nr_losses++;
459		key++;
460	}
461
462	printf("    task:%d nr_losses:%u\n", task, nr_losses);
463}
464
465static void test_parallel_lru_loss(int map_type, int map_flags, int nr_tasks)
466{
467	int map_fd;
468
469	printf("%s (map_type:%d map_flags:0x%X):\n", __func__, map_type,
470	       map_flags);
471
472	/* Give 20% more than the active working set */
473	if (map_flags & BPF_F_NO_COMMON_LRU)
474		map_fd = create_map(map_type, map_flags,
475				    nr_cpus * (1000 + 200));
476	else
477		map_fd = create_map(map_type, map_flags,
478				    nr_tasks * (1000 + 200));
479
480	assert(map_fd != -1);
481
482	run_parallel(nr_tasks, do_test_parallel_lru_loss, &map_fd);
483
484	close(map_fd);
485}
486
487int main(int argc, char **argv)
488{
 
489	int map_flags[] = {0, BPF_F_NO_COMMON_LRU};
490	const char *dist_file;
491	int nr_tasks = 1;
492	int lru_size;
493	int f;
494
495	if (argc < 4) {
496		printf("Usage: %s <dist-file> <lru-size> <nr-tasks>\n",
497		       argv[0]);
498		return -1;
499	}
500
501	dist_file = argv[1];
502	lru_size = atoi(argv[2]);
503	nr_tasks = atoi(argv[3]);
504
505	setbuf(stdout, NULL);
506
 
 
507	srand(time(NULL));
508
509	nr_cpus = bpf_num_possible_cpus();
510	assert(nr_cpus != -1);
511	printf("nr_cpus:%d\n\n", nr_cpus);
512
513	nr_tasks = min(nr_tasks, nr_cpus);
514
515	dist_key_counts = read_keys(dist_file, &dist_keys);
516	if (!dist_key_counts) {
517		printf("%s has no key\n", dist_file);
518		return -1;
519	}
520
521	for (f = 0; f < ARRAY_SIZE(map_flags); f++) {
522		test_lru_loss0(BPF_MAP_TYPE_LRU_HASH, map_flags[f]);
523		test_lru_loss1(BPF_MAP_TYPE_LRU_HASH, map_flags[f]);
524		test_parallel_lru_loss(BPF_MAP_TYPE_LRU_HASH, map_flags[f],
525				       nr_tasks);
526		test_parallel_lru_dist(BPF_MAP_TYPE_LRU_HASH, map_flags[f],
527				       nr_tasks, lru_size);
528		printf("\n");
529	}
530
531	free(dist_keys);
532
533	return 0;
534}
v4.17
 
  1/*
  2 * Copyright (c) 2016 Facebook
  3 *
  4 * This program is free software; you can redistribute it and/or
  5 * modify it under the terms of version 2 of the GNU General Public
  6 * License as published by the Free Software Foundation.
  7 */
  8#define _GNU_SOURCE
  9#include <linux/types.h>
 10#include <stdio.h>
 11#include <unistd.h>
 12#include <linux/bpf.h>
 13#include <errno.h>
 14#include <string.h>
 15#include <assert.h>
 16#include <sched.h>
 17#include <sys/wait.h>
 18#include <sys/stat.h>
 19#include <sys/resource.h>
 20#include <fcntl.h>
 21#include <stdlib.h>
 22#include <time.h>
 23
 24#include "libbpf.h"
 25#include "bpf_util.h"
 26
 27#define min(a, b) ((a) < (b) ? (a) : (b))
 28#ifndef offsetof
 29# define offsetof(TYPE, MEMBER)	((size_t)&((TYPE *)0)->MEMBER)
 30#endif
 31#define container_of(ptr, type, member) ({			\
 32	const typeof( ((type *)0)->member ) *__mptr = (ptr);	\
 33	(type *)( (char *)__mptr - offsetof(type,member) );})
 34
 35static int nr_cpus;
 36static unsigned long long *dist_keys;
 37static unsigned int dist_key_counts;
 38
 39struct list_head {
 40	struct list_head *next, *prev;
 41};
 42
 43static inline void INIT_LIST_HEAD(struct list_head *list)
 44{
 45	list->next = list;
 46	list->prev = list;
 47}
 48
 49static inline int list_empty(const struct list_head *head)
 50{
 51	return head->next == head;
 52}
 53
 54static inline void __list_add(struct list_head *new,
 55			      struct list_head *prev,
 56			      struct list_head *next)
 57{
 58	next->prev = new;
 59	new->next = next;
 60	new->prev = prev;
 61	prev->next = new;
 62}
 63
 64static inline void list_add(struct list_head *new, struct list_head *head)
 65{
 66	__list_add(new, head, head->next);
 67}
 68
 69static inline void __list_del(struct list_head *prev, struct list_head *next)
 70{
 71	next->prev = prev;
 72	prev->next = next;
 73}
 74
 75static inline void __list_del_entry(struct list_head *entry)
 76{
 77	__list_del(entry->prev, entry->next);
 78}
 79
 80static inline void list_move(struct list_head *list, struct list_head *head)
 81{
 82	__list_del_entry(list);
 83	list_add(list, head);
 84}
 85
 86#define list_entry(ptr, type, member) \
 87	container_of(ptr, type, member)
 88
 89#define list_last_entry(ptr, type, member) \
 90	list_entry((ptr)->prev, type, member)
 91
 92struct pfect_lru_node {
 93	struct list_head list;
 94	unsigned long long key;
 95};
 96
 97struct pfect_lru {
 98	struct list_head list;
 99	struct pfect_lru_node *free_nodes;
100	unsigned int cur_size;
101	unsigned int lru_size;
102	unsigned int nr_unique;
103	unsigned int nr_misses;
104	unsigned int total;
105	int map_fd;
106};
107
108static void pfect_lru_init(struct pfect_lru *lru, unsigned int lru_size,
109			   unsigned int nr_possible_elems)
110{
111	lru->map_fd = bpf_create_map(BPF_MAP_TYPE_HASH,
112				     sizeof(unsigned long long),
113				     sizeof(struct pfect_lru_node *),
114				     nr_possible_elems, 0);
115	assert(lru->map_fd != -1);
116
117	lru->free_nodes = malloc(lru_size * sizeof(struct pfect_lru_node));
118	assert(lru->free_nodes);
119
120	INIT_LIST_HEAD(&lru->list);
121	lru->cur_size = 0;
122	lru->lru_size = lru_size;
123	lru->nr_unique = lru->nr_misses = lru->total = 0;
124}
125
126static void pfect_lru_destroy(struct pfect_lru *lru)
127{
128	close(lru->map_fd);
129	free(lru->free_nodes);
130}
131
132static int pfect_lru_lookup_or_insert(struct pfect_lru *lru,
133				      unsigned long long key)
134{
135	struct pfect_lru_node *node = NULL;
136	int seen = 0;
137
138	lru->total++;
139	if (!bpf_map_lookup_elem(lru->map_fd, &key, &node)) {
140		if (node) {
141			list_move(&node->list, &lru->list);
142			return 1;
143		}
144		seen = 1;
145	}
146
147	if (lru->cur_size < lru->lru_size) {
148		node =  &lru->free_nodes[lru->cur_size++];
149		INIT_LIST_HEAD(&node->list);
150	} else {
151		struct pfect_lru_node *null_node = NULL;
152
153		node = list_last_entry(&lru->list,
154				       struct pfect_lru_node,
155				       list);
156		bpf_map_update_elem(lru->map_fd, &node->key, &null_node, BPF_EXIST);
157	}
158
159	node->key = key;
160	list_move(&node->list, &lru->list);
161
162	lru->nr_misses++;
163	if (seen) {
164		assert(!bpf_map_update_elem(lru->map_fd, &key, &node, BPF_EXIST));
165	} else {
166		lru->nr_unique++;
167		assert(!bpf_map_update_elem(lru->map_fd, &key, &node, BPF_NOEXIST));
168	}
169
170	return seen;
171}
172
173static unsigned int read_keys(const char *dist_file,
174			      unsigned long long **keys)
175{
176	struct stat fst;
177	unsigned long long *retkeys;
178	unsigned int counts = 0;
179	int dist_fd;
180	char *b, *l;
181	int i;
182
183	dist_fd = open(dist_file, 0);
184	assert(dist_fd != -1);
185
186	assert(fstat(dist_fd, &fst) == 0);
187	b = malloc(fst.st_size);
188	assert(b);
189
190	assert(read(dist_fd, b, fst.st_size) == fst.st_size);
191	close(dist_fd);
192	for (i = 0; i < fst.st_size; i++) {
193		if (b[i] == '\n')
194			counts++;
195	}
196	counts++; /* in case the last line has no \n */
197
198	retkeys = malloc(counts * sizeof(unsigned long long));
199	assert(retkeys);
200
201	counts = 0;
202	for (l = strtok(b, "\n"); l; l = strtok(NULL, "\n"))
203		retkeys[counts++] = strtoull(l, NULL, 10);
204	free(b);
205
206	*keys = retkeys;
207
208	return counts;
209}
210
211static int create_map(int map_type, int map_flags, unsigned int size)
212{
 
 
 
213	int map_fd;
214
215	map_fd = bpf_create_map(map_type, sizeof(unsigned long long),
216				sizeof(unsigned long long), size, map_flags);
217
218	if (map_fd == -1)
219		perror("bpf_create_map");
220
221	return map_fd;
222}
223
224static int sched_next_online(int pid, int next_to_try)
225{
226	cpu_set_t cpuset;
227
228	if (next_to_try == nr_cpus)
229		return -1;
230
231	while (next_to_try < nr_cpus) {
232		CPU_ZERO(&cpuset);
233		CPU_SET(next_to_try++, &cpuset);
234		if (!sched_setaffinity(pid, sizeof(cpuset), &cpuset))
235			break;
236	}
237
238	return next_to_try;
239}
240
241static void run_parallel(unsigned int tasks, void (*fn)(int i, void *data),
242			 void *data)
243{
244	int next_sched_cpu = 0;
245	pid_t pid[tasks];
246	int i;
247
248	for (i = 0; i < tasks; i++) {
249		pid[i] = fork();
250		if (pid[i] == 0) {
251			next_sched_cpu = sched_next_online(0, next_sched_cpu);
252			fn(i, data);
253			exit(0);
254		} else if (pid[i] == -1) {
255			printf("couldn't spawn #%d process\n", i);
256			exit(1);
257		}
258		/* It is mostly redundant and just allow the parent
259		 * process to update next_shced_cpu for the next child
260		 * process
261		 */
262		next_sched_cpu = sched_next_online(pid[i], next_sched_cpu);
263	}
264	for (i = 0; i < tasks; i++) {
265		int status;
266
267		assert(waitpid(pid[i], &status, 0) == pid[i]);
268		assert(status == 0);
269	}
270}
271
272static void do_test_lru_dist(int task, void *data)
273{
274	unsigned int nr_misses = 0;
275	struct pfect_lru pfect_lru;
276	unsigned long long key, value = 1234;
277	unsigned int i;
278
279	unsigned int lru_map_fd = ((unsigned int *)data)[0];
280	unsigned int lru_size = ((unsigned int *)data)[1];
281	unsigned long long key_offset = task * dist_key_counts;
282
283	pfect_lru_init(&pfect_lru, lru_size, dist_key_counts);
284
285	for (i = 0; i < dist_key_counts; i++) {
286		key = dist_keys[i] + key_offset;
287
288		pfect_lru_lookup_or_insert(&pfect_lru, key);
289
290		if (!bpf_map_lookup_elem(lru_map_fd, &key, &value))
291			continue;
292
293		if (bpf_map_update_elem(lru_map_fd, &key, &value, BPF_NOEXIST)) {
294			printf("bpf_map_update_elem(lru_map_fd, %llu): errno:%d\n",
295			       key, errno);
296			assert(0);
297		}
298
299		nr_misses++;
300	}
301
302	printf("    task:%d BPF LRU: nr_unique:%u(/%u) nr_misses:%u(/%u)\n",
303	       task, pfect_lru.nr_unique, dist_key_counts, nr_misses,
304	       dist_key_counts);
305	printf("    task:%d Perfect LRU: nr_unique:%u(/%u) nr_misses:%u(/%u)\n",
306	       task, pfect_lru.nr_unique, pfect_lru.total,
307	       pfect_lru.nr_misses, pfect_lru.total);
308
309	pfect_lru_destroy(&pfect_lru);
310	close(lru_map_fd);
311}
312
313static void test_parallel_lru_dist(int map_type, int map_flags,
314				   int nr_tasks, unsigned int lru_size)
315{
316	int child_data[2];
317	int lru_map_fd;
318
319	printf("%s (map_type:%d map_flags:0x%X):\n", __func__, map_type,
320	       map_flags);
321
322	if (map_flags & BPF_F_NO_COMMON_LRU)
323		lru_map_fd = create_map(map_type, map_flags,
324					nr_cpus * lru_size);
325	else
326		lru_map_fd = create_map(map_type, map_flags,
327					nr_tasks * lru_size);
328	assert(lru_map_fd != -1);
329
330	child_data[0] = lru_map_fd;
331	child_data[1] = lru_size;
332
333	run_parallel(nr_tasks, do_test_lru_dist, child_data);
334
335	close(lru_map_fd);
336}
337
338static void test_lru_loss0(int map_type, int map_flags)
339{
340	unsigned long long key, value[nr_cpus];
341	unsigned int old_unused_losses = 0;
342	unsigned int new_unused_losses = 0;
343	unsigned int used_losses = 0;
344	int map_fd;
345
346	printf("%s (map_type:%d map_flags:0x%X): ", __func__, map_type,
347	       map_flags);
348
349	assert(sched_next_online(0, 0) != -1);
350
351	if (map_flags & BPF_F_NO_COMMON_LRU)
352		map_fd = create_map(map_type, map_flags, 900 * nr_cpus);
353	else
354		map_fd = create_map(map_type, map_flags, 900);
355
356	assert(map_fd != -1);
357
358	value[0] = 1234;
359
360	for (key = 1; key <= 1000; key++) {
361		int start_key, end_key;
362
363		assert(bpf_map_update_elem(map_fd, &key, value, BPF_NOEXIST) == 0);
364
365		start_key = 101;
366		end_key = min(key, 900);
367
368		while (start_key <= end_key) {
369			bpf_map_lookup_elem(map_fd, &start_key, value);
370			start_key++;
371		}
372	}
373
374	for (key = 1; key <= 1000; key++) {
375		if (bpf_map_lookup_elem(map_fd, &key, value)) {
376			if (key <= 100)
377				old_unused_losses++;
378			else if (key <= 900)
379				used_losses++;
380			else
381				new_unused_losses++;
382		}
383	}
384
385	close(map_fd);
386
387	printf("older-elem-losses:%d(/100) active-elem-losses:%d(/800) "
388	       "newer-elem-losses:%d(/100)\n",
389	       old_unused_losses, used_losses, new_unused_losses);
390}
391
392static void test_lru_loss1(int map_type, int map_flags)
393{
394	unsigned long long key, value[nr_cpus];
395	int map_fd;
396	unsigned int nr_losses = 0;
397
398	printf("%s (map_type:%d map_flags:0x%X): ", __func__, map_type,
399	       map_flags);
400
401	assert(sched_next_online(0, 0) != -1);
402
403	if (map_flags & BPF_F_NO_COMMON_LRU)
404		map_fd = create_map(map_type, map_flags, 1000 * nr_cpus);
405	else
406		map_fd = create_map(map_type, map_flags, 1000);
407
408	assert(map_fd != -1);
409
410	value[0] = 1234;
411
412	for (key = 1; key <= 1000; key++)
413		assert(!bpf_map_update_elem(map_fd, &key, value, BPF_NOEXIST));
414
415	for (key = 1; key <= 1000; key++) {
416		if (bpf_map_lookup_elem(map_fd, &key, value))
417			nr_losses++;
418	}
419
420	close(map_fd);
421
422	printf("nr_losses:%d(/1000)\n", nr_losses);
423}
424
425static void do_test_parallel_lru_loss(int task, void *data)
426{
427	const unsigned int nr_stable_elems = 1000;
428	const unsigned int nr_repeats = 100000;
429
430	int map_fd = *(int *)data;
431	unsigned long long stable_base;
432	unsigned long long key, value[nr_cpus];
433	unsigned long long next_ins_key;
434	unsigned int nr_losses = 0;
435	unsigned int i;
436
437	stable_base = task * nr_repeats * 2 + 1;
438	next_ins_key = stable_base;
439	value[0] = 1234;
440	for (i = 0; i < nr_stable_elems; i++) {
441		assert(bpf_map_update_elem(map_fd, &next_ins_key, value,
442				       BPF_NOEXIST) == 0);
443		next_ins_key++;
444	}
445
446	for (i = 0; i < nr_repeats; i++) {
447		int rn;
448
449		rn = rand();
450
451		if (rn % 10) {
452			key = rn % nr_stable_elems + stable_base;
453			bpf_map_lookup_elem(map_fd, &key, value);
454		} else {
455			bpf_map_update_elem(map_fd, &next_ins_key, value,
456					BPF_NOEXIST);
457			next_ins_key++;
458		}
459	}
460
461	key = stable_base;
462	for (i = 0; i < nr_stable_elems; i++) {
463		if (bpf_map_lookup_elem(map_fd, &key, value))
464			nr_losses++;
465		key++;
466	}
467
468	printf("    task:%d nr_losses:%u\n", task, nr_losses);
469}
470
471static void test_parallel_lru_loss(int map_type, int map_flags, int nr_tasks)
472{
473	int map_fd;
474
475	printf("%s (map_type:%d map_flags:0x%X):\n", __func__, map_type,
476	       map_flags);
477
478	/* Give 20% more than the active working set */
479	if (map_flags & BPF_F_NO_COMMON_LRU)
480		map_fd = create_map(map_type, map_flags,
481				    nr_cpus * (1000 + 200));
482	else
483		map_fd = create_map(map_type, map_flags,
484				    nr_tasks * (1000 + 200));
485
486	assert(map_fd != -1);
487
488	run_parallel(nr_tasks, do_test_parallel_lru_loss, &map_fd);
489
490	close(map_fd);
491}
492
493int main(int argc, char **argv)
494{
495	struct rlimit r = {RLIM_INFINITY, RLIM_INFINITY};
496	int map_flags[] = {0, BPF_F_NO_COMMON_LRU};
497	const char *dist_file;
498	int nr_tasks = 1;
499	int lru_size;
500	int f;
501
502	if (argc < 4) {
503		printf("Usage: %s <dist-file> <lru-size> <nr-tasks>\n",
504		       argv[0]);
505		return -1;
506	}
507
508	dist_file = argv[1];
509	lru_size = atoi(argv[2]);
510	nr_tasks = atoi(argv[3]);
511
512	setbuf(stdout, NULL);
513
514	assert(!setrlimit(RLIMIT_MEMLOCK, &r));
515
516	srand(time(NULL));
517
518	nr_cpus = bpf_num_possible_cpus();
519	assert(nr_cpus != -1);
520	printf("nr_cpus:%d\n\n", nr_cpus);
521
522	nr_tasks = min(nr_tasks, nr_cpus);
523
524	dist_key_counts = read_keys(dist_file, &dist_keys);
525	if (!dist_key_counts) {
526		printf("%s has no key\n", dist_file);
527		return -1;
528	}
529
530	for (f = 0; f < sizeof(map_flags) / sizeof(*map_flags); f++) {
531		test_lru_loss0(BPF_MAP_TYPE_LRU_HASH, map_flags[f]);
532		test_lru_loss1(BPF_MAP_TYPE_LRU_HASH, map_flags[f]);
533		test_parallel_lru_loss(BPF_MAP_TYPE_LRU_HASH, map_flags[f],
534				       nr_tasks);
535		test_parallel_lru_dist(BPF_MAP_TYPE_LRU_HASH, map_flags[f],
536				       nr_tasks, lru_size);
537		printf("\n");
538	}
539
540	free(dist_keys);
541
542	return 0;
543}