ipip: validate header length in ipip_tunnel_xmit
We need the same checks introduced by commit cb9f1b783850 ("ip: validate header length on virtual device xmit") for ipip tunnel. Fixes: cb9f1b783850b ("ip: validate header length on virtual device xmit") Signed-off-by: Haishuang Yan <yanhaishuang@cmss.chinamobile.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
53db1cced4
commit
47d858d0bd
@ -275,6 +275,9 @@ static netdev_tx_t ipip_tunnel_xmit(struct sk_buff *skb,
|
|||||||
const struct iphdr *tiph = &tunnel->parms.iph;
|
const struct iphdr *tiph = &tunnel->parms.iph;
|
||||||
u8 ipproto;
|
u8 ipproto;
|
||||||
|
|
||||||
|
if (!pskb_inet_may_pull(skb))
|
||||||
|
goto tx_error;
|
||||||
|
|
||||||
switch (skb->protocol) {
|
switch (skb->protocol) {
|
||||||
case htons(ETH_P_IP):
|
case htons(ETH_P_IP):
|
||||||
ipproto = IPPROTO_IPIP;
|
ipproto = IPPROTO_IPIP;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user