relan / exfat

Free exFAT file system implementation
GNU General Public License v2.0
779 stars 176 forks source link

Crash when reading directory #146

Closed tspivey closed 1 year ago

tspivey commented 4 years ago

Steps to reproduce:

dd if=/dev/zero of=exfat.img bs=1024k count=10
mkfs.exfat exfat.img
mount exfat.img /mnt
touch /mnt/$'\355''a '
ls /mnt

After running that, I get: ls: reading directory '/mnt': Software caused connection abort

relan commented 4 years ago

Thanks for the detailed bug report!

The root cause is the utf8_to_wchar() function: is does not check the upper 2 bits of the 2nd and subsequent bytes in the UTF-8 sequence.

relan commented 4 years ago

Fixed in 66e3a255147d1714f313399bfdfb52fff8afbf50.

relan commented 1 year ago

Fixed in v1.4.0.