btrfs-progs: crc32: use fallback implementation for unaligned buffers
authorDavid Sterba <dsterba@suse.com>
Mon, 7 Nov 2016 12:58:51 +0000 (13:58 +0100)
committerDavid Sterba <dsterba@suse.com>
Wed, 9 Nov 2016 12:47:35 +0000 (13:47 +0100)
ASAN reports that at some point the crc function gets an unaligned
buffer. It's the optimized intel version that casts char to ulong, the
buffer is the embedded filename in the directory items.

Signed-off-by: David Sterba <dsterba@suse.com>
kernel-lib/crc32c.c

index dfa4e6c..29fd01d 100644 (file)
@@ -218,5 +218,9 @@ u32 __crc32c_le(u32 crc, unsigned char const *data, size_t length)
 
 u32 crc32c_le(u32 crc, unsigned char const *data, size_t length)
 {
+       /* Use by-byte access for unaligned buffers */
+       if ((unsigned long)data % sizeof(unsigned long))
+               return __crc32c_le(crc, data, length);
+
        return crc_function(crc, data, length);
 }