2 * af_alg: User-space algorithm interface
4 * This file provides the user-space API for algorithms.
6 * Copyright (c) 2010 Herbert Xu <herbert@gondor.apana.org.au>
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)
15 #include <linux/atomic.h>
16 #include <crypto/if_alg.h>
17 #include <linux/crypto.h>
18 #include <linux/init.h>
19 #include <linux/kernel.h>
20 #include <linux/list.h>
21 #include <linux/module.h>
22 #include <linux/net.h>
23 #include <linux/rwsem.h>
24 #include <linux/sched/signal.h>
25 #include <linux/security.h>
27 struct alg_type_list
{
28 const struct af_alg_type
*type
;
29 struct list_head list
;
32 static atomic_long_t alg_memory_allocated
;
34 static struct proto alg_proto
= {
37 .memory_allocated
= &alg_memory_allocated
,
38 .obj_size
= sizeof(struct alg_sock
),
41 static LIST_HEAD(alg_types
);
42 static DECLARE_RWSEM(alg_types_sem
);
44 static const struct af_alg_type
*alg_get_type(const char *name
)
46 const struct af_alg_type
*type
= ERR_PTR(-ENOENT
);
47 struct alg_type_list
*node
;
49 down_read(&alg_types_sem
);
50 list_for_each_entry(node
, &alg_types
, list
) {
51 if (strcmp(node
->type
->name
, name
))
54 if (try_module_get(node
->type
->owner
))
58 up_read(&alg_types_sem
);
63 int af_alg_register_type(const struct af_alg_type
*type
)
65 struct alg_type_list
*node
;
68 down_write(&alg_types_sem
);
69 list_for_each_entry(node
, &alg_types
, list
) {
70 if (!strcmp(node
->type
->name
, type
->name
))
74 node
= kmalloc(sizeof(*node
), GFP_KERNEL
);
79 type
->ops
->owner
= THIS_MODULE
;
81 type
->ops_nokey
->owner
= THIS_MODULE
;
83 list_add(&node
->list
, &alg_types
);
87 up_write(&alg_types_sem
);
91 EXPORT_SYMBOL_GPL(af_alg_register_type
);
93 int af_alg_unregister_type(const struct af_alg_type
*type
)
95 struct alg_type_list
*node
;
98 down_write(&alg_types_sem
);
99 list_for_each_entry(node
, &alg_types
, list
) {
100 if (strcmp(node
->type
->name
, type
->name
))
103 list_del(&node
->list
);
108 up_write(&alg_types_sem
);
112 EXPORT_SYMBOL_GPL(af_alg_unregister_type
);
114 static void alg_do_release(const struct af_alg_type
*type
, void *private)
119 type
->release(private);
120 module_put(type
->owner
);
123 int af_alg_release(struct socket
*sock
)
129 EXPORT_SYMBOL_GPL(af_alg_release
);
131 void af_alg_release_parent(struct sock
*sk
)
133 struct alg_sock
*ask
= alg_sk(sk
);
134 unsigned int nokey
= ask
->nokey_refcnt
;
135 bool last
= nokey
&& !ask
->refcnt
;
141 ask
->nokey_refcnt
-= nokey
;
143 last
= !--ask
->refcnt
;
149 EXPORT_SYMBOL_GPL(af_alg_release_parent
);
151 static int alg_bind(struct socket
*sock
, struct sockaddr
*uaddr
, int addr_len
)
153 const u32 forbidden
= CRYPTO_ALG_INTERNAL
;
154 struct sock
*sk
= sock
->sk
;
155 struct alg_sock
*ask
= alg_sk(sk
);
156 struct sockaddr_alg
*sa
= (void *)uaddr
;
157 const struct af_alg_type
*type
;
161 if (sock
->state
== SS_CONNECTED
)
164 if (addr_len
< sizeof(*sa
))
167 sa
->salg_type
[sizeof(sa
->salg_type
) - 1] = 0;
168 sa
->salg_name
[sizeof(sa
->salg_name
) + addr_len
- sizeof(*sa
) - 1] = 0;
170 type
= alg_get_type(sa
->salg_type
);
171 if (IS_ERR(type
) && PTR_ERR(type
) == -ENOENT
) {
172 request_module("algif-%s", sa
->salg_type
);
173 type
= alg_get_type(sa
->salg_type
);
177 return PTR_ERR(type
);
179 private = type
->bind(sa
->salg_name
,
180 sa
->salg_feat
& ~forbidden
,
181 sa
->salg_mask
& ~forbidden
);
182 if (IS_ERR(private)) {
183 module_put(type
->owner
);
184 return PTR_ERR(private);
189 if (ask
->refcnt
| ask
->nokey_refcnt
)
192 swap(ask
->type
, type
);
193 swap(ask
->private, private);
200 alg_do_release(type
, private);
205 static int alg_setkey(struct sock
*sk
, char __user
*ukey
,
208 struct alg_sock
*ask
= alg_sk(sk
);
209 const struct af_alg_type
*type
= ask
->type
;
213 key
= sock_kmalloc(sk
, keylen
, GFP_KERNEL
);
218 if (copy_from_user(key
, ukey
, keylen
))
221 err
= type
->setkey(ask
->private, key
, keylen
);
224 sock_kzfree_s(sk
, key
, keylen
);
229 static int alg_setsockopt(struct socket
*sock
, int level
, int optname
,
230 char __user
*optval
, unsigned int optlen
)
232 struct sock
*sk
= sock
->sk
;
233 struct alg_sock
*ask
= alg_sk(sk
);
234 const struct af_alg_type
*type
;
244 if (level
!= SOL_ALG
|| !type
)
249 if (sock
->state
== SS_CONNECTED
)
254 err
= alg_setkey(sk
, optval
, optlen
);
256 case ALG_SET_AEAD_AUTHSIZE
:
257 if (sock
->state
== SS_CONNECTED
)
259 if (!type
->setauthsize
)
261 err
= type
->setauthsize(ask
->private, optlen
);
270 int af_alg_accept(struct sock
*sk
, struct socket
*newsock
, bool kern
)
272 struct alg_sock
*ask
= alg_sk(sk
);
273 const struct af_alg_type
*type
;
285 sk2
= sk_alloc(sock_net(sk
), PF_ALG
, GFP_KERNEL
, &alg_proto
, kern
);
290 sock_init_data(newsock
, sk2
);
291 security_sock_graft(sk2
, newsock
);
292 security_sk_clone(sk
, sk2
);
294 err
= type
->accept(ask
->private, sk2
);
296 nokey
= err
== -ENOKEY
;
297 if (nokey
&& type
->accept_nokey
)
298 err
= type
->accept_nokey(ask
->private, sk2
);
303 sk2
->sk_family
= PF_ALG
;
305 if (nokey
|| !ask
->refcnt
++)
307 ask
->nokey_refcnt
+= nokey
;
308 alg_sk(sk2
)->parent
= sk
;
309 alg_sk(sk2
)->type
= type
;
310 alg_sk(sk2
)->nokey_refcnt
= nokey
;
312 newsock
->ops
= type
->ops
;
313 newsock
->state
= SS_CONNECTED
;
316 newsock
->ops
= type
->ops_nokey
;
325 EXPORT_SYMBOL_GPL(af_alg_accept
);
327 static int alg_accept(struct socket
*sock
, struct socket
*newsock
, int flags
,
330 return af_alg_accept(sock
->sk
, newsock
, kern
);
333 static const struct proto_ops alg_proto_ops
= {
335 .owner
= THIS_MODULE
,
337 .connect
= sock_no_connect
,
338 .socketpair
= sock_no_socketpair
,
339 .getname
= sock_no_getname
,
340 .ioctl
= sock_no_ioctl
,
341 .listen
= sock_no_listen
,
342 .shutdown
= sock_no_shutdown
,
343 .getsockopt
= sock_no_getsockopt
,
344 .mmap
= sock_no_mmap
,
345 .sendpage
= sock_no_sendpage
,
346 .sendmsg
= sock_no_sendmsg
,
347 .recvmsg
= sock_no_recvmsg
,
348 .poll
= sock_no_poll
,
351 .release
= af_alg_release
,
352 .setsockopt
= alg_setsockopt
,
353 .accept
= alg_accept
,
356 static void alg_sock_destruct(struct sock
*sk
)
358 struct alg_sock
*ask
= alg_sk(sk
);
360 alg_do_release(ask
->type
, ask
->private);
363 static int alg_create(struct net
*net
, struct socket
*sock
, int protocol
,
369 if (sock
->type
!= SOCK_SEQPACKET
)
370 return -ESOCKTNOSUPPORT
;
372 return -EPROTONOSUPPORT
;
375 sk
= sk_alloc(net
, PF_ALG
, GFP_KERNEL
, &alg_proto
, kern
);
379 sock
->ops
= &alg_proto_ops
;
380 sock_init_data(sock
, sk
);
382 sk
->sk_family
= PF_ALG
;
383 sk
->sk_destruct
= alg_sock_destruct
;
390 static const struct net_proto_family alg_family
= {
392 .create
= alg_create
,
393 .owner
= THIS_MODULE
,
396 int af_alg_make_sg(struct af_alg_sgl
*sgl
, struct iov_iter
*iter
, int len
)
402 n
= iov_iter_get_pages(iter
, sgl
->pages
, len
, ALG_MAX_PAGES
, &off
);
406 npages
= (off
+ n
+ PAGE_SIZE
- 1) >> PAGE_SHIFT
;
407 if (WARN_ON(npages
== 0))
409 /* Add one extra for linking */
410 sg_init_table(sgl
->sg
, npages
+ 1);
412 for (i
= 0, len
= n
; i
< npages
; i
++) {
413 int plen
= min_t(int, len
, PAGE_SIZE
- off
);
415 sg_set_page(sgl
->sg
+ i
, sgl
->pages
[i
], plen
, off
);
420 sg_mark_end(sgl
->sg
+ npages
- 1);
421 sgl
->npages
= npages
;
425 EXPORT_SYMBOL_GPL(af_alg_make_sg
);
427 void af_alg_link_sg(struct af_alg_sgl
*sgl_prev
, struct af_alg_sgl
*sgl_new
)
429 sg_unmark_end(sgl_prev
->sg
+ sgl_prev
->npages
- 1);
430 sg_chain(sgl_prev
->sg
, sgl_prev
->npages
+ 1, sgl_new
->sg
);
432 EXPORT_SYMBOL_GPL(af_alg_link_sg
);
434 void af_alg_free_sg(struct af_alg_sgl
*sgl
)
438 for (i
= 0; i
< sgl
->npages
; i
++)
439 put_page(sgl
->pages
[i
]);
441 EXPORT_SYMBOL_GPL(af_alg_free_sg
);
443 int af_alg_cmsg_send(struct msghdr
*msg
, struct af_alg_control
*con
)
445 struct cmsghdr
*cmsg
;
447 for_each_cmsghdr(cmsg
, msg
) {
448 if (!CMSG_OK(msg
, cmsg
))
450 if (cmsg
->cmsg_level
!= SOL_ALG
)
453 switch (cmsg
->cmsg_type
) {
455 if (cmsg
->cmsg_len
< CMSG_LEN(sizeof(*con
->iv
)))
457 con
->iv
= (void *)CMSG_DATA(cmsg
);
458 if (cmsg
->cmsg_len
< CMSG_LEN(con
->iv
->ivlen
+
464 if (cmsg
->cmsg_len
< CMSG_LEN(sizeof(u32
)))
466 con
->op
= *(u32
*)CMSG_DATA(cmsg
);
469 case ALG_SET_AEAD_ASSOCLEN
:
470 if (cmsg
->cmsg_len
< CMSG_LEN(sizeof(u32
)))
472 con
->aead_assoclen
= *(u32
*)CMSG_DATA(cmsg
);
482 EXPORT_SYMBOL_GPL(af_alg_cmsg_send
);
484 int af_alg_wait_for_completion(int err
, struct af_alg_completion
*completion
)
489 wait_for_completion(&completion
->completion
);
490 reinit_completion(&completion
->completion
);
491 err
= completion
->err
;
497 EXPORT_SYMBOL_GPL(af_alg_wait_for_completion
);
499 void af_alg_complete(struct crypto_async_request
*req
, int err
)
501 struct af_alg_completion
*completion
= req
->data
;
503 if (err
== -EINPROGRESS
)
506 completion
->err
= err
;
507 complete(&completion
->completion
);
509 EXPORT_SYMBOL_GPL(af_alg_complete
);
512 * af_alg_alloc_tsgl - allocate the TX SGL
514 * @sk socket of connection to user space
515 * @return: 0 upon success, < 0 upon error
517 int af_alg_alloc_tsgl(struct sock
*sk
)
519 struct alg_sock
*ask
= alg_sk(sk
);
520 struct af_alg_ctx
*ctx
= ask
->private;
521 struct af_alg_tsgl
*sgl
;
522 struct scatterlist
*sg
= NULL
;
524 sgl
= list_entry(ctx
->tsgl_list
.prev
, struct af_alg_tsgl
, list
);
525 if (!list_empty(&ctx
->tsgl_list
))
528 if (!sg
|| sgl
->cur
>= MAX_SGL_ENTS
) {
529 sgl
= sock_kmalloc(sk
, sizeof(*sgl
) +
530 sizeof(sgl
->sg
[0]) * (MAX_SGL_ENTS
+ 1),
535 sg_init_table(sgl
->sg
, MAX_SGL_ENTS
+ 1);
539 sg_chain(sg
, MAX_SGL_ENTS
+ 1, sgl
->sg
);
541 list_add_tail(&sgl
->list
, &ctx
->tsgl_list
);
546 EXPORT_SYMBOL_GPL(af_alg_alloc_tsgl
);
549 * aead_count_tsgl - Count number of TX SG entries
551 * The counting starts from the beginning of the SGL to @bytes. If
552 * an offset is provided, the counting of the SG entries starts at the offset.
554 * @sk socket of connection to user space
555 * @bytes Count the number of SG entries holding given number of bytes.
556 * @offset Start the counting of SG entries from the given offset.
557 * @return Number of TX SG entries found given the constraints
559 unsigned int af_alg_count_tsgl(struct sock
*sk
, size_t bytes
, size_t offset
)
561 struct alg_sock
*ask
= alg_sk(sk
);
562 struct af_alg_ctx
*ctx
= ask
->private;
563 struct af_alg_tsgl
*sgl
, *tmp
;
565 unsigned int sgl_count
= 0;
570 list_for_each_entry_safe(sgl
, tmp
, &ctx
->tsgl_list
, list
) {
571 struct scatterlist
*sg
= sgl
->sg
;
573 for (i
= 0; i
< sgl
->cur
; i
++) {
577 if (offset
>= sg
[i
].length
) {
578 offset
-= sg
[i
].length
;
579 bytes
-= sg
[i
].length
;
583 bytes_count
= sg
[i
].length
- offset
;
588 /* If we have seen requested number of bytes, stop */
589 if (bytes_count
>= bytes
)
592 bytes
-= bytes_count
;
598 EXPORT_SYMBOL_GPL(af_alg_count_tsgl
);
601 * aead_pull_tsgl - Release the specified buffers from TX SGL
603 * If @dst is non-null, reassign the pages to dst. The caller must release
604 * the pages. If @dst_offset is given only reassign the pages to @dst starting
605 * at the @dst_offset (byte). The caller must ensure that @dst is large
606 * enough (e.g. by using af_alg_count_tsgl with the same offset).
608 * @sk socket of connection to user space
609 * @used Number of bytes to pull from TX SGL
610 * @dst If non-NULL, buffer is reassigned to dst SGL instead of releasing. The
611 * caller must release the buffers in dst.
612 * @dst_offset Reassign the TX SGL from given offset. All buffers before
613 * reaching the offset is released.
615 void af_alg_pull_tsgl(struct sock
*sk
, size_t used
, struct scatterlist
*dst
,
618 struct alg_sock
*ask
= alg_sk(sk
);
619 struct af_alg_ctx
*ctx
= ask
->private;
620 struct af_alg_tsgl
*sgl
;
621 struct scatterlist
*sg
;
622 unsigned int i
, j
= 0;
624 while (!list_empty(&ctx
->tsgl_list
)) {
625 sgl
= list_first_entry(&ctx
->tsgl_list
, struct af_alg_tsgl
,
629 for (i
= 0; i
< sgl
->cur
; i
++) {
630 size_t plen
= min_t(size_t, used
, sg
[i
].length
);
631 struct page
*page
= sg_page(sg
+ i
);
637 * Assumption: caller created af_alg_count_tsgl(len)
641 if (dst_offset
>= plen
) {
642 /* discard page before offset */
645 /* reassign page to dst after offset */
647 sg_set_page(dst
+ j
, page
,
649 sg
[i
].offset
+ dst_offset
);
655 sg
[i
].length
-= plen
;
656 sg
[i
].offset
+= plen
;
665 sg_assign_page(sg
+ i
, NULL
);
668 list_del(&sgl
->list
);
669 sock_kfree_s(sk
, sgl
, sizeof(*sgl
) + sizeof(sgl
->sg
[0]) *
676 EXPORT_SYMBOL_GPL(af_alg_pull_tsgl
);
679 * af_alg_free_areq_sgls - Release TX and RX SGLs of the request
681 * @areq Request holding the TX and RX SGL
683 void af_alg_free_areq_sgls(struct af_alg_async_req
*areq
)
685 struct sock
*sk
= areq
->sk
;
686 struct alg_sock
*ask
= alg_sk(sk
);
687 struct af_alg_ctx
*ctx
= ask
->private;
688 struct af_alg_rsgl
*rsgl
, *tmp
;
689 struct scatterlist
*tsgl
;
690 struct scatterlist
*sg
;
693 list_for_each_entry_safe(rsgl
, tmp
, &areq
->rsgl_list
, list
) {
694 ctx
->rcvused
-= rsgl
->sg_num_bytes
;
695 af_alg_free_sg(&rsgl
->sgl
);
696 list_del(&rsgl
->list
);
697 if (rsgl
!= &areq
->first_rsgl
)
698 sock_kfree_s(sk
, rsgl
, sizeof(*rsgl
));
702 for_each_sg(tsgl
, sg
, areq
->tsgl_entries
, i
) {
705 put_page(sg_page(sg
));
708 if (areq
->tsgl
&& areq
->tsgl_entries
)
709 sock_kfree_s(sk
, tsgl
, areq
->tsgl_entries
* sizeof(*tsgl
));
711 EXPORT_SYMBOL_GPL(af_alg_free_areq_sgls
);
714 * af_alg_wait_for_wmem - wait for availability of writable memory
716 * @sk socket of connection to user space
717 * @flags If MSG_DONTWAIT is set, then only report if function would sleep
718 * @return 0 when writable memory is available, < 0 upon error
720 int af_alg_wait_for_wmem(struct sock
*sk
, unsigned int flags
)
722 DEFINE_WAIT_FUNC(wait
, woken_wake_function
);
723 int err
= -ERESTARTSYS
;
726 if (flags
& MSG_DONTWAIT
)
729 sk_set_bit(SOCKWQ_ASYNC_NOSPACE
, sk
);
731 add_wait_queue(sk_sleep(sk
), &wait
);
733 if (signal_pending(current
))
735 timeout
= MAX_SCHEDULE_TIMEOUT
;
736 if (sk_wait_event(sk
, &timeout
, af_alg_writable(sk
), &wait
)) {
741 remove_wait_queue(sk_sleep(sk
), &wait
);
745 EXPORT_SYMBOL_GPL(af_alg_wait_for_wmem
);
748 * af_alg_wmem_wakeup - wakeup caller when writable memory is available
750 * @sk socket of connection to user space
752 void af_alg_wmem_wakeup(struct sock
*sk
)
754 struct socket_wq
*wq
;
756 if (!af_alg_writable(sk
))
760 wq
= rcu_dereference(sk
->sk_wq
);
761 if (skwq_has_sleeper(wq
))
762 wake_up_interruptible_sync_poll(&wq
->wait
, POLLIN
|
765 sk_wake_async(sk
, SOCK_WAKE_WAITD
, POLL_IN
);
768 EXPORT_SYMBOL_GPL(af_alg_wmem_wakeup
);
771 * af_alg_wait_for_data - wait for availability of TX data
773 * @sk socket of connection to user space
774 * @flags If MSG_DONTWAIT is set, then only report if function would sleep
775 * @return 0 when writable memory is available, < 0 upon error
777 int af_alg_wait_for_data(struct sock
*sk
, unsigned flags
)
779 DEFINE_WAIT_FUNC(wait
, woken_wake_function
);
780 struct alg_sock
*ask
= alg_sk(sk
);
781 struct af_alg_ctx
*ctx
= ask
->private;
783 int err
= -ERESTARTSYS
;
785 if (flags
& MSG_DONTWAIT
)
788 sk_set_bit(SOCKWQ_ASYNC_WAITDATA
, sk
);
790 add_wait_queue(sk_sleep(sk
), &wait
);
792 if (signal_pending(current
))
794 timeout
= MAX_SCHEDULE_TIMEOUT
;
795 if (sk_wait_event(sk
, &timeout
, (ctx
->used
|| !ctx
->more
),
801 remove_wait_queue(sk_sleep(sk
), &wait
);
803 sk_clear_bit(SOCKWQ_ASYNC_WAITDATA
, sk
);
807 EXPORT_SYMBOL_GPL(af_alg_wait_for_data
);
810 * af_alg_data_wakeup - wakeup caller when new data can be sent to kernel
812 * @sk socket of connection to user space
815 void af_alg_data_wakeup(struct sock
*sk
)
817 struct alg_sock
*ask
= alg_sk(sk
);
818 struct af_alg_ctx
*ctx
= ask
->private;
819 struct socket_wq
*wq
;
825 wq
= rcu_dereference(sk
->sk_wq
);
826 if (skwq_has_sleeper(wq
))
827 wake_up_interruptible_sync_poll(&wq
->wait
, POLLOUT
|
830 sk_wake_async(sk
, SOCK_WAKE_SPACE
, POLL_OUT
);
833 EXPORT_SYMBOL_GPL(af_alg_data_wakeup
);
836 * af_alg_sendmsg - implementation of sendmsg system call handler
838 * The sendmsg system call handler obtains the user data and stores it
839 * in ctx->tsgl_list. This implies allocation of the required numbers of
840 * struct af_alg_tsgl.
842 * In addition, the ctx is filled with the information sent via CMSG.
844 * @sock socket of connection to user space
845 * @msg message from user space
846 * @size size of message from user space
847 * @ivsize the size of the IV for the cipher operation to verify that the
848 * user-space-provided IV has the right size
849 * @return the number of copied data upon success, < 0 upon error
851 int af_alg_sendmsg(struct socket
*sock
, struct msghdr
*msg
, size_t size
,
854 struct sock
*sk
= sock
->sk
;
855 struct alg_sock
*ask
= alg_sk(sk
);
856 struct af_alg_ctx
*ctx
= ask
->private;
857 struct af_alg_tsgl
*sgl
;
858 struct af_alg_control con
= {};
864 if (msg
->msg_controllen
) {
865 err
= af_alg_cmsg_send(msg
, &con
);
881 if (con
.iv
&& con
.iv
->ivlen
!= ivsize
)
886 if (!ctx
->more
&& ctx
->used
) {
894 memcpy(ctx
->iv
, con
.iv
->iv
, ivsize
);
896 ctx
->aead_assoclen
= con
.aead_assoclen
;
900 struct scatterlist
*sg
;
904 /* use the existing memory in an allocated page */
906 sgl
= list_entry(ctx
->tsgl_list
.prev
,
907 struct af_alg_tsgl
, list
);
908 sg
= sgl
->sg
+ sgl
->cur
- 1;
909 len
= min_t(size_t, len
,
910 PAGE_SIZE
- sg
->offset
- sg
->length
);
912 err
= memcpy_from_msg(page_address(sg_page(sg
)) +
913 sg
->offset
+ sg
->length
,
919 ctx
->merge
= (sg
->offset
+ sg
->length
) &
928 if (!af_alg_writable(sk
)) {
929 err
= af_alg_wait_for_wmem(sk
, msg
->msg_flags
);
934 /* allocate a new page */
935 len
= min_t(unsigned long, len
, af_alg_sndbuf(sk
));
937 err
= af_alg_alloc_tsgl(sk
);
941 sgl
= list_entry(ctx
->tsgl_list
.prev
, struct af_alg_tsgl
,
945 sg_unmark_end(sg
+ sgl
->cur
- 1);
948 unsigned int i
= sgl
->cur
;
950 plen
= min_t(size_t, len
, PAGE_SIZE
);
952 sg_assign_page(sg
+ i
, alloc_page(GFP_KERNEL
));
953 if (!sg_page(sg
+ i
)) {
958 err
= memcpy_from_msg(page_address(sg_page(sg
+ i
)),
961 __free_page(sg_page(sg
+ i
));
962 sg_assign_page(sg
+ i
, NULL
);
972 } while (len
&& sgl
->cur
< MAX_SGL_ENTS
);
975 sg_mark_end(sg
+ sgl
->cur
- 1);
977 ctx
->merge
= plen
& (PAGE_SIZE
- 1);
982 ctx
->more
= msg
->msg_flags
& MSG_MORE
;
985 af_alg_data_wakeup(sk
);
988 return copied
?: err
;
990 EXPORT_SYMBOL_GPL(af_alg_sendmsg
);
993 * af_alg_sendpage - sendpage system call handler
995 * This is a generic implementation of sendpage to fill ctx->tsgl_list.
997 ssize_t
af_alg_sendpage(struct socket
*sock
, struct page
*page
,
998 int offset
, size_t size
, int flags
)
1000 struct sock
*sk
= sock
->sk
;
1001 struct alg_sock
*ask
= alg_sk(sk
);
1002 struct af_alg_ctx
*ctx
= ask
->private;
1003 struct af_alg_tsgl
*sgl
;
1006 if (flags
& MSG_SENDPAGE_NOTLAST
)
1010 if (!ctx
->more
&& ctx
->used
)
1016 if (!af_alg_writable(sk
)) {
1017 err
= af_alg_wait_for_wmem(sk
, flags
);
1022 err
= af_alg_alloc_tsgl(sk
);
1027 sgl
= list_entry(ctx
->tsgl_list
.prev
, struct af_alg_tsgl
, list
);
1030 sg_unmark_end(sgl
->sg
+ sgl
->cur
- 1);
1032 sg_mark_end(sgl
->sg
+ sgl
->cur
);
1035 sg_set_page(sgl
->sg
+ sgl
->cur
, page
, size
, offset
);
1040 ctx
->more
= flags
& MSG_MORE
;
1043 af_alg_data_wakeup(sk
);
1048 EXPORT_SYMBOL_GPL(af_alg_sendpage
);
1051 * af_alg_async_cb - AIO callback handler
1053 * This handler cleans up the struct af_alg_async_req upon completion of the
1056 * The number of bytes to be generated with the AIO operation must be set
1057 * in areq->outlen before the AIO callback handler is invoked.
1059 void af_alg_async_cb(struct crypto_async_request
*_req
, int err
)
1061 struct af_alg_async_req
*areq
= _req
->data
;
1062 struct sock
*sk
= areq
->sk
;
1063 struct kiocb
*iocb
= areq
->iocb
;
1064 unsigned int resultlen
;
1068 /* Buffer size written by crypto operation. */
1069 resultlen
= areq
->outlen
;
1071 af_alg_free_areq_sgls(areq
);
1072 sock_kfree_s(sk
, areq
, areq
->areqlen
);
1075 iocb
->ki_complete(iocb
, err
? err
: resultlen
, 0);
1079 EXPORT_SYMBOL_GPL(af_alg_async_cb
);
1082 * af_alg_poll - poll system call handler
1084 unsigned int af_alg_poll(struct file
*file
, struct socket
*sock
,
1087 struct sock
*sk
= sock
->sk
;
1088 struct alg_sock
*ask
= alg_sk(sk
);
1089 struct af_alg_ctx
*ctx
= ask
->private;
1092 sock_poll_wait(file
, sk_sleep(sk
), wait
);
1095 if (!ctx
->more
|| ctx
->used
)
1096 mask
|= POLLIN
| POLLRDNORM
;
1098 if (af_alg_writable(sk
))
1099 mask
|= POLLOUT
| POLLWRNORM
| POLLWRBAND
;
1103 EXPORT_SYMBOL_GPL(af_alg_poll
);
1106 * af_alg_alloc_areq - allocate struct af_alg_async_req
1108 * @sk socket of connection to user space
1109 * @areqlen size of struct af_alg_async_req + crypto_*_reqsize
1110 * @return allocated data structure or ERR_PTR upon error
1112 struct af_alg_async_req
*af_alg_alloc_areq(struct sock
*sk
,
1113 unsigned int areqlen
)
1115 struct af_alg_async_req
*areq
= sock_kmalloc(sk
, areqlen
, GFP_KERNEL
);
1117 if (unlikely(!areq
))
1118 return ERR_PTR(-ENOMEM
);
1120 areq
->areqlen
= areqlen
;
1122 areq
->last_rsgl
= NULL
;
1123 INIT_LIST_HEAD(&areq
->rsgl_list
);
1125 areq
->tsgl_entries
= 0;
1129 EXPORT_SYMBOL_GPL(af_alg_alloc_areq
);
1132 * af_alg_get_rsgl - create the RX SGL for the output data from the crypto
1135 * @sk socket of connection to user space
1136 * @msg user space message
1137 * @flags flags used to invoke recvmsg with
1138 * @areq instance of the cryptographic request that will hold the RX SGL
1139 * @maxsize maximum number of bytes to be pulled from user space
1140 * @outlen number of bytes in the RX SGL
1141 * @return 0 on success, < 0 upon error
1143 int af_alg_get_rsgl(struct sock
*sk
, struct msghdr
*msg
, int flags
,
1144 struct af_alg_async_req
*areq
, size_t maxsize
,
1147 struct alg_sock
*ask
= alg_sk(sk
);
1148 struct af_alg_ctx
*ctx
= ask
->private;
1151 while (maxsize
> len
&& msg_data_left(msg
)) {
1152 struct af_alg_rsgl
*rsgl
;
1156 /* limit the amount of readable buffers */
1157 if (!af_alg_readable(sk
))
1161 err
= af_alg_wait_for_data(sk
, flags
);
1166 seglen
= min_t(size_t, (maxsize
- len
),
1167 msg_data_left(msg
));
1169 if (list_empty(&areq
->rsgl_list
)) {
1170 rsgl
= &areq
->first_rsgl
;
1172 rsgl
= sock_kmalloc(sk
, sizeof(*rsgl
), GFP_KERNEL
);
1173 if (unlikely(!rsgl
))
1177 rsgl
->sgl
.npages
= 0;
1178 list_add_tail(&rsgl
->list
, &areq
->rsgl_list
);
1180 /* make one iovec available as scatterlist */
1181 err
= af_alg_make_sg(&rsgl
->sgl
, &msg
->msg_iter
, seglen
);
1185 /* chain the new scatterlist with previous one */
1186 if (areq
->last_rsgl
)
1187 af_alg_link_sg(&areq
->last_rsgl
->sgl
, &rsgl
->sgl
);
1189 areq
->last_rsgl
= rsgl
;
1191 ctx
->rcvused
+= err
;
1192 rsgl
->sg_num_bytes
= err
;
1193 iov_iter_advance(&msg
->msg_iter
, err
);
1199 EXPORT_SYMBOL_GPL(af_alg_get_rsgl
);
1201 static int __init
af_alg_init(void)
1203 int err
= proto_register(&alg_proto
, 0);
1208 err
= sock_register(&alg_family
);
1210 goto out_unregister_proto
;
1215 out_unregister_proto
:
1216 proto_unregister(&alg_proto
);
1220 static void __exit
af_alg_exit(void)
1222 sock_unregister(PF_ALG
);
1223 proto_unregister(&alg_proto
);
1226 module_init(af_alg_init
);
1227 module_exit(af_alg_exit
);
1228 MODULE_LICENSE("GPL");
1229 MODULE_ALIAS_NETPROTO(AF_ALG
);