mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
net/esp4: Fix invalid esph pointer crash
Both esp_output and esp_xmit take a pointer to the ESP header
and place it in esp_info struct prior to calling esp_output_head.
Inside esp_output_head, the call to esp_output_udp_encap
makes sure to update the pointer if it gets invalid.
However, if esp_output_head itself calls skb_cow_data, the
pointer is not updated and stays invalid, causing a crash
after esp_output_head returns.
Update the pointer if it becomes invalid in esp_output_head
Fixes: fca11ebde3
("esp4: Reorganize esp_output")
Signed-off-by: Ilan Tayari <ilant@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
89a23c8b52
commit
67d349ed60
@ -317,6 +317,7 @@ cow:
|
|||||||
if (nfrags < 0)
|
if (nfrags < 0)
|
||||||
goto out;
|
goto out;
|
||||||
tail = skb_tail_pointer(trailer);
|
tail = skb_tail_pointer(trailer);
|
||||||
|
esp->esph = ip_esp_hdr(skb);
|
||||||
|
|
||||||
skip_cow:
|
skip_cow:
|
||||||
esp_output_fill_trailer(tail, esp->tfclen, esp->plen, esp->proto);
|
esp_output_fill_trailer(tail, esp->tfclen, esp->plen, esp->proto);
|
||||||
|
Loading…
Reference in New Issue
Block a user