linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] usb: typec: tcpm: Fix NULL pointer dereference in tcpm_pd_svdm()
@ 2023-10-19  6:06 Jimmy Hu
  2023-10-19  8:23 ` Heikki Krogerus
  0 siblings, 1 reply; 3+ messages in thread
From: Jimmy Hu @ 2023-10-19  6:06 UTC (permalink / raw)
  To: linux, heikki.krogerus, gregkh
  Cc: kyletso, badhri, linux-usb, linux-kernel, Jimmy Hu

It is possible that typec_register_partner() returns ERR_PTR on failure.
When port->partner is an error, a NULL pointer dereference may occur as
shown below.

[91222.095236][  T319] typec port0: failed to register partner (-17)
...
[91225.061491][  T319] Unable to handle kernel NULL pointer dereference
at virtual address 000000000000039f
[91225.274642][  T319] pc : tcpm_pd_data_request+0x310/0x13fc
[91225.274646][  T319] lr : tcpm_pd_data_request+0x298/0x13fc
[91225.308067][  T319] Call trace:
[91225.308070][  T319]  tcpm_pd_data_request+0x310/0x13fc
[91225.308073][  T319]  tcpm_pd_rx_handler+0x100/0x9e8
[91225.355900][  T319]  kthread_worker_fn+0x178/0x58c
[91225.355902][  T319]  kthread+0x150/0x200
[91225.355905][  T319]  ret_from_fork+0x10/0x30

Add a check for port->partner to avoid dereferencing a NULL pointer.

Fixes: 5e1d4c49fbc8 ("usb: typec: tcpm: Determine common SVDM Version")
Signed-off-by: Jimmy Hu <hhhuuu@google.com>
---
 drivers/usb/typec/tcpm/tcpm.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/usb/typec/tcpm/tcpm.c b/drivers/usb/typec/tcpm/tcpm.c
index 6e843c511b85..792ec4ac7d8d 100644
--- a/drivers/usb/typec/tcpm/tcpm.c
+++ b/drivers/usb/typec/tcpm/tcpm.c
@@ -1625,6 +1625,9 @@ static int tcpm_pd_svdm(struct tcpm_port *port, struct typec_altmode *adev,
 			if (PD_VDO_VID(p[0]) != USB_SID_PD)
 				break;
 
+			if (IS_ERR_OR_NULL(port->partner))
+				break;
+
 			if (PD_VDO_SVDM_VER(p[0]) < svdm_version) {
 				typec_partner_set_svdm_version(port->partner,
 							       PD_VDO_SVDM_VER(p[0]));
-- 
2.42.0.655.g421f12c284-goog


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

* Re: [PATCH] usb: typec: tcpm: Fix NULL pointer dereference in tcpm_pd_svdm()
  2023-10-19  6:06 [PATCH] usb: typec: tcpm: Fix NULL pointer dereference in tcpm_pd_svdm() Jimmy Hu
@ 2023-10-19  8:23 ` Heikki Krogerus
  2023-10-20  1:24   ` Jimmy Hu
  0 siblings, 1 reply; 3+ messages in thread
From: Heikki Krogerus @ 2023-10-19  8:23 UTC (permalink / raw)
  To: Jimmy Hu; +Cc: linux, gregkh, kyletso, badhri, linux-usb, linux-kernel

On Thu, Oct 19, 2023 at 06:06:16AM +0000, Jimmy Hu wrote:
> It is possible that typec_register_partner() returns ERR_PTR on failure.
> When port->partner is an error, a NULL pointer dereference may occur as
> shown below.
> 
> [91222.095236][  T319] typec port0: failed to register partner (-17)
> ...
> [91225.061491][  T319] Unable to handle kernel NULL pointer dereference
> at virtual address 000000000000039f
> [91225.274642][  T319] pc : tcpm_pd_data_request+0x310/0x13fc
> [91225.274646][  T319] lr : tcpm_pd_data_request+0x298/0x13fc
> [91225.308067][  T319] Call trace:
> [91225.308070][  T319]  tcpm_pd_data_request+0x310/0x13fc
> [91225.308073][  T319]  tcpm_pd_rx_handler+0x100/0x9e8
> [91225.355900][  T319]  kthread_worker_fn+0x178/0x58c
> [91225.355902][  T319]  kthread+0x150/0x200
> [91225.355905][  T319]  ret_from_fork+0x10/0x30
> 
> Add a check for port->partner to avoid dereferencing a NULL pointer.
> 
> Fixes: 5e1d4c49fbc8 ("usb: typec: tcpm: Determine common SVDM Version")
> Signed-off-by: Jimmy Hu <hhhuuu@google.com>

No CC stable...?

> ---
>  drivers/usb/typec/tcpm/tcpm.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/drivers/usb/typec/tcpm/tcpm.c b/drivers/usb/typec/tcpm/tcpm.c
> index 6e843c511b85..792ec4ac7d8d 100644
> --- a/drivers/usb/typec/tcpm/tcpm.c
> +++ b/drivers/usb/typec/tcpm/tcpm.c
> @@ -1625,6 +1625,9 @@ static int tcpm_pd_svdm(struct tcpm_port *port, struct typec_altmode *adev,
>  			if (PD_VDO_VID(p[0]) != USB_SID_PD)
>  				break;
>  
> +			if (IS_ERR_OR_NULL(port->partner))
> +				break;
> +
>  			if (PD_VDO_SVDM_VER(p[0]) < svdm_version) {
>  				typec_partner_set_svdm_version(port->partner,
>  							       PD_VDO_SVDM_VER(p[0]));

-- 
heikki

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

* Re: [PATCH] usb: typec: tcpm: Fix NULL pointer dereference in tcpm_pd_svdm()
  2023-10-19  8:23 ` Heikki Krogerus
@ 2023-10-20  1:24   ` Jimmy Hu
  0 siblings, 0 replies; 3+ messages in thread
From: Jimmy Hu @ 2023-10-20  1:24 UTC (permalink / raw)
  To: Heikki Krogerus; +Cc: linux, gregkh, kyletso, badhri, linux-usb, linux-kernel

On Thu, Oct 19, 2023 at 4:24 PM Heikki Krogerus
<heikki.krogerus@linux.intel.com> wrote:
>
> On Thu, Oct 19, 2023 at 06:06:16AM +0000, Jimmy Hu wrote:
> > It is possible that typec_register_partner() returns ERR_PTR on failure.
> > When port->partner is an error, a NULL pointer dereference may occur as
> > shown below.
> >
> > [91222.095236][  T319] typec port0: failed to register partner (-17)
> > ...
> > [91225.061491][  T319] Unable to handle kernel NULL pointer dereference
> > at virtual address 000000000000039f
> > [91225.274642][  T319] pc : tcpm_pd_data_request+0x310/0x13fc
> > [91225.274646][  T319] lr : tcpm_pd_data_request+0x298/0x13fc
> > [91225.308067][  T319] Call trace:
> > [91225.308070][  T319]  tcpm_pd_data_request+0x310/0x13fc
> > [91225.308073][  T319]  tcpm_pd_rx_handler+0x100/0x9e8
> > [91225.355900][  T319]  kthread_worker_fn+0x178/0x58c
> > [91225.355902][  T319]  kthread+0x150/0x200
> > [91225.355905][  T319]  ret_from_fork+0x10/0x30
> >
> > Add a check for port->partner to avoid dereferencing a NULL pointer.
> >
> > Fixes: 5e1d4c49fbc8 ("usb: typec: tcpm: Determine common SVDM Version")
> > Signed-off-by: Jimmy Hu <hhhuuu@google.com>
>
> No CC stable...?
Added in patch v2.
>
> > ---
> >  drivers/usb/typec/tcpm/tcpm.c | 3 +++
> >  1 file changed, 3 insertions(+)
> >
> > diff --git a/drivers/usb/typec/tcpm/tcpm.c b/drivers/usb/typec/tcpm/tcpm.c
> > index 6e843c511b85..792ec4ac7d8d 100644
> > --- a/drivers/usb/typec/tcpm/tcpm.c
> > +++ b/drivers/usb/typec/tcpm/tcpm.c
> > @@ -1625,6 +1625,9 @@ static int tcpm_pd_svdm(struct tcpm_port *port, struct typec_altmode *adev,
> >                       if (PD_VDO_VID(p[0]) != USB_SID_PD)
> >                               break;
> >
> > +                     if (IS_ERR_OR_NULL(port->partner))
> > +                             break;
> > +
> >                       if (PD_VDO_SVDM_VER(p[0]) < svdm_version) {
> >                               typec_partner_set_svdm_version(port->partner,
> >                                                              PD_VDO_SVDM_VER(p[0]));
>
> --
> heikki

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

end of thread, other threads:[~2023-10-20  1:25 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-19  6:06 [PATCH] usb: typec: tcpm: Fix NULL pointer dereference in tcpm_pd_svdm() Jimmy Hu
2023-10-19  8:23 ` Heikki Krogerus
2023-10-20  1:24   ` Jimmy Hu

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).