{"id":"CVE-2026-93259","title":"In the Linux kernel, the following vulnerability has been resolved:\n\npowerpc/irq: Fix missing r2 clobber in PCREL inline assembly\n\nIn CONFIG_PPC_KERNEL_PCREL mode, r2 is no longer reserved for the TOC\npointer and is available as a caller…","summary":"In the Linux kernel, the following vulnerability has been resolved:\n\npowerpc/irq: Fix missing r2 clobber in PCREL inline assembly\n\nIn CONFIG_PPC_KERNEL_PCREL mode, r2 is no longer reserved for the TOC\npointer and is available as a caller…","severity":"none","vendor":"Linux","product":"Linux","affected":["Linux >= 7e3a68be42e10f5fa5890e97afc0afd992355bc3 < dcc442a49c0f540193910dacdca7506bcadc7ec5","Linux >= 7e3a68be42e10f5fa5890e97afc0afd992355bc3 < 602ee44415f3eaa7893f7fc488c7c1d4a0bdbd7a","Linux >= 7e3a68be42e10f5fa5890e97afc0afd992355bc3 < 90d953002cf0b233dd053a0e7cb67ab79cebd0e3","Linux >= 7e3a68be42e10f5fa5890e97afc0afd992355bc3 < 7b0093b638c8f2b94b0778a69fd1ccad54299b29","Linux >= 7e3a68be42e10f5fa5890e97afc0afd992355bc3 < 00be69070d91d2be978e752bb117a0a4db0e1281","Linux 6.4"],"published":"2026-09-24","updated":"2026-09-24","sourceUpdated":"2026-09-24T16:17:22.530","source":"NVD","sourceUrl":"https://nvd.nist.gov/vuln/detail/CVE-2026-93259","references":[{"url":"https://git.kernel.org/stable/c/00be69070d91d2be978e752bb117a0a4db0e1281","label":"416baaa9-dc9f-4396-8d5f-8c081fb06d67"},{"url":"https://git.kernel.org/stable/c/602ee44415f3eaa7893f7fc488c7c1d4a0bdbd7a","label":"416baaa9-dc9f-4396-8d5f-8c081fb06d67"},{"url":"https://git.kernel.org/stable/c/7b0093b638c8f2b94b0778a69fd1ccad54299b29","label":"416baaa9-dc9f-4396-8d5f-8c081fb06d67"},{"url":"https://git.kernel.org/stable/c/90d953002cf0b233dd053a0e7cb67ab79cebd0e3","label":"416baaa9-dc9f-4396-8d5f-8c081fb06d67"},{"url":"https://git.kernel.org/stable/c/dcc442a49c0f540193910dacdca7506bcadc7ec5","label":"416baaa9-dc9f-4396-8d5f-8c081fb06d67"}],"tags":["nvd","cve.org"],"ingestedAt":"2026-09-24T16:47:15.834Z","slug":"CVE-2026-93259","body":"## Overview\n\nIn the Linux kernel, the following vulnerability has been resolved:\n\npowerpc/irq: Fix missing r2 clobber in PCREL inline assembly\n\nIn CONFIG_PPC_KERNEL_PCREL mode, r2 is no longer reserved for the TOC\npointer and is available as a caller-saved register [0].\n\nBoth call_do_irq() and call_do_softirq() use inline assembly to call\nfunctions with stack switching, but fail to list r2 in their clobber\nlists. This causes the compiler to assume r2 is preserved across these\ncalls, leading to register corruption when the called functions\n(__do_irq and __do_softirq) clobber r2.\n\nAs a result of this kernel crash during interrupt handling is seen and\nthe kernel fails to boot:\n\nBUG: Unable to handle kernel data access on write at 0xc000000404697638\nFaulting instruction address: 0xc0000000000181ec\nOops: Kernel access of bad area, sig: 11 [#1]\nNIP [c0000000000181ec] __do_IRQ+0x6c/0xc0\n\nWith older GCC, the compiler would conservatively allocate\ncallee-saved registers (like r31) for values spanning function calls,\naccidentally avoiding the bug:\n\n<__do_IRQ>:\n00 00 00 60 \tnop\na6 02 08 7c \tmflr    r0\nf8 ff e1 fb \tstd     r31,-8(r1)\nf0 ff c1 fb \tstd     r30,-16(r1)\n2d 03 10 06 \tpla     r31,53297316\n\n...\n\n3d e8 ff 4b \tbl      c0000000000165ac <__do_irq>\n00 00 21 e8 \tld      r1,0(r1)\n28 00 4d e9 \tld      r10,40(r13)\n40 00 21 38 \taddi    r1,r1,64\n2a f9 aa 7f \tstdx    r29,r10,r31\n\nWith newer GCC 14, the compiler uses r2 for such values, exposing the\nmissing clobber specification:\n\n<__do_IRQ>:\n00 00 00 60     nop\na6 02 08 7c     mflr    r0\nf0 ff c1 fb     std     r30,-16(r1)\nf8 ff e1 fb     std     r31,-8(r1)\n29 02 10 06     pla     r2,36252592     # c0000000022aadc0 <__irq_regs>\n\n...\n\n85 dc ff 4b \tbl      c000000000015ee0 <__do_irq>\n00 00 21 e8 \tld      r1,0(r1)\n28 00 2d e9 \tld      r9,40(r13)\n30 00 21 38 \taddi    r1,r1,48\n2a 11 c9 7f \tstdx    r30,r9,r2\n\nFix this by adding r2 to the clobber list for both call_do_irq() and\ncall_do_softirq() when CONFIG_PPC_KERNEL_PCREL is enabled.\n\n[0]: https://www.mail-archive.com/gcc-patches@gcc.gnu.org/msg313226.html\n\n## Remediation\n\nRefer to the linked advisories for vendor-supplied fixes and affected version ranges.","depth":"sunlit","depthScore":3,"depthScoreParts":{"impact":2.8,"likelihood":0,"exploitation":0,"ransomware":0},"changes":[]}