Skip to content

Commit fd18942

Browse files
zhengchaoshaoAlexei Starovoitov
authored andcommitted
bpf: Don't redirect packets with invalid pkt_len
Syzbot found an issue [1]: fq_codel_drop() try to drop a flow whitout any skbs, that is, the flow->head is null. The root cause, as the [2] says, is because that bpf_prog_test_run_skb() run a bpf prog which redirects empty skbs. So we should determine whether the length of the packet modified by bpf prog or others like bpf_prog_test is valid before forwarding it directly. LINK: [1] https://syzkaller.appspot.com/bug?id=0b84da80c2917757915afa89f7738a9d16ec96c5 LINK: [2] https://www.spinics.net/lists/netdev/msg777503.html Reported-by: [email protected] Signed-off-by: Zhengchao Shao <[email protected]> Reviewed-by: Stanislav Fomichev <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Alexei Starovoitov <[email protected]>
1 parent 92f6197 commit fd18942

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

include/linux/skbuff.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2459,6 +2459,14 @@ static inline void skb_set_tail_pointer(struct sk_buff *skb, const int offset)
24592459

24602460
#endif /* NET_SKBUFF_DATA_USES_OFFSET */
24612461

2462+
static inline void skb_assert_len(struct sk_buff *skb)
2463+
{
2464+
#ifdef CONFIG_DEBUG_NET
2465+
if (WARN_ONCE(!skb->len, "%s\n", __func__))
2466+
DO_ONCE_LITE(skb_dump, KERN_ERR, skb, false);
2467+
#endif /* CONFIG_DEBUG_NET */
2468+
}
2469+
24622470
/*
24632471
* Add data to an sk_buff
24642472
*/

net/bpf/test_run.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -955,6 +955,9 @@ static int convert___skb_to_skb(struct sk_buff *skb, struct __sk_buff *__skb)
955955
{
956956
struct qdisc_skb_cb *cb = (struct qdisc_skb_cb *)skb->cb;
957957

958+
if (!skb->len)
959+
return -EINVAL;
960+
958961
if (!__skb)
959962
return 0;
960963

net/core/dev.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4168,6 +4168,7 @@ int __dev_queue_xmit(struct sk_buff *skb, struct net_device *sb_dev)
41684168
bool again = false;
41694169

41704170
skb_reset_mac_header(skb);
4171+
skb_assert_len(skb);
41714172

41724173
if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_SCHED_TSTAMP))
41734174
__skb_tstamp_tx(skb, NULL, NULL, skb->sk, SCM_TSTAMP_SCHED);

0 commit comments

Comments
 (0)