datapath: Check packet len does not exceed attribute len.
authorJesse Gross <jesse@nicira.com>
Mon, 28 Feb 2011 22:32:33 +0000 (14:32 -0800)
committerJesse Gross <jesse@nicira.com>
Thu, 3 Mar 2011 20:13:01 +0000 (12:13 -0800)
Netlink attributes have a maximum length of 64k.  It's theoretically
possible that a packet could exceed this length, so check for it before
we try to send the packet to userspace.

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

index 69b524c..ebfc2e9 100644 (file)
@@ -492,6 +492,9 @@ static int queue_control_packets(struct datapath *dp, struct sk_buff *skb,
                if (unlikely(err))
                        goto err_kfree_skbs;
 
+               if (nla_attr_size(skb->len) > USHRT_MAX)
+                       goto err_kfree_skbs;
+
                len = sizeof(struct odp_header);
                len += nla_total_size(skb->len);
                len += nla_total_size(FLOW_BUFSIZE);