cve-2025-21799
Vulnerability from cvelistv5
Published
2025-02-27 20:00
Modified
2025-03-24 15:40
Severity ?
Summary
In the Linux kernel, the following vulnerability has been resolved: net: ethernet: ti: am65-cpsw: fix freeing IRQ in am65_cpsw_nuss_remove_tx_chns() When getting the IRQ we use k3_udma_glue_tx_get_irq() which returns negative error value on error. So not NULL check is not sufficient to deteremine if IRQ is valid. Check that IRQ is greater then zero to ensure it is valid. There is no issue at probe time but at runtime user can invoke .set_channels which results in the following call chain. am65_cpsw_set_channels() am65_cpsw_nuss_update_tx_rx_chns() am65_cpsw_nuss_remove_tx_chns() am65_cpsw_nuss_init_tx_chns() At this point if am65_cpsw_nuss_init_tx_chns() fails due to k3_udma_glue_tx_get_irq() then tx_chn->irq will be set to a negative value. Then, at subsequent .set_channels with higher channel count we will attempt to free an invalid IRQ in am65_cpsw_nuss_remove_tx_chns() leading to a kernel warning. The issue is present in the original commit that introduced this driver, although there, am65_cpsw_nuss_update_tx_rx_chns() existed as am65_cpsw_nuss_update_tx_chns().
Impacted products
Vendor Product Version
Linux Linux Version: 93a76530316a3d8cc2d82c3deca48424fee92100
Version: 93a76530316a3d8cc2d82c3deca48424fee92100
Version: 93a76530316a3d8cc2d82c3deca48424fee92100
Version: 93a76530316a3d8cc2d82c3deca48424fee92100
Version: 93a76530316a3d8cc2d82c3deca48424fee92100
Version: 93a76530316a3d8cc2d82c3deca48424fee92100
Version: 93a76530316a3d8cc2d82c3deca48424fee92100
Create a notification for this product.
   Linux Linux Version: 5.7
Create a notification for this product.
Show details on NVD website


{
   containers: {
      cna: {
         affected: [
            {
               defaultStatus: "unaffected",
               product: "Linux",
               programFiles: [
                  "drivers/net/ethernet/ti/am65-cpsw-nuss.c",
               ],
               repo: "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
               vendor: "Linux",
               versions: [
                  {
                     lessThan: "321990fdf4f1bb64e818c7140688bf33d129e48d",
                     status: "affected",
                     version: "93a76530316a3d8cc2d82c3deca48424fee92100",
                     versionType: "git",
                  },
                  {
                     lessThan: "ed8c0300f302338c36edb06bca99051e5be6fb2f",
                     status: "affected",
                     version: "93a76530316a3d8cc2d82c3deca48424fee92100",
                     versionType: "git",
                  },
                  {
                     lessThan: "aea5cca681d268f794fa2385f9ec26a5cce025cd",
                     status: "affected",
                     version: "93a76530316a3d8cc2d82c3deca48424fee92100",
                     versionType: "git",
                  },
                  {
                     lessThan: "88fd5db8c0073bd91d18391feb5741aeb0a2b475",
                     status: "affected",
                     version: "93a76530316a3d8cc2d82c3deca48424fee92100",
                     versionType: "git",
                  },
                  {
                     lessThan: "8448c87b3af68bebca21e3136913f7f77e363515",
                     status: "affected",
                     version: "93a76530316a3d8cc2d82c3deca48424fee92100",
                     versionType: "git",
                  },
                  {
                     lessThan: "8aae91ae1c65782a169ec070e023d4d269e5d6e6",
                     status: "affected",
                     version: "93a76530316a3d8cc2d82c3deca48424fee92100",
                     versionType: "git",
                  },
                  {
                     lessThan: "4395a44acb15850e492dd1de9ec4b6479d96bc80",
                     status: "affected",
                     version: "93a76530316a3d8cc2d82c3deca48424fee92100",
                     versionType: "git",
                  },
               ],
            },
            {
               defaultStatus: "affected",
               product: "Linux",
               programFiles: [
                  "drivers/net/ethernet/ti/am65-cpsw-nuss.c",
               ],
               repo: "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
               vendor: "Linux",
               versions: [
                  {
                     status: "affected",
                     version: "5.7",
                  },
                  {
                     lessThan: "5.7",
                     status: "unaffected",
                     version: "0",
                     versionType: "semver",
                  },
                  {
                     lessThanOrEqual: "5.10.*",
                     status: "unaffected",
                     version: "5.10.235",
                     versionType: "semver",
                  },
                  {
                     lessThanOrEqual: "5.15.*",
                     status: "unaffected",
                     version: "5.15.179",
                     versionType: "semver",
                  },
                  {
                     lessThanOrEqual: "6.1.*",
                     status: "unaffected",
                     version: "6.1.129",
                     versionType: "semver",
                  },
                  {
                     lessThanOrEqual: "6.6.*",
                     status: "unaffected",
                     version: "6.6.76",
                     versionType: "semver",
                  },
                  {
                     lessThanOrEqual: "6.12.*",
                     status: "unaffected",
                     version: "6.12.13",
                     versionType: "semver",
                  },
                  {
                     lessThanOrEqual: "6.13.*",
                     status: "unaffected",
                     version: "6.13.2",
                     versionType: "semver",
                  },
                  {
                     lessThanOrEqual: "*",
                     status: "unaffected",
                     version: "6.14",
                     versionType: "original_commit_for_fix",
                  },
               ],
            },
         ],
         descriptions: [
            {
               lang: "en",
               value: "In the Linux kernel, the following vulnerability has been resolved:\n\nnet: ethernet: ti: am65-cpsw: fix freeing IRQ in am65_cpsw_nuss_remove_tx_chns()\n\nWhen getting the IRQ we use k3_udma_glue_tx_get_irq() which returns\nnegative error value on error. So not NULL check is not sufficient\nto deteremine if IRQ is valid. Check that IRQ is greater then zero\nto ensure it is valid.\n\nThere is no issue at probe time but at runtime user can invoke\n.set_channels which results in the following call chain.\nam65_cpsw_set_channels()\n am65_cpsw_nuss_update_tx_rx_chns()\n  am65_cpsw_nuss_remove_tx_chns()\n  am65_cpsw_nuss_init_tx_chns()\n\nAt this point if am65_cpsw_nuss_init_tx_chns() fails due to\nk3_udma_glue_tx_get_irq() then tx_chn->irq will be set to a\nnegative value.\n\nThen, at subsequent .set_channels with higher channel count we\nwill attempt to free an invalid IRQ in am65_cpsw_nuss_remove_tx_chns()\nleading to a kernel warning.\n\nThe issue is present in the original commit that introduced this driver,\nalthough there, am65_cpsw_nuss_update_tx_rx_chns() existed as\nam65_cpsw_nuss_update_tx_chns().",
            },
         ],
         providerMetadata: {
            dateUpdated: "2025-03-24T15:40:35.126Z",
            orgId: "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
            shortName: "Linux",
         },
         references: [
            {
               url: "https://git.kernel.org/stable/c/321990fdf4f1bb64e818c7140688bf33d129e48d",
            },
            {
               url: "https://git.kernel.org/stable/c/ed8c0300f302338c36edb06bca99051e5be6fb2f",
            },
            {
               url: "https://git.kernel.org/stable/c/aea5cca681d268f794fa2385f9ec26a5cce025cd",
            },
            {
               url: "https://git.kernel.org/stable/c/88fd5db8c0073bd91d18391feb5741aeb0a2b475",
            },
            {
               url: "https://git.kernel.org/stable/c/8448c87b3af68bebca21e3136913f7f77e363515",
            },
            {
               url: "https://git.kernel.org/stable/c/8aae91ae1c65782a169ec070e023d4d269e5d6e6",
            },
            {
               url: "https://git.kernel.org/stable/c/4395a44acb15850e492dd1de9ec4b6479d96bc80",
            },
         ],
         title: "net: ethernet: ti: am65-cpsw: fix freeing IRQ in am65_cpsw_nuss_remove_tx_chns()",
         x_generator: {
            engine: "bippy-5f407fcff5a0",
         },
      },
   },
   cveMetadata: {
      assignerOrgId: "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
      assignerShortName: "Linux",
      cveId: "CVE-2025-21799",
      datePublished: "2025-02-27T20:00:54.223Z",
      dateReserved: "2024-12-29T08:45:45.770Z",
      dateUpdated: "2025-03-24T15:40:35.126Z",
      state: "PUBLISHED",
   },
   dataType: "CVE_RECORD",
   dataVersion: "5.1",
   "vulnerability-lookup:meta": {
      nvd: "{\"cve\":{\"id\":\"CVE-2025-21799\",\"sourceIdentifier\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"published\":\"2025-02-27T20:16:02.563\",\"lastModified\":\"2025-03-13T13:15:55.610\",\"vulnStatus\":\"Awaiting Analysis\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"In the Linux kernel, the following vulnerability has been resolved:\\n\\nnet: ethernet: ti: am65-cpsw: fix freeing IRQ in am65_cpsw_nuss_remove_tx_chns()\\n\\nWhen getting the IRQ we use k3_udma_glue_tx_get_irq() which returns\\nnegative error value on error. So not NULL check is not sufficient\\nto deteremine if IRQ is valid. Check that IRQ is greater then zero\\nto ensure it is valid.\\n\\nThere is no issue at probe time but at runtime user can invoke\\n.set_channels which results in the following call chain.\\nam65_cpsw_set_channels()\\n am65_cpsw_nuss_update_tx_rx_chns()\\n  am65_cpsw_nuss_remove_tx_chns()\\n  am65_cpsw_nuss_init_tx_chns()\\n\\nAt this point if am65_cpsw_nuss_init_tx_chns() fails due to\\nk3_udma_glue_tx_get_irq() then tx_chn->irq will be set to a\\nnegative value.\\n\\nThen, at subsequent .set_channels with higher channel count we\\nwill attempt to free an invalid IRQ in am65_cpsw_nuss_remove_tx_chns()\\nleading to a kernel warning.\\n\\nThe issue is present in the original commit that introduced this driver,\\nalthough there, am65_cpsw_nuss_update_tx_rx_chns() existed as\\nam65_cpsw_nuss_update_tx_chns().\"},{\"lang\":\"es\",\"value\":\"En el kernel de Linux, se ha resuelto la siguiente vulnerabilidad: net: ethernet: ti: am65-cpsw: arreglo de liberación de IRQ en am65_cpsw_nuss_remove_tx_chns() Al obtener la IRQ, usamos k3_udma_glue_tx_get_irq() que devuelve un valor de error negativo en caso de error. Por lo tanto, la comprobación de que no sea NULL no es suficiente para determinar si la IRQ es válida. Compruebe que la IRQ sea mayor que cero para asegurarse de que sea válida. No hay ningún problema en el momento de la prueba, pero en el momento de la ejecución, el usuario puede invocar .set_channels, lo que da como resultado la siguiente cadena de llamadas. am65_cpsw_set_channels() am65_cpsw_nuss_update_tx_rx_chns() am65_cpsw_nuss_remove_tx_chns() am65_cpsw_nuss_init_tx_chns() En este punto, si am65_cpsw_nuss_init_tx_chns() falla debido a k3_udma_glue_tx_get_irq(), tx_chn->irq se establecerá en un valor negativo. Luego, en los .set_channels posteriores con un mayor conteo de canales, intentaremos liberar una IRQ no válida en am65_cpsw_nuss_remove_tx_chns(), lo que generará una advertencia del kernel. El problema está presente en el commit original que introdujo este controlador, aunque allí, am65_cpsw_nuss_update_tx_rx_chns() existía como am65_cpsw_nuss_update_tx_chns().\"}],\"metrics\":{},\"references\":[{\"url\":\"https://git.kernel.org/stable/c/321990fdf4f1bb64e818c7140688bf33d129e48d\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/4395a44acb15850e492dd1de9ec4b6479d96bc80\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/8448c87b3af68bebca21e3136913f7f77e363515\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/88fd5db8c0073bd91d18391feb5741aeb0a2b475\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/8aae91ae1c65782a169ec070e023d4d269e5d6e6\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/aea5cca681d268f794fa2385f9ec26a5cce025cd\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/ed8c0300f302338c36edb06bca99051e5be6fb2f\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"}]}}",
   },
}


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.