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/security.h>
26 struct alg_type_list
{
27 const struct af_alg_type
*type
;
28 struct list_head list
;
31 static atomic_long_t alg_memory_allocated
;
33 static struct proto alg_proto
= {
36 .memory_allocated
= &alg_memory_allocated
,
37 .obj_size
= sizeof(struct alg_sock
),
40 static LIST_HEAD(alg_types
);
41 static DECLARE_RWSEM(alg_types_sem
);
43 static const struct af_alg_type
*alg_get_type(const char *name
)
45 const struct af_alg_type
*type
= ERR_PTR(-ENOENT
);
46 struct alg_type_list
*node
;
48 down_read(&alg_types_sem
);
49 list_for_each_entry(node
, &alg_types
, list
) {
50 if (strcmp(node
->type
->name
, name
))
53 if (try_module_get(node
->type
->owner
))
57 up_read(&alg_types_sem
);
62 int af_alg_register_type(const struct af_alg_type
*type
)
64 struct alg_type_list
*node
;
67 down_write(&alg_types_sem
);
68 list_for_each_entry(node
, &alg_types
, list
) {
69 if (!strcmp(node
->type
->name
, type
->name
))
73 node
= kmalloc(sizeof(*node
), GFP_KERNEL
);
78 type
->ops
->owner
= THIS_MODULE
;
80 type
->ops_nokey
->owner
= THIS_MODULE
;
82 list_add(&node
->list
, &alg_types
);
86 up_write(&alg_types_sem
);
90 EXPORT_SYMBOL_GPL(af_alg_register_type
);
92 int af_alg_unregister_type(const struct af_alg_type
*type
)
94 struct alg_type_list
*node
;
97 down_write(&alg_types_sem
);
98 list_for_each_entry(node
, &alg_types
, list
) {
99 if (strcmp(node
->type
->name
, type
->name
))
102 list_del(&node
->list
);
107 up_write(&alg_types_sem
);
111 EXPORT_SYMBOL_GPL(af_alg_unregister_type
);
113 static void alg_do_release(const struct af_alg_type
*type
, void *private)
118 type
->release(private);
119 module_put(type
->owner
);
122 int af_alg_release(struct socket
*sock
)
128 EXPORT_SYMBOL_GPL(af_alg_release
);
130 void af_alg_release_parent(struct sock
*sk
)
132 struct alg_sock
*ask
= alg_sk(sk
);
133 unsigned int nokey
= ask
->nokey_refcnt
;
134 bool last
= nokey
&& !ask
->refcnt
;
140 ask
->nokey_refcnt
-= nokey
;
142 last
= !--ask
->refcnt
;
148 EXPORT_SYMBOL_GPL(af_alg_release_parent
);
150 static int alg_bind(struct socket
*sock
, struct sockaddr
*uaddr
, int addr_len
)
152 struct sock
*sk
= sock
->sk
;
153 struct alg_sock
*ask
= alg_sk(sk
);
154 struct sockaddr_alg
*sa
= (void *)uaddr
;
155 const struct af_alg_type
*type
;
159 if (sock
->state
== SS_CONNECTED
)
162 if (addr_len
!= sizeof(*sa
))
165 sa
->salg_type
[sizeof(sa
->salg_type
) - 1] = 0;
166 sa
->salg_name
[sizeof(sa
->salg_name
) - 1] = 0;
168 type
= alg_get_type(sa
->salg_type
);
169 if (IS_ERR(type
) && PTR_ERR(type
) == -ENOENT
) {
170 request_module("algif-%s", sa
->salg_type
);
171 type
= alg_get_type(sa
->salg_type
);
175 return PTR_ERR(type
);
177 private = type
->bind(sa
->salg_name
, sa
->salg_feat
, sa
->salg_mask
);
178 if (IS_ERR(private)) {
179 module_put(type
->owner
);
180 return PTR_ERR(private);
185 if (ask
->refcnt
| ask
->nokey_refcnt
)
188 swap(ask
->type
, type
);
189 swap(ask
->private, private);
196 alg_do_release(type
, private);
201 static int alg_setkey(struct sock
*sk
, char __user
*ukey
,
204 struct alg_sock
*ask
= alg_sk(sk
);
205 const struct af_alg_type
*type
= ask
->type
;
209 key
= sock_kmalloc(sk
, keylen
, GFP_KERNEL
);
214 if (copy_from_user(key
, ukey
, keylen
))
217 err
= type
->setkey(ask
->private, key
, keylen
);
220 sock_kfree_s(sk
, key
, keylen
);
225 static int alg_setsockopt(struct socket
*sock
, int level
, int optname
,
226 char __user
*optval
, unsigned int optlen
)
228 struct sock
*sk
= sock
->sk
;
229 struct alg_sock
*ask
= alg_sk(sk
);
230 const struct af_alg_type
*type
;
240 if (level
!= SOL_ALG
|| !type
)
245 if (sock
->state
== SS_CONNECTED
)
250 err
= alg_setkey(sk
, optval
, optlen
);
259 int af_alg_accept(struct sock
*sk
, struct socket
*newsock
)
261 struct alg_sock
*ask
= alg_sk(sk
);
262 const struct af_alg_type
*type
;
274 sk2
= sk_alloc(sock_net(sk
), PF_ALG
, GFP_KERNEL
, &alg_proto
);
279 sock_init_data(newsock
, sk2
);
280 sock_graft(sk2
, newsock
);
281 security_sk_clone(sk
, sk2
);
283 err
= type
->accept(ask
->private, sk2
);
285 nokey
= err
== -ENOKEY
;
286 if (nokey
&& type
->accept_nokey
)
287 err
= type
->accept_nokey(ask
->private, sk2
);
292 sk2
->sk_family
= PF_ALG
;
294 if (nokey
|| !ask
->refcnt
++)
296 ask
->nokey_refcnt
+= nokey
;
297 alg_sk(sk2
)->parent
= sk
;
298 alg_sk(sk2
)->type
= type
;
299 alg_sk(sk2
)->nokey_refcnt
= nokey
;
301 newsock
->ops
= type
->ops
;
302 newsock
->state
= SS_CONNECTED
;
305 newsock
->ops
= type
->ops_nokey
;
314 EXPORT_SYMBOL_GPL(af_alg_accept
);
316 static int alg_accept(struct socket
*sock
, struct socket
*newsock
, int flags
)
318 return af_alg_accept(sock
->sk
, newsock
);
321 static const struct proto_ops alg_proto_ops
= {
323 .owner
= THIS_MODULE
,
325 .connect
= sock_no_connect
,
326 .socketpair
= sock_no_socketpair
,
327 .getname
= sock_no_getname
,
328 .ioctl
= sock_no_ioctl
,
329 .listen
= sock_no_listen
,
330 .shutdown
= sock_no_shutdown
,
331 .getsockopt
= sock_no_getsockopt
,
332 .mmap
= sock_no_mmap
,
333 .sendpage
= sock_no_sendpage
,
334 .sendmsg
= sock_no_sendmsg
,
335 .recvmsg
= sock_no_recvmsg
,
336 .poll
= sock_no_poll
,
339 .release
= af_alg_release
,
340 .setsockopt
= alg_setsockopt
,
341 .accept
= alg_accept
,
344 static void alg_sock_destruct(struct sock
*sk
)
346 struct alg_sock
*ask
= alg_sk(sk
);
348 alg_do_release(ask
->type
, ask
->private);
351 static int alg_create(struct net
*net
, struct socket
*sock
, int protocol
,
357 if (sock
->type
!= SOCK_SEQPACKET
)
358 return -ESOCKTNOSUPPORT
;
360 return -EPROTONOSUPPORT
;
363 sk
= sk_alloc(net
, PF_ALG
, GFP_KERNEL
, &alg_proto
);
367 sock
->ops
= &alg_proto_ops
;
368 sock_init_data(sock
, sk
);
370 sk
->sk_family
= PF_ALG
;
371 sk
->sk_destruct
= alg_sock_destruct
;
378 static const struct net_proto_family alg_family
= {
380 .create
= alg_create
,
381 .owner
= THIS_MODULE
,
384 int af_alg_make_sg(struct af_alg_sgl
*sgl
, void __user
*addr
, int len
,
387 unsigned long from
= (unsigned long)addr
;
388 unsigned long npages
;
394 if (!access_ok(write
? VERIFY_READ
: VERIFY_WRITE
, addr
, len
))
397 off
= from
& ~PAGE_MASK
;
398 npages
= (off
+ len
+ PAGE_SIZE
- 1) >> PAGE_SHIFT
;
399 if (npages
> ALG_MAX_PAGES
)
400 npages
= ALG_MAX_PAGES
;
402 err
= get_user_pages_fast(from
, npages
, write
, sgl
->pages
);
408 if (WARN_ON(npages
== 0))
413 sg_init_table(sgl
->sg
, npages
);
415 for (i
= 0; i
< npages
; i
++) {
416 int plen
= min_t(int, len
, PAGE_SIZE
- off
);
418 sg_set_page(sgl
->sg
+ i
, sgl
->pages
[i
], plen
, off
);
428 EXPORT_SYMBOL_GPL(af_alg_make_sg
);
430 void af_alg_free_sg(struct af_alg_sgl
*sgl
)
436 put_page(sgl
->pages
[i
]);
437 } while (!sg_is_last(sgl
->sg
+ (i
++)));
439 EXPORT_SYMBOL_GPL(af_alg_free_sg
);
441 int af_alg_cmsg_send(struct msghdr
*msg
, struct af_alg_control
*con
)
443 struct cmsghdr
*cmsg
;
445 for (cmsg
= CMSG_FIRSTHDR(msg
); cmsg
; cmsg
= CMSG_NXTHDR(msg
, cmsg
)) {
446 if (!CMSG_OK(msg
, cmsg
))
448 if (cmsg
->cmsg_level
!= SOL_ALG
)
451 switch(cmsg
->cmsg_type
) {
453 if (cmsg
->cmsg_len
< CMSG_LEN(sizeof(*con
->iv
)))
455 con
->iv
= (void *)CMSG_DATA(cmsg
);
456 if (cmsg
->cmsg_len
< CMSG_LEN(con
->iv
->ivlen
+
462 if (cmsg
->cmsg_len
< CMSG_LEN(sizeof(u32
)))
464 con
->op
= *(u32
*)CMSG_DATA(cmsg
);
474 EXPORT_SYMBOL_GPL(af_alg_cmsg_send
);
476 int af_alg_wait_for_completion(int err
, struct af_alg_completion
*completion
)
481 wait_for_completion(&completion
->completion
);
482 reinit_completion(&completion
->completion
);
483 err
= completion
->err
;
489 EXPORT_SYMBOL_GPL(af_alg_wait_for_completion
);
491 void af_alg_complete(struct crypto_async_request
*req
, int err
)
493 struct af_alg_completion
*completion
= req
->data
;
495 if (err
== -EINPROGRESS
)
498 completion
->err
= err
;
499 complete(&completion
->completion
);
501 EXPORT_SYMBOL_GPL(af_alg_complete
);
503 static int __init
af_alg_init(void)
505 int err
= proto_register(&alg_proto
, 0);
510 err
= sock_register(&alg_family
);
512 goto out_unregister_proto
;
517 out_unregister_proto
:
518 proto_unregister(&alg_proto
);
522 static void __exit
af_alg_exit(void)
524 sock_unregister(PF_ALG
);
525 proto_unregister(&alg_proto
);
528 module_init(af_alg_init
);
529 module_exit(af_alg_exit
);
530 MODULE_LICENSE("GPL");
531 MODULE_ALIAS_NETPROTO(AF_ALG
);