From: Eric Biggers <ebiggers@kernel.org>
To: linux-xfs@vger.kernel.org
Cc: fstests@vger.kernel.org, linux-fscrypt@vger.kernel.org
Subject: [PATCH v3 9/9] xfs_io/encrypt: add 'enckey_status' command
Date: Fri, 27 Sep 2019 17:02:43 -0700 [thread overview]
Message-ID: <20190928000243.77634-10-ebiggers@kernel.org> (raw)
In-Reply-To: <20190928000243.77634-1-ebiggers@kernel.org>
From: Eric Biggers <ebiggers@google.com>
Add an 'enckey_status' command to xfs_io, to provide a command-line
interface to the FS_IOC_GET_ENCRYPTION_KEY_STATUS ioctl.
Signed-off-by: Eric Biggers <ebiggers@google.com>
---
io/encrypt.c | 71 +++++++++++++++++++++++++++++++++++++++++++++++
man/man8/xfs_io.8 | 6 ++++
2 files changed, 77 insertions(+)
diff --git a/io/encrypt.c b/io/encrypt.c
index e87ac393..17d61cfb 100644
--- a/io/encrypt.c
+++ b/io/encrypt.c
@@ -151,6 +151,7 @@ static cmdinfo_t get_encpolicy_cmd;
static cmdinfo_t set_encpolicy_cmd;
static cmdinfo_t add_enckey_cmd;
static cmdinfo_t rm_enckey_cmd;
+static cmdinfo_t enckey_status_cmd;
static void
get_encpolicy_help(void)
@@ -236,6 +237,19 @@ rm_enckey_help(void)
"\n"));
}
+static void
+enckey_status_help(void)
+{
+ printf(_(
+"\n"
+" get the status of a filesystem encryption key\n"
+"\n"
+" Examples:\n"
+" 'enckey_status 0000111122223333' - get status of v1 policy key\n"
+" 'enckey_status 00001111222233334444555566667777' - get status of v2 policy key\n"
+"\n"));
+}
+
static bool
parse_byte_value(const char *arg, __u8 *value_ret)
{
@@ -769,6 +783,52 @@ rm_enckey_f(int argc, char **argv)
return 0;
}
+static int
+enckey_status_f(int argc, char **argv)
+{
+ struct fscrypt_get_key_status_arg arg;
+
+ memset(&arg, 0, sizeof(arg));
+
+ if (str2keyspec(argv[1], -1, &arg.key_spec) < 0)
+ return 0;
+
+ if (ioctl(file->fd, FS_IOC_GET_ENCRYPTION_KEY_STATUS, &arg) != 0) {
+ fprintf(stderr, _("Error getting encryption key status: %s\n"),
+ strerror(errno));
+ exitcode = 1;
+ return 0;
+ }
+
+ switch (arg.status) {
+ case FSCRYPT_KEY_STATUS_PRESENT:
+ printf(_("Present"));
+ if (arg.user_count || arg.status_flags) {
+ printf(" (user_count=%u", arg.user_count);
+ if (arg.status_flags &
+ FSCRYPT_KEY_STATUS_FLAG_ADDED_BY_SELF)
+ printf(", added_by_self");
+ arg.status_flags &=
+ ~FSCRYPT_KEY_STATUS_FLAG_ADDED_BY_SELF;
+ if (arg.status_flags)
+ printf(", unknown_flags=0x%08x",
+ arg.status_flags);
+ printf(")");
+ }
+ printf("\n");
+ return 0;
+ case FSCRYPT_KEY_STATUS_ABSENT:
+ printf(_("Absent\n"));
+ return 0;
+ case FSCRYPT_KEY_STATUS_INCOMPLETELY_REMOVED:
+ printf(_("Incompletely removed\n"));
+ return 0;
+ default:
+ printf(_("Unknown status (%u)\n"), arg.status);
+ return 0;
+ }
+}
+
void
encrypt_init(void)
{
@@ -812,8 +872,19 @@ encrypt_init(void)
_("remove an encryption key from the filesystem");
rm_enckey_cmd.help = rm_enckey_help;
+ enckey_status_cmd.name = "enckey_status";
+ enckey_status_cmd.cfunc = enckey_status_f;
+ enckey_status_cmd.args = _("keyspec");
+ enckey_status_cmd.argmin = 1;
+ enckey_status_cmd.argmax = 1;
+ enckey_status_cmd.flags = CMD_NOMAP_OK | CMD_FOREIGN_OK;
+ enckey_status_cmd.oneline =
+ _("get the status of a filesystem encryption key");
+ enckey_status_cmd.help = enckey_status_help;
+
add_command(&get_encpolicy_cmd);
add_command(&set_encpolicy_cmd);
add_command(&add_enckey_cmd);
add_command(&rm_enckey_cmd);
+ add_command(&enckey_status_cmd);
}
diff --git a/man/man8/xfs_io.8 b/man/man8/xfs_io.8
index be90905a..2db071e9 100644
--- a/man/man8/xfs_io.8
+++ b/man/man8/xfs_io.8
@@ -779,6 +779,12 @@ is a privileged operation.
.RE
.PD
.TP
+.BI "enckey_status " keyspec
+On filesystems that support encryption, display the status of an encryption key.
+.I keyspec
+is a hex string specifying the key for which to display the status, as a
+16-character "key descriptor" or a 32-character "key identifier".
+.TP
.BR lsattr " [ " \-R " | " \-D " | " \-a " | " \-v " ]"
List extended inode flags on the currently open file. If the
.B \-R
--
2.23.0.444.g18eeb5a265-goog
next prev parent reply other threads:[~2019-09-28 0:03 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-09-28 0:02 [PATCH v3 0/9] xfsprogs: support fscrypt API additions in xfs_io Eric Biggers
2019-09-28 0:02 ` [PATCH v3 1/9] xfs_io/encrypt: remove unimplemented encryption modes Eric Biggers
2019-09-28 0:02 ` [PATCH v3 2/9] xfs_io/encrypt: update to UAPI definitions from Linux v5.4 Eric Biggers
2019-09-28 0:02 ` [PATCH v3 3/9] xfs_io/encrypt: generate encryption modes for 'help set_encpolicy' Eric Biggers
2019-09-28 0:02 ` [PATCH v3 4/9] xfs_io/encrypt: add new encryption modes Eric Biggers
2019-09-28 0:02 ` [PATCH v3 5/9] xfs_io/encrypt: extend 'get_encpolicy' to support v2 policies Eric Biggers
2019-09-28 0:02 ` [PATCH v3 6/9] xfs_io/encrypt: extend 'set_encpolicy' " Eric Biggers
2019-09-28 0:02 ` [PATCH v3 7/9] xfs_io/encrypt: add 'add_enckey' command Eric Biggers
2019-09-28 0:02 ` [PATCH v3 8/9] xfs_io/encrypt: add 'rm_enckey' command Eric Biggers
2019-09-28 0:02 ` Eric Biggers [this message]
2019-09-30 19:29 ` [PATCH v3 0/9] xfsprogs: support fscrypt API additions in xfs_io Eric Sandeen
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=20190928000243.77634-10-ebiggers@kernel.org \
--to=ebiggers@kernel.org \
--cc=fstests@vger.kernel.org \
--cc=linux-fscrypt@vger.kernel.org \
--cc=linux-xfs@vger.kernel.org \
/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