cve-2024-36925
Vulnerability from cvelistv5
Published
2024-05-30 15:29
Modified
2024-12-19 09:02
Severity ?
Summary
In the Linux kernel, the following vulnerability has been resolved: swiotlb: initialise restricted pool list_head when SWIOTLB_DYNAMIC=y Using restricted DMA pools (CONFIG_DMA_RESTRICTED_POOL=y) in conjunction with dynamic SWIOTLB (CONFIG_SWIOTLB_DYNAMIC=y) leads to the following crash when initialising the restricted pools at boot-time: | Unable to handle kernel NULL pointer dereference at virtual address 0000000000000008 | Internal error: Oops: 0000000096000005 [#1] PREEMPT SMP | pc : rmem_swiotlb_device_init+0xfc/0x1ec | lr : rmem_swiotlb_device_init+0xf0/0x1ec | Call trace: | rmem_swiotlb_device_init+0xfc/0x1ec | of_reserved_mem_device_init_by_idx+0x18c/0x238 | of_dma_configure_id+0x31c/0x33c | platform_dma_configure+0x34/0x80 faddr2line reveals that the crash is in the list validation code: include/linux/list.h:83 include/linux/rculist.h:79 include/linux/rculist.h:106 kernel/dma/swiotlb.c:306 kernel/dma/swiotlb.c:1695 because add_mem_pool() is trying to list_add_rcu() to a NULL 'mem->pools'. Fix the crash by initialising the 'mem->pools' list_head in rmem_swiotlb_device_init() before calling add_mem_pool().
Impacted products
Vendor Product Version
Linux Linux Version: 1aaa736815eb04f4dae3f0b3e977b2a0677a4cfb
Version: 1aaa736815eb04f4dae3f0b3e977b2a0677a4cfb
Version: 1aaa736815eb04f4dae3f0b3e977b2a0677a4cfb
Create a notification for this product.
   Linux Linux Version: 6.6
Create a notification for this product.
Show details on NVD website


{
   containers: {
      adp: [
         {
            providerMetadata: {
               dateUpdated: "2024-08-02T03:43:49.842Z",
               orgId: "af854a3a-2127-422b-91ae-364da2661108",
               shortName: "CVE",
            },
            references: [
               {
                  tags: [
                     "x_transferred",
                  ],
                  url: "https://git.kernel.org/stable/c/f2a6b3ed20f2dea4cb645abc6a73c4595662adca",
               },
               {
                  tags: [
                     "x_transferred",
                  ],
                  url: "https://git.kernel.org/stable/c/f62e0fefcdfe2c05ccb1aa80521a69524eea9c84",
               },
               {
                  tags: [
                     "x_transferred",
                  ],
                  url: "https://git.kernel.org/stable/c/75961ffb5cb3e5196f19cae7683f35cc88b50800",
               },
            ],
            title: "CVE Program Container",
         },
         {
            metrics: [
               {
                  other: {
                     content: {
                        id: "CVE-2024-36925",
                        options: [
                           {
                              Exploitation: "none",
                           },
                           {
                              Automatable: "no",
                           },
                           {
                              "Technical Impact": "partial",
                           },
                        ],
                        role: "CISA Coordinator",
                        timestamp: "2024-09-10T17:15:57.805221Z",
                        version: "2.0.3",
                     },
                     type: "ssvc",
                  },
               },
            ],
            providerMetadata: {
               dateUpdated: "2024-09-11T17:34:59.873Z",
               orgId: "134c704f-9b21-4f2e-91b3-4a467353bcc0",
               shortName: "CISA-ADP",
            },
            title: "CISA ADP Vulnrichment",
         },
      ],
      cna: {
         affected: [
            {
               defaultStatus: "unaffected",
               product: "Linux",
               programFiles: [
                  "kernel/dma/swiotlb.c",
               ],
               repo: "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
               vendor: "Linux",
               versions: [
                  {
                     lessThan: "f2a6b3ed20f2dea4cb645abc6a73c4595662adca",
                     status: "affected",
                     version: "1aaa736815eb04f4dae3f0b3e977b2a0677a4cfb",
                     versionType: "git",
                  },
                  {
                     lessThan: "f62e0fefcdfe2c05ccb1aa80521a69524eea9c84",
                     status: "affected",
                     version: "1aaa736815eb04f4dae3f0b3e977b2a0677a4cfb",
                     versionType: "git",
                  },
                  {
                     lessThan: "75961ffb5cb3e5196f19cae7683f35cc88b50800",
                     status: "affected",
                     version: "1aaa736815eb04f4dae3f0b3e977b2a0677a4cfb",
                     versionType: "git",
                  },
               ],
            },
            {
               defaultStatus: "affected",
               product: "Linux",
               programFiles: [
                  "kernel/dma/swiotlb.c",
               ],
               repo: "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
               vendor: "Linux",
               versions: [
                  {
                     status: "affected",
                     version: "6.6",
                  },
                  {
                     lessThan: "6.6",
                     status: "unaffected",
                     version: "0",
                     versionType: "semver",
                  },
                  {
                     lessThanOrEqual: "6.6.*",
                     status: "unaffected",
                     version: "6.6.31",
                     versionType: "semver",
                  },
                  {
                     lessThanOrEqual: "6.8.*",
                     status: "unaffected",
                     version: "6.8.10",
                     versionType: "semver",
                  },
                  {
                     lessThanOrEqual: "*",
                     status: "unaffected",
                     version: "6.9",
                     versionType: "original_commit_for_fix",
                  },
               ],
            },
         ],
         descriptions: [
            {
               lang: "en",
               value: "In the Linux kernel, the following vulnerability has been resolved:\n\nswiotlb: initialise restricted pool list_head when SWIOTLB_DYNAMIC=y\n\nUsing restricted DMA pools (CONFIG_DMA_RESTRICTED_POOL=y) in conjunction\nwith dynamic SWIOTLB (CONFIG_SWIOTLB_DYNAMIC=y) leads to the following\ncrash when initialising the restricted pools at boot-time:\n\n  | Unable to handle kernel NULL pointer dereference at virtual address 0000000000000008\n  | Internal error: Oops: 0000000096000005 [#1] PREEMPT SMP\n  | pc : rmem_swiotlb_device_init+0xfc/0x1ec\n  | lr : rmem_swiotlb_device_init+0xf0/0x1ec\n  | Call trace:\n  |  rmem_swiotlb_device_init+0xfc/0x1ec\n  |  of_reserved_mem_device_init_by_idx+0x18c/0x238\n  |  of_dma_configure_id+0x31c/0x33c\n  |  platform_dma_configure+0x34/0x80\n\nfaddr2line reveals that the crash is in the list validation code:\n\n  include/linux/list.h:83\n  include/linux/rculist.h:79\n  include/linux/rculist.h:106\n  kernel/dma/swiotlb.c:306\n  kernel/dma/swiotlb.c:1695\n\nbecause add_mem_pool() is trying to list_add_rcu() to a NULL\n'mem->pools'.\n\nFix the crash by initialising the 'mem->pools' list_head in\nrmem_swiotlb_device_init() before calling add_mem_pool().",
            },
         ],
         providerMetadata: {
            dateUpdated: "2024-12-19T09:02:13.342Z",
            orgId: "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
            shortName: "Linux",
         },
         references: [
            {
               url: "https://git.kernel.org/stable/c/f2a6b3ed20f2dea4cb645abc6a73c4595662adca",
            },
            {
               url: "https://git.kernel.org/stable/c/f62e0fefcdfe2c05ccb1aa80521a69524eea9c84",
            },
            {
               url: "https://git.kernel.org/stable/c/75961ffb5cb3e5196f19cae7683f35cc88b50800",
            },
         ],
         title: "swiotlb: initialise restricted pool list_head when SWIOTLB_DYNAMIC=y",
         x_generator: {
            engine: "bippy-5f407fcff5a0",
         },
      },
   },
   cveMetadata: {
      assignerOrgId: "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
      assignerShortName: "Linux",
      cveId: "CVE-2024-36925",
      datePublished: "2024-05-30T15:29:19.111Z",
      dateReserved: "2024-05-30T15:25:07.069Z",
      dateUpdated: "2024-12-19T09:02:13.342Z",
      state: "PUBLISHED",
   },
   dataType: "CVE_RECORD",
   dataVersion: "5.1",
   "vulnerability-lookup:meta": {
      nvd: "{\"cve\":{\"id\":\"CVE-2024-36925\",\"sourceIdentifier\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"published\":\"2024-05-30T16:15:15.800\",\"lastModified\":\"2024-11-21T09:22:49.863\",\"vulnStatus\":\"Modified\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"In the Linux kernel, the following vulnerability has been resolved:\\n\\nswiotlb: initialise restricted pool list_head when SWIOTLB_DYNAMIC=y\\n\\nUsing restricted DMA pools (CONFIG_DMA_RESTRICTED_POOL=y) in conjunction\\nwith dynamic SWIOTLB (CONFIG_SWIOTLB_DYNAMIC=y) leads to the following\\ncrash when initialising the restricted pools at boot-time:\\n\\n  | Unable to handle kernel NULL pointer dereference at virtual address 0000000000000008\\n  | Internal error: Oops: 0000000096000005 [#1] PREEMPT SMP\\n  | pc : rmem_swiotlb_device_init+0xfc/0x1ec\\n  | lr : rmem_swiotlb_device_init+0xf0/0x1ec\\n  | Call trace:\\n  |  rmem_swiotlb_device_init+0xfc/0x1ec\\n  |  of_reserved_mem_device_init_by_idx+0x18c/0x238\\n  |  of_dma_configure_id+0x31c/0x33c\\n  |  platform_dma_configure+0x34/0x80\\n\\nfaddr2line reveals that the crash is in the list validation code:\\n\\n  include/linux/list.h:83\\n  include/linux/rculist.h:79\\n  include/linux/rculist.h:106\\n  kernel/dma/swiotlb.c:306\\n  kernel/dma/swiotlb.c:1695\\n\\nbecause add_mem_pool() is trying to list_add_rcu() to a NULL\\n'mem->pools'.\\n\\nFix the crash by initialising the 'mem->pools' list_head in\\nrmem_swiotlb_device_init() before calling add_mem_pool().\"},{\"lang\":\"es\",\"value\":\"En el kernel de Linux, se ha resuelto la siguiente vulnerabilidad: swiotlb: inicializa el grupo restringido list_head cuando SWIOTLB_DYNAMIC=y El uso de grupos DMA restringidos (CONFIG_DMA_RESTRICTED_POOL=y) junto con SWIOTLB dinámico (CONFIG_SWIOTLB_DYNAMIC=y) provoca el siguiente bloqueo al inicializar el grupo restringido grupos en el momento del arranque: | No se puede manejar la desreferencia del puntero NULL del kernel en la dirección virtual 0000000000000008 | Error interno: Ups: 0000000096000005 [#1] SMP ANTICIPADO | ordenador personal: rmem_swiotlb_device_init+0xfc/0x1ec | lr: rmem_swiotlb_device_init+0xf0/0x1ec | Rastreo de llamadas: | rmem_swiotlb_device_init+0xfc/0x1ec | of_reserved_mem_device_init_by_idx+0x18c/0x238 | of_dma_configure_id+0x31c/0x33c | platform_dma_configure+0x34/0x80 faddr2line revela que el bloqueo está en el código de validación de la lista: include/linux/list.h:83 include/linux/rculist.h:79 include/linux/rculist.h:106 kernel/dma/swiotlb. c:306 kernel/dma/swiotlb.c:1695 porque add_mem_pool() está intentando list_add_rcu() a un NULL 'mem->pools'. Solucione el problema inicializando el list_head 'mem->pools' en rmem_swiotlb_device_init() antes de llamar a add_mem_pool().\"}],\"metrics\":{\"cvssMetricV31\":[{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H\",\"baseScore\":5.5,\"baseSeverity\":\"MEDIUM\",\"attackVector\":\"LOCAL\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"LOW\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"NONE\",\"integrityImpact\":\"NONE\",\"availabilityImpact\":\"HIGH\"},\"exploitabilityScore\":1.8,\"impactScore\":3.6}]},\"weaknesses\":[{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-476\"}]}],\"configurations\":[{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"6.6\",\"versionEndExcluding\":\"6.6.31\",\"matchCriteriaId\":\"E7C57DED-21B6-460F-B4F1-8916B9B7A32E\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"6.7\",\"versionEndExcluding\":\"6.8.10\",\"matchCriteriaId\":\"6A6B920C-8D8F-4130-86B4-AD334F4CF2E3\"}]}]}],\"references\":[{\"url\":\"https://git.kernel.org/stable/c/75961ffb5cb3e5196f19cae7683f35cc88b50800\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/f2a6b3ed20f2dea4cb645abc6a73c4595662adca\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/f62e0fefcdfe2c05ccb1aa80521a69524eea9c84\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/75961ffb5cb3e5196f19cae7683f35cc88b50800\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/f2a6b3ed20f2dea4cb645abc6a73c4595662adca\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/f62e0fefcdfe2c05ccb1aa80521a69524eea9c84\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\",\"tags\":[\"Patch\"]}]}}",
      vulnrichment: {
         containers: "{\"adp\": [{\"title\": \"CVE Program Container\", \"references\": [{\"url\": \"https://git.kernel.org/stable/c/f2a6b3ed20f2dea4cb645abc6a73c4595662adca\", \"tags\": [\"x_transferred\"]}, {\"url\": \"https://git.kernel.org/stable/c/f62e0fefcdfe2c05ccb1aa80521a69524eea9c84\", \"tags\": [\"x_transferred\"]}, {\"url\": \"https://git.kernel.org/stable/c/75961ffb5cb3e5196f19cae7683f35cc88b50800\", \"tags\": [\"x_transferred\"]}], \"providerMetadata\": {\"orgId\": \"af854a3a-2127-422b-91ae-364da2661108\", \"shortName\": \"CVE\", \"dateUpdated\": \"2024-08-02T03:43:49.842Z\"}}, {\"title\": \"CISA ADP Vulnrichment\", \"metrics\": [{\"other\": {\"type\": \"ssvc\", \"content\": {\"id\": \"CVE-2024-36925\", \"role\": \"CISA Coordinator\", \"options\": [{\"Exploitation\": \"none\"}, {\"Automatable\": \"no\"}, {\"Technical Impact\": \"partial\"}], \"version\": \"2.0.3\", \"timestamp\": \"2024-09-10T17:15:57.805221Z\"}}}], \"providerMetadata\": {\"orgId\": \"134c704f-9b21-4f2e-91b3-4a467353bcc0\", \"shortName\": \"CISA-ADP\", \"dateUpdated\": \"2024-09-11T12:42:27.388Z\"}}], \"cna\": {\"title\": \"swiotlb: initialise restricted pool list_head when SWIOTLB_DYNAMIC=y\", \"affected\": [{\"repo\": \"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\", \"vendor\": \"Linux\", \"product\": \"Linux\", \"versions\": [{\"status\": \"affected\", \"version\": \"1aaa736815eb\", \"lessThan\": \"f2a6b3ed20f2\", \"versionType\": \"git\"}, {\"status\": \"affected\", \"version\": \"1aaa736815eb\", \"lessThan\": \"f62e0fefcdfe\", \"versionType\": \"git\"}, {\"status\": \"affected\", \"version\": \"1aaa736815eb\", \"lessThan\": \"75961ffb5cb3\", \"versionType\": \"git\"}], \"programFiles\": [\"kernel/dma/swiotlb.c\"], \"defaultStatus\": \"unaffected\"}, {\"repo\": \"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\", \"vendor\": \"Linux\", \"product\": \"Linux\", \"versions\": [{\"status\": \"affected\", \"version\": \"6.6\"}, {\"status\": \"unaffected\", \"version\": \"0\", \"lessThan\": \"6.6\", \"versionType\": \"semver\"}, {\"status\": \"unaffected\", \"version\": \"6.6.31\", \"versionType\": \"semver\", \"lessThanOrEqual\": \"6.6.*\"}, {\"status\": \"unaffected\", \"version\": \"6.8.10\", \"versionType\": \"semver\", \"lessThanOrEqual\": \"6.8.*\"}, {\"status\": \"unaffected\", \"version\": \"6.9\", \"versionType\": \"original_commit_for_fix\", \"lessThanOrEqual\": \"*\"}], \"programFiles\": [\"kernel/dma/swiotlb.c\"], \"defaultStatus\": \"affected\"}], \"references\": [{\"url\": \"https://git.kernel.org/stable/c/f2a6b3ed20f2dea4cb645abc6a73c4595662adca\"}, {\"url\": \"https://git.kernel.org/stable/c/f62e0fefcdfe2c05ccb1aa80521a69524eea9c84\"}, {\"url\": \"https://git.kernel.org/stable/c/75961ffb5cb3e5196f19cae7683f35cc88b50800\"}], \"x_generator\": {\"engine\": \"bippy-9e1c9544281a\"}, \"descriptions\": [{\"lang\": \"en\", \"value\": \"In the Linux kernel, the following vulnerability has been resolved:\\n\\nswiotlb: initialise restricted pool list_head when SWIOTLB_DYNAMIC=y\\n\\nUsing restricted DMA pools (CONFIG_DMA_RESTRICTED_POOL=y) in conjunction\\nwith dynamic SWIOTLB (CONFIG_SWIOTLB_DYNAMIC=y) leads to the following\\ncrash when initialising the restricted pools at boot-time:\\n\\n  | Unable to handle kernel NULL pointer dereference at virtual address 0000000000000008\\n  | Internal error: Oops: 0000000096000005 [#1] PREEMPT SMP\\n  | pc : rmem_swiotlb_device_init+0xfc/0x1ec\\n  | lr : rmem_swiotlb_device_init+0xf0/0x1ec\\n  | Call trace:\\n  |  rmem_swiotlb_device_init+0xfc/0x1ec\\n  |  of_reserved_mem_device_init_by_idx+0x18c/0x238\\n  |  of_dma_configure_id+0x31c/0x33c\\n  |  platform_dma_configure+0x34/0x80\\n\\nfaddr2line reveals that the crash is in the list validation code:\\n\\n  include/linux/list.h:83\\n  include/linux/rculist.h:79\\n  include/linux/rculist.h:106\\n  kernel/dma/swiotlb.c:306\\n  kernel/dma/swiotlb.c:1695\\n\\nbecause add_mem_pool() is trying to list_add_rcu() to a NULL\\n'mem->pools'.\\n\\nFix the crash by initialising the 'mem->pools' list_head in\\nrmem_swiotlb_device_init() before calling add_mem_pool().\"}], \"providerMetadata\": {\"orgId\": \"416baaa9-dc9f-4396-8d5f-8c081fb06d67\", \"shortName\": \"Linux\", \"dateUpdated\": \"2024-11-05T09:28:11.776Z\"}}}",
         cveMetadata: "{\"cveId\": \"CVE-2024-36925\", \"state\": \"PUBLISHED\", \"dateUpdated\": \"2024-11-05T09:28:11.776Z\", \"dateReserved\": \"2024-05-30T15:25:07.069Z\", \"assignerOrgId\": \"416baaa9-dc9f-4396-8d5f-8c081fb06d67\", \"datePublished\": \"2024-05-30T15:29:19.111Z\", \"assignerShortName\": \"Linux\"}",
         dataType: "CVE_RECORD",
         dataVersion: "5.1",
      },
   },
}


Log in or create an account to share your comment.

Security Advisory comment format.

This schema specifies the format of a comment related to a security advisory.

UUIDv4 of the comment
UUIDv4 of the Vulnerability-Lookup instance
When the comment was created originally
When the comment was last updated
Title of the comment
Description of the comment
The identifier of the vulnerability (CVE ID, GHSA-ID, PYSEC ID, etc.).



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.