From: Arno Wagner <arno@wagner.name>
To: "David Joaquín Shourabi Porcel" <david@djsp.eu>
Cc: cryptsetup@lists.linux.dev
Subject: Re: Filling a device with random data
Date: Thu, 9 Feb 2023 05:02:00 +0100 [thread overview]
Message-ID: <20230209040200.GA3642@tansi.org> (raw)
In-Reply-To: <aec223f2-34f1-45ca-83a4-024e66490ee5@app.fastmail.com>
Hi,
/dev/urandom has gotten a lot faster. You should be able to
write the data from it directly to the device without
the plain dm-crypt mapping in between and still get decent
speed.
That said, you can also zero-overwrite a mapped LUKS
container for pretty much the same level of security.
The method with the plain dm-crypt mapping in between
is _old_.
Regards,
Arno
On Wed, Feb 08, 2023 at 22:09:54 CET, David Joaquín Shourabi Porcel wrote:
> Hey there :)
>
> Section 2.19 of the [FAQ][1] explains how to fill devices with random data using dm-crypt: cryptsetup opens a plain mapping, zeros are written to it and it is closed. If LUKS is set up on the device afterwards, this translates to the following commands:
>
> ```
> cryptsetup open --type=plain --key-file=/dev/urandom -- /dev/foo temporary
> dd if=/dev/zero of=/dev/mapper/temporary
> cryptsetup close -- temporary
> cryptsetup luksFormat -- /dev/foo
> cryptsetup open -- /dev/foo bar
> # mkfs / pvcreate -- /dev/mapper/bar
> ```
>
> I would like to skip the first mapping and shorten the procedure as follows:
>
> ```
> cryptsetup luksFormat -- /dev/foo
> cryptsetup open -- /dev/foo bar
> dd if=/dev/zero of=/dev/mapper/bar
> # mkfs / pvcreate -- /dev/mapper/bar
> ```
>
> Does filling a device with random data under a separate dm-crypt mapping
> offer any security benefit?
>
> Kind regards,
>
> David J. Shourabi Porcel
>
>
> [1]: https://gitlab.com/cryptsetup/cryptsetup/-/wikis/FrequentlyAskedQuestions
--
Arno Wagner, Dr. sc. techn., Dipl. Inform., Email: arno@wagner.name
GnuPG: ID: CB5D9718 FP: 12D6 C03B 1B30 33BB 13CF B774 E35C 5FA1 CB5D 9718
----
A good decision is based on knowledge and not on numbers. -- Plato
If it's in the news, don't worry about it. The very definition of
"news" is "something that hardly ever happens." -- Bruce Schneier
next prev parent reply other threads:[~2023-02-09 4:08 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-02-08 21:09 Filling a device with random data David Joaquín Shourabi Porcel
2023-02-09 4:02 ` Arno Wagner [this message]
2023-02-09 15:01 ` David Joaquín Shourabi Porcel
2023-02-09 15:37 ` Michael Kjörling
2023-02-09 19:03 ` Eric Biggers
2023-02-14 22:17 ` Arno Wagner
2023-02-16 11:05 ` Arno Wagner
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230209040200.GA3642@tansi.org \
--to=arno@wagner.name \
--cc=cryptsetup@lists.linux.dev \
--cc=david@djsp.eu \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox