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)
13 * The following concept of the memory management is used:
15 * The kernel maintains two SGLs, the TX SGL and the RX SGL. The TX SGL is
16 * filled by user space with the data submitted via sendpage/sendmsg. Filling
17 * up the TX SGL does not cause a crypto operation -- the data will only be
18 * tracked by the kernel. Upon receipt of one recvmsg call, the caller must
19 * provide a buffer which is tracked with the RX SGL.
21 * During the processing of the recvmsg operation, the cipher request is
22 * allocated and prepared. As part of the recvmsg operation, the processed
23 * TX buffers are extracted from the TX SGL into a separate SGL.
25 * After the completion of the crypto operation, the RX SGL and the cipher
26 * request is released. The extracted TX SGL parts are released together with
30 #include <crypto/scatterwalk.h>
31 #include <crypto/skcipher.h>
32 #include <crypto/if_alg.h>
33 #include <linux/init.h>
34 #include <linux/list.h>
35 #include <linux/kernel.h>
37 #include <linux/module.h>
38 #include <linux/net.h>
41 static int skcipher_sendmsg(struct socket
*sock
, struct msghdr
*msg
,
44 struct sock
*sk
= sock
->sk
;
45 struct alg_sock
*ask
= alg_sk(sk
);
46 struct sock
*psk
= ask
->parent
;
47 struct alg_sock
*pask
= alg_sk(psk
);
48 struct crypto_skcipher
*tfm
= pask
->private;
49 unsigned ivsize
= crypto_skcipher_ivsize(tfm
);
51 return af_alg_sendmsg(sock
, msg
, size
, ivsize
);
54 static int _skcipher_recvmsg(struct socket
*sock
, struct msghdr
*msg
,
55 size_t ignored
, int flags
)
57 struct sock
*sk
= sock
->sk
;
58 struct alg_sock
*ask
= alg_sk(sk
);
59 struct sock
*psk
= ask
->parent
;
60 struct alg_sock
*pask
= alg_sk(psk
);
61 struct af_alg_ctx
*ctx
= ask
->private;
62 struct crypto_skcipher
*tfm
= pask
->private;
63 unsigned int bs
= crypto_skcipher_blocksize(tfm
);
64 struct af_alg_async_req
*areq
;
69 err
= af_alg_wait_for_data(sk
, flags
);
74 /* Allocate cipher request for current operation. */
75 areq
= af_alg_alloc_areq(sk
, sizeof(struct af_alg_async_req
) +
76 crypto_skcipher_reqsize(tfm
));
80 /* convert iovecs of output buffers into RX SGL */
81 err
= af_alg_get_rsgl(sk
, msg
, flags
, areq
, -1, &len
);
85 /* Process only as much RX buffers for which we have TX data */
90 * If more buffers are to be expected to be processed, process only
91 * full block size buffers.
93 if (ctx
->more
|| len
< ctx
->used
)
97 * Create a per request TX SGL for this request which tracks the
98 * SG entries from the global TX SGL.
100 areq
->tsgl_entries
= af_alg_count_tsgl(sk
, len
, 0);
101 if (!areq
->tsgl_entries
)
102 areq
->tsgl_entries
= 1;
103 areq
->tsgl
= sock_kmalloc(sk
, sizeof(*areq
->tsgl
) * areq
->tsgl_entries
,
109 sg_init_table(areq
->tsgl
, areq
->tsgl_entries
);
110 af_alg_pull_tsgl(sk
, len
, areq
->tsgl
, 0);
112 /* Initialize the crypto operation */
113 skcipher_request_set_tfm(&areq
->cra_u
.skcipher_req
, tfm
);
114 skcipher_request_set_crypt(&areq
->cra_u
.skcipher_req
, areq
->tsgl
,
115 areq
->first_rsgl
.sgl
.sg
, len
, ctx
->iv
);
117 if (msg
->msg_iocb
&& !is_sync_kiocb(msg
->msg_iocb
)) {
120 areq
->iocb
= msg
->msg_iocb
;
122 /* Remember output size that will be generated. */
125 skcipher_request_set_callback(&areq
->cra_u
.skcipher_req
,
126 CRYPTO_TFM_REQ_MAY_SLEEP
,
127 af_alg_async_cb
, areq
);
129 crypto_skcipher_encrypt(&areq
->cra_u
.skcipher_req
) :
130 crypto_skcipher_decrypt(&areq
->cra_u
.skcipher_req
);
132 /* AIO operation in progress */
133 if (err
== -EINPROGRESS
|| err
== -EBUSY
)
138 /* Synchronous operation */
139 skcipher_request_set_callback(&areq
->cra_u
.skcipher_req
,
140 CRYPTO_TFM_REQ_MAY_SLEEP
|
141 CRYPTO_TFM_REQ_MAY_BACKLOG
,
142 crypto_req_done
, &ctx
->wait
);
143 err
= crypto_wait_req(ctx
->enc
?
144 crypto_skcipher_encrypt(&areq
->cra_u
.skcipher_req
) :
145 crypto_skcipher_decrypt(&areq
->cra_u
.skcipher_req
),
151 af_alg_free_resources(areq
);
153 return err
? err
: len
;
156 static int skcipher_recvmsg(struct socket
*sock
, struct msghdr
*msg
,
157 size_t ignored
, int flags
)
159 struct sock
*sk
= sock
->sk
;
163 while (msg_data_left(msg
)) {
164 int err
= _skcipher_recvmsg(sock
, msg
, ignored
, flags
);
167 * This error covers -EIOCBQUEUED which implies that we can
168 * only handle one AIO request. If the caller wants to have
169 * multiple AIO requests in parallel, he must make multiple
170 * separate AIO calls.
172 * Also return the error if no data has been processed so far.
175 if (err
== -EIOCBQUEUED
|| !ret
)
184 af_alg_wmem_wakeup(sk
);
189 static struct proto_ops algif_skcipher_ops
= {
192 .connect
= sock_no_connect
,
193 .socketpair
= sock_no_socketpair
,
194 .getname
= sock_no_getname
,
195 .ioctl
= sock_no_ioctl
,
196 .listen
= sock_no_listen
,
197 .shutdown
= sock_no_shutdown
,
198 .getsockopt
= sock_no_getsockopt
,
199 .mmap
= sock_no_mmap
,
200 .bind
= sock_no_bind
,
201 .accept
= sock_no_accept
,
202 .setsockopt
= sock_no_setsockopt
,
204 .release
= af_alg_release
,
205 .sendmsg
= skcipher_sendmsg
,
206 .sendpage
= af_alg_sendpage
,
207 .recvmsg
= skcipher_recvmsg
,
211 static int skcipher_check_key(struct socket
*sock
)
215 struct alg_sock
*pask
;
216 struct crypto_skcipher
*tfm
;
217 struct sock
*sk
= sock
->sk
;
218 struct alg_sock
*ask
= alg_sk(sk
);
225 pask
= alg_sk(ask
->parent
);
229 lock_sock_nested(psk
, SINGLE_DEPTH_NESTING
);
230 if (crypto_skcipher_get_flags(tfm
) & CRYPTO_TFM_NEED_KEY
)
249 static int skcipher_sendmsg_nokey(struct socket
*sock
, struct msghdr
*msg
,
254 err
= skcipher_check_key(sock
);
258 return skcipher_sendmsg(sock
, msg
, size
);
261 static ssize_t
skcipher_sendpage_nokey(struct socket
*sock
, struct page
*page
,
262 int offset
, size_t size
, int flags
)
266 err
= skcipher_check_key(sock
);
270 return af_alg_sendpage(sock
, page
, offset
, size
, flags
);
273 static int skcipher_recvmsg_nokey(struct socket
*sock
, struct msghdr
*msg
,
274 size_t ignored
, int flags
)
278 err
= skcipher_check_key(sock
);
282 return skcipher_recvmsg(sock
, msg
, ignored
, flags
);
285 static struct proto_ops algif_skcipher_ops_nokey
= {
288 .connect
= sock_no_connect
,
289 .socketpair
= sock_no_socketpair
,
290 .getname
= sock_no_getname
,
291 .ioctl
= sock_no_ioctl
,
292 .listen
= sock_no_listen
,
293 .shutdown
= sock_no_shutdown
,
294 .getsockopt
= sock_no_getsockopt
,
295 .mmap
= sock_no_mmap
,
296 .bind
= sock_no_bind
,
297 .accept
= sock_no_accept
,
298 .setsockopt
= sock_no_setsockopt
,
300 .release
= af_alg_release
,
301 .sendmsg
= skcipher_sendmsg_nokey
,
302 .sendpage
= skcipher_sendpage_nokey
,
303 .recvmsg
= skcipher_recvmsg_nokey
,
307 static void *skcipher_bind(const char *name
, u32 type
, u32 mask
)
309 return crypto_alloc_skcipher(name
, type
, mask
);
312 static void skcipher_release(void *private)
314 crypto_free_skcipher(private);
317 static int skcipher_setkey(void *private, const u8
*key
, unsigned int keylen
)
319 return crypto_skcipher_setkey(private, key
, keylen
);
322 static void skcipher_sock_destruct(struct sock
*sk
)
324 struct alg_sock
*ask
= alg_sk(sk
);
325 struct af_alg_ctx
*ctx
= ask
->private;
326 struct sock
*psk
= ask
->parent
;
327 struct alg_sock
*pask
= alg_sk(psk
);
328 struct crypto_skcipher
*tfm
= pask
->private;
330 af_alg_pull_tsgl(sk
, ctx
->used
, NULL
, 0);
331 sock_kzfree_s(sk
, ctx
->iv
, crypto_skcipher_ivsize(tfm
));
332 sock_kfree_s(sk
, ctx
, ctx
->len
);
333 af_alg_release_parent(sk
);
336 static int skcipher_accept_parent_nokey(void *private, struct sock
*sk
)
338 struct af_alg_ctx
*ctx
;
339 struct alg_sock
*ask
= alg_sk(sk
);
340 struct crypto_skcipher
*tfm
= private;
341 unsigned int len
= sizeof(*ctx
);
343 ctx
= sock_kmalloc(sk
, len
, GFP_KERNEL
);
347 ctx
->iv
= sock_kmalloc(sk
, crypto_skcipher_ivsize(tfm
),
350 sock_kfree_s(sk
, ctx
, len
);
354 memset(ctx
->iv
, 0, crypto_skcipher_ivsize(tfm
));
356 INIT_LIST_HEAD(&ctx
->tsgl_list
);
359 atomic_set(&ctx
->rcvused
, 0);
363 crypto_init_wait(&ctx
->wait
);
367 sk
->sk_destruct
= skcipher_sock_destruct
;
372 static int skcipher_accept_parent(void *private, struct sock
*sk
)
374 struct crypto_skcipher
*tfm
= private;
376 if (crypto_skcipher_get_flags(tfm
) & CRYPTO_TFM_NEED_KEY
)
379 return skcipher_accept_parent_nokey(private, sk
);
382 static const struct af_alg_type algif_type_skcipher
= {
383 .bind
= skcipher_bind
,
384 .release
= skcipher_release
,
385 .setkey
= skcipher_setkey
,
386 .accept
= skcipher_accept_parent
,
387 .accept_nokey
= skcipher_accept_parent_nokey
,
388 .ops
= &algif_skcipher_ops
,
389 .ops_nokey
= &algif_skcipher_ops_nokey
,
394 static int __init
algif_skcipher_init(void)
396 return af_alg_register_type(&algif_type_skcipher
);
399 static void __exit
algif_skcipher_exit(void)
401 int err
= af_alg_unregister_type(&algif_type_skcipher
);
405 module_init(algif_skcipher_init
);
406 module_exit(algif_skcipher_exit
);
407 MODULE_LICENSE("GPL");