1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23#include <linux/pagemap.h>
24#include <linux/mempool.h>
25#include <linux/module.h>
26#include <linux/scatterlist.h>
27#include <linux/ratelimit.h>
28#include <crypto/skcipher.h>
29#include "fscrypt_private.h"
30
31static unsigned int num_prealloc_crypto_pages = 32;
32
33module_param(num_prealloc_crypto_pages, uint, 0444);
34MODULE_PARM_DESC(num_prealloc_crypto_pages,
35 "Number of crypto pages to preallocate");
36
37static mempool_t *fscrypt_bounce_page_pool = NULL;
38
39static struct workqueue_struct *fscrypt_read_workqueue;
40static DEFINE_MUTEX(fscrypt_init_mutex);
41
42struct kmem_cache *fscrypt_info_cachep;
43
44void fscrypt_enqueue_decrypt_work(struct work_struct *work)
45{
46 queue_work(fscrypt_read_workqueue, work);
47}
48EXPORT_SYMBOL(fscrypt_enqueue_decrypt_work);
49
50struct page *fscrypt_alloc_bounce_page(gfp_t gfp_flags)
51{
52 return mempool_alloc(fscrypt_bounce_page_pool, gfp_flags);
53}
54
55
56
57
58
59
60
61
62void fscrypt_free_bounce_page(struct page *bounce_page)
63{
64 if (!bounce_page)
65 return;
66 set_page_private(bounce_page, (unsigned long)NULL);
67 ClearPagePrivate(bounce_page);
68 mempool_free(bounce_page, fscrypt_bounce_page_pool);
69}
70EXPORT_SYMBOL(fscrypt_free_bounce_page);
71
72void fscrypt_generate_iv(union fscrypt_iv *iv, u64 lblk_num,
73 const struct fscrypt_info *ci)
74{
75 u8 flags = fscrypt_policy_flags(&ci->ci_policy);
76
77 memset(iv, 0, ci->ci_mode->ivsize);
78
79 if (flags & FSCRYPT_POLICY_FLAG_IV_INO_LBLK_64) {
80 WARN_ON_ONCE(lblk_num > U32_MAX);
81 WARN_ON_ONCE(ci->ci_inode->i_ino > U32_MAX);
82 lblk_num |= (u64)ci->ci_inode->i_ino << 32;
83 } else if (flags & FSCRYPT_POLICY_FLAG_IV_INO_LBLK_32) {
84 WARN_ON_ONCE(lblk_num > U32_MAX);
85 lblk_num = (u32)(ci->ci_hashed_ino + lblk_num);
86 } else if (flags & FSCRYPT_POLICY_FLAG_DIRECT_KEY) {
87 memcpy(iv->nonce, ci->ci_nonce, FSCRYPT_FILE_NONCE_SIZE);
88 }
89 iv->lblk_num = cpu_to_le64(lblk_num);
90}
91
92
93int fscrypt_crypt_block(const struct inode *inode, fscrypt_direction_t rw,
94 u64 lblk_num, struct page *src_page,
95 struct page *dest_page, unsigned int len,
96 unsigned int offs, gfp_t gfp_flags)
97{
98 union fscrypt_iv iv;
99 struct skcipher_request *req = NULL;
100 DECLARE_CRYPTO_WAIT(wait);
101 struct scatterlist dst, src;
102 struct fscrypt_info *ci = inode->i_crypt_info;
103 struct crypto_skcipher *tfm = ci->ci_enc_key.tfm;
104 int res = 0;
105
106 if (WARN_ON_ONCE(len <= 0))
107 return -EINVAL;
108 if (WARN_ON_ONCE(len % FS_CRYPTO_BLOCK_SIZE != 0))
109 return -EINVAL;
110
111 fscrypt_generate_iv(&iv, lblk_num, ci);
112
113 req = skcipher_request_alloc(tfm, gfp_flags);
114 if (!req)
115 return -ENOMEM;
116
117 skcipher_request_set_callback(
118 req, CRYPTO_TFM_REQ_MAY_BACKLOG | CRYPTO_TFM_REQ_MAY_SLEEP,
119 crypto_req_done, &wait);
120
121 sg_init_table(&dst, 1);
122 sg_set_page(&dst, dest_page, len, offs);
123 sg_init_table(&src, 1);
124 sg_set_page(&src, src_page, len, offs);
125 skcipher_request_set_crypt(req, &src, &dst, len, &iv);
126 if (rw == FS_DECRYPT)
127 res = crypto_wait_req(crypto_skcipher_decrypt(req), &wait);
128 else
129 res = crypto_wait_req(crypto_skcipher_encrypt(req), &wait);
130 skcipher_request_free(req);
131 if (res) {
132 fscrypt_err(inode, "%scryption failed for block %llu: %d",
133 (rw == FS_DECRYPT ? "De" : "En"), lblk_num, res);
134 return res;
135 }
136 return 0;
137}
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164struct page *fscrypt_encrypt_pagecache_blocks(struct page *page,
165 unsigned int len,
166 unsigned int offs,
167 gfp_t gfp_flags)
168
169{
170 const struct inode *inode = page->mapping->host;
171 const unsigned int blockbits = inode->i_blkbits;
172 const unsigned int blocksize = 1 << blockbits;
173 struct page *ciphertext_page;
174 u64 lblk_num = ((u64)page->index << (PAGE_SHIFT - blockbits)) +
175 (offs >> blockbits);
176 unsigned int i;
177 int err;
178
179 if (WARN_ON_ONCE(!PageLocked(page)))
180 return ERR_PTR(-EINVAL);
181
182 if (WARN_ON_ONCE(len <= 0 || !IS_ALIGNED(len | offs, blocksize)))
183 return ERR_PTR(-EINVAL);
184
185 ciphertext_page = fscrypt_alloc_bounce_page(gfp_flags);
186 if (!ciphertext_page)
187 return ERR_PTR(-ENOMEM);
188
189 for (i = offs; i < offs + len; i += blocksize, lblk_num++) {
190 err = fscrypt_crypt_block(inode, FS_ENCRYPT, lblk_num,
191 page, ciphertext_page,
192 blocksize, i, gfp_flags);
193 if (err) {
194 fscrypt_free_bounce_page(ciphertext_page);
195 return ERR_PTR(err);
196 }
197 }
198 SetPagePrivate(ciphertext_page);
199 set_page_private(ciphertext_page, (unsigned long)page);
200 return ciphertext_page;
201}
202EXPORT_SYMBOL(fscrypt_encrypt_pagecache_blocks);
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221int fscrypt_encrypt_block_inplace(const struct inode *inode, struct page *page,
222 unsigned int len, unsigned int offs,
223 u64 lblk_num, gfp_t gfp_flags)
224{
225 return fscrypt_crypt_block(inode, FS_ENCRYPT, lblk_num, page, page,
226 len, offs, gfp_flags);
227}
228EXPORT_SYMBOL(fscrypt_encrypt_block_inplace);
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247int fscrypt_decrypt_pagecache_blocks(struct page *page, unsigned int len,
248 unsigned int offs)
249{
250 const struct inode *inode = page->mapping->host;
251 const unsigned int blockbits = inode->i_blkbits;
252 const unsigned int blocksize = 1 << blockbits;
253 u64 lblk_num = ((u64)page->index << (PAGE_SHIFT - blockbits)) +
254 (offs >> blockbits);
255 unsigned int i;
256 int err;
257
258 if (WARN_ON_ONCE(!PageLocked(page)))
259 return -EINVAL;
260
261 if (WARN_ON_ONCE(len <= 0 || !IS_ALIGNED(len | offs, blocksize)))
262 return -EINVAL;
263
264 for (i = offs; i < offs + len; i += blocksize, lblk_num++) {
265 err = fscrypt_crypt_block(inode, FS_DECRYPT, lblk_num, page,
266 page, blocksize, i, GFP_NOFS);
267 if (err)
268 return err;
269 }
270 return 0;
271}
272EXPORT_SYMBOL(fscrypt_decrypt_pagecache_blocks);
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290int fscrypt_decrypt_block_inplace(const struct inode *inode, struct page *page,
291 unsigned int len, unsigned int offs,
292 u64 lblk_num)
293{
294 return fscrypt_crypt_block(inode, FS_DECRYPT, lblk_num, page, page,
295 len, offs, GFP_NOFS);
296}
297EXPORT_SYMBOL(fscrypt_decrypt_block_inplace);
298
299
300
301
302
303
304
305
306
307
308int fscrypt_initialize(unsigned int cop_flags)
309{
310 int err = 0;
311
312
313 if (cop_flags & FS_CFLG_OWN_PAGES)
314 return 0;
315
316 mutex_lock(&fscrypt_init_mutex);
317 if (fscrypt_bounce_page_pool)
318 goto out_unlock;
319
320 err = -ENOMEM;
321 fscrypt_bounce_page_pool =
322 mempool_create_page_pool(num_prealloc_crypto_pages, 0);
323 if (!fscrypt_bounce_page_pool)
324 goto out_unlock;
325
326 err = 0;
327out_unlock:
328 mutex_unlock(&fscrypt_init_mutex);
329 return err;
330}
331
332void fscrypt_msg(const struct inode *inode, const char *level,
333 const char *fmt, ...)
334{
335 static DEFINE_RATELIMIT_STATE(rs, DEFAULT_RATELIMIT_INTERVAL,
336 DEFAULT_RATELIMIT_BURST);
337 struct va_format vaf;
338 va_list args;
339
340 if (!__ratelimit(&rs))
341 return;
342
343 va_start(args, fmt);
344 vaf.fmt = fmt;
345 vaf.va = &args;
346 if (inode && inode->i_ino)
347 printk("%sfscrypt (%s, inode %lu): %pV\n",
348 level, inode->i_sb->s_id, inode->i_ino, &vaf);
349 else if (inode)
350 printk("%sfscrypt (%s): %pV\n", level, inode->i_sb->s_id, &vaf);
351 else
352 printk("%sfscrypt: %pV\n", level, &vaf);
353 va_end(args);
354}
355
356
357
358
359
360
361static int __init fscrypt_init(void)
362{
363 int err = -ENOMEM;
364
365
366
367
368
369
370
371
372
373 fscrypt_read_workqueue = alloc_workqueue("fscrypt_read_queue",
374 WQ_UNBOUND | WQ_HIGHPRI,
375 num_online_cpus());
376 if (!fscrypt_read_workqueue)
377 goto fail;
378
379 fscrypt_info_cachep = KMEM_CACHE(fscrypt_info, SLAB_RECLAIM_ACCOUNT);
380 if (!fscrypt_info_cachep)
381 goto fail_free_queue;
382
383 err = fscrypt_init_keyring();
384 if (err)
385 goto fail_free_info;
386
387 return 0;
388
389fail_free_info:
390 kmem_cache_destroy(fscrypt_info_cachep);
391fail_free_queue:
392 destroy_workqueue(fscrypt_read_workqueue);
393fail:
394 return err;
395}
396late_initcall(fscrypt_init)
397