public inbox for linux-can@vger.kernel.org
 help / color / mirror / Atom feed
From: Kees Cook <keescook@chromium.org>
To: Marc Kleine-Budde <mkl@pengutronix.de>
Cc: linux-can@vger.kernel.org,
	Torin Cooper-Bennun <torin@maxiluxsystems.com>
Subject: Re: [PATCH] can: m_can: m_can_receive_skb(): add missing error handling to can_rx_offload_queue_sorted() call
Date: Thu, 1 Apr 2021 13:40:16 -0700	[thread overview]
Message-ID: <202104011340.00B25B1656@keescook> (raw)
In-Reply-To: <20210401084515.1455013-1-mkl@pengutronix.de>

On Thu, Apr 01, 2021 at 10:45:15AM +0200, Marc Kleine-Budde wrote:
> In commit 1be37d3b0414 ("can: m_can: fix periph RX path: use
> rx-offload to ensure skbs are sent from softirq context") the RX path
> for peripherals (i.e. SPI based m_can controllers) was converted to
> the rx-offload infrastructure. However, the error handling for
> can_rx_offload_queue_sorted() was forgotten.
> can_rx_offload_queue_sorted() will return with an error if the
> internal queue is full.
> 
> This patch adds the missing error handling, by increasing the
> rx_fifo_errors.
> 
> Fixes: 1be37d3b0414 ("can: m_can: fix periph RX path: use rx-offload to ensure skbs are sent from softirq context")
> Reported-by: coverity-bot <keescook+coverity-bot@chromium.org>
> Addresses-Coverity-ID: 1503583 ("Error handling issues")
> Cc: Torin Cooper-Bennun <torin@maxiluxsystems.com>
> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>

Thanks for the fix!

Reviewed-by: Kees Cook <keescook@chromium.org>

-Kees

> ---
>  drivers/net/can/m_can/m_can.c | 13 ++++++++++---
>  1 file changed, 10 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/net/can/m_can/m_can.c b/drivers/net/can/m_can/m_can.c
> index 890ed826a355..9df1ba1f2d04 100644
> --- a/drivers/net/can/m_can/m_can.c
> +++ b/drivers/net/can/m_can/m_can.c
> @@ -466,10 +466,17 @@ static void m_can_receive_skb(struct m_can_classdev *cdev,
>  			      struct sk_buff *skb,
>  			      u32 timestamp)
>  {
> -	if (cdev->is_peripheral)
> -		can_rx_offload_queue_sorted(&cdev->offload, skb, timestamp);
> -	else
> +	if (cdev->is_peripheral) {
> +		struct net_device_stats *stats = &cdev->net->stats;
> +		int err;
> +		
> +		err = can_rx_offload_queue_sorted(&cdev->offload, skb,
> +						  timestamp);
> +		if (err)
> +			stats->rx_fifo_errors++;
> +	} else {
>  		netif_receive_skb(skb);
> +	}
>  }
>  
>  static void m_can_read_fifo(struct net_device *dev, u32 rxfs)
> -- 
> 2.30.2
> 
> 

-- 
Kees Cook

      reply	other threads:[~2021-04-01 20:40 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-01  8:45 [PATCH] can: m_can: m_can_receive_skb(): add missing error handling to can_rx_offload_queue_sorted() call Marc Kleine-Budde
2021-04-01 20:40 ` Kees Cook [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=202104011340.00B25B1656@keescook \
    --to=keescook@chromium.org \
    --cc=linux-can@vger.kernel.org \
    --cc=mkl@pengutronix.de \
    --cc=torin@maxiluxsystems.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