diff options
author | Josef Bacik | 2017-12-11 11:36:49 -0500 |
---|---|---|
committer | Alexei Starovoitov | 2017-12-12 09:02:40 -0800 |
commit | 965de87e54b803223bff703ea6b2a76c056695ae (patch) | |
tree | 43f90acde38704b6831d3819ce0bffee092eade4 /samples/bpf/tracex7_kern.c | |
parent | 9802d86585db91655c7d1929a4f6bbe0952ea88e (diff) |
samples/bpf: add a test for bpf_override_return
This adds a basic test for bpf_override_return to verify it works. We
override the main function for mounting a btrfs fs so it'll return
-ENOMEM and then make sure that trying to mount a btrfs fs will fail.
Acked-by: Alexei Starovoitov <ast@kernel.org>
Acked-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Josef Bacik <jbacik@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'samples/bpf/tracex7_kern.c')
-rw-r--r-- | samples/bpf/tracex7_kern.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/samples/bpf/tracex7_kern.c b/samples/bpf/tracex7_kern.c new file mode 100644 index 000000000000..1ab308a43e0f --- /dev/null +++ b/samples/bpf/tracex7_kern.c @@ -0,0 +1,16 @@ +#include <uapi/linux/ptrace.h> +#include <uapi/linux/bpf.h> +#include <linux/version.h> +#include "bpf_helpers.h" + +SEC("kprobe/open_ctree") +int bpf_prog1(struct pt_regs *ctx) +{ + unsigned long rc = -12; + + bpf_override_return(ctx, rc); + return 0; +} + +char _license[] SEC("license") = "GPL"; +u32 _version SEC("version") = LINUX_VERSION_CODE; |