blob: e1ea18536a5f085c816c88bb28da029a5f3a1d3e [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Herbert Xu03c8efc2010-10-19 21:12:39 +08002/*
3 * af_alg: User-space algorithm interface
4 *
5 * This file provides the user-space API for algorithms.
6 *
7 * Copyright (c) 2010 Herbert Xu <herbert@gondor.apana.org.au>
Herbert Xu03c8efc2010-10-19 21:12:39 +08008 */
9
Arun Sharma600634972011-07-26 16:09:06 -070010#include <linux/atomic.h>
Herbert Xu03c8efc2010-10-19 21:12:39 +080011#include <crypto/if_alg.h>
12#include <linux/crypto.h>
13#include <linux/init.h>
14#include <linux/kernel.h>
15#include <linux/list.h>
16#include <linux/module.h>
17#include <linux/net.h>
18#include <linux/rwsem.h>
Herbert Xuc195d662020-08-27 17:14:36 +100019#include <linux/sched.h>
Stephan Mueller2d975912017-08-02 07:56:19 +020020#include <linux/sched/signal.h>
Milan Broz4c63f832014-07-29 18:41:09 +000021#include <linux/security.h>
Herbert Xu03c8efc2010-10-19 21:12:39 +080022
23struct alg_type_list {
24 const struct af_alg_type *type;
25 struct list_head list;
26};
27
Randy Dunlap06869522010-12-21 22:22:40 +110028static atomic_long_t alg_memory_allocated;
Herbert Xu03c8efc2010-10-19 21:12:39 +080029
30static struct proto alg_proto = {
31 .name = "ALG",
32 .owner = THIS_MODULE,
33 .memory_allocated = &alg_memory_allocated,
34 .obj_size = sizeof(struct alg_sock),
35};
36
37static LIST_HEAD(alg_types);
38static DECLARE_RWSEM(alg_types_sem);
39
40static const struct af_alg_type *alg_get_type(const char *name)
41{
42 const struct af_alg_type *type = ERR_PTR(-ENOENT);
43 struct alg_type_list *node;
44
45 down_read(&alg_types_sem);
46 list_for_each_entry(node, &alg_types, list) {
47 if (strcmp(node->type->name, name))
48 continue;
49
50 if (try_module_get(node->type->owner))
51 type = node->type;
52 break;
53 }
54 up_read(&alg_types_sem);
55
56 return type;
57}
58
59int af_alg_register_type(const struct af_alg_type *type)
60{
61 struct alg_type_list *node;
62 int err = -EEXIST;
63
64 down_write(&alg_types_sem);
65 list_for_each_entry(node, &alg_types, list) {
66 if (!strcmp(node->type->name, type->name))
67 goto unlock;
68 }
69
70 node = kmalloc(sizeof(*node), GFP_KERNEL);
71 err = -ENOMEM;
72 if (!node)
73 goto unlock;
74
75 type->ops->owner = THIS_MODULE;
Herbert Xu37766582016-01-04 13:35:18 +090076 if (type->ops_nokey)
77 type->ops_nokey->owner = THIS_MODULE;
Herbert Xu03c8efc2010-10-19 21:12:39 +080078 node->type = type;
79 list_add(&node->list, &alg_types);
80 err = 0;
81
82unlock:
83 up_write(&alg_types_sem);
84
85 return err;
86}
87EXPORT_SYMBOL_GPL(af_alg_register_type);
88
89int af_alg_unregister_type(const struct af_alg_type *type)
90{
91 struct alg_type_list *node;
92 int err = -ENOENT;
93
94 down_write(&alg_types_sem);
95 list_for_each_entry(node, &alg_types, list) {
96 if (strcmp(node->type->name, type->name))
97 continue;
98
99 list_del(&node->list);
100 kfree(node);
101 err = 0;
102 break;
103 }
104 up_write(&alg_types_sem);
105
106 return err;
107}
108EXPORT_SYMBOL_GPL(af_alg_unregister_type);
109
110static void alg_do_release(const struct af_alg_type *type, void *private)
111{
112 if (!type)
113 return;
114
115 type->release(private);
116 module_put(type->owner);
117}
118
119int af_alg_release(struct socket *sock)
120{
Mao Wenan9060cb72019-02-18 10:44:44 +0800121 if (sock->sk) {
Herbert Xu03c8efc2010-10-19 21:12:39 +0800122 sock_put(sock->sk);
Mao Wenan9060cb72019-02-18 10:44:44 +0800123 sock->sk = NULL;
124 }
Herbert Xu03c8efc2010-10-19 21:12:39 +0800125 return 0;
126}
127EXPORT_SYMBOL_GPL(af_alg_release);
128
Herbert Xuc840ac62015-12-30 11:47:53 +0800129void af_alg_release_parent(struct sock *sk)
130{
131 struct alg_sock *ask = alg_sk(sk);
Herbert Xu34c86f42020-06-08 16:48:43 +1000132 unsigned int nokey = atomic_read(&ask->nokey_refcnt);
Herbert Xuc840ac62015-12-30 11:47:53 +0800133
134 sk = ask->parent;
135 ask = alg_sk(sk);
136
Herbert Xu34c86f42020-06-08 16:48:43 +1000137 if (nokey)
138 atomic_dec(&ask->nokey_refcnt);
Herbert Xuc840ac62015-12-30 11:47:53 +0800139
Herbert Xu34c86f42020-06-08 16:48:43 +1000140 if (atomic_dec_and_test(&ask->refcnt))
Herbert Xuc840ac62015-12-30 11:47:53 +0800141 sock_put(sk);
142}
143EXPORT_SYMBOL_GPL(af_alg_release_parent);
144
Herbert Xu03c8efc2010-10-19 21:12:39 +0800145static int alg_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
146{
Stephan Muellerbb30b882018-01-02 08:55:25 +0100147 const u32 allowed = CRYPTO_ALG_KERN_DRIVER_ONLY;
Herbert Xu03c8efc2010-10-19 21:12:39 +0800148 struct sock *sk = sock->sk;
149 struct alg_sock *ask = alg_sk(sk);
Eric Biggers92eb6c32020-10-26 13:07:15 -0700150 struct sockaddr_alg_new *sa = (void *)uaddr;
Herbert Xu03c8efc2010-10-19 21:12:39 +0800151 const struct af_alg_type *type;
152 void *private;
Herbert Xuc840ac62015-12-30 11:47:53 +0800153 int err;
Herbert Xu03c8efc2010-10-19 21:12:39 +0800154
155 if (sock->state == SS_CONNECTED)
156 return -EINVAL;
157
Eric Biggers92eb6c32020-10-26 13:07:15 -0700158 BUILD_BUG_ON(offsetof(struct sockaddr_alg_new, salg_name) !=
159 offsetof(struct sockaddr_alg, salg_name));
160 BUILD_BUG_ON(offsetof(struct sockaddr_alg, salg_name) != sizeof(*sa));
161
162 if (addr_len < sizeof(*sa) + 1)
Herbert Xu03c8efc2010-10-19 21:12:39 +0800163 return -EINVAL;
164
Eric Dumazeta4668562018-04-07 13:42:36 -0700165 /* If caller uses non-allowed flag, return error. */
166 if ((sa->salg_feat & ~allowed) || (sa->salg_mask & ~allowed))
167 return -EINVAL;
168
Herbert Xu03c8efc2010-10-19 21:12:39 +0800169 sa->salg_type[sizeof(sa->salg_type) - 1] = 0;
Eric Biggers92eb6c32020-10-26 13:07:15 -0700170 sa->salg_name[addr_len - sizeof(*sa) - 1] = 0;
Herbert Xu03c8efc2010-10-19 21:12:39 +0800171
172 type = alg_get_type(sa->salg_type);
Masahiro Yamada45586c72020-02-03 17:37:45 -0800173 if (PTR_ERR(type) == -ENOENT) {
Herbert Xu03c8efc2010-10-19 21:12:39 +0800174 request_module("algif-%s", sa->salg_type);
175 type = alg_get_type(sa->salg_type);
176 }
177
178 if (IS_ERR(type))
179 return PTR_ERR(type);
180
Stephan Muellerbb30b882018-01-02 08:55:25 +0100181 private = type->bind(sa->salg_name, sa->salg_feat, sa->salg_mask);
Herbert Xu03c8efc2010-10-19 21:12:39 +0800182 if (IS_ERR(private)) {
183 module_put(type->owner);
184 return PTR_ERR(private);
185 }
186
Herbert Xuc840ac62015-12-30 11:47:53 +0800187 err = -EBUSY;
Herbert Xu03c8efc2010-10-19 21:12:39 +0800188 lock_sock(sk);
Herbert Xu34c86f42020-06-08 16:48:43 +1000189 if (atomic_read(&ask->refcnt))
Herbert Xuc840ac62015-12-30 11:47:53 +0800190 goto unlock;
Herbert Xu03c8efc2010-10-19 21:12:39 +0800191
192 swap(ask->type, type);
193 swap(ask->private, private);
194
Herbert Xuc840ac62015-12-30 11:47:53 +0800195 err = 0;
196
197unlock:
Herbert Xu03c8efc2010-10-19 21:12:39 +0800198 release_sock(sk);
199
200 alg_do_release(type, private);
201
Herbert Xuc840ac62015-12-30 11:47:53 +0800202 return err;
Herbert Xu03c8efc2010-10-19 21:12:39 +0800203}
204
Christoph Hellwiga7b75c52020-07-23 08:09:07 +0200205static int alg_setkey(struct sock *sk, sockptr_t ukey, unsigned int keylen)
Herbert Xu03c8efc2010-10-19 21:12:39 +0800206{
207 struct alg_sock *ask = alg_sk(sk);
208 const struct af_alg_type *type = ask->type;
209 u8 *key;
210 int err;
211
212 key = sock_kmalloc(sk, keylen, GFP_KERNEL);
213 if (!key)
214 return -ENOMEM;
215
216 err = -EFAULT;
Christoph Hellwiga7b75c52020-07-23 08:09:07 +0200217 if (copy_from_sockptr(key, ukey, keylen))
Herbert Xu03c8efc2010-10-19 21:12:39 +0800218 goto out;
219
220 err = type->setkey(ask->private, key, keylen);
221
222out:
Stephan Muellerad202c82014-12-23 09:34:03 +0100223 sock_kzfree_s(sk, key, keylen);
Herbert Xu03c8efc2010-10-19 21:12:39 +0800224
225 return err;
226}
227
228static int alg_setsockopt(struct socket *sock, int level, int optname,
Christoph Hellwiga7b75c52020-07-23 08:09:07 +0200229 sockptr_t optval, unsigned int optlen)
Herbert Xu03c8efc2010-10-19 21:12:39 +0800230{
231 struct sock *sk = sock->sk;
232 struct alg_sock *ask = alg_sk(sk);
233 const struct af_alg_type *type;
Herbert Xuc840ac62015-12-30 11:47:53 +0800234 int err = -EBUSY;
Herbert Xu03c8efc2010-10-19 21:12:39 +0800235
236 lock_sock(sk);
Herbert Xu34c86f42020-06-08 16:48:43 +1000237 if (atomic_read(&ask->refcnt) != atomic_read(&ask->nokey_refcnt))
Herbert Xuc840ac62015-12-30 11:47:53 +0800238 goto unlock;
239
Herbert Xu03c8efc2010-10-19 21:12:39 +0800240 type = ask->type;
241
Herbert Xuc840ac62015-12-30 11:47:53 +0800242 err = -ENOPROTOOPT;
Herbert Xu03c8efc2010-10-19 21:12:39 +0800243 if (level != SOL_ALG || !type)
244 goto unlock;
245
246 switch (optname) {
247 case ALG_SET_KEY:
248 if (sock->state == SS_CONNECTED)
249 goto unlock;
250 if (!type->setkey)
251 goto unlock;
252
253 err = alg_setkey(sk, optval, optlen);
Stephan Mueller25fb8632014-12-07 23:21:42 +0100254 break;
255 case ALG_SET_AEAD_AUTHSIZE:
256 if (sock->state == SS_CONNECTED)
257 goto unlock;
258 if (!type->setauthsize)
259 goto unlock;
260 err = type->setauthsize(ask->private, optlen);
Elena Petrova77ebdab2020-09-18 16:42:16 +0100261 break;
262 case ALG_SET_DRBG_ENTROPY:
263 if (sock->state == SS_CONNECTED)
264 goto unlock;
265 if (!type->setentropy)
266 goto unlock;
267
268 err = type->setentropy(ask->private, optval, optlen);
Herbert Xu03c8efc2010-10-19 21:12:39 +0800269 }
270
271unlock:
272 release_sock(sk);
273
274 return err;
275}
276
David Howellscdfbabf2017-03-09 08:09:05 +0000277int af_alg_accept(struct sock *sk, struct socket *newsock, bool kern)
Herbert Xu03c8efc2010-10-19 21:12:39 +0800278{
279 struct alg_sock *ask = alg_sk(sk);
280 const struct af_alg_type *type;
281 struct sock *sk2;
Herbert Xu6a935172016-01-13 14:59:03 +0800282 unsigned int nokey;
Herbert Xu03c8efc2010-10-19 21:12:39 +0800283 int err;
284
285 lock_sock(sk);
286 type = ask->type;
287
288 err = -EINVAL;
289 if (!type)
290 goto unlock;
291
David Howellscdfbabf2017-03-09 08:09:05 +0000292 sk2 = sk_alloc(sock_net(sk), PF_ALG, GFP_KERNEL, &alg_proto, kern);
Herbert Xu03c8efc2010-10-19 21:12:39 +0800293 err = -ENOMEM;
294 if (!sk2)
295 goto unlock;
296
297 sock_init_data(newsock, sk2);
Herbert Xu2acce6a2017-07-10 22:00:48 +0800298 security_sock_graft(sk2, newsock);
Milan Broz4c63f832014-07-29 18:41:09 +0000299 security_sk_clone(sk, sk2);
Herbert Xu03c8efc2010-10-19 21:12:39 +0800300
Elena Petrova77ebdab2020-09-18 16:42:16 +0100301 /*
302 * newsock->ops assigned here to allow type->accept call to override
303 * them when required.
304 */
305 newsock->ops = type->ops;
Herbert Xu03c8efc2010-10-19 21:12:39 +0800306 err = type->accept(ask->private, sk2);
Herbert Xu37766582016-01-04 13:35:18 +0900307
308 nokey = err == -ENOKEY;
309 if (nokey && type->accept_nokey)
310 err = type->accept_nokey(ask->private, sk2);
311
Herbert Xua3832922015-12-30 20:24:17 +0800312 if (err)
Herbert Xu03c8efc2010-10-19 21:12:39 +0800313 goto unlock;
Herbert Xu03c8efc2010-10-19 21:12:39 +0800314
Herbert Xu34c86f42020-06-08 16:48:43 +1000315 if (atomic_inc_return_relaxed(&ask->refcnt) == 1)
Herbert Xuc840ac62015-12-30 11:47:53 +0800316 sock_hold(sk);
Herbert Xu34c86f42020-06-08 16:48:43 +1000317 if (nokey) {
318 atomic_inc(&ask->nokey_refcnt);
319 atomic_set(&alg_sk(sk2)->nokey_refcnt, 1);
320 }
Herbert Xu03c8efc2010-10-19 21:12:39 +0800321 alg_sk(sk2)->parent = sk;
322 alg_sk(sk2)->type = type;
323
Herbert Xu03c8efc2010-10-19 21:12:39 +0800324 newsock->state = SS_CONNECTED;
325
Herbert Xu37766582016-01-04 13:35:18 +0900326 if (nokey)
327 newsock->ops = type->ops_nokey;
328
Herbert Xu03c8efc2010-10-19 21:12:39 +0800329 err = 0;
330
331unlock:
332 release_sock(sk);
333
334 return err;
335}
336EXPORT_SYMBOL_GPL(af_alg_accept);
337
David Howellscdfbabf2017-03-09 08:09:05 +0000338static int alg_accept(struct socket *sock, struct socket *newsock, int flags,
339 bool kern)
Herbert Xu03c8efc2010-10-19 21:12:39 +0800340{
David Howellscdfbabf2017-03-09 08:09:05 +0000341 return af_alg_accept(sock->sk, newsock, kern);
Herbert Xu03c8efc2010-10-19 21:12:39 +0800342}
343
344static const struct proto_ops alg_proto_ops = {
345 .family = PF_ALG,
346 .owner = THIS_MODULE,
347
348 .connect = sock_no_connect,
349 .socketpair = sock_no_socketpair,
350 .getname = sock_no_getname,
351 .ioctl = sock_no_ioctl,
352 .listen = sock_no_listen,
353 .shutdown = sock_no_shutdown,
Herbert Xu03c8efc2010-10-19 21:12:39 +0800354 .mmap = sock_no_mmap,
355 .sendpage = sock_no_sendpage,
356 .sendmsg = sock_no_sendmsg,
357 .recvmsg = sock_no_recvmsg,
Herbert Xu03c8efc2010-10-19 21:12:39 +0800358
359 .bind = alg_bind,
360 .release = af_alg_release,
361 .setsockopt = alg_setsockopt,
362 .accept = alg_accept,
363};
364
365static void alg_sock_destruct(struct sock *sk)
366{
367 struct alg_sock *ask = alg_sk(sk);
368
369 alg_do_release(ask->type, ask->private);
370}
371
372static int alg_create(struct net *net, struct socket *sock, int protocol,
373 int kern)
374{
375 struct sock *sk;
376 int err;
377
378 if (sock->type != SOCK_SEQPACKET)
379 return -ESOCKTNOSUPPORT;
380 if (protocol != 0)
381 return -EPROTONOSUPPORT;
382
383 err = -ENOMEM;
Eric W. Biederman11aa9c22015-05-08 21:09:13 -0500384 sk = sk_alloc(net, PF_ALG, GFP_KERNEL, &alg_proto, kern);
Herbert Xu03c8efc2010-10-19 21:12:39 +0800385 if (!sk)
386 goto out;
387
388 sock->ops = &alg_proto_ops;
389 sock_init_data(sock, sk);
390
Herbert Xu03c8efc2010-10-19 21:12:39 +0800391 sk->sk_destruct = alg_sock_destruct;
392
393 return 0;
394out:
395 return err;
396}
397
398static const struct net_proto_family alg_family = {
399 .family = PF_ALG,
400 .create = alg_create,
401 .owner = THIS_MODULE,
402};
403
Al Viro1d10eb22014-11-28 16:39:25 -0500404int af_alg_make_sg(struct af_alg_sgl *sgl, struct iov_iter *iter, int len)
Herbert Xu03c8efc2010-10-19 21:12:39 +0800405{
Al Viro1d10eb22014-11-28 16:39:25 -0500406 size_t off;
407 ssize_t n;
408 int npages, i;
Herbert Xu03c8efc2010-10-19 21:12:39 +0800409
Al Viro1d10eb22014-11-28 16:39:25 -0500410 n = iov_iter_get_pages(iter, sgl->pages, len, ALG_MAX_PAGES, &off);
411 if (n < 0)
412 return n;
Herbert Xu03c8efc2010-10-19 21:12:39 +0800413
Wu Bo7551a072021-05-25 16:15:19 +0800414 npages = DIV_ROUND_UP(off + n, PAGE_SIZE);
Herbert Xu03c8efc2010-10-19 21:12:39 +0800415 if (WARN_ON(npages == 0))
Al Viro1d10eb22014-11-28 16:39:25 -0500416 return -EINVAL;
Tadeusz Struk66db3732015-03-19 12:31:30 -0700417 /* Add one extra for linking */
418 sg_init_table(sgl->sg, npages + 1);
Herbert Xu03c8efc2010-10-19 21:12:39 +0800419
Al Viro1d10eb22014-11-28 16:39:25 -0500420 for (i = 0, len = n; i < npages; i++) {
Herbert Xu03c8efc2010-10-19 21:12:39 +0800421 int plen = min_t(int, len, PAGE_SIZE - off);
422
423 sg_set_page(sgl->sg + i, sgl->pages[i], plen, off);
424
425 off = 0;
426 len -= plen;
Herbert Xu03c8efc2010-10-19 21:12:39 +0800427 }
Tadeusz Struk66db3732015-03-19 12:31:30 -0700428 sg_mark_end(sgl->sg + npages - 1);
429 sgl->npages = npages;
430
Al Viro1d10eb22014-11-28 16:39:25 -0500431 return n;
Herbert Xu03c8efc2010-10-19 21:12:39 +0800432}
433EXPORT_SYMBOL_GPL(af_alg_make_sg);
434
Eric Biggers466e0752019-01-10 12:18:00 -0800435static void af_alg_link_sg(struct af_alg_sgl *sgl_prev,
436 struct af_alg_sgl *sgl_new)
Tadeusz Struk66db3732015-03-19 12:31:30 -0700437{
438 sg_unmark_end(sgl_prev->sg + sgl_prev->npages - 1);
439 sg_chain(sgl_prev->sg, sgl_prev->npages + 1, sgl_new->sg);
440}
Tadeusz Struk66db3732015-03-19 12:31:30 -0700441
Herbert Xu03c8efc2010-10-19 21:12:39 +0800442void af_alg_free_sg(struct af_alg_sgl *sgl)
443{
444 int i;
445
Tadeusz Struk66db3732015-03-19 12:31:30 -0700446 for (i = 0; i < sgl->npages; i++)
Herbert Xu03c8efc2010-10-19 21:12:39 +0800447 put_page(sgl->pages[i]);
Herbert Xu03c8efc2010-10-19 21:12:39 +0800448}
449EXPORT_SYMBOL_GPL(af_alg_free_sg);
450
Eric Biggers466e0752019-01-10 12:18:00 -0800451static int af_alg_cmsg_send(struct msghdr *msg, struct af_alg_control *con)
Herbert Xu03c8efc2010-10-19 21:12:39 +0800452{
453 struct cmsghdr *cmsg;
454
Gu Zhengf95b4142014-12-11 11:22:04 +0800455 for_each_cmsghdr(cmsg, msg) {
Herbert Xu03c8efc2010-10-19 21:12:39 +0800456 if (!CMSG_OK(msg, cmsg))
457 return -EINVAL;
458 if (cmsg->cmsg_level != SOL_ALG)
459 continue;
460
Joshua I. James267c4222014-12-05 14:38:40 +0900461 switch (cmsg->cmsg_type) {
Herbert Xu03c8efc2010-10-19 21:12:39 +0800462 case ALG_SET_IV:
463 if (cmsg->cmsg_len < CMSG_LEN(sizeof(*con->iv)))
464 return -EINVAL;
465 con->iv = (void *)CMSG_DATA(cmsg);
466 if (cmsg->cmsg_len < CMSG_LEN(con->iv->ivlen +
467 sizeof(*con->iv)))
468 return -EINVAL;
469 break;
470
471 case ALG_SET_OP:
472 if (cmsg->cmsg_len < CMSG_LEN(sizeof(u32)))
473 return -EINVAL;
474 con->op = *(u32 *)CMSG_DATA(cmsg);
475 break;
476
Stephan Muelleraf8e8072014-12-03 20:55:42 +0100477 case ALG_SET_AEAD_ASSOCLEN:
478 if (cmsg->cmsg_len < CMSG_LEN(sizeof(u32)))
479 return -EINVAL;
480 con->aead_assoclen = *(u32 *)CMSG_DATA(cmsg);
481 break;
482
Herbert Xu03c8efc2010-10-19 21:12:39 +0800483 default:
484 return -EINVAL;
485 }
486 }
487
488 return 0;
489}
Herbert Xu03c8efc2010-10-19 21:12:39 +0800490
Stephan Mueller2d975912017-08-02 07:56:19 +0200491/**
492 * af_alg_alloc_tsgl - allocate the TX SGL
493 *
Randy Dunlapb2a44112021-04-11 17:05:56 -0700494 * @sk: socket of connection to user space
495 * Return: 0 upon success, < 0 upon error
Stephan Mueller2d975912017-08-02 07:56:19 +0200496 */
Eric Biggers466e0752019-01-10 12:18:00 -0800497static int af_alg_alloc_tsgl(struct sock *sk)
Stephan Mueller2d975912017-08-02 07:56:19 +0200498{
499 struct alg_sock *ask = alg_sk(sk);
500 struct af_alg_ctx *ctx = ask->private;
501 struct af_alg_tsgl *sgl;
502 struct scatterlist *sg = NULL;
503
504 sgl = list_entry(ctx->tsgl_list.prev, struct af_alg_tsgl, list);
505 if (!list_empty(&ctx->tsgl_list))
506 sg = sgl->sg;
507
508 if (!sg || sgl->cur >= MAX_SGL_ENTS) {
Kees Cook0ed2dd02018-05-08 16:08:53 -0700509 sgl = sock_kmalloc(sk,
510 struct_size(sgl, sg, (MAX_SGL_ENTS + 1)),
Stephan Mueller2d975912017-08-02 07:56:19 +0200511 GFP_KERNEL);
512 if (!sgl)
513 return -ENOMEM;
514
515 sg_init_table(sgl->sg, MAX_SGL_ENTS + 1);
516 sgl->cur = 0;
517
518 if (sg)
519 sg_chain(sg, MAX_SGL_ENTS + 1, sgl->sg);
520
521 list_add_tail(&sgl->list, &ctx->tsgl_list);
522 }
523
524 return 0;
525}
Stephan Mueller2d975912017-08-02 07:56:19 +0200526
527/**
Randy Dunlapb2a44112021-04-11 17:05:56 -0700528 * af_alg_count_tsgl - Count number of TX SG entries
Stephan Mueller2d975912017-08-02 07:56:19 +0200529 *
530 * The counting starts from the beginning of the SGL to @bytes. If
Randy Dunlapb2a44112021-04-11 17:05:56 -0700531 * an @offset is provided, the counting of the SG entries starts at the @offset.
Stephan Mueller2d975912017-08-02 07:56:19 +0200532 *
Randy Dunlapb2a44112021-04-11 17:05:56 -0700533 * @sk: socket of connection to user space
534 * @bytes: Count the number of SG entries holding given number of bytes.
535 * @offset: Start the counting of SG entries from the given offset.
536 * Return: Number of TX SG entries found given the constraints
Stephan Mueller2d975912017-08-02 07:56:19 +0200537 */
538unsigned int af_alg_count_tsgl(struct sock *sk, size_t bytes, size_t offset)
539{
Eric Biggers7c39edf2019-01-10 12:18:01 -0800540 const struct alg_sock *ask = alg_sk(sk);
541 const struct af_alg_ctx *ctx = ask->private;
542 const struct af_alg_tsgl *sgl;
Stephan Mueller2d975912017-08-02 07:56:19 +0200543 unsigned int i;
544 unsigned int sgl_count = 0;
545
546 if (!bytes)
547 return 0;
548
Eric Biggers7c39edf2019-01-10 12:18:01 -0800549 list_for_each_entry(sgl, &ctx->tsgl_list, list) {
550 const struct scatterlist *sg = sgl->sg;
Stephan Mueller2d975912017-08-02 07:56:19 +0200551
552 for (i = 0; i < sgl->cur; i++) {
553 size_t bytes_count;
554
555 /* Skip offset */
556 if (offset >= sg[i].length) {
557 offset -= sg[i].length;
558 bytes -= sg[i].length;
559 continue;
560 }
561
562 bytes_count = sg[i].length - offset;
563
564 offset = 0;
565 sgl_count++;
566
567 /* If we have seen requested number of bytes, stop */
568 if (bytes_count >= bytes)
569 return sgl_count;
570
571 bytes -= bytes_count;
572 }
573 }
574
575 return sgl_count;
576}
577EXPORT_SYMBOL_GPL(af_alg_count_tsgl);
578
579/**
Randy Dunlapb2a44112021-04-11 17:05:56 -0700580 * af_alg_pull_tsgl - Release the specified buffers from TX SGL
Stephan Mueller2d975912017-08-02 07:56:19 +0200581 *
Randy Dunlapb2a44112021-04-11 17:05:56 -0700582 * If @dst is non-null, reassign the pages to @dst. The caller must release
Stephan Mueller2d975912017-08-02 07:56:19 +0200583 * the pages. If @dst_offset is given only reassign the pages to @dst starting
584 * at the @dst_offset (byte). The caller must ensure that @dst is large
585 * enough (e.g. by using af_alg_count_tsgl with the same offset).
586 *
Randy Dunlapb2a44112021-04-11 17:05:56 -0700587 * @sk: socket of connection to user space
588 * @used: Number of bytes to pull from TX SGL
589 * @dst: If non-NULL, buffer is reassigned to dst SGL instead of releasing. The
590 * caller must release the buffers in dst.
591 * @dst_offset: Reassign the TX SGL from given offset. All buffers before
592 * reaching the offset is released.
Stephan Mueller2d975912017-08-02 07:56:19 +0200593 */
594void af_alg_pull_tsgl(struct sock *sk, size_t used, struct scatterlist *dst,
595 size_t dst_offset)
596{
597 struct alg_sock *ask = alg_sk(sk);
598 struct af_alg_ctx *ctx = ask->private;
599 struct af_alg_tsgl *sgl;
600 struct scatterlist *sg;
Stephan Muellere1177652017-08-30 09:17:39 +0200601 unsigned int i, j = 0;
Stephan Mueller2d975912017-08-02 07:56:19 +0200602
603 while (!list_empty(&ctx->tsgl_list)) {
604 sgl = list_first_entry(&ctx->tsgl_list, struct af_alg_tsgl,
605 list);
606 sg = sgl->sg;
607
Stephan Muellere1177652017-08-30 09:17:39 +0200608 for (i = 0; i < sgl->cur; i++) {
Stephan Mueller2d975912017-08-02 07:56:19 +0200609 size_t plen = min_t(size_t, used, sg[i].length);
610 struct page *page = sg_page(sg + i);
611
612 if (!page)
613 continue;
614
615 /*
616 * Assumption: caller created af_alg_count_tsgl(len)
617 * SG entries in dst.
618 */
619 if (dst) {
620 if (dst_offset >= plen) {
621 /* discard page before offset */
622 dst_offset -= plen;
Stephan Mueller2d975912017-08-02 07:56:19 +0200623 } else {
624 /* reassign page to dst after offset */
Stephan Mueller2d45a7e2017-08-10 16:40:03 +0200625 get_page(page);
Stephan Mueller2d975912017-08-02 07:56:19 +0200626 sg_set_page(dst + j, page,
627 plen - dst_offset,
628 sg[i].offset + dst_offset);
629 dst_offset = 0;
630 j++;
631 }
632 }
633
634 sg[i].length -= plen;
635 sg[i].offset += plen;
636
637 used -= plen;
638 ctx->used -= plen;
639
640 if (sg[i].length)
641 return;
642
Stephan Mueller2d45a7e2017-08-10 16:40:03 +0200643 put_page(page);
Stephan Mueller2d975912017-08-02 07:56:19 +0200644 sg_assign_page(sg + i, NULL);
645 }
646
647 list_del(&sgl->list);
Gustavo A. R. Silva91e14842019-02-21 12:04:23 -0600648 sock_kfree_s(sk, sgl, struct_size(sgl, sg, MAX_SGL_ENTS + 1));
Stephan Mueller2d975912017-08-02 07:56:19 +0200649 }
650
651 if (!ctx->used)
652 ctx->merge = 0;
Herbert Xuf3c802a2020-05-30 00:23:49 +1000653 ctx->init = ctx->more;
Stephan Mueller2d975912017-08-02 07:56:19 +0200654}
655EXPORT_SYMBOL_GPL(af_alg_pull_tsgl);
656
657/**
658 * af_alg_free_areq_sgls - Release TX and RX SGLs of the request
659 *
Randy Dunlapb2a44112021-04-11 17:05:56 -0700660 * @areq: Request holding the TX and RX SGL
Stephan Mueller2d975912017-08-02 07:56:19 +0200661 */
Eric Biggers466e0752019-01-10 12:18:00 -0800662static void af_alg_free_areq_sgls(struct af_alg_async_req *areq)
Stephan Mueller2d975912017-08-02 07:56:19 +0200663{
664 struct sock *sk = areq->sk;
665 struct alg_sock *ask = alg_sk(sk);
666 struct af_alg_ctx *ctx = ask->private;
667 struct af_alg_rsgl *rsgl, *tmp;
668 struct scatterlist *tsgl;
669 struct scatterlist *sg;
670 unsigned int i;
671
672 list_for_each_entry_safe(rsgl, tmp, &areq->rsgl_list, list) {
Jonathan Cameronaf955bf2017-12-19 10:27:24 +0000673 atomic_sub(rsgl->sg_num_bytes, &ctx->rcvused);
Stephan Mueller2d975912017-08-02 07:56:19 +0200674 af_alg_free_sg(&rsgl->sgl);
675 list_del(&rsgl->list);
676 if (rsgl != &areq->first_rsgl)
677 sock_kfree_s(sk, rsgl, sizeof(*rsgl));
678 }
679
680 tsgl = areq->tsgl;
Eric Biggers887207e2017-11-28 00:46:24 -0800681 if (tsgl) {
682 for_each_sg(tsgl, sg, areq->tsgl_entries, i) {
683 if (!sg_page(sg))
684 continue;
685 put_page(sg_page(sg));
686 }
Stephan Mueller2d975912017-08-02 07:56:19 +0200687
Stephan Mueller2d975912017-08-02 07:56:19 +0200688 sock_kfree_s(sk, tsgl, areq->tsgl_entries * sizeof(*tsgl));
Eric Biggers887207e2017-11-28 00:46:24 -0800689 }
Stephan Mueller2d975912017-08-02 07:56:19 +0200690}
Stephan Mueller2d975912017-08-02 07:56:19 +0200691
692/**
693 * af_alg_wait_for_wmem - wait for availability of writable memory
694 *
Randy Dunlapb2a44112021-04-11 17:05:56 -0700695 * @sk: socket of connection to user space
696 * @flags: If MSG_DONTWAIT is set, then only report if function would sleep
697 * Return: 0 when writable memory is available, < 0 upon error
Stephan Mueller2d975912017-08-02 07:56:19 +0200698 */
Eric Biggers466e0752019-01-10 12:18:00 -0800699static int af_alg_wait_for_wmem(struct sock *sk, unsigned int flags)
Stephan Mueller2d975912017-08-02 07:56:19 +0200700{
701 DEFINE_WAIT_FUNC(wait, woken_wake_function);
702 int err = -ERESTARTSYS;
703 long timeout;
704
705 if (flags & MSG_DONTWAIT)
706 return -EAGAIN;
707
708 sk_set_bit(SOCKWQ_ASYNC_NOSPACE, sk);
709
710 add_wait_queue(sk_sleep(sk), &wait);
711 for (;;) {
712 if (signal_pending(current))
713 break;
714 timeout = MAX_SCHEDULE_TIMEOUT;
715 if (sk_wait_event(sk, &timeout, af_alg_writable(sk), &wait)) {
716 err = 0;
717 break;
718 }
719 }
720 remove_wait_queue(sk_sleep(sk), &wait);
721
722 return err;
723}
Stephan Mueller2d975912017-08-02 07:56:19 +0200724
725/**
726 * af_alg_wmem_wakeup - wakeup caller when writable memory is available
727 *
Randy Dunlapb2a44112021-04-11 17:05:56 -0700728 * @sk: socket of connection to user space
Stephan Mueller2d975912017-08-02 07:56:19 +0200729 */
730void af_alg_wmem_wakeup(struct sock *sk)
731{
732 struct socket_wq *wq;
733
734 if (!af_alg_writable(sk))
735 return;
736
737 rcu_read_lock();
738 wq = rcu_dereference(sk->sk_wq);
739 if (skwq_has_sleeper(wq))
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800740 wake_up_interruptible_sync_poll(&wq->wait, EPOLLIN |
741 EPOLLRDNORM |
742 EPOLLRDBAND);
Stephan Mueller2d975912017-08-02 07:56:19 +0200743 sk_wake_async(sk, SOCK_WAKE_WAITD, POLL_IN);
744 rcu_read_unlock();
745}
746EXPORT_SYMBOL_GPL(af_alg_wmem_wakeup);
747
748/**
749 * af_alg_wait_for_data - wait for availability of TX data
750 *
Randy Dunlapb2a44112021-04-11 17:05:56 -0700751 * @sk: socket of connection to user space
752 * @flags: If MSG_DONTWAIT is set, then only report if function would sleep
753 * @min: Set to minimum request size if partial requests are allowed.
754 * Return: 0 when writable memory is available, < 0 upon error
Stephan Mueller2d975912017-08-02 07:56:19 +0200755 */
Herbert Xuf3c802a2020-05-30 00:23:49 +1000756int af_alg_wait_for_data(struct sock *sk, unsigned flags, unsigned min)
Stephan Mueller2d975912017-08-02 07:56:19 +0200757{
758 DEFINE_WAIT_FUNC(wait, woken_wake_function);
759 struct alg_sock *ask = alg_sk(sk);
760 struct af_alg_ctx *ctx = ask->private;
761 long timeout;
762 int err = -ERESTARTSYS;
763
764 if (flags & MSG_DONTWAIT)
765 return -EAGAIN;
766
767 sk_set_bit(SOCKWQ_ASYNC_WAITDATA, sk);
768
769 add_wait_queue(sk_sleep(sk), &wait);
770 for (;;) {
771 if (signal_pending(current))
772 break;
773 timeout = MAX_SCHEDULE_TIMEOUT;
Herbert Xuf3c802a2020-05-30 00:23:49 +1000774 if (sk_wait_event(sk, &timeout,
775 ctx->init && (!ctx->more ||
776 (min && ctx->used >= min)),
Stephan Mueller2d975912017-08-02 07:56:19 +0200777 &wait)) {
778 err = 0;
779 break;
780 }
781 }
782 remove_wait_queue(sk_sleep(sk), &wait);
783
784 sk_clear_bit(SOCKWQ_ASYNC_WAITDATA, sk);
785
786 return err;
787}
788EXPORT_SYMBOL_GPL(af_alg_wait_for_data);
789
790/**
791 * af_alg_data_wakeup - wakeup caller when new data can be sent to kernel
792 *
Randy Dunlapb2a44112021-04-11 17:05:56 -0700793 * @sk: socket of connection to user space
Stephan Mueller2d975912017-08-02 07:56:19 +0200794 */
Eric Biggers466e0752019-01-10 12:18:00 -0800795static void af_alg_data_wakeup(struct sock *sk)
Stephan Mueller2d975912017-08-02 07:56:19 +0200796{
797 struct alg_sock *ask = alg_sk(sk);
798 struct af_alg_ctx *ctx = ask->private;
799 struct socket_wq *wq;
800
801 if (!ctx->used)
802 return;
803
804 rcu_read_lock();
805 wq = rcu_dereference(sk->sk_wq);
806 if (skwq_has_sleeper(wq))
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800807 wake_up_interruptible_sync_poll(&wq->wait, EPOLLOUT |
808 EPOLLRDNORM |
809 EPOLLRDBAND);
Stephan Mueller2d975912017-08-02 07:56:19 +0200810 sk_wake_async(sk, SOCK_WAKE_SPACE, POLL_OUT);
811 rcu_read_unlock();
812}
Stephan Mueller2d975912017-08-02 07:56:19 +0200813
814/**
815 * af_alg_sendmsg - implementation of sendmsg system call handler
816 *
817 * The sendmsg system call handler obtains the user data and stores it
818 * in ctx->tsgl_list. This implies allocation of the required numbers of
819 * struct af_alg_tsgl.
820 *
821 * In addition, the ctx is filled with the information sent via CMSG.
822 *
Randy Dunlapb2a44112021-04-11 17:05:56 -0700823 * @sock: socket of connection to user space
824 * @msg: message from user space
825 * @size: size of message from user space
826 * @ivsize: the size of the IV for the cipher operation to verify that the
Stephan Mueller2d975912017-08-02 07:56:19 +0200827 * user-space-provided IV has the right size
Randy Dunlapb2a44112021-04-11 17:05:56 -0700828 * Return: the number of copied data upon success, < 0 upon error
Stephan Mueller2d975912017-08-02 07:56:19 +0200829 */
830int af_alg_sendmsg(struct socket *sock, struct msghdr *msg, size_t size,
831 unsigned int ivsize)
832{
833 struct sock *sk = sock->sk;
834 struct alg_sock *ask = alg_sk(sk);
835 struct af_alg_ctx *ctx = ask->private;
836 struct af_alg_tsgl *sgl;
837 struct af_alg_control con = {};
838 long copied = 0;
Lothar Rubuschfcb90d52020-03-20 11:36:31 +0000839 bool enc = false;
840 bool init = false;
Stephan Mueller2d975912017-08-02 07:56:19 +0200841 int err = 0;
842
843 if (msg->msg_controllen) {
844 err = af_alg_cmsg_send(msg, &con);
845 if (err)
846 return err;
847
Lothar Rubuschfcb90d52020-03-20 11:36:31 +0000848 init = true;
Stephan Mueller2d975912017-08-02 07:56:19 +0200849 switch (con.op) {
850 case ALG_OP_ENCRYPT:
Lothar Rubuschfcb90d52020-03-20 11:36:31 +0000851 enc = true;
Stephan Mueller2d975912017-08-02 07:56:19 +0200852 break;
853 case ALG_OP_DECRYPT:
Lothar Rubuschfcb90d52020-03-20 11:36:31 +0000854 enc = false;
Stephan Mueller2d975912017-08-02 07:56:19 +0200855 break;
856 default:
857 return -EINVAL;
858 }
859
860 if (con.iv && con.iv->ivlen != ivsize)
861 return -EINVAL;
862 }
863
864 lock_sock(sk);
Herbert Xuc195d662020-08-27 17:14:36 +1000865 if (ctx->init && !ctx->more) {
866 if (ctx->used) {
867 err = -EINVAL;
868 goto unlock;
869 }
870
871 pr_info_once(
872 "%s sent an empty control message without MSG_MORE.\n",
873 current->comm);
Stephan Mueller2d975912017-08-02 07:56:19 +0200874 }
Herbert Xu662bb52f2020-07-02 13:32:21 +1000875 ctx->init = true;
Stephan Mueller2d975912017-08-02 07:56:19 +0200876
877 if (init) {
878 ctx->enc = enc;
879 if (con.iv)
880 memcpy(ctx->iv, con.iv->iv, ivsize);
881
882 ctx->aead_assoclen = con.aead_assoclen;
883 }
884
885 while (size) {
886 struct scatterlist *sg;
887 size_t len = size;
888 size_t plen;
889
890 /* use the existing memory in an allocated page */
891 if (ctx->merge) {
892 sgl = list_entry(ctx->tsgl_list.prev,
893 struct af_alg_tsgl, list);
894 sg = sgl->sg + sgl->cur - 1;
895 len = min_t(size_t, len,
896 PAGE_SIZE - sg->offset - sg->length);
897
898 err = memcpy_from_msg(page_address(sg_page(sg)) +
899 sg->offset + sg->length,
900 msg, len);
901 if (err)
902 goto unlock;
903
904 sg->length += len;
905 ctx->merge = (sg->offset + sg->length) &
906 (PAGE_SIZE - 1);
907
908 ctx->used += len;
909 copied += len;
910 size -= len;
911 continue;
912 }
913
914 if (!af_alg_writable(sk)) {
915 err = af_alg_wait_for_wmem(sk, msg->msg_flags);
916 if (err)
917 goto unlock;
918 }
919
920 /* allocate a new page */
921 len = min_t(unsigned long, len, af_alg_sndbuf(sk));
922
923 err = af_alg_alloc_tsgl(sk);
924 if (err)
925 goto unlock;
926
927 sgl = list_entry(ctx->tsgl_list.prev, struct af_alg_tsgl,
928 list);
929 sg = sgl->sg;
930 if (sgl->cur)
931 sg_unmark_end(sg + sgl->cur - 1);
932
933 do {
Jiasheng Jiang5f21d7d2021-12-31 09:40:36 +0800934 struct page *pg;
Stephan Mueller2d975912017-08-02 07:56:19 +0200935 unsigned int i = sgl->cur;
936
937 plen = min_t(size_t, len, PAGE_SIZE);
938
Jiasheng Jiang5f21d7d2021-12-31 09:40:36 +0800939 pg = alloc_page(GFP_KERNEL);
940 if (!pg) {
Stephan Mueller2d975912017-08-02 07:56:19 +0200941 err = -ENOMEM;
942 goto unlock;
943 }
944
Jiasheng Jiang5f21d7d2021-12-31 09:40:36 +0800945 sg_assign_page(sg + i, pg);
946
Stephan Mueller2d975912017-08-02 07:56:19 +0200947 err = memcpy_from_msg(page_address(sg_page(sg + i)),
948 msg, plen);
949 if (err) {
950 __free_page(sg_page(sg + i));
951 sg_assign_page(sg + i, NULL);
952 goto unlock;
953 }
954
955 sg[i].length = plen;
956 len -= plen;
957 ctx->used += plen;
958 copied += plen;
959 size -= plen;
960 sgl->cur++;
961 } while (len && sgl->cur < MAX_SGL_ENTS);
962
963 if (!size)
964 sg_mark_end(sg + sgl->cur - 1);
965
966 ctx->merge = plen & (PAGE_SIZE - 1);
967 }
968
969 err = 0;
970
971 ctx->more = msg->msg_flags & MSG_MORE;
972
973unlock:
974 af_alg_data_wakeup(sk);
975 release_sock(sk);
976
977 return copied ?: err;
978}
979EXPORT_SYMBOL_GPL(af_alg_sendmsg);
980
981/**
982 * af_alg_sendpage - sendpage system call handler
Randy Dunlapb2a44112021-04-11 17:05:56 -0700983 * @sock: socket of connection to user space to write to
984 * @page: data to send
985 * @offset: offset into page to begin sending
986 * @size: length of data
987 * @flags: message send/receive flags
Stephan Mueller2d975912017-08-02 07:56:19 +0200988 *
989 * This is a generic implementation of sendpage to fill ctx->tsgl_list.
990 */
991ssize_t af_alg_sendpage(struct socket *sock, struct page *page,
992 int offset, size_t size, int flags)
993{
994 struct sock *sk = sock->sk;
995 struct alg_sock *ask = alg_sk(sk);
996 struct af_alg_ctx *ctx = ask->private;
997 struct af_alg_tsgl *sgl;
998 int err = -EINVAL;
999
1000 if (flags & MSG_SENDPAGE_NOTLAST)
1001 flags |= MSG_MORE;
1002
1003 lock_sock(sk);
1004 if (!ctx->more && ctx->used)
1005 goto unlock;
1006
1007 if (!size)
1008 goto done;
1009
1010 if (!af_alg_writable(sk)) {
1011 err = af_alg_wait_for_wmem(sk, flags);
1012 if (err)
1013 goto unlock;
1014 }
1015
1016 err = af_alg_alloc_tsgl(sk);
1017 if (err)
1018 goto unlock;
1019
1020 ctx->merge = 0;
1021 sgl = list_entry(ctx->tsgl_list.prev, struct af_alg_tsgl, list);
1022
1023 if (sgl->cur)
1024 sg_unmark_end(sgl->sg + sgl->cur - 1);
1025
1026 sg_mark_end(sgl->sg + sgl->cur);
1027
1028 get_page(page);
1029 sg_set_page(sgl->sg + sgl->cur, page, size, offset);
1030 sgl->cur++;
1031 ctx->used += size;
1032
1033done:
1034 ctx->more = flags & MSG_MORE;
1035
1036unlock:
1037 af_alg_data_wakeup(sk);
1038 release_sock(sk);
1039
1040 return err ?: size;
1041}
1042EXPORT_SYMBOL_GPL(af_alg_sendpage);
1043
1044/**
Stephan Mueller7d2c3f52017-11-10 13:20:55 +01001045 * af_alg_free_resources - release resources required for crypto request
Randy Dunlapb2a44112021-04-11 17:05:56 -07001046 * @areq: Request holding the TX and RX SGL
Stephan Mueller7d2c3f52017-11-10 13:20:55 +01001047 */
1048void af_alg_free_resources(struct af_alg_async_req *areq)
1049{
1050 struct sock *sk = areq->sk;
1051
1052 af_alg_free_areq_sgls(areq);
1053 sock_kfree_s(sk, areq, areq->areqlen);
1054}
1055EXPORT_SYMBOL_GPL(af_alg_free_resources);
1056
1057/**
Stephan Mueller2d975912017-08-02 07:56:19 +02001058 * af_alg_async_cb - AIO callback handler
Randy Dunlapb2a44112021-04-11 17:05:56 -07001059 * @_req: async request info
1060 * @err: if non-zero, error result to be returned via ki_complete();
1061 * otherwise return the AIO output length via ki_complete().
Stephan Mueller2d975912017-08-02 07:56:19 +02001062 *
1063 * This handler cleans up the struct af_alg_async_req upon completion of the
1064 * AIO operation.
1065 *
1066 * The number of bytes to be generated with the AIO operation must be set
1067 * in areq->outlen before the AIO callback handler is invoked.
1068 */
1069void af_alg_async_cb(struct crypto_async_request *_req, int err)
1070{
1071 struct af_alg_async_req *areq = _req->data;
1072 struct sock *sk = areq->sk;
1073 struct kiocb *iocb = areq->iocb;
1074 unsigned int resultlen;
1075
Stephan Mueller2d975912017-08-02 07:56:19 +02001076 /* Buffer size written by crypto operation. */
1077 resultlen = areq->outlen;
1078
Stephan Mueller7d2c3f52017-11-10 13:20:55 +01001079 af_alg_free_resources(areq);
1080 sock_put(sk);
Stephan Mueller2d975912017-08-02 07:56:19 +02001081
Jens Axboe6b19b762021-10-21 09:22:35 -06001082 iocb->ki_complete(iocb, err ? err : (int)resultlen);
Stephan Mueller2d975912017-08-02 07:56:19 +02001083}
1084EXPORT_SYMBOL_GPL(af_alg_async_cb);
1085
Linus Torvaldsa11e1d42018-06-28 09:43:44 -07001086/**
1087 * af_alg_poll - poll system call handler
Randy Dunlapb2a44112021-04-11 17:05:56 -07001088 * @file: file pointer
1089 * @sock: socket to poll
1090 * @wait: poll_table
Linus Torvaldsa11e1d42018-06-28 09:43:44 -07001091 */
1092__poll_t af_alg_poll(struct file *file, struct socket *sock,
1093 poll_table *wait)
Stephan Mueller2d975912017-08-02 07:56:19 +02001094{
1095 struct sock *sk = sock->sk;
1096 struct alg_sock *ask = alg_sk(sk);
1097 struct af_alg_ctx *ctx = ask->private;
Linus Torvaldsa11e1d42018-06-28 09:43:44 -07001098 __poll_t mask;
1099
Karsten Graul89ab0662018-10-23 13:40:39 +02001100 sock_poll_wait(file, sock, wait);
Linus Torvaldsa11e1d42018-06-28 09:43:44 -07001101 mask = 0;
Stephan Mueller2d975912017-08-02 07:56:19 +02001102
1103 if (!ctx->more || ctx->used)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001104 mask |= EPOLLIN | EPOLLRDNORM;
Stephan Mueller2d975912017-08-02 07:56:19 +02001105
1106 if (af_alg_writable(sk))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001107 mask |= EPOLLOUT | EPOLLWRNORM | EPOLLWRBAND;
Stephan Mueller2d975912017-08-02 07:56:19 +02001108
1109 return mask;
1110}
Linus Torvaldsa11e1d42018-06-28 09:43:44 -07001111EXPORT_SYMBOL_GPL(af_alg_poll);
Stephan Mueller2d975912017-08-02 07:56:19 +02001112
1113/**
1114 * af_alg_alloc_areq - allocate struct af_alg_async_req
1115 *
Randy Dunlapb2a44112021-04-11 17:05:56 -07001116 * @sk: socket of connection to user space
1117 * @areqlen: size of struct af_alg_async_req + crypto_*_reqsize
1118 * Return: allocated data structure or ERR_PTR upon error
Stephan Mueller2d975912017-08-02 07:56:19 +02001119 */
1120struct af_alg_async_req *af_alg_alloc_areq(struct sock *sk,
1121 unsigned int areqlen)
1122{
1123 struct af_alg_async_req *areq = sock_kmalloc(sk, areqlen, GFP_KERNEL);
1124
1125 if (unlikely(!areq))
1126 return ERR_PTR(-ENOMEM);
1127
1128 areq->areqlen = areqlen;
1129 areq->sk = sk;
1130 areq->last_rsgl = NULL;
1131 INIT_LIST_HEAD(&areq->rsgl_list);
1132 areq->tsgl = NULL;
1133 areq->tsgl_entries = 0;
1134
1135 return areq;
1136}
1137EXPORT_SYMBOL_GPL(af_alg_alloc_areq);
1138
1139/**
1140 * af_alg_get_rsgl - create the RX SGL for the output data from the crypto
1141 * operation
1142 *
Randy Dunlapb2a44112021-04-11 17:05:56 -07001143 * @sk: socket of connection to user space
1144 * @msg: user space message
1145 * @flags: flags used to invoke recvmsg with
1146 * @areq: instance of the cryptographic request that will hold the RX SGL
1147 * @maxsize: maximum number of bytes to be pulled from user space
1148 * @outlen: number of bytes in the RX SGL
1149 * Return: 0 on success, < 0 upon error
Stephan Mueller2d975912017-08-02 07:56:19 +02001150 */
1151int af_alg_get_rsgl(struct sock *sk, struct msghdr *msg, int flags,
1152 struct af_alg_async_req *areq, size_t maxsize,
1153 size_t *outlen)
1154{
1155 struct alg_sock *ask = alg_sk(sk);
1156 struct af_alg_ctx *ctx = ask->private;
1157 size_t len = 0;
1158
1159 while (maxsize > len && msg_data_left(msg)) {
1160 struct af_alg_rsgl *rsgl;
1161 size_t seglen;
1162 int err;
1163
1164 /* limit the amount of readable buffers */
1165 if (!af_alg_readable(sk))
1166 break;
1167
Stephan Mueller2d975912017-08-02 07:56:19 +02001168 seglen = min_t(size_t, (maxsize - len),
1169 msg_data_left(msg));
1170
1171 if (list_empty(&areq->rsgl_list)) {
1172 rsgl = &areq->first_rsgl;
1173 } else {
1174 rsgl = sock_kmalloc(sk, sizeof(*rsgl), GFP_KERNEL);
1175 if (unlikely(!rsgl))
1176 return -ENOMEM;
1177 }
1178
1179 rsgl->sgl.npages = 0;
1180 list_add_tail(&rsgl->list, &areq->rsgl_list);
1181
1182 /* make one iovec available as scatterlist */
1183 err = af_alg_make_sg(&rsgl->sgl, &msg->msg_iter, seglen);
Stephan Mueller2546da92018-07-07 20:41:47 +02001184 if (err < 0) {
1185 rsgl->sg_num_bytes = 0;
Stephan Mueller2d975912017-08-02 07:56:19 +02001186 return err;
Stephan Mueller2546da92018-07-07 20:41:47 +02001187 }
Stephan Mueller2d975912017-08-02 07:56:19 +02001188
1189 /* chain the new scatterlist with previous one */
1190 if (areq->last_rsgl)
1191 af_alg_link_sg(&areq->last_rsgl->sgl, &rsgl->sgl);
1192
1193 areq->last_rsgl = rsgl;
1194 len += err;
Jonathan Cameronaf955bf2017-12-19 10:27:24 +00001195 atomic_add(err, &ctx->rcvused);
Stephan Mueller2d975912017-08-02 07:56:19 +02001196 rsgl->sg_num_bytes = err;
1197 iov_iter_advance(&msg->msg_iter, err);
1198 }
1199
1200 *outlen = len;
1201 return 0;
1202}
1203EXPORT_SYMBOL_GPL(af_alg_get_rsgl);
1204
Herbert Xu03c8efc2010-10-19 21:12:39 +08001205static int __init af_alg_init(void)
1206{
1207 int err = proto_register(&alg_proto, 0);
1208
1209 if (err)
1210 goto out;
1211
1212 err = sock_register(&alg_family);
1213 if (err != 0)
1214 goto out_unregister_proto;
1215
1216out:
1217 return err;
1218
1219out_unregister_proto:
1220 proto_unregister(&alg_proto);
1221 goto out;
1222}
1223
1224static void __exit af_alg_exit(void)
1225{
1226 sock_unregister(PF_ALG);
1227 proto_unregister(&alg_proto);
1228}
1229
1230module_init(af_alg_init);
1231module_exit(af_alg_exit);
1232MODULE_LICENSE("GPL");
1233MODULE_ALIAS_NETPROTO(AF_ALG);