Herbert Xu | 03c8efc | 2010-10-19 21:12:39 +0800 | [diff] [blame] | 1 | /* |
| 2 | * if_alg: User-space algorithm interface |
| 3 | * |
| 4 | * Copyright (c) 2010 Herbert Xu <herbert@gondor.apana.org.au> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify it |
| 7 | * under the terms of the GNU General Public License as published by the Free |
| 8 | * Software Foundation; either version 2 of the License, or (at your option) |
| 9 | * any later version. |
| 10 | * |
| 11 | */ |
| 12 | |
| 13 | #ifndef _CRYPTO_IF_ALG_H |
| 14 | #define _CRYPTO_IF_ALG_H |
| 15 | |
| 16 | #include <linux/compiler.h> |
| 17 | #include <linux/completion.h> |
| 18 | #include <linux/if_alg.h> |
Alexey Dobriyan | b7f080c | 2011-06-16 11:01:34 +0000 | [diff] [blame] | 19 | #include <linux/scatterlist.h> |
Herbert Xu | 03c8efc | 2010-10-19 21:12:39 +0800 | [diff] [blame] | 20 | #include <linux/types.h> |
| 21 | #include <net/sock.h> |
| 22 | |
| 23 | #define ALG_MAX_PAGES 16 |
| 24 | |
| 25 | struct crypto_async_request; |
| 26 | |
| 27 | struct alg_sock { |
| 28 | /* struct sock must be the first member of struct alg_sock */ |
| 29 | struct sock sk; |
| 30 | |
| 31 | struct sock *parent; |
| 32 | |
Herbert Xu | c840ac6 | 2015-12-30 11:47:53 +0800 | [diff] [blame^] | 33 | unsigned int refcnt; |
| 34 | |
Herbert Xu | 03c8efc | 2010-10-19 21:12:39 +0800 | [diff] [blame] | 35 | const struct af_alg_type *type; |
| 36 | void *private; |
| 37 | }; |
| 38 | |
| 39 | struct af_alg_completion { |
| 40 | struct completion completion; |
| 41 | int err; |
| 42 | }; |
| 43 | |
| 44 | struct af_alg_control { |
| 45 | struct af_alg_iv *iv; |
| 46 | int op; |
Stephan Mueller | af8e807 | 2014-12-03 20:55:42 +0100 | [diff] [blame] | 47 | unsigned int aead_assoclen; |
Herbert Xu | 03c8efc | 2010-10-19 21:12:39 +0800 | [diff] [blame] | 48 | }; |
| 49 | |
| 50 | struct af_alg_type { |
| 51 | void *(*bind)(const char *name, u32 type, u32 mask); |
| 52 | void (*release)(void *private); |
| 53 | int (*setkey)(void *private, const u8 *key, unsigned int keylen); |
| 54 | int (*accept)(void *private, struct sock *sk); |
Stephan Mueller | 25fb863 | 2014-12-07 23:21:42 +0100 | [diff] [blame] | 55 | int (*setauthsize)(void *private, unsigned int authsize); |
Herbert Xu | 03c8efc | 2010-10-19 21:12:39 +0800 | [diff] [blame] | 56 | |
| 57 | struct proto_ops *ops; |
| 58 | struct module *owner; |
| 59 | char name[14]; |
| 60 | }; |
| 61 | |
| 62 | struct af_alg_sgl { |
Tadeusz Struk | 66db373 | 2015-03-19 12:31:30 -0700 | [diff] [blame] | 63 | struct scatterlist sg[ALG_MAX_PAGES + 1]; |
Herbert Xu | 03c8efc | 2010-10-19 21:12:39 +0800 | [diff] [blame] | 64 | struct page *pages[ALG_MAX_PAGES]; |
Tadeusz Struk | 66db373 | 2015-03-19 12:31:30 -0700 | [diff] [blame] | 65 | unsigned int npages; |
Herbert Xu | 03c8efc | 2010-10-19 21:12:39 +0800 | [diff] [blame] | 66 | }; |
| 67 | |
| 68 | int af_alg_register_type(const struct af_alg_type *type); |
| 69 | int af_alg_unregister_type(const struct af_alg_type *type); |
| 70 | |
| 71 | int af_alg_release(struct socket *sock); |
Herbert Xu | c840ac6 | 2015-12-30 11:47:53 +0800 | [diff] [blame^] | 72 | void af_alg_release_parent(struct sock *sk); |
Herbert Xu | 03c8efc | 2010-10-19 21:12:39 +0800 | [diff] [blame] | 73 | int af_alg_accept(struct sock *sk, struct socket *newsock); |
| 74 | |
Al Viro | 1d10eb2 | 2014-11-28 16:39:25 -0500 | [diff] [blame] | 75 | int af_alg_make_sg(struct af_alg_sgl *sgl, struct iov_iter *iter, int len); |
Herbert Xu | 03c8efc | 2010-10-19 21:12:39 +0800 | [diff] [blame] | 76 | void af_alg_free_sg(struct af_alg_sgl *sgl); |
Tadeusz Struk | 66db373 | 2015-03-19 12:31:30 -0700 | [diff] [blame] | 77 | void af_alg_link_sg(struct af_alg_sgl *sgl_prev, struct af_alg_sgl *sgl_new); |
Herbert Xu | 03c8efc | 2010-10-19 21:12:39 +0800 | [diff] [blame] | 78 | |
| 79 | int af_alg_cmsg_send(struct msghdr *msg, struct af_alg_control *con); |
| 80 | |
| 81 | int af_alg_wait_for_completion(int err, struct af_alg_completion *completion); |
| 82 | void af_alg_complete(struct crypto_async_request *req, int err); |
| 83 | |
| 84 | static inline struct alg_sock *alg_sk(struct sock *sk) |
| 85 | { |
| 86 | return (struct alg_sock *)sk; |
| 87 | } |
| 88 | |
Herbert Xu | 03c8efc | 2010-10-19 21:12:39 +0800 | [diff] [blame] | 89 | static inline void af_alg_init_completion(struct af_alg_completion *completion) |
| 90 | { |
| 91 | init_completion(&completion->completion); |
| 92 | } |
| 93 | |
| 94 | #endif /* _CRYPTO_IF_ALG_H */ |