c9800b1a2e930f65e8fa7a9b052fb80efeba512c
[cascardo/linux.git] / fs / crypto / policy.c
1 /*
2  * Encryption policy functions for per-file encryption support.
3  *
4  * Copyright (C) 2015, Google, Inc.
5  * Copyright (C) 2015, Motorola Mobility.
6  *
7  * Written by Michael Halcrow, 2015.
8  * Modified by Jaegeuk Kim, 2015.
9  */
10
11 #include <linux/random.h>
12 #include <linux/string.h>
13 #include <linux/fscrypto.h>
14
15 static int inode_has_encryption_context(struct inode *inode)
16 {
17         if (!inode->i_sb->s_cop->get_context)
18                 return 0;
19         return (inode->i_sb->s_cop->get_context(inode, NULL, 0L) > 0);
20 }
21
22 /*
23  * check whether the policy is consistent with the encryption context
24  * for the inode
25  */
26 static int is_encryption_context_consistent_with_policy(struct inode *inode,
27                                 const struct fscrypt_policy *policy)
28 {
29         struct fscrypt_context ctx;
30         int res;
31
32         if (!inode->i_sb->s_cop->get_context)
33                 return 0;
34
35         res = inode->i_sb->s_cop->get_context(inode, &ctx, sizeof(ctx));
36         if (res != sizeof(ctx))
37                 return 0;
38
39         return (memcmp(ctx.master_key_descriptor, policy->master_key_descriptor,
40                         FS_KEY_DESCRIPTOR_SIZE) == 0 &&
41                         (ctx.flags == policy->flags) &&
42                         (ctx.contents_encryption_mode ==
43                          policy->contents_encryption_mode) &&
44                         (ctx.filenames_encryption_mode ==
45                          policy->filenames_encryption_mode));
46 }
47
48 static int create_encryption_context_from_policy(struct inode *inode,
49                                 const struct fscrypt_policy *policy)
50 {
51         struct fscrypt_context ctx;
52         int res;
53
54         if (!inode->i_sb->s_cop->set_context)
55                 return -EOPNOTSUPP;
56
57         if (inode->i_sb->s_cop->prepare_context) {
58                 res = inode->i_sb->s_cop->prepare_context(inode);
59                 if (res)
60                         return res;
61         }
62
63         ctx.format = FS_ENCRYPTION_CONTEXT_FORMAT_V1;
64         memcpy(ctx.master_key_descriptor, policy->master_key_descriptor,
65                                         FS_KEY_DESCRIPTOR_SIZE);
66
67         if (!fscrypt_valid_contents_enc_mode(
68                                 policy->contents_encryption_mode)) {
69                 printk(KERN_WARNING
70                        "%s: Invalid contents encryption mode %d\n", __func__,
71                         policy->contents_encryption_mode);
72                 return -EINVAL;
73         }
74
75         if (!fscrypt_valid_filenames_enc_mode(
76                                 policy->filenames_encryption_mode)) {
77                 printk(KERN_WARNING
78                         "%s: Invalid filenames encryption mode %d\n", __func__,
79                         policy->filenames_encryption_mode);
80                 return -EINVAL;
81         }
82
83         if (policy->flags & ~FS_POLICY_FLAGS_VALID)
84                 return -EINVAL;
85
86         ctx.contents_encryption_mode = policy->contents_encryption_mode;
87         ctx.filenames_encryption_mode = policy->filenames_encryption_mode;
88         ctx.flags = policy->flags;
89         BUILD_BUG_ON(sizeof(ctx.nonce) != FS_KEY_DERIVATION_NONCE_SIZE);
90         get_random_bytes(ctx.nonce, FS_KEY_DERIVATION_NONCE_SIZE);
91
92         return inode->i_sb->s_cop->set_context(inode, &ctx, sizeof(ctx), NULL);
93 }
94
95 int fscrypt_process_policy(struct inode *inode,
96                                 const struct fscrypt_policy *policy)
97 {
98         if (!inode_owner_or_capable(inode))
99                 return -EACCES;
100
101         if (policy->version != 0)
102                 return -EINVAL;
103
104         if (!inode_has_encryption_context(inode)) {
105                 if (!inode->i_sb->s_cop->empty_dir)
106                         return -EOPNOTSUPP;
107                 if (!inode->i_sb->s_cop->empty_dir(inode))
108                         return -ENOTEMPTY;
109                 return create_encryption_context_from_policy(inode, policy);
110         }
111
112         if (is_encryption_context_consistent_with_policy(inode, policy))
113                 return 0;
114
115         printk(KERN_WARNING "%s: Policy inconsistent with encryption context\n",
116                __func__);
117         return -EINVAL;
118 }
119 EXPORT_SYMBOL(fscrypt_process_policy);
120
121 int fscrypt_get_policy(struct inode *inode, struct fscrypt_policy *policy)
122 {
123         struct fscrypt_context ctx;
124         int res;
125
126         if (!inode->i_sb->s_cop->get_context ||
127                         !inode->i_sb->s_cop->is_encrypted(inode))
128                 return -ENODATA;
129
130         res = inode->i_sb->s_cop->get_context(inode, &ctx, sizeof(ctx));
131         if (res != sizeof(ctx))
132                 return -ENODATA;
133         if (ctx.format != FS_ENCRYPTION_CONTEXT_FORMAT_V1)
134                 return -EINVAL;
135
136         policy->version = 0;
137         policy->contents_encryption_mode = ctx.contents_encryption_mode;
138         policy->filenames_encryption_mode = ctx.filenames_encryption_mode;
139         policy->flags = ctx.flags;
140         memcpy(&policy->master_key_descriptor, ctx.master_key_descriptor,
141                                 FS_KEY_DESCRIPTOR_SIZE);
142         return 0;
143 }
144 EXPORT_SYMBOL(fscrypt_get_policy);
145
146 int fscrypt_has_permitted_context(struct inode *parent, struct inode *child)
147 {
148         struct fscrypt_info *parent_ci, *child_ci;
149         int res;
150
151         if ((parent == NULL) || (child == NULL)) {
152                 printk(KERN_ERR "parent %p child %p\n", parent, child);
153                 BUG_ON(1);
154         }
155
156         /* no restrictions if the parent directory is not encrypted */
157         if (!parent->i_sb->s_cop->is_encrypted(parent))
158                 return 1;
159         /* if the child directory is not encrypted, this is always a problem */
160         if (!parent->i_sb->s_cop->is_encrypted(child))
161                 return 0;
162         res = fscrypt_get_encryption_info(parent);
163         if (res)
164                 return 0;
165         res = fscrypt_get_encryption_info(child);
166         if (res)
167                 return 0;
168         parent_ci = parent->i_crypt_info;
169         child_ci = child->i_crypt_info;
170         if (!parent_ci && !child_ci)
171                 return 1;
172         if (!parent_ci || !child_ci)
173                 return 0;
174
175         return (memcmp(parent_ci->ci_master_key,
176                         child_ci->ci_master_key,
177                         FS_KEY_DESCRIPTOR_SIZE) == 0 &&
178                 (parent_ci->ci_data_mode == child_ci->ci_data_mode) &&
179                 (parent_ci->ci_filename_mode == child_ci->ci_filename_mode) &&
180                 (parent_ci->ci_flags == child_ci->ci_flags));
181 }
182 EXPORT_SYMBOL(fscrypt_has_permitted_context);
183
184 /**
185  * fscrypt_inherit_context() - Sets a child context from its parent
186  * @parent: Parent inode from which the context is inherited.
187  * @child:  Child inode that inherits the context from @parent.
188  * @fs_data:  private data given by FS.
189  * @preload:  preload child i_crypt_info
190  *
191  * Return: Zero on success, non-zero otherwise
192  */
193 int fscrypt_inherit_context(struct inode *parent, struct inode *child,
194                                                 void *fs_data, bool preload)
195 {
196         struct fscrypt_context ctx;
197         struct fscrypt_info *ci;
198         int res;
199
200         if (!parent->i_sb->s_cop->set_context)
201                 return -EOPNOTSUPP;
202
203         res = fscrypt_get_encryption_info(parent);
204         if (res < 0)
205                 return res;
206
207         ci = parent->i_crypt_info;
208         if (ci == NULL)
209                 return -ENOKEY;
210
211         ctx.format = FS_ENCRYPTION_CONTEXT_FORMAT_V1;
212         if (fscrypt_dummy_context_enabled(parent)) {
213                 ctx.contents_encryption_mode = FS_ENCRYPTION_MODE_AES_256_XTS;
214                 ctx.filenames_encryption_mode = FS_ENCRYPTION_MODE_AES_256_CTS;
215                 ctx.flags = 0;
216                 memset(ctx.master_key_descriptor, 0x42, FS_KEY_DESCRIPTOR_SIZE);
217                 res = 0;
218         } else {
219                 ctx.contents_encryption_mode = ci->ci_data_mode;
220                 ctx.filenames_encryption_mode = ci->ci_filename_mode;
221                 ctx.flags = ci->ci_flags;
222                 memcpy(ctx.master_key_descriptor, ci->ci_master_key,
223                                 FS_KEY_DESCRIPTOR_SIZE);
224         }
225         get_random_bytes(ctx.nonce, FS_KEY_DERIVATION_NONCE_SIZE);
226         res = parent->i_sb->s_cop->set_context(child, &ctx,
227                                                 sizeof(ctx), fs_data);
228         if (res)
229                 return res;
230         return preload ? fscrypt_get_encryption_info(child): 0;
231 }
232 EXPORT_SYMBOL(fscrypt_inherit_context);