CVE-2022-50337 (GCVE-0-2022-50337)
Vulnerability from cvelistv5
Published
2025-09-15 14:49
Modified
2025-09-15 14:49
Severity ?
Summary
In the Linux kernel, the following vulnerability has been resolved: ocxl: fix pci device refcount leak when calling get_function_0() get_function_0() calls pci_get_domain_bus_and_slot(), as comment says, it returns a pci device with refcount increment, so after using it, pci_dev_put() needs be called. Get the device reference when get_function_0() is not called, so pci_dev_put() can be called in the error path and callers unconditionally. And add comment above get_dvsec_vendor0() to tell callers to call pci_dev_put().
Impacted products
Vendor Product Version
Linux Linux Version: 87db7579ebd5ded337056eb765542eb2608f16e3
Version: 87db7579ebd5ded337056eb765542eb2608f16e3
Version: 87db7579ebd5ded337056eb765542eb2608f16e3
Version: 87db7579ebd5ded337056eb765542eb2608f16e3
Version: 87db7579ebd5ded337056eb765542eb2608f16e3
Create a notification for this product.
   Linux Linux Version: 5.9
Create a notification for this product.
Show details on NVD website


{
  "containers": {
    "cna": {
      "affected": [
        {
          "defaultStatus": "unaffected",
          "product": "Linux",
          "programFiles": [
            "drivers/misc/ocxl/config.c"
          ],
          "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
          "vendor": "Linux",
          "versions": [
            {
              "lessThan": "a40e1b0a922a53fa925ea8b296e3de30a31ed028",
              "status": "affected",
              "version": "87db7579ebd5ded337056eb765542eb2608f16e3",
              "versionType": "git"
            },
            {
              "lessThan": "37a13b274e4513c757e50c002ddcbf4bc89adbb2",
              "status": "affected",
              "version": "87db7579ebd5ded337056eb765542eb2608f16e3",
              "versionType": "git"
            },
            {
              "lessThan": "9a1b3148975b71fdc194e62612478346bbe618cd",
              "status": "affected",
              "version": "87db7579ebd5ded337056eb765542eb2608f16e3",
              "versionType": "git"
            },
            {
              "lessThan": "40ff4c2335a98f0ee96b099bfd70b8e6644f321f",
              "status": "affected",
              "version": "87db7579ebd5ded337056eb765542eb2608f16e3",
              "versionType": "git"
            },
            {
              "lessThan": "27158c72678b39ee01cc01de1aba6b51c71abe2f",
              "status": "affected",
              "version": "87db7579ebd5ded337056eb765542eb2608f16e3",
              "versionType": "git"
            }
          ]
        },
        {
          "defaultStatus": "affected",
          "product": "Linux",
          "programFiles": [
            "drivers/misc/ocxl/config.c"
          ],
          "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
          "vendor": "Linux",
          "versions": [
            {
              "status": "affected",
              "version": "5.9"
            },
            {
              "lessThan": "5.9",
              "status": "unaffected",
              "version": "0",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "5.10.*",
              "status": "unaffected",
              "version": "5.10.163",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "5.15.*",
              "status": "unaffected",
              "version": "5.15.86",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "6.0.*",
              "status": "unaffected",
              "version": "6.0.16",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "6.1.*",
              "status": "unaffected",
              "version": "6.1.2",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "*",
              "status": "unaffected",
              "version": "6.2",
              "versionType": "original_commit_for_fix"
            }
          ]
        }
      ],
      "cpeApplicability": [
        {
          "nodes": [
            {
              "cpeMatch": [
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "5.10.163",
                  "versionStartIncluding": "5.9",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "5.15.86",
                  "versionStartIncluding": "5.9",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "6.0.16",
                  "versionStartIncluding": "5.9",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "6.1.2",
                  "versionStartIncluding": "5.9",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "6.2",
                  "versionStartIncluding": "5.9",
                  "vulnerable": true
                }
              ],
              "negate": false,
              "operator": "OR"
            }
          ]
        }
      ],
      "descriptions": [
        {
          "lang": "en",
          "value": "In the Linux kernel, the following vulnerability has been resolved:\n\nocxl: fix pci device refcount leak when calling get_function_0()\n\nget_function_0() calls pci_get_domain_bus_and_slot(), as comment\nsays, it returns a pci device with refcount increment, so after\nusing it, pci_dev_put() needs be called.\n\nGet the device reference when get_function_0() is not called, so\npci_dev_put() can be called in the error path and callers\nunconditionally. And add comment above get_dvsec_vendor0() to tell\ncallers to call pci_dev_put()."
        }
      ],
      "providerMetadata": {
        "dateUpdated": "2025-09-15T14:49:52.919Z",
        "orgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
        "shortName": "Linux"
      },
      "references": [
        {
          "url": "https://git.kernel.org/stable/c/a40e1b0a922a53fa925ea8b296e3de30a31ed028"
        },
        {
          "url": "https://git.kernel.org/stable/c/37a13b274e4513c757e50c002ddcbf4bc89adbb2"
        },
        {
          "url": "https://git.kernel.org/stable/c/9a1b3148975b71fdc194e62612478346bbe618cd"
        },
        {
          "url": "https://git.kernel.org/stable/c/40ff4c2335a98f0ee96b099bfd70b8e6644f321f"
        },
        {
          "url": "https://git.kernel.org/stable/c/27158c72678b39ee01cc01de1aba6b51c71abe2f"
        }
      ],
      "title": "ocxl: fix pci device refcount leak when calling get_function_0()",
      "x_generator": {
        "engine": "bippy-1.2.0"
      }
    }
  },
  "cveMetadata": {
    "assignerOrgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
    "assignerShortName": "Linux",
    "cveId": "CVE-2022-50337",
    "datePublished": "2025-09-15T14:49:52.919Z",
    "dateReserved": "2025-09-15T14:18:36.817Z",
    "dateUpdated": "2025-09-15T14:49:52.919Z",
    "state": "PUBLISHED"
  },
  "dataType": "CVE_RECORD",
  "dataVersion": "5.1",
  "vulnerability-lookup:meta": {
    "nvd": "{\"cve\":{\"id\":\"CVE-2022-50337\",\"sourceIdentifier\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"published\":\"2025-09-15T15:15:46.047\",\"lastModified\":\"2025-09-15T15:22:27.090\",\"vulnStatus\":\"Awaiting Analysis\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"In the Linux kernel, the following vulnerability has been resolved:\\n\\nocxl: fix pci device refcount leak when calling get_function_0()\\n\\nget_function_0() calls pci_get_domain_bus_and_slot(), as comment\\nsays, it returns a pci device with refcount increment, so after\\nusing it, pci_dev_put() needs be called.\\n\\nGet the device reference when get_function_0() is not called, so\\npci_dev_put() can be called in the error path and callers\\nunconditionally. And add comment above get_dvsec_vendor0() to tell\\ncallers to call pci_dev_put().\"}],\"metrics\":{},\"references\":[{\"url\":\"https://git.kernel.org/stable/c/27158c72678b39ee01cc01de1aba6b51c71abe2f\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/37a13b274e4513c757e50c002ddcbf4bc89adbb2\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/40ff4c2335a98f0ee96b099bfd70b8e6644f321f\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/9a1b3148975b71fdc194e62612478346bbe618cd\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/a40e1b0a922a53fa925ea8b296e3de30a31ed028\",\"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 seen somewhere by the user.
  • Confirmed: The vulnerability is confirmed from an analyst perspective.
  • Exploited: This vulnerability was exploited and seen by the user reporting the sighting.
  • Patched: This vulnerability was successfully patched by the user reporting the sighting.
  • Not exploited: This vulnerability was not exploited or seen by the user reporting the sighting.
  • Not confirmed: The user expresses doubt about the veracity of the vulnerability.
  • Not patched: This vulnerability was not successfully patched by the user reporting the sighting.


Loading…