* [PATCH net-next v3 1/1] hv_netvsc: Check status in SEND_RNDIS_PKT completion message
@ 2023-02-13 5:08 Michael Kelley
2023-02-13 13:52 ` Haiyang Zhang
2023-02-14 13:10 ` patchwork-bot+netdevbpf
0 siblings, 2 replies; 3+ messages in thread
From: Michael Kelley @ 2023-02-13 5:08 UTC (permalink / raw)
To: kys, haiyangz, wei.liu, decui, davem, edumazet, kuba, pabeni,
netdev, linux-hyperv, linux-kernel
Cc: mikelley
Completion responses to SEND_RNDIS_PKT messages are currently processed
regardless of the status in the response, so that resources associated
with the request are freed. While this is appropriate, code bugs that
cause sending a malformed message, or errors on the Hyper-V host, go
undetected. Fix this by checking the status and outputting a rate-limited
message if there is an error.
Signed-off-by: Michael Kelley <mikelley@microsoft.com>
---
Changes in v3:
* Fix rate-limit logic when msglen is too small [Haiyang Zhang]
Changes in v2:
* Add rate-limiting to error messages [Haiyang Zhang]
drivers/net/hyperv/netvsc.c | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/drivers/net/hyperv/netvsc.c b/drivers/net/hyperv/netvsc.c
index 661bbe6..f702807 100644
--- a/drivers/net/hyperv/netvsc.c
+++ b/drivers/net/hyperv/netvsc.c
@@ -813,6 +813,7 @@ static void netvsc_send_completion(struct net_device *ndev,
u32 msglen = hv_pkt_datalen(desc);
struct nvsp_message *pkt_rqst;
u64 cmd_rqst;
+ u32 status;
/* First check if this is a VMBUS completion without data payload */
if (!msglen) {
@@ -884,6 +885,23 @@ static void netvsc_send_completion(struct net_device *ndev,
break;
case NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE:
+ if (msglen < sizeof(struct nvsp_message_header) +
+ sizeof(struct nvsp_1_message_send_rndis_packet_complete)) {
+ if (net_ratelimit())
+ netdev_err(ndev, "nvsp_rndis_pkt_complete length too small: %u\n",
+ msglen);
+ return;
+ }
+
+ /* If status indicates an error, output a message so we know
+ * there's a problem. But process the completion anyway so the
+ * resources are released.
+ */
+ status = nvsp_packet->msg.v1_msg.send_rndis_pkt_complete.status;
+ if (status != NVSP_STAT_SUCCESS && net_ratelimit())
+ netdev_err(ndev, "nvsp_rndis_pkt_complete error status: %x\n",
+ status);
+
netvsc_send_tx_complete(ndev, net_device, incoming_channel,
desc, budget);
break;
--
1.8.3.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* RE: [PATCH net-next v3 1/1] hv_netvsc: Check status in SEND_RNDIS_PKT completion message
2023-02-13 5:08 [PATCH net-next v3 1/1] hv_netvsc: Check status in SEND_RNDIS_PKT completion message Michael Kelley
@ 2023-02-13 13:52 ` Haiyang Zhang
2023-02-14 13:10 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: Haiyang Zhang @ 2023-02-13 13:52 UTC (permalink / raw)
To: Michael Kelley (LINUX),
KY Srinivasan, wei.liu, Dexuan Cui, davem, edumazet, kuba,
pabeni, netdev, linux-hyperv, linux-kernel
> -----Original Message-----
> From: Michael Kelley (LINUX) <mikelley@microsoft.com>
> Sent: Monday, February 13, 2023 12:08 AM
> To: KY Srinivasan <kys@microsoft.com>; Haiyang Zhang
> <haiyangz@microsoft.com>; wei.liu@kernel.org; Dexuan Cui
> <decui@microsoft.com>; davem@davemloft.net; edumazet@google.com;
> kuba@kernel.org; pabeni@redhat.com; netdev@vger.kernel.org; linux-
> hyperv@vger.kernel.org; linux-kernel@vger.kernel.org
> Cc: Michael Kelley (LINUX) <mikelley@microsoft.com>
> Subject: [PATCH net-next v3 1/1] hv_netvsc: Check status in
> SEND_RNDIS_PKT completion message
>
> Completion responses to SEND_RNDIS_PKT messages are currently processed
> regardless of the status in the response, so that resources associated
> with the request are freed. While this is appropriate, code bugs that
> cause sending a malformed message, or errors on the Hyper-V host, go
> undetected. Fix this by checking the status and outputting a rate-limited
> message if there is an error.
>
> Signed-off-by: Michael Kelley <mikelley@microsoft.com>
> ---
>
> Changes in v3:
> * Fix rate-limit logic when msglen is too small [Haiyang Zhang]
>
> Changes in v2:
> * Add rate-limiting to error messages [Haiyang Zhang]
>
> drivers/net/hyperv/netvsc.c | 18 ++++++++++++++++++
> 1 file changed, 18 insertions(+)
>
> diff --git a/drivers/net/hyperv/netvsc.c b/drivers/net/hyperv/netvsc.c
> index 661bbe6..f702807 100644
> --- a/drivers/net/hyperv/netvsc.c
> +++ b/drivers/net/hyperv/netvsc.c
> @@ -813,6 +813,7 @@ static void netvsc_send_completion(struct net_device
> *ndev,
> u32 msglen = hv_pkt_datalen(desc);
> struct nvsp_message *pkt_rqst;
> u64 cmd_rqst;
> + u32 status;
>
> /* First check if this is a VMBUS completion without data payload */
> if (!msglen) {
> @@ -884,6 +885,23 @@ static void netvsc_send_completion(struct
> net_device *ndev,
> break;
>
> case NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE:
> + if (msglen < sizeof(struct nvsp_message_header) +
> + sizeof(struct
> nvsp_1_message_send_rndis_packet_complete)) {
> + if (net_ratelimit())
> + netdev_err(ndev, "nvsp_rndis_pkt_complete
> length too small: %u\n",
> + msglen);
> + return;
> + }
> +
> + /* If status indicates an error, output a message so we know
> + * there's a problem. But process the completion anyway so
> the
> + * resources are released.
> + */
> + status = nvsp_packet-
> >msg.v1_msg.send_rndis_pkt_complete.status;
> + if (status != NVSP_STAT_SUCCESS && net_ratelimit())
> + netdev_err(ndev, "nvsp_rndis_pkt_complete error
> status: %x\n",
> + status);
> +
> netvsc_send_tx_complete(ndev, net_device,
> incoming_channel,
> desc, budget);
> break;
> --
> 1.8.3.1
Thank you!
Reviewed-by: Haiyang Zhang <haiyangz@microsoft.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH net-next v3 1/1] hv_netvsc: Check status in SEND_RNDIS_PKT completion message
2023-02-13 5:08 [PATCH net-next v3 1/1] hv_netvsc: Check status in SEND_RNDIS_PKT completion message Michael Kelley
2023-02-13 13:52 ` Haiyang Zhang
@ 2023-02-14 13:10 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2023-02-14 13:10 UTC (permalink / raw)
To: Michael Kelley
Cc: kys, haiyangz, wei.liu, decui, davem, edumazet, kuba, pabeni,
netdev, linux-hyperv, linux-kernel
Hello:
This patch was applied to netdev/net-next.git (master)
by Paolo Abeni <pabeni@redhat.com>:
On Sun, 12 Feb 2023 21:08:01 -0800 you wrote:
> Completion responses to SEND_RNDIS_PKT messages are currently processed
> regardless of the status in the response, so that resources associated
> with the request are freed. While this is appropriate, code bugs that
> cause sending a malformed message, or errors on the Hyper-V host, go
> undetected. Fix this by checking the status and outputting a rate-limited
> message if there is an error.
>
> [...]
Here is the summary with links:
- [net-next,v3,1/1] hv_netvsc: Check status in SEND_RNDIS_PKT completion message
https://git.kernel.org/netdev/net-next/c/dca5161f9bd0
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-02-14 13:10 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-13 5:08 [PATCH net-next v3 1/1] hv_netvsc: Check status in SEND_RNDIS_PKT completion message Michael Kelley
2023-02-13 13:52 ` Haiyang Zhang
2023-02-14 13:10 ` patchwork-bot+netdevbpf
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®