|
@@ -1685,6 +1685,121 @@ static struct bpf_test tests[] = {
|
|
|
.result = ACCEPT,
|
|
|
.prog_type = BPF_PROG_TYPE_SK_SKB,
|
|
|
},
|
|
|
+ {
|
|
|
+ "valid access family in SK_MSG",
|
|
|
+ .insns = {
|
|
|
+ BPF_LDX_MEM(BPF_W, BPF_REG_0, BPF_REG_1,
|
|
|
+ offsetof(struct sk_msg_md, family)),
|
|
|
+ BPF_EXIT_INSN(),
|
|
|
+ },
|
|
|
+ .result = ACCEPT,
|
|
|
+ .prog_type = BPF_PROG_TYPE_SK_MSG,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "valid access remote_ip4 in SK_MSG",
|
|
|
+ .insns = {
|
|
|
+ BPF_LDX_MEM(BPF_W, BPF_REG_0, BPF_REG_1,
|
|
|
+ offsetof(struct sk_msg_md, remote_ip4)),
|
|
|
+ BPF_EXIT_INSN(),
|
|
|
+ },
|
|
|
+ .result = ACCEPT,
|
|
|
+ .prog_type = BPF_PROG_TYPE_SK_MSG,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "valid access local_ip4 in SK_MSG",
|
|
|
+ .insns = {
|
|
|
+ BPF_LDX_MEM(BPF_W, BPF_REG_0, BPF_REG_1,
|
|
|
+ offsetof(struct sk_msg_md, local_ip4)),
|
|
|
+ BPF_EXIT_INSN(),
|
|
|
+ },
|
|
|
+ .result = ACCEPT,
|
|
|
+ .prog_type = BPF_PROG_TYPE_SK_MSG,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "valid access remote_port in SK_MSG",
|
|
|
+ .insns = {
|
|
|
+ BPF_LDX_MEM(BPF_W, BPF_REG_0, BPF_REG_1,
|
|
|
+ offsetof(struct sk_msg_md, remote_port)),
|
|
|
+ BPF_EXIT_INSN(),
|
|
|
+ },
|
|
|
+ .result = ACCEPT,
|
|
|
+ .prog_type = BPF_PROG_TYPE_SK_MSG,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "valid access local_port in SK_MSG",
|
|
|
+ .insns = {
|
|
|
+ BPF_LDX_MEM(BPF_W, BPF_REG_0, BPF_REG_1,
|
|
|
+ offsetof(struct sk_msg_md, local_port)),
|
|
|
+ BPF_EXIT_INSN(),
|
|
|
+ },
|
|
|
+ .result = ACCEPT,
|
|
|
+ .prog_type = BPF_PROG_TYPE_SK_MSG,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "valid access remote_ip6 in SK_MSG",
|
|
|
+ .insns = {
|
|
|
+ BPF_LDX_MEM(BPF_W, BPF_REG_0, BPF_REG_1,
|
|
|
+ offsetof(struct sk_msg_md, remote_ip6[0])),
|
|
|
+ BPF_LDX_MEM(BPF_W, BPF_REG_0, BPF_REG_1,
|
|
|
+ offsetof(struct sk_msg_md, remote_ip6[1])),
|
|
|
+ BPF_LDX_MEM(BPF_W, BPF_REG_0, BPF_REG_1,
|
|
|
+ offsetof(struct sk_msg_md, remote_ip6[2])),
|
|
|
+ BPF_LDX_MEM(BPF_W, BPF_REG_0, BPF_REG_1,
|
|
|
+ offsetof(struct sk_msg_md, remote_ip6[3])),
|
|
|
+ BPF_EXIT_INSN(),
|
|
|
+ },
|
|
|
+ .result = ACCEPT,
|
|
|
+ .prog_type = BPF_PROG_TYPE_SK_SKB,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "valid access local_ip6 in SK_MSG",
|
|
|
+ .insns = {
|
|
|
+ BPF_LDX_MEM(BPF_W, BPF_REG_0, BPF_REG_1,
|
|
|
+ offsetof(struct sk_msg_md, local_ip6[0])),
|
|
|
+ BPF_LDX_MEM(BPF_W, BPF_REG_0, BPF_REG_1,
|
|
|
+ offsetof(struct sk_msg_md, local_ip6[1])),
|
|
|
+ BPF_LDX_MEM(BPF_W, BPF_REG_0, BPF_REG_1,
|
|
|
+ offsetof(struct sk_msg_md, local_ip6[2])),
|
|
|
+ BPF_LDX_MEM(BPF_W, BPF_REG_0, BPF_REG_1,
|
|
|
+ offsetof(struct sk_msg_md, local_ip6[3])),
|
|
|
+ BPF_EXIT_INSN(),
|
|
|
+ },
|
|
|
+ .result = ACCEPT,
|
|
|
+ .prog_type = BPF_PROG_TYPE_SK_SKB,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "invalid 64B read of family in SK_MSG",
|
|
|
+ .insns = {
|
|
|
+ BPF_LDX_MEM(BPF_DW, BPF_REG_2, BPF_REG_1,
|
|
|
+ offsetof(struct sk_msg_md, family)),
|
|
|
+ BPF_EXIT_INSN(),
|
|
|
+ },
|
|
|
+ .errstr = "invalid bpf_context access",
|
|
|
+ .result = REJECT,
|
|
|
+ .prog_type = BPF_PROG_TYPE_SK_MSG,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "invalid read past end of SK_MSG",
|
|
|
+ .insns = {
|
|
|
+ BPF_LDX_MEM(BPF_W, BPF_REG_2, BPF_REG_1,
|
|
|
+ offsetof(struct sk_msg_md, local_port) + 4),
|
|
|
+ BPF_EXIT_INSN(),
|
|
|
+ },
|
|
|
+ .errstr = "R0 !read_ok",
|
|
|
+ .result = REJECT,
|
|
|
+ .prog_type = BPF_PROG_TYPE_SK_MSG,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "invalid read offset in SK_MSG",
|
|
|
+ .insns = {
|
|
|
+ BPF_LDX_MEM(BPF_W, BPF_REG_2, BPF_REG_1,
|
|
|
+ offsetof(struct sk_msg_md, family) + 1),
|
|
|
+ BPF_EXIT_INSN(),
|
|
|
+ },
|
|
|
+ .errstr = "invalid bpf_context access",
|
|
|
+ .result = REJECT,
|
|
|
+ .prog_type = BPF_PROG_TYPE_SK_MSG,
|
|
|
+ },
|
|
|
{
|
|
|
"direct packet read for SK_MSG",
|
|
|
.insns = {
|