CVE-2026-31606 (GCVE-0-2026-31606)

Vulnerability from cvelistv5 – Published: 2026-04-24 14:42 – Updated: 2026-04-25 05:48
VLAI?
Title
usb: gadget: f_hid: don't call cdev_init while cdev in use
Summary
In the Linux kernel, the following vulnerability has been resolved: usb: gadget: f_hid: don't call cdev_init while cdev in use When calling unbind, then bind again, cdev_init reinitialized the cdev, even though there may still be references to it. That's the case when the /dev/hidg* device is still opened. This obviously unsafe behavior like oopes. This fixes this by using cdev_alloc to put the cdev on the heap. That way, we can simply allocate a new one in hidg_bind.
Severity ?
No CVSS data available.
Assigner
Impacted products
Vendor Product Version
Linux Linux Affected: cb382536052fcc7713988869b54a81137069e5a9 , < c6c0d13db5d0f8d465eabc14bd23d2b6a7247a43 (git)
Affected: cb382536052fcc7713988869b54a81137069e5a9 , < eb6ef6185f2054a341ec70d7e2165f5381744215 (git)
Affected: cb382536052fcc7713988869b54a81137069e5a9 , < 5a229016ca3ac551294ec59770be9da94ec4bf63 (git)
Affected: cb382536052fcc7713988869b54a81137069e5a9 , < 75ecc46828ec377dd5692c677168ef6d64fd7123 (git)
Create a notification for this product.
    Linux Linux Affected: 3.19
Unaffected: 0 , < 3.19 (semver)
Unaffected: 6.12.83 , ≤ 6.12.* (semver)
Unaffected: 6.18.24 , ≤ 6.18.* (semver)
Unaffected: 6.19.14 , ≤ 6.19.* (semver)
Unaffected: 7.0.1 , ≤ 7.0.* (semver)
Create a notification for this product.
Show details on NVD website

{
  "containers": {
    "cna": {
      "affected": [
        {
          "defaultStatus": "unaffected",
          "product": "Linux",
          "programFiles": [
            "drivers/usb/gadget/function/f_hid.c"
          ],
          "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
          "vendor": "Linux",
          "versions": [
            {
              "lessThan": "c6c0d13db5d0f8d465eabc14bd23d2b6a7247a43",
              "status": "affected",
              "version": "cb382536052fcc7713988869b54a81137069e5a9",
              "versionType": "git"
            },
            {
              "lessThan": "eb6ef6185f2054a341ec70d7e2165f5381744215",
              "status": "affected",
              "version": "cb382536052fcc7713988869b54a81137069e5a9",
              "versionType": "git"
            },
            {
              "lessThan": "5a229016ca3ac551294ec59770be9da94ec4bf63",
              "status": "affected",
              "version": "cb382536052fcc7713988869b54a81137069e5a9",
              "versionType": "git"
            },
            {
              "lessThan": "75ecc46828ec377dd5692c677168ef6d64fd7123",
              "status": "affected",
              "version": "cb382536052fcc7713988869b54a81137069e5a9",
              "versionType": "git"
            }
          ]
        },
        {
          "defaultStatus": "affected",
          "product": "Linux",
          "programFiles": [
            "drivers/usb/gadget/function/f_hid.c"
          ],
          "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
          "vendor": "Linux",
          "versions": [
            {
              "status": "affected",
              "version": "3.19"
            },
            {
              "lessThan": "3.19",
              "status": "unaffected",
              "version": "0",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "6.12.*",
              "status": "unaffected",
              "version": "6.12.83",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "6.18.*",
              "status": "unaffected",
              "version": "6.18.24",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "6.19.*",
              "status": "unaffected",
              "version": "6.19.14",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "7.0.*",
              "status": "unaffected",
              "version": "7.0.1",
              "versionType": "semver"
            }
          ]
        }
      ],
      "cpeApplicability": [
        {
          "nodes": [
            {
              "cpeMatch": [
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "6.12.83",
                  "versionStartIncluding": "3.19",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "6.18.24",
                  "versionStartIncluding": "3.19",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "6.19.14",
                  "versionStartIncluding": "3.19",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "7.0.1",
                  "versionStartIncluding": "3.19",
                  "vulnerable": true
                }
              ],
              "negate": false,
              "operator": "OR"
            }
          ]
        }
      ],
      "descriptions": [
        {
          "lang": "en",
          "value": "In the Linux kernel, the following vulnerability has been resolved:\n\nusb: gadget: f_hid: don\u0027t call cdev_init while cdev in use\n\nWhen calling unbind, then bind again, cdev_init reinitialized the cdev,\neven though there may still be references to it. That\u0027s the case when\nthe /dev/hidg* device is still opened. This obviously unsafe behavior\nlike oopes.\n\nThis fixes this by using cdev_alloc to put the cdev on the heap. That\nway, we can simply allocate a new one in hidg_bind."
        }
      ],
      "providerMetadata": {
        "dateUpdated": "2026-04-25T05:48:16.073Z",
        "orgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
        "shortName": "Linux"
      },
      "references": [
        {
          "url": "https://git.kernel.org/stable/c/c6c0d13db5d0f8d465eabc14bd23d2b6a7247a43"
        },
        {
          "url": "https://git.kernel.org/stable/c/eb6ef6185f2054a341ec70d7e2165f5381744215"
        },
        {
          "url": "https://git.kernel.org/stable/c/5a229016ca3ac551294ec59770be9da94ec4bf63"
        },
        {
          "url": "https://git.kernel.org/stable/c/75ecc46828ec377dd5692c677168ef6d64fd7123"
        }
      ],
      "title": "usb: gadget: f_hid: don\u0027t call cdev_init while cdev in use",
      "x_generator": {
        "engine": "bippy-1.2.0"
      }
    }
  },
  "cveMetadata": {
    "assignerOrgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
    "assignerShortName": "Linux",
    "cveId": "CVE-2026-31606",
    "datePublished": "2026-04-24T14:42:28.792Z",
    "dateReserved": "2026-03-09T15:48:24.122Z",
    "dateUpdated": "2026-04-25T05:48:16.073Z",
    "state": "PUBLISHED"
  },
  "dataType": "CVE_RECORD",
  "dataVersion": "5.2",
  "vulnerability-lookup:meta": {
    "epss": {
      "cve": "CVE-2026-31606",
      "date": "2026-04-25",
      "epss": "0.00018",
      "percentile": "0.04621"
    },
    "nvd": "{\"cve\":{\"id\":\"CVE-2026-31606\",\"sourceIdentifier\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"published\":\"2026-04-24T15:16:39.830\",\"lastModified\":\"2026-04-24T17:51:40.810\",\"vulnStatus\":\"Awaiting Analysis\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"In the Linux kernel, the following vulnerability has been resolved:\\n\\nusb: gadget: f_hid: don\u0027t call cdev_init while cdev in use\\n\\nWhen calling unbind, then bind again, cdev_init reinitialized the cdev,\\neven though there may still be references to it. That\u0027s the case when\\nthe /dev/hidg* device is still opened. This obviously unsafe behavior\\nlike oopes.\\n\\nThis fixes this by using cdev_alloc to put the cdev on the heap. That\\nway, we can simply allocate a new one in hidg_bind.\"}],\"metrics\":{},\"references\":[{\"url\":\"https://git.kernel.org/stable/c/5a229016ca3ac551294ec59770be9da94ec4bf63\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/75ecc46828ec377dd5692c677168ef6d64fd7123\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/c6c0d13db5d0f8d465eabc14bd23d2b6a7247a43\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/eb6ef6185f2054a341ec70d7e2165f5381744215\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"}]}}"
  }
}


Log in or create an account to share your comment.




Tags
Taxonomy of the tags.


Loading…

Loading…

Loading…

Sightings

Author Source Type Date

Nomenclature

  • Seen: The vulnerability was mentioned, discussed, or observed by the user.
  • Confirmed: The vulnerability has been validated from an analyst's perspective.
  • Published Proof of Concept: A public proof of concept is available for this vulnerability.
  • Exploited: The vulnerability was observed as exploited by the user who reported the sighting.
  • Patched: The vulnerability was observed as successfully patched by the user who reported the sighting.
  • Not exploited: The vulnerability was not observed as exploited by the user who reported the sighting.
  • Not confirmed: The user expressed doubt about the validity of the vulnerability.
  • Not patched: The vulnerability was not observed as successfully patched by the user who reported the sighting.


Loading…

Detection rules are retrieved from Rulezet.

Loading…

Loading…