qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 2/3] scsi: megasas: initialise local configurati


From: Alexander Graf
Subject: Re: [Qemu-devel] [PATCH 2/3] scsi: megasas: initialise local configuration data buffer
Date: Wed, 25 May 2016 13:15:43 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0

On 05/25/2016 12:31 PM, P J P wrote:
From: Prasad J Pandit <address@hidden>

When reading MegaRAID SAS controller configuration via MegaRAID
Firmware Interface(MFI) commands, routine megasas_dcmd_cfg_read
uses an uninitialised local data buffer. Initialise this buffer
to avoid stack information leakage.

Reported-by: Li Qiang <address@hidden>
Signed-off-by: Prasad J Pandit <address@hidden>
---
  hw/scsi/megasas.c | 1 +
  1 file changed, 1 insertion(+)

diff --git a/hw/scsi/megasas.c b/hw/scsi/megasas.c
index dcbd3e1..7c08932 100644
--- a/hw/scsi/megasas.c
+++ b/hw/scsi/megasas.c
@@ -1305,6 +1305,7 @@ static int megasas_dcmd_cfg_read(MegasasState *s, 
MegasasCmd *cmd)
      QTAILQ_FOREACH(kid, &s->bus.qbus.children, sibling) {
          num_pd_disks++;
      }
+    memset(data, 0, sizeof(data));

Just replace the variable declaration with

  uint8_t data[4096] = "";

or

  uint8_t data[4096] = { 0 };

That should automatically get you a fully zeroed frame on the stack.


Alex

      info = (struct mfi_config_data *)&data;
      /*
       * Array mapping:




reply via email to

[Prev in Thread] Current Thread [Next in Thread]