CVE-2026-64361 PUBLISHED

hfs/hfsplus: fix u32 overflow in check_and_correct_requested_length

Assigner: Linux
Reserved: 19.07.2026 Published: 25.07.2026 Updated: 25.07.2026

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

hfs/hfsplus: fix u32 overflow in check_and_correct_requested_length

check_and_correct_requested_length() compares (off + len) against node_size using u32 arithmetic. When the caller passes a large len value (e.g. from an underflowed subtraction in hfs_brec_remove()), off + len can wrap past 2^32 and produce a small result, causing the bounds check to pass when it should fail.

For example, with off=14 and len=0xFFFFFFF2 (underflowed from data_off - keyoffset - size in hfs_brec_remove), off + len wraps to 6, which is less than a typical node_size of 512, so the check passes and the subsequent memmove reads ~4GB past the node buffer.

Fix this by widening the addition to u64 before comparing against node_size. This prevents the u32 wrap while keeping the logic straightforward.

Product Status

Vendor Linux
Product Linux
Versions Default: unaffected
  • affected from 67ecc81f6492275c9c54280532f558483c99c90e to c8dd112173c02adf539fe2ad34a45f5e0068780d (excl.)
  • affected from a1a60e79502279f996e55052f50cc14919020475 to fc9d1447ca3cdc78d2e4ace1ce1f3a7c77ca08b1 (excl.)
  • affected from fe2891a9c43ab87d1a210d61e6438ca6936e2f62 to 671c3fcc2ad31c1311ea6414382a2d95104ae1b9 (excl.)
  • affected from 384a66b89f9540a9a8cb0f48807697dfabaece4c to b6a481642ea1977be2f84dc08c5affd742c177e7 (excl.)
  • affected from efc095b35b23297e419c2ab4fc1ed1a8f0781a29 to 7399c3baee7bb622a92f0b895cd4d3009a693f2b (excl.)
  • affected from a431930c9bac518bf99d6b1da526a7f37ddee8d8 to 607217f7ad419b53926f71e3f75001813bbc08ad (excl.)
  • affected from a431930c9bac518bf99d6b1da526a7f37ddee8d8 to c25d3c931a63e762fcaa9cb125b901c53b62403f (excl.)
  • affected from a431930c9bac518bf99d6b1da526a7f37ddee8d8 to 966cb76fb2857a4242cab6ea2ea17acf818a3da7 (excl.)
  • Version e7d2dc2421e821e4045775e6dc226378328de6f6 is affected
  • Version fc7f732984ec91f30be3e574e0644066d07f2b78 is affected
  • Version eec522fd0d28106b14a59ab2d658605febe4a3bb is affected
  • affected from 5.10.241 to 5.10.261 (excl.)
  • affected from 5.15.190 to 5.15.212 (excl.)
  • affected from 6.1.149 to 6.1.178 (excl.)
  • affected from 6.6.103 to 6.6.145 (excl.)
  • affected from 6.12.43 to 6.12.97 (excl.)
  • affected from 5.4.297 to 5.5 (excl.)
  • affected from 6.15.11 to 6.16 (excl.)
  • affected from 6.16.2 to 6.17 (excl.)
Vendor Linux
Product Linux
Versions Default: affected
  • Version 6.17 is affected
  • unaffected from 0 to 6.17 (excl.)
  • unaffected from 5.10.261 to 5.10.* (incl.)
  • unaffected from 5.15.212 to 5.15.* (incl.)
  • unaffected from 6.1.178 to 6.1.* (incl.)
  • unaffected from 6.6.145 to 6.6.* (incl.)
  • unaffected from 6.12.97 to 6.12.* (incl.)
  • unaffected from 6.18.40 to 6.18.* (incl.)
  • unaffected from 7.1.4 to 7.1.* (incl.)
  • unaffected from 7.2-rc1 to * (incl.)

References