From: Prashanth K <quic_prashk@quicinc.com>
To: "Michael Nazzareno Trimarchi" <michael@amarulasolutions.com>,
胡连勤 <hulianqin@vivo.com>
Cc: "gregkh@linuxfoundation.org" <gregkh@linuxfoundation.org>,
"quic_jjohnson@quicinc.com" <quic_jjohnson@quicinc.com>,
"linux-usb@vger.kernel.org" <linux-usb@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
opensource.kernel <opensource.kernel@vivo.com>,
"akpm@linux-foundation.org" <akpm@linux-foundation.org>
Subject: Re: [PATCH v6] usb: gadget: u_serial: Add null pointer check in gs_read_complete & gs_write_complete
Date: Fri, 23 Aug 2024 13:04:18 +0530 [thread overview]
Message-ID: <8ab0ca38-1bf4-ed3e-eef0-cbed2a524b34@quicinc.com> (raw)
In-Reply-To: <CAOf5uwnz01F28kw12ZN5k3usTcCBMKpFJpAXTaYBZ_3zgWQU3Q@mail.gmail.com>
On 23-08-24 12:28 pm, Michael Nazzareno Trimarchi wrote:
> Hi
>
> On Fri, Aug 23, 2024 at 8:40 AM 胡连勤 <hulianqin@vivo.com> wrote:
>>
>> Hello linux community expert:
>>
>>>> Fixes: c1dca562be8a ("usb gadget: split out serial core")
>>>> Cc: stable@vger.kernel.org
>>>> Signed-off-by: Lianqin Hu <hulianqin@vivo.com>
>>>> ---
>>>> v6:
>>>> - Update the commit text
>>>> - Add the Fixes tag
>>>> - CC stable kernel
>>>> - Add serial_port_lock protection when checking port pointer
>>>> - Optimize code comments
>>>> - Delete log printing
>>
>>> You need to list ALL of the versions here, I seem to have missed v4 and
>>> v5 somewhere so I don't know what changed there.
>>
[...]
>>> nested spinlocks, why? Did you run this with lockdep enabled to verify you aren't hitting a different bug now?
>> Because there is a competition relationship between this function and the gserial_disconnect function,
>> the gserial_disconnect function first obtains serial_port_lock and then obtains port->port_lock.
>> The purpose of nesting is to ensure that when gs_read_complete is executed, it can be successfully executed after obtaining serial_port_lock.
>> gserial_disconnect(..)
>> {
>> struct gs_port *port = gser->ioport;
>> ...
>> spin_lock_irqsave(&serial_port_lock, flags);
>> spin_lock(&port->port_lock);
>> ...
>> gser->ioport = NULL; ---> port = NULL;
>> ...
>> spin_unlock(&port->port_lock);
>> spin_unlock_irqrestore(&serial_port_lock, flags);
>> }
>>
>> After enabling the lockdep function (CONFIG_DEBUG_LOCK_ALLOC=y), there is no lockdep-related warning information.
>>
>>> And why is one irqsave and one not? That feels odd, it might be right, but you need to document here why the difference.
>> After the gs_read_complete function is executed, spin_unlock_irqrestore is used to restore the previous state,
>
> 胡连勤 this is not a common locking pattern that is the reason that
> should be properly described.
This pattern was already used on gser_suspend/resume callbacks, this was
done because the lock was stored under port (and port itself was
becoming null), hence we added a static spinlock to mitigate it.
>
>> - /* Queue all received data until the tty layer is ready for it. */
>> spin_lock(&port->port_lock);
>> + spin_unlock(&serial_port_lock);
>> +
>> + /* Queue all received data until the tty layer is ready for it. */
>> list_add_tail(&req->list, &port->read_queue);
>> schedule_delayed_work(&port->push, 0);
>> - spin_unlock(&port->port_lock);
>> + spin_unlock_irqrestore(&port->port_lock, flags); ---> Here we use spin_unlock_irqrestore to restore the state
>> }
>>
>> Thanks
>
> Thank you
next prev parent reply other threads:[~2024-08-23 7:34 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-22 2:34 胡连勤
2024-08-22 8:02 ` gregkh
2024-08-23 6:40 ` 答复: " 胡连勤
2024-08-23 6:58 ` Michael Nazzareno Trimarchi
2024-08-23 7:34 ` Prashanth K [this message]
2024-08-23 7:57 ` Michael Nazzareno Trimarchi
2024-08-23 9:25 ` Prashanth K
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=8ab0ca38-1bf4-ed3e-eef0-cbed2a524b34@quicinc.com \
--to=quic_prashk@quicinc.com \
--cc=akpm@linux-foundation.org \
--cc=gregkh@linuxfoundation.org \
--cc=hulianqin@vivo.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=michael@amarulasolutions.com \
--cc=opensource.kernel@vivo.com \
--cc=quic_jjohnson@quicinc.com \
/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
all inboxes | Powered by JetHome®