lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:   Fri, 6 May 2022 15:15:16 +0800
From:   Dongliang Mu <mudongliangabcd@...il.com>
To:     Jiri Kosina <jikos@...nel.org>
Cc:     Dongliang Mu <dzm91@...t.edu.cn>,
        Benjamin Tissoires <benjamin.tissoires@...hat.com>,
        syzkaller <syzkaller@...glegroups.com>,
        linux-input@...r.kernel.org,
        linux-kernel <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] HID: bigben: fix slab-out-of-bounds Write in bigben_probe

On Fri, May 6, 2022 at 2:53 PM Jiri Kosina <jikos@...nel.org> wrote:
>
> On Fri, 6 May 2022, Dongliang Mu wrote:
>
> > From: Dongliang Mu <mudongliangabcd@...il.com>
> >
> > There is a slab-out-of-bounds Write bug in hid-bigbenff driver.
> > The problem is the driver assumes the device must have an input but
> > some malicious devices violate this assumption.
> >
> > Fix this by checking hid_device's input is non-empty before its usage.
> >
> > Reported-by: syzkaller <syzkaller@...glegroups.com>
> > Signed-off-by: Dongliang Mu <mudongliangabcd@...il.com>
> > ---
> >  drivers/hid/hid-bigbenff.c | 5 +++++
> >  1 file changed, 5 insertions(+)
> >
> > diff --git a/drivers/hid/hid-bigbenff.c b/drivers/hid/hid-bigbenff.c
> > index 74ad8bf98bfd..c14d1774101d 100644
> > --- a/drivers/hid/hid-bigbenff.c
> > +++ b/drivers/hid/hid-bigbenff.c
> > @@ -347,6 +347,11 @@ static int bigben_probe(struct hid_device *hid,
> >       bigben->report = list_entry(report_list->next,
> >               struct hid_report, list);
> >
> > +     if (list_empty(&hid->inputs)) {
> > +             hid_err(hid, "no inputs found\n");
> > +             return -ENODEV;
> > +     }
> > +
>
> Thanks for the fix. It doesn't seemt o be fully correct though -- as you'd
> be returning -ENODEV here in the situation when hid_hw_start() has already
> happened. So I believe better thing to do here is to do error = -ENODEV;
> goto error_hw_stop;
>
> Could you please fix that up and resend? Thanks,

Oh, yes. I will send a v2 version ASAP.
>
> --
> Jiri Kosina
> SUSE Labs
>

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ