-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
selftests/bpf: Add verifier test for d_path helper
Adding verifier test for attaching tracing program and calling d_path helper from within and testing that it's allowed for dentry_open function and denied for 'd_path' function with appropriate error. Signed-off-by: Jiri Olsa <jolsa@kernel.org> Signed-off-by: Alexei Starovoitov <ast@kernel.org> Acked-by: Andrii Nakryiko <andriin@fb.com> Link: https://lore.kernel.org/bpf/20200825192124.710397-13-jolsa@kernel.org
- Loading branch information
Jiri Olsa
authored and
Alexei Starovoitov
committed
Aug 25, 2020
1 parent
68a26bc
commit 762f851
Showing
2 changed files
with
55 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
"d_path accept", | ||
.insns = { | ||
BPF_LDX_MEM(BPF_W, BPF_REG_1, BPF_REG_1, 0), | ||
BPF_MOV64_REG(BPF_REG_2, BPF_REG_10), | ||
BPF_ALU64_IMM(BPF_ADD, BPF_REG_2, -8), | ||
BPF_MOV64_IMM(BPF_REG_6, 0), | ||
BPF_STX_MEM(BPF_DW, BPF_REG_2, BPF_REG_6, 0), | ||
BPF_LD_IMM64(BPF_REG_3, 8), | ||
BPF_RAW_INSN(BPF_JMP | BPF_CALL, 0, 0, 0, BPF_FUNC_d_path), | ||
BPF_MOV64_IMM(BPF_REG_0, 0), | ||
BPF_EXIT_INSN(), | ||
}, | ||
.result = ACCEPT, | ||
.prog_type = BPF_PROG_TYPE_TRACING, | ||
.expected_attach_type = BPF_TRACE_FENTRY, | ||
.kfunc = "dentry_open", | ||
}, | ||
{ | ||
"d_path reject", | ||
.insns = { | ||
BPF_LDX_MEM(BPF_W, BPF_REG_1, BPF_REG_1, 0), | ||
BPF_MOV64_REG(BPF_REG_2, BPF_REG_10), | ||
BPF_ALU64_IMM(BPF_ADD, BPF_REG_2, -8), | ||
BPF_MOV64_IMM(BPF_REG_6, 0), | ||
BPF_STX_MEM(BPF_DW, BPF_REG_2, BPF_REG_6, 0), | ||
BPF_LD_IMM64(BPF_REG_3, 8), | ||
BPF_RAW_INSN(BPF_JMP | BPF_CALL, 0, 0, 0, BPF_FUNC_d_path), | ||
BPF_MOV64_IMM(BPF_REG_0, 0), | ||
BPF_EXIT_INSN(), | ||
}, | ||
.errstr = "helper call is not allowed in probe", | ||
.result = REJECT, | ||
.prog_type = BPF_PROG_TYPE_TRACING, | ||
.expected_attach_type = BPF_TRACE_FENTRY, | ||
.kfunc = "d_path", | ||
}, |