summaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/bpf/progs/test_attach_probe.c
blob: 7a7c5cd728c8075cb07e7f7fb37b1683cbfe36b1 (plain)
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
// SPDX-License-Identifier: GPL-2.0
// Copyright (c) 2017 Facebook

#include <linux/ptrace.h>
#include <linux/bpf.h>
#include "bpf_helpers.h"

struct {
	int type;
	int max_entries;
	int *key;
	int *value;
} results_map SEC(".maps") = {
	.type = BPF_MAP_TYPE_ARRAY,
	.max_entries = 4,
};

SEC("kprobe/sys_nanosleep")
int handle_sys_nanosleep_entry(struct pt_regs *ctx)
{
	const int key = 0, value = 1;

	bpf_map_update_elem(&results_map, &key, &value, 0);
	return 0;
}

SEC("kretprobe/sys_nanosleep")
int handle_sys_getpid_return(struct pt_regs *ctx)
{
	const int key = 1, value = 2;

	bpf_map_update_elem(&results_map, &key, &value, 0);
	return 0;
}

SEC("uprobe/trigger_func")
int handle_uprobe_entry(struct pt_regs *ctx)
{
	const int key = 2, value = 3;

	bpf_map_update_elem(&results_map, &key, &value, 0);
	return 0;
}

SEC("uretprobe/trigger_func")
int handle_uprobe_return(struct pt_regs *ctx)
{
	const int key = 3, value = 4;

	bpf_map_update_elem(&results_map, &key, &value, 0);
	return 0;
}

char _license[] SEC("license") = "GPL";
__u32 _version SEC("version") = 1;