From: Greg KH <gregkh@linuxfoundation.org>
To: Jia-Ju Bai <baijiaju1990@gmail.com>
Cc: davem@davemloft.net, kuba@kernel.org,
christophe.jaillet@wanadoo.fr, leon@kernel.org,
tglx@linutronix.de, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [BUG] net: chelsio: Possible buffer overflow caused by DMA failures/attacks
Date: Tue, 5 May 2020 19:02:33 +0200 [thread overview]
Message-ID: <20200505170233.GA1114580@kroah.com> (raw)
In-Reply-To: <95e19362-b9c9-faf9-3f9e-f6f4c65a6aff@gmail.com>
On Tue, May 05, 2020 at 11:50:28PM +0800, Jia-Ju Bai wrote:
> In alloc_rx_resources():
> sge->respQ.entries =
> pci_alloc_consistent(pdev, size, &sge->respQ.dma_addr);
>
> Thus, "sge->respQ.entries" is a DMA value, and it is assigned to
> "e" in process_pure_responses():
> struct sge *sge = adapter->sge;
> struct respQ *q = &sge->respQ;
> struct respQ_e *e = &q->entries[q->cidx];
>
> When DMA failures or attacks occur, the data stored in "e" can be
> changed at any time. In this case, the value of "e->FreelistQid"
> can be a large number to cause buffer overflow when the
> following code is executed:
> const struct freelQ *fl = &sge->freelQ[e->FreelistQid];
>
> Similarly, "sge->respQ.entries" is also assigned to "e" in
> process_responses():
> struct sge *sge = adapter->sge;
> struct respQ *q = &sge->respQ;
> struct respQ_e *e = &q->entries[q->cidx];
>
> When DMA failures or attacks occur, the data stored in "e" can be
> changed at any time. In this case, the value of "e->FreelistQid"
> can be a large number to cause buffer overflow when the
> following code is executed:
> struct freelQ *fl = &sge->freelQ[e->FreelistQid];
>
> Considering that DMA can fail or be attacked, I think that it is dangerous
> to
> use a DMA value (or any value tainted by it) as an array index or a
> control-flow
> condition. However, I have found many such dangerous cases in Linux device
> drivers
> through my static-analysis tool and code review.
> I am not sure whether my opinion is correct, so I want to listen to your
> points of view.
Can you create a patch to show what you think needs to be fixed? That's
the best way to get feedback, reports like this are usually very
infrequently replied to.
thanks,
greg k-h
prev parent reply other threads:[~2020-05-05 17:02 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-05-05 15:50 [BUG] net: chelsio: Possible buffer overflow caused by DMA failures/attacks Jia-Ju Bai
2020-05-05 17:02 ` Greg KH [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200505170233.GA1114580@kroah.com \
--to=gregkh@linuxfoundation.org \
--cc=baijiaju1990@gmail.com \
--cc=christophe.jaillet@wanadoo.fr \
--cc=davem@davemloft.net \
--cc=kuba@kernel.org \
--cc=leon@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=tglx@linutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox