Lucene search

K
cvelistLinuxCVELIST:CVE-2024-35825
HistoryMay 17, 2024 - 1:27 p.m.

CVE-2024-35825 usb: gadget: ncm: Fix handling of zero block length packets

2024-05-1713:27:28
Linux
www.cve.org
usb
gadget
vulnerability
linux kernel
fix
handling
zero block length
ncm
datagrams
ntbs
crash
cve

6.3 Medium

AI Score

Confidence

High

0.0004 Low

EPSS

Percentile

13.0%

In the Linux kernel, the following vulnerability has been resolved:

usb: gadget: ncm: Fix handling of zero block length packets

While connecting to a Linux host with CDC_NCM_NTB_DEF_SIZE_TX
set to 65536, it has been observed that we receive short packets,
which come at interval of 5-10 seconds sometimes and have block
length zero but still contain 1-2 valid datagrams present.

According to the NCM spec:

"If wBlockLength = 0x0000, the block is terminated by a
short packet. In this case, the USB transfer must still
be shorter than dwNtbInMaxSize or dwNtbOutMaxSize. If
exactly dwNtbInMaxSize or dwNtbOutMaxSize bytes are sent,
and the size is a multiple of wMaxPacketSize for the
given pipe, then no ZLP shall be sent.

wBlockLength= 0x0000 must be used with extreme care, because
of the possibility that the host and device may get out of
sync, and because of test issues.

wBlockLength = 0x0000 allows the sender to reduce latency by
starting to send a very large NTB, and then shortening it when
the sender discovers that there’s not sufficient data to justify
sending a large NTB"

However, there is a potential issue with the current implementation,
as it checks for the occurrence of multiple NTBs in a single
giveback by verifying if the leftover bytes to be processed is zero
or not. If the block length reads zero, we would process the same
NTB infintely because the leftover bytes is never zero and it leads
to a crash. Fix this by bailing out if block length reads zero.

CNA Affected

[
  {
    "product": "Linux",
    "vendor": "Linux",
    "defaultStatus": "unaffected",
    "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
    "programFiles": [
      "drivers/usb/gadget/function/f_ncm.c"
    ],
    "versions": [
      {
        "version": "ff3ba016263e",
        "lessThan": "e2dbfea520e6",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "e7ca00f35d8a",
        "lessThan": "a766761d206e",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "17c653d4913b",
        "lessThan": "ef846cdbd100",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "7014807fb7ef",
        "lessThan": "92b051b87658",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "49fbc18378ae",
        "lessThan": "7664ee8bd803",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "427694cfaafa",
        "lessThan": "a0f77b5d6067",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "427694cfaafa",
        "lessThan": "6b2c73111a25",
        "status": "affected",
        "versionType": "git"
      },
      {
        "version": "427694cfaafa",
        "lessThan": "f90ce1e04cbc",
        "status": "affected",
        "versionType": "git"
      }
    ]
  },
  {
    "product": "Linux",
    "vendor": "Linux",
    "defaultStatus": "affected",
    "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
    "programFiles": [
      "drivers/usb/gadget/function/f_ncm.c"
    ],
    "versions": [
      {
        "version": "6.6",
        "status": "affected"
      },
      {
        "version": "0",
        "lessThan": "6.6",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "4.19.312",
        "lessThanOrEqual": "4.19.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "5.4.274",
        "lessThanOrEqual": "5.4.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "5.10.215",
        "lessThanOrEqual": "5.10.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "5.15.154",
        "lessThanOrEqual": "5.15.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "6.1.84",
        "lessThanOrEqual": "6.1.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "6.6.24",
        "lessThanOrEqual": "6.6.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "6.7.12",
        "lessThanOrEqual": "6.7.*",
        "status": "unaffected",
        "versionType": "custom"
      },
      {
        "version": "6.8",
        "lessThanOrEqual": "*",
        "status": "unaffected",
        "versionType": "original_commit_for_fix"
      }
    ]
  }
]

6.3 Medium

AI Score

Confidence

High

0.0004 Low

EPSS

Percentile

13.0%

Related for CVELIST:CVE-2024-35825