USB: serial: qcserial: add EM7305 QDL product ID
[linux/fpc-iii.git] / crypto / af_alg.c
blob28fc323e3fe3042bb169e29ed9a1024ef7c4c0c8
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * af_alg: User-space algorithm interface
5 * This file provides the user-space API for algorithms.
7 * Copyright (c) 2010 Herbert Xu <herbert@gondor.apana.org.au>
8 */
10 #include <linux/atomic.h>
11 #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>
19 #include <linux/sched/signal.h>
20 #include <linux/security.h>
22 struct alg_type_list {
23 const struct af_alg_type *type;
24 struct list_head list;
27 static atomic_long_t alg_memory_allocated;
29 static struct proto alg_proto = {
30 .name = "ALG",
31 .owner = THIS_MODULE,
32 .memory_allocated = &alg_memory_allocated,
33 .obj_size = sizeof(struct alg_sock),
36 static LIST_HEAD(alg_types);
37 static DECLARE_RWSEM(alg_types_sem);
39 static const struct af_alg_type *alg_get_type(const char *name)
41 const struct af_alg_type *type = ERR_PTR(-ENOENT);
42 struct alg_type_list *node;
44 down_read(&alg_types_sem);
45 list_for_each_entry(node, &alg_types, list) {
46 if (strcmp(node->type->name, name))
47 continue;
49 if (try_module_get(node->type->owner))
50 type = node->type;
51 break;
53 up_read(&alg_types_sem);
55 return type;
58 int af_alg_register_type(const struct af_alg_type *type)
60 struct alg_type_list *node;
61 int err = -EEXIST;
63 down_write(&alg_types_sem);
64 list_for_each_entry(node, &alg_types, list) {
65 if (!strcmp(node->type->name, type->name))
66 goto unlock;
69 node = kmalloc(sizeof(*node), GFP_KERNEL);
70 err = -ENOMEM;
71 if (!node)
72 goto unlock;
74 type->ops->owner = THIS_MODULE;
75 if (type->ops_nokey)
76 type->ops_nokey->owner = THIS_MODULE;
77 node->type = type;
78 list_add(&node->list, &alg_types);
79 err = 0;
81 unlock:
82 up_write(&alg_types_sem);
84 return err;
86 EXPORT_SYMBOL_GPL(af_alg_register_type);
88 int af_alg_unregister_type(const struct af_alg_type *type)
90 struct alg_type_list *node;
91 int err = -ENOENT;
93 down_write(&alg_types_sem);
94 list_for_each_entry(node, &alg_types, list) {
95 if (strcmp(node->type->name, type->name))
96 continue;
98 list_del(&node->list);
99 kfree(node);
100 err = 0;
101 break;
103 up_write(&alg_types_sem);
105 return err;
107 EXPORT_SYMBOL_GPL(af_alg_unregister_type);
109 static void alg_do_release(const struct af_alg_type *type, void *private)
111 if (!type)
112 return;
114 type->release(private);
115 module_put(type->owner);
118 int af_alg_release(struct socket *sock)
120 if (sock->sk) {
121 sock_put(sock->sk);
122 sock->sk = NULL;
124 return 0;
126 EXPORT_SYMBOL_GPL(af_alg_release);
128 void af_alg_release_parent(struct sock *sk)
130 struct alg_sock *ask = alg_sk(sk);
131 unsigned int nokey = atomic_read(&ask->nokey_refcnt);
133 sk = ask->parent;
134 ask = alg_sk(sk);
136 if (nokey)
137 atomic_dec(&ask->nokey_refcnt);
139 if (atomic_dec_and_test(&ask->refcnt))
140 sock_put(sk);
142 EXPORT_SYMBOL_GPL(af_alg_release_parent);
144 static int alg_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
146 const u32 allowed = CRYPTO_ALG_KERN_DRIVER_ONLY;
147 struct sock *sk = sock->sk;
148 struct alg_sock *ask = alg_sk(sk);
149 struct sockaddr_alg *sa = (void *)uaddr;
150 const struct af_alg_type *type;
151 void *private;
152 int err;
154 if (sock->state == SS_CONNECTED)
155 return -EINVAL;
157 if (addr_len < sizeof(*sa))
158 return -EINVAL;
160 /* If caller uses non-allowed flag, return error. */
161 if ((sa->salg_feat & ~allowed) || (sa->salg_mask & ~allowed))
162 return -EINVAL;
164 sa->salg_type[sizeof(sa->salg_type) - 1] = 0;
165 sa->salg_name[sizeof(sa->salg_name) + addr_len - sizeof(*sa) - 1] = 0;
167 type = alg_get_type(sa->salg_type);
168 if (PTR_ERR(type) == -ENOENT) {
169 request_module("algif-%s", sa->salg_type);
170 type = alg_get_type(sa->salg_type);
173 if (IS_ERR(type))
174 return PTR_ERR(type);
176 private = type->bind(sa->salg_name, sa->salg_feat, sa->salg_mask);
177 if (IS_ERR(private)) {
178 module_put(type->owner);
179 return PTR_ERR(private);
182 err = -EBUSY;
183 lock_sock(sk);
184 if (atomic_read(&ask->refcnt))
185 goto unlock;
187 swap(ask->type, type);
188 swap(ask->private, private);
190 err = 0;
192 unlock:
193 release_sock(sk);
195 alg_do_release(type, private);
197 return err;
200 static int alg_setkey(struct sock *sk, char __user *ukey,
201 unsigned int keylen)
203 struct alg_sock *ask = alg_sk(sk);
204 const struct af_alg_type *type = ask->type;
205 u8 *key;
206 int err;
208 key = sock_kmalloc(sk, keylen, GFP_KERNEL);
209 if (!key)
210 return -ENOMEM;
212 err = -EFAULT;
213 if (copy_from_user(key, ukey, keylen))
214 goto out;
216 err = type->setkey(ask->private, key, keylen);
218 out:
219 sock_kzfree_s(sk, key, keylen);
221 return err;
224 static int alg_setsockopt(struct socket *sock, int level, int optname,
225 char __user *optval, unsigned int optlen)
227 struct sock *sk = sock->sk;
228 struct alg_sock *ask = alg_sk(sk);
229 const struct af_alg_type *type;
230 int err = -EBUSY;
232 lock_sock(sk);
233 if (atomic_read(&ask->refcnt) != atomic_read(&ask->nokey_refcnt))
234 goto unlock;
236 type = ask->type;
238 err = -ENOPROTOOPT;
239 if (level != SOL_ALG || !type)
240 goto unlock;
242 switch (optname) {
243 case ALG_SET_KEY:
244 if (sock->state == SS_CONNECTED)
245 goto unlock;
246 if (!type->setkey)
247 goto unlock;
249 err = alg_setkey(sk, optval, optlen);
250 break;
251 case ALG_SET_AEAD_AUTHSIZE:
252 if (sock->state == SS_CONNECTED)
253 goto unlock;
254 if (!type->setauthsize)
255 goto unlock;
256 err = type->setauthsize(ask->private, optlen);
259 unlock:
260 release_sock(sk);
262 return err;
265 int af_alg_accept(struct sock *sk, struct socket *newsock, bool kern)
267 struct alg_sock *ask = alg_sk(sk);
268 const struct af_alg_type *type;
269 struct sock *sk2;
270 unsigned int nokey;
271 int err;
273 lock_sock(sk);
274 type = ask->type;
276 err = -EINVAL;
277 if (!type)
278 goto unlock;
280 sk2 = sk_alloc(sock_net(sk), PF_ALG, GFP_KERNEL, &alg_proto, kern);
281 err = -ENOMEM;
282 if (!sk2)
283 goto unlock;
285 sock_init_data(newsock, sk2);
286 security_sock_graft(sk2, newsock);
287 security_sk_clone(sk, sk2);
289 err = type->accept(ask->private, sk2);
291 nokey = err == -ENOKEY;
292 if (nokey && type->accept_nokey)
293 err = type->accept_nokey(ask->private, sk2);
295 if (err)
296 goto unlock;
298 if (atomic_inc_return_relaxed(&ask->refcnt) == 1)
299 sock_hold(sk);
300 if (nokey) {
301 atomic_inc(&ask->nokey_refcnt);
302 atomic_set(&alg_sk(sk2)->nokey_refcnt, 1);
304 alg_sk(sk2)->parent = sk;
305 alg_sk(sk2)->type = type;
307 newsock->ops = type->ops;
308 newsock->state = SS_CONNECTED;
310 if (nokey)
311 newsock->ops = type->ops_nokey;
313 err = 0;
315 unlock:
316 release_sock(sk);
318 return err;
320 EXPORT_SYMBOL_GPL(af_alg_accept);
322 static int alg_accept(struct socket *sock, struct socket *newsock, int flags,
323 bool kern)
325 return af_alg_accept(sock->sk, newsock, kern);
328 static const struct proto_ops alg_proto_ops = {
329 .family = PF_ALG,
330 .owner = THIS_MODULE,
332 .connect = sock_no_connect,
333 .socketpair = sock_no_socketpair,
334 .getname = sock_no_getname,
335 .ioctl = sock_no_ioctl,
336 .listen = sock_no_listen,
337 .shutdown = sock_no_shutdown,
338 .getsockopt = sock_no_getsockopt,
339 .mmap = sock_no_mmap,
340 .sendpage = sock_no_sendpage,
341 .sendmsg = sock_no_sendmsg,
342 .recvmsg = sock_no_recvmsg,
344 .bind = alg_bind,
345 .release = af_alg_release,
346 .setsockopt = alg_setsockopt,
347 .accept = alg_accept,
350 static void alg_sock_destruct(struct sock *sk)
352 struct alg_sock *ask = alg_sk(sk);
354 alg_do_release(ask->type, ask->private);
357 static int alg_create(struct net *net, struct socket *sock, int protocol,
358 int kern)
360 struct sock *sk;
361 int err;
363 if (sock->type != SOCK_SEQPACKET)
364 return -ESOCKTNOSUPPORT;
365 if (protocol != 0)
366 return -EPROTONOSUPPORT;
368 err = -ENOMEM;
369 sk = sk_alloc(net, PF_ALG, GFP_KERNEL, &alg_proto, kern);
370 if (!sk)
371 goto out;
373 sock->ops = &alg_proto_ops;
374 sock_init_data(sock, sk);
376 sk->sk_destruct = alg_sock_destruct;
378 return 0;
379 out:
380 return err;
383 static const struct net_proto_family alg_family = {
384 .family = PF_ALG,
385 .create = alg_create,
386 .owner = THIS_MODULE,
389 int af_alg_make_sg(struct af_alg_sgl *sgl, struct iov_iter *iter, int len)
391 size_t off;
392 ssize_t n;
393 int npages, i;
395 n = iov_iter_get_pages(iter, sgl->pages, len, ALG_MAX_PAGES, &off);
396 if (n < 0)
397 return n;
399 npages = (off + n + PAGE_SIZE - 1) >> PAGE_SHIFT;
400 if (WARN_ON(npages == 0))
401 return -EINVAL;
402 /* Add one extra for linking */
403 sg_init_table(sgl->sg, npages + 1);
405 for (i = 0, len = n; i < npages; i++) {
406 int plen = min_t(int, len, PAGE_SIZE - off);
408 sg_set_page(sgl->sg + i, sgl->pages[i], plen, off);
410 off = 0;
411 len -= plen;
413 sg_mark_end(sgl->sg + npages - 1);
414 sgl->npages = npages;
416 return n;
418 EXPORT_SYMBOL_GPL(af_alg_make_sg);
420 static void af_alg_link_sg(struct af_alg_sgl *sgl_prev,
421 struct af_alg_sgl *sgl_new)
423 sg_unmark_end(sgl_prev->sg + sgl_prev->npages - 1);
424 sg_chain(sgl_prev->sg, sgl_prev->npages + 1, sgl_new->sg);
427 void af_alg_free_sg(struct af_alg_sgl *sgl)
429 int i;
431 for (i = 0; i < sgl->npages; i++)
432 put_page(sgl->pages[i]);
434 EXPORT_SYMBOL_GPL(af_alg_free_sg);
436 static int af_alg_cmsg_send(struct msghdr *msg, struct af_alg_control *con)
438 struct cmsghdr *cmsg;
440 for_each_cmsghdr(cmsg, msg) {
441 if (!CMSG_OK(msg, cmsg))
442 return -EINVAL;
443 if (cmsg->cmsg_level != SOL_ALG)
444 continue;
446 switch (cmsg->cmsg_type) {
447 case ALG_SET_IV:
448 if (cmsg->cmsg_len < CMSG_LEN(sizeof(*con->iv)))
449 return -EINVAL;
450 con->iv = (void *)CMSG_DATA(cmsg);
451 if (cmsg->cmsg_len < CMSG_LEN(con->iv->ivlen +
452 sizeof(*con->iv)))
453 return -EINVAL;
454 break;
456 case ALG_SET_OP:
457 if (cmsg->cmsg_len < CMSG_LEN(sizeof(u32)))
458 return -EINVAL;
459 con->op = *(u32 *)CMSG_DATA(cmsg);
460 break;
462 case ALG_SET_AEAD_ASSOCLEN:
463 if (cmsg->cmsg_len < CMSG_LEN(sizeof(u32)))
464 return -EINVAL;
465 con->aead_assoclen = *(u32 *)CMSG_DATA(cmsg);
466 break;
468 default:
469 return -EINVAL;
473 return 0;
477 * af_alg_alloc_tsgl - allocate the TX SGL
479 * @sk socket of connection to user space
480 * @return: 0 upon success, < 0 upon error
482 static int af_alg_alloc_tsgl(struct sock *sk)
484 struct alg_sock *ask = alg_sk(sk);
485 struct af_alg_ctx *ctx = ask->private;
486 struct af_alg_tsgl *sgl;
487 struct scatterlist *sg = NULL;
489 sgl = list_entry(ctx->tsgl_list.prev, struct af_alg_tsgl, list);
490 if (!list_empty(&ctx->tsgl_list))
491 sg = sgl->sg;
493 if (!sg || sgl->cur >= MAX_SGL_ENTS) {
494 sgl = sock_kmalloc(sk,
495 struct_size(sgl, sg, (MAX_SGL_ENTS + 1)),
496 GFP_KERNEL);
497 if (!sgl)
498 return -ENOMEM;
500 sg_init_table(sgl->sg, MAX_SGL_ENTS + 1);
501 sgl->cur = 0;
503 if (sg)
504 sg_chain(sg, MAX_SGL_ENTS + 1, sgl->sg);
506 list_add_tail(&sgl->list, &ctx->tsgl_list);
509 return 0;
513 * aead_count_tsgl - Count number of TX SG entries
515 * The counting starts from the beginning of the SGL to @bytes. If
516 * an offset is provided, the counting of the SG entries starts at the offset.
518 * @sk socket of connection to user space
519 * @bytes Count the number of SG entries holding given number of bytes.
520 * @offset Start the counting of SG entries from the given offset.
521 * @return Number of TX SG entries found given the constraints
523 unsigned int af_alg_count_tsgl(struct sock *sk, size_t bytes, size_t offset)
525 const struct alg_sock *ask = alg_sk(sk);
526 const struct af_alg_ctx *ctx = ask->private;
527 const struct af_alg_tsgl *sgl;
528 unsigned int i;
529 unsigned int sgl_count = 0;
531 if (!bytes)
532 return 0;
534 list_for_each_entry(sgl, &ctx->tsgl_list, list) {
535 const struct scatterlist *sg = sgl->sg;
537 for (i = 0; i < sgl->cur; i++) {
538 size_t bytes_count;
540 /* Skip offset */
541 if (offset >= sg[i].length) {
542 offset -= sg[i].length;
543 bytes -= sg[i].length;
544 continue;
547 bytes_count = sg[i].length - offset;
549 offset = 0;
550 sgl_count++;
552 /* If we have seen requested number of bytes, stop */
553 if (bytes_count >= bytes)
554 return sgl_count;
556 bytes -= bytes_count;
560 return sgl_count;
562 EXPORT_SYMBOL_GPL(af_alg_count_tsgl);
565 * aead_pull_tsgl - Release the specified buffers from TX SGL
567 * If @dst is non-null, reassign the pages to dst. The caller must release
568 * the pages. If @dst_offset is given only reassign the pages to @dst starting
569 * at the @dst_offset (byte). The caller must ensure that @dst is large
570 * enough (e.g. by using af_alg_count_tsgl with the same offset).
572 * @sk socket of connection to user space
573 * @used Number of bytes to pull from TX SGL
574 * @dst If non-NULL, buffer is reassigned to dst SGL instead of releasing. The
575 * caller must release the buffers in dst.
576 * @dst_offset Reassign the TX SGL from given offset. All buffers before
577 * reaching the offset is released.
579 void af_alg_pull_tsgl(struct sock *sk, size_t used, struct scatterlist *dst,
580 size_t dst_offset)
582 struct alg_sock *ask = alg_sk(sk);
583 struct af_alg_ctx *ctx = ask->private;
584 struct af_alg_tsgl *sgl;
585 struct scatterlist *sg;
586 unsigned int i, j = 0;
588 while (!list_empty(&ctx->tsgl_list)) {
589 sgl = list_first_entry(&ctx->tsgl_list, struct af_alg_tsgl,
590 list);
591 sg = sgl->sg;
593 for (i = 0; i < sgl->cur; i++) {
594 size_t plen = min_t(size_t, used, sg[i].length);
595 struct page *page = sg_page(sg + i);
597 if (!page)
598 continue;
601 * Assumption: caller created af_alg_count_tsgl(len)
602 * SG entries in dst.
604 if (dst) {
605 if (dst_offset >= plen) {
606 /* discard page before offset */
607 dst_offset -= plen;
608 } else {
609 /* reassign page to dst after offset */
610 get_page(page);
611 sg_set_page(dst + j, page,
612 plen - dst_offset,
613 sg[i].offset + dst_offset);
614 dst_offset = 0;
615 j++;
619 sg[i].length -= plen;
620 sg[i].offset += plen;
622 used -= plen;
623 ctx->used -= plen;
625 if (sg[i].length)
626 return;
628 put_page(page);
629 sg_assign_page(sg + i, NULL);
632 list_del(&sgl->list);
633 sock_kfree_s(sk, sgl, struct_size(sgl, sg, MAX_SGL_ENTS + 1));
636 if (!ctx->used)
637 ctx->merge = 0;
639 EXPORT_SYMBOL_GPL(af_alg_pull_tsgl);
642 * af_alg_free_areq_sgls - Release TX and RX SGLs of the request
644 * @areq Request holding the TX and RX SGL
646 static void af_alg_free_areq_sgls(struct af_alg_async_req *areq)
648 struct sock *sk = areq->sk;
649 struct alg_sock *ask = alg_sk(sk);
650 struct af_alg_ctx *ctx = ask->private;
651 struct af_alg_rsgl *rsgl, *tmp;
652 struct scatterlist *tsgl;
653 struct scatterlist *sg;
654 unsigned int i;
656 list_for_each_entry_safe(rsgl, tmp, &areq->rsgl_list, list) {
657 atomic_sub(rsgl->sg_num_bytes, &ctx->rcvused);
658 af_alg_free_sg(&rsgl->sgl);
659 list_del(&rsgl->list);
660 if (rsgl != &areq->first_rsgl)
661 sock_kfree_s(sk, rsgl, sizeof(*rsgl));
664 tsgl = areq->tsgl;
665 if (tsgl) {
666 for_each_sg(tsgl, sg, areq->tsgl_entries, i) {
667 if (!sg_page(sg))
668 continue;
669 put_page(sg_page(sg));
672 sock_kfree_s(sk, tsgl, areq->tsgl_entries * sizeof(*tsgl));
677 * af_alg_wait_for_wmem - wait for availability of writable memory
679 * @sk socket of connection to user space
680 * @flags If MSG_DONTWAIT is set, then only report if function would sleep
681 * @return 0 when writable memory is available, < 0 upon error
683 static int af_alg_wait_for_wmem(struct sock *sk, unsigned int flags)
685 DEFINE_WAIT_FUNC(wait, woken_wake_function);
686 int err = -ERESTARTSYS;
687 long timeout;
689 if (flags & MSG_DONTWAIT)
690 return -EAGAIN;
692 sk_set_bit(SOCKWQ_ASYNC_NOSPACE, sk);
694 add_wait_queue(sk_sleep(sk), &wait);
695 for (;;) {
696 if (signal_pending(current))
697 break;
698 timeout = MAX_SCHEDULE_TIMEOUT;
699 if (sk_wait_event(sk, &timeout, af_alg_writable(sk), &wait)) {
700 err = 0;
701 break;
704 remove_wait_queue(sk_sleep(sk), &wait);
706 return err;
710 * af_alg_wmem_wakeup - wakeup caller when writable memory is available
712 * @sk socket of connection to user space
714 void af_alg_wmem_wakeup(struct sock *sk)
716 struct socket_wq *wq;
718 if (!af_alg_writable(sk))
719 return;
721 rcu_read_lock();
722 wq = rcu_dereference(sk->sk_wq);
723 if (skwq_has_sleeper(wq))
724 wake_up_interruptible_sync_poll(&wq->wait, EPOLLIN |
725 EPOLLRDNORM |
726 EPOLLRDBAND);
727 sk_wake_async(sk, SOCK_WAKE_WAITD, POLL_IN);
728 rcu_read_unlock();
730 EXPORT_SYMBOL_GPL(af_alg_wmem_wakeup);
733 * af_alg_wait_for_data - wait for availability of TX data
735 * @sk socket of connection to user space
736 * @flags If MSG_DONTWAIT is set, then only report if function would sleep
737 * @return 0 when writable memory is available, < 0 upon error
739 int af_alg_wait_for_data(struct sock *sk, unsigned flags)
741 DEFINE_WAIT_FUNC(wait, woken_wake_function);
742 struct alg_sock *ask = alg_sk(sk);
743 struct af_alg_ctx *ctx = ask->private;
744 long timeout;
745 int err = -ERESTARTSYS;
747 if (flags & MSG_DONTWAIT)
748 return -EAGAIN;
750 sk_set_bit(SOCKWQ_ASYNC_WAITDATA, sk);
752 add_wait_queue(sk_sleep(sk), &wait);
753 for (;;) {
754 if (signal_pending(current))
755 break;
756 timeout = MAX_SCHEDULE_TIMEOUT;
757 if (sk_wait_event(sk, &timeout, (ctx->used || !ctx->more),
758 &wait)) {
759 err = 0;
760 break;
763 remove_wait_queue(sk_sleep(sk), &wait);
765 sk_clear_bit(SOCKWQ_ASYNC_WAITDATA, sk);
767 return err;
769 EXPORT_SYMBOL_GPL(af_alg_wait_for_data);
772 * af_alg_data_wakeup - wakeup caller when new data can be sent to kernel
774 * @sk socket of connection to user space
776 static void af_alg_data_wakeup(struct sock *sk)
778 struct alg_sock *ask = alg_sk(sk);
779 struct af_alg_ctx *ctx = ask->private;
780 struct socket_wq *wq;
782 if (!ctx->used)
783 return;
785 rcu_read_lock();
786 wq = rcu_dereference(sk->sk_wq);
787 if (skwq_has_sleeper(wq))
788 wake_up_interruptible_sync_poll(&wq->wait, EPOLLOUT |
789 EPOLLRDNORM |
790 EPOLLRDBAND);
791 sk_wake_async(sk, SOCK_WAKE_SPACE, POLL_OUT);
792 rcu_read_unlock();
796 * af_alg_sendmsg - implementation of sendmsg system call handler
798 * The sendmsg system call handler obtains the user data and stores it
799 * in ctx->tsgl_list. This implies allocation of the required numbers of
800 * struct af_alg_tsgl.
802 * In addition, the ctx is filled with the information sent via CMSG.
804 * @sock socket of connection to user space
805 * @msg message from user space
806 * @size size of message from user space
807 * @ivsize the size of the IV for the cipher operation to verify that the
808 * user-space-provided IV has the right size
809 * @return the number of copied data upon success, < 0 upon error
811 int af_alg_sendmsg(struct socket *sock, struct msghdr *msg, size_t size,
812 unsigned int ivsize)
814 struct sock *sk = sock->sk;
815 struct alg_sock *ask = alg_sk(sk);
816 struct af_alg_ctx *ctx = ask->private;
817 struct af_alg_tsgl *sgl;
818 struct af_alg_control con = {};
819 long copied = 0;
820 bool enc = false;
821 bool init = false;
822 int err = 0;
824 if (msg->msg_controllen) {
825 err = af_alg_cmsg_send(msg, &con);
826 if (err)
827 return err;
829 init = true;
830 switch (con.op) {
831 case ALG_OP_ENCRYPT:
832 enc = true;
833 break;
834 case ALG_OP_DECRYPT:
835 enc = false;
836 break;
837 default:
838 return -EINVAL;
841 if (con.iv && con.iv->ivlen != ivsize)
842 return -EINVAL;
845 lock_sock(sk);
846 if (!ctx->more && ctx->used) {
847 err = -EINVAL;
848 goto unlock;
851 if (init) {
852 ctx->enc = enc;
853 if (con.iv)
854 memcpy(ctx->iv, con.iv->iv, ivsize);
856 ctx->aead_assoclen = con.aead_assoclen;
859 while (size) {
860 struct scatterlist *sg;
861 size_t len = size;
862 size_t plen;
864 /* use the existing memory in an allocated page */
865 if (ctx->merge) {
866 sgl = list_entry(ctx->tsgl_list.prev,
867 struct af_alg_tsgl, list);
868 sg = sgl->sg + sgl->cur - 1;
869 len = min_t(size_t, len,
870 PAGE_SIZE - sg->offset - sg->length);
872 err = memcpy_from_msg(page_address(sg_page(sg)) +
873 sg->offset + sg->length,
874 msg, len);
875 if (err)
876 goto unlock;
878 sg->length += len;
879 ctx->merge = (sg->offset + sg->length) &
880 (PAGE_SIZE - 1);
882 ctx->used += len;
883 copied += len;
884 size -= len;
885 continue;
888 if (!af_alg_writable(sk)) {
889 err = af_alg_wait_for_wmem(sk, msg->msg_flags);
890 if (err)
891 goto unlock;
894 /* allocate a new page */
895 len = min_t(unsigned long, len, af_alg_sndbuf(sk));
897 err = af_alg_alloc_tsgl(sk);
898 if (err)
899 goto unlock;
901 sgl = list_entry(ctx->tsgl_list.prev, struct af_alg_tsgl,
902 list);
903 sg = sgl->sg;
904 if (sgl->cur)
905 sg_unmark_end(sg + sgl->cur - 1);
907 do {
908 unsigned int i = sgl->cur;
910 plen = min_t(size_t, len, PAGE_SIZE);
912 sg_assign_page(sg + i, alloc_page(GFP_KERNEL));
913 if (!sg_page(sg + i)) {
914 err = -ENOMEM;
915 goto unlock;
918 err = memcpy_from_msg(page_address(sg_page(sg + i)),
919 msg, plen);
920 if (err) {
921 __free_page(sg_page(sg + i));
922 sg_assign_page(sg + i, NULL);
923 goto unlock;
926 sg[i].length = plen;
927 len -= plen;
928 ctx->used += plen;
929 copied += plen;
930 size -= plen;
931 sgl->cur++;
932 } while (len && sgl->cur < MAX_SGL_ENTS);
934 if (!size)
935 sg_mark_end(sg + sgl->cur - 1);
937 ctx->merge = plen & (PAGE_SIZE - 1);
940 err = 0;
942 ctx->more = msg->msg_flags & MSG_MORE;
944 unlock:
945 af_alg_data_wakeup(sk);
946 release_sock(sk);
948 return copied ?: err;
950 EXPORT_SYMBOL_GPL(af_alg_sendmsg);
953 * af_alg_sendpage - sendpage system call handler
955 * This is a generic implementation of sendpage to fill ctx->tsgl_list.
957 ssize_t af_alg_sendpage(struct socket *sock, struct page *page,
958 int offset, size_t size, int flags)
960 struct sock *sk = sock->sk;
961 struct alg_sock *ask = alg_sk(sk);
962 struct af_alg_ctx *ctx = ask->private;
963 struct af_alg_tsgl *sgl;
964 int err = -EINVAL;
966 if (flags & MSG_SENDPAGE_NOTLAST)
967 flags |= MSG_MORE;
969 lock_sock(sk);
970 if (!ctx->more && ctx->used)
971 goto unlock;
973 if (!size)
974 goto done;
976 if (!af_alg_writable(sk)) {
977 err = af_alg_wait_for_wmem(sk, flags);
978 if (err)
979 goto unlock;
982 err = af_alg_alloc_tsgl(sk);
983 if (err)
984 goto unlock;
986 ctx->merge = 0;
987 sgl = list_entry(ctx->tsgl_list.prev, struct af_alg_tsgl, list);
989 if (sgl->cur)
990 sg_unmark_end(sgl->sg + sgl->cur - 1);
992 sg_mark_end(sgl->sg + sgl->cur);
994 get_page(page);
995 sg_set_page(sgl->sg + sgl->cur, page, size, offset);
996 sgl->cur++;
997 ctx->used += size;
999 done:
1000 ctx->more = flags & MSG_MORE;
1002 unlock:
1003 af_alg_data_wakeup(sk);
1004 release_sock(sk);
1006 return err ?: size;
1008 EXPORT_SYMBOL_GPL(af_alg_sendpage);
1011 * af_alg_free_resources - release resources required for crypto request
1013 void af_alg_free_resources(struct af_alg_async_req *areq)
1015 struct sock *sk = areq->sk;
1017 af_alg_free_areq_sgls(areq);
1018 sock_kfree_s(sk, areq, areq->areqlen);
1020 EXPORT_SYMBOL_GPL(af_alg_free_resources);
1023 * af_alg_async_cb - AIO callback handler
1025 * This handler cleans up the struct af_alg_async_req upon completion of the
1026 * AIO operation.
1028 * The number of bytes to be generated with the AIO operation must be set
1029 * in areq->outlen before the AIO callback handler is invoked.
1031 void af_alg_async_cb(struct crypto_async_request *_req, int err)
1033 struct af_alg_async_req *areq = _req->data;
1034 struct sock *sk = areq->sk;
1035 struct kiocb *iocb = areq->iocb;
1036 unsigned int resultlen;
1038 /* Buffer size written by crypto operation. */
1039 resultlen = areq->outlen;
1041 af_alg_free_resources(areq);
1042 sock_put(sk);
1044 iocb->ki_complete(iocb, err ? err : (int)resultlen, 0);
1046 EXPORT_SYMBOL_GPL(af_alg_async_cb);
1049 * af_alg_poll - poll system call handler
1051 __poll_t af_alg_poll(struct file *file, struct socket *sock,
1052 poll_table *wait)
1054 struct sock *sk = sock->sk;
1055 struct alg_sock *ask = alg_sk(sk);
1056 struct af_alg_ctx *ctx = ask->private;
1057 __poll_t mask;
1059 sock_poll_wait(file, sock, wait);
1060 mask = 0;
1062 if (!ctx->more || ctx->used)
1063 mask |= EPOLLIN | EPOLLRDNORM;
1065 if (af_alg_writable(sk))
1066 mask |= EPOLLOUT | EPOLLWRNORM | EPOLLWRBAND;
1068 return mask;
1070 EXPORT_SYMBOL_GPL(af_alg_poll);
1073 * af_alg_alloc_areq - allocate struct af_alg_async_req
1075 * @sk socket of connection to user space
1076 * @areqlen size of struct af_alg_async_req + crypto_*_reqsize
1077 * @return allocated data structure or ERR_PTR upon error
1079 struct af_alg_async_req *af_alg_alloc_areq(struct sock *sk,
1080 unsigned int areqlen)
1082 struct af_alg_async_req *areq = sock_kmalloc(sk, areqlen, GFP_KERNEL);
1084 if (unlikely(!areq))
1085 return ERR_PTR(-ENOMEM);
1087 areq->areqlen = areqlen;
1088 areq->sk = sk;
1089 areq->last_rsgl = NULL;
1090 INIT_LIST_HEAD(&areq->rsgl_list);
1091 areq->tsgl = NULL;
1092 areq->tsgl_entries = 0;
1094 return areq;
1096 EXPORT_SYMBOL_GPL(af_alg_alloc_areq);
1099 * af_alg_get_rsgl - create the RX SGL for the output data from the crypto
1100 * operation
1102 * @sk socket of connection to user space
1103 * @msg user space message
1104 * @flags flags used to invoke recvmsg with
1105 * @areq instance of the cryptographic request that will hold the RX SGL
1106 * @maxsize maximum number of bytes to be pulled from user space
1107 * @outlen number of bytes in the RX SGL
1108 * @return 0 on success, < 0 upon error
1110 int af_alg_get_rsgl(struct sock *sk, struct msghdr *msg, int flags,
1111 struct af_alg_async_req *areq, size_t maxsize,
1112 size_t *outlen)
1114 struct alg_sock *ask = alg_sk(sk);
1115 struct af_alg_ctx *ctx = ask->private;
1116 size_t len = 0;
1118 while (maxsize > len && msg_data_left(msg)) {
1119 struct af_alg_rsgl *rsgl;
1120 size_t seglen;
1121 int err;
1123 /* limit the amount of readable buffers */
1124 if (!af_alg_readable(sk))
1125 break;
1127 seglen = min_t(size_t, (maxsize - len),
1128 msg_data_left(msg));
1130 if (list_empty(&areq->rsgl_list)) {
1131 rsgl = &areq->first_rsgl;
1132 } else {
1133 rsgl = sock_kmalloc(sk, sizeof(*rsgl), GFP_KERNEL);
1134 if (unlikely(!rsgl))
1135 return -ENOMEM;
1138 rsgl->sgl.npages = 0;
1139 list_add_tail(&rsgl->list, &areq->rsgl_list);
1141 /* make one iovec available as scatterlist */
1142 err = af_alg_make_sg(&rsgl->sgl, &msg->msg_iter, seglen);
1143 if (err < 0) {
1144 rsgl->sg_num_bytes = 0;
1145 return err;
1148 /* chain the new scatterlist with previous one */
1149 if (areq->last_rsgl)
1150 af_alg_link_sg(&areq->last_rsgl->sgl, &rsgl->sgl);
1152 areq->last_rsgl = rsgl;
1153 len += err;
1154 atomic_add(err, &ctx->rcvused);
1155 rsgl->sg_num_bytes = err;
1156 iov_iter_advance(&msg->msg_iter, err);
1159 *outlen = len;
1160 return 0;
1162 EXPORT_SYMBOL_GPL(af_alg_get_rsgl);
1164 static int __init af_alg_init(void)
1166 int err = proto_register(&alg_proto, 0);
1168 if (err)
1169 goto out;
1171 err = sock_register(&alg_family);
1172 if (err != 0)
1173 goto out_unregister_proto;
1175 out:
1176 return err;
1178 out_unregister_proto:
1179 proto_unregister(&alg_proto);
1180 goto out;
1183 static void __exit af_alg_exit(void)
1185 sock_unregister(PF_ALG);
1186 proto_unregister(&alg_proto);
1189 module_init(af_alg_init);
1190 module_exit(af_alg_exit);
1191 MODULE_LICENSE("GPL");
1192 MODULE_ALIAS_NETPROTO(AF_ALG);