From: Eduard Zingerman <eddyz87@gmail.com>
To: "Maciej Żenczykowski" <zenczykowski@gmail.com>
Cc: BPF Mailing List <bpf@vger.kernel.org>,
Alexei Starovoitov <ast@kernel.org>
Subject: Re: Funky verifier packet range error (> check works, != does not).
Date: Tue, 02 Jan 2024 21:23:59 +0200 [thread overview]
Message-ID: <85731a963139eb226b76069a5422ecbac063dd74.camel@gmail.com> (raw)
In-Reply-To: <CAHo-OowjLmtEPmoo2rQ3i4_3mO0Uy6Sr9+pdcv2qCbahdVVgxg@mail.gmail.com>
On Tue, 2024-01-02 at 10:30 -0800, Maciej Żenczykowski wrote:
[...]
>
> The check is:
> if (data + 98 != data_end) return;
> so now (after this check) you *know* that 'data + 98 == data_end' and
> thus you know there are *exactly* 98 valid bytes.
Apologies, you are correct.
So you want to have something along the following lines:
diff --git a/kernel/bpf/verifier.c b/kernel/bpf/verifier.c
index a376eb609c41..6ddb34d5b9aa 100644
--- a/kernel/bpf/verifier.c
+++ b/kernel/bpf/verifier.c
@@ -14712,6 +14712,28 @@ static bool try_match_pkt_pointers(const struct bpf_insn *insn,
return false;
}
break;
+ case BPF_JEQ:
+ case BPF_JNE:
+ if ((dst_reg->type == PTR_TO_PACKET &&
+ src_reg->type == PTR_TO_PACKET_END) ||
+ (dst_reg->type == PTR_TO_PACKET_META &&
+ reg_is_init_pkt_pointer(src_reg, PTR_TO_PACKET)) ||
+ (dst_reg->type == PTR_TO_PACKET_END &&
+ src_reg->type == PTR_TO_PACKET) ||
+ (reg_is_init_pkt_pointer(dst_reg, PTR_TO_PACKET) &&
+ src_reg->type == PTR_TO_PACKET_META)) {
+ /* pkt_data' != pkt_end, pkt_meta' != pkt_data,
+ * pkt_end != pkt_data', pkt_data != pkt_meta'
+ */
+ struct bpf_verifier_state *eq_branch;
+
+ eq_branch = BPF_OP(insn->code) == BPF_JEQ ? other_branch : this_branch;
+ find_good_pkt_pointers(eq_branch, dst_reg, dst_reg->type, true);
+ mark_pkt_end(eq_branch, insn->dst_reg, false);
+ } else {
+ return false;
+ }
+ break;
case BPF_JGE:
if ((dst_reg->type == PTR_TO_PACKET &&
src_reg->type == PTR_TO_PACKET_END) ||
Right?
This passes the following test case:
SEC("tc")
__success
__naked void data_plus_const_eq_pkt_end(void)
{
asm volatile (" \n\
r9 = r1; \n\
r1 = *(u32*)(r9 + %[__sk_buff_data]); \n\
r2 = *(u32*)(r9 + %[__sk_buff_data_end]); \n\
r3 = r1; \n\
r3 += 8; \n\
if r3 != r2 goto 1f; \n\
r1 = *(u64 *)(r1 + 0); \n\
1: \n\
r0 = 0; \n\
exit; \n\
" :
: __imm_const(__sk_buff_data, offsetof(struct __sk_buff, data)),
__imm_const(__sk_buff_data_end, offsetof(struct __sk_buff, data_end))
: __clobber_all);
}
And it's variations for EQ/NEQ, positive/negative.
next prev parent reply other threads:[~2024-01-02 19:24 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-12-30 1:31 Funky verifier packet range error (> check works, != does not) Maciej Żenczykowski
2024-01-02 16:39 ` Eduard Zingerman
2024-01-02 18:30 ` Maciej Żenczykowski
2024-01-02 19:23 ` Eduard Zingerman [this message]
2024-01-02 20:36 ` Maciej Żenczykowski
2024-01-02 23:13 ` Eduard Zingerman
2024-01-04 16:41 ` Eduard Zingerman
2024-01-05 0:33 ` Maciej Żenczykowski
2024-01-02 21:45 ` Andrii Nakryiko
2024-01-02 22:45 ` Maciej Żenczykowski
2024-01-02 23:56 ` Yonghong Song
2024-01-03 0:06 ` Andrii Nakryiko
2024-01-03 0:29 ` Eduard Zingerman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=85731a963139eb226b76069a5422ecbac063dd74.camel@gmail.com \
--to=eddyz87@gmail.com \
--cc=ast@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=zenczykowski@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox