Re: Wiping disk vs. initializing container
Michael Kjörling <[email protected]> Wed, 7 Jun 2023 11:09:11 +0000
| Newsgroups | dev.linux.lists.cryptsetup |
|---|---|
| Message-ID | <[email protected]> |
On 7 Jun 2023 12:03 +0200, from [email protected]: > 1. Would `cat /dev/urandom > /dev/sdX` give me crypto-grade randomness? With a modern kernel, it should, yes. Or you could set up a temporary mapping with a throwaway key and write from /dev/zero through that. The result should be much the same but my experience is that the latter is more performant. > 2. Is initializing a LUKS container with zeroes equivalent to filling a > whole drive with crypto-grade random data if the LUKS container > spans the whole disk? It should be. If not, that would be a more general vulnerability. > 3. The FAQ says: > > If the target was in use previously, it is a good idea to wipe it > before creating the LUKS container in order to remove any trace of > old file systems and data. > > So, isn't just filling the whole disk with random data before setting > up the LUKS container the simplest solution if you want to a) destroy > old data reliably, b) put the disk into a clean state, and c) make > sure that parts of the LUKS container that have not been written to > cannot be distinguished from those that have? Generally, absent the key, ciphertext should be indistinguishable from random data. So for an adversary who does not have access to the key, the disk having been filled with random data (e.g. cat from /dev/urandom) or a container having been filled with predictable data (e.g. cat from /dev/zero) should be largely equivalent. Also, any random data should be as good as any other random data, so there would be no easy way to tell whether a particular chunk of random data is there because of an initial overwrite with random data, or because of useful data being stored through the later-created LUKS container. > 4. Should new hard disks that have not been used previously also be > filled with random data in order to achieve c)? I would argue that it should, and by extension also for another reason: allocation patterns can provide very strong clues both about the amount of data stored, and the type of file system within the container. A NTFS file system looks very different in terms of allocation patterns from an ext4 or Btrfs or exfat file system. SSDs introduce other factors, particularly relating to wear leveling, where a different trade-off might be reasonable. -- Michael Kjörling 🔗 https://michael.kjorling.se “Remember when, on the Internet, nobody cared that you were a dog?”