bus/vmbus: fix resource leak on error
authorStephen Hemminger <stephen@networkplumber.org>
Wed, 17 Apr 2019 18:45:06 +0000 (11:45 -0700)
committerThomas Monjalon <thomas@monjalon.net>
Mon, 22 Apr 2019 12:39:17 +0000 (14:39 +0200)
If secondary process attempt to mmap the resource resulted in
the wrong address, then it would leave behind the bad mmap.

Coverity issue: 337675, 337664
Fixes: 2a28a502c607 ("bus/vmbus: map ring in secondary process")

Signed-off-by: Stephen Hemminger <sthemmin@microsoft.com>
drivers/bus/vmbus/linux/vmbus_uio.c
drivers/bus/vmbus/vmbus_common_uio.c

index fb60ee1..be6b677 100644 (file)
@@ -283,10 +283,12 @@ vmbus_uio_map_secondary_subchan(const struct rte_vmbus_device *dev,
        if (mapaddr == MAP_FAILED)
                VMBUS_LOG(ERR,
                          "mmap subchan %u in secondary failed", chan->relid);
-       else
+       else {
                VMBUS_LOG(ERR,
                          "mmap subchan %u in secondary address mismatch",
                          chan->relid);
+               vmbus_unmap_resource(mapaddr, 2 * ring_size);
+       }
        return -1;
 }
 
index 1aa5cb2..8e476f2 100644 (file)
@@ -75,9 +75,11 @@ vmbus_uio_map_secondary(struct rte_vmbus_device *dev)
                if (mapaddr == MAP_FAILED)
                        VMBUS_LOG(ERR,
                                  "mmap resource %d in secondary failed", i);
-               else
+               else {
                        VMBUS_LOG(ERR,
                                  "mmap resource %d address mismatch", i);
+                       vmbus_unmap_resource(mapaddr, uio_res->maps[i].size);
+               }
 
                close(fd);
                return -1;