CVE-2026-80799 PUBLISHED

nfc: llcp: fix OOB read and u8 offset wrap in TLV parsers

Assigner: Linux
Reserved: 26.08.2026 Published: 04.09.2026 Updated: 04.09.2026

In the Linux kernel, the following vulnerability has been resolved:

nfc: llcp: fix OOB read and u8 offset wrap in TLV parsers

nfc_llcp_parse_gb_tlv() and nfc_llcp_parse_connection_tlv() contain three related bugs in their TLV parsing loops:

  1. 'offset' is declared u8 but tlv_array_len is u16. When TLV data advances offset past 255 it silently wraps to zero, causing infinite loops or double-processing of buffer data.

  2. Before reading tlv[0] (type) and tlv[1] (length) there is no check that offset+2 <= tlv_array_len. A truncated TLV causes an OOB read of one byte past the buffer end.

  3. After reading the length field, the value bytes are accessed without checking offset+2+length <= tlv_array_len. A crafted length=0xFF on a short buffer causes up to 255 bytes of OOB read past the buffer end.

Both functions are reachable without authentication via nfc_llcp_set_remote_gb() which feeds remote LLCP general bytes directly into nfc_llcp_parse_gb_tlv() with no additional validation.

Fix all three issues by widening offset from u8 to u16 and adding bounds checks for both the TLV header and value field before each access.

Product Status

Vendor Linux
Product Linux
Versions Default: unaffected
  • affected from 0be9de2ea01e8d52646e7310a7eef5459cf07ea8 to 2c1456fe09ab1a5a9fe1d8339ca6d509589b56e1 (excl.)
  • affected from 3df40eb3a2ea58bf404a38f15a7a2768e4762cb0 to 7f6f3d087c67a4346189ef2c36481455bbc59a74 (excl.)
  • affected from 3df40eb3a2ea58bf404a38f15a7a2768e4762cb0 to 9c47d667963542c3cf8e3007b7f10c0904d08238 (excl.)
  • affected from 3df40eb3a2ea58bf404a38f15a7a2768e4762cb0 to a209334ed929941b20810c17c3a507445b0a7c85 (excl.)
  • affected from 3df40eb3a2ea58bf404a38f15a7a2768e4762cb0 to 382eaa770335acf4f16a5a55524500f2bb4207df (excl.)
  • affected from 3df40eb3a2ea58bf404a38f15a7a2768e4762cb0 to 2d239590d1845a706304833d40dd6d4fec20ad88 (excl.)
  • affected from 3df40eb3a2ea58bf404a38f15a7a2768e4762cb0 to e84cdfdc4a6c88e8b751144458f2e04e24415a28 (excl.)
  • affected from 3df40eb3a2ea58bf404a38f15a7a2768e4762cb0 to 875285a165fd3b402de2ab3be0deb355d6f4caf5 (excl.)
  • affected from 3df40eb3a2ea58bf404a38f15a7a2768e4762cb0 to 78b20c8eeacd2e44a2d8a4cb5316d3c521d90911 (excl.)
  • Version 1deacb5e031e289ca5636f2db4fcae6612c05d34 is affected
  • Version 66a1be74230bbe098e651766c9a0cf4038db8442 is affected
  • affected from 5.10.188 to 5.10.267 (excl.)
  • affected from 4.19.291 to 4.20 (excl.)
  • affected from 5.4.251 to 5.5 (excl.)
Vendor Linux
Product Linux
Versions Default: affected
  • Version 5.15 is affected
  • unaffected from 0 to 5.15 (excl.)
  • unaffected from 5.10.267 to 5.10.* (incl.)
  • unaffected from 5.15.218 to 5.15.* (incl.)
  • unaffected from 6.1.185 to 6.1.* (incl.)
  • unaffected from 6.6.154 to 6.6.* (incl.)
  • unaffected from 6.12.106 to 6.12.* (incl.)
  • unaffected from 6.18.47 to 6.18.* (incl.)
  • unaffected from 7.1.11 to 7.1.* (incl.)
  • unaffected from 7.2.1 to 7.2.* (incl.)
  • unaffected from 7.3-rc1 to * (incl.)

References