Difference between revisions of "Encryption"

From OpenZFS on OS X
Jump to: navigation, search
Line 97: Line 97:
 
  # diskutil unmount "/Volumes/Internal HD"
 
  # diskutil unmount "/Volumes/Internal HD"
  
You can now follow the article on [[Zpool#Creating_a_pool|creating a pool]] or follow standard ZFS manuals.
+
You can now follow the article on [[Zpool#Creating_a_pool|creating a pool]]. As a simple example, you might
  
=== For illustration purpose ===
+
<syntaxhighlight lang="text">
 
  # zpool list
 
  # zpool list
 
  no pools available
 
  no pools available
Line 105: Line 105:
 
  # zpool list
 
  # zpool list
 
  ZFS_VOLUME    928G  20.8G  907G    2%  1.00x  ONLINE  -
 
  ZFS_VOLUME    928G  20.8G  907G    2%  1.00x  ONLINE  -
 
+
</syntaxhighlight>
  
  
Line 141: Line 141:
 
<ilovezfs> The reason not to use the installer version, is that it will attempt to
 
<ilovezfs> The reason not to use the installer version, is that it will attempt to
 
           partition the Core Storage Logical Volume.
 
           partition the Core Storage Logical Volume.
<ilovezfs> But since 10.8.5 and after, Apple doesn't like that.
+
<ilovezfs> But since 10.8.5 and after, Apple doesn't like that
<ilovezfs> So we added new code to detect Core Storage and not partition if it sees it's
+
<ilovezfs> so we added new code to detect Core Storage and not partition if it sees it's
 
           Core Storage.
 
           Core Storage.
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
  
 
=== Time Machine backups ===
 
=== Time Machine backups ===

Revision as of 17:46, 7 May 2014

Core Storage encryption

Although upstream OpenZFS has a "project" to work on platform-agnostic encryption support at the ZFS dataset level, we have an obvious solution to block-level encryption already at hand: AES-XTS (Core Storage/FileVault 2).

This is the OS X analogue of the following block-level encryption systems on other operating systems that support ZFS:

  • FreeBSD: geli
  • Linux: LUKS

The overall procedure is, as follows: convert an empty HFS+ partition to use Core Storage and apply Core Storage encryption. Then use the Core Storage Logical Volume as a device in your zpool by supplying it to "zpool create," "zpool add," "zpool attach," etc.

Prerequisites

Build ZFS from source, or wait for the next installer, newer than 1.2.0 (for explanation, see original IRC chat).

Caveats

As noted in the article suppressing the annoying pop-up, you will receive a pop-up claiming the disk isn't readable by this computer. This is a well documented problem, see the article above. It does however lead to one step that can be confusing: when unlocking the disk (e.g. on startup), the "bug" will make OS X believe the disk wasn't unlocked, and thus "wiggle," presenting the prompt again.

Take it on faith that once you've unlocked the disk, you can safely close the dialog box (with "Cancel"). You can verify this with your pool's availability.

Steps

The initial layout, with disk1 being the external disk (counter-intuitively named "Internal HD") intended as encrypted ZFS device.

# diskutil list
/dev/disk0
   #:                       TYPE NAME                    SIZE       IDENTIFIER
   0:      GUID_partition_scheme                        *160.0 GB   disk0
   1:                        EFI EFI                     209.7 MB   disk0s1
   2:                  Apple_HFS Macintosh HD            159.7 GB   disk0s2
/dev/disk1
   #:                       TYPE NAME                    SIZE       IDENTIFIER
   0:      GUID_partition_scheme                        *1.0 TB     disk1
   1:                        EFI EFI                     209.7 MB   disk1s1
   2:                  Apple_HFS Internal HD             999.9 GB   disk1s2

We note that disk1s2 is the partition to be encrypted, and we convert it to Core Storage (think LVM), to enable encryption:

#  diskutil coreStorage convert /dev/disk1s2
Started CoreStorage operation on disk1s2 Internal HD
Resizing disk to fit Core Storage headers
Creating Core Storage Logical Volume Group
Attempting to unmount disk1s2
Switching disk1s2 to Core Storage
Waiting for Logical Volume to appear
Mounting Logical Volume
Core Storage LVG UUID: 4690972A-484E-42E2-B72D-933A58E41237
Core Storage PV UUID: 22A1A783-01BA-4ABA-B4A3-2A9146506519
Core Storage LV UUID: F6D16BFE-B6E9-4A9B-BC03-E5CD03772C44
Core Storage disk: disk2
Finished CoreStorage operation on disk1s2 Internal HD

Note that we converted the existing unencrypted HFS+ partition.

Next, we encrypt the logical volume, our Core Storage disk, disk2:

# diskutil coreStorage encryptVolume /dev/disk2
New passphrase for existing volume:
Confirm new passphrase:
The Core Storage Logical Volume UUID is F6D16BFE-B6E9-4A9B-BC03-E5CD03772C44
Started CoreStorage operation on disk2 Internal HD
Scheduling encryption of Core Storage Logical Volume
Core Storage LV UUID: F6D16BFE-B6E9-4A9B-BC03-E5CD03772C44
Finished CoreStorage operation on disk2 Internal HD

Note that we used disk2, the logical volume, not disk1s2.

This can and will take a while to complete. You can check the status by issuing:

# diskutil coreStorage list | grep "Conversion Progress"

Until it's done:

Conversion Progress: -none-

Your partition layout should now look like:

# diskutil list
/dev/disk0
   #:                       TYPE NAME                    SIZE       IDENTIFIER
   0:      GUID_partition_scheme                        *160.0 GB   disk0
   1:                        EFI EFI                     209.7 MB   disk0s1
   2:                  Apple_HFS Macintosh HD            159.7 GB   disk0s2
/dev/disk1
   #:                       TYPE NAME                    SIZE       IDENTIFIER
   0:      GUID_partition_scheme                        *1.0 TB     disk1
   1:                        EFI EFI                     209.7 MB   disk1s1
   2:          Apple_CoreStorage                         999.9 GB   disk1s2
   3:                 Apple_Boot Boot OS X               134.2 MB   disk1s3
/dev/disk2
   #:                       TYPE NAME                    SIZE       IDENTIFIER
   0:                  Apple_HFS                        *999.5 GB   disk2

disk2 being our encrypted, unlocked HFS+ device. If you have yet to be prompted for the passphrase by OS X, now would be a good time to restart your Mac and try it out.

Lastly, we'll prepare the volume for ZFS, by unmounting /dev/disk2:

# mount
...
/dev/disk2 on /Volumes/Internal HD (hfs, local, journaled)
# diskutil unmount "/Volumes/Internal HD"

You can now follow the article on creating a pool. As a simple example, you might

 # zpool list
 no pools available
 # zpool create -f -o ashift=12 ZFS_VOLUME /dev/disk2
 # zpool list
 ZFS_VOLUME    928G  20.8G   907G     2%  1.00x  ONLINE  -


Reason to "use latest"

<ilovezfs> If you want encryption you have a few options
<ilovezfs> https://github.com/zfsrogue/osx-zfs-crypto
<lundman> :)
<ilovezfs> or you can do what cbreak said, and use an encrypted sparsebundle
<ilovezfs> (I'd give it its own ZFS file system)
<ilovezfs> or you can create a ZVOL, and put an encrypted Core Storage/Filevault 2 HFS+
           file system on it
<ilovezfs> or you can put the pool itself on top of Core Storage.
<ilovezfs> The last option you should not do with the installer version.
<ilovezfs> But wait for the next installer if that's the route you want to go
<ilovezfs> or build from source.
<aandy>    Ah, interesting. Does FileVault 2 require HFS+? Not that it'd surprise me.
<ilovezfs> No it does not.
<ilovezfs> But it is not possible to set other Content Hints
<ilovezfs> so it will always say HFS+ even if you do put ZFS on your logical volumes.
<ilovezfs> So basically the procedure is to format the volume HFS+.
<ilovezfs> Then run 'diskutil coreStorage convert' on it.
<ilovezfs> Then you can encrypt it.
<ilovezfs> Then you unmount the HFS+
<ilovezfs> and zpool create on the logical volume.
<ilovezfs> And you should be good to go.
<aandy>    On the original HFS+ partition, right?
<ilovezfs> Right.
<ilovezfs> But I'd encrypt first
<ilovezfs> then put ZFS on it.
<aandy>    Right. Perfect.
<ilovezfs> diskutil coreStorage convert ...
<ilovezfs> diskutil coreStorage encryptVolume ...
<ilovezfs> etc.
<ilovezfs> The reason not to use the installer version, is that it will attempt to
           partition the Core Storage Logical Volume.
<ilovezfs> But since 10.8.5 and after, Apple doesn't like that
<ilovezfs> so we added new code to detect Core Storage and not partition if it sees it's
           Core Storage.


Time Machine backups

As a follow-up, here's one approach to using ZFS for your Time Machine Backups:

While it has been discussed in heated arguments, e.g. https://github.com/openzfsonosx/zfs/issues/66, I still believe there's at least one ZFS feature I'd like to test with Time Machine: compression.

The hypothesis being: an HFS+ sparsebundle stored on a compressed (gzip, lz4), deduped dataset should yield a compression ratio > 1.0. (previously observed 1.4 with compression=on, dedup=off, FreeBSD network Time Machine drives).

To work around compatible disks for Time Machine, we create an HFS+ bundle, store it on ZFS and set the mounted image as a backup destination, no "TMShowUnsupportedNetworkVolumes" needed.

1. Create, and mount, a sparse bundle from your zfs filesystem, e.g. with makeImage.sh

2. Set your sparse bundle as the (active) backup destination # tmutil setdestination -a /Volumes/Time\ Machine\ Backups