* [PATCH v3 1/2] net: usb: cdc_ncm: add ndpoffset to NDP16 nframes bounds check
2026-03-14 5:46 [PATCH v3 0/2] net: usb: cdc_ncm: add ndpoffset to NDP nframes bounds check tobgaertner
@ 2026-03-14 5:46 ` tobgaertner
2026-03-14 5:46 ` [PATCH v3 2/2] net: usb: cdc_ncm: add ndpoffset to NDP32 " tobgaertner
2026-03-17 4:00 ` [PATCH v3 0/2] net: usb: cdc_ncm: add ndpoffset to NDP " patchwork-bot+netdevbpf
2 siblings, 0 replies; 4+ messages in thread
From: tobgaertner @ 2026-03-14 5:46 UTC (permalink / raw)
To: netdev, linux-usb; +Cc: kuba, gregkh, oneukum, bjorn, Tobi Gaertner
From: Tobi Gaertner <tob.gaertner@me.com>
cdc_ncm_rx_verify_ndp16() validates that the NDP header and its DPE
entries fit within the skb. The first check correctly accounts for
ndpoffset:
if ((ndpoffset + sizeof(struct usb_cdc_ncm_ndp16)) > skb_in->len)
but the second check omits it:
if ((sizeof(struct usb_cdc_ncm_ndp16) +
ret * (sizeof(struct usb_cdc_ncm_dpe16))) > skb_in->len)
This validates the DPE array size against the total skb length as if
the NDP were at offset 0, rather than at ndpoffset. When the NDP is
placed near the end of the NTB (large wNdpIndex), the DPE entries can
extend past the skb data buffer even though the check passes.
cdc_ncm_rx_fixup() then reads out-of-bounds memory when iterating
the DPE array.
Add ndpoffset to the nframes bounds check and use struct_size_t() to
express the NDP-plus-DPE-array size more clearly.
Fixes: ff06ab13a4cc ("net: cdc_ncm: splitting rx_fixup for code reuse")
Signed-off-by: Tobi Gaertner <tob.gaertner@me.com>
---
drivers/net/usb/cdc_ncm.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/drivers/net/usb/cdc_ncm.c b/drivers/net/usb/cdc_ncm.c
index 5d123df0a..a9d0162b5 100644
--- a/drivers/net/usb/cdc_ncm.c
+++ b/drivers/net/usb/cdc_ncm.c
@@ -1656,6 +1656,7 @@ int cdc_ncm_rx_verify_ndp16(struct sk_buff *skb_in, int ndpoffset)
struct usbnet *dev = netdev_priv(skb_in->dev);
struct usb_cdc_ncm_ndp16 *ndp16;
int ret = -EINVAL;
+ size_t ndp_len;
if ((ndpoffset + sizeof(struct usb_cdc_ncm_ndp16)) > skb_in->len) {
netif_dbg(dev, rx_err, dev->net, "invalid NDP offset <%u>\n",
@@ -1675,8 +1676,8 @@ int cdc_ncm_rx_verify_ndp16(struct sk_buff *skb_in, int ndpoffset)
sizeof(struct usb_cdc_ncm_dpe16));
ret--; /* we process NDP entries except for the last one */
- if ((sizeof(struct usb_cdc_ncm_ndp16) +
- ret * (sizeof(struct usb_cdc_ncm_dpe16))) > skb_in->len) {
+ ndp_len = struct_size_t(struct usb_cdc_ncm_ndp16, dpe16, ret);
+ if (ndpoffset + ndp_len > skb_in->len) {
netif_dbg(dev, rx_err, dev->net, "Invalid nframes = %d\n", ret);
ret = -EINVAL;
}
--
2.43.0
^ permalink raw reply related [flat|nested] 4+ messages in thread* [PATCH v3 2/2] net: usb: cdc_ncm: add ndpoffset to NDP32 nframes bounds check
2026-03-14 5:46 [PATCH v3 0/2] net: usb: cdc_ncm: add ndpoffset to NDP nframes bounds check tobgaertner
2026-03-14 5:46 ` [PATCH v3 1/2] net: usb: cdc_ncm: add ndpoffset to NDP16 " tobgaertner
@ 2026-03-14 5:46 ` tobgaertner
2026-03-17 4:00 ` [PATCH v3 0/2] net: usb: cdc_ncm: add ndpoffset to NDP " patchwork-bot+netdevbpf
2 siblings, 0 replies; 4+ messages in thread
From: tobgaertner @ 2026-03-14 5:46 UTC (permalink / raw)
To: netdev, linux-usb; +Cc: kuba, gregkh, oneukum, bjorn, Tobi Gaertner
From: Tobi Gaertner <tob.gaertner@me.com>
The same bounds-check bug fixed for NDP16 in the previous patch also
exists in cdc_ncm_rx_verify_ndp32(). The DPE array size is validated
against the total skb length without accounting for ndpoffset, allowing
out-of-bounds reads when the NDP32 is placed near the end of the NTB.
Add ndpoffset to the nframes bounds check and use struct_size_t() to
express the NDP-plus-DPE-array size more clearly.
Compile-tested only.
Fixes: 0fa81b304a79 ("cdc_ncm: Implement the 32-bit version of NCM Transfer Block")
Signed-off-by: Tobi Gaertner <tob.gaertner@me.com>
---
drivers/net/usb/cdc_ncm.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/drivers/net/usb/cdc_ncm.c b/drivers/net/usb/cdc_ncm.c
index a9d0162b5..81d7e99fc 100644
--- a/drivers/net/usb/cdc_ncm.c
+++ b/drivers/net/usb/cdc_ncm.c
@@ -1693,6 +1693,7 @@ int cdc_ncm_rx_verify_ndp32(struct sk_buff *skb_in, int ndpoffset)
struct usbnet *dev = netdev_priv(skb_in->dev);
struct usb_cdc_ncm_ndp32 *ndp32;
int ret = -EINVAL;
+ size_t ndp_len;
if ((ndpoffset + sizeof(struct usb_cdc_ncm_ndp32)) > skb_in->len) {
netif_dbg(dev, rx_err, dev->net, "invalid NDP offset <%u>\n",
@@ -1712,8 +1713,8 @@ int cdc_ncm_rx_verify_ndp32(struct sk_buff *skb_in, int ndpoffset)
sizeof(struct usb_cdc_ncm_dpe32));
ret--; /* we process NDP entries except for the last one */
- if ((sizeof(struct usb_cdc_ncm_ndp32) +
- ret * (sizeof(struct usb_cdc_ncm_dpe32))) > skb_in->len) {
+ ndp_len = struct_size_t(struct usb_cdc_ncm_ndp32, dpe32, ret);
+ if (ndpoffset + ndp_len > skb_in->len) {
netif_dbg(dev, rx_err, dev->net, "Invalid nframes = %d\n", ret);
ret = -EINVAL;
}
--
2.43.0
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH v3 0/2] net: usb: cdc_ncm: add ndpoffset to NDP nframes bounds check
2026-03-14 5:46 [PATCH v3 0/2] net: usb: cdc_ncm: add ndpoffset to NDP nframes bounds check tobgaertner
2026-03-14 5:46 ` [PATCH v3 1/2] net: usb: cdc_ncm: add ndpoffset to NDP16 " tobgaertner
2026-03-14 5:46 ` [PATCH v3 2/2] net: usb: cdc_ncm: add ndpoffset to NDP32 " tobgaertner
@ 2026-03-17 4:00 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 4+ messages in thread
From: patchwork-bot+netdevbpf @ 2026-03-17 4:00 UTC (permalink / raw)
To: tobgaertner; +Cc: netdev, linux-usb, kuba, gregkh, oneukum, bjorn
Hello:
This series was applied to netdev/net.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Fri, 13 Mar 2026 22:46:38 -0700 you wrote:
> The nframes bounds check in cdc_ncm_rx_verify_ndp16() and
> cdc_ncm_rx_verify_ndp32() does not account for ndpoffset,
> allowing out-of-bounds reads when the NDP is placed near the
> end of the NTB.
>
> Changes since v2:
> - Save struct_size_t() result to a temp variable to avoid
> awkward line wrapping (Jakub)
> - Fix From/Signed-off-by mismatch
> - Move "Compile-tested only" out of the Signed-off-by line
> into the commit message body
>
> [...]
Here is the summary with links:
- [v3,1/2] net: usb: cdc_ncm: add ndpoffset to NDP16 nframes bounds check
https://git.kernel.org/netdev/net/c/2aa8a4fa8d5b
- [v3,2/2] net: usb: cdc_ncm: add ndpoffset to NDP32 nframes bounds check
https://git.kernel.org/netdev/net/c/77914255155e
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] 4+ messages in thread