blob: 4fe3860dd2fa14d94933b6b7f2c6b4319ad50e70 [file] [log] [blame]
Herbert Xu03c8efc2010-10-19 21:12:39 +08001/*
2 * af_alg: User-space algorithm interface
3 *
4 * This file provides the user-space API for algorithms.
5 *
6 * Copyright (c) 2010 Herbert Xu <herbert@gondor.apana.org.au>
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 *
13 */
14
Arun Sharma60063492011-07-26 16:09:06 -070015#include <linux/atomic.h>
Herbert Xu03c8efc2010-10-19 21:12:39 +080016#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
25struct alg_type_list {
26 const struct af_alg_type *type;
27 struct list_head list;
28};
29
Randy Dunlap06869522010-12-21 22:22:40 +110030static atomic_long_t alg_memory_allocated;
Herbert Xu03c8efc2010-10-19 21:12:39 +080031
32static struct proto alg_proto = {
33 .name = "ALG",
34 .owner = THIS_MODULE,
35 .memory_allocated = &alg_memory_allocated,
36 .obj_size = sizeof(struct alg_sock),
37};
38
39static LIST_HEAD(alg_types);
40static DECLARE_RWSEM(alg_types_sem);
41
42static const struct af_alg_type *alg_get_type(const char *name)
43{
44 const struct af_alg_type *type = ERR_PTR(-ENOENT);
45 struct alg_type_list *node;
46
47 down_read(&alg_types_sem);
48 list_for_each_entry(node, &alg_types, list) {
49 if (strcmp(node->type->name, name))
50 continue;
51
52 if (try_module_get(node->type->owner))
53 type = node->type;
54 break;
55 }
56 up_read(&alg_types_sem);
57
58 return type;
59}
60
61int af_alg_register_type(const struct af_alg_type *type)
62{
63 struct alg_type_list *node;
64 int err = -EEXIST;
65
66 down_write(&alg_types_sem);
67 list_for_each_entry(node, &alg_types, list) {
68 if (!strcmp(node->type->name, type->name))
69 goto unlock;
70 }
71
72 node = kmalloc(sizeof(*node), GFP_KERNEL);
73 err = -ENOMEM;
74 if (!node)
75 goto unlock;
76
77 type->ops->owner = THIS_MODULE;
78 node->type = type;
79 list_add(&node->list, &alg_types);
80 err = 0;
81
82unlock:
83 up_write(&alg_types_sem);
84
85 return err;
86}
87EXPORT_SYMBOL_GPL(af_alg_register_type);
88
89int af_alg_unregister_type(const struct af_alg_type *type)
90{
91 struct alg_type_list *node;
92 int err = -ENOENT;
93
94 down_write(&alg_types_sem);
95 list_for_each_entry(node, &alg_types, list) {
96 if (strcmp(node->type->name, type->name))
97 continue;
98
99 list_del(&node->list);
100 kfree(node);
101 err = 0;
102 break;
103 }
104 up_write(&alg_types_sem);
105
106 return err;
107}
108EXPORT_SYMBOL_GPL(af_alg_unregister_type);
109
110static void alg_do_release(const struct af_alg_type *type, void *private)
111{
112 if (!type)
113 return;
114
115 type->release(private);
116 module_put(type->owner);
117}
118
119int af_alg_release(struct socket *sock)
120{
Mao Wenan4101cbe2019-02-15 22:24:15 +0800121 if (sock->sk) {
Herbert Xu03c8efc2010-10-19 21:12:39 +0800122 sock_put(sock->sk);
Mao Wenan4101cbe2019-02-15 22:24:15 +0800123 sock->sk = NULL;
124 }
Herbert Xu03c8efc2010-10-19 21:12:39 +0800125 return 0;
126}
127EXPORT_SYMBOL_GPL(af_alg_release);
128
129static int alg_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
130{
131 struct sock *sk = sock->sk;
132 struct alg_sock *ask = alg_sk(sk);
133 struct sockaddr_alg *sa = (void *)uaddr;
134 const struct af_alg_type *type;
135 void *private;
136
137 if (sock->state == SS_CONNECTED)
138 return -EINVAL;
139
140 if (addr_len != sizeof(*sa))
141 return -EINVAL;
142
143 sa->salg_type[sizeof(sa->salg_type) - 1] = 0;
144 sa->salg_name[sizeof(sa->salg_name) - 1] = 0;
145
146 type = alg_get_type(sa->salg_type);
147 if (IS_ERR(type) && PTR_ERR(type) == -ENOENT) {
148 request_module("algif-%s", sa->salg_type);
149 type = alg_get_type(sa->salg_type);
150 }
151
152 if (IS_ERR(type))
153 return PTR_ERR(type);
154
155 private = type->bind(sa->salg_name, sa->salg_feat, sa->salg_mask);
156 if (IS_ERR(private)) {
157 module_put(type->owner);
158 return PTR_ERR(private);
159 }
160
161 lock_sock(sk);
162
163 swap(ask->type, type);
164 swap(ask->private, private);
165
166 release_sock(sk);
167
168 alg_do_release(type, private);
169
170 return 0;
171}
172
173static int alg_setkey(struct sock *sk, char __user *ukey,
174 unsigned int keylen)
175{
176 struct alg_sock *ask = alg_sk(sk);
177 const struct af_alg_type *type = ask->type;
178 u8 *key;
179 int err;
180
181 key = sock_kmalloc(sk, keylen, GFP_KERNEL);
182 if (!key)
183 return -ENOMEM;
184
185 err = -EFAULT;
186 if (copy_from_user(key, ukey, keylen))
187 goto out;
188
189 err = type->setkey(ask->private, key, keylen);
190
191out:
192 sock_kfree_s(sk, key, keylen);
193
194 return err;
195}
196
197static int alg_setsockopt(struct socket *sock, int level, int optname,
198 char __user *optval, unsigned int optlen)
199{
200 struct sock *sk = sock->sk;
201 struct alg_sock *ask = alg_sk(sk);
202 const struct af_alg_type *type;
203 int err = -ENOPROTOOPT;
204
205 lock_sock(sk);
206 type = ask->type;
207
208 if (level != SOL_ALG || !type)
209 goto unlock;
210
211 switch (optname) {
212 case ALG_SET_KEY:
213 if (sock->state == SS_CONNECTED)
214 goto unlock;
215 if (!type->setkey)
216 goto unlock;
217
218 err = alg_setkey(sk, optval, optlen);
219 }
220
221unlock:
222 release_sock(sk);
223
224 return err;
225}
226
227int af_alg_accept(struct sock *sk, struct socket *newsock)
228{
229 struct alg_sock *ask = alg_sk(sk);
230 const struct af_alg_type *type;
231 struct sock *sk2;
232 int err;
233
234 lock_sock(sk);
235 type = ask->type;
236
237 err = -EINVAL;
238 if (!type)
239 goto unlock;
240
241 sk2 = sk_alloc(sock_net(sk), PF_ALG, GFP_KERNEL, &alg_proto);
242 err = -ENOMEM;
243 if (!sk2)
244 goto unlock;
245
246 sock_init_data(newsock, sk2);
Miloslav Trmač507cad32010-12-08 14:36:19 +0800247 sock_graft(sk2, newsock);
Herbert Xu03c8efc2010-10-19 21:12:39 +0800248
249 err = type->accept(ask->private, sk2);
250 if (err) {
251 sk_free(sk2);
252 goto unlock;
253 }
254
255 sk2->sk_family = PF_ALG;
256
257 sock_hold(sk);
258 alg_sk(sk2)->parent = sk;
259 alg_sk(sk2)->type = type;
260
261 newsock->ops = type->ops;
262 newsock->state = SS_CONNECTED;
263
264 err = 0;
265
266unlock:
267 release_sock(sk);
268
269 return err;
270}
271EXPORT_SYMBOL_GPL(af_alg_accept);
272
273static int alg_accept(struct socket *sock, struct socket *newsock, int flags)
274{
275 return af_alg_accept(sock->sk, newsock);
276}
277
278static const struct proto_ops alg_proto_ops = {
279 .family = PF_ALG,
280 .owner = THIS_MODULE,
281
282 .connect = sock_no_connect,
283 .socketpair = sock_no_socketpair,
284 .getname = sock_no_getname,
285 .ioctl = sock_no_ioctl,
286 .listen = sock_no_listen,
287 .shutdown = sock_no_shutdown,
288 .getsockopt = sock_no_getsockopt,
289 .mmap = sock_no_mmap,
290 .sendpage = sock_no_sendpage,
291 .sendmsg = sock_no_sendmsg,
292 .recvmsg = sock_no_recvmsg,
293 .poll = sock_no_poll,
294
295 .bind = alg_bind,
296 .release = af_alg_release,
297 .setsockopt = alg_setsockopt,
298 .accept = alg_accept,
299};
300
301static void alg_sock_destruct(struct sock *sk)
302{
303 struct alg_sock *ask = alg_sk(sk);
304
305 alg_do_release(ask->type, ask->private);
306}
307
308static int alg_create(struct net *net, struct socket *sock, int protocol,
309 int kern)
310{
311 struct sock *sk;
312 int err;
313
314 if (sock->type != SOCK_SEQPACKET)
315 return -ESOCKTNOSUPPORT;
316 if (protocol != 0)
317 return -EPROTONOSUPPORT;
318
319 err = -ENOMEM;
320 sk = sk_alloc(net, PF_ALG, GFP_KERNEL, &alg_proto);
321 if (!sk)
322 goto out;
323
324 sock->ops = &alg_proto_ops;
325 sock_init_data(sock, sk);
326
327 sk->sk_family = PF_ALG;
328 sk->sk_destruct = alg_sock_destruct;
329
330 return 0;
331out:
332 return err;
333}
334
335static const struct net_proto_family alg_family = {
336 .family = PF_ALG,
337 .create = alg_create,
338 .owner = THIS_MODULE,
339};
340
341int af_alg_make_sg(struct af_alg_sgl *sgl, void __user *addr, int len,
342 int write)
343{
344 unsigned long from = (unsigned long)addr;
345 unsigned long npages;
346 unsigned off;
347 int err;
348 int i;
349
350 err = -EFAULT;
351 if (!access_ok(write ? VERIFY_READ : VERIFY_WRITE, addr, len))
352 goto out;
353
354 off = from & ~PAGE_MASK;
355 npages = (off + len + PAGE_SIZE - 1) >> PAGE_SHIFT;
356 if (npages > ALG_MAX_PAGES)
357 npages = ALG_MAX_PAGES;
358
359 err = get_user_pages_fast(from, npages, write, sgl->pages);
360 if (err < 0)
361 goto out;
362
363 npages = err;
364 err = -EINVAL;
365 if (WARN_ON(npages == 0))
366 goto out;
367
368 err = 0;
369
370 sg_init_table(sgl->sg, npages);
371
372 for (i = 0; i < npages; i++) {
373 int plen = min_t(int, len, PAGE_SIZE - off);
374
375 sg_set_page(sgl->sg + i, sgl->pages[i], plen, off);
376
377 off = 0;
378 len -= plen;
379 err += plen;
380 }
381
382out:
383 return err;
384}
385EXPORT_SYMBOL_GPL(af_alg_make_sg);
386
387void af_alg_free_sg(struct af_alg_sgl *sgl)
388{
389 int i;
390
391 i = 0;
392 do {
393 put_page(sgl->pages[i]);
394 } while (!sg_is_last(sgl->sg + (i++)));
395}
396EXPORT_SYMBOL_GPL(af_alg_free_sg);
397
398int af_alg_cmsg_send(struct msghdr *msg, struct af_alg_control *con)
399{
400 struct cmsghdr *cmsg;
401
402 for (cmsg = CMSG_FIRSTHDR(msg); cmsg; cmsg = CMSG_NXTHDR(msg, cmsg)) {
403 if (!CMSG_OK(msg, cmsg))
404 return -EINVAL;
405 if (cmsg->cmsg_level != SOL_ALG)
406 continue;
407
408 switch(cmsg->cmsg_type) {
409 case ALG_SET_IV:
410 if (cmsg->cmsg_len < CMSG_LEN(sizeof(*con->iv)))
411 return -EINVAL;
412 con->iv = (void *)CMSG_DATA(cmsg);
413 if (cmsg->cmsg_len < CMSG_LEN(con->iv->ivlen +
414 sizeof(*con->iv)))
415 return -EINVAL;
416 break;
417
418 case ALG_SET_OP:
419 if (cmsg->cmsg_len < CMSG_LEN(sizeof(u32)))
420 return -EINVAL;
421 con->op = *(u32 *)CMSG_DATA(cmsg);
422 break;
423
424 default:
425 return -EINVAL;
426 }
427 }
428
429 return 0;
430}
431EXPORT_SYMBOL_GPL(af_alg_cmsg_send);
432
433int af_alg_wait_for_completion(int err, struct af_alg_completion *completion)
434{
435 switch (err) {
436 case -EINPROGRESS:
437 case -EBUSY:
438 wait_for_completion(&completion->completion);
439 INIT_COMPLETION(completion->completion);
440 err = completion->err;
441 break;
442 };
443
444 return err;
445}
446EXPORT_SYMBOL_GPL(af_alg_wait_for_completion);
447
448void af_alg_complete(struct crypto_async_request *req, int err)
449{
450 struct af_alg_completion *completion = req->data;
451
452 completion->err = err;
453 complete(&completion->completion);
454}
455EXPORT_SYMBOL_GPL(af_alg_complete);
456
457static int __init af_alg_init(void)
458{
459 int err = proto_register(&alg_proto, 0);
460
461 if (err)
462 goto out;
463
464 err = sock_register(&alg_family);
465 if (err != 0)
466 goto out_unregister_proto;
467
468out:
469 return err;
470
471out_unregister_proto:
472 proto_unregister(&alg_proto);
473 goto out;
474}
475
476static void __exit af_alg_exit(void)
477{
478 sock_unregister(PF_ALG);
479 proto_unregister(&alg_proto);
480}
481
482module_init(af_alg_init);
483module_exit(af_alg_exit);
484MODULE_LICENSE("GPL");
485MODULE_ALIAS_NETPROTO(AF_ALG);