From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Cc: Guenter Roeck <linux@roeck-us.net>,
Douglas Gilbert <dgilbert@interlog.com>,
linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [RFC PATCH] usb: typec: tcpm: Ignore unsupported/unknown alternate mode requests
Date: Thu, 1 Aug 2019 18:07:09 +0200 [thread overview]
Message-ID: <20190801160709.GA20933@kroah.com> (raw)
In-Reply-To: <20190731095555.GN28600@kuha.fi.intel.com>
On Wed, Jul 31, 2019 at 12:55:55PM +0300, Heikki Krogerus wrote:
> On Tue, Jul 30, 2019 at 06:28:52AM -0700, Guenter Roeck wrote:
> > On 7/30/19 5:07 AM, Heikki Krogerus wrote:
> > > On Mon, Jul 29, 2019 at 10:31:04AM -0700, Guenter Roeck wrote:
> > > > On Mon, Jul 29, 2019 at 05:04:57PM +0300, Heikki Krogerus wrote:
> > > > > Hi,
> > > > >
> > > > > On Wed, Jul 24, 2019 at 09:30:37PM -0700, Guenter Roeck wrote:
> > > > > > TCPM may receive PD messages associated with unknown or unsupported
> > > > > > alternate modes. If that happens, calls to typec_match_altmode()
> > > > > > will return NULL. The tcpm code does not currently take this into
> > > > > > account. This results in crashes.
> > > > > >
> > > > > > Unable to handle kernel NULL pointer dereference at virtual address 000001f0
> > > > > > pgd = 41dad9a1
> > > > > > [000001f0] *pgd=00000000
> > > > > > Internal error: Oops: 5 [#1] THUMB2
> > > > > > Modules linked in: tcpci tcpm
> > > > > > CPU: 0 PID: 2338 Comm: kworker/u2:0 Not tainted 5.1.18-sama5-armv7-r2 #6
> > > > > > Hardware name: Atmel SAMA5
> > > > > > Workqueue: 2-0050 tcpm_pd_rx_handler [tcpm]
> > > > > > PC is at typec_altmode_attention+0x0/0x14
> > > > > > LR is at tcpm_pd_rx_handler+0xa3b/0xda0 [tcpm]
> > > > > > ...
> > > > > > [<c03fbee8>] (typec_altmode_attention) from [<bf8030fb>]
> > > > > > (tcpm_pd_rx_handler+0xa3b/0xda0 [tcpm])
> > > > > > [<bf8030fb>] (tcpm_pd_rx_handler [tcpm]) from [<c012082b>]
> > > > > > (process_one_work+0x123/0x2a8)
> > > > > > [<c012082b>] (process_one_work) from [<c0120a6d>]
> > > > > > (worker_thread+0xbd/0x3b0)
> > > > > > [<c0120a6d>] (worker_thread) from [<c012431f>] (kthread+0xcf/0xf4)
> > > > > > [<c012431f>] (kthread) from [<c01010f9>] (ret_from_fork+0x11/0x38)
> > > > > >
> > > > > > Ignore PD messages if the asociated alternate mode is not supported.
> > > > > >
> > > > > > Reported-by: Douglas Gilbert <dgilbert@interlog.com>
> > > > > > Cc: Douglas Gilbert <dgilbert@interlog.com>
> > > > > > Fixes: e9576fe8e605c ("usb: typec: tcpm: Support for Alternate Modes")
> > > > > > Signed-off-by: Guenter Roeck <linux@roeck-us.net>
> > > > > > ---
> > > > > > Taking a stab at the problem. I don't really know if this is the correct
> > > > > > fix, or even if my understanding of the problem is correct, thus marking
> > > > > > the patch as RFC.
> > > > >
> > > > > My guess is that typec_match_altmode() is the real culprit. We can't
> > > > > rely on the partner mode index number when identifying the port alt
> > > > > mode.
> > > > >
> > > > > Douglas, can you test the attached hack instead of this patch?
> > > > >
> > > > >
> > > > > thanks,
> > > > >
> > > > > --
> > > > > heikki
> > > >
> > > > > diff --git a/drivers/usb/typec/tcpm/tcpm.c b/drivers/usb/typec/tcpm/tcpm.c
> > > > > index ec525811a9eb..033dc097ba83 100644
> > > > > --- a/drivers/usb/typec/tcpm/tcpm.c
> > > > > +++ b/drivers/usb/typec/tcpm/tcpm.c
> > > > > @@ -1067,12 +1067,11 @@ static int tcpm_pd_svdm(struct tcpm_port *port, const __le32 *payload, int cnt,
> > > > > modep = &port->mode_data;
> > > > > - adev = typec_match_altmode(port->port_altmode, ALTMODE_DISCOVERY_MAX,
> > > > > - PD_VDO_VID(p[0]), PD_VDO_OPOS(p[0]));
> > > > > -
> > > > > pdev = typec_match_altmode(port->partner_altmode, ALTMODE_DISCOVERY_MAX,
> > > > > PD_VDO_VID(p[0]), PD_VDO_OPOS(p[0]));
> > > > > + adev = (void *)typec_altmode_get_partner(pdev);
> > > > > +
> > > >
> > > > I understand that typec_altmode_get_partner() returns a const *;
> > > > maybe adev should be declared as const struct typec_altmode *
> > > > instead of using a typecast.
> > >
> > > Yes...
> > >
> > > > Also, typec_altmode_get_partner() can return NULL as well if pdev is NULL.
> > > > Is it guaranteed that typec_match_altmode() never returns NULL for pdev ?
> > >
> > > ...and probable no. But I don't think we can receive Attention to a
> > > mode that hasn't been entered.
> > >
> >
> > If I understand correctly, the Attention was generated by a test system.
> > What prevents badly implemented code in the connected system from sending
> > such an Attention message ?
>
> Oh, if that is the case, then I don't think my change has any effect.
> I misunderstood the scenario. Sorry for that.
>
> I think we should use your patch to fix this issue.
So is this an "ack"? I'm confused as to if this patch should be applied
or not...
thanks,
greg k-h
next prev parent reply other threads:[~2019-08-01 16:07 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-07-25 4:30 [RFC PATCH] usb: typec: tcpm: Ignore unsupported/unknown alternate mode requests Guenter Roeck
2019-07-26 15:21 ` Douglas Gilbert
2019-07-29 14:04 ` Heikki Krogerus
2019-07-29 17:31 ` Guenter Roeck
2019-07-30 12:07 ` Heikki Krogerus
2019-07-30 12:17 ` Douglas Gilbert
2019-07-30 13:28 ` Guenter Roeck
2019-07-31 9:55 ` Heikki Krogerus
2019-08-01 16:07 ` Greg Kroah-Hartman [this message]
2019-08-02 8:01 ` Heikki Krogerus
2019-08-02 11:42 ` Greg Kroah-Hartman
2019-08-02 15:25 ` Douglas Gilbert
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=20190801160709.GA20933@kroah.com \
--to=gregkh@linuxfoundation.org \
--cc=dgilbert@interlog.com \
--cc=heikki.krogerus@linux.intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=linux@roeck-us.net \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.