mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-10 21:07:02 +09:00
net: sched: ife: check on metadata length
[ Upstream commit d57493d6d1 ]
This patch checks if sk buffer is available to dererence ife header. If
not then NULL will returned to signal an malformed ife packet. This
avoids to crashing the kernel from outside.
Signed-off-by: Alexander Aring <aring@mojatatu.com>
Reviewed-by: Yotam Gigi <yotam.gi@gmail.com>
Acked-by: Jamal Hadi Salim <jhs@mojatatu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
388f3d9708
commit
4c2c574cf6
@@ -69,6 +69,9 @@ void *ife_decode(struct sk_buff *skb, u16 *metalen)
|
||||
int total_pull;
|
||||
u16 ifehdrln;
|
||||
|
||||
if (!pskb_may_pull(skb, skb->dev->hard_header_len + IFE_METAHDRLEN))
|
||||
return NULL;
|
||||
|
||||
ifehdr = (struct ifeheadr *) (skb->data + skb->dev->hard_header_len);
|
||||
ifehdrln = ntohs(ifehdr->metalen);
|
||||
total_pull = skb->dev->hard_header_len + ifehdrln;
|
||||
|
||||
Reference in New Issue
Block a user