One of the problems of disk encryption is providing authentication. An attacker with access to the ciphertext can modify the ciphertext at will without consequence. Given, this isn't a likely attack, but nevertheless a possible one.
An interesting thought occurred to me. My disks are encrypted with LUKS in AES-CBC ESSIV mode. I then run LVM inside of the encrypted disk, then BTRFS on the interior logical volume. If an attacker modified the ciphertext while the data was at rest, I normally would have no way of noticing that it had happened. However, since BTRFS checksums both metadata and data, a corruption would probably be noticed by the filesystem itself when trying to read that file.
Granted, BTRFS uses CRC-32 as a hash algorithm, but is my theory more or less accurate? Do I get authentication by using BTRFS in a LUKS volume?