CVE-2026-74633 (GCVE-0-2026-74633)

Vulnerability from cvelistv5 – Published: 2026-08-22 15:32 – Updated: 2026-08-22 15:32
VLAI
Title
tracing: Fix NULL pointer dereference in module event cache removal
Summary
In the Linux kernel, the following vulnerability has been resolved: tracing: Fix NULL pointer dereference in module event cache removal A module-only event filter such as ":mod:foo" is cached with a NULL event_mod->match when foo has not been loaded. If a later write tries to remove a specific match from the same module, remove_cache_mod() passes the NULL cached match to strcmp(), causing a NULL pointer dereference. The issue can be reproduced from userspace: echo ':mod:trace_events_kunit_missing' > /sys/kernel/tracing/set_event echo '!foo_bar:mod:trace_events_kunit_missing' >> /sys/kernel/tracing/set_event The second write must be a concatenation (">>") to not include O_TRUNC as that would cause ftrace_clear_events() to clear the cached modules lines. The crash was reproduced on x86_64 QEMU while KUnit workers contended on the event tracing path: BUG: kernel NULL pointer dereference, address: 0000000000000000 #PF: supervisor read access in kernel mode RIP: 0010:strcmp+0x10/0x30 Call Trace: __ftrace_set_clr_event_nolock+0x373/0x4a0 ftrace_set_clr_event+0xf0/0x180 ftrace_event_write+0xdf/0x110 vfs_write+0xf6/0x440 ksys_write+0x68/0xe0 do_syscall_64+0xf9/0x540 entry_SYSCALL_64_after_hwframe+0x77/0x7f Check event_mod->match before comparing it, consistent with the existing NULL checks for the cached system and event fields. The mismatched removal continues to return -EINVAL; a broad cached module filter is removed with "!:mod:<module>".
Severity
No CVSS data available.
Impacted products
Vendor Product Version CPE status
Linux Linux Affected: b355247df104ef6644288884afd2c08b7bf49897 , < 152a00440dc6ef62c6e4cf9bd881a7e6bb81fda9 (git)
Affected: b355247df104ef6644288884afd2c08b7bf49897 , < ad4e9dd5fec7a322a471ff36fb9c76214e3c6992 (git)
Affected: b355247df104ef6644288884afd2c08b7bf49897 , < b69859204d4db3acd86c1c2dadcef0d77b451933 (git)
guessed Create a notification for this product.
Linux Linux Affected: 6.14
Unaffected: 0 , < 6.14 (semver)
Unaffected: 6.18.45 , ≤ 6.18.* (semver)
Unaffected: 7.1.9 , ≤ 7.1.* (semver)
Unaffected: 7.2 , ≤ * (original_commit_for_fix)
guessed Create a notification for this product.
Show details on NVD website

{
  "containers": {
    "cna": {
      "affected": [
        {
          "defaultStatus": "unaffected",
          "product": "Linux",
          "programFiles": [
            "kernel/trace/trace_events.c"
          ],
          "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
          "vendor": "Linux",
          "versions": [
            {
              "lessThan": "152a00440dc6ef62c6e4cf9bd881a7e6bb81fda9",
              "status": "affected",
              "version": "b355247df104ef6644288884afd2c08b7bf49897",
              "versionType": "git"
            },
            {
              "lessThan": "ad4e9dd5fec7a322a471ff36fb9c76214e3c6992",
              "status": "affected",
              "version": "b355247df104ef6644288884afd2c08b7bf49897",
              "versionType": "git"
            },
            {
              "lessThan": "b69859204d4db3acd86c1c2dadcef0d77b451933",
              "status": "affected",
              "version": "b355247df104ef6644288884afd2c08b7bf49897",
              "versionType": "git"
            }
          ]
        },
        {
          "defaultStatus": "affected",
          "product": "Linux",
          "programFiles": [
            "kernel/trace/trace_events.c"
          ],
          "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
          "vendor": "Linux",
          "versions": [
            {
              "status": "affected",
              "version": "6.14"
            },
            {
              "lessThan": "6.14",
              "status": "unaffected",
              "version": "0",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "6.18.*",
              "status": "unaffected",
              "version": "6.18.45",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "7.1.*",
              "status": "unaffected",
              "version": "7.1.9",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "*",
              "status": "unaffected",
              "version": "7.2",
              "versionType": "original_commit_for_fix"
            }
          ]
        }
      ],
      "cpeApplicability": [
        {
          "nodes": [
            {
              "cpeMatch": [
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "6.18.45",
                  "versionStartIncluding": "6.14",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "7.1.9",
                  "versionStartIncluding": "6.14",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "7.2",
                  "versionStartIncluding": "6.14",
                  "vulnerable": true
                }
              ],
              "negate": false,
              "operator": "OR"
            }
          ]
        }
      ],
      "descriptions": [
        {
          "lang": "en",
          "value": "In the Linux kernel, the following vulnerability has been resolved:\n\ntracing: Fix NULL pointer dereference in module event cache removal\n\nA module-only event filter such as \":mod:foo\" is cached with a NULL\nevent_mod-\u003ematch when foo has not been loaded. If a later write tries to\nremove a specific match from the same module, remove_cache_mod() passes\nthe NULL cached match to strcmp(), causing a NULL pointer dereference.\n\nThe issue can be reproduced from userspace:\n\n  echo \u0027:mod:trace_events_kunit_missing\u0027 \u003e /sys/kernel/tracing/set_event\n  echo \u0027!foo_bar:mod:trace_events_kunit_missing\u0027 \u003e\u003e /sys/kernel/tracing/set_event\n\nThe second write must be a concatenation (\"\u003e\u003e\") to not include O_TRUNC as\nthat would cause ftrace_clear_events() to clear the cached modules lines.\n\nThe crash was reproduced on x86_64 QEMU while KUnit workers contended on\nthe event tracing path:\n\n  BUG: kernel NULL pointer dereference, address: 0000000000000000\n  #PF: supervisor read access in kernel mode\n  RIP: 0010:strcmp+0x10/0x30\n  Call Trace:\n   __ftrace_set_clr_event_nolock+0x373/0x4a0\n   ftrace_set_clr_event+0xf0/0x180\n   ftrace_event_write+0xdf/0x110\n   vfs_write+0xf6/0x440\n   ksys_write+0x68/0xe0\n   do_syscall_64+0xf9/0x540\n   entry_SYSCALL_64_after_hwframe+0x77/0x7f\n\nCheck event_mod-\u003ematch before comparing it, consistent with the existing\nNULL checks for the cached system and event fields. The mismatched removal\ncontinues to return -EINVAL; a broad cached module filter is removed with\n\"!:mod:\u003cmodule\u003e\"."
        }
      ],
      "providerMetadata": {
        "dateUpdated": "2026-08-22T15:32:13.808Z",
        "orgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
        "shortName": "Linux"
      },
      "references": [
        {
          "url": "https://git.kernel.org/stable/c/152a00440dc6ef62c6e4cf9bd881a7e6bb81fda9"
        },
        {
          "url": "https://git.kernel.org/stable/c/ad4e9dd5fec7a322a471ff36fb9c76214e3c6992"
        },
        {
          "url": "https://git.kernel.org/stable/c/b69859204d4db3acd86c1c2dadcef0d77b451933"
        }
      ],
      "title": "tracing: Fix NULL pointer dereference in module event cache removal",
      "x_generator": {
        "engine": "bippy-1.2.0"
      }
    }
  },
  "cveMetadata": {
    "assignerOrgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
    "assignerShortName": "Linux",
    "cveId": "CVE-2026-74633",
    "datePublished": "2026-08-22T15:32:13.808Z",
    "dateReserved": "2026-08-15T05:44:03.922Z",
    "dateUpdated": "2026-08-22T15:32:13.808Z",
    "state": "PUBLISHED"
  },
  "dataType": "CVE_RECORD",
  "dataVersion": "5.2",
  "vulnerability-lookup:meta": {
    "epss": {
      "cve": "CVE-2026-74633",
      "date": "2026-09-01",
      "epss": "0.00166",
      "percentile": "0.0612"
    },
    "nvd": "{\"cve\":{\"id\":\"CVE-2026-74633\",\"sourceIdentifier\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"published\":\"2026-08-22T16:16:36.380\",\"lastModified\":\"2026-08-22T16:16:36.380\",\"vulnStatus\":\"Received\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"In the Linux kernel, the following vulnerability has been resolved:\\n\\ntracing: Fix NULL pointer dereference in module event cache removal\\n\\nA module-only event filter such as \\\":mod:foo\\\" is cached with a NULL\\nevent_mod-\u003ematch when foo has not been loaded. If a later write tries to\\nremove a specific match from the same module, remove_cache_mod() passes\\nthe NULL cached match to strcmp(), causing a NULL pointer dereference.\\n\\nThe issue can be reproduced from userspace:\\n\\n  echo \u0027:mod:trace_events_kunit_missing\u0027 \u003e /sys/kernel/tracing/set_event\\n  echo \u0027!foo_bar:mod:trace_events_kunit_missing\u0027 \u003e\u003e /sys/kernel/tracing/set_event\\n\\nThe second write must be a concatenation (\\\"\u003e\u003e\\\") to not include O_TRUNC as\\nthat would cause ftrace_clear_events() to clear the cached modules lines.\\n\\nThe crash was reproduced on x86_64 QEMU while KUnit workers contended on\\nthe event tracing path:\\n\\n  BUG: kernel NULL pointer dereference, address: 0000000000000000\\n  #PF: supervisor read access in kernel mode\\n  RIP: 0010:strcmp+0x10/0x30\\n  Call Trace:\\n   __ftrace_set_clr_event_nolock+0x373/0x4a0\\n   ftrace_set_clr_event+0xf0/0x180\\n   ftrace_event_write+0xdf/0x110\\n   vfs_write+0xf6/0x440\\n   ksys_write+0x68/0xe0\\n   do_syscall_64+0xf9/0x540\\n   entry_SYSCALL_64_after_hwframe+0x77/0x7f\\n\\nCheck event_mod-\u003ematch before comparing it, consistent with the existing\\nNULL checks for the cached system and event fields. The mismatched removal\\ncontinues to return -EINVAL; a broad cached module filter is removed with\\n\\\"!:mod:\u003cmodule\u003e\\\".\"}],\"affected\":[{\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"affectedData\":[{\"vendor\":\"Linux\",\"product\":\"Linux\",\"defaultStatus\":\"unaffected\",\"programFiles\":[\"kernel/trace/trace_events.c\"],\"repo\":\"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\",\"versions\":[{\"version\":\"b355247df104ef6644288884afd2c08b7bf49897\",\"lessThan\":\"152a00440dc6ef62c6e4cf9bd881a7e6bb81fda9\",\"versionType\":\"git\",\"status\":\"affected\"},{\"version\":\"b355247df104ef6644288884afd2c08b7bf49897\",\"lessThan\":\"ad4e9dd5fec7a322a471ff36fb9c76214e3c6992\",\"versionType\":\"git\",\"status\":\"affected\"},{\"version\":\"b355247df104ef6644288884afd2c08b7bf49897\",\"lessThan\":\"b69859204d4db3acd86c1c2dadcef0d77b451933\",\"versionType\":\"git\",\"status\":\"affected\"}]},{\"vendor\":\"Linux\",\"product\":\"Linux\",\"defaultStatus\":\"affected\",\"programFiles\":[\"kernel/trace/trace_events.c\"],\"repo\":\"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\",\"versions\":[{\"version\":\"6.14\",\"status\":\"affected\"},{\"version\":\"0\",\"lessThan\":\"6.14\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"6.18.45\",\"lessThanOrEqual\":\"6.18.*\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"7.1.9\",\"lessThanOrEqual\":\"7.1.*\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"7.2\",\"lessThanOrEqual\":\"*\",\"versionType\":\"original_commit_for_fix\",\"status\":\"unaffected\"}]}]}],\"metrics\":{},\"references\":[{\"url\":\"https://git.kernel.org/stable/c/152a00440dc6ef62c6e4cf9bd881a7e6bb81fda9\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/ad4e9dd5fec7a322a471ff36fb9c76214e3c6992\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/b69859204d4db3acd86c1c2dadcef0d77b451933\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"}]}}",
    "redhat_vex": {
      "aggregate_severity": "Low",
      "current_release_date": "2026-08-25T10:02:36+00:00",
      "cve": "CVE-2026-74633",
      "id": "CVE-2026-74633",
      "initial_release_date": "2026-08-22T00:00:00+00:00",
      "product_status:known_affected": "14",
      "product_status:known_not_affected": "260",
      "source": "Red Hat CSAF VEX",
      "status": "final",
      "title": "kernel: tracing: Fix NULL pointer dereference in module event cache removal",
      "url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-74633.json",
      "version": "3"
    }
  }
}



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…

Loading…