From: Krishna Kurapati PSSNV <quic_kriskura@quicinc.com>
To: "Maciej Żenczykowski" <maze@google.com>,
"Greg Kroah-Hartman" <gregkh@linuxfoundation.org>
Cc: <linux-usb@vger.kernel.org>, <quic_ppratap@quicinc.com>,
<quic_wcheng@quicinc.com>, <quic_jackp@quicinc.com>
Subject: Re: [RFC PATCH] usb: gadget: ncm: Fix handling of zero block length packets
Date: Thu, 29 Feb 2024 11:09:21 +0530 [thread overview]
Message-ID: <d3c5d9bd-07ec-4e6d-b0dd-2a7a76e0d4f9@quicinc.com> (raw)
In-Reply-To: <99d284b3-3ddb-4928-b4c2-817acc76c241@quicinc.com>
On 2/27/2024 8:10 AM, Krishna Kurapati PSSNV wrote:
>
>>
>> In general this is of course fine (though see Greg's auto-complaint).
>>
>> I haven't thought too much about this, but I just wonder whether the
>> check for block_len == 0
>> shouldn't be just after block_len is read, ie. somewhere just after:
>>
>> block_len = get_ncm(&tmp, opts->block_length);
>>
>> as it is kind of weird to be handling block_len == 0 at the point where
>> you are already theoretically done processing the block...
>>
>> I guess, as is, this assumes the block isn't actually of length 0,
>> since there's a bunch of following get_ncm() calls...
>> Are those guaranteed to be valid?
>>
>
> I did get this doubt and tried it. I bailed out as soon as I found out
> block len is zero without actually processing the datagrams present and
> when I did that even ping doesn't work. Everything works only when the
> datagrams in this zero block len NTB are parsed properly.
>
>> I guess I don't actually see the infinite loop with block_len == 0,
>> since get_ncm() always moves us forward...
>>
>
> The infinite loop occurs because we keep moving the buffer pointer
> forward and keep processing the giveback until to_process variable
> becomes zero or one. In case block length is zero, we never move the
> buffer pointer forward and never reduce to_process variable and hence
> keep infinitely processing the same NTB over and over again.
>
>> Maybe your patch *is* correct as is, and you just need a comment
>> explaining *why* block_len == 0 is terminal at the spot you're adding
>> the check.
>>
>> Also couldn't you fix this without goto, by changing
>>
>> } else if (to_process > 0) {
>> to
>> } else if (to_process && block_len) {
>> // See NCM spec. zero block_len means short packet.
>>
>
> I will test this out once (although I know that looking at it, it would
> definitely work) and send v2 with this diff.
>
> Thanks for the review.
>
Hi Maciej, Greg,
Thanks for approving v2.
Not sure if this is the right forum to ask this question, but had one
query. In the NCM driver, the register_netdev is called during bind but
the cleanup for that is called during free_inst. Meaning if usb0
interface is created for ncm on bind or a composition switch into NCM
(first comp switch after bootup), then it is removed only after removing
the entire g1/functions/ncm.0 folder.
Shouldn't we cleanup and remove the usb0 interface in unbind as a
counter operation of bind ? By extension this question also applies to
f_eem/ f_ecm/ f_rndis where it was done in similar manner. So was
wondering if anyone could help me with info on why it was designed that way.
Regards,
Krishna,
prev parent reply other threads:[~2024-02-29 5:39 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-26 11:28 [RFC PATCH] usb: gadget: ncm: Fix handling of zero block length packets Krishna Kurapati
2024-02-26 13:13 ` Greg Kroah-Hartman
2024-02-26 21:56 ` Maciej Żenczykowski
2024-02-27 2:40 ` Krishna Kurapati PSSNV
2024-02-29 5:39 ` Krishna Kurapati PSSNV [this message]
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=d3c5d9bd-07ec-4e6d-b0dd-2a7a76e0d4f9@quicinc.com \
--to=quic_kriskura@quicinc.com \
--cc=gregkh@linuxfoundation.org \
--cc=linux-usb@vger.kernel.org \
--cc=maze@google.com \
--cc=quic_jackp@quicinc.com \
--cc=quic_ppratap@quicinc.com \
--cc=quic_wcheng@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