diff options
Diffstat (limited to 'drivers/net/tun.c')
| -rw-r--r-- | drivers/net/tun.c | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/tun.c b/drivers/net/tun.c index 9b24861464bc..1d06c560c5e6 100644 --- a/drivers/net/tun.c +++ b/drivers/net/tun.c @@ -2455,6 +2455,9 @@ static int tun_xdp_one(struct tun_struct *tun,  	bool skb_xdp = false;  	struct page *page; +	if (unlikely(datasize < ETH_HLEN)) +		return -EINVAL; +  	xdp_prog = rcu_dereference(tun->xdp_prog);  	if (xdp_prog) {  		if (gso->gso_type) {  |