Commit 63415767 authored by Lv Yunlong's avatar Lv Yunlong Committed by David S. Miller
Browse files

ethernet: myri10ge: Fix a use after free in myri10ge_sw_tso



In myri10ge_sw_tso, the skb_list_walk_safe macro will set
(curr) = (segs) and (next) = (curr)->next. If status!=0 is true,
the memory pointed by curr and segs will be free by dev_kfree_skb_any(curr).
But later, the segs is used by segs = segs->next and causes a uaf.

As (next) = (curr)->next, my patch replaces seg->next to next.

Fixes: 536577f3 ("net: myri10ge: use skb_list_walk_safe helper for gso segments")
Signed-off-by: default avatarLv Yunlong <lyl2019@mail.ustc.edu.cn>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 5954846d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2897,7 +2897,7 @@ static netdev_tx_t myri10ge_sw_tso(struct sk_buff *skb,
			dev_kfree_skb_any(curr);
			if (segs != NULL) {
				curr = segs;
				segs = segs->next;
				segs = next;
				curr->next = NULL;
				dev_kfree_skb_any(segs);
			}