2 * algif_skcipher: User-space interface for skcipher algorithms
4 * This file provides the user-space API for symmetric key ciphers.
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 <crypto/scatterwalk.h>
16 #include <crypto/skcipher.h>
17 #include <crypto/if_alg.h>
18 #include <linux/init.h>
19 #include <linux/list.h>
20 #include <linux/kernel.h>
22 #include <linux/module.h>
23 #include <linux/net.h>
26 struct skcipher_sg_list
{
27 struct list_head list
;
31 struct scatterlist sg
[0];
35 struct crypto_skcipher
*skcipher
;
40 struct list_head tsgl
;
41 struct af_alg_sgl rsgl
;
45 struct af_alg_completion completion
;
55 struct skcipher_request req
;
58 struct skcipher_async_rsgl
{
59 struct af_alg_sgl sgl
;
60 struct list_head list
;
63 struct skcipher_async_req
{
65 struct skcipher_async_rsgl first_sgl
;
66 struct list_head list
;
67 struct scatterlist
*tsg
;
71 #define GET_SREQ(areq, ctx) (struct skcipher_async_req *)((char *)areq + \
72 crypto_skcipher_reqsize(crypto_skcipher_reqtfm(&ctx->req)))
74 #define GET_REQ_SIZE(ctx) \
75 crypto_skcipher_reqsize(crypto_skcipher_reqtfm(&ctx->req))
77 #define GET_IV_SIZE(ctx) \
78 crypto_skcipher_ivsize(crypto_skcipher_reqtfm(&ctx->req))
80 #define MAX_SGL_ENTS ((4096 - sizeof(struct skcipher_sg_list)) / \
81 sizeof(struct scatterlist) - 1)
83 static void skcipher_free_async_sgls(struct skcipher_async_req
*sreq
)
85 struct skcipher_async_rsgl
*rsgl
, *tmp
;
86 struct scatterlist
*sgl
;
87 struct scatterlist
*sg
;
90 list_for_each_entry_safe(rsgl
, tmp
, &sreq
->list
, list
) {
91 af_alg_free_sg(&rsgl
->sgl
);
92 if (rsgl
!= &sreq
->first_sgl
)
97 for_each_sg(sgl
, sg
, n
, i
)
98 put_page(sg_page(sg
));
103 static void skcipher_async_cb(struct crypto_async_request
*req
, int err
)
105 struct sock
*sk
= req
->data
;
106 struct alg_sock
*ask
= alg_sk(sk
);
107 struct skcipher_ctx
*ctx
= ask
->private;
108 struct skcipher_async_req
*sreq
= GET_SREQ(req
, ctx
);
109 struct kiocb
*iocb
= sreq
->iocb
;
111 atomic_dec(&ctx
->inflight
);
112 skcipher_free_async_sgls(sreq
);
114 iocb
->ki_complete(iocb
, err
, err
);
117 static inline int skcipher_sndbuf(struct sock
*sk
)
119 struct alg_sock
*ask
= alg_sk(sk
);
120 struct skcipher_ctx
*ctx
= ask
->private;
122 return max_t(int, max_t(int, sk
->sk_sndbuf
& PAGE_MASK
, PAGE_SIZE
) -
126 static inline bool skcipher_writable(struct sock
*sk
)
128 return PAGE_SIZE
<= skcipher_sndbuf(sk
);
131 static int skcipher_alloc_sgl(struct sock
*sk
)
133 struct alg_sock
*ask
= alg_sk(sk
);
134 struct skcipher_ctx
*ctx
= ask
->private;
135 struct skcipher_sg_list
*sgl
;
136 struct scatterlist
*sg
= NULL
;
138 sgl
= list_entry(ctx
->tsgl
.prev
, struct skcipher_sg_list
, list
);
139 if (!list_empty(&ctx
->tsgl
))
142 if (!sg
|| sgl
->cur
>= MAX_SGL_ENTS
) {
143 sgl
= sock_kmalloc(sk
, sizeof(*sgl
) +
144 sizeof(sgl
->sg
[0]) * (MAX_SGL_ENTS
+ 1),
149 sg_init_table(sgl
->sg
, MAX_SGL_ENTS
+ 1);
153 sg_chain(sg
, MAX_SGL_ENTS
+ 1, sgl
->sg
);
155 list_add_tail(&sgl
->list
, &ctx
->tsgl
);
161 static void skcipher_pull_sgl(struct sock
*sk
, size_t used
, int put
)
163 struct alg_sock
*ask
= alg_sk(sk
);
164 struct skcipher_ctx
*ctx
= ask
->private;
165 struct skcipher_sg_list
*sgl
;
166 struct scatterlist
*sg
;
169 while (!list_empty(&ctx
->tsgl
)) {
170 sgl
= list_first_entry(&ctx
->tsgl
, struct skcipher_sg_list
,
174 for (i
= 0; i
< sgl
->cur
; i
++) {
175 size_t plen
= min_t(size_t, used
, sg
[i
].length
);
177 if (!sg_page(sg
+ i
))
180 sg
[i
].length
-= plen
;
181 sg
[i
].offset
+= plen
;
189 put_page(sg_page(sg
+ i
));
190 sg_assign_page(sg
+ i
, NULL
);
193 list_del(&sgl
->list
);
194 sock_kfree_s(sk
, sgl
,
195 sizeof(*sgl
) + sizeof(sgl
->sg
[0]) *
203 static void skcipher_free_sgl(struct sock
*sk
)
205 struct alg_sock
*ask
= alg_sk(sk
);
206 struct skcipher_ctx
*ctx
= ask
->private;
208 skcipher_pull_sgl(sk
, ctx
->used
, 1);
211 static int skcipher_wait_for_wmem(struct sock
*sk
, unsigned flags
)
215 int err
= -ERESTARTSYS
;
217 if (flags
& MSG_DONTWAIT
)
220 sk_set_bit(SOCKWQ_ASYNC_NOSPACE
, sk
);
223 if (signal_pending(current
))
225 prepare_to_wait(sk_sleep(sk
), &wait
, TASK_INTERRUPTIBLE
);
226 timeout
= MAX_SCHEDULE_TIMEOUT
;
227 if (sk_wait_event(sk
, &timeout
, skcipher_writable(sk
))) {
232 finish_wait(sk_sleep(sk
), &wait
);
237 static void skcipher_wmem_wakeup(struct sock
*sk
)
239 struct socket_wq
*wq
;
241 if (!skcipher_writable(sk
))
245 wq
= rcu_dereference(sk
->sk_wq
);
246 if (skwq_has_sleeper(wq
))
247 wake_up_interruptible_sync_poll(&wq
->wait
, POLLIN
|
250 sk_wake_async(sk
, SOCK_WAKE_WAITD
, POLL_IN
);
254 static int skcipher_wait_for_data(struct sock
*sk
, unsigned flags
)
256 struct alg_sock
*ask
= alg_sk(sk
);
257 struct skcipher_ctx
*ctx
= ask
->private;
260 int err
= -ERESTARTSYS
;
262 if (flags
& MSG_DONTWAIT
) {
266 sk_set_bit(SOCKWQ_ASYNC_WAITDATA
, sk
);
269 if (signal_pending(current
))
271 prepare_to_wait(sk_sleep(sk
), &wait
, TASK_INTERRUPTIBLE
);
272 timeout
= MAX_SCHEDULE_TIMEOUT
;
273 if (sk_wait_event(sk
, &timeout
, ctx
->used
)) {
278 finish_wait(sk_sleep(sk
), &wait
);
280 sk_clear_bit(SOCKWQ_ASYNC_WAITDATA
, sk
);
285 static void skcipher_data_wakeup(struct sock
*sk
)
287 struct alg_sock
*ask
= alg_sk(sk
);
288 struct skcipher_ctx
*ctx
= ask
->private;
289 struct socket_wq
*wq
;
295 wq
= rcu_dereference(sk
->sk_wq
);
296 if (skwq_has_sleeper(wq
))
297 wake_up_interruptible_sync_poll(&wq
->wait
, POLLOUT
|
300 sk_wake_async(sk
, SOCK_WAKE_SPACE
, POLL_OUT
);
304 static int skcipher_sendmsg(struct socket
*sock
, struct msghdr
*msg
,
307 struct sock
*sk
= sock
->sk
;
308 struct alg_sock
*ask
= alg_sk(sk
);
309 struct skcipher_ctx
*ctx
= ask
->private;
310 struct crypto_skcipher
*tfm
= crypto_skcipher_reqtfm(&ctx
->req
);
311 unsigned ivsize
= crypto_skcipher_ivsize(tfm
);
312 struct skcipher_sg_list
*sgl
;
313 struct af_alg_control con
= {};
320 if (msg
->msg_controllen
) {
321 err
= af_alg_cmsg_send(msg
, &con
);
337 if (con
.iv
&& con
.iv
->ivlen
!= ivsize
)
344 if (!ctx
->more
&& ctx
->used
)
350 memcpy(ctx
->iv
, con
.iv
->iv
, ivsize
);
354 struct scatterlist
*sg
;
355 unsigned long len
= size
;
359 sgl
= list_entry(ctx
->tsgl
.prev
,
360 struct skcipher_sg_list
, list
);
361 sg
= sgl
->sg
+ sgl
->cur
- 1;
362 len
= min_t(unsigned long, len
,
363 PAGE_SIZE
- sg
->offset
- sg
->length
);
365 err
= memcpy_from_msg(page_address(sg_page(sg
)) +
366 sg
->offset
+ sg
->length
,
372 ctx
->merge
= (sg
->offset
+ sg
->length
) &
381 if (!skcipher_writable(sk
)) {
382 err
= skcipher_wait_for_wmem(sk
, msg
->msg_flags
);
387 len
= min_t(unsigned long, len
, skcipher_sndbuf(sk
));
389 err
= skcipher_alloc_sgl(sk
);
393 sgl
= list_entry(ctx
->tsgl
.prev
, struct skcipher_sg_list
, list
);
396 sg_unmark_end(sg
+ sgl
->cur
- 1);
399 plen
= min_t(size_t, len
, PAGE_SIZE
);
401 sg_assign_page(sg
+ i
, alloc_page(GFP_KERNEL
));
403 if (!sg_page(sg
+ i
))
406 err
= memcpy_from_msg(page_address(sg_page(sg
+ i
)),
409 __free_page(sg_page(sg
+ i
));
410 sg_assign_page(sg
+ i
, NULL
);
420 } while (len
&& sgl
->cur
< MAX_SGL_ENTS
);
423 sg_mark_end(sg
+ sgl
->cur
- 1);
425 ctx
->merge
= plen
& (PAGE_SIZE
- 1);
430 ctx
->more
= msg
->msg_flags
& MSG_MORE
;
433 skcipher_data_wakeup(sk
);
436 return copied
?: err
;
439 static ssize_t
skcipher_sendpage(struct socket
*sock
, struct page
*page
,
440 int offset
, size_t size
, int flags
)
442 struct sock
*sk
= sock
->sk
;
443 struct alg_sock
*ask
= alg_sk(sk
);
444 struct skcipher_ctx
*ctx
= ask
->private;
445 struct skcipher_sg_list
*sgl
;
448 if (flags
& MSG_SENDPAGE_NOTLAST
)
452 if (!ctx
->more
&& ctx
->used
)
458 if (!skcipher_writable(sk
)) {
459 err
= skcipher_wait_for_wmem(sk
, flags
);
464 err
= skcipher_alloc_sgl(sk
);
469 sgl
= list_entry(ctx
->tsgl
.prev
, struct skcipher_sg_list
, list
);
472 sg_unmark_end(sgl
->sg
+ sgl
->cur
- 1);
474 sg_mark_end(sgl
->sg
+ sgl
->cur
);
476 sg_set_page(sgl
->sg
+ sgl
->cur
, page
, size
, offset
);
481 ctx
->more
= flags
& MSG_MORE
;
484 skcipher_data_wakeup(sk
);
490 static int skcipher_all_sg_nents(struct skcipher_ctx
*ctx
)
492 struct skcipher_sg_list
*sgl
;
493 struct scatterlist
*sg
;
496 list_for_each_entry(sgl
, &ctx
->tsgl
, list
) {
502 nents
+= sg_nents(sg
);
507 static int skcipher_recvmsg_async(struct socket
*sock
, struct msghdr
*msg
,
510 struct sock
*sk
= sock
->sk
;
511 struct alg_sock
*ask
= alg_sk(sk
);
512 struct skcipher_ctx
*ctx
= ask
->private;
513 struct skcipher_sg_list
*sgl
;
514 struct scatterlist
*sg
;
515 struct skcipher_async_req
*sreq
;
516 struct skcipher_request
*req
;
517 struct skcipher_async_rsgl
*last_rsgl
= NULL
;
518 unsigned int txbufs
= 0, len
= 0, tx_nents
= skcipher_all_sg_nents(ctx
);
519 unsigned int reqlen
= sizeof(struct skcipher_async_req
) +
520 GET_REQ_SIZE(ctx
) + GET_IV_SIZE(ctx
);
525 req
= kmalloc(reqlen
, GFP_KERNEL
);
529 sreq
= GET_SREQ(req
, ctx
);
530 sreq
->iocb
= msg
->msg_iocb
;
531 memset(&sreq
->first_sgl
, '\0', sizeof(struct skcipher_async_rsgl
));
532 INIT_LIST_HEAD(&sreq
->list
);
533 sreq
->tsg
= kcalloc(tx_nents
, sizeof(*sg
), GFP_KERNEL
);
534 if (unlikely(!sreq
->tsg
)) {
538 sg_init_table(sreq
->tsg
, tx_nents
);
539 memcpy(sreq
->iv
, ctx
->iv
, GET_IV_SIZE(ctx
));
540 skcipher_request_set_tfm(req
, crypto_skcipher_reqtfm(&ctx
->req
));
541 skcipher_request_set_callback(req
, CRYPTO_TFM_REQ_MAY_BACKLOG
,
542 skcipher_async_cb
, sk
);
544 while (iov_iter_count(&msg
->msg_iter
)) {
545 struct skcipher_async_rsgl
*rsgl
;
549 err
= skcipher_wait_for_data(sk
, flags
);
553 sgl
= list_first_entry(&ctx
->tsgl
,
554 struct skcipher_sg_list
, list
);
560 used
= min_t(unsigned long, ctx
->used
,
561 iov_iter_count(&msg
->msg_iter
));
562 used
= min_t(unsigned long, used
, sg
->length
);
564 if (txbufs
== tx_nents
) {
565 struct scatterlist
*tmp
;
567 /* Ran out of tx slots in async request
569 tmp
= kcalloc(tx_nents
* 2, sizeof(*tmp
),
574 sg_init_table(tmp
, tx_nents
* 2);
575 for (x
= 0; x
< tx_nents
; x
++)
576 sg_set_page(&tmp
[x
], sg_page(&sreq
->tsg
[x
]),
578 sreq
->tsg
[x
].offset
);
584 /* Need to take over the tx sgl from ctx
585 * to the asynch req - these sgls will be freed later */
586 sg_set_page(sreq
->tsg
+ txbufs
++, sg_page(sg
), sg
->length
,
589 if (list_empty(&sreq
->list
)) {
590 rsgl
= &sreq
->first_sgl
;
591 list_add_tail(&rsgl
->list
, &sreq
->list
);
593 rsgl
= kmalloc(sizeof(*rsgl
), GFP_KERNEL
);
598 list_add_tail(&rsgl
->list
, &sreq
->list
);
601 used
= af_alg_make_sg(&rsgl
->sgl
, &msg
->msg_iter
, used
);
606 af_alg_link_sg(&last_rsgl
->sgl
, &rsgl
->sgl
);
610 skcipher_pull_sgl(sk
, used
, 0);
611 iov_iter_advance(&msg
->msg_iter
, used
);
615 sg_mark_end(sreq
->tsg
+ txbufs
- 1);
617 skcipher_request_set_crypt(req
, sreq
->tsg
, sreq
->first_sgl
.sgl
.sg
,
619 err
= ctx
->enc
? crypto_skcipher_encrypt(req
) :
620 crypto_skcipher_decrypt(req
);
621 if (err
== -EINPROGRESS
) {
622 atomic_inc(&ctx
->inflight
);
627 skcipher_free_async_sgls(sreq
);
630 skcipher_wmem_wakeup(sk
);
635 static int skcipher_recvmsg_sync(struct socket
*sock
, struct msghdr
*msg
,
638 struct sock
*sk
= sock
->sk
;
639 struct alg_sock
*ask
= alg_sk(sk
);
640 struct skcipher_ctx
*ctx
= ask
->private;
641 unsigned bs
= crypto_skcipher_blocksize(crypto_skcipher_reqtfm(
643 struct skcipher_sg_list
*sgl
;
644 struct scatterlist
*sg
;
650 while (msg_data_left(msg
)) {
652 err
= skcipher_wait_for_data(sk
, flags
);
657 used
= min_t(unsigned long, ctx
->used
, msg_data_left(msg
));
659 used
= af_alg_make_sg(&ctx
->rsgl
, &msg
->msg_iter
, used
);
664 if (ctx
->more
|| used
< ctx
->used
)
671 sgl
= list_first_entry(&ctx
->tsgl
,
672 struct skcipher_sg_list
, list
);
678 skcipher_request_set_crypt(&ctx
->req
, sg
, ctx
->rsgl
.sg
, used
,
681 err
= af_alg_wait_for_completion(
683 crypto_skcipher_encrypt(&ctx
->req
) :
684 crypto_skcipher_decrypt(&ctx
->req
),
688 af_alg_free_sg(&ctx
->rsgl
);
694 skcipher_pull_sgl(sk
, used
, 1);
695 iov_iter_advance(&msg
->msg_iter
, used
);
701 skcipher_wmem_wakeup(sk
);
704 return copied
?: err
;
707 static int skcipher_recvmsg(struct socket
*sock
, struct msghdr
*msg
,
708 size_t ignored
, int flags
)
710 return (msg
->msg_iocb
&& !is_sync_kiocb(msg
->msg_iocb
)) ?
711 skcipher_recvmsg_async(sock
, msg
, flags
) :
712 skcipher_recvmsg_sync(sock
, msg
, flags
);
715 static unsigned int skcipher_poll(struct file
*file
, struct socket
*sock
,
718 struct sock
*sk
= sock
->sk
;
719 struct alg_sock
*ask
= alg_sk(sk
);
720 struct skcipher_ctx
*ctx
= ask
->private;
723 sock_poll_wait(file
, sk_sleep(sk
), wait
);
727 mask
|= POLLIN
| POLLRDNORM
;
729 if (skcipher_writable(sk
))
730 mask
|= POLLOUT
| POLLWRNORM
| POLLWRBAND
;
735 static struct proto_ops algif_skcipher_ops
= {
738 .connect
= sock_no_connect
,
739 .socketpair
= sock_no_socketpair
,
740 .getname
= sock_no_getname
,
741 .ioctl
= sock_no_ioctl
,
742 .listen
= sock_no_listen
,
743 .shutdown
= sock_no_shutdown
,
744 .getsockopt
= sock_no_getsockopt
,
745 .mmap
= sock_no_mmap
,
746 .bind
= sock_no_bind
,
747 .accept
= sock_no_accept
,
748 .setsockopt
= sock_no_setsockopt
,
750 .release
= af_alg_release
,
751 .sendmsg
= skcipher_sendmsg
,
752 .sendpage
= skcipher_sendpage
,
753 .recvmsg
= skcipher_recvmsg
,
754 .poll
= skcipher_poll
,
757 static int skcipher_check_key(struct socket
*sock
)
761 struct alg_sock
*pask
;
762 struct skcipher_tfm
*tfm
;
763 struct sock
*sk
= sock
->sk
;
764 struct alg_sock
*ask
= alg_sk(sk
);
771 pask
= alg_sk(ask
->parent
);
775 lock_sock_nested(psk
, SINGLE_DEPTH_NESTING
);
795 static int skcipher_sendmsg_nokey(struct socket
*sock
, struct msghdr
*msg
,
800 err
= skcipher_check_key(sock
);
804 return skcipher_sendmsg(sock
, msg
, size
);
807 static ssize_t
skcipher_sendpage_nokey(struct socket
*sock
, struct page
*page
,
808 int offset
, size_t size
, int flags
)
812 err
= skcipher_check_key(sock
);
816 return skcipher_sendpage(sock
, page
, offset
, size
, flags
);
819 static int skcipher_recvmsg_nokey(struct socket
*sock
, struct msghdr
*msg
,
820 size_t ignored
, int flags
)
824 err
= skcipher_check_key(sock
);
828 return skcipher_recvmsg(sock
, msg
, ignored
, flags
);
831 static struct proto_ops algif_skcipher_ops_nokey
= {
834 .connect
= sock_no_connect
,
835 .socketpair
= sock_no_socketpair
,
836 .getname
= sock_no_getname
,
837 .ioctl
= sock_no_ioctl
,
838 .listen
= sock_no_listen
,
839 .shutdown
= sock_no_shutdown
,
840 .getsockopt
= sock_no_getsockopt
,
841 .mmap
= sock_no_mmap
,
842 .bind
= sock_no_bind
,
843 .accept
= sock_no_accept
,
844 .setsockopt
= sock_no_setsockopt
,
846 .release
= af_alg_release
,
847 .sendmsg
= skcipher_sendmsg_nokey
,
848 .sendpage
= skcipher_sendpage_nokey
,
849 .recvmsg
= skcipher_recvmsg_nokey
,
850 .poll
= skcipher_poll
,
853 static void *skcipher_bind(const char *name
, u32 type
, u32 mask
)
855 struct skcipher_tfm
*tfm
;
856 struct crypto_skcipher
*skcipher
;
858 tfm
= kzalloc(sizeof(*tfm
), GFP_KERNEL
);
860 return ERR_PTR(-ENOMEM
);
862 skcipher
= crypto_alloc_skcipher(name
, type
, mask
);
863 if (IS_ERR(skcipher
)) {
865 return ERR_CAST(skcipher
);
868 tfm
->skcipher
= skcipher
;
873 static void skcipher_release(void *private)
875 struct skcipher_tfm
*tfm
= private;
877 crypto_free_skcipher(tfm
->skcipher
);
881 static int skcipher_setkey(void *private, const u8
*key
, unsigned int keylen
)
883 struct skcipher_tfm
*tfm
= private;
886 err
= crypto_skcipher_setkey(tfm
->skcipher
, key
, keylen
);
892 static void skcipher_wait(struct sock
*sk
)
894 struct alg_sock
*ask
= alg_sk(sk
);
895 struct skcipher_ctx
*ctx
= ask
->private;
898 while (atomic_read(&ctx
->inflight
) && ctr
++ < 100)
902 static void skcipher_sock_destruct(struct sock
*sk
)
904 struct alg_sock
*ask
= alg_sk(sk
);
905 struct skcipher_ctx
*ctx
= ask
->private;
906 struct crypto_skcipher
*tfm
= crypto_skcipher_reqtfm(&ctx
->req
);
908 if (atomic_read(&ctx
->inflight
))
911 skcipher_free_sgl(sk
);
912 sock_kzfree_s(sk
, ctx
->iv
, crypto_skcipher_ivsize(tfm
));
913 sock_kfree_s(sk
, ctx
, ctx
->len
);
914 af_alg_release_parent(sk
);
917 static int skcipher_accept_parent_nokey(void *private, struct sock
*sk
)
919 struct skcipher_ctx
*ctx
;
920 struct alg_sock
*ask
= alg_sk(sk
);
921 struct skcipher_tfm
*tfm
= private;
922 struct crypto_skcipher
*skcipher
= tfm
->skcipher
;
923 unsigned int len
= sizeof(*ctx
) + crypto_skcipher_reqsize(skcipher
);
925 ctx
= sock_kmalloc(sk
, len
, GFP_KERNEL
);
929 ctx
->iv
= sock_kmalloc(sk
, crypto_skcipher_ivsize(skcipher
),
932 sock_kfree_s(sk
, ctx
, len
);
936 memset(ctx
->iv
, 0, crypto_skcipher_ivsize(skcipher
));
938 INIT_LIST_HEAD(&ctx
->tsgl
);
944 atomic_set(&ctx
->inflight
, 0);
945 af_alg_init_completion(&ctx
->completion
);
949 skcipher_request_set_tfm(&ctx
->req
, skcipher
);
950 skcipher_request_set_callback(&ctx
->req
, CRYPTO_TFM_REQ_MAY_BACKLOG
,
951 af_alg_complete
, &ctx
->completion
);
953 sk
->sk_destruct
= skcipher_sock_destruct
;
958 static int skcipher_accept_parent(void *private, struct sock
*sk
)
960 struct skcipher_tfm
*tfm
= private;
962 if (!tfm
->has_key
&& crypto_skcipher_has_setkey(tfm
->skcipher
))
965 return skcipher_accept_parent_nokey(private, sk
);
968 static const struct af_alg_type algif_type_skcipher
= {
969 .bind
= skcipher_bind
,
970 .release
= skcipher_release
,
971 .setkey
= skcipher_setkey
,
972 .accept
= skcipher_accept_parent
,
973 .accept_nokey
= skcipher_accept_parent_nokey
,
974 .ops
= &algif_skcipher_ops
,
975 .ops_nokey
= &algif_skcipher_ops_nokey
,
980 static int __init
algif_skcipher_init(void)
982 return af_alg_register_type(&algif_type_skcipher
);
985 static void __exit
algif_skcipher_exit(void)
987 int err
= af_alg_unregister_type(&algif_type_skcipher
);
991 module_init(algif_skcipher_init
);
992 module_exit(algif_skcipher_exit
);
993 MODULE_LICENSE("GPL");