blob: c0b3030b563486af0f1756d6d73ae32fe02a77c8 [file] [log] [blame]
David Howellsab3c3582013-09-24 10:35:18 +01001/* Large capacity key type
2 *
3 * Copyright (C) 2013 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
10 */
11
David Howellsab3c3582013-09-24 10:35:18 +010012#include <linux/init.h>
13#include <linux/seq_file.h>
14#include <linux/file.h>
15#include <linux/shmem_fs.h>
16#include <linux/err.h>
Kirill Marinushkin13100a72016-04-12 19:54:58 +010017#include <linux/scatterlist.h>
David Howellsab3c3582013-09-24 10:35:18 +010018#include <keys/user-type.h>
19#include <keys/big_key-type.h>
Kirill Marinushkin13100a72016-04-12 19:54:58 +010020#include <crypto/rng.h>
Herbert Xud56d72c2016-06-22 22:13:53 +080021#include <crypto/skcipher.h>
David Howellsab3c3582013-09-24 10:35:18 +010022
David Howellsab3c3582013-09-24 10:35:18 +010023/*
David Howells146aa8b2015-10-21 14:04:48 +010024 * Layout of key payload words.
25 */
26enum {
27 big_key_data,
28 big_key_path,
29 big_key_path_2nd_part,
30 big_key_len,
31};
32
33/*
Kirill Marinushkin13100a72016-04-12 19:54:58 +010034 * Crypto operation with big_key data
35 */
36enum big_key_op {
37 BIG_KEY_ENC,
38 BIG_KEY_DEC,
39};
40
41/*
David Howellsab3c3582013-09-24 10:35:18 +010042 * If the data is under this limit, there's no point creating a shm file to
43 * hold it as the permanently resident metadata for the shmem fs will be at
44 * least as large as the data.
45 */
46#define BIG_KEY_FILE_THRESHOLD (sizeof(struct inode) + sizeof(struct dentry))
47
48/*
Kirill Marinushkin13100a72016-04-12 19:54:58 +010049 * Key size for big_key data encryption
50 */
51#define ENC_KEY_SIZE 16
52
53/*
David Howellsab3c3582013-09-24 10:35:18 +010054 * big_key defined keys take an arbitrary string as the description and an
55 * arbitrary blob of data as the payload
56 */
57struct key_type key_type_big_key = {
58 .name = "big_key",
David Howells002edaf2014-07-18 18:56:36 +010059 .preparse = big_key_preparse,
60 .free_preparse = big_key_free_preparse,
61 .instantiate = generic_key_instantiate,
David Howellsab3c3582013-09-24 10:35:18 +010062 .revoke = big_key_revoke,
63 .destroy = big_key_destroy,
64 .describe = big_key_describe,
65 .read = big_key_read,
66};
67
68/*
Kirill Marinushkin13100a72016-04-12 19:54:58 +010069 * Crypto names for big_key data encryption
70 */
71static const char big_key_rng_name[] = "stdrng";
72static const char big_key_alg_name[] = "ecb(aes)";
73
74/*
75 * Crypto algorithms for big_key data encryption
76 */
77static struct crypto_rng *big_key_rng;
Herbert Xud56d72c2016-06-22 22:13:53 +080078static struct crypto_skcipher *big_key_skcipher;
Kirill Marinushkin13100a72016-04-12 19:54:58 +010079
80/*
81 * Generate random key to encrypt big_key data
82 */
83static inline int big_key_gen_enckey(u8 *key)
84{
85 return crypto_rng_get_bytes(big_key_rng, key, ENC_KEY_SIZE);
86}
87
88/*
89 * Encrypt/decrypt big_key data
90 */
91static int big_key_crypt(enum big_key_op op, u8 *data, size_t datalen, u8 *key)
92{
93 int ret = -EINVAL;
94 struct scatterlist sgio;
Herbert Xud56d72c2016-06-22 22:13:53 +080095 SKCIPHER_REQUEST_ON_STACK(req, big_key_skcipher);
Kirill Marinushkin13100a72016-04-12 19:54:58 +010096
Herbert Xud56d72c2016-06-22 22:13:53 +080097 if (crypto_skcipher_setkey(big_key_skcipher, key, ENC_KEY_SIZE)) {
Kirill Marinushkin13100a72016-04-12 19:54:58 +010098 ret = -EAGAIN;
99 goto error;
100 }
101
Herbert Xud56d72c2016-06-22 22:13:53 +0800102 skcipher_request_set_tfm(req, big_key_skcipher);
103 skcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_SLEEP,
104 NULL, NULL);
Kirill Marinushkin13100a72016-04-12 19:54:58 +0100105
106 sg_init_one(&sgio, data, datalen);
Herbert Xud56d72c2016-06-22 22:13:53 +0800107 skcipher_request_set_crypt(req, &sgio, &sgio, datalen, NULL);
Kirill Marinushkin13100a72016-04-12 19:54:58 +0100108
109 if (op == BIG_KEY_ENC)
Herbert Xud56d72c2016-06-22 22:13:53 +0800110 ret = crypto_skcipher_encrypt(req);
Kirill Marinushkin13100a72016-04-12 19:54:58 +0100111 else
Herbert Xud56d72c2016-06-22 22:13:53 +0800112 ret = crypto_skcipher_decrypt(req);
113
114 skcipher_request_zero(req);
Kirill Marinushkin13100a72016-04-12 19:54:58 +0100115
116error:
117 return ret;
118}
119
120/*
David Howells002edaf2014-07-18 18:56:36 +0100121 * Preparse a big key
David Howellsab3c3582013-09-24 10:35:18 +0100122 */
David Howells002edaf2014-07-18 18:56:36 +0100123int big_key_preparse(struct key_preparsed_payload *prep)
David Howellsab3c3582013-09-24 10:35:18 +0100124{
David Howells146aa8b2015-10-21 14:04:48 +0100125 struct path *path = (struct path *)&prep->payload.data[big_key_path];
David Howellsab3c3582013-09-24 10:35:18 +0100126 struct file *file;
Kirill Marinushkin13100a72016-04-12 19:54:58 +0100127 u8 *enckey;
128 u8 *data = NULL;
David Howellsab3c3582013-09-24 10:35:18 +0100129 ssize_t written;
130 size_t datalen = prep->datalen;
131 int ret;
132
133 ret = -EINVAL;
134 if (datalen <= 0 || datalen > 1024 * 1024 || !prep->data)
135 goto error;
136
137 /* Set an arbitrary quota */
David Howells002edaf2014-07-18 18:56:36 +0100138 prep->quotalen = 16;
David Howellsab3c3582013-09-24 10:35:18 +0100139
David Howells146aa8b2015-10-21 14:04:48 +0100140 prep->payload.data[big_key_len] = (void *)(unsigned long)datalen;
David Howellsab3c3582013-09-24 10:35:18 +0100141
142 if (datalen > BIG_KEY_FILE_THRESHOLD) {
143 /* Create a shmem file to store the data in. This will permit the data
144 * to be swapped out if needed.
145 *
Kirill Marinushkin13100a72016-04-12 19:54:58 +0100146 * File content is stored encrypted with randomly generated key.
David Howellsab3c3582013-09-24 10:35:18 +0100147 */
Herbert Xud56d72c2016-06-22 22:13:53 +0800148 size_t enclen = ALIGN(datalen, crypto_skcipher_blocksize(big_key_skcipher));
Kirill Marinushkin13100a72016-04-12 19:54:58 +0100149
150 /* prepare aligned data to encrypt */
151 data = kmalloc(enclen, GFP_KERNEL);
152 if (!data)
153 return -ENOMEM;
154
155 memcpy(data, prep->data, datalen);
156 memset(data + datalen, 0x00, enclen - datalen);
157
158 /* generate random key */
159 enckey = kmalloc(ENC_KEY_SIZE, GFP_KERNEL);
160 if (!enckey) {
161 ret = -ENOMEM;
David Howells002edaf2014-07-18 18:56:36 +0100162 goto error;
Wei Yongjund2b86972013-10-30 11:23:02 +0800163 }
David Howellsab3c3582013-09-24 10:35:18 +0100164
Kirill Marinushkin13100a72016-04-12 19:54:58 +0100165 ret = big_key_gen_enckey(enckey);
166 if (ret)
167 goto err_enckey;
168
169 /* encrypt aligned data */
170 ret = big_key_crypt(BIG_KEY_ENC, data, enclen, enckey);
171 if (ret)
172 goto err_enckey;
173
174 /* save aligned data to file */
175 file = shmem_kernel_file_setup("", enclen, 0);
176 if (IS_ERR(file)) {
177 ret = PTR_ERR(file);
178 goto err_enckey;
179 }
180
181 written = kernel_write(file, data, enclen, 0);
182 if (written != enclen) {
David Howells97826c82013-11-13 16:51:06 +0000183 ret = written;
David Howellsab3c3582013-09-24 10:35:18 +0100184 if (written >= 0)
185 ret = -ENOMEM;
186 goto err_fput;
187 }
188
189 /* Pin the mount and dentry to the key so that we can open it again
190 * later
191 */
Kirill Marinushkin13100a72016-04-12 19:54:58 +0100192 prep->payload.data[big_key_data] = enckey;
David Howellsab3c3582013-09-24 10:35:18 +0100193 *path = file->f_path;
194 path_get(path);
195 fput(file);
Kirill Marinushkin13100a72016-04-12 19:54:58 +0100196 kfree(data);
David Howellsab3c3582013-09-24 10:35:18 +0100197 } else {
198 /* Just store the data in a buffer */
199 void *data = kmalloc(datalen, GFP_KERNEL);
Kirill Marinushkin13100a72016-04-12 19:54:58 +0100200
David Howells002edaf2014-07-18 18:56:36 +0100201 if (!data)
202 return -ENOMEM;
David Howellsab3c3582013-09-24 10:35:18 +0100203
David Howells146aa8b2015-10-21 14:04:48 +0100204 prep->payload.data[big_key_data] = data;
205 memcpy(data, prep->data, prep->datalen);
David Howellsab3c3582013-09-24 10:35:18 +0100206 }
207 return 0;
208
209err_fput:
210 fput(file);
Kirill Marinushkin13100a72016-04-12 19:54:58 +0100211err_enckey:
212 kfree(enckey);
David Howellsab3c3582013-09-24 10:35:18 +0100213error:
Kirill Marinushkin13100a72016-04-12 19:54:58 +0100214 kfree(data);
David Howellsab3c3582013-09-24 10:35:18 +0100215 return ret;
216}
217
218/*
David Howells002edaf2014-07-18 18:56:36 +0100219 * Clear preparsement.
220 */
221void big_key_free_preparse(struct key_preparsed_payload *prep)
222{
223 if (prep->datalen > BIG_KEY_FILE_THRESHOLD) {
David Howells146aa8b2015-10-21 14:04:48 +0100224 struct path *path = (struct path *)&prep->payload.data[big_key_path];
Kirill Marinushkin13100a72016-04-12 19:54:58 +0100225
David Howells002edaf2014-07-18 18:56:36 +0100226 path_put(path);
David Howells002edaf2014-07-18 18:56:36 +0100227 }
Kirill Marinushkin13100a72016-04-12 19:54:58 +0100228 kfree(prep->payload.data[big_key_data]);
David Howells002edaf2014-07-18 18:56:36 +0100229}
230
231/*
David Howellsab3c3582013-09-24 10:35:18 +0100232 * dispose of the links from a revoked keyring
233 * - called with the key sem write-locked
234 */
235void big_key_revoke(struct key *key)
236{
David Howells146aa8b2015-10-21 14:04:48 +0100237 struct path *path = (struct path *)&key->payload.data[big_key_path];
David Howellsab3c3582013-09-24 10:35:18 +0100238
239 /* clear the quota */
240 key_payload_reserve(key, 0);
David Howells146aa8b2015-10-21 14:04:48 +0100241 if (key_is_instantiated(key) &&
242 (size_t)key->payload.data[big_key_len] > BIG_KEY_FILE_THRESHOLD)
David Howellsab3c3582013-09-24 10:35:18 +0100243 vfs_truncate(path, 0);
244}
245
246/*
247 * dispose of the data dangling from the corpse of a big_key key
248 */
249void big_key_destroy(struct key *key)
250{
David Howells146aa8b2015-10-21 14:04:48 +0100251 size_t datalen = (size_t)key->payload.data[big_key_len];
252
Kirill Marinushkin13100a72016-04-12 19:54:58 +0100253 if (datalen > BIG_KEY_FILE_THRESHOLD) {
David Howells146aa8b2015-10-21 14:04:48 +0100254 struct path *path = (struct path *)&key->payload.data[big_key_path];
Kirill Marinushkin13100a72016-04-12 19:54:58 +0100255
David Howellsab3c3582013-09-24 10:35:18 +0100256 path_put(path);
257 path->mnt = NULL;
258 path->dentry = NULL;
David Howellsab3c3582013-09-24 10:35:18 +0100259 }
Kirill Marinushkin13100a72016-04-12 19:54:58 +0100260 kfree(key->payload.data[big_key_data]);
261 key->payload.data[big_key_data] = NULL;
David Howellsab3c3582013-09-24 10:35:18 +0100262}
263
264/*
265 * describe the big_key key
266 */
267void big_key_describe(const struct key *key, struct seq_file *m)
268{
David Howells146aa8b2015-10-21 14:04:48 +0100269 size_t datalen = (size_t)key->payload.data[big_key_len];
David Howellsab3c3582013-09-24 10:35:18 +0100270
271 seq_puts(m, key->description);
272
273 if (key_is_instantiated(key))
David Howells146aa8b2015-10-21 14:04:48 +0100274 seq_printf(m, ": %zu [%s]",
David Howellsab3c3582013-09-24 10:35:18 +0100275 datalen,
276 datalen > BIG_KEY_FILE_THRESHOLD ? "file" : "buff");
277}
278
279/*
280 * read the key data
281 * - the key's semaphore is read-locked
282 */
283long big_key_read(const struct key *key, char __user *buffer, size_t buflen)
284{
David Howells146aa8b2015-10-21 14:04:48 +0100285 size_t datalen = (size_t)key->payload.data[big_key_len];
David Howellsab3c3582013-09-24 10:35:18 +0100286 long ret;
287
288 if (!buffer || buflen < datalen)
289 return datalen;
290
291 if (datalen > BIG_KEY_FILE_THRESHOLD) {
David Howells146aa8b2015-10-21 14:04:48 +0100292 struct path *path = (struct path *)&key->payload.data[big_key_path];
David Howellsab3c3582013-09-24 10:35:18 +0100293 struct file *file;
Kirill Marinushkin13100a72016-04-12 19:54:58 +0100294 u8 *data;
295 u8 *enckey = (u8 *)key->payload.data[big_key_data];
Herbert Xud56d72c2016-06-22 22:13:53 +0800296 size_t enclen = ALIGN(datalen, crypto_skcipher_blocksize(big_key_skcipher));
Kirill Marinushkin13100a72016-04-12 19:54:58 +0100297
298 data = kmalloc(enclen, GFP_KERNEL);
299 if (!data)
300 return -ENOMEM;
David Howellsab3c3582013-09-24 10:35:18 +0100301
302 file = dentry_open(path, O_RDONLY, current_cred());
Kirill Marinushkin13100a72016-04-12 19:54:58 +0100303 if (IS_ERR(file)) {
304 ret = PTR_ERR(file);
305 goto error;
306 }
David Howellsab3c3582013-09-24 10:35:18 +0100307
Kirill Marinushkin13100a72016-04-12 19:54:58 +0100308 /* read file to kernel and decrypt */
309 ret = kernel_read(file, 0, data, enclen);
310 if (ret >= 0 && ret != enclen) {
David Howellsab3c3582013-09-24 10:35:18 +0100311 ret = -EIO;
Kirill Marinushkin13100a72016-04-12 19:54:58 +0100312 goto err_fput;
313 }
314
315 ret = big_key_crypt(BIG_KEY_DEC, data, enclen, enckey);
316 if (ret)
317 goto err_fput;
318
319 ret = datalen;
320
321 /* copy decrypted data to user */
322 if (copy_to_user(buffer, data, datalen) != 0)
323 ret = -EFAULT;
324
325err_fput:
326 fput(file);
327error:
328 kfree(data);
David Howellsab3c3582013-09-24 10:35:18 +0100329 } else {
330 ret = datalen;
David Howells146aa8b2015-10-21 14:04:48 +0100331 if (copy_to_user(buffer, key->payload.data[big_key_data],
332 datalen) != 0)
David Howellsab3c3582013-09-24 10:35:18 +0100333 ret = -EFAULT;
334 }
335
336 return ret;
337}
338
Kirill Marinushkin13100a72016-04-12 19:54:58 +0100339/*
340 * Register key type
341 */
David Howellsab3c3582013-09-24 10:35:18 +0100342static int __init big_key_init(void)
343{
344 return register_key_type(&key_type_big_key);
345}
Kirill Marinushkin13100a72016-04-12 19:54:58 +0100346
347/*
348 * Initialize big_key crypto and RNG algorithms
349 */
350static int __init big_key_crypto_init(void)
351{
352 int ret = -EINVAL;
353
354 /* init RNG */
355 big_key_rng = crypto_alloc_rng(big_key_rng_name, 0, 0);
356 if (IS_ERR(big_key_rng)) {
357 big_key_rng = NULL;
358 return -EFAULT;
359 }
360
361 /* seed RNG */
362 ret = crypto_rng_reset(big_key_rng, NULL, crypto_rng_seedsize(big_key_rng));
363 if (ret)
364 goto error;
365
366 /* init block cipher */
Herbert Xud56d72c2016-06-22 22:13:53 +0800367 big_key_skcipher = crypto_alloc_skcipher(big_key_alg_name,
368 0, CRYPTO_ALG_ASYNC);
369 if (IS_ERR(big_key_skcipher)) {
370 big_key_skcipher = NULL;
Kirill Marinushkin13100a72016-04-12 19:54:58 +0100371 ret = -EFAULT;
372 goto error;
373 }
374
375 return 0;
376
377error:
378 crypto_free_rng(big_key_rng);
379 big_key_rng = NULL;
380 return ret;
381}
382
Paul Gortmakera1f2bdf2015-12-09 17:37:15 -0500383device_initcall(big_key_init);
Kirill Marinushkin13100a72016-04-12 19:54:58 +0100384late_initcall(big_key_crypto_init);