CVE-2026-80712: spi: spi-qpic-snand: write the feature value before executing SET_FEATURE
In the Linux kernel, the following vulnerability has been resolved:
spi: spi-qpic-snand: write the feature value before executing SETFEATURE
qcomspisendcmdaddr() programs NANDFLASHCMD/NANDEXECCMD and submits the descriptors, which makes the controller execute the command immediately. For SPINANDSETFEATURE the value to be written is only placed into NANDFLASHFEATURES afterwards, by qcomspiioop(), in a second submission - so the chip is programmed with whatever that register happened to hold from a previous operation, and the intended value is only applied by the next SETFEATURE.
Measured on a TP-Link Archer AX55 v1 (IPQ5018, ESMT F50L1G41LB): writing 0x40 to the configuration register (0xb0) leaves the chip at 0x00, and the subsequent write of 0x00 leaves it at 0x40 - every write lands one operation late.
This stayed unnoticed until v6.18 added SPI-NAND OTP support together with OTP entries for ESMT chips. spinandotprw() enables OTP mode, reads, and disables it again, and mtdotpnvmemadd() does this during MTD registration. With the off-by-one, the "disable" write actually applies the previously requested value, so CFGOTPENABLE ends up set: the chip stays in OTP mode, every subsequent array read returns the OTP area instead of the array (UBI reports an empty device) and all writes fail with -EIO because the OTP area is write protected. On this board that makes the whole flash unusable and the device unbootable.
Write the feature value into NANDFLASHFEATURES as part of the same transaction, before NANDEXECCMD. While at it, copy only the bytes the operation actually carries - the previous code dereferenced a 4-byte pointer on a one-byte buffer (spinand->scratchbuf).
With this patch the flash contents read back bit-identical to a known-good dump of the same board taken under the vendor firmware (md5-verified across partitions), and writes work.
Affected Software
Event History
Frequently Asked Questions
Which systems are most likely to encounter this issue?
Systems using the Linux kernel qpic SPI-NAND driver and SPI-NAND SET_FEATURE operations are affected by the flawed command ordering. The issue was measured on a TP-Link Archer AX55 v1 with an IPQ5018 and an ESMT F50L1G41LB NAND chip.
When can the problem be triggered during normal operation?
It became visible with SPI-NAND OTP support added in v6.18, together with OTP entries for ESMT chips. OTP handling during MTD registration enables OTP mode, reads it, and then attempts to disable it; the delayed feature write can leave CFG_OTP_ENABLE set instead.
How can I recognize the faulty behavior?
A SET_FEATURE write may take effect one operation late. In the reported test, writing 0x40 to configuration register 0xb0 left it at 0x00, while the following write of 0x00 caused the prior 0x40 value to be applied.