]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
batman-adv: check for more space before accessing the skb
authorAntonio Quartulli <ordex@autistici.org>
Sun, 26 Aug 2012 21:25:59 +0000 (23:25 +0200)
committerAntonio Quartulli <ordex@autistici.org>
Mon, 29 Oct 2012 08:42:45 +0000 (09:42 +0100)
In batadv_check_unicast_ttvn() the code accesses both the unicast header and the
Ethernet header in the payload. For this reason pskb_may_pull() must be invoked
to check for the required space.

Signed-off-by: Antonio Quartulli <ordex@autistici.org>
net/batman-adv/routing.c

index 456a0a9f8831695184739bac378129cf607a1516..46dd5b47ed290815bcae330e173ad97b36f5441d 100644 (file)
@@ -908,8 +908,12 @@ static int batadv_check_unicast_ttvn(struct batadv_priv *bat_priv,
        bool tt_poss_change;
        int is_old_ttvn;
 
-       /* I could need to modify it */
-       if (skb_cow(skb, sizeof(struct batadv_unicast_packet)) < 0)
+       /* check if there is enough data before accessing it */
+       if (pskb_may_pull(skb, sizeof(*unicast_packet) + ETH_HLEN) < 0)
+               return 0;
+
+       /* create a copy of the skb (in case of for re-routing) to modify it. */
+       if (skb_cow(skb, sizeof(*unicast_packet)) < 0)
                return 0;
 
        unicast_packet = (struct batadv_unicast_packet *)skb->data;