blob: 9954b078f0b9cc7ccd853650f85920e29f159973 [file] [log] [blame]
Herbert Xu8ff59092010-10-19 21:31:55 +08001/*
2 * algif_skcipher: User-space interface for skcipher algorithms
3 *
4 * This file provides the user-space API for symmetric key ciphers.
5 *
6 * Copyright (c) 2010 Herbert Xu <herbert@gondor.apana.org.au>
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the Free
10 * Software Foundation; either version 2 of the License, or (at your option)
11 * any later version.
12 *
Stephan Muellere8704562017-06-25 17:12:39 +020013 * The following concept of the memory management is used:
14 *
15 * The kernel maintains two SGLs, the TX SGL and the RX SGL. The TX SGL is
16 * filled by user space with the data submitted via sendpage/sendmsg. Filling
17 * up the TX SGL does not cause a crypto operation -- the data will only be
18 * tracked by the kernel. Upon receipt of one recvmsg call, the caller must
19 * provide a buffer which is tracked with the RX SGL.
20 *
21 * During the processing of the recvmsg operation, the cipher request is
22 * allocated and prepared. As part of the recvmsg operation, the processed
23 * TX buffers are extracted from the TX SGL into a separate SGL.
24 *
25 * After the completion of the crypto operation, the RX SGL and the cipher
26 * request is released. The extracted TX SGL parts are released together with
27 * the RX SGL release.
Herbert Xu8ff59092010-10-19 21:31:55 +080028 */
29
30#include <crypto/scatterwalk.h>
31#include <crypto/skcipher.h>
32#include <crypto/if_alg.h>
33#include <linux/init.h>
34#include <linux/list.h>
35#include <linux/kernel.h>
36#include <linux/mm.h>
37#include <linux/module.h>
38#include <linux/net.h>
39#include <net/sock.h>
40
Herbert Xudd504582015-12-25 15:40:05 +080041struct skcipher_tfm {
42 struct crypto_skcipher *skcipher;
43 bool has_key;
44};
45
Ying Xue1b784142015-03-02 15:37:48 +080046static int skcipher_sendmsg(struct socket *sock, struct msghdr *msg,
47 size_t size)
Herbert Xu8ff59092010-10-19 21:31:55 +080048{
49 struct sock *sk = sock->sk;
50 struct alg_sock *ask = alg_sk(sk);
Herbert Xu6454c2b2016-02-03 21:39:26 +080051 struct sock *psk = ask->parent;
52 struct alg_sock *pask = alg_sk(psk);
Herbert Xu6454c2b2016-02-03 21:39:26 +080053 struct skcipher_tfm *skc = pask->private;
54 struct crypto_skcipher *tfm = skc->skcipher;
Herbert Xu0d96e4b2015-12-18 19:16:57 +080055 unsigned ivsize = crypto_skcipher_ivsize(tfm);
Herbert Xu8ff59092010-10-19 21:31:55 +080056
Stephan Mueller2d975912017-08-02 07:56:19 +020057 return af_alg_sendmsg(sock, msg, size, ivsize);
Tadeusz Struka5969992015-03-19 12:31:40 -070058}
59
Stephan Muellere8704562017-06-25 17:12:39 +020060static int _skcipher_recvmsg(struct socket *sock, struct msghdr *msg,
61 size_t ignored, int flags)
Tadeusz Struka5969992015-03-19 12:31:40 -070062{
63 struct sock *sk = sock->sk;
64 struct alg_sock *ask = alg_sk(sk);
Herbert Xuec69bbf2016-02-03 21:39:24 +080065 struct sock *psk = ask->parent;
66 struct alg_sock *pask = alg_sk(psk);
Stephan Mueller2d975912017-08-02 07:56:19 +020067 struct af_alg_ctx *ctx = ask->private;
Herbert Xuec69bbf2016-02-03 21:39:24 +080068 struct skcipher_tfm *skc = pask->private;
69 struct crypto_skcipher *tfm = skc->skcipher;
Stephan Muellere8704562017-06-25 17:12:39 +020070 unsigned int bs = crypto_skcipher_blocksize(tfm);
Stephan Mueller2d975912017-08-02 07:56:19 +020071 struct af_alg_async_req *areq;
Stephan Muellere8704562017-06-25 17:12:39 +020072 int err = 0;
73 size_t len = 0;
Herbert Xuec69bbf2016-02-03 21:39:24 +080074
Stephan Muellere8704562017-06-25 17:12:39 +020075 /* Allocate cipher request for current operation. */
Stephan Mueller2d975912017-08-02 07:56:19 +020076 areq = af_alg_alloc_areq(sk, sizeof(struct af_alg_async_req) +
77 crypto_skcipher_reqsize(tfm));
78 if (IS_ERR(areq))
79 return PTR_ERR(areq);
Herbert Xuec69bbf2016-02-03 21:39:24 +080080
Stephan Muellere8704562017-06-25 17:12:39 +020081 /* convert iovecs of output buffers into RX SGL */
Stephan Mueller2d975912017-08-02 07:56:19 +020082 err = af_alg_get_rsgl(sk, msg, flags, areq, -1, &len);
83 if (err)
84 goto free;
Tadeusz Struka5969992015-03-19 12:31:40 -070085
Stephan Muellere8704562017-06-25 17:12:39 +020086 /* Process only as much RX buffers for which we have TX data */
87 if (len > ctx->used)
88 len = ctx->used;
tadeusz.struk@intel.com033f46b2015-04-01 13:53:06 -070089
Stephan Muellere8704562017-06-25 17:12:39 +020090 /*
91 * If more buffers are to be expected to be processed, process only
92 * full block size buffers.
93 */
94 if (ctx->more || len < ctx->used)
95 len -= len % bs;
96
97 /*
98 * Create a per request TX SGL for this request which tracks the
99 * SG entries from the global TX SGL.
100 */
Stephan Mueller2d975912017-08-02 07:56:19 +0200101 areq->tsgl_entries = af_alg_count_tsgl(sk, len, 0);
Stephan Muellere8704562017-06-25 17:12:39 +0200102 if (!areq->tsgl_entries)
103 areq->tsgl_entries = 1;
104 areq->tsgl = sock_kmalloc(sk, sizeof(*areq->tsgl) * areq->tsgl_entries,
105 GFP_KERNEL);
106 if (!areq->tsgl) {
107 err = -ENOMEM;
108 goto free;
109 }
110 sg_init_table(areq->tsgl, areq->tsgl_entries);
Stephan Mueller2d975912017-08-02 07:56:19 +0200111 af_alg_pull_tsgl(sk, len, areq->tsgl, 0);
Stephan Muellere8704562017-06-25 17:12:39 +0200112
113 /* Initialize the crypto operation */
Stephan Mueller2d975912017-08-02 07:56:19 +0200114 skcipher_request_set_tfm(&areq->cra_u.skcipher_req, tfm);
115 skcipher_request_set_crypt(&areq->cra_u.skcipher_req, areq->tsgl,
116 areq->first_rsgl.sgl.sg, len, ctx->iv);
Stephan Muellere8704562017-06-25 17:12:39 +0200117
118 if (msg->msg_iocb && !is_sync_kiocb(msg->msg_iocb)) {
119 /* AIO operation */
120 areq->iocb = msg->msg_iocb;
Stephan Mueller2d975912017-08-02 07:56:19 +0200121 skcipher_request_set_callback(&areq->cra_u.skcipher_req,
Stephan Muellere8704562017-06-25 17:12:39 +0200122 CRYPTO_TFM_REQ_MAY_SLEEP,
Stephan Mueller2d975912017-08-02 07:56:19 +0200123 af_alg_async_cb, areq);
124 err = ctx->enc ?
125 crypto_skcipher_encrypt(&areq->cra_u.skcipher_req) :
126 crypto_skcipher_decrypt(&areq->cra_u.skcipher_req);
Stephan Muellere8704562017-06-25 17:12:39 +0200127 } else {
128 /* Synchronous operation */
Stephan Mueller2d975912017-08-02 07:56:19 +0200129 skcipher_request_set_callback(&areq->cra_u.skcipher_req,
Stephan Muellere8704562017-06-25 17:12:39 +0200130 CRYPTO_TFM_REQ_MAY_SLEEP |
131 CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef2c3f8b12017-10-18 08:00:39 +0100132 crypto_req_done, &ctx->wait);
133 err = crypto_wait_req(ctx->enc ?
Stephan Mueller2d975912017-08-02 07:56:19 +0200134 crypto_skcipher_encrypt(&areq->cra_u.skcipher_req) :
135 crypto_skcipher_decrypt(&areq->cra_u.skcipher_req),
Gilad Ben-Yossef2c3f8b12017-10-18 08:00:39 +0100136 &ctx->wait);
Stephan Muellere8704562017-06-25 17:12:39 +0200137 }
138
139 /* AIO operation in progress */
Tadeusz Struka5969992015-03-19 12:31:40 -0700140 if (err == -EINPROGRESS) {
Stephan Muellere8704562017-06-25 17:12:39 +0200141 sock_hold(sk);
Stephan Mueller2d975912017-08-02 07:56:19 +0200142
143 /* Remember output size that will be generated. */
144 areq->outlen = len;
145
Stephan Muellere8704562017-06-25 17:12:39 +0200146 return -EIOCBQUEUED;
Herbert Xu8ff59092010-10-19 21:31:55 +0800147 }
148
Stephan Muellere8704562017-06-25 17:12:39 +0200149free:
Stephan Mueller2d975912017-08-02 07:56:19 +0200150 af_alg_free_areq_sgls(areq);
151 sock_kfree_s(sk, areq, areq->areqlen);
Herbert Xu8ff59092010-10-19 21:31:55 +0800152
Stephan Muellere8704562017-06-25 17:12:39 +0200153 return err ? err : len;
Herbert Xu8ff59092010-10-19 21:31:55 +0800154}
155
Tadeusz Struka5969992015-03-19 12:31:40 -0700156static int skcipher_recvmsg(struct socket *sock, struct msghdr *msg,
157 size_t ignored, int flags)
158{
Stephan Muellere8704562017-06-25 17:12:39 +0200159 struct sock *sk = sock->sk;
160 int ret = 0;
161
162 lock_sock(sk);
163 while (msg_data_left(msg)) {
164 int err = _skcipher_recvmsg(sock, msg, ignored, flags);
165
166 /*
167 * This error covers -EIOCBQUEUED which implies that we can
168 * only handle one AIO request. If the caller wants to have
169 * multiple AIO requests in parallel, he must make multiple
170 * separate AIO calls.
Stephan Mueller5703c822017-07-30 14:31:18 +0200171 *
172 * Also return the error if no data has been processed so far.
Stephan Muellere8704562017-06-25 17:12:39 +0200173 */
174 if (err <= 0) {
Stephan Mueller5703c822017-07-30 14:31:18 +0200175 if (err == -EIOCBQUEUED || !ret)
Stephan Muellere8704562017-06-25 17:12:39 +0200176 ret = err;
177 goto out;
178 }
179
180 ret += err;
181 }
182
183out:
Stephan Mueller2d975912017-08-02 07:56:19 +0200184 af_alg_wmem_wakeup(sk);
Stephan Muellere8704562017-06-25 17:12:39 +0200185 release_sock(sk);
186 return ret;
Tadeusz Struka5969992015-03-19 12:31:40 -0700187}
Herbert Xu8ff59092010-10-19 21:31:55 +0800188
Herbert Xu8ff59092010-10-19 21:31:55 +0800189
190static struct proto_ops algif_skcipher_ops = {
191 .family = PF_ALG,
192
193 .connect = sock_no_connect,
194 .socketpair = sock_no_socketpair,
195 .getname = sock_no_getname,
196 .ioctl = sock_no_ioctl,
197 .listen = sock_no_listen,
198 .shutdown = sock_no_shutdown,
199 .getsockopt = sock_no_getsockopt,
200 .mmap = sock_no_mmap,
201 .bind = sock_no_bind,
202 .accept = sock_no_accept,
203 .setsockopt = sock_no_setsockopt,
204
205 .release = af_alg_release,
206 .sendmsg = skcipher_sendmsg,
Stephan Mueller2d975912017-08-02 07:56:19 +0200207 .sendpage = af_alg_sendpage,
Herbert Xu8ff59092010-10-19 21:31:55 +0800208 .recvmsg = skcipher_recvmsg,
Stephan Mueller2d975912017-08-02 07:56:19 +0200209 .poll = af_alg_poll,
Herbert Xu8ff59092010-10-19 21:31:55 +0800210};
211
Herbert Xua0fa2d02016-01-04 13:36:12 +0900212static int skcipher_check_key(struct socket *sock)
213{
Herbert Xu18227932016-01-15 22:02:20 +0800214 int err = 0;
Herbert Xua0fa2d02016-01-04 13:36:12 +0900215 struct sock *psk;
216 struct alg_sock *pask;
217 struct skcipher_tfm *tfm;
218 struct sock *sk = sock->sk;
219 struct alg_sock *ask = alg_sk(sk);
220
Herbert Xu18227932016-01-15 22:02:20 +0800221 lock_sock(sk);
Herbert Xua0fa2d02016-01-04 13:36:12 +0900222 if (ask->refcnt)
Herbert Xu18227932016-01-15 22:02:20 +0800223 goto unlock_child;
Herbert Xua0fa2d02016-01-04 13:36:12 +0900224
225 psk = ask->parent;
226 pask = alg_sk(ask->parent);
227 tfm = pask->private;
228
229 err = -ENOKEY;
Herbert Xu18227932016-01-15 22:02:20 +0800230 lock_sock_nested(psk, SINGLE_DEPTH_NESTING);
Herbert Xua0fa2d02016-01-04 13:36:12 +0900231 if (!tfm->has_key)
232 goto unlock;
233
234 if (!pask->refcnt++)
235 sock_hold(psk);
236
237 ask->refcnt = 1;
238 sock_put(psk);
239
240 err = 0;
241
242unlock:
243 release_sock(psk);
Herbert Xu18227932016-01-15 22:02:20 +0800244unlock_child:
245 release_sock(sk);
Herbert Xua0fa2d02016-01-04 13:36:12 +0900246
247 return err;
248}
249
250static int skcipher_sendmsg_nokey(struct socket *sock, struct msghdr *msg,
251 size_t size)
252{
253 int err;
254
255 err = skcipher_check_key(sock);
256 if (err)
257 return err;
258
259 return skcipher_sendmsg(sock, msg, size);
260}
261
262static ssize_t skcipher_sendpage_nokey(struct socket *sock, struct page *page,
263 int offset, size_t size, int flags)
264{
265 int err;
266
267 err = skcipher_check_key(sock);
268 if (err)
269 return err;
270
Stephan Mueller2d975912017-08-02 07:56:19 +0200271 return af_alg_sendpage(sock, page, offset, size, flags);
Herbert Xua0fa2d02016-01-04 13:36:12 +0900272}
273
274static int skcipher_recvmsg_nokey(struct socket *sock, struct msghdr *msg,
275 size_t ignored, int flags)
276{
277 int err;
278
279 err = skcipher_check_key(sock);
280 if (err)
281 return err;
282
283 return skcipher_recvmsg(sock, msg, ignored, flags);
284}
285
286static struct proto_ops algif_skcipher_ops_nokey = {
287 .family = PF_ALG,
288
289 .connect = sock_no_connect,
290 .socketpair = sock_no_socketpair,
291 .getname = sock_no_getname,
292 .ioctl = sock_no_ioctl,
293 .listen = sock_no_listen,
294 .shutdown = sock_no_shutdown,
295 .getsockopt = sock_no_getsockopt,
296 .mmap = sock_no_mmap,
297 .bind = sock_no_bind,
298 .accept = sock_no_accept,
299 .setsockopt = sock_no_setsockopt,
300
301 .release = af_alg_release,
302 .sendmsg = skcipher_sendmsg_nokey,
303 .sendpage = skcipher_sendpage_nokey,
304 .recvmsg = skcipher_recvmsg_nokey,
Stephan Mueller2d975912017-08-02 07:56:19 +0200305 .poll = af_alg_poll,
Herbert Xua0fa2d02016-01-04 13:36:12 +0900306};
307
Herbert Xu8ff59092010-10-19 21:31:55 +0800308static void *skcipher_bind(const char *name, u32 type, u32 mask)
309{
Herbert Xudd504582015-12-25 15:40:05 +0800310 struct skcipher_tfm *tfm;
311 struct crypto_skcipher *skcipher;
312
313 tfm = kzalloc(sizeof(*tfm), GFP_KERNEL);
314 if (!tfm)
315 return ERR_PTR(-ENOMEM);
316
317 skcipher = crypto_alloc_skcipher(name, type, mask);
318 if (IS_ERR(skcipher)) {
319 kfree(tfm);
320 return ERR_CAST(skcipher);
321 }
322
323 tfm->skcipher = skcipher;
324
325 return tfm;
Herbert Xu8ff59092010-10-19 21:31:55 +0800326}
327
328static void skcipher_release(void *private)
329{
Herbert Xudd504582015-12-25 15:40:05 +0800330 struct skcipher_tfm *tfm = private;
331
332 crypto_free_skcipher(tfm->skcipher);
333 kfree(tfm);
Herbert Xu8ff59092010-10-19 21:31:55 +0800334}
335
336static int skcipher_setkey(void *private, const u8 *key, unsigned int keylen)
337{
Herbert Xudd504582015-12-25 15:40:05 +0800338 struct skcipher_tfm *tfm = private;
339 int err;
340
341 err = crypto_skcipher_setkey(tfm->skcipher, key, keylen);
342 tfm->has_key = !err;
343
344 return err;
Herbert Xu8ff59092010-10-19 21:31:55 +0800345}
346
347static void skcipher_sock_destruct(struct sock *sk)
348{
349 struct alg_sock *ask = alg_sk(sk);
Stephan Mueller2d975912017-08-02 07:56:19 +0200350 struct af_alg_ctx *ctx = ask->private;
Stephan Muellere8704562017-06-25 17:12:39 +0200351 struct sock *psk = ask->parent;
352 struct alg_sock *pask = alg_sk(psk);
353 struct skcipher_tfm *skc = pask->private;
354 struct crypto_skcipher *tfm = skc->skcipher;
Herbert Xu8ff59092010-10-19 21:31:55 +0800355
Stephan Mueller2d975912017-08-02 07:56:19 +0200356 af_alg_pull_tsgl(sk, ctx->used, NULL, 0);
Herbert Xu0d96e4b2015-12-18 19:16:57 +0800357 sock_kzfree_s(sk, ctx->iv, crypto_skcipher_ivsize(tfm));
Herbert Xu8ff59092010-10-19 21:31:55 +0800358 sock_kfree_s(sk, ctx, ctx->len);
359 af_alg_release_parent(sk);
360}
361
Herbert Xud7b65ae2016-01-13 15:01:06 +0800362static int skcipher_accept_parent_nokey(void *private, struct sock *sk)
Herbert Xu8ff59092010-10-19 21:31:55 +0800363{
Stephan Mueller2d975912017-08-02 07:56:19 +0200364 struct af_alg_ctx *ctx;
Herbert Xu8ff59092010-10-19 21:31:55 +0800365 struct alg_sock *ask = alg_sk(sk);
Herbert Xudd504582015-12-25 15:40:05 +0800366 struct skcipher_tfm *tfm = private;
367 struct crypto_skcipher *skcipher = tfm->skcipher;
Stephan Muellere8704562017-06-25 17:12:39 +0200368 unsigned int len = sizeof(*ctx);
Herbert Xu8ff59092010-10-19 21:31:55 +0800369
370 ctx = sock_kmalloc(sk, len, GFP_KERNEL);
371 if (!ctx)
372 return -ENOMEM;
373
Herbert Xudd504582015-12-25 15:40:05 +0800374 ctx->iv = sock_kmalloc(sk, crypto_skcipher_ivsize(skcipher),
Herbert Xu8ff59092010-10-19 21:31:55 +0800375 GFP_KERNEL);
376 if (!ctx->iv) {
377 sock_kfree_s(sk, ctx, len);
378 return -ENOMEM;
379 }
380
Herbert Xudd504582015-12-25 15:40:05 +0800381 memset(ctx->iv, 0, crypto_skcipher_ivsize(skcipher));
Herbert Xu8ff59092010-10-19 21:31:55 +0800382
Stephan Muellere8704562017-06-25 17:12:39 +0200383 INIT_LIST_HEAD(&ctx->tsgl_list);
Herbert Xu8ff59092010-10-19 21:31:55 +0800384 ctx->len = len;
385 ctx->used = 0;
Stephan Muellere8704562017-06-25 17:12:39 +0200386 ctx->rcvused = 0;
Herbert Xu8ff59092010-10-19 21:31:55 +0800387 ctx->more = 0;
388 ctx->merge = 0;
389 ctx->enc = 0;
Gilad Ben-Yossef2c3f8b12017-10-18 08:00:39 +0100390 crypto_init_wait(&ctx->wait);
Herbert Xu8ff59092010-10-19 21:31:55 +0800391
392 ask->private = ctx;
393
Herbert Xu8ff59092010-10-19 21:31:55 +0800394 sk->sk_destruct = skcipher_sock_destruct;
395
396 return 0;
397}
398
Herbert Xua0fa2d02016-01-04 13:36:12 +0900399static int skcipher_accept_parent(void *private, struct sock *sk)
400{
401 struct skcipher_tfm *tfm = private;
402
Herbert Xu6e8d8ec2016-01-11 21:29:41 +0800403 if (!tfm->has_key && crypto_skcipher_has_setkey(tfm->skcipher))
Herbert Xua0fa2d02016-01-04 13:36:12 +0900404 return -ENOKEY;
405
Herbert Xud7b65ae2016-01-13 15:01:06 +0800406 return skcipher_accept_parent_nokey(private, sk);
Herbert Xua0fa2d02016-01-04 13:36:12 +0900407}
408
Herbert Xu8ff59092010-10-19 21:31:55 +0800409static const struct af_alg_type algif_type_skcipher = {
410 .bind = skcipher_bind,
411 .release = skcipher_release,
412 .setkey = skcipher_setkey,
413 .accept = skcipher_accept_parent,
Herbert Xua0fa2d02016-01-04 13:36:12 +0900414 .accept_nokey = skcipher_accept_parent_nokey,
Herbert Xu8ff59092010-10-19 21:31:55 +0800415 .ops = &algif_skcipher_ops,
Herbert Xua0fa2d02016-01-04 13:36:12 +0900416 .ops_nokey = &algif_skcipher_ops_nokey,
Herbert Xu8ff59092010-10-19 21:31:55 +0800417 .name = "skcipher",
418 .owner = THIS_MODULE
419};
420
421static int __init algif_skcipher_init(void)
422{
423 return af_alg_register_type(&algif_type_skcipher);
424}
425
426static void __exit algif_skcipher_exit(void)
427{
428 int err = af_alg_unregister_type(&algif_type_skcipher);
429 BUG_ON(err);
430}
431
432module_init(algif_skcipher_init);
433module_exit(algif_skcipher_exit);
434MODULE_LICENSE("GPL");