1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
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 AUTHOR 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
28 #include <sys/cdefs.h>
29 __FBSDID("$FreeBSD$");
30
31 #include "opt_inet.h"
32 #include "opt_inet6.h"
33 #include "opt_rss.h"
34
35 #include <sys/param.h>
36 #include <sys/kernel.h>
37 #include <sys/domainset.h>
38 #include <sys/ktls.h>
39 #include <sys/lock.h>
40 #include <sys/mbuf.h>
41 #include <sys/mutex.h>
42 #include <sys/rmlock.h>
43 #include <sys/proc.h>
44 #include <sys/protosw.h>
45 #include <sys/refcount.h>
46 #include <sys/smp.h>
47 #include <sys/socket.h>
48 #include <sys/socketvar.h>
49 #include <sys/sysctl.h>
50 #include <sys/taskqueue.h>
51 #include <sys/kthread.h>
52 #include <sys/uio.h>
53 #include <sys/vmmeter.h>
54 #if defined(__aarch64__) || defined(__amd64__) || defined(__i386__)
55 #include <machine/pcb.h>
56 #endif
57 #include <machine/vmparam.h>
58 #include <net/if.h>
59 #include <net/if_var.h>
60 #ifdef RSS
61 #include <net/netisr.h>
62 #include <net/rss_config.h>
63 #endif
64 #include <net/route.h>
65 #include <net/route/nhop.h>
66 #if defined(INET) || defined(INET6)
67 #include <netinet/in.h>
68 #include <netinet/in_pcb.h>
69 #endif
70 #include <netinet/tcp_var.h>
71 #ifdef TCP_OFFLOAD
72 #include <netinet/tcp_offload.h>
73 #endif
74 #include <opencrypto/xform.h>
75 #include <vm/uma_dbg.h>
76 #include <vm/vm.h>
77 #include <vm/vm_pageout.h>
78 #include <vm/vm_page.h>
79
80 struct ktls_wq {
81 struct mtx mtx;
82 STAILQ_HEAD(, mbuf) m_head;
83 STAILQ_HEAD(, socket) so_head;
84 bool running;
85 } __aligned(CACHE_LINE_SIZE);
86
87 struct ktls_domain_info {
88 int count;
89 int cpu[MAXCPU];
90 };
91
92 struct ktls_domain_info ktls_domains[MAXMEMDOM];
93 static struct ktls_wq *ktls_wq;
94 static struct proc *ktls_proc;
95 LIST_HEAD(, ktls_crypto_backend) ktls_backends;
96 static struct rmlock ktls_backends_lock;
97 static uma_zone_t ktls_session_zone;
98 static uint16_t ktls_cpuid_lookup[MAXCPU];
99
100 SYSCTL_NODE(_kern_ipc, OID_AUTO, tls, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
101 "Kernel TLS offload");
102 SYSCTL_NODE(_kern_ipc_tls, OID_AUTO, stats, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
103 "Kernel TLS offload stats");
104
105 static int ktls_allow_unload;
106 SYSCTL_INT(_kern_ipc_tls, OID_AUTO, allow_unload, CTLFLAG_RDTUN,
107 &ktls_allow_unload, 0, "Allow software crypto modules to unload");
108
109 #ifdef RSS
110 static int ktls_bind_threads = 1;
111 #else
112 static int ktls_bind_threads;
113 #endif
114 SYSCTL_INT(_kern_ipc_tls, OID_AUTO, bind_threads, CTLFLAG_RDTUN,
115 &ktls_bind_threads, 0,
116 "Bind crypto threads to cores (1) or cores and domains (2) at boot");
117
118 static u_int ktls_maxlen = 16384;
119 SYSCTL_UINT(_kern_ipc_tls, OID_AUTO, maxlen, CTLFLAG_RWTUN,
120 &ktls_maxlen, 0, "Maximum TLS record size");
121
122 static int ktls_number_threads;
123 SYSCTL_INT(_kern_ipc_tls_stats, OID_AUTO, threads, CTLFLAG_RD,
124 &ktls_number_threads, 0,
125 "Number of TLS threads in thread-pool");
126
127 static bool ktls_offload_enable;
128 SYSCTL_BOOL(_kern_ipc_tls, OID_AUTO, enable, CTLFLAG_RWTUN,
129 &ktls_offload_enable, 0,
130 "Enable support for kernel TLS offload");
131
132 static bool ktls_cbc_enable = true;
133 SYSCTL_BOOL(_kern_ipc_tls, OID_AUTO, cbc_enable, CTLFLAG_RWTUN,
134 &ktls_cbc_enable, 1,
135 "Enable Support of AES-CBC crypto for kernel TLS");
136
137 static COUNTER_U64_DEFINE_EARLY(ktls_tasks_active);
138 SYSCTL_COUNTER_U64(_kern_ipc_tls, OID_AUTO, tasks_active, CTLFLAG_RD,
139 &ktls_tasks_active, "Number of active tasks");
140
141 static COUNTER_U64_DEFINE_EARLY(ktls_cnt_tx_pending);
142 SYSCTL_COUNTER_U64(_kern_ipc_tls_stats, OID_AUTO, sw_tx_pending, CTLFLAG_RD,
143 &ktls_cnt_tx_pending,
144 "Number of TLS 1.0 records waiting for earlier TLS records");
145
146 static COUNTER_U64_DEFINE_EARLY(ktls_cnt_tx_queued);
147 SYSCTL_COUNTER_U64(_kern_ipc_tls_stats, OID_AUTO, sw_tx_inqueue, CTLFLAG_RD,
148 &ktls_cnt_tx_queued,
149 "Number of TLS records in queue to tasks for SW encryption");
150
151 static COUNTER_U64_DEFINE_EARLY(ktls_cnt_rx_queued);
152 SYSCTL_COUNTER_U64(_kern_ipc_tls_stats, OID_AUTO, sw_rx_inqueue, CTLFLAG_RD,
153 &ktls_cnt_rx_queued,
154 "Number of TLS sockets in queue to tasks for SW decryption");
155
156 static COUNTER_U64_DEFINE_EARLY(ktls_offload_total);
157 SYSCTL_COUNTER_U64(_kern_ipc_tls_stats, OID_AUTO, offload_total,
158 CTLFLAG_RD, &ktls_offload_total,
159 "Total successful TLS setups (parameters set)");
160
161 static COUNTER_U64_DEFINE_EARLY(ktls_offload_enable_calls);
162 SYSCTL_COUNTER_U64(_kern_ipc_tls_stats, OID_AUTO, enable_calls,
163 CTLFLAG_RD, &ktls_offload_enable_calls,
164 "Total number of TLS enable calls made");
165
166 static COUNTER_U64_DEFINE_EARLY(ktls_offload_active);
167 SYSCTL_COUNTER_U64(_kern_ipc_tls_stats, OID_AUTO, active, CTLFLAG_RD,
168 &ktls_offload_active, "Total Active TLS sessions");
169
170 static COUNTER_U64_DEFINE_EARLY(ktls_offload_corrupted_records);
171 SYSCTL_COUNTER_U64(_kern_ipc_tls_stats, OID_AUTO, corrupted_records, CTLFLAG_RD,
172 &ktls_offload_corrupted_records, "Total corrupted TLS records received");
173
174 static COUNTER_U64_DEFINE_EARLY(ktls_offload_failed_crypto);
175 SYSCTL_COUNTER_U64(_kern_ipc_tls_stats, OID_AUTO, failed_crypto, CTLFLAG_RD,
176 &ktls_offload_failed_crypto, "Total TLS crypto failures");
177
178 static COUNTER_U64_DEFINE_EARLY(ktls_switch_to_ifnet);
179 SYSCTL_COUNTER_U64(_kern_ipc_tls_stats, OID_AUTO, switch_to_ifnet, CTLFLAG_RD,
180 &ktls_switch_to_ifnet, "TLS sessions switched from SW to ifnet");
181
182 static COUNTER_U64_DEFINE_EARLY(ktls_switch_to_sw);
183 SYSCTL_COUNTER_U64(_kern_ipc_tls_stats, OID_AUTO, switch_to_sw, CTLFLAG_RD,
184 &ktls_switch_to_sw, "TLS sessions switched from ifnet to SW");
185
186 static COUNTER_U64_DEFINE_EARLY(ktls_switch_failed);
187 SYSCTL_COUNTER_U64(_kern_ipc_tls_stats, OID_AUTO, switch_failed, CTLFLAG_RD,
188 &ktls_switch_failed, "TLS sessions unable to switch between SW and ifnet");
189
190 SYSCTL_NODE(_kern_ipc_tls, OID_AUTO, sw, CTLFLAG_RD | CTLFLAG_MPSAFE, 0,
191 "Software TLS session stats");
192 SYSCTL_NODE(_kern_ipc_tls, OID_AUTO, ifnet, CTLFLAG_RD | CTLFLAG_MPSAFE, 0,
193 "Hardware (ifnet) TLS session stats");
194 #ifdef TCP_OFFLOAD
195 SYSCTL_NODE(_kern_ipc_tls, OID_AUTO, toe, CTLFLAG_RD | CTLFLAG_MPSAFE, 0,
196 "TOE TLS session stats");
197 #endif
198
199 static COUNTER_U64_DEFINE_EARLY(ktls_sw_cbc);
200 SYSCTL_COUNTER_U64(_kern_ipc_tls_sw, OID_AUTO, cbc, CTLFLAG_RD, &ktls_sw_cbc,
201 "Active number of software TLS sessions using AES-CBC");
202
203 static COUNTER_U64_DEFINE_EARLY(ktls_sw_gcm);
204 SYSCTL_COUNTER_U64(_kern_ipc_tls_sw, OID_AUTO, gcm, CTLFLAG_RD, &ktls_sw_gcm,
205 "Active number of software TLS sessions using AES-GCM");
206
207 static COUNTER_U64_DEFINE_EARLY(ktls_sw_chacha20);
208 SYSCTL_COUNTER_U64(_kern_ipc_tls_sw, OID_AUTO, chacha20, CTLFLAG_RD,
209 &ktls_sw_chacha20,
210 "Active number of software TLS sessions using Chacha20-Poly1305");
211
212 static COUNTER_U64_DEFINE_EARLY(ktls_ifnet_cbc);
213 SYSCTL_COUNTER_U64(_kern_ipc_tls_ifnet, OID_AUTO, cbc, CTLFLAG_RD,
214 &ktls_ifnet_cbc,
215 "Active number of ifnet TLS sessions using AES-CBC");
216
217 static COUNTER_U64_DEFINE_EARLY(ktls_ifnet_gcm);
218 SYSCTL_COUNTER_U64(_kern_ipc_tls_ifnet, OID_AUTO, gcm, CTLFLAG_RD,
219 &ktls_ifnet_gcm,
220 "Active number of ifnet TLS sessions using AES-GCM");
221
222 static COUNTER_U64_DEFINE_EARLY(ktls_ifnet_chacha20);
223 SYSCTL_COUNTER_U64(_kern_ipc_tls_ifnet, OID_AUTO, chacha20, CTLFLAG_RD,
224 &ktls_ifnet_chacha20,
225 "Active number of ifnet TLS sessions using Chacha20-Poly1305");
226
227 static COUNTER_U64_DEFINE_EARLY(ktls_ifnet_reset);
228 SYSCTL_COUNTER_U64(_kern_ipc_tls_ifnet, OID_AUTO, reset, CTLFLAG_RD,
229 &ktls_ifnet_reset, "TLS sessions updated to a new ifnet send tag");
230
231 static COUNTER_U64_DEFINE_EARLY(ktls_ifnet_reset_dropped);
232 SYSCTL_COUNTER_U64(_kern_ipc_tls_ifnet, OID_AUTO, reset_dropped, CTLFLAG_RD,
233 &ktls_ifnet_reset_dropped,
234 "TLS sessions dropped after failing to update ifnet send tag");
235
236 static COUNTER_U64_DEFINE_EARLY(ktls_ifnet_reset_failed);
237 SYSCTL_COUNTER_U64(_kern_ipc_tls_ifnet, OID_AUTO, reset_failed, CTLFLAG_RD,
238 &ktls_ifnet_reset_failed,
239 "TLS sessions that failed to allocate a new ifnet send tag");
240
241 static int ktls_ifnet_permitted;
242 SYSCTL_UINT(_kern_ipc_tls_ifnet, OID_AUTO, permitted, CTLFLAG_RWTUN,
243 &ktls_ifnet_permitted, 1,
244 "Whether to permit hardware (ifnet) TLS sessions");
245
246 #ifdef TCP_OFFLOAD
247 static COUNTER_U64_DEFINE_EARLY(ktls_toe_cbc);
248 SYSCTL_COUNTER_U64(_kern_ipc_tls_toe, OID_AUTO, cbc, CTLFLAG_RD,
249 &ktls_toe_cbc,
250 "Active number of TOE TLS sessions using AES-CBC");
251
252 static COUNTER_U64_DEFINE_EARLY(ktls_toe_gcm);
253 SYSCTL_COUNTER_U64(_kern_ipc_tls_toe, OID_AUTO, gcm, CTLFLAG_RD,
254 &ktls_toe_gcm,
255 "Active number of TOE TLS sessions using AES-GCM");
256
257 static COUNTER_U64_DEFINE_EARLY(ktls_toe_chacha20);
258 SYSCTL_COUNTER_U64(_kern_ipc_tls_toe, OID_AUTO, chacha20, CTLFLAG_RD,
259 &ktls_toe_chacha20,
260 "Active number of TOE TLS sessions using Chacha20-Poly1305");
261 #endif
262
263 static MALLOC_DEFINE(M_KTLS, "ktls", "Kernel TLS");
264
265 static void ktls_cleanup(struct ktls_session *tls);
266 #if defined(INET) || defined(INET6)
267 static void ktls_reset_send_tag(void *context, int pending);
268 #endif
269 static void ktls_work_thread(void *ctx);
270
271 int
ktls_crypto_backend_register(struct ktls_crypto_backend * be)272 ktls_crypto_backend_register(struct ktls_crypto_backend *be)
273 {
274 struct ktls_crypto_backend *curr_be, *tmp;
275
276 if (be->api_version != KTLS_API_VERSION) {
277 printf("KTLS: API version mismatch (%d vs %d) for %s\n",
278 be->api_version, KTLS_API_VERSION,
279 be->name);
280 return (EINVAL);
281 }
282
283 rm_wlock(&ktls_backends_lock);
284 printf("KTLS: Registering crypto method %s with prio %d\n",
285 be->name, be->prio);
286 if (LIST_EMPTY(&ktls_backends)) {
287 LIST_INSERT_HEAD(&ktls_backends, be, next);
288 } else {
289 LIST_FOREACH_SAFE(curr_be, &ktls_backends, next, tmp) {
290 if (curr_be->prio < be->prio) {
291 LIST_INSERT_BEFORE(curr_be, be, next);
292 break;
293 }
294 if (LIST_NEXT(curr_be, next) == NULL) {
295 LIST_INSERT_AFTER(curr_be, be, next);
296 break;
297 }
298 }
299 }
300 rm_wunlock(&ktls_backends_lock);
301 return (0);
302 }
303
304 int
ktls_crypto_backend_deregister(struct ktls_crypto_backend * be)305 ktls_crypto_backend_deregister(struct ktls_crypto_backend *be)
306 {
307 struct ktls_crypto_backend *tmp;
308
309 /*
310 * Don't error if the backend isn't registered. This permits
311 * MOD_UNLOAD handlers to use this function unconditionally.
312 */
313 rm_wlock(&ktls_backends_lock);
314 LIST_FOREACH(tmp, &ktls_backends, next) {
315 if (tmp == be)
316 break;
317 }
318 if (tmp == NULL) {
319 rm_wunlock(&ktls_backends_lock);
320 return (0);
321 }
322
323 if (!ktls_allow_unload) {
324 rm_wunlock(&ktls_backends_lock);
325 printf(
326 "KTLS: Deregistering crypto method %s is not supported\n",
327 be->name);
328 return (EBUSY);
329 }
330
331 if (be->use_count) {
332 rm_wunlock(&ktls_backends_lock);
333 return (EBUSY);
334 }
335
336 LIST_REMOVE(be, next);
337 rm_wunlock(&ktls_backends_lock);
338 return (0);
339 }
340
341 #if defined(INET) || defined(INET6)
342 static u_int
ktls_get_cpu(struct socket * so)343 ktls_get_cpu(struct socket *so)
344 {
345 struct inpcb *inp;
346 #ifdef NUMA
347 struct ktls_domain_info *di;
348 #endif
349 u_int cpuid;
350
351 inp = sotoinpcb(so);
352 #ifdef RSS
353 cpuid = rss_hash2cpuid(inp->inp_flowid, inp->inp_flowtype);
354 if (cpuid != NETISR_CPUID_NONE)
355 return (cpuid);
356 #endif
357 /*
358 * Just use the flowid to shard connections in a repeatable
359 * fashion. Note that some crypto backends rely on the
360 * serialization provided by having the same connection use
361 * the same queue.
362 */
363 #ifdef NUMA
364 if (ktls_bind_threads > 1 && inp->inp_numa_domain != M_NODOM) {
365 di = &ktls_domains[inp->inp_numa_domain];
366 cpuid = di->cpu[inp->inp_flowid % di->count];
367 } else
368 #endif
369 cpuid = ktls_cpuid_lookup[inp->inp_flowid % ktls_number_threads];
370 return (cpuid);
371 }
372 #endif
373
374 static void
ktls_init(void * dummy __unused)375 ktls_init(void *dummy __unused)
376 {
377 struct thread *td;
378 struct pcpu *pc;
379 cpuset_t mask;
380 int count, domain, error, i;
381
382 rm_init(&ktls_backends_lock, "ktls backends");
383 LIST_INIT(&ktls_backends);
384
385 ktls_wq = malloc(sizeof(*ktls_wq) * (mp_maxid + 1), M_KTLS,
386 M_WAITOK | M_ZERO);
387
388 ktls_session_zone = uma_zcreate("ktls_session",
389 sizeof(struct ktls_session),
390 NULL, NULL, NULL, NULL,
391 UMA_ALIGN_CACHE, 0);
392
393 /*
394 * Initialize the workqueues to run the TLS work. We create a
395 * work queue for each CPU.
396 */
397 CPU_FOREACH(i) {
398 STAILQ_INIT(&ktls_wq[i].m_head);
399 STAILQ_INIT(&ktls_wq[i].so_head);
400 mtx_init(&ktls_wq[i].mtx, "ktls work queue", NULL, MTX_DEF);
401 error = kproc_kthread_add(ktls_work_thread, &ktls_wq[i],
402 &ktls_proc, &td, 0, 0, "KTLS", "thr_%d", i);
403 if (error)
404 panic("Can't add KTLS thread %d error %d", i, error);
405
406 /*
407 * Bind threads to cores. If ktls_bind_threads is >
408 * 1, then we bind to the NUMA domain.
409 */
410 if (ktls_bind_threads) {
411 if (ktls_bind_threads > 1) {
412 pc = pcpu_find(i);
413 domain = pc->pc_domain;
414 CPU_COPY(&cpuset_domain[domain], &mask);
415 count = ktls_domains[domain].count;
416 ktls_domains[domain].cpu[count] = i;
417 ktls_domains[domain].count++;
418 } else {
419 CPU_SETOF(i, &mask);
420 }
421 error = cpuset_setthread(td->td_tid, &mask);
422 if (error)
423 panic(
424 "Unable to bind KTLS thread for CPU %d error %d",
425 i, error);
426 }
427 ktls_cpuid_lookup[ktls_number_threads] = i;
428 ktls_number_threads++;
429 }
430
431 /*
432 * If we somehow have an empty domain, fall back to choosing
433 * among all KTLS threads.
434 */
435 if (ktls_bind_threads > 1) {
436 for (i = 0; i < vm_ndomains; i++) {
437 if (ktls_domains[i].count == 0) {
438 ktls_bind_threads = 1;
439 break;
440 }
441 }
442 }
443
444 if (bootverbose)
445 printf("KTLS: Initialized %d threads\n", ktls_number_threads);
446 }
447 SYSINIT(ktls, SI_SUB_SMP + 1, SI_ORDER_ANY, ktls_init, NULL);
448
449 #if defined(INET) || defined(INET6)
450 static int
ktls_create_session(struct socket * so,struct tls_enable * en,struct ktls_session ** tlsp)451 ktls_create_session(struct socket *so, struct tls_enable *en,
452 struct ktls_session **tlsp)
453 {
454 struct ktls_session *tls;
455 int error;
456
457 /* Only TLS 1.0 - 1.3 are supported. */
458 if (en->tls_vmajor != TLS_MAJOR_VER_ONE)
459 return (EINVAL);
460 if (en->tls_vminor < TLS_MINOR_VER_ZERO ||
461 en->tls_vminor > TLS_MINOR_VER_THREE)
462 return (EINVAL);
463
464 if (en->auth_key_len < 0 || en->auth_key_len > TLS_MAX_PARAM_SIZE)
465 return (EINVAL);
466 if (en->cipher_key_len < 0 || en->cipher_key_len > TLS_MAX_PARAM_SIZE)
467 return (EINVAL);
468 if (en->iv_len < 0 || en->iv_len > sizeof(tls->params.iv))
469 return (EINVAL);
470
471 /* All supported algorithms require a cipher key. */
472 if (en->cipher_key_len == 0)
473 return (EINVAL);
474
475 /* No flags are currently supported. */
476 if (en->flags != 0)
477 return (EINVAL);
478
479 /* Common checks for supported algorithms. */
480 switch (en->cipher_algorithm) {
481 case CRYPTO_AES_NIST_GCM_16:
482 /*
483 * auth_algorithm isn't used, but permit GMAC values
484 * for compatibility.
485 */
486 switch (en->auth_algorithm) {
487 case 0:
488 #ifdef COMPAT_FREEBSD12
489 /* XXX: Really 13.0-current COMPAT. */
490 case CRYPTO_AES_128_NIST_GMAC:
491 case CRYPTO_AES_192_NIST_GMAC:
492 case CRYPTO_AES_256_NIST_GMAC:
493 #endif
494 break;
495 default:
496 return (EINVAL);
497 }
498 if (en->auth_key_len != 0)
499 return (EINVAL);
500 switch (en->tls_vminor) {
501 case TLS_MINOR_VER_TWO:
502 if (en->iv_len != TLS_AEAD_GCM_LEN)
503 return (EINVAL);
504 break;
505 case TLS_MINOR_VER_THREE:
506 if (en->iv_len != TLS_1_3_GCM_IV_LEN)
507 return (EINVAL);
508 break;
509 default:
510 return (EINVAL);
511 }
512 break;
513 case CRYPTO_AES_CBC:
514 switch (en->auth_algorithm) {
515 case CRYPTO_SHA1_HMAC:
516 break;
517 case CRYPTO_SHA2_256_HMAC:
518 case CRYPTO_SHA2_384_HMAC:
519 if (en->tls_vminor != TLS_MINOR_VER_TWO)
520 return (EINVAL);
521 break;
522 default:
523 return (EINVAL);
524 }
525 if (en->auth_key_len == 0)
526 return (EINVAL);
527
528 /*
529 * TLS 1.0 requires an implicit IV. TLS 1.1 and 1.2
530 * use explicit IVs.
531 */
532 switch (en->tls_vminor) {
533 case TLS_MINOR_VER_ZERO:
534 if (en->iv_len != TLS_CBC_IMPLICIT_IV_LEN)
535 return (EINVAL);
536 break;
537 case TLS_MINOR_VER_ONE:
538 case TLS_MINOR_VER_TWO:
539 /* Ignore any supplied IV. */
540 en->iv_len = 0;
541 break;
542 default:
543 return (EINVAL);
544 }
545 break;
546 case CRYPTO_CHACHA20_POLY1305:
547 if (en->auth_algorithm != 0 || en->auth_key_len != 0)
548 return (EINVAL);
549 if (en->tls_vminor != TLS_MINOR_VER_TWO &&
550 en->tls_vminor != TLS_MINOR_VER_THREE)
551 return (EINVAL);
552 if (en->iv_len != TLS_CHACHA20_IV_LEN)
553 return (EINVAL);
554 break;
555 default:
556 return (EINVAL);
557 }
558
559 tls = uma_zalloc(ktls_session_zone, M_WAITOK | M_ZERO);
560
561 counter_u64_add(ktls_offload_active, 1);
562
563 refcount_init(&tls->refcount, 1);
564 TASK_INIT(&tls->reset_tag_task, 0, ktls_reset_send_tag, tls);
565
566 tls->wq_index = ktls_get_cpu(so);
567
568 tls->params.cipher_algorithm = en->cipher_algorithm;
569 tls->params.auth_algorithm = en->auth_algorithm;
570 tls->params.tls_vmajor = en->tls_vmajor;
571 tls->params.tls_vminor = en->tls_vminor;
572 tls->params.flags = en->flags;
573 tls->params.max_frame_len = min(TLS_MAX_MSG_SIZE_V10_2, ktls_maxlen);
574
575 /* Set the header and trailer lengths. */
576 tls->params.tls_hlen = sizeof(struct tls_record_layer);
577 switch (en->cipher_algorithm) {
578 case CRYPTO_AES_NIST_GCM_16:
579 /*
580 * TLS 1.2 uses a 4 byte implicit IV with an explicit 8 byte
581 * nonce. TLS 1.3 uses a 12 byte implicit IV.
582 */
583 if (en->tls_vminor < TLS_MINOR_VER_THREE)
584 tls->params.tls_hlen += sizeof(uint64_t);
585 tls->params.tls_tlen = AES_GMAC_HASH_LEN;
586 tls->params.tls_bs = 1;
587 break;
588 case CRYPTO_AES_CBC:
589 switch (en->auth_algorithm) {
590 case CRYPTO_SHA1_HMAC:
591 if (en->tls_vminor == TLS_MINOR_VER_ZERO) {
592 /* Implicit IV, no nonce. */
593 tls->sequential_records = true;
594 tls->next_seqno = be64dec(en->rec_seq);
595 STAILQ_INIT(&tls->pending_records);
596 } else {
597 tls->params.tls_hlen += AES_BLOCK_LEN;
598 }
599 tls->params.tls_tlen = AES_BLOCK_LEN +
600 SHA1_HASH_LEN;
601 break;
602 case CRYPTO_SHA2_256_HMAC:
603 tls->params.tls_hlen += AES_BLOCK_LEN;
604 tls->params.tls_tlen = AES_BLOCK_LEN +
605 SHA2_256_HASH_LEN;
606 break;
607 case CRYPTO_SHA2_384_HMAC:
608 tls->params.tls_hlen += AES_BLOCK_LEN;
609 tls->params.tls_tlen = AES_BLOCK_LEN +
610 SHA2_384_HASH_LEN;
611 break;
612 default:
613 panic("invalid hmac");
614 }
615 tls->params.tls_bs = AES_BLOCK_LEN;
616 break;
617 case CRYPTO_CHACHA20_POLY1305:
618 /*
619 * Chacha20 uses a 12 byte implicit IV.
620 */
621 tls->params.tls_tlen = POLY1305_HASH_LEN;
622 tls->params.tls_bs = 1;
623 break;
624 default:
625 panic("invalid cipher");
626 }
627
628 /*
629 * TLS 1.3 includes optional padding which we do not support,
630 * and also puts the "real" record type at the end of the
631 * encrypted data.
632 */
633 if (en->tls_vminor == TLS_MINOR_VER_THREE)
634 tls->params.tls_tlen += sizeof(uint8_t);
635
636 KASSERT(tls->params.tls_hlen <= MBUF_PEXT_HDR_LEN,
637 ("TLS header length too long: %d", tls->params.tls_hlen));
638 KASSERT(tls->params.tls_tlen <= MBUF_PEXT_TRAIL_LEN,
639 ("TLS trailer length too long: %d", tls->params.tls_tlen));
640
641 if (en->auth_key_len != 0) {
642 tls->params.auth_key_len = en->auth_key_len;
643 tls->params.auth_key = malloc(en->auth_key_len, M_KTLS,
644 M_WAITOK);
645 error = copyin(en->auth_key, tls->params.auth_key,
646 en->auth_key_len);
647 if (error)
648 goto out;
649 }
650
651 tls->params.cipher_key_len = en->cipher_key_len;
652 tls->params.cipher_key = malloc(en->cipher_key_len, M_KTLS, M_WAITOK);
653 error = copyin(en->cipher_key, tls->params.cipher_key,
654 en->cipher_key_len);
655 if (error)
656 goto out;
657
658 /*
659 * This holds the implicit portion of the nonce for AEAD
660 * ciphers and the initial implicit IV for TLS 1.0. The
661 * explicit portions of the IV are generated in ktls_frame().
662 */
663 if (en->iv_len != 0) {
664 tls->params.iv_len = en->iv_len;
665 error = copyin(en->iv, tls->params.iv, en->iv_len);
666 if (error)
667 goto out;
668
669 /*
670 * For TLS 1.2 with GCM, generate an 8-byte nonce as a
671 * counter to generate unique explicit IVs.
672 *
673 * Store this counter in the last 8 bytes of the IV
674 * array so that it is 8-byte aligned.
675 */
676 if (en->cipher_algorithm == CRYPTO_AES_NIST_GCM_16 &&
677 en->tls_vminor == TLS_MINOR_VER_TWO)
678 arc4rand(tls->params.iv + 8, sizeof(uint64_t), 0);
679 }
680
681 *tlsp = tls;
682 return (0);
683
684 out:
685 ktls_cleanup(tls);
686 return (error);
687 }
688
689 static struct ktls_session *
ktls_clone_session(struct ktls_session * tls)690 ktls_clone_session(struct ktls_session *tls)
691 {
692 struct ktls_session *tls_new;
693
694 tls_new = uma_zalloc(ktls_session_zone, M_WAITOK | M_ZERO);
695
696 counter_u64_add(ktls_offload_active, 1);
697
698 refcount_init(&tls_new->refcount, 1);
699 TASK_INIT(&tls_new->reset_tag_task, 0, ktls_reset_send_tag, tls_new);
700
701 /* Copy fields from existing session. */
702 tls_new->params = tls->params;
703 tls_new->wq_index = tls->wq_index;
704
705 /* Deep copy keys. */
706 if (tls_new->params.auth_key != NULL) {
707 tls_new->params.auth_key = malloc(tls->params.auth_key_len,
708 M_KTLS, M_WAITOK);
709 memcpy(tls_new->params.auth_key, tls->params.auth_key,
710 tls->params.auth_key_len);
711 }
712
713 tls_new->params.cipher_key = malloc(tls->params.cipher_key_len, M_KTLS,
714 M_WAITOK);
715 memcpy(tls_new->params.cipher_key, tls->params.cipher_key,
716 tls->params.cipher_key_len);
717
718 return (tls_new);
719 }
720 #endif
721
722 static void
ktls_cleanup(struct ktls_session * tls)723 ktls_cleanup(struct ktls_session *tls)
724 {
725
726 counter_u64_add(ktls_offload_active, -1);
727 switch (tls->mode) {
728 case TCP_TLS_MODE_SW:
729 MPASS(tls->be != NULL);
730 switch (tls->params.cipher_algorithm) {
731 case CRYPTO_AES_CBC:
732 counter_u64_add(ktls_sw_cbc, -1);
733 break;
734 case CRYPTO_AES_NIST_GCM_16:
735 counter_u64_add(ktls_sw_gcm, -1);
736 break;
737 case CRYPTO_CHACHA20_POLY1305:
738 counter_u64_add(ktls_sw_chacha20, -1);
739 break;
740 }
741 tls->free(tls);
742 break;
743 case TCP_TLS_MODE_IFNET:
744 switch (tls->params.cipher_algorithm) {
745 case CRYPTO_AES_CBC:
746 counter_u64_add(ktls_ifnet_cbc, -1);
747 break;
748 case CRYPTO_AES_NIST_GCM_16:
749 counter_u64_add(ktls_ifnet_gcm, -1);
750 break;
751 case CRYPTO_CHACHA20_POLY1305:
752 counter_u64_add(ktls_ifnet_chacha20, -1);
753 break;
754 }
755 if (tls->snd_tag != NULL)
756 m_snd_tag_rele(tls->snd_tag);
757 break;
758 #ifdef TCP_OFFLOAD
759 case TCP_TLS_MODE_TOE:
760 switch (tls->params.cipher_algorithm) {
761 case CRYPTO_AES_CBC:
762 counter_u64_add(ktls_toe_cbc, -1);
763 break;
764 case CRYPTO_AES_NIST_GCM_16:
765 counter_u64_add(ktls_toe_gcm, -1);
766 break;
767 case CRYPTO_CHACHA20_POLY1305:
768 counter_u64_add(ktls_toe_chacha20, -1);
769 break;
770 }
771 break;
772 #endif
773 }
774 if (tls->params.auth_key != NULL) {
775 zfree(tls->params.auth_key, M_KTLS);
776 tls->params.auth_key = NULL;
777 tls->params.auth_key_len = 0;
778 }
779 if (tls->params.cipher_key != NULL) {
780 zfree(tls->params.cipher_key, M_KTLS);
781 tls->params.cipher_key = NULL;
782 tls->params.cipher_key_len = 0;
783 }
784 explicit_bzero(tls->params.iv, sizeof(tls->params.iv));
785 }
786
787 #if defined(INET) || defined(INET6)
788
789 #ifdef TCP_OFFLOAD
790 static int
ktls_try_toe(struct socket * so,struct ktls_session * tls,int direction)791 ktls_try_toe(struct socket *so, struct ktls_session *tls, int direction)
792 {
793 struct inpcb *inp;
794 struct tcpcb *tp;
795 int error;
796
797 inp = so->so_pcb;
798 INP_WLOCK(inp);
799 if (inp->inp_flags2 & INP_FREED) {
800 INP_WUNLOCK(inp);
801 return (ECONNRESET);
802 }
803 if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) {
804 INP_WUNLOCK(inp);
805 return (ECONNRESET);
806 }
807 if (inp->inp_socket == NULL) {
808 INP_WUNLOCK(inp);
809 return (ECONNRESET);
810 }
811 tp = intotcpcb(inp);
812 if (!(tp->t_flags & TF_TOE)) {
813 INP_WUNLOCK(inp);
814 return (EOPNOTSUPP);
815 }
816
817 error = tcp_offload_alloc_tls_session(tp, tls, direction);
818 INP_WUNLOCK(inp);
819 if (error == 0) {
820 tls->mode = TCP_TLS_MODE_TOE;
821 switch (tls->params.cipher_algorithm) {
822 case CRYPTO_AES_CBC:
823 counter_u64_add(ktls_toe_cbc, 1);
824 break;
825 case CRYPTO_AES_NIST_GCM_16:
826 counter_u64_add(ktls_toe_gcm, 1);
827 break;
828 case CRYPTO_CHACHA20_POLY1305:
829 counter_u64_add(ktls_toe_chacha20, 1);
830 break;
831 }
832 }
833 return (error);
834 }
835 #endif
836
837 /*
838 * Common code used when first enabling ifnet TLS on a connection or
839 * when allocating a new ifnet TLS session due to a routing change.
840 * This function allocates a new TLS send tag on whatever interface
841 * the connection is currently routed over.
842 */
843 static int
ktls_alloc_snd_tag(struct inpcb * inp,struct ktls_session * tls,bool force,struct m_snd_tag ** mstp)844 ktls_alloc_snd_tag(struct inpcb *inp, struct ktls_session *tls, bool force,
845 struct m_snd_tag **mstp)
846 {
847 union if_snd_tag_alloc_params params;
848 struct ifnet *ifp;
849 struct nhop_object *nh;
850 struct tcpcb *tp;
851 int error;
852
853 INP_RLOCK(inp);
854 if (inp->inp_flags2 & INP_FREED) {
855 INP_RUNLOCK(inp);
856 return (ECONNRESET);
857 }
858 if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) {
859 INP_RUNLOCK(inp);
860 return (ECONNRESET);
861 }
862 if (inp->inp_socket == NULL) {
863 INP_RUNLOCK(inp);
864 return (ECONNRESET);
865 }
866 tp = intotcpcb(inp);
867
868 /*
869 * Check administrative controls on ifnet TLS to determine if
870 * ifnet TLS should be denied.
871 *
872 * - Always permit 'force' requests.
873 * - ktls_ifnet_permitted == 0: always deny.
874 */
875 if (!force && ktls_ifnet_permitted == 0) {
876 INP_RUNLOCK(inp);
877 return (ENXIO);
878 }
879
880 /*
881 * XXX: Use the cached route in the inpcb to find the
882 * interface. This should perhaps instead use
883 * rtalloc1_fib(dst, 0, 0, fibnum). Since KTLS is only
884 * enabled after a connection has completed key negotiation in
885 * userland, the cached route will be present in practice.
886 */
887 nh = inp->inp_route.ro_nh;
888 if (nh == NULL) {
889 INP_RUNLOCK(inp);
890 return (ENXIO);
891 }
892 ifp = nh->nh_ifp;
893 if_ref(ifp);
894
895 /*
896 * Allocate a TLS + ratelimit tag if the connection has an
897 * existing pacing rate.
898 */
899 if (tp->t_pacing_rate != -1 &&
900 (ifp->if_capenable & IFCAP_TXTLS_RTLMT) != 0) {
901 params.hdr.type = IF_SND_TAG_TYPE_TLS_RATE_LIMIT;
902 params.tls_rate_limit.inp = inp;
903 params.tls_rate_limit.tls = tls;
904 params.tls_rate_limit.max_rate = tp->t_pacing_rate;
905 } else {
906 params.hdr.type = IF_SND_TAG_TYPE_TLS;
907 params.tls.inp = inp;
908 params.tls.tls = tls;
909 }
910 params.hdr.flowid = inp->inp_flowid;
911 params.hdr.flowtype = inp->inp_flowtype;
912 params.hdr.numa_domain = inp->inp_numa_domain;
913 INP_RUNLOCK(inp);
914
915 if ((ifp->if_capenable & IFCAP_MEXTPG) == 0) {
916 error = EOPNOTSUPP;
917 goto out;
918 }
919 if (inp->inp_vflag & INP_IPV6) {
920 if ((ifp->if_capenable & IFCAP_TXTLS6) == 0) {
921 error = EOPNOTSUPP;
922 goto out;
923 }
924 } else {
925 if ((ifp->if_capenable & IFCAP_TXTLS4) == 0) {
926 error = EOPNOTSUPP;
927 goto out;
928 }
929 }
930 error = m_snd_tag_alloc(ifp, ¶ms, mstp);
931 out:
932 if_rele(ifp);
933 return (error);
934 }
935
936 static int
ktls_try_ifnet(struct socket * so,struct ktls_session * tls,bool force)937 ktls_try_ifnet(struct socket *so, struct ktls_session *tls, bool force)
938 {
939 struct m_snd_tag *mst;
940 int error;
941
942 error = ktls_alloc_snd_tag(so->so_pcb, tls, force, &mst);
943 if (error == 0) {
944 tls->mode = TCP_TLS_MODE_IFNET;
945 tls->snd_tag = mst;
946 switch (tls->params.cipher_algorithm) {
947 case CRYPTO_AES_CBC:
948 counter_u64_add(ktls_ifnet_cbc, 1);
949 break;
950 case CRYPTO_AES_NIST_GCM_16:
951 counter_u64_add(ktls_ifnet_gcm, 1);
952 break;
953 case CRYPTO_CHACHA20_POLY1305:
954 counter_u64_add(ktls_ifnet_chacha20, 1);
955 break;
956 }
957 }
958 return (error);
959 }
960
961 static int
ktls_try_sw(struct socket * so,struct ktls_session * tls,int direction)962 ktls_try_sw(struct socket *so, struct ktls_session *tls, int direction)
963 {
964 struct rm_priotracker prio;
965 struct ktls_crypto_backend *be;
966
967 /*
968 * Choose the best software crypto backend. Backends are
969 * stored in sorted priority order (larget value == most
970 * important at the head of the list), so this just stops on
971 * the first backend that claims the session by returning
972 * success.
973 */
974 if (ktls_allow_unload)
975 rm_rlock(&ktls_backends_lock, &prio);
976 LIST_FOREACH(be, &ktls_backends, next) {
977 if (be->try(so, tls, direction) == 0)
978 break;
979 KASSERT(tls->cipher == NULL,
980 ("ktls backend leaked a cipher pointer"));
981 }
982 if (be != NULL) {
983 if (ktls_allow_unload)
984 be->use_count++;
985 tls->be = be;
986 }
987 if (ktls_allow_unload)
988 rm_runlock(&ktls_backends_lock, &prio);
989 if (be == NULL)
990 return (EOPNOTSUPP);
991 tls->mode = TCP_TLS_MODE_SW;
992 switch (tls->params.cipher_algorithm) {
993 case CRYPTO_AES_CBC:
994 counter_u64_add(ktls_sw_cbc, 1);
995 break;
996 case CRYPTO_AES_NIST_GCM_16:
997 counter_u64_add(ktls_sw_gcm, 1);
998 break;
999 case CRYPTO_CHACHA20_POLY1305:
1000 counter_u64_add(ktls_sw_chacha20, 1);
1001 break;
1002 }
1003 return (0);
1004 }
1005
1006 /*
1007 * KTLS RX stores data in the socket buffer as a list of TLS records,
1008 * where each record is stored as a control message containg the TLS
1009 * header followed by data mbufs containing the decrypted data. This
1010 * is different from KTLS TX which always uses an mb_ext_pgs mbuf for
1011 * both encrypted and decrypted data. TLS records decrypted by a NIC
1012 * should be queued to the socket buffer as records, but encrypted
1013 * data which needs to be decrypted by software arrives as a stream of
1014 * regular mbufs which need to be converted. In addition, there may
1015 * already be pending encrypted data in the socket buffer when KTLS RX
1016 * is enabled.
1017 *
1018 * To manage not-yet-decrypted data for KTLS RX, the following scheme
1019 * is used:
1020 *
1021 * - A single chain of NOTREADY mbufs is hung off of sb_mtls.
1022 *
1023 * - ktls_check_rx checks this chain of mbufs reading the TLS header
1024 * from the first mbuf. Once all of the data for that TLS record is
1025 * queued, the socket is queued to a worker thread.
1026 *
1027 * - The worker thread calls ktls_decrypt to decrypt TLS records in
1028 * the TLS chain. Each TLS record is detached from the TLS chain,
1029 * decrypted, and inserted into the regular socket buffer chain as
1030 * record starting with a control message holding the TLS header and
1031 * a chain of mbufs holding the encrypted data.
1032 */
1033
1034 static void
sb_mark_notready(struct sockbuf * sb)1035 sb_mark_notready(struct sockbuf *sb)
1036 {
1037 struct mbuf *m;
1038
1039 m = sb->sb_mb;
1040 sb->sb_mtls = m;
1041 sb->sb_mb = NULL;
1042 sb->sb_mbtail = NULL;
1043 sb->sb_lastrecord = NULL;
1044 for (; m != NULL; m = m->m_next) {
1045 KASSERT(m->m_nextpkt == NULL, ("%s: m_nextpkt != NULL",
1046 __func__));
1047 KASSERT((m->m_flags & M_NOTAVAIL) == 0, ("%s: mbuf not avail",
1048 __func__));
1049 KASSERT(sb->sb_acc >= m->m_len, ("%s: sb_acc < m->m_len",
1050 __func__));
1051 m->m_flags |= M_NOTREADY;
1052 sb->sb_acc -= m->m_len;
1053 sb->sb_tlscc += m->m_len;
1054 sb->sb_mtlstail = m;
1055 }
1056 KASSERT(sb->sb_acc == 0 && sb->sb_tlscc == sb->sb_ccc,
1057 ("%s: acc %u tlscc %u ccc %u", __func__, sb->sb_acc, sb->sb_tlscc,
1058 sb->sb_ccc));
1059 }
1060
1061 int
ktls_enable_rx(struct socket * so,struct tls_enable * en)1062 ktls_enable_rx(struct socket *so, struct tls_enable *en)
1063 {
1064 struct ktls_session *tls;
1065 int error;
1066
1067 if (!ktls_offload_enable)
1068 return (ENOTSUP);
1069 if (SOLISTENING(so))
1070 return (EINVAL);
1071
1072 counter_u64_add(ktls_offload_enable_calls, 1);
1073
1074 /*
1075 * This should always be true since only the TCP socket option
1076 * invokes this function.
1077 */
1078 if (so->so_proto->pr_protocol != IPPROTO_TCP)
1079 return (EINVAL);
1080
1081 /*
1082 * XXX: Don't overwrite existing sessions. We should permit
1083 * this to support rekeying in the future.
1084 */
1085 if (so->so_rcv.sb_tls_info != NULL)
1086 return (EALREADY);
1087
1088 if (en->cipher_algorithm == CRYPTO_AES_CBC && !ktls_cbc_enable)
1089 return (ENOTSUP);
1090
1091 /* TLS 1.3 is not yet supported. */
1092 if (en->tls_vmajor == TLS_MAJOR_VER_ONE &&
1093 en->tls_vminor == TLS_MINOR_VER_THREE)
1094 return (ENOTSUP);
1095
1096 error = ktls_create_session(so, en, &tls);
1097 if (error)
1098 return (error);
1099
1100 #ifdef TCP_OFFLOAD
1101 error = ktls_try_toe(so, tls, KTLS_RX);
1102 if (error)
1103 #endif
1104 error = ktls_try_sw(so, tls, KTLS_RX);
1105
1106 if (error) {
1107 ktls_cleanup(tls);
1108 return (error);
1109 }
1110
1111 /* Mark the socket as using TLS offload. */
1112 SOCKBUF_LOCK(&so->so_rcv);
1113 so->so_rcv.sb_tls_seqno = be64dec(en->rec_seq);
1114 so->so_rcv.sb_tls_info = tls;
1115 so->so_rcv.sb_flags |= SB_TLS_RX;
1116
1117 /* Mark existing data as not ready until it can be decrypted. */
1118 if (tls->mode != TCP_TLS_MODE_TOE) {
1119 sb_mark_notready(&so->so_rcv);
1120 ktls_check_rx(&so->so_rcv);
1121 }
1122 SOCKBUF_UNLOCK(&so->so_rcv);
1123
1124 counter_u64_add(ktls_offload_total, 1);
1125
1126 return (0);
1127 }
1128
1129 int
ktls_enable_tx(struct socket * so,struct tls_enable * en)1130 ktls_enable_tx(struct socket *so, struct tls_enable *en)
1131 {
1132 struct ktls_session *tls;
1133 struct inpcb *inp;
1134 int error;
1135
1136 if (!ktls_offload_enable)
1137 return (ENOTSUP);
1138 if (SOLISTENING(so))
1139 return (EINVAL);
1140
1141 counter_u64_add(ktls_offload_enable_calls, 1);
1142
1143 /*
1144 * This should always be true since only the TCP socket option
1145 * invokes this function.
1146 */
1147 if (so->so_proto->pr_protocol != IPPROTO_TCP)
1148 return (EINVAL);
1149
1150 /*
1151 * XXX: Don't overwrite existing sessions. We should permit
1152 * this to support rekeying in the future.
1153 */
1154 if (so->so_snd.sb_tls_info != NULL)
1155 return (EALREADY);
1156
1157 if (en->cipher_algorithm == CRYPTO_AES_CBC && !ktls_cbc_enable)
1158 return (ENOTSUP);
1159
1160 /* TLS requires ext pgs */
1161 if (mb_use_ext_pgs == 0)
1162 return (ENXIO);
1163
1164 error = ktls_create_session(so, en, &tls);
1165 if (error)
1166 return (error);
1167
1168 /* Prefer TOE -> ifnet TLS -> software TLS. */
1169 #ifdef TCP_OFFLOAD
1170 error = ktls_try_toe(so, tls, KTLS_TX);
1171 if (error)
1172 #endif
1173 error = ktls_try_ifnet(so, tls, false);
1174 if (error)
1175 error = ktls_try_sw(so, tls, KTLS_TX);
1176
1177 if (error) {
1178 ktls_cleanup(tls);
1179 return (error);
1180 }
1181
1182 error = SOCK_IO_SEND_LOCK(so, SBL_WAIT);
1183 if (error) {
1184 ktls_cleanup(tls);
1185 return (error);
1186 }
1187
1188 /*
1189 * Write lock the INP when setting sb_tls_info so that
1190 * routines in tcp_ratelimit.c can read sb_tls_info while
1191 * holding the INP lock.
1192 */
1193 inp = so->so_pcb;
1194 INP_WLOCK(inp);
1195 SOCKBUF_LOCK(&so->so_snd);
1196 so->so_snd.sb_tls_seqno = be64dec(en->rec_seq);
1197 so->so_snd.sb_tls_info = tls;
1198 if (tls->mode != TCP_TLS_MODE_SW)
1199 so->so_snd.sb_flags |= SB_TLS_IFNET;
1200 SOCKBUF_UNLOCK(&so->so_snd);
1201 INP_WUNLOCK(inp);
1202 SOCK_IO_SEND_UNLOCK(so);
1203
1204 counter_u64_add(ktls_offload_total, 1);
1205
1206 return (0);
1207 }
1208
1209 int
ktls_get_rx_mode(struct socket * so)1210 ktls_get_rx_mode(struct socket *so)
1211 {
1212 struct ktls_session *tls;
1213 struct inpcb *inp;
1214 int mode;
1215
1216 if (SOLISTENING(so))
1217 return (EINVAL);
1218 inp = so->so_pcb;
1219 INP_WLOCK_ASSERT(inp);
1220 SOCKBUF_LOCK(&so->so_rcv);
1221 tls = so->so_rcv.sb_tls_info;
1222 if (tls == NULL)
1223 mode = TCP_TLS_MODE_NONE;
1224 else
1225 mode = tls->mode;
1226 SOCKBUF_UNLOCK(&so->so_rcv);
1227 return (mode);
1228 }
1229
1230 int
ktls_get_tx_mode(struct socket * so)1231 ktls_get_tx_mode(struct socket *so)
1232 {
1233 struct ktls_session *tls;
1234 struct inpcb *inp;
1235 int mode;
1236
1237 if (SOLISTENING(so))
1238 return (EINVAL);
1239 inp = so->so_pcb;
1240 INP_WLOCK_ASSERT(inp);
1241 SOCKBUF_LOCK(&so->so_snd);
1242 tls = so->so_snd.sb_tls_info;
1243 if (tls == NULL)
1244 mode = TCP_TLS_MODE_NONE;
1245 else
1246 mode = tls->mode;
1247 SOCKBUF_UNLOCK(&so->so_snd);
1248 return (mode);
1249 }
1250
1251 /*
1252 * Switch between SW and ifnet TLS sessions as requested.
1253 */
1254 int
ktls_set_tx_mode(struct socket * so,int mode)1255 ktls_set_tx_mode(struct socket *so, int mode)
1256 {
1257 struct ktls_session *tls, *tls_new;
1258 struct inpcb *inp;
1259 int error;
1260
1261 if (SOLISTENING(so))
1262 return (EINVAL);
1263 switch (mode) {
1264 case TCP_TLS_MODE_SW:
1265 case TCP_TLS_MODE_IFNET:
1266 break;
1267 default:
1268 return (EINVAL);
1269 }
1270
1271 inp = so->so_pcb;
1272 INP_WLOCK_ASSERT(inp);
1273 SOCKBUF_LOCK(&so->so_snd);
1274 tls = so->so_snd.sb_tls_info;
1275 if (tls == NULL) {
1276 SOCKBUF_UNLOCK(&so->so_snd);
1277 return (0);
1278 }
1279
1280 if (tls->mode == mode) {
1281 SOCKBUF_UNLOCK(&so->so_snd);
1282 return (0);
1283 }
1284
1285 tls = ktls_hold(tls);
1286 SOCKBUF_UNLOCK(&so->so_snd);
1287 INP_WUNLOCK(inp);
1288
1289 tls_new = ktls_clone_session(tls);
1290
1291 if (mode == TCP_TLS_MODE_IFNET)
1292 error = ktls_try_ifnet(so, tls_new, true);
1293 else
1294 error = ktls_try_sw(so, tls_new, KTLS_TX);
1295 if (error) {
1296 counter_u64_add(ktls_switch_failed, 1);
1297 ktls_free(tls_new);
1298 ktls_free(tls);
1299 INP_WLOCK(inp);
1300 return (error);
1301 }
1302
1303 error = SOCK_IO_SEND_LOCK(so, SBL_WAIT);
1304 if (error) {
1305 counter_u64_add(ktls_switch_failed, 1);
1306 ktls_free(tls_new);
1307 ktls_free(tls);
1308 INP_WLOCK(inp);
1309 return (error);
1310 }
1311
1312 /*
1313 * If we raced with another session change, keep the existing
1314 * session.
1315 */
1316 if (tls != so->so_snd.sb_tls_info) {
1317 counter_u64_add(ktls_switch_failed, 1);
1318 SOCK_IO_SEND_UNLOCK(so);
1319 ktls_free(tls_new);
1320 ktls_free(tls);
1321 INP_WLOCK(inp);
1322 return (EBUSY);
1323 }
1324
1325 SOCKBUF_LOCK(&so->so_snd);
1326 so->so_snd.sb_tls_info = tls_new;
1327 if (tls_new->mode != TCP_TLS_MODE_SW)
1328 so->so_snd.sb_flags |= SB_TLS_IFNET;
1329 SOCKBUF_UNLOCK(&so->so_snd);
1330 SOCK_IO_SEND_UNLOCK(so);
1331
1332 /*
1333 * Drop two references on 'tls'. The first is for the
1334 * ktls_hold() above. The second drops the reference from the
1335 * socket buffer.
1336 */
1337 KASSERT(tls->refcount >= 2, ("too few references on old session"));
1338 ktls_free(tls);
1339 ktls_free(tls);
1340
1341 if (mode == TCP_TLS_MODE_IFNET)
1342 counter_u64_add(ktls_switch_to_ifnet, 1);
1343 else
1344 counter_u64_add(ktls_switch_to_sw, 1);
1345
1346 INP_WLOCK(inp);
1347 return (0);
1348 }
1349
1350 /*
1351 * Try to allocate a new TLS send tag. This task is scheduled when
1352 * ip_output detects a route change while trying to transmit a packet
1353 * holding a TLS record. If a new tag is allocated, replace the tag
1354 * in the TLS session. Subsequent packets on the connection will use
1355 * the new tag. If a new tag cannot be allocated, drop the
1356 * connection.
1357 */
1358 static void
ktls_reset_send_tag(void * context,int pending)1359 ktls_reset_send_tag(void *context, int pending)
1360 {
1361 struct epoch_tracker et;
1362 struct ktls_session *tls;
1363 struct m_snd_tag *old, *new;
1364 struct inpcb *inp;
1365 struct tcpcb *tp;
1366 int error;
1367
1368 MPASS(pending == 1);
1369
1370 tls = context;
1371 inp = tls->inp;
1372
1373 /*
1374 * Free the old tag first before allocating a new one.
1375 * ip[6]_output_send() will treat a NULL send tag the same as
1376 * an ifp mismatch and drop packets until a new tag is
1377 * allocated.
1378 *
1379 * Write-lock the INP when changing tls->snd_tag since
1380 * ip[6]_output_send() holds a read-lock when reading the
1381 * pointer.
1382 */
1383 INP_WLOCK(inp);
1384 old = tls->snd_tag;
1385 tls->snd_tag = NULL;
1386 INP_WUNLOCK(inp);
1387 if (old != NULL)
1388 m_snd_tag_rele(old);
1389
1390 error = ktls_alloc_snd_tag(inp, tls, true, &new);
1391
1392 if (error == 0) {
1393 INP_WLOCK(inp);
1394 tls->snd_tag = new;
1395 mtx_pool_lock(mtxpool_sleep, tls);
1396 tls->reset_pending = false;
1397 mtx_pool_unlock(mtxpool_sleep, tls);
1398 if (!in_pcbrele_wlocked(inp))
1399 INP_WUNLOCK(inp);
1400
1401 counter_u64_add(ktls_ifnet_reset, 1);
1402
1403 /*
1404 * XXX: Should we kick tcp_output explicitly now that
1405 * the send tag is fixed or just rely on timers?
1406 */
1407 } else {
1408 NET_EPOCH_ENTER(et);
1409 INP_WLOCK(inp);
1410 if (!in_pcbrele_wlocked(inp)) {
1411 if (!(inp->inp_flags & INP_TIMEWAIT) &&
1412 !(inp->inp_flags & INP_DROPPED)) {
1413 tp = intotcpcb(inp);
1414 CURVNET_SET(tp->t_vnet);
1415 tp = tcp_drop(tp, ECONNABORTED);
1416 CURVNET_RESTORE();
1417 if (tp != NULL)
1418 INP_WUNLOCK(inp);
1419 counter_u64_add(ktls_ifnet_reset_dropped, 1);
1420 } else
1421 INP_WUNLOCK(inp);
1422 }
1423 NET_EPOCH_EXIT(et);
1424
1425 counter_u64_add(ktls_ifnet_reset_failed, 1);
1426
1427 /*
1428 * Leave reset_pending true to avoid future tasks while
1429 * the socket goes away.
1430 */
1431 }
1432
1433 ktls_free(tls);
1434 }
1435
1436 int
ktls_output_eagain(struct inpcb * inp,struct ktls_session * tls)1437 ktls_output_eagain(struct inpcb *inp, struct ktls_session *tls)
1438 {
1439
1440 if (inp == NULL)
1441 return (ENOBUFS);
1442
1443 INP_LOCK_ASSERT(inp);
1444
1445 /*
1446 * See if we should schedule a task to update the send tag for
1447 * this session.
1448 */
1449 mtx_pool_lock(mtxpool_sleep, tls);
1450 if (!tls->reset_pending) {
1451 (void) ktls_hold(tls);
1452 in_pcbref(inp);
1453 tls->inp = inp;
1454 tls->reset_pending = true;
1455 taskqueue_enqueue(taskqueue_thread, &tls->reset_tag_task);
1456 }
1457 mtx_pool_unlock(mtxpool_sleep, tls);
1458 return (ENOBUFS);
1459 }
1460
1461 #ifdef RATELIMIT
1462 int
ktls_modify_txrtlmt(struct ktls_session * tls,uint64_t max_pacing_rate)1463 ktls_modify_txrtlmt(struct ktls_session *tls, uint64_t max_pacing_rate)
1464 {
1465 union if_snd_tag_modify_params params = {
1466 .rate_limit.max_rate = max_pacing_rate,
1467 .rate_limit.flags = M_NOWAIT,
1468 };
1469 struct m_snd_tag *mst;
1470 struct ifnet *ifp;
1471 int error;
1472
1473 /* Can't get to the inp, but it should be locked. */
1474 /* INP_LOCK_ASSERT(inp); */
1475
1476 MPASS(tls->mode == TCP_TLS_MODE_IFNET);
1477
1478 if (tls->snd_tag == NULL) {
1479 /*
1480 * Resetting send tag, ignore this change. The
1481 * pending reset may or may not see this updated rate
1482 * in the tcpcb. If it doesn't, we will just lose
1483 * this rate change.
1484 */
1485 return (0);
1486 }
1487
1488 MPASS(tls->snd_tag != NULL);
1489 MPASS(tls->snd_tag->type == IF_SND_TAG_TYPE_TLS_RATE_LIMIT);
1490
1491 mst = tls->snd_tag;
1492 ifp = mst->ifp;
1493 return (ifp->if_snd_tag_modify(mst, ¶ms));
1494 }
1495 #endif
1496 #endif
1497
1498 void
ktls_destroy(struct ktls_session * tls)1499 ktls_destroy(struct ktls_session *tls)
1500 {
1501 struct rm_priotracker prio;
1502
1503 if (tls->sequential_records) {
1504 struct mbuf *m, *n;
1505 int page_count;
1506
1507 STAILQ_FOREACH_SAFE(m, &tls->pending_records, m_epg_stailq, n) {
1508 page_count = m->m_epg_enc_cnt;
1509 while (page_count > 0) {
1510 KASSERT(page_count >= m->m_epg_nrdy,
1511 ("%s: too few pages", __func__));
1512 page_count -= m->m_epg_nrdy;
1513 m = m_free(m);
1514 }
1515 }
1516 }
1517 ktls_cleanup(tls);
1518 if (tls->be != NULL && ktls_allow_unload) {
1519 rm_rlock(&ktls_backends_lock, &prio);
1520 tls->be->use_count--;
1521 rm_runlock(&ktls_backends_lock, &prio);
1522 }
1523 uma_zfree(ktls_session_zone, tls);
1524 }
1525
1526 void
ktls_seq(struct sockbuf * sb,struct mbuf * m)1527 ktls_seq(struct sockbuf *sb, struct mbuf *m)
1528 {
1529
1530 for (; m != NULL; m = m->m_next) {
1531 KASSERT((m->m_flags & M_EXTPG) != 0,
1532 ("ktls_seq: mapped mbuf %p", m));
1533
1534 m->m_epg_seqno = sb->sb_tls_seqno;
1535 sb->sb_tls_seqno++;
1536 }
1537 }
1538
1539 /*
1540 * Add TLS framing (headers and trailers) to a chain of mbufs. Each
1541 * mbuf in the chain must be an unmapped mbuf. The payload of the
1542 * mbuf must be populated with the payload of each TLS record.
1543 *
1544 * The record_type argument specifies the TLS record type used when
1545 * populating the TLS header.
1546 *
1547 * The enq_count argument on return is set to the number of pages of
1548 * payload data for this entire chain that need to be encrypted via SW
1549 * encryption. The returned value should be passed to ktls_enqueue
1550 * when scheduling encryption of this chain of mbufs. To handle the
1551 * special case of empty fragments for TLS 1.0 sessions, an empty
1552 * fragment counts as one page.
1553 */
1554 void
ktls_frame(struct mbuf * top,struct ktls_session * tls,int * enq_cnt,uint8_t record_type)1555 ktls_frame(struct mbuf *top, struct ktls_session *tls, int *enq_cnt,
1556 uint8_t record_type)
1557 {
1558 struct tls_record_layer *tlshdr;
1559 struct mbuf *m;
1560 uint64_t *noncep;
1561 uint16_t tls_len;
1562 int maxlen;
1563
1564 maxlen = tls->params.max_frame_len;
1565 *enq_cnt = 0;
1566 for (m = top; m != NULL; m = m->m_next) {
1567 /*
1568 * All mbufs in the chain should be TLS records whose
1569 * payload does not exceed the maximum frame length.
1570 *
1571 * Empty TLS 1.0 records are permitted when using CBC.
1572 */
1573 KASSERT(m->m_len <= maxlen && m->m_len >= 0 &&
1574 (m->m_len > 0 || ktls_permit_empty_frames(tls)),
1575 ("ktls_frame: m %p len %d", m, m->m_len));
1576
1577 /*
1578 * TLS frames require unmapped mbufs to store session
1579 * info.
1580 */
1581 KASSERT((m->m_flags & M_EXTPG) != 0,
1582 ("ktls_frame: mapped mbuf %p (top = %p)", m, top));
1583
1584 tls_len = m->m_len;
1585
1586 /* Save a reference to the session. */
1587 m->m_epg_tls = ktls_hold(tls);
1588
1589 m->m_epg_hdrlen = tls->params.tls_hlen;
1590 m->m_epg_trllen = tls->params.tls_tlen;
1591 if (tls->params.cipher_algorithm == CRYPTO_AES_CBC) {
1592 int bs, delta;
1593
1594 /*
1595 * AES-CBC pads messages to a multiple of the
1596 * block size. Note that the padding is
1597 * applied after the digest and the encryption
1598 * is done on the "plaintext || mac || padding".
1599 * At least one byte of padding is always
1600 * present.
1601 *
1602 * Compute the final trailer length assuming
1603 * at most one block of padding.
1604 * tls->params.sb_tls_tlen is the maximum
1605 * possible trailer length (padding + digest).
1606 * delta holds the number of excess padding
1607 * bytes if the maximum were used. Those
1608 * extra bytes are removed.
1609 */
1610 bs = tls->params.tls_bs;
1611 delta = (tls_len + tls->params.tls_tlen) & (bs - 1);
1612 m->m_epg_trllen -= delta;
1613 }
1614 m->m_len += m->m_epg_hdrlen + m->m_epg_trllen;
1615
1616 /* Populate the TLS header. */
1617 tlshdr = (void *)m->m_epg_hdr;
1618 tlshdr->tls_vmajor = tls->params.tls_vmajor;
1619
1620 /*
1621 * TLS 1.3 masquarades as TLS 1.2 with a record type
1622 * of TLS_RLTYPE_APP.
1623 */
1624 if (tls->params.tls_vminor == TLS_MINOR_VER_THREE &&
1625 tls->params.tls_vmajor == TLS_MAJOR_VER_ONE) {
1626 tlshdr->tls_vminor = TLS_MINOR_VER_TWO;
1627 tlshdr->tls_type = TLS_RLTYPE_APP;
1628 /* save the real record type for later */
1629 m->m_epg_record_type = record_type;
1630 m->m_epg_trail[0] = record_type;
1631 } else {
1632 tlshdr->tls_vminor = tls->params.tls_vminor;
1633 tlshdr->tls_type = record_type;
1634 }
1635 tlshdr->tls_length = htons(m->m_len - sizeof(*tlshdr));
1636
1637 /*
1638 * Store nonces / explicit IVs after the end of the
1639 * TLS header.
1640 *
1641 * For GCM with TLS 1.2, an 8 byte nonce is copied
1642 * from the end of the IV. The nonce is then
1643 * incremented for use by the next record.
1644 *
1645 * For CBC, a random nonce is inserted for TLS 1.1+.
1646 */
1647 if (tls->params.cipher_algorithm == CRYPTO_AES_NIST_GCM_16 &&
1648 tls->params.tls_vminor == TLS_MINOR_VER_TWO) {
1649 noncep = (uint64_t *)(tls->params.iv + 8);
1650 be64enc(tlshdr + 1, *noncep);
1651 (*noncep)++;
1652 } else if (tls->params.cipher_algorithm == CRYPTO_AES_CBC &&
1653 tls->params.tls_vminor >= TLS_MINOR_VER_ONE)
1654 arc4rand(tlshdr + 1, AES_BLOCK_LEN, 0);
1655
1656 /*
1657 * When using SW encryption, mark the mbuf not ready.
1658 * It will be marked ready via sbready() after the
1659 * record has been encrypted.
1660 *
1661 * When using ifnet TLS, unencrypted TLS records are
1662 * sent down the stack to the NIC.
1663 */
1664 if (tls->mode == TCP_TLS_MODE_SW) {
1665 m->m_flags |= M_NOTREADY;
1666 if (__predict_false(tls_len == 0)) {
1667 /* TLS 1.0 empty fragment. */
1668 m->m_epg_nrdy = 1;
1669 } else
1670 m->m_epg_nrdy = m->m_epg_npgs;
1671 *enq_cnt += m->m_epg_nrdy;
1672 }
1673 }
1674 }
1675
1676 bool
ktls_permit_empty_frames(struct ktls_session * tls)1677 ktls_permit_empty_frames(struct ktls_session *tls)
1678 {
1679 return (tls->params.cipher_algorithm == CRYPTO_AES_CBC &&
1680 tls->params.tls_vminor == TLS_MINOR_VER_ZERO);
1681 }
1682
1683 void
ktls_check_rx(struct sockbuf * sb)1684 ktls_check_rx(struct sockbuf *sb)
1685 {
1686 struct tls_record_layer hdr;
1687 struct ktls_wq *wq;
1688 struct socket *so;
1689 bool running;
1690
1691 SOCKBUF_LOCK_ASSERT(sb);
1692 KASSERT(sb->sb_flags & SB_TLS_RX, ("%s: sockbuf %p isn't TLS RX",
1693 __func__, sb));
1694 so = __containerof(sb, struct socket, so_rcv);
1695
1696 if (sb->sb_flags & SB_TLS_RX_RUNNING)
1697 return;
1698
1699 /* Is there enough queued for a TLS header? */
1700 if (sb->sb_tlscc < sizeof(hdr)) {
1701 if ((sb->sb_state & SBS_CANTRCVMORE) != 0 && sb->sb_tlscc != 0)
1702 so->so_error = EMSGSIZE;
1703 return;
1704 }
1705
1706 m_copydata(sb->sb_mtls, 0, sizeof(hdr), (void *)&hdr);
1707
1708 /* Is the entire record queued? */
1709 if (sb->sb_tlscc < sizeof(hdr) + ntohs(hdr.tls_length)) {
1710 if ((sb->sb_state & SBS_CANTRCVMORE) != 0)
1711 so->so_error = EMSGSIZE;
1712 return;
1713 }
1714
1715 sb->sb_flags |= SB_TLS_RX_RUNNING;
1716
1717 soref(so);
1718 wq = &ktls_wq[so->so_rcv.sb_tls_info->wq_index];
1719 mtx_lock(&wq->mtx);
1720 STAILQ_INSERT_TAIL(&wq->so_head, so, so_ktls_rx_list);
1721 running = wq->running;
1722 mtx_unlock(&wq->mtx);
1723 if (!running)
1724 wakeup(wq);
1725 counter_u64_add(ktls_cnt_rx_queued, 1);
1726 }
1727
1728 static struct mbuf *
ktls_detach_record(struct sockbuf * sb,int len)1729 ktls_detach_record(struct sockbuf *sb, int len)
1730 {
1731 struct mbuf *m, *n, *top;
1732 int remain;
1733
1734 SOCKBUF_LOCK_ASSERT(sb);
1735 MPASS(len <= sb->sb_tlscc);
1736
1737 /*
1738 * If TLS chain is the exact size of the record,
1739 * just grab the whole record.
1740 */
1741 top = sb->sb_mtls;
1742 if (sb->sb_tlscc == len) {
1743 sb->sb_mtls = NULL;
1744 sb->sb_mtlstail = NULL;
1745 goto out;
1746 }
1747
1748 /*
1749 * While it would be nice to use m_split() here, we need
1750 * to know exactly what m_split() allocates to update the
1751 * accounting, so do it inline instead.
1752 */
1753 remain = len;
1754 for (m = top; remain > m->m_len; m = m->m_next)
1755 remain -= m->m_len;
1756
1757 /* Easy case: don't have to split 'm'. */
1758 if (remain == m->m_len) {
1759 sb->sb_mtls = m->m_next;
1760 if (sb->sb_mtls == NULL)
1761 sb->sb_mtlstail = NULL;
1762 m->m_next = NULL;
1763 goto out;
1764 }
1765
1766 /*
1767 * Need to allocate an mbuf to hold the remainder of 'm'. Try
1768 * with M_NOWAIT first.
1769 */
1770 n = m_get(M_NOWAIT, MT_DATA);
1771 if (n == NULL) {
1772 /*
1773 * Use M_WAITOK with socket buffer unlocked. If
1774 * 'sb_mtls' changes while the lock is dropped, return
1775 * NULL to force the caller to retry.
1776 */
1777 SOCKBUF_UNLOCK(sb);
1778
1779 n = m_get(M_WAITOK, MT_DATA);
1780
1781 SOCKBUF_LOCK(sb);
1782 if (sb->sb_mtls != top) {
1783 m_free(n);
1784 return (NULL);
1785 }
1786 }
1787 n->m_flags |= M_NOTREADY;
1788
1789 /* Store remainder in 'n'. */
1790 n->m_len = m->m_len - remain;
1791 if (m->m_flags & M_EXT) {
1792 n->m_data = m->m_data + remain;
1793 mb_dupcl(n, m);
1794 } else {
1795 bcopy(mtod(m, caddr_t) + remain, mtod(n, caddr_t), n->m_len);
1796 }
1797
1798 /* Trim 'm' and update accounting. */
1799 m->m_len -= n->m_len;
1800 sb->sb_tlscc -= n->m_len;
1801 sb->sb_ccc -= n->m_len;
1802
1803 /* Account for 'n'. */
1804 sballoc_ktls_rx(sb, n);
1805
1806 /* Insert 'n' into the TLS chain. */
1807 sb->sb_mtls = n;
1808 n->m_next = m->m_next;
1809 if (sb->sb_mtlstail == m)
1810 sb->sb_mtlstail = n;
1811
1812 /* Detach the record from the TLS chain. */
1813 m->m_next = NULL;
1814
1815 out:
1816 MPASS(m_length(top, NULL) == len);
1817 for (m = top; m != NULL; m = m->m_next)
1818 sbfree_ktls_rx(sb, m);
1819 sb->sb_tlsdcc = len;
1820 sb->sb_ccc += len;
1821 SBCHECK(sb);
1822 return (top);
1823 }
1824
1825 static void
ktls_decrypt(struct socket * so)1826 ktls_decrypt(struct socket *so)
1827 {
1828 char tls_header[MBUF_PEXT_HDR_LEN];
1829 struct ktls_session *tls;
1830 struct sockbuf *sb;
1831 struct tls_record_layer *hdr;
1832 struct tls_get_record tgr;
1833 struct mbuf *control, *data, *m;
1834 uint64_t seqno;
1835 int error, remain, tls_len, trail_len;
1836
1837 hdr = (struct tls_record_layer *)tls_header;
1838 sb = &so->so_rcv;
1839 SOCKBUF_LOCK(sb);
1840 KASSERT(sb->sb_flags & SB_TLS_RX_RUNNING,
1841 ("%s: socket %p not running", __func__, so));
1842
1843 tls = sb->sb_tls_info;
1844 MPASS(tls != NULL);
1845
1846 for (;;) {
1847 /* Is there enough queued for a TLS header? */
1848 if (sb->sb_tlscc < tls->params.tls_hlen)
1849 break;
1850
1851 m_copydata(sb->sb_mtls, 0, tls->params.tls_hlen, tls_header);
1852 tls_len = sizeof(*hdr) + ntohs(hdr->tls_length);
1853
1854 if (hdr->tls_vmajor != tls->params.tls_vmajor ||
1855 hdr->tls_vminor != tls->params.tls_vminor)
1856 error = EINVAL;
1857 else if (tls_len < tls->params.tls_hlen || tls_len >
1858 tls->params.tls_hlen + TLS_MAX_MSG_SIZE_V10_2 +
1859 tls->params.tls_tlen)
1860 error = EMSGSIZE;
1861 else
1862 error = 0;
1863 if (__predict_false(error != 0)) {
1864 /*
1865 * We have a corrupted record and are likely
1866 * out of sync. The connection isn't
1867 * recoverable at this point, so abort it.
1868 */
1869 SOCKBUF_UNLOCK(sb);
1870 counter_u64_add(ktls_offload_corrupted_records, 1);
1871
1872 CURVNET_SET(so->so_vnet);
1873 so->so_proto->pr_usrreqs->pru_abort(so);
1874 so->so_error = error;
1875 CURVNET_RESTORE();
1876 goto deref;
1877 }
1878
1879 /* Is the entire record queued? */
1880 if (sb->sb_tlscc < tls_len)
1881 break;
1882
1883 /*
1884 * Split out the portion of the mbuf chain containing
1885 * this TLS record.
1886 */
1887 data = ktls_detach_record(sb, tls_len);
1888 if (data == NULL)
1889 continue;
1890 MPASS(sb->sb_tlsdcc == tls_len);
1891
1892 seqno = sb->sb_tls_seqno;
1893 sb->sb_tls_seqno++;
1894 SBCHECK(sb);
1895 SOCKBUF_UNLOCK(sb);
1896
1897 error = tls->sw_decrypt(tls, hdr, data, seqno, &trail_len);
1898 if (error) {
1899 counter_u64_add(ktls_offload_failed_crypto, 1);
1900
1901 SOCKBUF_LOCK(sb);
1902 if (sb->sb_tlsdcc == 0) {
1903 /*
1904 * sbcut/drop/flush discarded these
1905 * mbufs.
1906 */
1907 m_freem(data);
1908 break;
1909 }
1910
1911 /*
1912 * Drop this TLS record's data, but keep
1913 * decrypting subsequent records.
1914 */
1915 sb->sb_ccc -= tls_len;
1916 sb->sb_tlsdcc = 0;
1917
1918 CURVNET_SET(so->so_vnet);
1919 so->so_error = EBADMSG;
1920 sorwakeup_locked(so);
1921 CURVNET_RESTORE();
1922
1923 m_freem(data);
1924
1925 SOCKBUF_LOCK(sb);
1926 continue;
1927 }
1928
1929 /* Allocate the control mbuf. */
1930 tgr.tls_type = hdr->tls_type;
1931 tgr.tls_vmajor = hdr->tls_vmajor;
1932 tgr.tls_vminor = hdr->tls_vminor;
1933 tgr.tls_length = htobe16(tls_len - tls->params.tls_hlen -
1934 trail_len);
1935 control = sbcreatecontrol_how(&tgr, sizeof(tgr),
1936 TLS_GET_RECORD, IPPROTO_TCP, M_WAITOK);
1937
1938 SOCKBUF_LOCK(sb);
1939 if (sb->sb_tlsdcc == 0) {
1940 /* sbcut/drop/flush discarded these mbufs. */
1941 MPASS(sb->sb_tlscc == 0);
1942 m_freem(data);
1943 m_freem(control);
1944 break;
1945 }
1946
1947 /*
1948 * Clear the 'dcc' accounting in preparation for
1949 * adding the decrypted record.
1950 */
1951 sb->sb_ccc -= tls_len;
1952 sb->sb_tlsdcc = 0;
1953 SBCHECK(sb);
1954
1955 /* If there is no payload, drop all of the data. */
1956 if (tgr.tls_length == htobe16(0)) {
1957 m_freem(data);
1958 data = NULL;
1959 } else {
1960 /* Trim header. */
1961 remain = tls->params.tls_hlen;
1962 while (remain > 0) {
1963 if (data->m_len > remain) {
1964 data->m_data += remain;
1965 data->m_len -= remain;
1966 break;
1967 }
1968 remain -= data->m_len;
1969 data = m_free(data);
1970 }
1971
1972 /* Trim trailer and clear M_NOTREADY. */
1973 remain = be16toh(tgr.tls_length);
1974 m = data;
1975 for (m = data; remain > m->m_len; m = m->m_next) {
1976 m->m_flags &= ~M_NOTREADY;
1977 remain -= m->m_len;
1978 }
1979 m->m_len = remain;
1980 m_freem(m->m_next);
1981 m->m_next = NULL;
1982 m->m_flags &= ~M_NOTREADY;
1983
1984 /* Set EOR on the final mbuf. */
1985 m->m_flags |= M_EOR;
1986 }
1987
1988 sbappendcontrol_locked(sb, data, control, 0);
1989 }
1990
1991 sb->sb_flags &= ~SB_TLS_RX_RUNNING;
1992
1993 if ((sb->sb_state & SBS_CANTRCVMORE) != 0 && sb->sb_tlscc > 0)
1994 so->so_error = EMSGSIZE;
1995
1996 sorwakeup_locked(so);
1997
1998 deref:
1999 SOCKBUF_UNLOCK_ASSERT(sb);
2000
2001 CURVNET_SET(so->so_vnet);
2002 SOCK_LOCK(so);
2003 sorele(so);
2004 CURVNET_RESTORE();
2005 }
2006
2007 void
ktls_enqueue_to_free(struct mbuf * m)2008 ktls_enqueue_to_free(struct mbuf *m)
2009 {
2010 struct ktls_wq *wq;
2011 bool running;
2012
2013 /* Mark it for freeing. */
2014 m->m_epg_flags |= EPG_FLAG_2FREE;
2015 wq = &ktls_wq[m->m_epg_tls->wq_index];
2016 mtx_lock(&wq->mtx);
2017 STAILQ_INSERT_TAIL(&wq->m_head, m, m_epg_stailq);
2018 running = wq->running;
2019 mtx_unlock(&wq->mtx);
2020 if (!running)
2021 wakeup(wq);
2022 }
2023
2024 /* Number of TLS records in a batch passed to ktls_enqueue(). */
2025 static u_int
ktls_batched_records(struct mbuf * m)2026 ktls_batched_records(struct mbuf *m)
2027 {
2028 int page_count, records;
2029
2030 records = 0;
2031 page_count = m->m_epg_enc_cnt;
2032 while (page_count > 0) {
2033 records++;
2034 page_count -= m->m_epg_nrdy;
2035 m = m->m_next;
2036 }
2037 KASSERT(page_count == 0, ("%s: mismatched page count", __func__));
2038 return (records);
2039 }
2040
2041 void
ktls_enqueue(struct mbuf * m,struct socket * so,int page_count)2042 ktls_enqueue(struct mbuf *m, struct socket *so, int page_count)
2043 {
2044 struct ktls_session *tls;
2045 struct ktls_wq *wq;
2046 int queued;
2047 bool running;
2048
2049 KASSERT(((m->m_flags & (M_EXTPG | M_NOTREADY)) ==
2050 (M_EXTPG | M_NOTREADY)),
2051 ("ktls_enqueue: %p not unready & nomap mbuf\n", m));
2052 KASSERT(page_count != 0, ("enqueueing TLS mbuf with zero page count"));
2053
2054 KASSERT(m->m_epg_tls->mode == TCP_TLS_MODE_SW, ("!SW TLS mbuf"));
2055
2056 m->m_epg_enc_cnt = page_count;
2057
2058 /*
2059 * Save a pointer to the socket. The caller is responsible
2060 * for taking an additional reference via soref().
2061 */
2062 m->m_epg_so = so;
2063
2064 queued = 1;
2065 tls = m->m_epg_tls;
2066 wq = &ktls_wq[tls->wq_index];
2067 mtx_lock(&wq->mtx);
2068 if (__predict_false(tls->sequential_records)) {
2069 /*
2070 * For TLS 1.0, records must be encrypted
2071 * sequentially. For a given connection, all records
2072 * queued to the associated work queue are processed
2073 * sequentially. However, sendfile(2) might complete
2074 * I/O requests spanning multiple TLS records out of
2075 * order. Here we ensure TLS records are enqueued to
2076 * the work queue in FIFO order.
2077 *
2078 * tls->next_seqno holds the sequence number of the
2079 * next TLS record that should be enqueued to the work
2080 * queue. If this next record is not tls->next_seqno,
2081 * it must be a future record, so insert it, sorted by
2082 * TLS sequence number, into tls->pending_records and
2083 * return.
2084 *
2085 * If this TLS record matches tls->next_seqno, place
2086 * it in the work queue and then check
2087 * tls->pending_records to see if any
2088 * previously-queued records are now ready for
2089 * encryption.
2090 */
2091 if (m->m_epg_seqno != tls->next_seqno) {
2092 struct mbuf *n, *p;
2093
2094 p = NULL;
2095 STAILQ_FOREACH(n, &tls->pending_records, m_epg_stailq) {
2096 if (n->m_epg_seqno > m->m_epg_seqno)
2097 break;
2098 p = n;
2099 }
2100 if (n == NULL)
2101 STAILQ_INSERT_TAIL(&tls->pending_records, m,
2102 m_epg_stailq);
2103 else if (p == NULL)
2104 STAILQ_INSERT_HEAD(&tls->pending_records, m,
2105 m_epg_stailq);
2106 else
2107 STAILQ_INSERT_AFTER(&tls->pending_records, p, m,
2108 m_epg_stailq);
2109 mtx_unlock(&wq->mtx);
2110 counter_u64_add(ktls_cnt_tx_pending, 1);
2111 return;
2112 }
2113
2114 tls->next_seqno += ktls_batched_records(m);
2115 STAILQ_INSERT_TAIL(&wq->m_head, m, m_epg_stailq);
2116
2117 while (!STAILQ_EMPTY(&tls->pending_records)) {
2118 struct mbuf *n;
2119
2120 n = STAILQ_FIRST(&tls->pending_records);
2121 if (n->m_epg_seqno != tls->next_seqno)
2122 break;
2123
2124 queued++;
2125 STAILQ_REMOVE_HEAD(&tls->pending_records, m_epg_stailq);
2126 tls->next_seqno += ktls_batched_records(n);
2127 STAILQ_INSERT_TAIL(&wq->m_head, n, m_epg_stailq);
2128 }
2129 counter_u64_add(ktls_cnt_tx_pending, -(queued - 1));
2130 } else
2131 STAILQ_INSERT_TAIL(&wq->m_head, m, m_epg_stailq);
2132
2133 running = wq->running;
2134 mtx_unlock(&wq->mtx);
2135 if (!running)
2136 wakeup(wq);
2137 counter_u64_add(ktls_cnt_tx_queued, queued);
2138 }
2139
2140 static __noinline void
ktls_encrypt(struct mbuf * top)2141 ktls_encrypt(struct mbuf *top)
2142 {
2143 struct ktls_session *tls;
2144 struct socket *so;
2145 struct mbuf *m;
2146 vm_paddr_t parray[1 + btoc(TLS_MAX_MSG_SIZE_V10_2)];
2147 struct iovec src_iov[1 + btoc(TLS_MAX_MSG_SIZE_V10_2)];
2148 struct iovec dst_iov[1 + btoc(TLS_MAX_MSG_SIZE_V10_2)];
2149 vm_page_t pg;
2150 int error, i, len, npages, off, total_pages;
2151 bool is_anon;
2152
2153 so = top->m_epg_so;
2154 tls = top->m_epg_tls;
2155 KASSERT(tls != NULL, ("tls = NULL, top = %p\n", top));
2156 KASSERT(so != NULL, ("so = NULL, top = %p\n", top));
2157 #ifdef INVARIANTS
2158 top->m_epg_so = NULL;
2159 #endif
2160 total_pages = top->m_epg_enc_cnt;
2161 npages = 0;
2162
2163 /*
2164 * Encrypt the TLS records in the chain of mbufs starting with
2165 * 'top'. 'total_pages' gives us a total count of pages and is
2166 * used to know when we have finished encrypting the TLS
2167 * records originally queued with 'top'.
2168 *
2169 * NB: These mbufs are queued in the socket buffer and
2170 * 'm_next' is traversing the mbufs in the socket buffer. The
2171 * socket buffer lock is not held while traversing this chain.
2172 * Since the mbufs are all marked M_NOTREADY their 'm_next'
2173 * pointers should be stable. However, the 'm_next' of the
2174 * last mbuf encrypted is not necessarily NULL. It can point
2175 * to other mbufs appended while 'top' was on the TLS work
2176 * queue.
2177 *
2178 * Each mbuf holds an entire TLS record.
2179 */
2180 error = 0;
2181 for (m = top; npages != total_pages; m = m->m_next) {
2182 KASSERT(m->m_epg_tls == tls,
2183 ("different TLS sessions in a single mbuf chain: %p vs %p",
2184 tls, m->m_epg_tls));
2185 KASSERT((m->m_flags & (M_EXTPG | M_NOTREADY)) ==
2186 (M_EXTPG | M_NOTREADY),
2187 ("%p not unready & nomap mbuf (top = %p)\n", m, top));
2188 KASSERT(npages + m->m_epg_npgs <= total_pages,
2189 ("page count mismatch: top %p, total_pages %d, m %p", top,
2190 total_pages, m));
2191
2192 /*
2193 * Generate source and destination ivoecs to pass to
2194 * the SW encryption backend. For writable mbufs, the
2195 * destination iovec is a copy of the source and
2196 * encryption is done in place. For file-backed mbufs
2197 * (from sendfile), anonymous wired pages are
2198 * allocated and assigned to the destination iovec.
2199 */
2200 is_anon = (m->m_epg_flags & EPG_FLAG_ANON) != 0;
2201
2202 off = m->m_epg_1st_off;
2203 for (i = 0; i < m->m_epg_npgs; i++, off = 0) {
2204 len = m_epg_pagelen(m, i, off);
2205 src_iov[i].iov_len = len;
2206 src_iov[i].iov_base =
2207 (char *)(void *)PHYS_TO_DMAP(m->m_epg_pa[i]) +
2208 off;
2209
2210 if (is_anon) {
2211 dst_iov[i].iov_base = src_iov[i].iov_base;
2212 dst_iov[i].iov_len = src_iov[i].iov_len;
2213 continue;
2214 }
2215 retry_page:
2216 pg = vm_page_alloc_noobj(VM_ALLOC_NODUMP |
2217 VM_ALLOC_WIRED);
2218 if (pg == NULL) {
2219 vm_wait(NULL);
2220 goto retry_page;
2221 }
2222 parray[i] = VM_PAGE_TO_PHYS(pg);
2223 dst_iov[i].iov_base =
2224 (char *)(void *)PHYS_TO_DMAP(parray[i]) + off;
2225 dst_iov[i].iov_len = len;
2226 }
2227
2228 npages += m->m_epg_nrdy;
2229
2230 error = (*tls->sw_encrypt)(tls,
2231 (const struct tls_record_layer *)m->m_epg_hdr,
2232 m->m_epg_trail, src_iov, dst_iov, i, m->m_epg_seqno,
2233 m->m_epg_record_type);
2234 if (error) {
2235 counter_u64_add(ktls_offload_failed_crypto, 1);
2236 break;
2237 }
2238
2239 /*
2240 * For file-backed mbufs, release the file-backed
2241 * pages and replace them in the ext_pgs array with
2242 * the anonymous wired pages allocated above.
2243 */
2244 if (!is_anon) {
2245 /* Free the old pages. */
2246 m->m_ext.ext_free(m);
2247
2248 /* Replace them with the new pages. */
2249 for (i = 0; i < m->m_epg_npgs; i++)
2250 m->m_epg_pa[i] = parray[i];
2251
2252 /* Use the basic free routine. */
2253 m->m_ext.ext_free = mb_free_mext_pgs;
2254
2255 /* Pages are now writable. */
2256 m->m_epg_flags |= EPG_FLAG_ANON;
2257 }
2258
2259 /*
2260 * Drop a reference to the session now that it is no
2261 * longer needed. Existing code depends on encrypted
2262 * records having no associated session vs
2263 * yet-to-be-encrypted records having an associated
2264 * session.
2265 */
2266 m->m_epg_tls = NULL;
2267 ktls_free(tls);
2268 }
2269
2270 CURVNET_SET(so->so_vnet);
2271 if (error == 0) {
2272 (void)(*so->so_proto->pr_usrreqs->pru_ready)(so, top, npages);
2273 } else {
2274 so->so_proto->pr_usrreqs->pru_abort(so);
2275 so->so_error = EIO;
2276 mb_free_notready(top, total_pages);
2277 }
2278
2279 SOCK_LOCK(so);
2280 sorele(so);
2281 CURVNET_RESTORE();
2282 }
2283
2284 static void
ktls_work_thread(void * ctx)2285 ktls_work_thread(void *ctx)
2286 {
2287 struct ktls_wq *wq = ctx;
2288 struct mbuf *m, *n;
2289 struct socket *so, *son;
2290 STAILQ_HEAD(, mbuf) local_m_head;
2291 STAILQ_HEAD(, socket) local_so_head;
2292
2293 if (ktls_bind_threads > 1) {
2294 curthread->td_domain.dr_policy =
2295 DOMAINSET_PREF(PCPU_GET(domain));
2296 }
2297 #if defined(__aarch64__) || defined(__amd64__) || defined(__i386__)
2298 fpu_kern_thread(0);
2299 #endif
2300 for (;;) {
2301 mtx_lock(&wq->mtx);
2302 while (STAILQ_EMPTY(&wq->m_head) &&
2303 STAILQ_EMPTY(&wq->so_head)) {
2304 wq->running = false;
2305 mtx_sleep(wq, &wq->mtx, 0, "-", 0);
2306 wq->running = true;
2307 }
2308
2309 STAILQ_INIT(&local_m_head);
2310 STAILQ_CONCAT(&local_m_head, &wq->m_head);
2311 STAILQ_INIT(&local_so_head);
2312 STAILQ_CONCAT(&local_so_head, &wq->so_head);
2313 mtx_unlock(&wq->mtx);
2314
2315 STAILQ_FOREACH_SAFE(m, &local_m_head, m_epg_stailq, n) {
2316 if (m->m_epg_flags & EPG_FLAG_2FREE) {
2317 ktls_free(m->m_epg_tls);
2318 m_free_raw(m);
2319 } else {
2320 ktls_encrypt(m);
2321 counter_u64_add(ktls_cnt_tx_queued, -1);
2322 }
2323 }
2324
2325 STAILQ_FOREACH_SAFE(so, &local_so_head, so_ktls_rx_list, son) {
2326 ktls_decrypt(so);
2327 counter_u64_add(ktls_cnt_rx_queued, -1);
2328 }
2329 }
2330 }
2331