Blame SOURCES/0003-options-Support-Windows-BitLocker-RHBZ-1808977.patch

61e9b3
From 778c08fe7b7eb00b7f48189dd1a3edf3f3be2625 Mon Sep 17 00:00:00 2001
61e9b3
From: "Richard W.M. Jones" <rjones@redhat.com>
61e9b3
Date: Mon, 30 Mar 2020 14:40:45 +0100
61e9b3
Subject: [PATCH 3/4] options: Support Windows BitLocker (RHBZ#1808977).
61e9b3
61e9b3
---
61e9b3
 mltools/tools_utils.mli | 5 ++---
61e9b3
 options/decrypt.c       | 9 ++++-----
61e9b3
 2 files changed, 6 insertions(+), 8 deletions(-)
61e9b3
61e9b3
diff --git a/mltools/tools_utils.mli b/mltools/tools_utils.mli
61e9b3
index 102abff..1d1ac8a 100644
61e9b3
--- a/common/mltools/tools_utils.mli
61e9b3
+++ b/common/mltools/tools_utils.mli
61e9b3
@@ -195,9 +195,8 @@ val is_btrfs_subvolume : Guestfs.guestfs -> string -> bool
61e9b3
 (** Checks if a filesystem is a btrfs subvolume. *)
61e9b3
 
61e9b3
 val inspect_decrypt : Guestfs.guestfs -> key_store -> unit
61e9b3
-(** Simple implementation of decryption: look for any [crypto_LUKS]
61e9b3
-    partitions and decrypt them, then rescan for VGs.  This only works
61e9b3
-    for Fedora whole-disk encryption. *)
61e9b3
+(** Simple implementation of decryption: look for any encrypted
61e9b3
+    partitions and decrypt them, then rescan for VGs. *)
61e9b3
 
61e9b3
 val with_timeout : string -> int -> ?sleep:int -> (unit -> 'a option) -> 'a
61e9b3
 (** [with_timeout op timeout ?sleep fn] implements a timeout loop.
61e9b3
diff --git a/options/decrypt.c b/options/decrypt.c
61e9b3
index 45de5b2..8eb24bc 100644
61e9b3
--- a/common/options/decrypt.c
61e9b3
+++ b/common/options/decrypt.c
61e9b3
@@ -65,10 +65,8 @@ make_mapname (const char *device, char *mapname, size_t len)
61e9b3
 }
61e9b3
 
61e9b3
 /**
61e9b3
- * Simple implementation of decryption: look for any C<crypto_LUKS>
61e9b3
- * partitions and decrypt them, then rescan for VGs.  This only works
61e9b3
- * for Fedora whole-disk encryption.  WIP to make this work for other
61e9b3
- * encryption schemes.
61e9b3
+ * Simple implementation of decryption: look for any encrypted
61e9b3
+ * partitions and decrypt them, then rescan for VGs.
61e9b3
  */
61e9b3
 void
61e9b3
 inspect_do_decrypt (guestfs_h *g, struct key_store *ks)
61e9b3
@@ -82,7 +80,8 @@ inspect_do_decrypt (guestfs_h *g, struct key_store *ks)
61e9b3
 
61e9b3
   for (i = 0; partitions[i] != NULL; ++i) {
61e9b3
     CLEANUP_FREE char *type = guestfs_vfs_type (g, partitions[i]);
61e9b3
-    if (type && STREQ (type, "crypto_LUKS")) {
61e9b3
+    if (type &&
61e9b3
+        (STREQ (type, "crypto_LUKS") || STREQ (type, "BitLocker"))) {
61e9b3
       char mapname[32];
61e9b3
       make_mapname (partitions[i], mapname, sizeof mapname);
61e9b3
 
61e9b3
-- 
61e9b3
2.18.4
61e9b3