All of lore.kernel.org
 help / color / mirror / Atom feed
From: Sven Eschenberg <sven@whgl.uni-frankfurt.de>
To: dm-crypt@saout.de
Subject: Re: [dm-crypt] crypetsetup and GPT partitions
Date: Fri, 10 Feb 2017 21:03:11 +0100	[thread overview]
Message-ID: <a9b79347-680a-7efa-2425-eb8974397274@whgl.uni-frankfurt.de> (raw)
In-Reply-To: <6235b9aa-eb47-828d-e1fe-7b4c6bc55767@holgerdanske.com>



Am 10.02.2017 um 19:23 schrieb David Christensen:
> On 02/10/17 08:22, Sven Eschenberg wrote:
>> Am 10.02.2017 um 17:05 schrieb David Christensen:
>>> On 02/10/17 01:07, Michael Kjörling wrote:
>>>> On 10 Feb 2017 00:15 -0800, from dpchrist@holgerdanske.com (David
>>>> Christensen):
>>>>> The available space of the LUKS mapped device is going to be smaller
>>>>> than the partition size.  On one of my 3 TB drives, it's about ~44
>>>>> GB smaller (~1.6%).  The LUKS meta-data is going to be in there,
>>>>> including the header.
>>>>
>>>> That doesn't make sense. The LUKS header is a shade over 1 MiB,
>>>> depending on the specific options (the FAQ has details). The size of
>>>> the header isn't related to the size of the container. Something else
>>>> is going on in your case.
>>>
>>> Here's the data:
>>>
>>> 2017-02-10 07:38:40 root@cd2533 ~
>>> # parted /dev/sda u s p
>>> Model: ATA ST3000DM001-1ER1 (scsi)
>>> Disk /dev/sda: 5860533168s
>>> Sector size (logical/physical): 512B/4096B
>>> Partition Table: gpt
>>>
>>> Number  Start  End          Size         File system  Name     Flags
>>>  1      2048s  5860532223s  5860530176s               primary
>>>
>>> 2017-02-10 07:40:57 root@cd2533 ~
>>> # df | egrep 'File|mnt'
>>> Filesystem                1K-blocks      Used  Available Use% Mounted on
>>> /dev/mapper/i3000d_crypt 2884281560 848596104 1889172304  31%
>>> /mnt/i3000d
>>>
>>>
>>> Here's the math:
>>>
>>>    5860530176 s / (2 s/kB) - 2884281560 kB
>>>  = 2930265088 kB           - 2884281560 kB
>>>  = 45983528 kB
>>> ~= 44905.8 MB
>> That's the size of the filesystem afterall.
>
> D'oh!
>
>
>> Lookt at blockdev --report to see the blockdev sizes (i.e. physical
>> disk, partition, crypt device).
>
>
> RTFM blockdev(8):
>
> 2017-02-10 10:01:08 root@cd2533 ~
> # blockdev --report /dev/sda /dev/sda1 /dev/mapper/i3000d_crypt
> RO    RA   SSZ   BSZ   StartSec            Size   Device
> rw   256   512  4096          0   3000592982016   /dev/sda
> rw   256   512  4096       2048   3000591450112   /dev/sda1
> rw   256   512  4096          0   3000589352960   /dev/mapper/i3000d_crypt
>
>
> So, it looks like LUKS consumes:
>
> 3000591450112 - 3000589352960 = 2097152 = 2 MB
>
>
> Thanks for the correction.  :-)
>
>
>> Check against dmsetup
>
> RTFM dmsetup(8):
>
> 2017-02-10 10:14:06 root@cd2533 ~
> # dmsetup info /dev/mapper/i3000d_crypt
> Name:              i3000d_crypt
> State:             ACTIVE
> Read Ahead:        256
> Tables present:    LIVE
> Open count:        1
> Event number:      1
> Major, minor:      254, 2
> Number of targets: 1
> UUID: CRYPT-LUKS1-<redacted>-i3000d_crypt_unformatted
>
>
>> --table
>
> RTFM dmsetup(8), the --table option requires a <table> value.  WAG:
>
> 2017-02-10 10:14:17 root@cd2533 ~
> # dmsetup info --table LIVE /dev/mapper/i3000d_crypt
> Name:              i3000d_crypt
> State:             ACTIVE
> Read Ahead:        256
> Tables present:    LIVE
> Open count:        1
> Event number:      1
> Major, minor:      254, 2
> Number of targets: 1
> UUID: CRYPT-LUKS1-<redacted>-i3000d_crypt_unformatted
>
>
> I'm not sure what I am checking...

My bad, it is just dmsetup table - this dumps all (active) devicemapper 
targets with all essential data ... you can basically take a look at 
where in the drive a mapping starts, how long it is etc. . The output 
includes the key for crypt targets and whatever additional data each 
type of target offers. It sometimes helps to understand the exact layout 
better (You'll need to know/understand those numbers however). Just in 
case you think you hit some inconsistency or the like. No need however 
to post it here.
>
>
> David
>
> _______________________________________________
> dm-crypt mailing list
> dm-crypt@saout.de
> http://www.saout.de/mailman/listinfo/dm-crypt

As you know by now, the size of the crypto target (the device size 
available to the filesystem) is just 2MBytes less than the partition 
size. So maybe check again on the filesystem size (use the corresponding 
filesystem tools if necessary). If you did not increase the device size 
at any time after fs creation, then somehow your mkfs did something 
wrong. Depending on the fs, if you have a backup of the data, you could 
try growing the fs to the full size of the container.

Regards

-Sven

P.S.: Usually df reports the available space to files AFAIK, this should 
be roughly devicesize-metadatasize, where metadata is internal 
filesystem structures but not filenames and the like (inode space). But 
I cannot tell for 100%. I.E.: for a 16GB filesystem I have a difference 
of roughly 10 MBytes. (Depends certainly on the filesystem used ...)

  reply	other threads:[~2017-02-10 20:03 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-02-08 12:33 [dm-crypt] crypetsetup and GPT partitions Houtchen, Steven
2017-02-10  8:15 ` David Christensen
2017-02-10  9:07   ` Michael Kjörling
2017-02-10 16:05     ` David Christensen
2017-02-10 16:22       ` Sven Eschenberg
2017-02-10 18:23         ` David Christensen
2017-02-10 20:03           ` Sven Eschenberg [this message]
2017-02-10  9:10 ` Michael Kjörling
2017-02-10 12:35 ` Sven Eschenberg
2017-02-10 12:58   ` Houtchen, Steven
2017-02-10 15:00     ` Sven Eschenberg
2017-02-08 13:44 Houtchen, Steven

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=a9b79347-680a-7efa-2425-eb8974397274@whgl.uni-frankfurt.de \
    --to=sven@whgl.uni-frankfurt.de \
    --cc=dm-crypt@saout.de \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.