[ovs-git] [openvswitch/ovs] 7eca02: netdev-dpdk: Avoid undefined behavior processing d...

Aaron Conole noreply at github.com
Mon Jan 13 17:13:09 UTC 2020


  Branch: refs/heads/branch-2.11
  Home:   https://github.com/openvswitch/ovs
  Commit: 7eca0261967c6ba08633af2ef84add911f4414f6
      https://github.com/openvswitch/ovs/commit/7eca0261967c6ba08633af2ef84add911f4414f6
  Author: Aaron Conole <aconole at redhat.com>
  Date:   2020-01-13 (Mon, 13 Jan 2020)

  Changed paths:
    M lib/netdev-dpdk.c

  Log Message:
  -----------
  netdev-dpdk: Avoid undefined behavior processing devargs

In "Use of library functions" in the C standard, the following statement
is written to apply to all library functions:

  If an argument to a function has an invalid value (such as ... a
  null pointer ... the behavior is undefined.

Later, under the "String handling" section, "Comparison functions" no
exception is listed for strcmp, which means NULL is invalid.  It may
be possible for the smap_get to return NULL.

Given the above, we must check that new_devargs is not null.  The check
against NULL for new_devargs later in the function is still valid.

Fixes: 55e075e65ef9 ("netdev-dpdk: Arbitrary 'dpdk' port naming")
Signed-off-by: Aaron Conole <aconole at redhat.com>
Acked-by: Ciara Loftus <ciara.loftus at intel.com>
Signed-off-by: Ian Stokes <ian.stokes at intel.com>




More information about the git mailing list