blob: 858d7d67a4e19c47ed877e633873f093f86db07a [file] [log] [blame]
Michael Halcrow88bd6cc2015-04-12 00:55:06 -04001/*
2 * linux/fs/ext4/crypto_key.c
3 *
4 * Copyright (C) 2015, Google, Inc.
5 *
6 * This contains encryption key functions for ext4
7 *
8 * Written by Michael Halcrow, Ildar Muslukhov, and Uday Savagaonkar, 2015.
9 */
10
11#include <keys/encrypted-type.h>
12#include <keys/user-type.h>
13#include <linux/random.h>
14#include <linux/scatterlist.h>
15#include <uapi/linux/keyctl.h>
16
17#include "ext4.h"
18#include "xattr.h"
19
20static void derive_crypt_complete(struct crypto_async_request *req, int rc)
21{
22 struct ext4_completion_result *ecr = req->data;
23
24 if (rc == -EINPROGRESS)
25 return;
26
27 ecr->res = rc;
28 complete(&ecr->completion);
29}
30
31/**
32 * ext4_derive_key_aes() - Derive a key using AES-128-ECB
33 * @deriving_key: Encryption key used for derivatio.
34 * @source_key: Source key to which to apply derivation.
35 * @derived_key: Derived key.
36 *
37 * Return: Zero on success; non-zero otherwise.
38 */
39static int ext4_derive_key_aes(char deriving_key[EXT4_AES_128_ECB_KEY_SIZE],
40 char source_key[EXT4_AES_256_XTS_KEY_SIZE],
41 char derived_key[EXT4_AES_256_XTS_KEY_SIZE])
42{
43 int res = 0;
44 struct ablkcipher_request *req = NULL;
45 DECLARE_EXT4_COMPLETION_RESULT(ecr);
46 struct scatterlist src_sg, dst_sg;
47 struct crypto_ablkcipher *tfm = crypto_alloc_ablkcipher("ecb(aes)", 0,
48 0);
49
50 if (IS_ERR(tfm)) {
51 res = PTR_ERR(tfm);
52 tfm = NULL;
53 goto out;
54 }
55 crypto_ablkcipher_set_flags(tfm, CRYPTO_TFM_REQ_WEAK_KEY);
56 req = ablkcipher_request_alloc(tfm, GFP_NOFS);
57 if (!req) {
58 res = -ENOMEM;
59 goto out;
60 }
61 ablkcipher_request_set_callback(req,
62 CRYPTO_TFM_REQ_MAY_BACKLOG | CRYPTO_TFM_REQ_MAY_SLEEP,
63 derive_crypt_complete, &ecr);
64 res = crypto_ablkcipher_setkey(tfm, deriving_key,
65 EXT4_AES_128_ECB_KEY_SIZE);
66 if (res < 0)
67 goto out;
68 sg_init_one(&src_sg, source_key, EXT4_AES_256_XTS_KEY_SIZE);
69 sg_init_one(&dst_sg, derived_key, EXT4_AES_256_XTS_KEY_SIZE);
70 ablkcipher_request_set_crypt(req, &src_sg, &dst_sg,
71 EXT4_AES_256_XTS_KEY_SIZE, NULL);
72 res = crypto_ablkcipher_encrypt(req);
73 if (res == -EINPROGRESS || res == -EBUSY) {
74 BUG_ON(req->base.data != &ecr);
75 wait_for_completion(&ecr.completion);
76 res = ecr.res;
77 }
78
79out:
80 if (req)
81 ablkcipher_request_free(req);
82 if (tfm)
83 crypto_free_ablkcipher(tfm);
84 return res;
85}
86
Theodore Ts'ob7236e22015-05-18 13:17:47 -040087void ext4_free_encryption_info(struct inode *inode)
Michael Halcrow88bd6cc2015-04-12 00:55:06 -040088{
89 struct ext4_inode_info *ei = EXT4_I(inode);
Theodore Ts'ob7236e22015-05-18 13:17:47 -040090 struct ext4_crypt_info *ci = ei->i_crypt_info;
91
92 if (!ci)
93 return;
94
95 if (ci->ci_keyring_key)
96 key_put(ci->ci_keyring_key);
97 crypto_free_ablkcipher(ci->ci_ctfm);
98 memzero_explicit(&ci->ci_raw, sizeof(ci->ci_raw));
Theodore Ts'o8ee037142015-05-18 13:19:47 -040099 kmem_cache_free(ext4_crypt_info_cachep, ci);
Theodore Ts'ob7236e22015-05-18 13:17:47 -0400100 ei->i_crypt_info = NULL;
101}
102
103int _ext4_get_encryption_info(struct inode *inode)
104{
105 struct ext4_inode_info *ei = EXT4_I(inode);
106 struct ext4_crypt_info *crypt_info;
Michael Halcrow88bd6cc2015-04-12 00:55:06 -0400107 char full_key_descriptor[EXT4_KEY_DESC_PREFIX_SIZE +
108 (EXT4_KEY_DESCRIPTOR_SIZE * 2) + 1];
109 struct key *keyring_key = NULL;
110 struct ext4_encryption_key *master_key;
111 struct ext4_encryption_context ctx;
112 struct user_key_payload *ukp;
Theodore Ts'o6ddb2442015-04-16 01:56:00 -0400113 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'ob7236e22015-05-18 13:17:47 -0400114 int res;
115
Theodore Ts'o8ee037142015-05-18 13:19:47 -0400116 if (!ext4_read_workqueue) {
117 res = ext4_init_crypto();
118 if (res)
119 return res;
120 }
121
Theodore Ts'ob7236e22015-05-18 13:17:47 -0400122 if (ei->i_crypt_info) {
123 if (!ei->i_crypt_info->ci_keyring_key ||
124 key_validate(ei->i_crypt_info->ci_keyring_key) == 0)
125 return 0;
126 ext4_free_encryption_info(inode);
127 }
128
129 res = ext4_xattr_get(inode, EXT4_XATTR_INDEX_ENCRYPTION,
Michael Halcrow88bd6cc2015-04-12 00:55:06 -0400130 EXT4_XATTR_NAME_ENCRYPTION_CONTEXT,
131 &ctx, sizeof(ctx));
Theodore Ts'ob7236e22015-05-18 13:17:47 -0400132 if (res < 0) {
133 if (!DUMMY_ENCRYPTION_ENABLED(sbi))
134 return res;
135 ctx.contents_encryption_mode = EXT4_ENCRYPTION_MODE_AES_256_XTS;
136 ctx.filenames_encryption_mode =
137 EXT4_ENCRYPTION_MODE_AES_256_CTS;
138 ctx.flags = 0;
139 } else if (res != sizeof(ctx))
140 return -EINVAL;
Michael Halcrow88bd6cc2015-04-12 00:55:06 -0400141 res = 0;
142
Theodore Ts'o8ee037142015-05-18 13:19:47 -0400143 crypt_info = kmem_cache_alloc(ext4_crypt_info_cachep, GFP_KERNEL);
Theodore Ts'ob7236e22015-05-18 13:17:47 -0400144 if (!crypt_info)
145 return -ENOMEM;
146
Theodore Ts'oa44cd7a2015-05-01 16:56:50 -0400147 ei->i_crypt_policy_flags = ctx.flags;
Theodore Ts'ob7236e22015-05-18 13:17:47 -0400148 crypt_info->ci_flags = ctx.flags;
149 crypt_info->ci_data_mode = ctx.contents_encryption_mode;
150 crypt_info->ci_filename_mode = ctx.filenames_encryption_mode;
151 crypt_info->ci_ctfm = NULL;
152 memcpy(crypt_info->ci_master_key, ctx.master_key_descriptor,
153 sizeof(crypt_info->ci_master_key));
Theodore Ts'o6ddb2442015-04-16 01:56:00 -0400154 if (S_ISREG(inode->i_mode))
Theodore Ts'o1aaa6e82015-05-18 13:20:47 -0400155 crypt_info->ci_size =
156 ext4_encryption_key_size(crypt_info->ci_data_mode);
Theodore Ts'o6ddb2442015-04-16 01:56:00 -0400157 else if (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode))
Theodore Ts'o1aaa6e82015-05-18 13:20:47 -0400158 crypt_info->ci_size =
159 ext4_encryption_key_size(crypt_info->ci_filename_mode);
160 else
Theodore Ts'o6ddb2442015-04-16 01:56:00 -0400161 BUG();
Theodore Ts'oe2881b1b2015-05-18 13:16:47 -0400162 BUG_ON(!crypt_info->ci_size);
Theodore Ts'o6ddb2442015-04-16 01:56:00 -0400163 if (DUMMY_ENCRYPTION_ENABLED(sbi)) {
Theodore Ts'oe2881b1b2015-05-18 13:16:47 -0400164 memset(crypt_info->ci_raw, 0x42, EXT4_AES_256_XTS_KEY_SIZE);
Theodore Ts'o6ddb2442015-04-16 01:56:00 -0400165 goto out;
166 }
Michael Halcrow88bd6cc2015-04-12 00:55:06 -0400167 memcpy(full_key_descriptor, EXT4_KEY_DESC_PREFIX,
168 EXT4_KEY_DESC_PREFIX_SIZE);
169 sprintf(full_key_descriptor + EXT4_KEY_DESC_PREFIX_SIZE,
170 "%*phN", EXT4_KEY_DESCRIPTOR_SIZE,
171 ctx.master_key_descriptor);
172 full_key_descriptor[EXT4_KEY_DESC_PREFIX_SIZE +
173 (2 * EXT4_KEY_DESCRIPTOR_SIZE)] = '\0';
174 keyring_key = request_key(&key_type_logon, full_key_descriptor, NULL);
175 if (IS_ERR(keyring_key)) {
176 res = PTR_ERR(keyring_key);
177 keyring_key = NULL;
178 goto out;
179 }
180 BUG_ON(keyring_key->type != &key_type_logon);
181 ukp = ((struct user_key_payload *)keyring_key->payload.data);
182 if (ukp->datalen != sizeof(struct ext4_encryption_key)) {
183 res = -EINVAL;
184 goto out;
185 }
186 master_key = (struct ext4_encryption_key *)ukp->data;
Michael Halcrow88bd6cc2015-04-12 00:55:06 -0400187 BUILD_BUG_ON(EXT4_AES_128_ECB_KEY_SIZE !=
188 EXT4_KEY_DERIVATION_NONCE_SIZE);
189 BUG_ON(master_key->size != EXT4_AES_256_XTS_KEY_SIZE);
Theodore Ts'oe2881b1b2015-05-18 13:16:47 -0400190 res = ext4_derive_key_aes(ctx.nonce, master_key->raw,
191 crypt_info->ci_raw);
Michael Halcrow88bd6cc2015-04-12 00:55:06 -0400192out:
Theodore Ts'ob7236e22015-05-18 13:17:47 -0400193 if (res < 0) {
194 if (res == -ENOKEY)
195 res = 0;
Theodore Ts'o8ee037142015-05-18 13:19:47 -0400196 kmem_cache_free(ext4_crypt_info_cachep, crypt_info);
Theodore Ts'ob7236e22015-05-18 13:17:47 -0400197 } else {
198 ei->i_crypt_info = crypt_info;
199 crypt_info->ci_keyring_key = keyring_key;
200 keyring_key = NULL;
201 }
Michael Halcrow88bd6cc2015-04-12 00:55:06 -0400202 if (keyring_key)
203 key_put(keyring_key);
Michael Halcrow88bd6cc2015-04-12 00:55:06 -0400204 return res;
205}
206
207int ext4_has_encryption_key(struct inode *inode)
208{
209 struct ext4_inode_info *ei = EXT4_I(inode);
Michael Halcrow88bd6cc2015-04-12 00:55:06 -0400210
Theodore Ts'ob7236e22015-05-18 13:17:47 -0400211 return (ei->i_crypt_info != NULL);
Michael Halcrow88bd6cc2015-04-12 00:55:06 -0400212}