qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] hw/usb/hcd-dwc2: fix divide-by-zero in dwc2_handle_packet()
@ 2020-10-15  7:59 Mauro Matteo Cascella
  2020-10-15 10:19 ` Gerd Hoffmann
  2020-10-15 11:02 ` Philippe Mathieu-Daudé
  0 siblings, 2 replies; 3+ messages in thread
From: Mauro Matteo Cascella @ 2020-10-15  7:59 UTC (permalink / raw)
  To: qemu-devel; +Cc: gaoning.pgn, mcascell, linyi.lxw, kraxel, pauldzim

Check the value of mps to avoid potential divide-by-zero later in the function.
Since HCCHAR_MPS is guest controllable, this prevents a malicious/buggy guest
from crashing the QEMU process on the host.

Signed-off-by: Mauro Matteo Cascella <mcascell@redhat.com>
Reviewed-by: Paul Zimmerman <pauldzim@gmail.com>
Reported-by: Gaoning Pan <gaoning.pgn@antgroup.com>
Reported-by: Xingwei Lin <linyi.lxw@antfin.com>
---
Moved check earlier in the function and added "Reviewed-by" line.

 hw/usb/hcd-dwc2.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/hw/usb/hcd-dwc2.c b/hw/usb/hcd-dwc2.c
index 97688d21bf..9856c4540c 100644
--- a/hw/usb/hcd-dwc2.c
+++ b/hw/usb/hcd-dwc2.c
@@ -245,6 +245,12 @@ static void dwc2_handle_packet(DWC2State *s, uint32_t devadr, USBDevice *dev,
     trace_usb_dwc2_handle_packet(chan, dev, &p->packet, epnum, types[eptype],
                                  dirs[epdir], mps, len, pcnt);
 
+    if (mps == 0) {
+        qemu_log_mask(LOG_GUEST_ERROR,
+                "%s: Bad HCCHAR_MPS set to zero\n", __func__);
+        return;
+    }
+
     if (eptype == USB_ENDPOINT_XFER_CONTROL && pid == TSIZ_SC_MC_PID_SETUP) {
         pid = USB_TOKEN_SETUP;
     } else {
-- 
2.26.2



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

* Re: [PATCH v2] hw/usb/hcd-dwc2: fix divide-by-zero in dwc2_handle_packet()
  2020-10-15  7:59 [PATCH v2] hw/usb/hcd-dwc2: fix divide-by-zero in dwc2_handle_packet() Mauro Matteo Cascella
@ 2020-10-15 10:19 ` Gerd Hoffmann
  2020-10-15 11:02 ` Philippe Mathieu-Daudé
  1 sibling, 0 replies; 3+ messages in thread
From: Gerd Hoffmann @ 2020-10-15 10:19 UTC (permalink / raw)
  To: Mauro Matteo Cascella; +Cc: gaoning.pgn, linyi.lxw, qemu-devel, pauldzim

On Thu, Oct 15, 2020 at 09:59:57AM +0200, Mauro Matteo Cascella wrote:
> Check the value of mps to avoid potential divide-by-zero later in the function.
> Since HCCHAR_MPS is guest controllable, this prevents a malicious/buggy guest
> from crashing the QEMU process on the host.
> 
> Signed-off-by: Mauro Matteo Cascella <mcascell@redhat.com>
> Reviewed-by: Paul Zimmerman <pauldzim@gmail.com>
> Reported-by: Gaoning Pan <gaoning.pgn@antgroup.com>
> Reported-by: Xingwei Lin <linyi.lxw@antfin.com>
> ---
> Moved check earlier in the function and added "Reviewed-by" line.

Added to usb queue.

thanks,
  Gerd



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

* Re: [PATCH v2] hw/usb/hcd-dwc2: fix divide-by-zero in dwc2_handle_packet()
  2020-10-15  7:59 [PATCH v2] hw/usb/hcd-dwc2: fix divide-by-zero in dwc2_handle_packet() Mauro Matteo Cascella
  2020-10-15 10:19 ` Gerd Hoffmann
@ 2020-10-15 11:02 ` Philippe Mathieu-Daudé
  1 sibling, 0 replies; 3+ messages in thread
From: Philippe Mathieu-Daudé @ 2020-10-15 11:02 UTC (permalink / raw)
  To: Mauro Matteo Cascella
  Cc: gaoning.pgn, Paul Zimmerman, Gerd Hoffmann, QEMU Developers,
	Xingwei Lin

On Thu, Oct 15, 2020 at 10:03 AM Mauro Matteo Cascella
<mcascell@redhat.com> wrote:
>
> Check the value of mps to avoid potential divide-by-zero later in the function.
> Since HCCHAR_MPS is guest controllable, this prevents a malicious/buggy guest
> from crashing the QEMU process on the host.
>
> Signed-off-by: Mauro Matteo Cascella <mcascell@redhat.com>
> Reviewed-by: Paul Zimmerman <pauldzim@gmail.com>
> Reported-by: Gaoning Pan <gaoning.pgn@antgroup.com>
> Reported-by: Xingwei Lin <linyi.lxw@antfin.com>

Maybe also the implicit
Tested-by: Paul Zimmerman <pauldzim@gmail.com>
from:
https://lists.gnu.org/archive/html/qemu-devel/2020-10/msg04254.html

> ---
> Moved check earlier in the function and added "Reviewed-by" line.
>
>  hw/usb/hcd-dwc2.c | 6 ++++++
>  1 file changed, 6 insertions(+)
>
> diff --git a/hw/usb/hcd-dwc2.c b/hw/usb/hcd-dwc2.c
> index 97688d21bf..9856c4540c 100644
> --- a/hw/usb/hcd-dwc2.c
> +++ b/hw/usb/hcd-dwc2.c
> @@ -245,6 +245,12 @@ static void dwc2_handle_packet(DWC2State *s, uint32_t devadr, USBDevice *dev,
>      trace_usb_dwc2_handle_packet(chan, dev, &p->packet, epnum, types[eptype],
>                                   dirs[epdir], mps, len, pcnt);
>
> +    if (mps == 0) {
> +        qemu_log_mask(LOG_GUEST_ERROR,
> +                "%s: Bad HCCHAR_MPS set to zero\n", __func__);
> +        return;
> +    }
> +
>      if (eptype == USB_ENDPOINT_XFER_CONTROL && pid == TSIZ_SC_MC_PID_SETUP) {
>          pid = USB_TOKEN_SETUP;
>      } else {
> --
> 2.26.2
>
>



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

end of thread, other threads:[~2020-10-15 11:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-10-15  7:59 [PATCH v2] hw/usb/hcd-dwc2: fix divide-by-zero in dwc2_handle_packet() Mauro Matteo Cascella
2020-10-15 10:19 ` Gerd Hoffmann
2020-10-15 11:02 ` Philippe Mathieu-Daudé

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).