lib: ofp-parse segfaults if required argument isn't specified
authorEthan Jackson <ethan@nicira.com>
Fri, 8 Oct 2010 22:15:26 +0000 (22:15 +0000)
committerEthan Jackson <ethan@nicira.com>
Mon, 11 Oct 2010 21:29:22 +0000 (21:29 +0000)
Running ovs-ofctl add-flow br0 "in_port=3 actions=resubmit" would
segfault instead of reporting an error.

lib/ofp-parse.c

index 7a88880..e6af036 100644 (file)
@@ -40,6 +40,10 @@ str_to_u32(const char *str)
     char *tail;
     uint32_t value;
 
+    if (!str) {
+        ovs_fatal(0, "missing required numeric argument");
+    }
+
     errno = 0;
     value = strtoul(str, &tail, 0);
     if (errno == EINVAL || errno == ERANGE || *tail) {