GCVE Workshop - 22 September 2026 (14:00-18:00), Luxembourg Before The Vulnopticon Conference - Registration

CVE-2023-54137 (GCVE-0-2023-54137)

Vulnerability from cvelistv5 – Published: 2025-12-24 13:06 – Updated: 2026-05-11 19:56
VLAI
Title
vfio/type1: fix cap_migration information leak
Summary
In the Linux kernel, the following vulnerability has been resolved: vfio/type1: fix cap_migration information leak Fix an information leak where an uninitialized hole in struct vfio_iommu_type1_info_cap_migration on the stack is exposed to userspace. The definition of struct vfio_iommu_type1_info_cap_migration contains a hole as shown in this pahole(1) output: struct vfio_iommu_type1_info_cap_migration { struct vfio_info_cap_header header; /* 0 8 */ __u32 flags; /* 8 4 */ /* XXX 4 bytes hole, try to pack */ __u64 pgsize_bitmap; /* 16 8 */ __u64 max_dirty_bitmap_size; /* 24 8 */ /* size: 32, cachelines: 1, members: 4 */ /* sum members: 28, holes: 1, sum holes: 4 */ /* last cacheline: 32 bytes */ }; The cap_mig variable is filled in without initializing the hole: static int vfio_iommu_migration_build_caps(struct vfio_iommu *iommu, struct vfio_info_cap *caps) { struct vfio_iommu_type1_info_cap_migration cap_mig; cap_mig.header.id = VFIO_IOMMU_TYPE1_INFO_CAP_MIGRATION; cap_mig.header.version = 1; cap_mig.flags = 0; /* support minimum pgsize */ cap_mig.pgsize_bitmap = (size_t)1 << __ffs(iommu->pgsize_bitmap); cap_mig.max_dirty_bitmap_size = DIRTY_BITMAP_SIZE_MAX; return vfio_info_add_capability(caps, &cap_mig.header, sizeof(cap_mig)); } The structure is then copied to a temporary location on the heap. At this point it's already too late and ioctl(VFIO_IOMMU_GET_INFO) copies it to userspace later: int vfio_info_add_capability(struct vfio_info_cap *caps, struct vfio_info_cap_header *cap, size_t size) { struct vfio_info_cap_header *header; header = vfio_info_cap_add(caps, size, cap->id, cap->version); if (IS_ERR(header)) return PTR_ERR(header); memcpy(header + 1, cap + 1, size - sizeof(*header)); return 0; } This issue was found by code inspection.
Severity
No CVSS data available.
Impacted products
Vendor Product Version CPE status
Linux Linux Affected: ad721705d09c62f0d108a6b4f59867ebfd592c90 , < ad83d83dd891244de0d07678b257dc976db7c132 (git)
Affected: ad721705d09c62f0d108a6b4f59867ebfd592c90 , < 13fd667db999bffb557c5de7adb3c14f1713dd51 (git)
Affected: ad721705d09c62f0d108a6b4f59867ebfd592c90 , < f6f300ecc196d243c02adeb9ee0c62c677c24bfb (git)
Affected: ad721705d09c62f0d108a6b4f59867ebfd592c90 , < cbac29a1caa49a34e131394e1f4d924a76d8b0c9 (git)
Affected: ad721705d09c62f0d108a6b4f59867ebfd592c90 , < 1b5feb8497cdb5b9962db2700814bffbc030fb4a (git)
Affected: ad721705d09c62f0d108a6b4f59867ebfd592c90 , < cd24e2a60af633f157d7e59c0a6dba64f131c0b1 (git)
guessed Create a notification for this product.
Linux Linux Affected: 5.8
Unaffected: 0 , < 5.8 (semver)
Unaffected: 5.10.195 , ≤ 5.10.* (semver)
Unaffected: 5.15.132 , ≤ 5.15.* (semver)
Unaffected: 6.1.53 , ≤ 6.1.* (semver)
Unaffected: 6.4.16 , ≤ 6.4.* (semver)
Unaffected: 6.5.3 , ≤ 6.5.* (semver)
Unaffected: 6.6 , ≤ * (original_commit_for_fix)
guessed Create a notification for this product.
Show details on NVD website

{
  "containers": {
    "cna": {
      "affected": [
        {
          "defaultStatus": "unaffected",
          "product": "Linux",
          "programFiles": [
            "drivers/vfio/vfio_iommu_type1.c"
          ],
          "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
          "vendor": "Linux",
          "versions": [
            {
              "lessThan": "ad83d83dd891244de0d07678b257dc976db7c132",
              "status": "affected",
              "version": "ad721705d09c62f0d108a6b4f59867ebfd592c90",
              "versionType": "git"
            },
            {
              "lessThan": "13fd667db999bffb557c5de7adb3c14f1713dd51",
              "status": "affected",
              "version": "ad721705d09c62f0d108a6b4f59867ebfd592c90",
              "versionType": "git"
            },
            {
              "lessThan": "f6f300ecc196d243c02adeb9ee0c62c677c24bfb",
              "status": "affected",
              "version": "ad721705d09c62f0d108a6b4f59867ebfd592c90",
              "versionType": "git"
            },
            {
              "lessThan": "cbac29a1caa49a34e131394e1f4d924a76d8b0c9",
              "status": "affected",
              "version": "ad721705d09c62f0d108a6b4f59867ebfd592c90",
              "versionType": "git"
            },
            {
              "lessThan": "1b5feb8497cdb5b9962db2700814bffbc030fb4a",
              "status": "affected",
              "version": "ad721705d09c62f0d108a6b4f59867ebfd592c90",
              "versionType": "git"
            },
            {
              "lessThan": "cd24e2a60af633f157d7e59c0a6dba64f131c0b1",
              "status": "affected",
              "version": "ad721705d09c62f0d108a6b4f59867ebfd592c90",
              "versionType": "git"
            }
          ]
        },
        {
          "defaultStatus": "affected",
          "product": "Linux",
          "programFiles": [
            "drivers/vfio/vfio_iommu_type1.c"
          ],
          "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
          "vendor": "Linux",
          "versions": [
            {
              "status": "affected",
              "version": "5.8"
            },
            {
              "lessThan": "5.8",
              "status": "unaffected",
              "version": "0",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "5.10.*",
              "status": "unaffected",
              "version": "5.10.195",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "5.15.*",
              "status": "unaffected",
              "version": "5.15.132",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "6.1.*",
              "status": "unaffected",
              "version": "6.1.53",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "6.4.*",
              "status": "unaffected",
              "version": "6.4.16",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "6.5.*",
              "status": "unaffected",
              "version": "6.5.3",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "*",
              "status": "unaffected",
              "version": "6.6",
              "versionType": "original_commit_for_fix"
            }
          ]
        }
      ],
      "cpeApplicability": [
        {
          "nodes": [
            {
              "cpeMatch": [
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "5.10.195",
                  "versionStartIncluding": "5.8",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "5.15.132",
                  "versionStartIncluding": "5.8",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "6.1.53",
                  "versionStartIncluding": "5.8",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "6.4.16",
                  "versionStartIncluding": "5.8",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "6.5.3",
                  "versionStartIncluding": "5.8",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "6.6",
                  "versionStartIncluding": "5.8",
                  "vulnerable": true
                }
              ],
              "negate": false,
              "operator": "OR"
            }
          ]
        }
      ],
      "descriptions": [
        {
          "lang": "en",
          "value": "In the Linux kernel, the following vulnerability has been resolved:\n\nvfio/type1: fix cap_migration information leak\n\nFix an information leak where an uninitialized hole in struct\nvfio_iommu_type1_info_cap_migration on the stack is exposed to userspace.\n\nThe definition of struct vfio_iommu_type1_info_cap_migration contains a hole as\nshown in this pahole(1) output:\n\n  struct vfio_iommu_type1_info_cap_migration {\n          struct vfio_info_cap_header header;              /*     0     8 */\n          __u32                      flags;                /*     8     4 */\n\n          /* XXX 4 bytes hole, try to pack */\n\n          __u64                      pgsize_bitmap;        /*    16     8 */\n          __u64                      max_dirty_bitmap_size; /*    24     8 */\n\n          /* size: 32, cachelines: 1, members: 4 */\n          /* sum members: 28, holes: 1, sum holes: 4 */\n          /* last cacheline: 32 bytes */\n  };\n\nThe cap_mig variable is filled in without initializing the hole:\n\n  static int vfio_iommu_migration_build_caps(struct vfio_iommu *iommu,\n                         struct vfio_info_cap *caps)\n  {\n      struct vfio_iommu_type1_info_cap_migration cap_mig;\n\n      cap_mig.header.id = VFIO_IOMMU_TYPE1_INFO_CAP_MIGRATION;\n      cap_mig.header.version = 1;\n\n      cap_mig.flags = 0;\n      /* support minimum pgsize */\n      cap_mig.pgsize_bitmap = (size_t)1 \u003c\u003c __ffs(iommu-\u003epgsize_bitmap);\n      cap_mig.max_dirty_bitmap_size = DIRTY_BITMAP_SIZE_MAX;\n\n      return vfio_info_add_capability(caps, \u0026cap_mig.header, sizeof(cap_mig));\n  }\n\nThe structure is then copied to a temporary location on the heap. At this point\nit\u0027s already too late and ioctl(VFIO_IOMMU_GET_INFO) copies it to userspace\nlater:\n\n  int vfio_info_add_capability(struct vfio_info_cap *caps,\n                   struct vfio_info_cap_header *cap, size_t size)\n  {\n      struct vfio_info_cap_header *header;\n\n      header = vfio_info_cap_add(caps, size, cap-\u003eid, cap-\u003eversion);\n      if (IS_ERR(header))\n          return PTR_ERR(header);\n\n      memcpy(header + 1, cap + 1, size - sizeof(*header));\n\n      return 0;\n  }\n\nThis issue was found by code inspection."
        }
      ],
      "providerMetadata": {
        "dateUpdated": "2026-05-11T19:56:12.086Z",
        "orgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
        "shortName": "Linux"
      },
      "references": [
        {
          "url": "https://git.kernel.org/stable/c/ad83d83dd891244de0d07678b257dc976db7c132"
        },
        {
          "url": "https://git.kernel.org/stable/c/13fd667db999bffb557c5de7adb3c14f1713dd51"
        },
        {
          "url": "https://git.kernel.org/stable/c/f6f300ecc196d243c02adeb9ee0c62c677c24bfb"
        },
        {
          "url": "https://git.kernel.org/stable/c/cbac29a1caa49a34e131394e1f4d924a76d8b0c9"
        },
        {
          "url": "https://git.kernel.org/stable/c/1b5feb8497cdb5b9962db2700814bffbc030fb4a"
        },
        {
          "url": "https://git.kernel.org/stable/c/cd24e2a60af633f157d7e59c0a6dba64f131c0b1"
        }
      ],
      "title": "vfio/type1: fix cap_migration information leak",
      "x_generator": {
        "engine": "bippy-1.2.0"
      }
    }
  },
  "cveMetadata": {
    "assignerOrgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
    "assignerShortName": "Linux",
    "cveId": "CVE-2023-54137",
    "datePublished": "2025-12-24T13:06:52.689Z",
    "dateReserved": "2025-12-24T13:02:52.522Z",
    "dateUpdated": "2026-05-11T19:56:12.086Z",
    "state": "PUBLISHED"
  },
  "dataType": "CVE_RECORD",
  "dataVersion": "5.2",
  "vulnerability-lookup:meta": {
    "epss": {
      "cve": "CVE-2023-54137",
      "date": "2026-09-15",
      "epss": "0.00209",
      "percentile": "0.11261"
    },
    "nvd": "{\"cve\":{\"id\":\"CVE-2023-54137\",\"sourceIdentifier\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"published\":\"2025-12-24T13:16:15.693\",\"lastModified\":\"2026-06-17T06:46:52.180\",\"vulnStatus\":\"Deferred\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"In the Linux kernel, the following vulnerability has been resolved:\\n\\nvfio/type1: fix cap_migration information leak\\n\\nFix an information leak where an uninitialized hole in struct\\nvfio_iommu_type1_info_cap_migration on the stack is exposed to userspace.\\n\\nThe definition of struct vfio_iommu_type1_info_cap_migration contains a hole as\\nshown in this pahole(1) output:\\n\\n  struct vfio_iommu_type1_info_cap_migration {\\n          struct vfio_info_cap_header header;              /*     0     8 */\\n          __u32                      flags;                /*     8     4 */\\n\\n          /* XXX 4 bytes hole, try to pack */\\n\\n          __u64                      pgsize_bitmap;        /*    16     8 */\\n          __u64                      max_dirty_bitmap_size; /*    24     8 */\\n\\n          /* size: 32, cachelines: 1, members: 4 */\\n          /* sum members: 28, holes: 1, sum holes: 4 */\\n          /* last cacheline: 32 bytes */\\n  };\\n\\nThe cap_mig variable is filled in without initializing the hole:\\n\\n  static int vfio_iommu_migration_build_caps(struct vfio_iommu *iommu,\\n                         struct vfio_info_cap *caps)\\n  {\\n      struct vfio_iommu_type1_info_cap_migration cap_mig;\\n\\n      cap_mig.header.id = VFIO_IOMMU_TYPE1_INFO_CAP_MIGRATION;\\n      cap_mig.header.version = 1;\\n\\n      cap_mig.flags = 0;\\n      /* support minimum pgsize */\\n      cap_mig.pgsize_bitmap = (size_t)1 \u003c\u003c __ffs(iommu-\u003epgsize_bitmap);\\n      cap_mig.max_dirty_bitmap_size = DIRTY_BITMAP_SIZE_MAX;\\n\\n      return vfio_info_add_capability(caps, \u0026cap_mig.header, sizeof(cap_mig));\\n  }\\n\\nThe structure is then copied to a temporary location on the heap. At this point\\nit\u0027s already too late and ioctl(VFIO_IOMMU_GET_INFO) copies it to userspace\\nlater:\\n\\n  int vfio_info_add_capability(struct vfio_info_cap *caps,\\n                   struct vfio_info_cap_header *cap, size_t size)\\n  {\\n      struct vfio_info_cap_header *header;\\n\\n      header = vfio_info_cap_add(caps, size, cap-\u003eid, cap-\u003eversion);\\n      if (IS_ERR(header))\\n          return PTR_ERR(header);\\n\\n      memcpy(header + 1, cap + 1, size - sizeof(*header));\\n\\n      return 0;\\n  }\\n\\nThis issue was found by code inspection.\"}],\"affected\":[{\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"affectedData\":[{\"vendor\":\"Linux\",\"product\":\"Linux\",\"defaultStatus\":\"unaffected\",\"programFiles\":[\"drivers/vfio/vfio_iommu_type1.c\"],\"repo\":\"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\",\"versions\":[{\"version\":\"ad721705d09c62f0d108a6b4f59867ebfd592c90\",\"lessThan\":\"ad83d83dd891244de0d07678b257dc976db7c132\",\"versionType\":\"git\",\"status\":\"affected\"},{\"version\":\"ad721705d09c62f0d108a6b4f59867ebfd592c90\",\"lessThan\":\"13fd667db999bffb557c5de7adb3c14f1713dd51\",\"versionType\":\"git\",\"status\":\"affected\"},{\"version\":\"ad721705d09c62f0d108a6b4f59867ebfd592c90\",\"lessThan\":\"f6f300ecc196d243c02adeb9ee0c62c677c24bfb\",\"versionType\":\"git\",\"status\":\"affected\"},{\"version\":\"ad721705d09c62f0d108a6b4f59867ebfd592c90\",\"lessThan\":\"cbac29a1caa49a34e131394e1f4d924a76d8b0c9\",\"versionType\":\"git\",\"status\":\"affected\"},{\"version\":\"ad721705d09c62f0d108a6b4f59867ebfd592c90\",\"lessThan\":\"1b5feb8497cdb5b9962db2700814bffbc030fb4a\",\"versionType\":\"git\",\"status\":\"affected\"},{\"version\":\"ad721705d09c62f0d108a6b4f59867ebfd592c90\",\"lessThan\":\"cd24e2a60af633f157d7e59c0a6dba64f131c0b1\",\"versionType\":\"git\",\"status\":\"affected\"}]},{\"vendor\":\"Linux\",\"product\":\"Linux\",\"defaultStatus\":\"affected\",\"programFiles\":[\"drivers/vfio/vfio_iommu_type1.c\"],\"repo\":\"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\",\"versions\":[{\"version\":\"5.8\",\"status\":\"affected\"},{\"version\":\"0\",\"lessThan\":\"5.8\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"5.10.195\",\"lessThanOrEqual\":\"5.10.*\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"5.15.132\",\"lessThanOrEqual\":\"5.15.*\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"6.1.53\",\"lessThanOrEqual\":\"6.1.*\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"6.4.16\",\"lessThanOrEqual\":\"6.4.*\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"6.5.3\",\"lessThanOrEqual\":\"6.5.*\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"6.6\",\"lessThanOrEqual\":\"*\",\"versionType\":\"original_commit_for_fix\",\"status\":\"unaffected\"}]}]}],\"metrics\":{},\"references\":[{\"url\":\"https://git.kernel.org/stable/c/13fd667db999bffb557c5de7adb3c14f1713dd51\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/1b5feb8497cdb5b9962db2700814bffbc030fb4a\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/ad83d83dd891244de0d07678b257dc976db7c132\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/cbac29a1caa49a34e131394e1f4d924a76d8b0c9\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/cd24e2a60af633f157d7e59c0a6dba64f131c0b1\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/f6f300ecc196d243c02adeb9ee0c62c677c24bfb\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"}]}}",
    "redhat_vex": {
      "aggregate_severity": "Moderate",
      "current_release_date": "2026-03-05T18:33:24+00:00",
      "cve": "CVE-2023-54137",
      "id": "CVE-2023-54137",
      "initial_release_date": "2023-01-01T00:00:00+00:00",
      "product_status:fixed": "845",
      "product_status:known_affected": "70",
      "product_status:known_not_affected": "120",
      "source": "Red Hat CSAF VEX",
      "status": "final",
      "title": "kernel: Linux kernel: Information disclosure in VFIO Type1 module via uninitialized stack memory",
      "url": "https://security.access.redhat.com/data/csaf/v2/vex/2023/cve-2023-54137.json",
      "version": "3"
    },
    "suse_vex": {
      "aggregate_severity": "moderate",
      "current_release_date": "2026-08-31T13:58:13Z",
      "cve": "CVE-2023-54137",
      "id": "CVE-2023-54137",
      "initial_release_date": "2025-12-25T00:54:46Z",
      "product_status:known_affected": "569",
      "product_status:known_not_affected": "248",
      "product_status:recommended": "241",
      "source": "SUSE CSAF VEX",
      "status": "interim",
      "title": "SUSE CVE CVE-2023-54137",
      "url": "https://ftp.suse.com/pub/projects/security/csaf-vex/cve-2023-54137.json",
      "version": "35"
    }
  }
}



Log in or create an account to share your comment.




Tags
Taxonomy of the tags.


Loading…

Loading…

Loading…

Forecast uses a logistic model when the trend is rising, or an exponential decay model when the trend is falling. Fitted via linearized least squares.

Sightings

Author Source Type Date Other

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…

Related by attack behaviour

Vulnerabilities whose description is nearest to this one in the vector space of the CIRCL/vulnerability-attack-technique-biencoder model. This is a similarity search over the bi-encoder space (plain cosine), not a classification, and it has no measured accuracy.


Loading…