summaryrefslogtreecommitdiff
path: root/tools/testing/selftests/bpf/progs/kprobe_write_ctx.c
blob: adbf52afe49067b038e362bdbd781c6b64fc6062 (plain) (blame)
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
// SPDX-License-Identifier: GPL-2.0
#include "vmlinux.h"
#include <bpf/bpf_helpers.h>
#include <bpf/bpf_tracing.h>

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

#if defined(__TARGET_ARCH_x86)
SEC("kprobe")
int kprobe_write_ctx(struct pt_regs *ctx)
{
	ctx->ax = 0;
	return 0;
}

SEC("kprobe.multi")
int kprobe_multi_write_ctx(struct pt_regs *ctx)
{
	ctx->ax = 0;
	return 0;
}

SEC("?kprobe")
int kprobe_dummy(struct pt_regs *regs)
{
	return 0;
}

SEC("?freplace")
int freplace_kprobe(struct pt_regs *regs)
{
	regs->di = 0;
	return 0;
}

SEC("?fentry/bpf_fentry_test1")
int BPF_PROG(fentry)
{
	return 0;
}
#endif