IB/cma: Fix reference count leak when no ipv4 addresses are set
authorKalderon, Michal <Michal.Kalderon@cavium.com>
Thu, 6 Jul 2017 20:22:11 +0000 (23:22 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 3 Jun 2020 06:16:33 +0000 (08:16 +0200)
commitd14e9ab0db65a9a5636ba0ef00d6098296877ca5
tree020f46362e3775072e2173db738b4e776b0ba9b2
parentb3a6fd241fc80874fc60ceac545e703dcb8e685b
IB/cma: Fix reference count leak when no ipv4 addresses are set

commit 963916fdb3e5ad4af57ac959b5a03bf23f7568ca upstream.

Once in_dev_get is called to receive in_device pointer, the
in_device reference counter is increased, but if there are
no ipv4 addresses configured on the net-device the ifa_list
will be null, resulting in a flow that doesn't call in_dev_put
to decrease the ref_cnt.
This was exposed when running RoCE over ipv6 without any ipv4
addresses configured

Fixes: commit 8e3867310c90 ("IB/cma: Fix a race condition in iboe_addr_get_sgid()")

Signed-off-by: Michal Kalderon <Michal.Kalderon@cavium.com>
Signed-off-by: Ariel Elior <Ariel.Elior@cavium.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Cc: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
include/rdma/ib_addr.h