All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH For 2.5] net: vmxnet3: avoid memory leakage in activate_device
@ 2015-12-15 10:29 P J P
  2015-12-15 10:46 ` Peter Maydell
  0 siblings, 1 reply; 3+ messages in thread
From: P J P @ 2015-12-15 10:29 UTC (permalink / raw)
  To: Peter Maydell; +Cc: qemu-devel

   Hello Peter,

Patch below is reviewed and queued currently for 2.6. Could you please include 
it in 2.5?

   -> https://lists.gnu.org/archive/html/qemu-devel/2015-12/msg02352.html

===
>From 1a18f291a5d22c0dfa680cf82ada2e021e19bf97 Mon Sep 17 00:00:00 2001
From: Prasad J Pandit <pjp@fedoraproject.org>
Date: Tue, 15 Dec 2015 15:50:42 +0530
Subject: [PATCH For 2.5] net: vmxnet3: avoid memory leakage in activate_device

Vmxnet3 device emulator does not check if the device is active
before activating it, also it did not free the transmit & receive
buffers while deactivating the device, thus resulting in memory
leakage on the host. This patch fixes both these issues to avoid
host memory leakage.

Reviewed-by: Jason Wang <jasowang@redhat.com>
Reviewed-by: Dmitry Fleytman <dmitry@daynix.com>
Reported-by: Qinghao Tang <luodalongde@gmail.com>
Signed-off-by: Prasad J Pandit <pjp@fedoraproject.org>
---
  hw/net/vmxnet3.c | 24 ++++++++++++++++--------
  1 file changed, 16 insertions(+), 8 deletions(-)

diff --git a/hw/net/vmxnet3.c b/hw/net/vmxnet3.c
index 37373e5..2b4aad7 100644
--- a/hw/net/vmxnet3.c
+++ b/hw/net/vmxnet3.c
@@ -1194,8 +1194,13 @@ static void vmxnet3_reset_mac(VMXNET3State *s)

  static void vmxnet3_deactivate_device(VMXNET3State *s)
  {
-    VMW_CBPRN("Deactivating vmxnet3...");
-    s->device_active = false;
+    if (s->device_active) {
+        VMW_CBPRN("Deactivating vmxnet3...");
+        vmxnet_tx_pkt_reset(s->tx_pkt);
+        vmxnet_tx_pkt_uninit(s->tx_pkt);
+        vmxnet_rx_pkt_uninit(s->rx_pkt);
+        s->device_active = false;
+    }
  }

  static void vmxnet3_reset(VMXNET3State *s)
@@ -1204,7 +1209,6 @@ static void vmxnet3_reset(VMXNET3State *s)

      vmxnet3_deactivate_device(s);
      vmxnet3_reset_interrupt_states(s);
-    vmxnet_tx_pkt_reset(s->tx_pkt);
      s->drv_shmem = 0;
      s->tx_sop = true;
      s->skip_current_tx_pkt = false;
@@ -1431,6 +1435,12 @@ static void vmxnet3_activate_device(VMXNET3State *s)
          return;
      }

+    /* Verify if device is active */
+    if (s->device_active) {
+        VMW_CFPRN("Vmxnet3 device is active");
+        return;
+    }
+
      vmxnet3_adjust_by_guest_type(s);
      vmxnet3_update_features(s);
      vmxnet3_update_pm_state(s);
@@ -1627,7 +1637,7 @@ static void vmxnet3_handle_command(VMXNET3State *s, uint64_t cmd)
          break;

      case VMXNET3_CMD_QUIESCE_DEV:
-        VMW_CBPRN("Set: VMXNET3_CMD_QUIESCE_DEV - pause the device");
+        VMW_CBPRN("Set: VMXNET3_CMD_QUIESCE_DEV - deactivate the device");
          vmxnet3_deactivate_device(s);
          break;

@@ -1741,7 +1751,7 @@ vmxnet3_io_bar1_write(void *opaque,
           * shared address only after we get the high part
           */
          if (val == 0) {
-            s->device_active = false;
+            vmxnet3_deactivate_device(s);
          }
          s->temp_shared_guest_driver_memory = val;
          s->drv_shmem = 0;
@@ -2021,9 +2031,7 @@ static bool vmxnet3_peer_has_vnet_hdr(VMXNET3State *s)
  static void vmxnet3_net_uninit(VMXNET3State *s)
  {
      g_free(s->mcast_list);
-    vmxnet_tx_pkt_reset(s->tx_pkt);
-    vmxnet_tx_pkt_uninit(s->tx_pkt);
-    vmxnet_rx_pkt_uninit(s->rx_pkt);
+    vmxnet3_deactivate_device(s);
      qemu_del_nic(s->nic);
  }

-- 
2.4.3
===


Thank you.
--
Prasad J Pandit / Red Hat Product Security Team
47AF CE69 3A90 54AA 9045 1053 DD13 3D32 FE5B 041F

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [Qemu-devel] [PATCH For 2.5] net: vmxnet3: avoid memory leakage in activate_device
  2015-12-15 10:29 [Qemu-devel] [PATCH For 2.5] net: vmxnet3: avoid memory leakage in activate_device P J P
@ 2015-12-15 10:46 ` Peter Maydell
  2015-12-15 11:31   ` P J P
  0 siblings, 1 reply; 3+ messages in thread
From: Peter Maydell @ 2015-12-15 10:46 UTC (permalink / raw)
  To: P J P; +Cc: QEMU Developers

On 15 December 2015 at 10:29, P J P <ppandit@redhat.com> wrote:
>   Hello Peter,
>
> Patch below is reviewed and queued currently for 2.6. Could you please
> include it in 2.5?
>
>   -> https://lists.gnu.org/archive/html/qemu-devel/2015-12/msg02352.html

No, sorry. It is too late by a long way. It can be cc'd to
qemu-stable and go into 2.5.1.

thanks
-- PMM

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Qemu-devel] [PATCH For 2.5] net: vmxnet3: avoid memory leakage in activate_device
  2015-12-15 10:46 ` Peter Maydell
@ 2015-12-15 11:31   ` P J P
  0 siblings, 0 replies; 3+ messages in thread
From: P J P @ 2015-12-15 11:31 UTC (permalink / raw)
  To: Peter Maydell; +Cc: QEMU Developers

+-- On Tue, 15 Dec 2015, Peter Maydell wrote --+
| > -> https://lists.gnu.org/archive/html/qemu-devel/2015-12/msg02352.html
|
| No, sorry. It is too late by a long way. It can be cc'd to
| qemu-stable and go into 2.5.1.

  I see, okay. I'll send it there.

Thank you.
--
Prasad J Pandit / Red Hat Product Security Team
47AF CE69 3A90 54AA 9045 1053 DD13 3D32 FE5B 041F

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-12-15 11:31 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-12-15 10:29 [Qemu-devel] [PATCH For 2.5] net: vmxnet3: avoid memory leakage in activate_device P J P
2015-12-15 10:46 ` Peter Maydell
2015-12-15 11:31   ` P J P

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.