blob: 82da2510721f6b7189af9026a2854c8dbe089c40 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Richard Weinberger58ae7462016-12-19 12:25:32 +01002/*
3 * This contains encryption functions for per-file encryption.
4 *
5 * Copyright (C) 2015, Google, Inc.
6 * Copyright (C) 2015, Motorola Mobility
7 *
8 * Written by Michael Halcrow, 2014.
9 *
10 * Filename encryption additions
11 * Uday Savagaonkar, 2014
12 * Encryption policy handling additions
13 * Ildar Muslukhov, 2014
14 * Add fscrypt_pullback_bio_page()
15 * Jaegeuk Kim, 2015.
16 *
17 * This has not yet undergone a rigorous security audit.
18 *
19 * The usage of AES-XTS should conform to recommendations in NIST
20 * Special Publication 800-38E and IEEE P1619/D16.
21 */
22
23#include <linux/pagemap.h>
24#include <linux/module.h>
25#include <linux/bio.h>
26#include <linux/namei.h>
27#include "fscrypt_private.h"
28
Eric Biggers0cb8dae2018-04-18 11:09:47 -070029static void __fscrypt_decrypt_bio(struct bio *bio, bool done)
Richard Weinberger58ae7462016-12-19 12:25:32 +010030{
Richard Weinberger58ae7462016-12-19 12:25:32 +010031 struct bio_vec *bv;
Ming Lei6dc4f102019-02-15 19:13:19 +080032 struct bvec_iter_all iter_all;
Richard Weinberger58ae7462016-12-19 12:25:32 +010033
Christoph Hellwig2b070cf2019-04-25 09:03:00 +020034 bio_for_each_segment_all(bv, bio, iter_all) {
Richard Weinberger58ae7462016-12-19 12:25:32 +010035 struct page *page = bv->bv_page;
Eric Biggersffceeef2019-05-20 09:29:48 -070036 int ret = fscrypt_decrypt_pagecache_blocks(page, bv->bv_len,
37 bv->bv_offset);
Eric Biggersff5d3a92019-03-15 14:16:32 -070038 if (ret)
Richard Weinberger58ae7462016-12-19 12:25:32 +010039 SetPageError(page);
Eric Biggersff5d3a92019-03-15 14:16:32 -070040 else if (done)
Richard Weinberger58ae7462016-12-19 12:25:32 +010041 SetPageUptodate(page);
Eric Biggers0cb8dae2018-04-18 11:09:47 -070042 if (done)
43 unlock_page(page);
Richard Weinberger58ae7462016-12-19 12:25:32 +010044 }
Eric Biggers0cb8dae2018-04-18 11:09:47 -070045}
46
47void fscrypt_decrypt_bio(struct bio *bio)
48{
49 __fscrypt_decrypt_bio(bio, false);
50}
51EXPORT_SYMBOL(fscrypt_decrypt_bio);
52
53static void completion_pages(struct work_struct *work)
54{
Eric Biggers2a415a02019-05-20 09:29:40 -070055 struct fscrypt_ctx *ctx = container_of(work, struct fscrypt_ctx, work);
56 struct bio *bio = ctx->bio;
Eric Biggers0cb8dae2018-04-18 11:09:47 -070057
58 __fscrypt_decrypt_bio(bio, true);
Richard Weinberger58ae7462016-12-19 12:25:32 +010059 fscrypt_release_ctx(ctx);
60 bio_put(bio);
61}
62
Eric Biggers0cb8dae2018-04-18 11:09:47 -070063void fscrypt_enqueue_decrypt_bio(struct fscrypt_ctx *ctx, struct bio *bio)
Richard Weinberger58ae7462016-12-19 12:25:32 +010064{
Eric Biggers2a415a02019-05-20 09:29:40 -070065 INIT_WORK(&ctx->work, completion_pages);
66 ctx->bio = bio;
67 fscrypt_enqueue_decrypt_work(&ctx->work);
Richard Weinberger58ae7462016-12-19 12:25:32 +010068}
Eric Biggers0cb8dae2018-04-18 11:09:47 -070069EXPORT_SYMBOL(fscrypt_enqueue_decrypt_bio);
Richard Weinberger58ae7462016-12-19 12:25:32 +010070
Richard Weinberger58ae7462016-12-19 12:25:32 +010071int fscrypt_zeroout_range(const struct inode *inode, pgoff_t lblk,
72 sector_t pblk, unsigned int len)
73{
Eric Biggers930d4532019-05-20 09:29:45 -070074 const unsigned int blockbits = inode->i_blkbits;
75 const unsigned int blocksize = 1 << blockbits;
Eric Biggersd2d07272019-05-20 09:29:39 -070076 struct page *ciphertext_page;
Richard Weinberger58ae7462016-12-19 12:25:32 +010077 struct bio *bio;
78 int ret, err = 0;
79
Eric Biggersd2d07272019-05-20 09:29:39 -070080 ciphertext_page = fscrypt_alloc_bounce_page(GFP_NOWAIT);
81 if (!ciphertext_page)
82 return -ENOMEM;
Richard Weinberger58ae7462016-12-19 12:25:32 +010083
84 while (len--) {
Eric Biggersf47fcbb2019-05-20 09:29:41 -070085 err = fscrypt_crypt_block(inode, FS_ENCRYPT, lblk,
86 ZERO_PAGE(0), ciphertext_page,
Eric Biggers930d4532019-05-20 09:29:45 -070087 blocksize, 0, GFP_NOFS);
Richard Weinberger58ae7462016-12-19 12:25:32 +010088 if (err)
89 goto errout;
90
91 bio = bio_alloc(GFP_NOWAIT, 1);
92 if (!bio) {
93 err = -ENOMEM;
94 goto errout;
95 }
Christoph Hellwig74d46992017-08-23 19:10:32 +020096 bio_set_dev(bio, inode->i_sb->s_bdev);
Eric Biggers930d4532019-05-20 09:29:45 -070097 bio->bi_iter.bi_sector = pblk << (blockbits - 9);
Richard Weinberger58ae7462016-12-19 12:25:32 +010098 bio_set_op_attrs(bio, REQ_OP_WRITE, 0);
Eric Biggers930d4532019-05-20 09:29:45 -070099 ret = bio_add_page(bio, ciphertext_page, blocksize, 0);
100 if (WARN_ON(ret != blocksize)) {
Richard Weinberger58ae7462016-12-19 12:25:32 +0100101 /* should never happen! */
Richard Weinberger58ae7462016-12-19 12:25:32 +0100102 bio_put(bio);
103 err = -EIO;
104 goto errout;
105 }
106 err = submit_bio_wait(bio);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200107 if (err == 0 && bio->bi_status)
Richard Weinberger58ae7462016-12-19 12:25:32 +0100108 err = -EIO;
109 bio_put(bio);
110 if (err)
111 goto errout;
112 lblk++;
113 pblk++;
114 }
115 err = 0;
116errout:
Eric Biggersd2d07272019-05-20 09:29:39 -0700117 fscrypt_free_bounce_page(ciphertext_page);
Richard Weinberger58ae7462016-12-19 12:25:32 +0100118 return err;
119}
120EXPORT_SYMBOL(fscrypt_zeroout_range);