]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/sys/ktls.h
Import libxo-1.3.0:
[FreeBSD/FreeBSD.git] / sys / sys / ktls.h
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (c) 2014-2019 Netflix Inc.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  *
27  * $FreeBSD$
28  */
29 #ifndef _SYS_KTLS_H_
30 #define _SYS_KTLS_H_
31
32 #include <sys/refcount.h>
33 #include <sys/_task.h>
34
35 struct tls_record_layer {
36         uint8_t  tls_type;
37         uint8_t  tls_vmajor;
38         uint8_t  tls_vminor;
39         uint16_t tls_length;
40         uint8_t  tls_data[0];
41 } __attribute__ ((packed));
42
43 #define TLS_MAX_MSG_SIZE_V10_2  16384
44 #define TLS_MAX_PARAM_SIZE      1024    /* Max key/mac/iv in sockopt */
45 #define TLS_AEAD_GCM_LEN        4
46 #define TLS_1_3_GCM_IV_LEN      12
47 #define TLS_CBC_IMPLICIT_IV_LEN 16
48
49 /* Type values for the record layer */
50 #define TLS_RLTYPE_APP          23
51
52 /*
53  * Nonce for GCM.
54  */
55 struct tls_nonce_data {
56         uint8_t fixed[TLS_AEAD_GCM_LEN];
57         uint64_t seq;
58 } __packed; 
59
60 /*
61  * AEAD additional data format per RFC.
62  */
63 struct tls_aead_data {
64         uint64_t seq;   /* In network order */
65         uint8_t type;
66         uint8_t tls_vmajor;
67         uint8_t tls_vminor;
68         uint16_t tls_length;    
69 } __packed;
70
71 /*
72  * Stream Cipher MAC additional data input.  This does not match the
73  * exact data on the wire (the sequence number is not placed on the
74  * wire, and any explicit IV after the record header is not covered by
75  * the MAC).
76  */
77 struct tls_mac_data {
78         uint64_t seq;
79         uint8_t type;
80         uint8_t tls_vmajor;
81         uint8_t tls_vminor;
82         uint16_t tls_length;    
83 } __packed;
84
85 #define TLS_MAJOR_VER_ONE       3
86 #define TLS_MINOR_VER_ZERO      1       /* 3, 1 */
87 #define TLS_MINOR_VER_ONE       2       /* 3, 2 */
88 #define TLS_MINOR_VER_TWO       3       /* 3, 3 */
89 #define TLS_MINOR_VER_THREE     4       /* 3, 4 */
90
91 /* For TCP_TXTLS_ENABLE */
92 struct tls_enable {
93         const uint8_t *cipher_key;
94         const uint8_t *iv;              /* Implicit IV. */
95         const uint8_t *auth_key;
96         int     cipher_algorithm;       /* e.g. CRYPTO_AES_CBC */
97         int     cipher_key_len;
98         int     iv_len;
99         int     auth_algorithm;         /* e.g. CRYPTO_SHA2_256_HMAC */
100         int     auth_key_len;
101         int     flags;
102         uint8_t tls_vmajor;
103         uint8_t tls_vminor;
104 };
105
106 struct tls_session_params {
107         uint8_t *cipher_key;
108         uint8_t *auth_key;
109         uint8_t iv[TLS_CBC_IMPLICIT_IV_LEN];
110         int     cipher_algorithm;
111         int     auth_algorithm;
112         uint16_t cipher_key_len;
113         uint16_t iv_len;
114         uint16_t auth_key_len;
115         uint16_t max_frame_len;
116         uint8_t tls_vmajor;
117         uint8_t tls_vminor;
118         uint8_t tls_hlen;
119         uint8_t tls_tlen;
120         uint8_t tls_bs;
121         uint8_t flags;
122 };
123
124 #ifdef _KERNEL
125
126 #define KTLS_API_VERSION 6
127
128 struct iovec;
129 struct ktls_session;
130 struct m_snd_tag;
131 struct mbuf;
132 struct mbuf_ext_pgs;
133 struct sockbuf;
134 struct socket;
135
136 struct ktls_crypto_backend {
137         LIST_ENTRY(ktls_crypto_backend) next;
138         int (*try)(struct socket *so, struct ktls_session *tls);
139         int prio;
140         int api_version;
141         int use_count;
142         const char *name;
143 };
144
145 struct ktls_session {
146         int     (*sw_encrypt)(struct ktls_session *tls,
147             const struct tls_record_layer *hdr, uint8_t *trailer,
148             struct iovec *src, struct iovec *dst, int iovcnt,
149             uint64_t seqno, uint8_t record_type);
150         union {
151                 void *cipher;
152                 struct m_snd_tag *snd_tag;
153         };
154         struct ktls_crypto_backend *be;
155         void (*free)(struct ktls_session *tls);
156         struct tls_session_params params;
157         u_int   wq_index;
158         volatile u_int refcount;
159         int mode;
160
161         struct task reset_tag_task;
162         struct inpcb *inp;
163         bool reset_pending;
164 } __aligned(CACHE_LINE_SIZE);
165
166 int ktls_crypto_backend_register(struct ktls_crypto_backend *be);
167 int ktls_crypto_backend_deregister(struct ktls_crypto_backend *be);
168 int ktls_enable_tx(struct socket *so, struct tls_enable *en);
169 void ktls_destroy(struct ktls_session *tls);
170 int ktls_frame(struct mbuf *m, struct ktls_session *tls, int *enqueue_cnt,
171     uint8_t record_type);
172 void ktls_seq(struct sockbuf *sb, struct mbuf *m);
173 void ktls_enqueue(struct mbuf *m, struct socket *so, int page_count);
174 void ktls_enqueue_to_free(struct mbuf_ext_pgs *pgs);
175 int ktls_set_tx_mode(struct socket *so, int mode);
176 int ktls_get_tx_mode(struct socket *so);
177 int ktls_output_eagain(struct inpcb *inp, struct ktls_session *tls);
178
179 static inline struct ktls_session *
180 ktls_hold(struct ktls_session *tls)
181 {
182
183         if (tls != NULL)
184                 refcount_acquire(&tls->refcount);
185         return (tls);
186 }
187
188 static inline void
189 ktls_free(struct ktls_session *tls)
190 {
191
192         if (refcount_release(&tls->refcount))
193                 ktls_destroy(tls);
194 }
195
196 #endif /* !_KERNEL */
197 #endif /* !_SYS_KTLS_H_ */