blob: a5db86670bdfa4e7c2dba1feaa0620824ef4942c [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Herbert Xu03c8efc2010-10-19 21:12:39 +08002/*
3 * if_alg: User-space algorithm interface
4 *
5 * Copyright (c) 2010 Herbert Xu <herbert@gondor.apana.org.au>
Herbert Xu03c8efc2010-10-19 21:12:39 +08006 */
7
8#ifndef _CRYPTO_IF_ALG_H
9#define _CRYPTO_IF_ALG_H
10
11#include <linux/compiler.h>
12#include <linux/completion.h>
13#include <linux/if_alg.h>
Alexey Dobriyanb7f080c2011-06-16 11:01:34 +000014#include <linux/scatterlist.h>
Herbert Xu03c8efc2010-10-19 21:12:39 +080015#include <linux/types.h>
Jonathan Cameronaf955bf2017-12-19 10:27:24 +000016#include <linux/atomic.h>
Herbert Xu03c8efc2010-10-19 21:12:39 +080017#include <net/sock.h>
18
Stephan Mueller2d975912017-08-02 07:56:19 +020019#include <crypto/aead.h>
20#include <crypto/skcipher.h>
21
Herbert Xu03c8efc2010-10-19 21:12:39 +080022#define ALG_MAX_PAGES 16
23
24struct crypto_async_request;
25
26struct alg_sock {
27 /* struct sock must be the first member of struct alg_sock */
28 struct sock sk;
29
30 struct sock *parent;
31
Herbert Xu34c86f42020-06-08 16:48:43 +100032 atomic_t refcnt;
33 atomic_t nokey_refcnt;
Herbert Xuc840ac62015-12-30 11:47:53 +080034
Herbert Xu03c8efc2010-10-19 21:12:39 +080035 const struct af_alg_type *type;
36 void *private;
37};
38
Herbert Xu03c8efc2010-10-19 21:12:39 +080039struct af_alg_control {
40 struct af_alg_iv *iv;
41 int op;
Stephan Muelleraf8e8072014-12-03 20:55:42 +010042 unsigned int aead_assoclen;
Herbert Xu03c8efc2010-10-19 21:12:39 +080043};
44
45struct af_alg_type {
46 void *(*bind)(const char *name, u32 type, u32 mask);
47 void (*release)(void *private);
48 int (*setkey)(void *private, const u8 *key, unsigned int keylen);
Elena Petrova77ebdab2020-09-18 16:42:16 +010049 int (*setentropy)(void *private, sockptr_t entropy, unsigned int len);
Herbert Xu03c8efc2010-10-19 21:12:39 +080050 int (*accept)(void *private, struct sock *sk);
Herbert Xu37766582016-01-04 13:35:18 +090051 int (*accept_nokey)(void *private, struct sock *sk);
Stephan Mueller25fb8632014-12-07 23:21:42 +010052 int (*setauthsize)(void *private, unsigned int authsize);
Herbert Xu03c8efc2010-10-19 21:12:39 +080053
54 struct proto_ops *ops;
Herbert Xu37766582016-01-04 13:35:18 +090055 struct proto_ops *ops_nokey;
Herbert Xu03c8efc2010-10-19 21:12:39 +080056 struct module *owner;
57 char name[14];
58};
59
60struct af_alg_sgl {
Tadeusz Struk66db3732015-03-19 12:31:30 -070061 struct scatterlist sg[ALG_MAX_PAGES + 1];
Herbert Xu03c8efc2010-10-19 21:12:39 +080062 struct page *pages[ALG_MAX_PAGES];
Tadeusz Struk66db3732015-03-19 12:31:30 -070063 unsigned int npages;
Herbert Xu03c8efc2010-10-19 21:12:39 +080064};
65
Stephan Mueller2d975912017-08-02 07:56:19 +020066/* TX SGL entry */
67struct af_alg_tsgl {
68 struct list_head list;
69 unsigned int cur; /* Last processed SG entry */
Gustavo A. R. Silva5a8a0762020-02-24 10:21:00 -060070 struct scatterlist sg[]; /* Array of SGs forming the SGL */
Stephan Mueller2d975912017-08-02 07:56:19 +020071};
72
73#define MAX_SGL_ENTS ((4096 - sizeof(struct af_alg_tsgl)) / \
74 sizeof(struct scatterlist) - 1)
75
76/* RX SGL entry */
77struct af_alg_rsgl {
78 struct af_alg_sgl sgl;
79 struct list_head list;
80 size_t sg_num_bytes; /* Bytes of data in that SGL */
81};
82
83/**
84 * struct af_alg_async_req - definition of crypto request
85 * @iocb: IOCB for AIO operations
86 * @sk: Socket the request is associated with
87 * @first_rsgl: First RX SG
88 * @last_rsgl: Pointer to last RX SG
89 * @rsgl_list: Track RX SGs
90 * @tsgl: Private, per request TX SGL of buffers to process
91 * @tsgl_entries: Number of entries in priv. TX SGL
92 * @outlen: Number of output bytes generated by crypto op
93 * @areqlen: Length of this data structure
94 * @cra_u: Cipher request
95 */
96struct af_alg_async_req {
97 struct kiocb *iocb;
98 struct sock *sk;
99
100 struct af_alg_rsgl first_rsgl;
101 struct af_alg_rsgl *last_rsgl;
102 struct list_head rsgl_list;
103
104 struct scatterlist *tsgl;
105 unsigned int tsgl_entries;
106
107 unsigned int outlen;
108 unsigned int areqlen;
109
110 union {
111 struct aead_request aead_req;
112 struct skcipher_request skcipher_req;
113 } cra_u;
114
115 /* req ctx trails this struct */
116};
117
118/**
119 * struct af_alg_ctx - definition of the crypto context
120 *
121 * The crypto context tracks the input data during the lifetime of an AF_ALG
122 * socket.
123 *
124 * @tsgl_list: Link to TX SGL
125 * @iv: IV for cipher operation
126 * @aead_assoclen: Length of AAD for AEAD cipher operations
127 * @completion: Work queue for synchronous operation
128 * @used: TX bytes sent to kernel. This variable is used to
129 * ensure that user space cannot cause the kernel
130 * to allocate too much memory in sendmsg operation.
131 * @rcvused: Total RX bytes to be filled by kernel. This variable
132 * is used to ensure user space cannot cause the kernel
133 * to allocate too much memory in a recvmsg operation.
134 * @more: More data to be expected from user space?
135 * @merge: Shall new data from user space be merged into existing
136 * SG?
137 * @enc: Cryptographic operation to be performed when
138 * recvmsg is invoked.
Herbert Xuf3c802a2020-05-30 00:23:49 +1000139 * @init: True if metadata has been sent.
Stephan Mueller2d975912017-08-02 07:56:19 +0200140 * @len: Length of memory allocated for this data structure.
141 */
142struct af_alg_ctx {
143 struct list_head tsgl_list;
144
145 void *iv;
146 size_t aead_assoclen;
147
Gilad Ben-Yossef2c3f8b12017-10-18 08:00:39 +0100148 struct crypto_wait wait;
Stephan Mueller2d975912017-08-02 07:56:19 +0200149
150 size_t used;
Jonathan Cameronaf955bf2017-12-19 10:27:24 +0000151 atomic_t rcvused;
Stephan Mueller2d975912017-08-02 07:56:19 +0200152
153 bool more;
154 bool merge;
155 bool enc;
Herbert Xuf3c802a2020-05-30 00:23:49 +1000156 bool init;
Stephan Mueller2d975912017-08-02 07:56:19 +0200157
158 unsigned int len;
159};
160
Herbert Xu03c8efc2010-10-19 21:12:39 +0800161int af_alg_register_type(const struct af_alg_type *type);
162int af_alg_unregister_type(const struct af_alg_type *type);
163
164int af_alg_release(struct socket *sock);
Herbert Xuc840ac62015-12-30 11:47:53 +0800165void af_alg_release_parent(struct sock *sk);
David Howellscdfbabf2017-03-09 08:09:05 +0000166int af_alg_accept(struct sock *sk, struct socket *newsock, bool kern);
Herbert Xu03c8efc2010-10-19 21:12:39 +0800167
Al Viro1d10eb22014-11-28 16:39:25 -0500168int af_alg_make_sg(struct af_alg_sgl *sgl, struct iov_iter *iter, int len);
Herbert Xu03c8efc2010-10-19 21:12:39 +0800169void af_alg_free_sg(struct af_alg_sgl *sgl);
Herbert Xu03c8efc2010-10-19 21:12:39 +0800170
Herbert Xu03c8efc2010-10-19 21:12:39 +0800171static inline struct alg_sock *alg_sk(struct sock *sk)
172{
173 return (struct alg_sock *)sk;
174}
175
Stephan Mueller2d975912017-08-02 07:56:19 +0200176/**
177 * Size of available buffer for sending data from user space to kernel.
178 *
179 * @sk socket of connection to user space
180 * @return number of bytes still available
181 */
182static inline int af_alg_sndbuf(struct sock *sk)
183{
184 struct alg_sock *ask = alg_sk(sk);
185 struct af_alg_ctx *ctx = ask->private;
186
187 return max_t(int, max_t(int, sk->sk_sndbuf & PAGE_MASK, PAGE_SIZE) -
188 ctx->used, 0);
189}
190
191/**
192 * Can the send buffer still be written to?
193 *
194 * @sk socket of connection to user space
195 * @return true => writable, false => not writable
196 */
197static inline bool af_alg_writable(struct sock *sk)
198{
199 return PAGE_SIZE <= af_alg_sndbuf(sk);
200}
201
202/**
203 * Size of available buffer used by kernel for the RX user space operation.
204 *
205 * @sk socket of connection to user space
206 * @return number of bytes still available
207 */
208static inline int af_alg_rcvbuf(struct sock *sk)
209{
210 struct alg_sock *ask = alg_sk(sk);
211 struct af_alg_ctx *ctx = ask->private;
212
213 return max_t(int, max_t(int, sk->sk_rcvbuf & PAGE_MASK, PAGE_SIZE) -
Jonathan Cameronaf955bf2017-12-19 10:27:24 +0000214 atomic_read(&ctx->rcvused), 0);
Stephan Mueller2d975912017-08-02 07:56:19 +0200215}
216
217/**
218 * Can the RX buffer still be written to?
219 *
220 * @sk socket of connection to user space
221 * @return true => writable, false => not writable
222 */
223static inline bool af_alg_readable(struct sock *sk)
224{
225 return PAGE_SIZE <= af_alg_rcvbuf(sk);
226}
227
Stephan Mueller2d975912017-08-02 07:56:19 +0200228unsigned int af_alg_count_tsgl(struct sock *sk, size_t bytes, size_t offset);
229void af_alg_pull_tsgl(struct sock *sk, size_t used, struct scatterlist *dst,
230 size_t dst_offset);
Stephan Mueller2d975912017-08-02 07:56:19 +0200231void af_alg_wmem_wakeup(struct sock *sk);
Herbert Xuf3c802a2020-05-30 00:23:49 +1000232int af_alg_wait_for_data(struct sock *sk, unsigned flags, unsigned min);
Stephan Mueller2d975912017-08-02 07:56:19 +0200233int af_alg_sendmsg(struct socket *sock, struct msghdr *msg, size_t size,
234 unsigned int ivsize);
235ssize_t af_alg_sendpage(struct socket *sock, struct page *page,
236 int offset, size_t size, int flags);
Stephan Mueller7d2c3f52017-11-10 13:20:55 +0100237void af_alg_free_resources(struct af_alg_async_req *areq);
Stephan Mueller2d975912017-08-02 07:56:19 +0200238void af_alg_async_cb(struct crypto_async_request *_req, int err);
Linus Torvaldsa11e1d42018-06-28 09:43:44 -0700239__poll_t af_alg_poll(struct file *file, struct socket *sock,
240 poll_table *wait);
Stephan Mueller2d975912017-08-02 07:56:19 +0200241struct af_alg_async_req *af_alg_alloc_areq(struct sock *sk,
242 unsigned int areqlen);
243int af_alg_get_rsgl(struct sock *sk, struct msghdr *msg, int flags,
244 struct af_alg_async_req *areq, size_t maxsize,
245 size_t *outlen);
246
Herbert Xu03c8efc2010-10-19 21:12:39 +0800247#endif /* _CRYPTO_IF_ALG_H */