From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38827) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gUqH5-0004yy-Mi for qemu-devel@nongnu.org; Thu, 06 Dec 2018 04:48:52 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gUqH1-00012M-8O for qemu-devel@nongnu.org; Thu, 06 Dec 2018 04:48:51 -0500 Received: from mx1.redhat.com ([209.132.183.28]:60452) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gUqH1-00011t-1T for qemu-devel@nongnu.org; Thu, 06 Dec 2018 04:48:47 -0500 Date: Thu, 6 Dec 2018 10:48:38 +0100 From: Igor Mammedov Message-ID: <20181206104838.51060074@redhat.com> In-Reply-To: <20181206084816.30485-1-ppandit@redhat.com> References: <20181206084816.30485-1-ppandit@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] i2c: pm_smbus: check smb_index before block transfer write List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: P J P Cc: Qemu Developers , Paolo Bonzini , Michael Hanselmann , Prasad J Pandit , "Michael S . Tsirkin" , Peter Maydell On Thu, 6 Dec 2018 14:18:16 +0530 P J P wrote: > From: Prasad J Pandit > > While performing block transfer write in smb_ioport_writeb(), > 'smb_index' is incremented and used to index smb_data[] array. > Check 'smb_index' value to avoid OOB access. > > Reported-by: Michael Hanselmann > Signed-off-by: Prasad J Pandit Reviewed-by: Igor Mammedov Peter, is it possible for fix to make into 3.1? > --- > hw/i2c/pm_smbus.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/hw/i2c/pm_smbus.c b/hw/i2c/pm_smbus.c > index 685a2378ed..03062740cc 100644 > --- a/hw/i2c/pm_smbus.c > +++ b/hw/i2c/pm_smbus.c > @@ -240,6 +240,9 @@ static void smb_ioport_writeb(void *opaque, hwaddr addr, uint64_t val, > uint8_t read = s->smb_addr & 0x01; > > s->smb_index++; > + if (s->smb_index >= PM_SMBUS_MAX_MSG_SIZE) { > + s->smb_index = 0; > + } > if (!read && s->smb_index == s->smb_data0) { > uint8_t prot = (s->smb_ctl >> 2) & 0x07; > uint8_t cmd = s->smb_cmd;