crosvm/tests/vfs_crypto.c
Chirantan Ekbote 4f9f5c7479 devices: fs: Support fs crypto ioctls
Add support for FS_IOC_{GET,SET}_ENCRYPTION_POLICY.  Unfortunately,
since the I/O direction is encoded backwards in the ioctl definitions,
these will only work with on a kernel that's compiled with a patch to
mark them as unrestricted FUSE ioctls.

BUG=b:136127632
TEST=Compile and run the vfs_crypto.c program on a virtio-fs mount
     inside a VM

Change-Id: I124c5a943111b453dd44921a079a2baa1036dfd4
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/1952570
Reviewed-by: Chirantan Ekbote <chirantan@chromium.org>
Tested-by: Chirantan Ekbote <chirantan@chromium.org>
Tested-by: kokoro <noreply+kokoro@google.com>
Commit-Queue: Chirantan Ekbote <chirantan@chromium.org>
2019-12-10 03:10:57 +00:00

58 lines
1.5 KiB
C

// Copyright 2019 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include <errno.h>
#include <fcntl.h>
#include <linux/fs.h>
#include <stdio.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/ioctl.h>
#include <unistd.h>
extern char* program_invocation_short_name;
int main(int argc, char** argv) {
if (argc != 2) {
printf("Usage: %s <path_to_directory>\n", program_invocation_short_name);
return 1;
}
int dir = open(argv[1], O_DIRECTORY | O_CLOEXEC);
if (dir < 0) {
perror("Failed to open directory");
return 1;
}
struct fscrypt_policy policy;
int ret = ioctl(dir, FS_IOC_GET_ENCRYPTION_POLICY, &policy);
if (ret < 0) {
perror("FS_IOC_GET_ENCRYPTION_POLICY failed");
return 1;
}
printf("File system encryption policy:\n");
printf("\tversion = %#x\n", policy.version);
printf("\tcontents_encryption_mode = %#x\n", policy.contents_encryption_mode);
printf("\tfilenames_encryption_mode = %#x\n",
policy.filenames_encryption_mode);
printf("\tflags = %#x\n", policy.flags);
printf("\tmaster_key_descriptor = 0x");
for (int i = 0; i < FS_KEY_DESCRIPTOR_SIZE; ++i) {
printf("%x", policy.master_key_descriptor[i]);
}
printf("\n");
ret = ioctl(dir, FS_IOC_SET_ENCRYPTION_POLICY, &policy);
if (ret < 0) {
perror("FS_IOC_SET_ENCRYPTION_POLICY failed");
return 1;
}
return 0;
}