]>
Commit | Line | Data |
---|---|---|
8ff59090 HX |
1 | /* |
2 | * algif_skcipher: User-space interface for skcipher algorithms | |
3 | * | |
4 | * This file provides the user-space API for symmetric key ciphers. | |
5 | * | |
6 | * Copyright (c) 2010 Herbert Xu <[email protected]> | |
7 | * | |
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) | |
11 | * any later version. | |
12 | * | |
e870456d SM |
13 | * The following concept of the memory management is used: |
14 | * | |
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. | |
20 | * | |
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. | |
24 | * | |
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 | |
27 | * the RX SGL release. | |
8ff59090 HX |
28 | */ |
29 | ||
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> | |
36 | #include <linux/mm.h> | |
37 | #include <linux/module.h> | |
38 | #include <linux/net.h> | |
39 | #include <net/sock.h> | |
40 | ||
1b784140 YX |
41 | static int skcipher_sendmsg(struct socket *sock, struct msghdr *msg, |
42 | size_t size) | |
8ff59090 HX |
43 | { |
44 | struct sock *sk = sock->sk; | |
45 | struct alg_sock *ask = alg_sk(sk); | |
6454c2b8 HX |
46 | struct sock *psk = ask->parent; |
47 | struct alg_sock *pask = alg_sk(psk); | |
f8d33fac | 48 | struct crypto_skcipher *tfm = pask->private; |
0d96e4ba | 49 | unsigned ivsize = crypto_skcipher_ivsize(tfm); |
8ff59090 | 50 | |
2d97591e | 51 | return af_alg_sendmsg(sock, msg, size, ivsize); |
a596999b TS |
52 | } |
53 | ||
e870456d SM |
54 | static int _skcipher_recvmsg(struct socket *sock, struct msghdr *msg, |
55 | size_t ignored, int flags) | |
a596999b TS |
56 | { |
57 | struct sock *sk = sock->sk; | |
58 | struct alg_sock *ask = alg_sk(sk); | |
ec69bbfb HX |
59 | struct sock *psk = ask->parent; |
60 | struct alg_sock *pask = alg_sk(psk); | |
2d97591e | 61 | struct af_alg_ctx *ctx = ask->private; |
f8d33fac | 62 | struct crypto_skcipher *tfm = pask->private; |
e870456d | 63 | unsigned int bs = crypto_skcipher_blocksize(tfm); |
2d97591e | 64 | struct af_alg_async_req *areq; |
e870456d SM |
65 | int err = 0; |
66 | size_t len = 0; | |
ec69bbfb | 67 | |
11edb555 SM |
68 | if (!ctx->used) { |
69 | err = af_alg_wait_for_data(sk, flags); | |
70 | if (err) | |
71 | return err; | |
72 | } | |
73 | ||
e870456d | 74 | /* Allocate cipher request for current operation. */ |
2d97591e SM |
75 | areq = af_alg_alloc_areq(sk, sizeof(struct af_alg_async_req) + |
76 | crypto_skcipher_reqsize(tfm)); | |
77 | if (IS_ERR(areq)) | |
78 | return PTR_ERR(areq); | |
a596999b | 79 | |
e870456d | 80 | /* convert iovecs of output buffers into RX SGL */ |
2d97591e SM |
81 | err = af_alg_get_rsgl(sk, msg, flags, areq, -1, &len); |
82 | if (err) | |
83 | goto free; | |
a596999b | 84 | |
e870456d SM |
85 | /* Process only as much RX buffers for which we have TX data */ |
86 | if (len > ctx->used) | |
87 | len = ctx->used; | |
88 | ||
89 | /* | |
90 | * If more buffers are to be expected to be processed, process only | |
91 | * full block size buffers. | |
92 | */ | |
93 | if (ctx->more || len < ctx->used) | |
94 | len -= len % bs; | |
95 | ||
96 | /* | |
97 | * Create a per request TX SGL for this request which tracks the | |
98 | * SG entries from the global TX SGL. | |
99 | */ | |
2d97591e | 100 | areq->tsgl_entries = af_alg_count_tsgl(sk, len, 0); |
e870456d SM |
101 | if (!areq->tsgl_entries) |
102 | areq->tsgl_entries = 1; | |
76e43e37 KC |
103 | areq->tsgl = sock_kmalloc(sk, array_size(sizeof(*areq->tsgl), |
104 | areq->tsgl_entries), | |
e870456d SM |
105 | GFP_KERNEL); |
106 | if (!areq->tsgl) { | |
107 | err = -ENOMEM; | |
108 | goto free; | |
109 | } | |
110 | sg_init_table(areq->tsgl, areq->tsgl_entries); | |
2d97591e | 111 | af_alg_pull_tsgl(sk, len, areq->tsgl, 0); |
e870456d SM |
112 | |
113 | /* Initialize the crypto operation */ | |
2d97591e SM |
114 | skcipher_request_set_tfm(&areq->cra_u.skcipher_req, tfm); |
115 | skcipher_request_set_crypt(&areq->cra_u.skcipher_req, areq->tsgl, | |
116 | areq->first_rsgl.sgl.sg, len, ctx->iv); | |
e870456d SM |
117 | |
118 | if (msg->msg_iocb && !is_sync_kiocb(msg->msg_iocb)) { | |
119 | /* AIO operation */ | |
7d2c3f54 | 120 | sock_hold(sk); |
e870456d | 121 | areq->iocb = msg->msg_iocb; |
d53c5135 SM |
122 | |
123 | /* Remember output size that will be generated. */ | |
124 | areq->outlen = len; | |
125 | ||
2d97591e | 126 | skcipher_request_set_callback(&areq->cra_u.skcipher_req, |
e870456d | 127 | CRYPTO_TFM_REQ_MAY_SLEEP, |
2d97591e SM |
128 | af_alg_async_cb, areq); |
129 | err = ctx->enc ? | |
130 | crypto_skcipher_encrypt(&areq->cra_u.skcipher_req) : | |
131 | crypto_skcipher_decrypt(&areq->cra_u.skcipher_req); | |
7d2c3f54 SM |
132 | |
133 | /* AIO operation in progress */ | |
d53c5135 | 134 | if (err == -EINPROGRESS || err == -EBUSY) |
7d2c3f54 | 135 | return -EIOCBQUEUED; |
7d2c3f54 SM |
136 | |
137 | sock_put(sk); | |
e870456d SM |
138 | } else { |
139 | /* Synchronous operation */ | |
2d97591e | 140 | skcipher_request_set_callback(&areq->cra_u.skcipher_req, |
e870456d SM |
141 | CRYPTO_TFM_REQ_MAY_SLEEP | |
142 | CRYPTO_TFM_REQ_MAY_BACKLOG, | |
2c3f8b16 GBY |
143 | crypto_req_done, &ctx->wait); |
144 | err = crypto_wait_req(ctx->enc ? | |
2d97591e SM |
145 | crypto_skcipher_encrypt(&areq->cra_u.skcipher_req) : |
146 | crypto_skcipher_decrypt(&areq->cra_u.skcipher_req), | |
2c3f8b16 | 147 | &ctx->wait); |
e870456d | 148 | } |
033f46b3 | 149 | |
e870456d | 150 | |
a596999b | 151 | free: |
7d2c3f54 | 152 | af_alg_free_resources(areq); |
e870456d SM |
153 | |
154 | return err ? err : len; | |
a596999b TS |
155 | } |
156 | ||
e870456d SM |
157 | static int skcipher_recvmsg(struct socket *sock, struct msghdr *msg, |
158 | size_t ignored, int flags) | |
8ff59090 HX |
159 | { |
160 | struct sock *sk = sock->sk; | |
e870456d | 161 | int ret = 0; |
8ff59090 HX |
162 | |
163 | lock_sock(sk); | |
01e97e65 | 164 | while (msg_data_left(msg)) { |
e870456d SM |
165 | int err = _skcipher_recvmsg(sock, msg, ignored, flags); |
166 | ||
167 | /* | |
168 | * This error covers -EIOCBQUEUED which implies that we can | |
169 | * only handle one AIO request. If the caller wants to have | |
170 | * multiple AIO requests in parallel, he must make multiple | |
171 | * separate AIO calls. | |
5703c826 SM |
172 | * |
173 | * Also return the error if no data has been processed so far. | |
e870456d SM |
174 | */ |
175 | if (err <= 0) { | |
5703c826 | 176 | if (err == -EIOCBQUEUED || !ret) |
e870456d SM |
177 | ret = err; |
178 | goto out; | |
1d10eb2f AV |
179 | } |
180 | ||
e870456d | 181 | ret += err; |
8ff59090 HX |
182 | } |
183 | ||
e870456d | 184 | out: |
2d97591e | 185 | af_alg_wmem_wakeup(sk); |
8ff59090 | 186 | release_sock(sk); |
e870456d | 187 | return ret; |
a596999b | 188 | } |
8ff59090 | 189 | |
8ff59090 HX |
190 | static struct proto_ops algif_skcipher_ops = { |
191 | .family = PF_ALG, | |
192 | ||
193 | .connect = sock_no_connect, | |
194 | .socketpair = sock_no_socketpair, | |
195 | .getname = sock_no_getname, | |
196 | .ioctl = sock_no_ioctl, | |
197 | .listen = sock_no_listen, | |
198 | .shutdown = sock_no_shutdown, | |
199 | .getsockopt = sock_no_getsockopt, | |
200 | .mmap = sock_no_mmap, | |
201 | .bind = sock_no_bind, | |
202 | .accept = sock_no_accept, | |
203 | .setsockopt = sock_no_setsockopt, | |
204 | ||
205 | .release = af_alg_release, | |
206 | .sendmsg = skcipher_sendmsg, | |
2d97591e | 207 | .sendpage = af_alg_sendpage, |
8ff59090 | 208 | .recvmsg = skcipher_recvmsg, |
a11e1d43 | 209 | .poll = af_alg_poll, |
8ff59090 HX |
210 | }; |
211 | ||
a0fa2d03 HX |
212 | static int skcipher_check_key(struct socket *sock) |
213 | { | |
1822793a | 214 | int err = 0; |
a0fa2d03 HX |
215 | struct sock *psk; |
216 | struct alg_sock *pask; | |
f8d33fac | 217 | struct crypto_skcipher *tfm; |
a0fa2d03 HX |
218 | struct sock *sk = sock->sk; |
219 | struct alg_sock *ask = alg_sk(sk); | |
220 | ||
1822793a | 221 | lock_sock(sk); |
a0fa2d03 | 222 | if (ask->refcnt) |
1822793a | 223 | goto unlock_child; |
a0fa2d03 HX |
224 | |
225 | psk = ask->parent; | |
226 | pask = alg_sk(ask->parent); | |
227 | tfm = pask->private; | |
228 | ||
229 | err = -ENOKEY; | |
1822793a | 230 | lock_sock_nested(psk, SINGLE_DEPTH_NESTING); |
f8d33fac | 231 | if (crypto_skcipher_get_flags(tfm) & CRYPTO_TFM_NEED_KEY) |
a0fa2d03 HX |
232 | goto unlock; |
233 | ||
234 | if (!pask->refcnt++) | |
235 | sock_hold(psk); | |
236 | ||
237 | ask->refcnt = 1; | |
238 | sock_put(psk); | |
239 | ||
240 | err = 0; | |
241 | ||
242 | unlock: | |
243 | release_sock(psk); | |
1822793a HX |
244 | unlock_child: |
245 | release_sock(sk); | |
a0fa2d03 HX |
246 | |
247 | return err; | |
248 | } | |
249 | ||
250 | static int skcipher_sendmsg_nokey(struct socket *sock, struct msghdr *msg, | |
251 | size_t size) | |
252 | { | |
253 | int err; | |
254 | ||
255 | err = skcipher_check_key(sock); | |
256 | if (err) | |
257 | return err; | |
258 | ||
259 | return skcipher_sendmsg(sock, msg, size); | |
260 | } | |
261 | ||
262 | static ssize_t skcipher_sendpage_nokey(struct socket *sock, struct page *page, | |
263 | int offset, size_t size, int flags) | |
264 | { | |
265 | int err; | |
266 | ||
267 | err = skcipher_check_key(sock); | |
268 | if (err) | |
269 | return err; | |
270 | ||
2d97591e | 271 | return af_alg_sendpage(sock, page, offset, size, flags); |
a0fa2d03 HX |
272 | } |
273 | ||
274 | static int skcipher_recvmsg_nokey(struct socket *sock, struct msghdr *msg, | |
275 | size_t ignored, int flags) | |
276 | { | |
277 | int err; | |
278 | ||
279 | err = skcipher_check_key(sock); | |
280 | if (err) | |
281 | return err; | |
282 | ||
283 | return skcipher_recvmsg(sock, msg, ignored, flags); | |
284 | } | |
285 | ||
286 | static struct proto_ops algif_skcipher_ops_nokey = { | |
287 | .family = PF_ALG, | |
288 | ||
289 | .connect = sock_no_connect, | |
290 | .socketpair = sock_no_socketpair, | |
291 | .getname = sock_no_getname, | |
292 | .ioctl = sock_no_ioctl, | |
293 | .listen = sock_no_listen, | |
294 | .shutdown = sock_no_shutdown, | |
295 | .getsockopt = sock_no_getsockopt, | |
296 | .mmap = sock_no_mmap, | |
297 | .bind = sock_no_bind, | |
298 | .accept = sock_no_accept, | |
299 | .setsockopt = sock_no_setsockopt, | |
300 | ||
301 | .release = af_alg_release, | |
302 | .sendmsg = skcipher_sendmsg_nokey, | |
303 | .sendpage = skcipher_sendpage_nokey, | |
304 | .recvmsg = skcipher_recvmsg_nokey, | |
a11e1d43 | 305 | .poll = af_alg_poll, |
a0fa2d03 HX |
306 | }; |
307 | ||
8ff59090 HX |
308 | static void *skcipher_bind(const char *name, u32 type, u32 mask) |
309 | { | |
f8d33fac | 310 | return crypto_alloc_skcipher(name, type, mask); |
8ff59090 HX |
311 | } |
312 | ||
313 | static void skcipher_release(void *private) | |
314 | { | |
f8d33fac | 315 | crypto_free_skcipher(private); |
8ff59090 HX |
316 | } |
317 | ||
318 | static int skcipher_setkey(void *private, const u8 *key, unsigned int keylen) | |
319 | { | |
f8d33fac | 320 | return crypto_skcipher_setkey(private, key, keylen); |
8ff59090 HX |
321 | } |
322 | ||
323 | static void skcipher_sock_destruct(struct sock *sk) | |
324 | { | |
325 | struct alg_sock *ask = alg_sk(sk); | |
2d97591e | 326 | struct af_alg_ctx *ctx = ask->private; |
e870456d SM |
327 | struct sock *psk = ask->parent; |
328 | struct alg_sock *pask = alg_sk(psk); | |
f8d33fac | 329 | struct crypto_skcipher *tfm = pask->private; |
a596999b | 330 | |
2d97591e | 331 | af_alg_pull_tsgl(sk, ctx->used, NULL, 0); |
0d96e4ba | 332 | sock_kzfree_s(sk, ctx->iv, crypto_skcipher_ivsize(tfm)); |
8ff59090 HX |
333 | sock_kfree_s(sk, ctx, ctx->len); |
334 | af_alg_release_parent(sk); | |
335 | } | |
336 | ||
d7b65aee | 337 | static int skcipher_accept_parent_nokey(void *private, struct sock *sk) |
8ff59090 | 338 | { |
2d97591e | 339 | struct af_alg_ctx *ctx; |
8ff59090 | 340 | struct alg_sock *ask = alg_sk(sk); |
f8d33fac | 341 | struct crypto_skcipher *tfm = private; |
e870456d | 342 | unsigned int len = sizeof(*ctx); |
8ff59090 HX |
343 | |
344 | ctx = sock_kmalloc(sk, len, GFP_KERNEL); | |
345 | if (!ctx) | |
346 | return -ENOMEM; | |
347 | ||
f8d33fac | 348 | ctx->iv = sock_kmalloc(sk, crypto_skcipher_ivsize(tfm), |
8ff59090 HX |
349 | GFP_KERNEL); |
350 | if (!ctx->iv) { | |
351 | sock_kfree_s(sk, ctx, len); | |
352 | return -ENOMEM; | |
353 | } | |
354 | ||
f8d33fac | 355 | memset(ctx->iv, 0, crypto_skcipher_ivsize(tfm)); |
8ff59090 | 356 | |
e870456d | 357 | INIT_LIST_HEAD(&ctx->tsgl_list); |
8ff59090 HX |
358 | ctx->len = len; |
359 | ctx->used = 0; | |
af955bf1 | 360 | atomic_set(&ctx->rcvused, 0); |
8ff59090 HX |
361 | ctx->more = 0; |
362 | ctx->merge = 0; | |
363 | ctx->enc = 0; | |
2c3f8b16 | 364 | crypto_init_wait(&ctx->wait); |
8ff59090 HX |
365 | |
366 | ask->private = ctx; | |
367 | ||
8ff59090 HX |
368 | sk->sk_destruct = skcipher_sock_destruct; |
369 | ||
370 | return 0; | |
371 | } | |
372 | ||
a0fa2d03 HX |
373 | static int skcipher_accept_parent(void *private, struct sock *sk) |
374 | { | |
f8d33fac | 375 | struct crypto_skcipher *tfm = private; |
a0fa2d03 | 376 | |
f8d33fac | 377 | if (crypto_skcipher_get_flags(tfm) & CRYPTO_TFM_NEED_KEY) |
a0fa2d03 HX |
378 | return -ENOKEY; |
379 | ||
d7b65aee | 380 | return skcipher_accept_parent_nokey(private, sk); |
a0fa2d03 HX |
381 | } |
382 | ||
8ff59090 HX |
383 | static const struct af_alg_type algif_type_skcipher = { |
384 | .bind = skcipher_bind, | |
385 | .release = skcipher_release, | |
386 | .setkey = skcipher_setkey, | |
387 | .accept = skcipher_accept_parent, | |
a0fa2d03 | 388 | .accept_nokey = skcipher_accept_parent_nokey, |
8ff59090 | 389 | .ops = &algif_skcipher_ops, |
a0fa2d03 | 390 | .ops_nokey = &algif_skcipher_ops_nokey, |
8ff59090 HX |
391 | .name = "skcipher", |
392 | .owner = THIS_MODULE | |
393 | }; | |
394 | ||
395 | static int __init algif_skcipher_init(void) | |
396 | { | |
397 | return af_alg_register_type(&algif_type_skcipher); | |
398 | } | |
399 | ||
400 | static void __exit algif_skcipher_exit(void) | |
401 | { | |
402 | int err = af_alg_unregister_type(&algif_type_skcipher); | |
403 | BUG_ON(err); | |
404 | } | |
405 | ||
406 | module_init(algif_skcipher_init); | |
407 | module_exit(algif_skcipher_exit); | |
408 | MODULE_LICENSE("GPL"); |