CVE-2026-68441 (GCVE-0-2026-68441)

Vulnerability from cvelistv5 – Published: 2026-08-12 00:07 – Updated: 2026-08-17 05:05
VLAI
Title
net/sched: Handle TC_ACT_REDIRECT from qdisc filter chains
Summary
In the Linux kernel, the following vulnerability has been resolved: net/sched: Handle TC_ACT_REDIRECT from qdisc filter chains When a TC filter attached to a qdisc filter chain returns TC_ACT_REDIRECT (ex: via an eBPF program calling bpf_redirect() or an act_bpf action), the redirect was silently lost i.e no qdisc classify function handled TC_ACT_REDIRECT, so the packet fell through the switch and was enqueued normally instead of being redirected. This has been broken since bpf_redirect() was introduced for TC in commit 27b29f63058d ("bpf: add bpf_redirect() helper"). We got lucky for a long time because bpf_net_context was a per-CPU variable that was always available. commit 401cb7dae813 ("net: Reference bpf_redirect_info via task_struct on PREEMPT_RT.") turned bpf_net_context into a task_struct member that is only set up by explicit callers. Without a caller setting it up, bpf_redirect() itself crashes with a NULL pointer dereference in bpf_net_ctx_get_ri(). However, even with bpf_net_context available, TC_ACT_REDIRECT from qdisc filter chains cannot be honored without adding skb_do_redirect() calls to every qdisc classify function, which would require changes across net/sched/. Isolate it to ebpf core where it belongs. Instead, add a tcf_classify_qdisc() inline helper in pkt_cls.h, as a wrapper around tcf_classify() for use by qdisc classify functions and tcf_qevent_handle(). When the classify verdict is TC_ACT_REDIRECT, the wrapper converts it to TC_ACT_SHOT, dropping the packet rather than letting it continue silently. Dropping is preferred over letting the packet through because the user immediately sees packet loss. Silently passing the packet through would hide the problem and leave the user wondering why their redirect is not working. The clsact fast path, tc_run() continues to call tcf_classify() directly and is unaffected: TC_ACT_REDIRECT is returned as-is and handled by sch_handle_egress/ingress() calling skb_do_redirect() as before.
Severity
No CVSS data available.
Impacted products
Vendor Product Version CPE status
Linux Linux Affected: 27b29f63058d26c6c1742f1993338280d5a41dc6 , < c8fd74445e86f88096d2f6cf0f9e4d54d8ed1781 (git)
Affected: 27b29f63058d26c6c1742f1993338280d5a41dc6 , < ec48b3be2c8595dd290be883dbd4fb8b2f9f5d5e (git)
guessed Create a notification for this product.
Linux Linux Affected: 4.4
Unaffected: 0 , < 4.4 (semver)
Unaffected: 7.1.6 , ≤ 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": [
            "include/net/pkt_cls.h",
            "net/sched/cls_api.c",
            "net/sched/sch_cake.c",
            "net/sched/sch_drr.c",
            "net/sched/sch_dualpi2.c",
            "net/sched/sch_ets.c",
            "net/sched/sch_fq_codel.c",
            "net/sched/sch_fq_pie.c",
            "net/sched/sch_hfsc.c",
            "net/sched/sch_htb.c",
            "net/sched/sch_multiq.c",
            "net/sched/sch_prio.c",
            "net/sched/sch_qfq.c",
            "net/sched/sch_sfb.c",
            "net/sched/sch_sfq.c"
          ],
          "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
          "vendor": "Linux",
          "versions": [
            {
              "lessThan": "c8fd74445e86f88096d2f6cf0f9e4d54d8ed1781",
              "status": "affected",
              "version": "27b29f63058d26c6c1742f1993338280d5a41dc6",
              "versionType": "git"
            },
            {
              "lessThan": "ec48b3be2c8595dd290be883dbd4fb8b2f9f5d5e",
              "status": "affected",
              "version": "27b29f63058d26c6c1742f1993338280d5a41dc6",
              "versionType": "git"
            }
          ]
        },
        {
          "defaultStatus": "affected",
          "product": "Linux",
          "programFiles": [
            "include/net/pkt_cls.h",
            "net/sched/cls_api.c",
            "net/sched/sch_cake.c",
            "net/sched/sch_drr.c",
            "net/sched/sch_dualpi2.c",
            "net/sched/sch_ets.c",
            "net/sched/sch_fq_codel.c",
            "net/sched/sch_fq_pie.c",
            "net/sched/sch_hfsc.c",
            "net/sched/sch_htb.c",
            "net/sched/sch_multiq.c",
            "net/sched/sch_prio.c",
            "net/sched/sch_qfq.c",
            "net/sched/sch_sfb.c",
            "net/sched/sch_sfq.c"
          ],
          "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
          "vendor": "Linux",
          "versions": [
            {
              "status": "affected",
              "version": "4.4"
            },
            {
              "lessThan": "4.4",
              "status": "unaffected",
              "version": "0",
              "versionType": "semver"
            },
            {
              "lessThanOrEqual": "7.1.*",
              "status": "unaffected",
              "version": "7.1.6",
              "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": "7.1.6",
                  "versionStartIncluding": "4.4",
                  "vulnerable": true
                },
                {
                  "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
                  "versionEndExcluding": "7.2",
                  "versionStartIncluding": "4.4",
                  "vulnerable": true
                }
              ],
              "negate": false,
              "operator": "OR"
            }
          ]
        }
      ],
      "descriptions": [
        {
          "lang": "en",
          "value": "In the Linux kernel, the following vulnerability has been resolved:\n\nnet/sched: Handle TC_ACT_REDIRECT from qdisc filter chains\n\nWhen a TC filter attached to a qdisc filter chain returns\nTC_ACT_REDIRECT (ex: via an eBPF program calling bpf_redirect() or an\nact_bpf action), the redirect was silently lost i.e no qdisc classify\nfunction handled TC_ACT_REDIRECT, so the packet fell through the\nswitch and was enqueued normally instead of being redirected.\n\nThis has been broken since bpf_redirect() was introduced for TC in\ncommit 27b29f63058d (\"bpf: add bpf_redirect() helper\"). We got lucky\nfor a long time because bpf_net_context was a per-CPU variable that\nwas always available.\n\ncommit 401cb7dae813 (\"net: Reference bpf_redirect_info via task_struct\non PREEMPT_RT.\") turned bpf_net_context into a task_struct member that\nis only set up by explicit callers. Without a caller setting it up,\nbpf_redirect() itself crashes with a NULL pointer dereference in\nbpf_net_ctx_get_ri(). However, even with bpf_net_context available,\nTC_ACT_REDIRECT from qdisc filter chains cannot be honored without\nadding skb_do_redirect() calls to every qdisc classify function, which\nwould require changes across net/sched/. Isolate it to ebpf core where\nit belongs.\n\nInstead, add a tcf_classify_qdisc() inline helper in pkt_cls.h, as a\nwrapper around tcf_classify() for use by qdisc classify functions and\ntcf_qevent_handle(). When the classify verdict is TC_ACT_REDIRECT,\nthe wrapper converts it to TC_ACT_SHOT, dropping the packet rather\nthan letting it continue silently. Dropping is preferred over\nletting the packet through because the user immediately sees packet\nloss. Silently passing the packet through would hide the problem and\nleave the user wondering why their redirect is not working.\n\nThe clsact fast path, tc_run() continues to call tcf_classify() directly\nand is unaffected: TC_ACT_REDIRECT is returned as-is and handled by\nsch_handle_egress/ingress() calling skb_do_redirect() as before."
        }
      ],
      "providerMetadata": {
        "dateUpdated": "2026-08-17T05:05:38.565Z",
        "orgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
        "shortName": "Linux"
      },
      "references": [
        {
          "url": "https://git.kernel.org/stable/c/c8fd74445e86f88096d2f6cf0f9e4d54d8ed1781"
        },
        {
          "url": "https://git.kernel.org/stable/c/ec48b3be2c8595dd290be883dbd4fb8b2f9f5d5e"
        }
      ],
      "title": "net/sched: Handle TC_ACT_REDIRECT from qdisc filter chains",
      "x_generator": {
        "engine": "bippy-1.2.0"
      }
    }
  },
  "cveMetadata": {
    "assignerOrgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
    "assignerShortName": "Linux",
    "cveId": "CVE-2026-68441",
    "datePublished": "2026-08-12T00:07:30.669Z",
    "dateReserved": "2026-07-30T09:28:09.394Z",
    "dateUpdated": "2026-08-17T05:05:38.565Z",
    "state": "PUBLISHED"
  },
  "dataType": "CVE_RECORD",
  "dataVersion": "5.2",
  "vulnerability-lookup:meta": {
    "epss": {
      "cve": "CVE-2026-68441",
      "date": "2026-08-24",
      "epss": "0.00148",
      "percentile": "0.04277"
    },
    "nvd": "{\"cve\":{\"id\":\"CVE-2026-68441\",\"sourceIdentifier\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"published\":\"2026-08-12T00:17:44.353\",\"lastModified\":\"2026-08-17T06:17:53.160\",\"vulnStatus\":\"Received\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"In the Linux kernel, the following vulnerability has been resolved:\\n\\nnet/sched: Handle TC_ACT_REDIRECT from qdisc filter chains\\n\\nWhen a TC filter attached to a qdisc filter chain returns\\nTC_ACT_REDIRECT (ex: via an eBPF program calling bpf_redirect() or an\\nact_bpf action), the redirect was silently lost i.e no qdisc classify\\nfunction handled TC_ACT_REDIRECT, so the packet fell through the\\nswitch and was enqueued normally instead of being redirected.\\n\\nThis has been broken since bpf_redirect() was introduced for TC in\\ncommit 27b29f63058d (\\\"bpf: add bpf_redirect() helper\\\"). We got lucky\\nfor a long time because bpf_net_context was a per-CPU variable that\\nwas always available.\\n\\ncommit 401cb7dae813 (\\\"net: Reference bpf_redirect_info via task_struct\\non PREEMPT_RT.\\\") turned bpf_net_context into a task_struct member that\\nis only set up by explicit callers. Without a caller setting it up,\\nbpf_redirect() itself crashes with a NULL pointer dereference in\\nbpf_net_ctx_get_ri(). However, even with bpf_net_context available,\\nTC_ACT_REDIRECT from qdisc filter chains cannot be honored without\\nadding skb_do_redirect() calls to every qdisc classify function, which\\nwould require changes across net/sched/. Isolate it to ebpf core where\\nit belongs.\\n\\nInstead, add a tcf_classify_qdisc() inline helper in pkt_cls.h, as a\\nwrapper around tcf_classify() for use by qdisc classify functions and\\ntcf_qevent_handle(). When the classify verdict is TC_ACT_REDIRECT,\\nthe wrapper converts it to TC_ACT_SHOT, dropping the packet rather\\nthan letting it continue silently. Dropping is preferred over\\nletting the packet through because the user immediately sees packet\\nloss. Silently passing the packet through would hide the problem and\\nleave the user wondering why their redirect is not working.\\n\\nThe clsact fast path, tc_run() continues to call tcf_classify() directly\\nand is unaffected: TC_ACT_REDIRECT is returned as-is and handled by\\nsch_handle_egress/ingress() calling skb_do_redirect() as before.\"}],\"affected\":[{\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"affectedData\":[{\"vendor\":\"Linux\",\"product\":\"Linux\",\"defaultStatus\":\"unaffected\",\"programFiles\":[\"include/net/pkt_cls.h\",\"net/sched/cls_api.c\",\"net/sched/sch_cake.c\",\"net/sched/sch_drr.c\",\"net/sched/sch_dualpi2.c\",\"net/sched/sch_ets.c\",\"net/sched/sch_fq_codel.c\",\"net/sched/sch_fq_pie.c\",\"net/sched/sch_hfsc.c\",\"net/sched/sch_htb.c\",\"net/sched/sch_multiq.c\",\"net/sched/sch_prio.c\",\"net/sched/sch_qfq.c\",\"net/sched/sch_sfb.c\",\"net/sched/sch_sfq.c\"],\"repo\":\"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\",\"versions\":[{\"version\":\"27b29f63058d26c6c1742f1993338280d5a41dc6\",\"lessThan\":\"c8fd74445e86f88096d2f6cf0f9e4d54d8ed1781\",\"versionType\":\"git\",\"status\":\"affected\"},{\"version\":\"27b29f63058d26c6c1742f1993338280d5a41dc6\",\"lessThan\":\"ec48b3be2c8595dd290be883dbd4fb8b2f9f5d5e\",\"versionType\":\"git\",\"status\":\"affected\"}]},{\"vendor\":\"Linux\",\"product\":\"Linux\",\"defaultStatus\":\"affected\",\"programFiles\":[\"include/net/pkt_cls.h\",\"net/sched/cls_api.c\",\"net/sched/sch_cake.c\",\"net/sched/sch_drr.c\",\"net/sched/sch_dualpi2.c\",\"net/sched/sch_ets.c\",\"net/sched/sch_fq_codel.c\",\"net/sched/sch_fq_pie.c\",\"net/sched/sch_hfsc.c\",\"net/sched/sch_htb.c\",\"net/sched/sch_multiq.c\",\"net/sched/sch_prio.c\",\"net/sched/sch_qfq.c\",\"net/sched/sch_sfb.c\",\"net/sched/sch_sfq.c\"],\"repo\":\"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\",\"versions\":[{\"version\":\"4.4\",\"status\":\"affected\"},{\"version\":\"0\",\"lessThan\":\"4.4\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"7.1.6\",\"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/c8fd74445e86f88096d2f6cf0f9e4d54d8ed1781\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/ec48b3be2c8595dd290be883dbd4fb8b2f9f5d5e\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"}]}}",
    "redhat_vex": {
      "aggregate_severity": "Moderate",
      "current_release_date": "2026-08-25T01:20:56+00:00",
      "cve": "CVE-2026-68441",
      "id": "CVE-2026-68441",
      "initial_release_date": "2026-08-12T00:00:00+00:00",
      "product_status:known_affected": "234",
      "product_status:known_not_affected": "42",
      "source": "Red Hat CSAF VEX",
      "status": "final",
      "title": "kernel: net/sched: Handle TC_ACT_REDIRECT from qdisc filter chains",
      "url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-68441.json",
      "version": "3"
    },
    "suse_vex": {
      "aggregate_severity": "moderate",
      "current_release_date": "2026-08-13T01:27:44Z",
      "cve": "CVE-2026-68441",
      "id": "CVE-2026-68441",
      "initial_release_date": "2026-08-12T16:21:55Z",
      "product_status:known_affected": "292",
      "product_status:known_not_affected": "4",
      "source": "SUSE CSAF VEX",
      "status": "interim",
      "title": "SUSE CVE CVE-2026-68441",
      "url": "https://ftp.suse.com/pub/projects/security/csaf-vex/cve-2026-68441.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…