f2fs crypto: allow setting encryption policy once
[deliverable/linux.git] / fs / f2fs / crypto_policy.c
CommitLineData
f424f664
JK
1/*
2 * copied from linux/fs/ext4/crypto_policy.c
3 *
4 * Copyright (C) 2015, Google, Inc.
5 * Copyright (C) 2015, Motorola Mobility.
6 *
7 * This contains encryption policy functions for f2fs with some modifications
8 * to support f2fs-specific xattr APIs.
9 *
10 * Written by Michael Halcrow, 2015.
11 * Modified by Jaegeuk Kim, 2015.
12 */
13#include <linux/random.h>
14#include <linux/string.h>
15#include <linux/types.h>
16#include <linux/f2fs_fs.h>
17
18#include "f2fs.h"
19#include "xattr.h"
20
21static int f2fs_inode_has_encryption_context(struct inode *inode)
22{
23 int res = f2fs_getxattr(inode, F2FS_XATTR_INDEX_ENCRYPTION,
24 F2FS_XATTR_NAME_ENCRYPTION_CONTEXT, NULL, 0, NULL);
25 return (res > 0);
26}
27
28/*
29 * check whether the policy is consistent with the encryption context
30 * for the inode
31 */
32static int f2fs_is_encryption_context_consistent_with_policy(
33 struct inode *inode, const struct f2fs_encryption_policy *policy)
34{
35 struct f2fs_encryption_context ctx;
36 int res = f2fs_getxattr(inode, F2FS_XATTR_INDEX_ENCRYPTION,
37 F2FS_XATTR_NAME_ENCRYPTION_CONTEXT, &ctx,
38 sizeof(ctx), NULL);
39
40 if (res != sizeof(ctx))
41 return 0;
42
43 return (memcmp(ctx.master_key_descriptor, policy->master_key_descriptor,
44 F2FS_KEY_DESCRIPTOR_SIZE) == 0 &&
45 (ctx.flags == policy->flags) &&
46 (ctx.contents_encryption_mode ==
47 policy->contents_encryption_mode) &&
48 (ctx.filenames_encryption_mode ==
49 policy->filenames_encryption_mode));
50}
51
52static int f2fs_create_encryption_context_from_policy(
53 struct inode *inode, const struct f2fs_encryption_policy *policy)
54{
55 struct f2fs_encryption_context ctx;
56
57 ctx.format = F2FS_ENCRYPTION_CONTEXT_FORMAT_V1;
58 memcpy(ctx.master_key_descriptor, policy->master_key_descriptor,
59 F2FS_KEY_DESCRIPTOR_SIZE);
60
61 if (!f2fs_valid_contents_enc_mode(policy->contents_encryption_mode)) {
62 printk(KERN_WARNING
63 "%s: Invalid contents encryption mode %d\n", __func__,
64 policy->contents_encryption_mode);
65 return -EINVAL;
66 }
67
68 if (!f2fs_valid_filenames_enc_mode(policy->filenames_encryption_mode)) {
69 printk(KERN_WARNING
70 "%s: Invalid filenames encryption mode %d\n", __func__,
71 policy->filenames_encryption_mode);
72 return -EINVAL;
73 }
74
75 if (policy->flags & ~F2FS_POLICY_FLAGS_VALID)
76 return -EINVAL;
77
78 ctx.contents_encryption_mode = policy->contents_encryption_mode;
79 ctx.filenames_encryption_mode = policy->filenames_encryption_mode;
80 ctx.flags = policy->flags;
81 BUILD_BUG_ON(sizeof(ctx.nonce) != F2FS_KEY_DERIVATION_NONCE_SIZE);
82 get_random_bytes(ctx.nonce, F2FS_KEY_DERIVATION_NONCE_SIZE);
83
84 return f2fs_setxattr(inode, F2FS_XATTR_INDEX_ENCRYPTION,
85 F2FS_XATTR_NAME_ENCRYPTION_CONTEXT, &ctx,
81b0a8ff 86 sizeof(ctx), NULL, XATTR_CREATE);
f424f664
JK
87}
88
89int f2fs_process_policy(const struct f2fs_encryption_policy *policy,
90 struct inode *inode)
91{
92 if (policy->version != 0)
93 return -EINVAL;
94
95 if (!f2fs_inode_has_encryption_context(inode)) {
96 if (!f2fs_empty_dir(inode))
97 return -ENOTEMPTY;
98 return f2fs_create_encryption_context_from_policy(inode,
99 policy);
100 }
101
102 if (f2fs_is_encryption_context_consistent_with_policy(inode, policy))
103 return 0;
104
105 printk(KERN_WARNING "%s: Policy inconsistent with encryption context\n",
106 __func__);
107 return -EINVAL;
108}
109
110int f2fs_get_policy(struct inode *inode, struct f2fs_encryption_policy *policy)
111{
112 struct f2fs_encryption_context ctx;
113 int res;
114
115 if (!f2fs_encrypted_inode(inode))
116 return -ENODATA;
117
118 res = f2fs_getxattr(inode, F2FS_XATTR_INDEX_ENCRYPTION,
119 F2FS_XATTR_NAME_ENCRYPTION_CONTEXT,
120 &ctx, sizeof(ctx), NULL);
121 if (res != sizeof(ctx))
122 return -ENODATA;
123 if (ctx.format != F2FS_ENCRYPTION_CONTEXT_FORMAT_V1)
124 return -EINVAL;
125
126 policy->version = 0;
127 policy->contents_encryption_mode = ctx.contents_encryption_mode;
128 policy->filenames_encryption_mode = ctx.filenames_encryption_mode;
129 policy->flags = ctx.flags;
130 memcpy(&policy->master_key_descriptor, ctx.master_key_descriptor,
131 F2FS_KEY_DESCRIPTOR_SIZE);
132 return 0;
133}
134
135int f2fs_is_child_context_consistent_with_parent(struct inode *parent,
136 struct inode *child)
137{
138 struct f2fs_crypt_info *parent_ci, *child_ci;
139 int res;
140
141 if ((parent == NULL) || (child == NULL)) {
142 pr_err("parent %p child %p\n", parent, child);
143 BUG_ON(1);
144 }
145
146 /* no restrictions if the parent directory is not encrypted */
147 if (!f2fs_encrypted_inode(parent))
148 return 1;
149 /* if the child directory is not encrypted, this is always a problem */
150 if (!f2fs_encrypted_inode(child))
151 return 0;
152 res = f2fs_get_encryption_info(parent);
153 if (res)
154 return 0;
155 res = f2fs_get_encryption_info(child);
156 if (res)
157 return 0;
158 parent_ci = F2FS_I(parent)->i_crypt_info;
159 child_ci = F2FS_I(child)->i_crypt_info;
160 if (!parent_ci && !child_ci)
161 return 1;
162 if (!parent_ci || !child_ci)
163 return 0;
164
165 return (memcmp(parent_ci->ci_master_key,
166 child_ci->ci_master_key,
167 F2FS_KEY_DESCRIPTOR_SIZE) == 0 &&
168 (parent_ci->ci_data_mode == child_ci->ci_data_mode) &&
169 (parent_ci->ci_filename_mode == child_ci->ci_filename_mode) &&
170 (parent_ci->ci_flags == child_ci->ci_flags));
171}
172
173/**
174 * f2fs_inherit_context() - Sets a child context from its parent
175 * @parent: Parent inode from which the context is inherited.
176 * @child: Child inode that inherits the context from @parent.
177 *
178 * Return: Zero on success, non-zero otherwise
179 */
180int f2fs_inherit_context(struct inode *parent, struct inode *child,
181 struct page *ipage)
182{
183 struct f2fs_encryption_context ctx;
184 struct f2fs_crypt_info *ci;
185 int res;
186
187 res = f2fs_get_encryption_info(parent);
188 if (res < 0)
189 return res;
190
191 ci = F2FS_I(parent)->i_crypt_info;
192 BUG_ON(ci == NULL);
193
194 ctx.format = F2FS_ENCRYPTION_CONTEXT_FORMAT_V1;
195
196 ctx.contents_encryption_mode = ci->ci_data_mode;
197 ctx.filenames_encryption_mode = ci->ci_filename_mode;
198 ctx.flags = ci->ci_flags;
199 memcpy(ctx.master_key_descriptor, ci->ci_master_key,
200 F2FS_KEY_DESCRIPTOR_SIZE);
201
202 get_random_bytes(ctx.nonce, F2FS_KEY_DERIVATION_NONCE_SIZE);
203 return f2fs_setxattr(child, F2FS_XATTR_INDEX_ENCRYPTION,
204 F2FS_XATTR_NAME_ENCRYPTION_CONTEXT, &ctx,
81b0a8ff 205 sizeof(ctx), ipage, XATTR_CREATE);
f424f664 206}
This page took 0.040497 seconds and 5 git commands to generate.