cve-2024-49954
Vulnerability from cvelistv5
Published
2024-10-21 18:02
Modified
2024-12-19 09:30
Severity ?
Summary
In the Linux kernel, the following vulnerability has been resolved: static_call: Replace pointless WARN_ON() in static_call_module_notify() static_call_module_notify() triggers a WARN_ON(), when memory allocation fails in __static_call_add_module(). That's not really justified, because the failure case must be correctly handled by the well known call chain and the error code is passed through to the initiating userspace application. A memory allocation fail is not a fatal problem, but the WARN_ON() takes the machine out when panic_on_warn is set. Replace it with a pr_warn().
Impacted products
Vendor Product Version
Linux Linux Version: 9183c3f9ed710a8edf1a61e8a96d497258d26e08
Version: 9183c3f9ed710a8edf1a61e8a96d497258d26e08
Version: 9183c3f9ed710a8edf1a61e8a96d497258d26e08
Version: 9183c3f9ed710a8edf1a61e8a96d497258d26e08
Version: 9183c3f9ed710a8edf1a61e8a96d497258d26e08
Version: 9183c3f9ed710a8edf1a61e8a96d497258d26e08
Create a notification for this product.
   Linux Linux Version: 5.10
Create a notification for this product.
Show details on NVD website


{
  "containers": {
    "adp": [
      {
        "metrics": [
          {
            "other": {
              "content": {
                "id": "CVE-2024-49954",
                "options": [
                  {
                    "Exploitation": "none"
                  },
                  {
                    "Automatable": "no"
                  },
                  {
                    "Technical Impact": "partial"
                  }
                ],
                "role": "CISA Coordinator",
                "timestamp": "2024-10-22T13:35:58.998155Z",
                "version": "2.0.3"
              },
              "type": "ssvc"
            }
          }
        ],
        "providerMetadata": {
          "dateUpdated": "2024-10-22T13:38:48.704Z",
          "orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
          "shortName": "CISA-ADP"
        },
        "title": "CISA ADP Vulnrichment"
      }
    ],
    "cna": {
      "affected": [
        {
          "defaultStatus": "unaffected",
          "product": "Linux",
          "programFiles": [
            "kernel/static_call_inline.c"
          ],
          "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
          "vendor": "Linux",
          "versions": [
            {
              "lessThan": "bc9356513d56b688775497b7ac6f2b967f46a80c",
              "status": "affected",
              "version": "9183c3f9ed710a8edf1a61e8a96d497258d26e08",
              "versionType": "git"
            },
            {
              "lessThan": "ea2cdf4da093d0482f0ef36ba971e2e0c7673425",
              "status": "affected",
              "version": "9183c3f9ed710a8edf1a61e8a96d497258d26e08",
              "versionType": "git"
            },
            {
              "lessThan": "e67534bd31d79952b50e791e92adf0b3e6c13b8c",
              "status": "affected",
              "version": "9183c3f9ed710a8edf1a61e8a96d497258d26e08",
              "versionType": "git"
            },
            {
              "lessThan": "85a104aaef1f56623acc10ba4c42d5f046ba65b7",
              "status": "affected",
              "version": "9183c3f9ed710a8edf1a61e8a96d497258d26e08",
              "versionType": "git"
            },
            {
              "lessThan": "b83bef74c121a3311240fc4002d23486b85355e4",
              "status": "affected",
              "version": "9183c3f9ed710a8edf1a61e8a96d497258d26e08",
              "versionType": "git"
            },
            {
              "lessThan": "fe513c2ef0a172a58f158e2e70465c4317f0a9a2",
              "status": "affected",
              "version": "9183c3f9ed710a8edf1a61e8a96d497258d26e08",
              "versionType": "git"
            }
          ]
        },
        {
          "defaultStatus": "affected",
          "product": "Linux",
          "programFiles": [
            "kernel/static_call_inline.c"
          ],
          "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
          "vendor": "Linux",
          "versions": [
            {
              "status": "affected",
              "version": "5.10"
            },
            {
              "lessThan": "5.10",
              "status": "unaffected",
              "version": "0",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "5.15.*",
              "status": "unaffected",
              "version": "5.15.168",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "6.1.*",
              "status": "unaffected",
              "version": "6.1.113",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "6.6.*",
              "status": "unaffected",
              "version": "6.6.55",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "6.10.*",
              "status": "unaffected",
              "version": "6.10.14",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "6.11.*",
              "status": "unaffected",
              "version": "6.11.3",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "*",
              "status": "unaffected",
              "version": "6.12",
              "versionType": "original_commit_for_fix"
            }
          ]
        }
      ],
      "descriptions": [
        {
          "lang": "en",
          "value": "In the Linux kernel, the following vulnerability has been resolved:\n\nstatic_call: Replace pointless WARN_ON() in static_call_module_notify()\n\nstatic_call_module_notify() triggers a WARN_ON(), when memory allocation\nfails in __static_call_add_module().\n\nThat\u0027s not really justified, because the failure case must be correctly\nhandled by the well known call chain and the error code is passed\nthrough to the initiating userspace application.\n\nA memory allocation fail is not a fatal problem, but the WARN_ON() takes\nthe machine out when panic_on_warn is set.\n\nReplace it with a pr_warn()."
        }
      ],
      "providerMetadata": {
        "dateUpdated": "2024-12-19T09:30:04.936Z",
        "orgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
        "shortName": "Linux"
      },
      "references": [
        {
          "url": "https://git.kernel.org/stable/c/bc9356513d56b688775497b7ac6f2b967f46a80c"
        },
        {
          "url": "https://git.kernel.org/stable/c/ea2cdf4da093d0482f0ef36ba971e2e0c7673425"
        },
        {
          "url": "https://git.kernel.org/stable/c/e67534bd31d79952b50e791e92adf0b3e6c13b8c"
        },
        {
          "url": "https://git.kernel.org/stable/c/85a104aaef1f56623acc10ba4c42d5f046ba65b7"
        },
        {
          "url": "https://git.kernel.org/stable/c/b83bef74c121a3311240fc4002d23486b85355e4"
        },
        {
          "url": "https://git.kernel.org/stable/c/fe513c2ef0a172a58f158e2e70465c4317f0a9a2"
        }
      ],
      "title": "static_call: Replace pointless WARN_ON() in static_call_module_notify()",
      "x_generator": {
        "engine": "bippy-5f407fcff5a0"
      }
    }
  },
  "cveMetadata": {
    "assignerOrgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
    "assignerShortName": "Linux",
    "cveId": "CVE-2024-49954",
    "datePublished": "2024-10-21T18:02:09.064Z",
    "dateReserved": "2024-10-21T12:17:06.047Z",
    "dateUpdated": "2024-12-19T09:30:04.936Z",
    "state": "PUBLISHED"
  },
  "dataType": "CVE_RECORD",
  "dataVersion": "5.1",
  "vulnerability-lookup:meta": {
    "nvd": "{\"cve\":{\"id\":\"CVE-2024-49954\",\"sourceIdentifier\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"published\":\"2024-10-21T18:15:16.753\",\"lastModified\":\"2024-11-07T19:16:01.590\",\"vulnStatus\":\"Analyzed\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"In the Linux kernel, the following vulnerability has been resolved:\\n\\nstatic_call: Replace pointless WARN_ON() in static_call_module_notify()\\n\\nstatic_call_module_notify() triggers a WARN_ON(), when memory allocation\\nfails in __static_call_add_module().\\n\\nThat\u0027s not really justified, because the failure case must be correctly\\nhandled by the well known call chain and the error code is passed\\nthrough to the initiating userspace application.\\n\\nA memory allocation fail is not a fatal problem, but the WARN_ON() takes\\nthe machine out when panic_on_warn is set.\\n\\nReplace it with a pr_warn().\"},{\"lang\":\"es\",\"value\":\"En el kernel de Linux, se ha resuelto la siguiente vulnerabilidad: static_call: Reemplazar WARN_ON() sin sentido en static_call_module_notify() static_call_module_notify() activa un WARN_ON() cuando la asignaci\u00f3n de memoria fallo en __static_call_add_module(). Esto no est\u00e1 realmente justificado, porque el caso de fallo debe ser manejado correctamente por la cadena de llamadas conocida y el c\u00f3digo de error se pasa a la aplicaci\u00f3n de espacio de usuario que la inicia. Un error en la asignaci\u00f3n de memoria no es un problema fatal, pero WARN_ON() deja fuera de servicio la m\u00e1quina cuando se establece panic_on_warn. Reempl\u00e1zalo con un pr_warn().\"}],\"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\":\"NVD-CWE-noinfo\"}]}],\"configurations\":[{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"5.10\",\"versionEndExcluding\":\"5.15.168\",\"matchCriteriaId\":\"243E517F-E8D1-4CB4-B5E1-099330E2800C\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"5.16\",\"versionEndExcluding\":\"6.1.113\",\"matchCriteriaId\":\"D01BD22E-ACD1-4618-9D01-6116570BE1EE\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"6.2\",\"versionEndExcluding\":\"6.6.55\",\"matchCriteriaId\":\"E90B9576-56C4-47BC-AAB0-C5B2D438F5D0\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"6.7\",\"versionEndExcluding\":\"6.10.14\",\"matchCriteriaId\":\"4C16BCE0-FFA0-4599-BE0A-1FD65101C021\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"6.11\",\"versionEndExcluding\":\"6.11.3\",\"matchCriteriaId\":\"54D9C704-D679-41A7-9C40-10A6B1E7FFE9\"}]}]}],\"references\":[{\"url\":\"https://git.kernel.org/stable/c/85a104aaef1f56623acc10ba4c42d5f046ba65b7\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/b83bef74c121a3311240fc4002d23486b85355e4\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/bc9356513d56b688775497b7ac6f2b967f46a80c\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/e67534bd31d79952b50e791e92adf0b3e6c13b8c\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/ea2cdf4da093d0482f0ef36ba971e2e0c7673425\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/fe513c2ef0a172a58f158e2e70465c4317f0a9a2\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]}]}}",
    "vulnrichment": {
      "containers": "{\"cna\": {\"providerMetadata\": {\"orgId\": \"416baaa9-dc9f-4396-8d5f-8c081fb06d67\", \"shortName\": \"Linux\", \"dateUpdated\": \"2024-10-21T18:02:09.064Z\"}, \"descriptions\": [{\"lang\": \"en\", \"value\": \"In the Linux kernel, the following vulnerability has been resolved:\\n\\nstatic_call: Replace pointless WARN_ON() in static_call_module_notify()\\n\\nstatic_call_module_notify() triggers a WARN_ON(), when memory allocation\\nfails in __static_call_add_module().\\n\\nThat\u0027s not really justified, because the failure case must be correctly\\nhandled by the well known call chain and the error code is passed\\nthrough to the initiating userspace application.\\n\\nA memory allocation fail is not a fatal problem, but the WARN_ON() takes\\nthe machine out when panic_on_warn is set.\\n\\nReplace it with a pr_warn().\"}], \"affected\": [{\"product\": \"Linux\", \"vendor\": \"Linux\", \"defaultStatus\": \"unaffected\", \"repo\": \"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\", \"programFiles\": [\"kernel/static_call_inline.c\"], \"versions\": [{\"version\": \"9183c3f9ed71\", \"lessThan\": \"bc9356513d56\", \"status\": \"affected\", \"versionType\": \"git\"}, {\"version\": \"9183c3f9ed71\", \"lessThan\": \"ea2cdf4da093\", \"status\": \"affected\", \"versionType\": \"git\"}, {\"version\": \"9183c3f9ed71\", \"lessThan\": \"e67534bd31d7\", \"status\": \"affected\", \"versionType\": \"git\"}, {\"version\": \"9183c3f9ed71\", \"lessThan\": \"85a104aaef1f\", \"status\": \"affected\", \"versionType\": \"git\"}, {\"version\": \"9183c3f9ed71\", \"lessThan\": \"b83bef74c121\", \"status\": \"affected\", \"versionType\": \"git\"}, {\"version\": \"9183c3f9ed71\", \"lessThan\": \"fe513c2ef0a1\", \"status\": \"affected\", \"versionType\": \"git\"}]}, {\"product\": \"Linux\", \"vendor\": \"Linux\", \"defaultStatus\": \"affected\", \"repo\": \"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\", \"programFiles\": [\"kernel/static_call_inline.c\"], \"versions\": [{\"version\": \"5.10\", \"status\": \"affected\"}, {\"version\": \"0\", \"lessThan\": \"5.10\", \"status\": \"unaffected\", \"versionType\": \"custom\"}, {\"version\": \"5.15.168\", \"lessThanOrEqual\": \"5.15.*\", \"status\": \"unaffected\", \"versionType\": \"custom\"}, {\"version\": \"6.1.113\", \"lessThanOrEqual\": \"6.1.*\", \"status\": \"unaffected\", \"versionType\": \"custom\"}, {\"version\": \"6.6.55\", \"lessThanOrEqual\": \"6.6.*\", \"status\": \"unaffected\", \"versionType\": \"custom\"}, {\"version\": \"6.10.14\", \"lessThanOrEqual\": \"6.10.*\", \"status\": \"unaffected\", \"versionType\": \"custom\"}, {\"version\": \"6.11.3\", \"lessThanOrEqual\": \"6.11.*\", \"status\": \"unaffected\", \"versionType\": \"custom\"}, {\"version\": \"6.12-rc1\", \"lessThanOrEqual\": \"*\", \"status\": \"unaffected\", \"versionType\": \"original_commit_for_fix\"}]}], \"references\": [{\"url\": \"https://git.kernel.org/stable/c/bc9356513d56b688775497b7ac6f2b967f46a80c\"}, {\"url\": \"https://git.kernel.org/stable/c/ea2cdf4da093d0482f0ef36ba971e2e0c7673425\"}, {\"url\": \"https://git.kernel.org/stable/c/e67534bd31d79952b50e791e92adf0b3e6c13b8c\"}, {\"url\": \"https://git.kernel.org/stable/c/85a104aaef1f56623acc10ba4c42d5f046ba65b7\"}, {\"url\": \"https://git.kernel.org/stable/c/b83bef74c121a3311240fc4002d23486b85355e4\"}, {\"url\": \"https://git.kernel.org/stable/c/fe513c2ef0a172a58f158e2e70465c4317f0a9a2\"}], \"title\": \"static_call: Replace pointless WARN_ON() in static_call_module_notify()\", \"x_generator\": {\"engine\": \"bippy-c9c4e1df01b2\"}}, \"adp\": [{\"metrics\": [{\"other\": {\"type\": \"ssvc\", \"content\": {\"id\": \"CVE-2024-49954\", \"role\": \"CISA Coordinator\", \"options\": [{\"Exploitation\": \"none\"}, {\"Automatable\": \"no\"}, {\"Technical Impact\": \"partial\"}], \"version\": \"2.0.3\", \"timestamp\": \"2024-10-22T13:35:58.998155Z\"}}}], \"providerMetadata\": {\"shortName\": \"CISA-ADP\", \"orgId\": \"134c704f-9b21-4f2e-91b3-4a467353bcc0\", \"dateUpdated\": \"2024-10-22T13:36:02.976Z\"}, \"title\": \"CISA ADP Vulnrichment\"}]}",
      "cveMetadata": "{\"cveId\": \"CVE-2024-49954\", \"assignerOrgId\": \"416baaa9-dc9f-4396-8d5f-8c081fb06d67\", \"state\": \"PUBLISHED\", \"assignerShortName\": \"Linux\", \"dateReserved\": \"2024-10-21T12:17:06.047Z\", \"datePublished\": \"2024-10-21T18:02:09.064Z\", \"dateUpdated\": \"2024-10-21T18:02:09.064Z\"}",
      "dataType": "CVE_RECORD",
      "dataVersion": "5.1"
    }
  }
}


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.