vport-capwap: Fix use-after-free on error path.
authorBen Pfaff <blp@nicira.com>
Fri, 21 Oct 2011 22:34:25 +0000 (15:34 -0700)
committerBen Pfaff <blp@nicira.com>
Fri, 21 Oct 2011 22:34:25 +0000 (15:34 -0700)
I originally meant just to fix the use of kfree_skb() instead of
consume_skb() on the success path, but then I realized that the failure
path returned an skb that it had just freed.

Signed-off-by: Ben Pfaff <blp@nicira.com>
Acked-by: Jesse Gross <jesse@nicira.com>
datapath/vport-capwap.c

index 3fb4ffb..8d78b6d 100644 (file)
@@ -507,13 +507,13 @@ static struct sk_buff *fragment(struct sk_buff *skb, const struct vport *vport,
                remaining -= frag_size;
        }
 
-       goto out;
+       consume_skb(skb);
+       return result;
 
 error:
        tnl_free_linked_skbs(result);
-out:
        kfree_skb(skb);
-       return result;
+       return NULL;
 }
 
 /* All of the following functions relate to fragmentation reassembly. */