linux-hyperv.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [bug report] hv_netvsc: Copy packets sent by Hyper-V out of the receive buffer
@ 2021-02-03 10:10 Dan Carpenter
  2021-02-03 10:45 ` Andrea Parri
  0 siblings, 1 reply; 3+ messages in thread
From: Dan Carpenter @ 2021-02-03 10:10 UTC (permalink / raw)
  To: parri.andrea; +Cc: linux-hyperv

Hello Andrea Parri (Microsoft),

This is a semi-automatic email about new static checker warnings.

The patch 0ba35fe91ce3: "hv_netvsc: Copy packets sent by Hyper-V out
of the receive buffer" from Jan 26, 2021, leads to the following
Smatch complaint:

    drivers/net/hyperv/rndis_filter.c:468 rsc_add_data()
    error: we previously assumed 'csum_info' could be null (see line 460)

drivers/net/hyperv/rndis_filter.c
   459			}
   460			if (csum_info != NULL) {
                            ^^^^^^^^^^^^^^^^^
"csum_info" can be NULL.

   461				memcpy(&nvchan->rsc.csum_info, csum_info, sizeof(*csum_info));
   462				nvchan->rsc.ppi_flags |= NVSC_RSC_CSUM_INFO;
   463			} else {
   464				nvchan->rsc.ppi_flags &= ~NVSC_RSC_CSUM_INFO;
   465			}
   466			nvchan->rsc.pktlen = len;
   467			if (hash_info != NULL) {
   468				nvchan->rsc.csum_info = *csum_info;
                                                        ^^^^^^^^^^^
Unchecked dereference.  Plus this has "csum_info" on both sides of the
assignment so maybe it is a copy and paste error?  This is equivalent to
the "memcpy(&nvchan->rsc.csum_info, csum_info, sizeof(*csum_info));"
in the ealier if statement but stated as an assignment instead of a
memcpy().

   469				nvchan->rsc.ppi_flags |= NVSC_RSC_HASH_INFO;
   470			} else {

regards,
dan carpenter

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

* Re: [bug report] hv_netvsc: Copy packets sent by Hyper-V out of the receive buffer
  2021-02-03 10:10 [bug report] hv_netvsc: Copy packets sent by Hyper-V out of the receive buffer Dan Carpenter
@ 2021-02-03 10:45 ` Andrea Parri
  2021-02-03 14:37   ` Andrea Parri
  0 siblings, 1 reply; 3+ messages in thread
From: Andrea Parri @ 2021-02-03 10:45 UTC (permalink / raw)
  To: Dan Carpenter; +Cc: linux-hyperv

Hi Dan,

On Wed, Feb 03, 2021 at 01:10:41PM +0300, Dan Carpenter wrote:
> Hello Andrea Parri (Microsoft),
> 
> This is a semi-automatic email about new static checker warnings.
> 
> The patch 0ba35fe91ce3: "hv_netvsc: Copy packets sent by Hyper-V out
> of the receive buffer" from Jan 26, 2021, leads to the following
> Smatch complaint:
> 
>     drivers/net/hyperv/rndis_filter.c:468 rsc_add_data()
>     error: we previously assumed 'csum_info' could be null (see line 460)
> 
> drivers/net/hyperv/rndis_filter.c
>    459			}
>    460			if (csum_info != NULL) {
>                             ^^^^^^^^^^^^^^^^^
> "csum_info" can be NULL.
> 
>    461				memcpy(&nvchan->rsc.csum_info, csum_info, sizeof(*csum_info));
>    462				nvchan->rsc.ppi_flags |= NVSC_RSC_CSUM_INFO;
>    463			} else {
>    464				nvchan->rsc.ppi_flags &= ~NVSC_RSC_CSUM_INFO;
>    465			}
>    466			nvchan->rsc.pktlen = len;
>    467			if (hash_info != NULL) {
>    468				nvchan->rsc.csum_info = *csum_info;
>                                                         ^^^^^^^^^^^
> Unchecked dereference.  Plus this has "csum_info" on both sides of the
> assignment so maybe it is a copy and paste error?  This is equivalent to
> the "memcpy(&nvchan->rsc.csum_info, csum_info, sizeof(*csum_info));"
> in the ealier if statement but stated as an assignment instead of a
> memcpy().

Right, I did realize about the error and I'm about to send a fix for it.

Thank you for the report,

  Andrea

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

* Re: [bug report] hv_netvsc: Copy packets sent by Hyper-V out of the receive buffer
  2021-02-03 10:45 ` Andrea Parri
@ 2021-02-03 14:37   ` Andrea Parri
  0 siblings, 0 replies; 3+ messages in thread
From: Andrea Parri @ 2021-02-03 14:37 UTC (permalink / raw)
  To: Dan Carpenter; +Cc: linux-hyperv

On Wed, Feb 03, 2021 at 11:45:44AM +0100, Andrea Parri wrote:
> Hi Dan,
> 
> On Wed, Feb 03, 2021 at 01:10:41PM +0300, Dan Carpenter wrote:
> > Hello Andrea Parri (Microsoft),
> > 
> > This is a semi-automatic email about new static checker warnings.
> > 
> > The patch 0ba35fe91ce3: "hv_netvsc: Copy packets sent by Hyper-V out
> > of the receive buffer" from Jan 26, 2021, leads to the following
> > Smatch complaint:
> > 
> >     drivers/net/hyperv/rndis_filter.c:468 rsc_add_data()
> >     error: we previously assumed 'csum_info' could be null (see line 460)
> > 
> > drivers/net/hyperv/rndis_filter.c
> >    459			}
> >    460			if (csum_info != NULL) {
> >                             ^^^^^^^^^^^^^^^^^
> > "csum_info" can be NULL.
> > 
> >    461				memcpy(&nvchan->rsc.csum_info, csum_info, sizeof(*csum_info));
> >    462				nvchan->rsc.ppi_flags |= NVSC_RSC_CSUM_INFO;
> >    463			} else {
> >    464				nvchan->rsc.ppi_flags &= ~NVSC_RSC_CSUM_INFO;
> >    465			}
> >    466			nvchan->rsc.pktlen = len;
> >    467			if (hash_info != NULL) {
> >    468				nvchan->rsc.csum_info = *csum_info;
> >                                                         ^^^^^^^^^^^
> > Unchecked dereference.  Plus this has "csum_info" on both sides of the
> > assignment so maybe it is a copy and paste error?  This is equivalent to
> > the "memcpy(&nvchan->rsc.csum_info, csum_info, sizeof(*csum_info));"
> > in the ealier if statement but stated as an assignment instead of a
> > memcpy().
> 
> Right, I did realize about the error and I'm about to send a fix for it.

For reference,

  https://lkml.kernel.org/r/20210203113513.558864-3-parri.andrea@gmail.com/

  Andrea

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

end of thread, other threads:[~2021-02-03 14:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-03 10:10 [bug report] hv_netvsc: Copy packets sent by Hyper-V out of the receive buffer Dan Carpenter
2021-02-03 10:45 ` Andrea Parri
2021-02-03 14:37   ` Andrea Parri

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