File: free_timer.c

package info (click to toggle)
linux 6.16.6-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,724,504 kB
  • sloc: ansic: 26,560,901; asm: 271,339; sh: 144,033; python: 72,469; makefile: 57,129; perl: 36,821; xml: 19,553; cpp: 5,820; yacc: 4,915; lex: 2,955; awk: 1,667; sed: 28; ruby: 25
file content (71 lines) | stat: -rw-r--r-- 1,392 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// SPDX-License-Identifier: GPL-2.0
/* Copyright (C) 2025. Huawei Technologies Co., Ltd */
#include <linux/bpf.h>
#include <time.h>
#include <bpf/bpf_tracing.h>
#include <bpf/bpf_helpers.h>

#define MAX_ENTRIES 8

struct map_value {
	struct bpf_timer timer;
};

struct {
	__uint(type, BPF_MAP_TYPE_HASH);
	__type(key, int);
	__type(value, struct map_value);
	__uint(max_entries, MAX_ENTRIES);
} map SEC(".maps");

static int timer_cb(void *map, void *key, struct map_value *value)
{
	volatile int sum = 0;
	int i;

	bpf_for(i, 0, 1024 * 1024) sum += i;

	return 0;
}

static int start_cb(int key)
{
	struct map_value *value;

	value = bpf_map_lookup_elem(&map, (void *)&key);
	if (!value)
		return 0;

	bpf_timer_init(&value->timer, &map, CLOCK_MONOTONIC);
	bpf_timer_set_callback(&value->timer, timer_cb);
	/* Hope 100us will be enough to wake-up and run the overwrite thread */
	bpf_timer_start(&value->timer, 100000, BPF_F_TIMER_CPU_PIN);

	return 0;
}

static int overwrite_cb(int key)
{
	struct map_value zero = {};

	/* Free the timer which may run on other CPU */
	bpf_map_update_elem(&map, (void *)&key, &zero, BPF_ANY);

	return 0;
}

SEC("syscall")
int BPF_PROG(start_timer)
{
	bpf_loop(MAX_ENTRIES, start_cb, NULL, 0);
	return 0;
}

SEC("syscall")
int BPF_PROG(overwrite_timer)
{
	bpf_loop(MAX_ENTRIES, overwrite_cb, NULL, 0);
	return 0;
}

char _license[] SEC("license") = "GPL";