cve-2022-48762
Vulnerability from cvelistv5
Published
2024-06-20 11:13
Modified
2024-08-03 15:25
Severity ?
Summary
arm64: extable: fix load_unaligned_zeropad() reg indices
Impacted products
LinuxLinux
LinuxLinux
Show details on NVD website


{
  "containers": {
    "adp": [
      {
        "metrics": [
          {
            "other": {
              "content": {
                "id": "CVE-2022-48762",
                "options": [
                  {
                    "Exploitation": "none"
                  },
                  {
                    "Automatable": "no"
                  },
                  {
                    "Technical Impact": "partial"
                  }
                ],
                "role": "CISA Coordinator",
                "timestamp": "2024-06-20T13:32:18.518076Z",
                "version": "2.0.3"
              },
              "type": "ssvc"
            }
          }
        ],
        "providerMetadata": {
          "dateUpdated": "2024-06-20T13:32:25.982Z",
          "orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
          "shortName": "CISA-ADP"
        },
        "title": "CISA ADP Vulnrichment"
      },
      {
        "providerMetadata": {
          "dateUpdated": "2024-08-03T15:25:01.535Z",
          "orgId": "af854a3a-2127-422b-91ae-364da2661108",
          "shortName": "CVE"
        },
        "references": [
          {
            "tags": [
              "x_transferred"
            ],
            "url": "https://git.kernel.org/stable/c/47fe7a1c5e3e011eeb4ab79f2d54a794fdd1c3eb"
          },
          {
            "tags": [
              "x_transferred"
            ],
            "url": "https://git.kernel.org/stable/c/3758a6c74e08bdc15ccccd6872a6ad37d165239a"
          }
        ],
        "title": "CVE Program Container"
      }
    ],
    "cna": {
      "affected": [
        {
          "defaultStatus": "unaffected",
          "product": "Linux",
          "programFiles": [
            "arch/arm64/mm/extable.c"
          ],
          "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
          "vendor": "Linux",
          "versions": [
            {
              "lessThan": "47fe7a1c5e3e",
              "status": "affected",
              "version": "753b32368705",
              "versionType": "git"
            },
            {
              "lessThan": "3758a6c74e08",
              "status": "affected",
              "version": "753b32368705",
              "versionType": "git"
            }
          ]
        },
        {
          "defaultStatus": "affected",
          "product": "Linux",
          "programFiles": [
            "arch/arm64/mm/extable.c"
          ],
          "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
          "vendor": "Linux",
          "versions": [
            {
              "status": "affected",
              "version": "5.16"
            },
            {
              "lessThan": "5.16",
              "status": "unaffected",
              "version": "0",
              "versionType": "custom"
            },
            {
              "lessThanOrEqual": "5.16.*",
              "status": "unaffected",
              "version": "5.16.5",
              "versionType": "custom"
            },
            {
              "lessThanOrEqual": "*",
              "status": "unaffected",
              "version": "5.17",
              "versionType": "original_commit_for_fix"
            }
          ]
        }
      ],
      "descriptions": [
        {
          "lang": "en",
          "value": "In the Linux kernel, the following vulnerability has been resolved:\n\narm64: extable: fix load_unaligned_zeropad() reg indices\n\nIn ex_handler_load_unaligned_zeropad() we erroneously extract the data and\naddr register indices from ex-\u003etype rather than ex-\u003edata. As ex-\u003etype will\ncontain EX_TYPE_LOAD_UNALIGNED_ZEROPAD (i.e. 4):\n * We\u0027ll always treat X0 as the address register, since EX_DATA_REG_ADDR is\n   extracted from bits [9:5]. Thus, we may attempt to dereference an\n   arbitrary address as X0 may hold an arbitrary value.\n * We\u0027ll always treat X4 as the data register, since EX_DATA_REG_DATA is\n   extracted from bits [4:0]. Thus we will corrupt X4 and cause arbitrary\n   behaviour within load_unaligned_zeropad() and its caller.\n\nFix this by extracting both values from ex-\u003edata as originally intended.\n\nOn an MTE-enabled QEMU image we are hitting the following crash:\n Unable to handle kernel NULL pointer dereference at virtual address 0000000000000000\n Call trace:\n  fixup_exception+0xc4/0x108\n  __do_kernel_fault+0x3c/0x268\n  do_tag_check_fault+0x3c/0x104\n  do_mem_abort+0x44/0xf4\n  el1_abort+0x40/0x64\n  el1h_64_sync_handler+0x60/0xa0\n  el1h_64_sync+0x7c/0x80\n  link_path_walk+0x150/0x344\n  path_openat+0xa0/0x7dc\n  do_filp_open+0xb8/0x168\n  do_sys_openat2+0x88/0x17c\n  __arm64_sys_openat+0x74/0xa0\n  invoke_syscall+0x48/0x148\n  el0_svc_common+0xb8/0xf8\n  do_el0_svc+0x28/0x88\n  el0_svc+0x24/0x84\n  el0t_64_sync_handler+0x88/0xec\n  el0t_64_sync+0x1b4/0x1b8\n Code: f8695a69 71007d1f 540000e0 927df12a (f940014a)"
        }
      ],
      "providerMetadata": {
        "dateUpdated": "2024-06-20T11:14:56.667Z",
        "orgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
        "shortName": "Linux"
      },
      "references": [
        {
          "url": "https://git.kernel.org/stable/c/47fe7a1c5e3e011eeb4ab79f2d54a794fdd1c3eb"
        },
        {
          "url": "https://git.kernel.org/stable/c/3758a6c74e08bdc15ccccd6872a6ad37d165239a"
        }
      ],
      "title": "arm64: extable: fix load_unaligned_zeropad() reg indices",
      "x_generator": {
        "engine": "bippy-7d53e8ef8be4"
      }
    }
  },
  "cveMetadata": {
    "assignerOrgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
    "assignerShortName": "Linux",
    "cveId": "CVE-2022-48762",
    "datePublished": "2024-06-20T11:13:39.855Z",
    "dateReserved": "2024-06-20T11:09:39.060Z",
    "dateUpdated": "2024-08-03T15:25:01.535Z",
    "state": "PUBLISHED"
  },
  "dataType": "CVE_RECORD",
  "dataVersion": "5.1",
  "meta": {
    "nvd": "{\"cve\":{\"id\":\"CVE-2022-48762\",\"sourceIdentifier\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"published\":\"2024-06-20T12:15:14.287\",\"lastModified\":\"2024-06-20T12:43:25.663\",\"vulnStatus\":\"Awaiting Analysis\",\"descriptions\":[{\"lang\":\"en\",\"value\":\"In the Linux kernel, the following vulnerability has been resolved:\\n\\narm64: extable: fix load_unaligned_zeropad() reg indices\\n\\nIn ex_handler_load_unaligned_zeropad() we erroneously extract the data and\\naddr register indices from ex-\u003etype rather than ex-\u003edata. As ex-\u003etype will\\ncontain EX_TYPE_LOAD_UNALIGNED_ZEROPAD (i.e. 4):\\n * We\u0027ll always treat X0 as the address register, since EX_DATA_REG_ADDR is\\n   extracted from bits [9:5]. Thus, we may attempt to dereference an\\n   arbitrary address as X0 may hold an arbitrary value.\\n * We\u0027ll always treat X4 as the data register, since EX_DATA_REG_DATA is\\n   extracted from bits [4:0]. Thus we will corrupt X4 and cause arbitrary\\n   behaviour within load_unaligned_zeropad() and its caller.\\n\\nFix this by extracting both values from ex-\u003edata as originally intended.\\n\\nOn an MTE-enabled QEMU image we are hitting the following crash:\\n Unable to handle kernel NULL pointer dereference at virtual address 0000000000000000\\n Call trace:\\n  fixup_exception+0xc4/0x108\\n  __do_kernel_fault+0x3c/0x268\\n  do_tag_check_fault+0x3c/0x104\\n  do_mem_abort+0x44/0xf4\\n  el1_abort+0x40/0x64\\n  el1h_64_sync_handler+0x60/0xa0\\n  el1h_64_sync+0x7c/0x80\\n  link_path_walk+0x150/0x344\\n  path_openat+0xa0/0x7dc\\n  do_filp_open+0xb8/0x168\\n  do_sys_openat2+0x88/0x17c\\n  __arm64_sys_openat+0x74/0xa0\\n  invoke_syscall+0x48/0x148\\n  el0_svc_common+0xb8/0xf8\\n  do_el0_svc+0x28/0x88\\n  el0_svc+0x24/0x84\\n  el0t_64_sync_handler+0x88/0xec\\n  el0t_64_sync+0x1b4/0x1b8\\n Code: f8695a69 71007d1f 540000e0 927df12a (f940014a)\"}],\"metrics\":{},\"references\":[{\"url\":\"https://git.kernel.org/stable/c/3758a6c74e08bdc15ccccd6872a6ad37d165239a\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/47fe7a1c5e3e011eeb4ab79f2d54a794fdd1c3eb\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"}]}}"
  }
}


Log in or create an account to share your comment.




Tags
Taxonomy of the tags.


Loading...

Loading...