]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/netinet/tcp_syncache.c
Add UPDATING entries and bump version.
[FreeBSD/FreeBSD.git] / sys / netinet / tcp_syncache.c
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (c) 2001 McAfee, Inc.
5  * Copyright (c) 2006,2013 Andre Oppermann, Internet Business Solutions AG
6  * All rights reserved.
7  *
8  * This software was developed for the FreeBSD Project by Jonathan Lemon
9  * and McAfee Research, the Security Research Division of McAfee, Inc. under
10  * DARPA/SPAWAR contract N66001-01-C-8035 ("CBOSS"), as part of the
11  * DARPA CHATS research program. [2001 McAfee, Inc.]
12  *
13  * Redistribution and use in source and binary forms, with or without
14  * modification, are permitted provided that the following conditions
15  * are met:
16  * 1. Redistributions of source code must retain the above copyright
17  *    notice, this list of conditions and the following disclaimer.
18  * 2. Redistributions in binary form must reproduce the above copyright
19  *    notice, this list of conditions and the following disclaimer in the
20  *    documentation and/or other materials provided with the distribution.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  */
34
35 #include <sys/cdefs.h>
36 __FBSDID("$FreeBSD$");
37
38 #include "opt_inet.h"
39 #include "opt_inet6.h"
40 #include "opt_ipsec.h"
41 #include "opt_pcbgroup.h"
42
43 #include <sys/param.h>
44 #include <sys/systm.h>
45 #include <sys/hash.h>
46 #include <sys/refcount.h>
47 #include <sys/kernel.h>
48 #include <sys/sysctl.h>
49 #include <sys/limits.h>
50 #include <sys/lock.h>
51 #include <sys/mutex.h>
52 #include <sys/malloc.h>
53 #include <sys/mbuf.h>
54 #include <sys/proc.h>           /* for proc0 declaration */
55 #include <sys/random.h>
56 #include <sys/socket.h>
57 #include <sys/socketvar.h>
58 #include <sys/syslog.h>
59 #include <sys/ucred.h>
60
61 #include <sys/md5.h>
62 #include <crypto/siphash/siphash.h>
63
64 #include <vm/uma.h>
65
66 #include <net/if.h>
67 #include <net/if_var.h>
68 #include <net/route.h>
69 #include <net/vnet.h>
70
71 #include <netinet/in.h>
72 #include <netinet/in_kdtrace.h>
73 #include <netinet/in_systm.h>
74 #include <netinet/ip.h>
75 #include <netinet/in_var.h>
76 #include <netinet/in_pcb.h>
77 #include <netinet/ip_var.h>
78 #include <netinet/ip_options.h>
79 #ifdef INET6
80 #include <netinet/ip6.h>
81 #include <netinet/icmp6.h>
82 #include <netinet6/nd6.h>
83 #include <netinet6/ip6_var.h>
84 #include <netinet6/in6_pcb.h>
85 #endif
86 #include <netinet/tcp.h>
87 #include <netinet/tcp_fastopen.h>
88 #include <netinet/tcp_fsm.h>
89 #include <netinet/tcp_seq.h>
90 #include <netinet/tcp_timer.h>
91 #include <netinet/tcp_var.h>
92 #include <netinet/tcp_syncache.h>
93 #ifdef INET6
94 #include <netinet6/tcp6_var.h>
95 #endif
96 #ifdef TCP_OFFLOAD
97 #include <netinet/toecore.h>
98 #endif
99
100 #include <netipsec/ipsec_support.h>
101
102 #include <machine/in_cksum.h>
103
104 #include <security/mac/mac_framework.h>
105
106 VNET_DEFINE_STATIC(int, tcp_syncookies) = 1;
107 #define V_tcp_syncookies                VNET(tcp_syncookies)
108 SYSCTL_INT(_net_inet_tcp, OID_AUTO, syncookies, CTLFLAG_VNET | CTLFLAG_RW,
109     &VNET_NAME(tcp_syncookies), 0,
110     "Use TCP SYN cookies if the syncache overflows");
111
112 VNET_DEFINE_STATIC(int, tcp_syncookiesonly) = 0;
113 #define V_tcp_syncookiesonly            VNET(tcp_syncookiesonly)
114 SYSCTL_INT(_net_inet_tcp, OID_AUTO, syncookies_only, CTLFLAG_VNET | CTLFLAG_RW,
115     &VNET_NAME(tcp_syncookiesonly), 0,
116     "Use only TCP SYN cookies");
117
118 VNET_DEFINE_STATIC(int, functions_inherit_listen_socket_stack) = 1;
119 #define V_functions_inherit_listen_socket_stack \
120     VNET(functions_inherit_listen_socket_stack)
121 SYSCTL_INT(_net_inet_tcp, OID_AUTO, functions_inherit_listen_socket_stack,
122     CTLFLAG_VNET | CTLFLAG_RW,
123     &VNET_NAME(functions_inherit_listen_socket_stack), 0,
124     "Inherit listen socket's stack");
125
126 #ifdef TCP_OFFLOAD
127 #define ADDED_BY_TOE(sc) ((sc)->sc_tod != NULL)
128 #endif
129
130 static void      syncache_drop(struct syncache *, struct syncache_head *);
131 static void      syncache_free(struct syncache *);
132 static void      syncache_insert(struct syncache *, struct syncache_head *);
133 static int       syncache_respond(struct syncache *, struct syncache_head *,
134                     const struct mbuf *, int);
135 static struct    socket *syncache_socket(struct syncache *, struct socket *,
136                     struct mbuf *m);
137 static void      syncache_timeout(struct syncache *sc, struct syncache_head *sch,
138                     int docallout);
139 static void      syncache_timer(void *);
140
141 static uint32_t  syncookie_mac(struct in_conninfo *, tcp_seq, uint8_t,
142                     uint8_t *, uintptr_t);
143 static tcp_seq   syncookie_generate(struct syncache_head *, struct syncache *);
144 static struct syncache
145                 *syncookie_lookup(struct in_conninfo *, struct syncache_head *,
146                     struct syncache *, struct tcphdr *, struct tcpopt *,
147                     struct socket *);
148 static void      syncookie_reseed(void *);
149 #ifdef INVARIANTS
150 static int       syncookie_cmp(struct in_conninfo *inc, struct syncache_head *sch,
151                     struct syncache *sc, struct tcphdr *th, struct tcpopt *to,
152                     struct socket *lso);
153 #endif
154
155 /*
156  * Transmit the SYN,ACK fewer times than TCP_MAXRXTSHIFT specifies.
157  * 3 retransmits corresponds to a timeout with default values of
158  * tcp_rexmit_initial * (             1 +
159  *                       tcp_backoff[1] +
160  *                       tcp_backoff[2] +
161  *                       tcp_backoff[3]) + 3 * tcp_rexmit_slop,
162  * 1000 ms * (1 + 2 + 4 + 8) +  3 * 200 ms = 15600 ms,
163  * the odds are that the user has given up attempting to connect by then.
164  */
165 #define SYNCACHE_MAXREXMTS              3
166
167 /* Arbitrary values */
168 #define TCP_SYNCACHE_HASHSIZE           512
169 #define TCP_SYNCACHE_BUCKETLIMIT        30
170
171 VNET_DEFINE_STATIC(struct tcp_syncache, tcp_syncache);
172 #define V_tcp_syncache                  VNET(tcp_syncache)
173
174 static SYSCTL_NODE(_net_inet_tcp, OID_AUTO, syncache, CTLFLAG_RW, 0,
175     "TCP SYN cache");
176
177 SYSCTL_UINT(_net_inet_tcp_syncache, OID_AUTO, bucketlimit, CTLFLAG_VNET | CTLFLAG_RDTUN,
178     &VNET_NAME(tcp_syncache.bucket_limit), 0,
179     "Per-bucket hash limit for syncache");
180
181 SYSCTL_UINT(_net_inet_tcp_syncache, OID_AUTO, cachelimit, CTLFLAG_VNET | CTLFLAG_RDTUN,
182     &VNET_NAME(tcp_syncache.cache_limit), 0,
183     "Overall entry limit for syncache");
184
185 SYSCTL_UMA_CUR(_net_inet_tcp_syncache, OID_AUTO, count, CTLFLAG_VNET,
186     &VNET_NAME(tcp_syncache.zone), "Current number of entries in syncache");
187
188 SYSCTL_UINT(_net_inet_tcp_syncache, OID_AUTO, hashsize, CTLFLAG_VNET | CTLFLAG_RDTUN,
189     &VNET_NAME(tcp_syncache.hashsize), 0,
190     "Size of TCP syncache hashtable");
191
192 static int
193 sysctl_net_inet_tcp_syncache_rexmtlimit_check(SYSCTL_HANDLER_ARGS)
194 {
195         int error;
196         u_int new;
197
198         new = V_tcp_syncache.rexmt_limit;
199         error = sysctl_handle_int(oidp, &new, 0, req);
200         if ((error == 0) && (req->newptr != NULL)) {
201                 if (new > TCP_MAXRXTSHIFT)
202                         error = EINVAL;
203                 else
204                         V_tcp_syncache.rexmt_limit = new;
205         }
206         return (error);
207 }
208
209 SYSCTL_PROC(_net_inet_tcp_syncache, OID_AUTO, rexmtlimit,
210     CTLFLAG_VNET | CTLTYPE_UINT | CTLFLAG_RW,
211     &VNET_NAME(tcp_syncache.rexmt_limit), 0,
212     sysctl_net_inet_tcp_syncache_rexmtlimit_check, "UI",
213     "Limit on SYN/ACK retransmissions");
214
215 VNET_DEFINE(int, tcp_sc_rst_sock_fail) = 1;
216 SYSCTL_INT(_net_inet_tcp_syncache, OID_AUTO, rst_on_sock_fail,
217     CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(tcp_sc_rst_sock_fail), 0,
218     "Send reset on socket allocation failure");
219
220 static MALLOC_DEFINE(M_SYNCACHE, "syncache", "TCP syncache");
221
222 #define SCH_LOCK(sch)           mtx_lock(&(sch)->sch_mtx)
223 #define SCH_UNLOCK(sch)         mtx_unlock(&(sch)->sch_mtx)
224 #define SCH_LOCK_ASSERT(sch)    mtx_assert(&(sch)->sch_mtx, MA_OWNED)
225
226 /*
227  * Requires the syncache entry to be already removed from the bucket list.
228  */
229 static void
230 syncache_free(struct syncache *sc)
231 {
232
233         if (sc->sc_ipopts)
234                 (void) m_free(sc->sc_ipopts);
235         if (sc->sc_cred)
236                 crfree(sc->sc_cred);
237 #ifdef MAC
238         mac_syncache_destroy(&sc->sc_label);
239 #endif
240
241         uma_zfree(V_tcp_syncache.zone, sc);
242 }
243
244 void
245 syncache_init(void)
246 {
247         int i;
248
249         V_tcp_syncache.hashsize = TCP_SYNCACHE_HASHSIZE;
250         V_tcp_syncache.bucket_limit = TCP_SYNCACHE_BUCKETLIMIT;
251         V_tcp_syncache.rexmt_limit = SYNCACHE_MAXREXMTS;
252         V_tcp_syncache.hash_secret = arc4random();
253
254         TUNABLE_INT_FETCH("net.inet.tcp.syncache.hashsize",
255             &V_tcp_syncache.hashsize);
256         TUNABLE_INT_FETCH("net.inet.tcp.syncache.bucketlimit",
257             &V_tcp_syncache.bucket_limit);
258         if (!powerof2(V_tcp_syncache.hashsize) ||
259             V_tcp_syncache.hashsize == 0) {
260                 printf("WARNING: syncache hash size is not a power of 2.\n");
261                 V_tcp_syncache.hashsize = TCP_SYNCACHE_HASHSIZE;
262         }
263         V_tcp_syncache.hashmask = V_tcp_syncache.hashsize - 1;
264
265         /* Set limits. */
266         V_tcp_syncache.cache_limit =
267             V_tcp_syncache.hashsize * V_tcp_syncache.bucket_limit;
268         TUNABLE_INT_FETCH("net.inet.tcp.syncache.cachelimit",
269             &V_tcp_syncache.cache_limit);
270
271         /* Allocate the hash table. */
272         V_tcp_syncache.hashbase = malloc(V_tcp_syncache.hashsize *
273             sizeof(struct syncache_head), M_SYNCACHE, M_WAITOK | M_ZERO);
274
275 #ifdef VIMAGE
276         V_tcp_syncache.vnet = curvnet;
277 #endif
278
279         /* Initialize the hash buckets. */
280         for (i = 0; i < V_tcp_syncache.hashsize; i++) {
281                 TAILQ_INIT(&V_tcp_syncache.hashbase[i].sch_bucket);
282                 mtx_init(&V_tcp_syncache.hashbase[i].sch_mtx, "tcp_sc_head",
283                          NULL, MTX_DEF);
284                 callout_init_mtx(&V_tcp_syncache.hashbase[i].sch_timer,
285                          &V_tcp_syncache.hashbase[i].sch_mtx, 0);
286                 V_tcp_syncache.hashbase[i].sch_length = 0;
287                 V_tcp_syncache.hashbase[i].sch_sc = &V_tcp_syncache;
288                 V_tcp_syncache.hashbase[i].sch_last_overflow =
289                     -(SYNCOOKIE_LIFETIME + 1);
290         }
291
292         /* Create the syncache entry zone. */
293         V_tcp_syncache.zone = uma_zcreate("syncache", sizeof(struct syncache),
294             NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, 0);
295         V_tcp_syncache.cache_limit = uma_zone_set_max(V_tcp_syncache.zone,
296             V_tcp_syncache.cache_limit);
297
298         /* Start the SYN cookie reseeder callout. */
299         callout_init(&V_tcp_syncache.secret.reseed, 1);
300         arc4rand(V_tcp_syncache.secret.key[0], SYNCOOKIE_SECRET_SIZE, 0);
301         arc4rand(V_tcp_syncache.secret.key[1], SYNCOOKIE_SECRET_SIZE, 0);
302         callout_reset(&V_tcp_syncache.secret.reseed, SYNCOOKIE_LIFETIME * hz,
303             syncookie_reseed, &V_tcp_syncache);
304 }
305
306 #ifdef VIMAGE
307 void
308 syncache_destroy(void)
309 {
310         struct syncache_head *sch;
311         struct syncache *sc, *nsc;
312         int i;
313
314         /*
315          * Stop the re-seed timer before freeing resources.  No need to
316          * possibly schedule it another time.
317          */
318         callout_drain(&V_tcp_syncache.secret.reseed);
319
320         /* Cleanup hash buckets: stop timers, free entries, destroy locks. */
321         for (i = 0; i < V_tcp_syncache.hashsize; i++) {
322
323                 sch = &V_tcp_syncache.hashbase[i];
324                 callout_drain(&sch->sch_timer);
325
326                 SCH_LOCK(sch);
327                 TAILQ_FOREACH_SAFE(sc, &sch->sch_bucket, sc_hash, nsc)
328                         syncache_drop(sc, sch);
329                 SCH_UNLOCK(sch);
330                 KASSERT(TAILQ_EMPTY(&sch->sch_bucket),
331                     ("%s: sch->sch_bucket not empty", __func__));
332                 KASSERT(sch->sch_length == 0, ("%s: sch->sch_length %d not 0",
333                     __func__, sch->sch_length));
334                 mtx_destroy(&sch->sch_mtx);
335         }
336
337         KASSERT(uma_zone_get_cur(V_tcp_syncache.zone) == 0,
338             ("%s: cache_count not 0", __func__));
339
340         /* Free the allocated global resources. */
341         uma_zdestroy(V_tcp_syncache.zone);
342         free(V_tcp_syncache.hashbase, M_SYNCACHE);
343 }
344 #endif
345
346 /*
347  * Inserts a syncache entry into the specified bucket row.
348  * Locks and unlocks the syncache_head autonomously.
349  */
350 static void
351 syncache_insert(struct syncache *sc, struct syncache_head *sch)
352 {
353         struct syncache *sc2;
354
355         SCH_LOCK(sch);
356
357         /*
358          * Make sure that we don't overflow the per-bucket limit.
359          * If the bucket is full, toss the oldest element.
360          */
361         if (sch->sch_length >= V_tcp_syncache.bucket_limit) {
362                 KASSERT(!TAILQ_EMPTY(&sch->sch_bucket),
363                         ("sch->sch_length incorrect"));
364                 sc2 = TAILQ_LAST(&sch->sch_bucket, sch_head);
365                 sch->sch_last_overflow = time_uptime;
366                 syncache_drop(sc2, sch);
367                 TCPSTAT_INC(tcps_sc_bucketoverflow);
368         }
369
370         /* Put it into the bucket. */
371         TAILQ_INSERT_HEAD(&sch->sch_bucket, sc, sc_hash);
372         sch->sch_length++;
373
374 #ifdef TCP_OFFLOAD
375         if (ADDED_BY_TOE(sc)) {
376                 struct toedev *tod = sc->sc_tod;
377
378                 tod->tod_syncache_added(tod, sc->sc_todctx);
379         }
380 #endif
381
382         /* Reinitialize the bucket row's timer. */
383         if (sch->sch_length == 1)
384                 sch->sch_nextc = ticks + INT_MAX;
385         syncache_timeout(sc, sch, 1);
386
387         SCH_UNLOCK(sch);
388
389         TCPSTATES_INC(TCPS_SYN_RECEIVED);
390         TCPSTAT_INC(tcps_sc_added);
391 }
392
393 /*
394  * Remove and free entry from syncache bucket row.
395  * Expects locked syncache head.
396  */
397 static void
398 syncache_drop(struct syncache *sc, struct syncache_head *sch)
399 {
400
401         SCH_LOCK_ASSERT(sch);
402
403         TCPSTATES_DEC(TCPS_SYN_RECEIVED);
404         TAILQ_REMOVE(&sch->sch_bucket, sc, sc_hash);
405         sch->sch_length--;
406
407 #ifdef TCP_OFFLOAD
408         if (ADDED_BY_TOE(sc)) {
409                 struct toedev *tod = sc->sc_tod;
410
411                 tod->tod_syncache_removed(tod, sc->sc_todctx);
412         }
413 #endif
414
415         syncache_free(sc);
416 }
417
418 /*
419  * Engage/reengage time on bucket row.
420  */
421 static void
422 syncache_timeout(struct syncache *sc, struct syncache_head *sch, int docallout)
423 {
424         int rexmt;
425
426         if (sc->sc_rxmits == 0)
427                 rexmt = tcp_rexmit_initial;
428         else
429                 TCPT_RANGESET(rexmt,
430                     tcp_rexmit_initial * tcp_backoff[sc->sc_rxmits],
431                     tcp_rexmit_min, TCPTV_REXMTMAX);
432         sc->sc_rxttime = ticks + rexmt;
433         sc->sc_rxmits++;
434         if (TSTMP_LT(sc->sc_rxttime, sch->sch_nextc)) {
435                 sch->sch_nextc = sc->sc_rxttime;
436                 if (docallout)
437                         callout_reset(&sch->sch_timer, sch->sch_nextc - ticks,
438                             syncache_timer, (void *)sch);
439         }
440 }
441
442 /*
443  * Walk the timer queues, looking for SYN,ACKs that need to be retransmitted.
444  * If we have retransmitted an entry the maximum number of times, expire it.
445  * One separate timer for each bucket row.
446  */
447 static void
448 syncache_timer(void *xsch)
449 {
450         struct syncache_head *sch = (struct syncache_head *)xsch;
451         struct syncache *sc, *nsc;
452         int tick = ticks;
453         char *s;
454
455         CURVNET_SET(sch->sch_sc->vnet);
456
457         /* NB: syncache_head has already been locked by the callout. */
458         SCH_LOCK_ASSERT(sch);
459
460         /*
461          * In the following cycle we may remove some entries and/or
462          * advance some timeouts, so re-initialize the bucket timer.
463          */
464         sch->sch_nextc = tick + INT_MAX;
465
466         TAILQ_FOREACH_SAFE(sc, &sch->sch_bucket, sc_hash, nsc) {
467                 /*
468                  * We do not check if the listen socket still exists
469                  * and accept the case where the listen socket may be
470                  * gone by the time we resend the SYN/ACK.  We do
471                  * not expect this to happens often. If it does,
472                  * then the RST will be sent by the time the remote
473                  * host does the SYN/ACK->ACK.
474                  */
475                 if (TSTMP_GT(sc->sc_rxttime, tick)) {
476                         if (TSTMP_LT(sc->sc_rxttime, sch->sch_nextc))
477                                 sch->sch_nextc = sc->sc_rxttime;
478                         continue;
479                 }
480                 if (sc->sc_rxmits > V_tcp_syncache.rexmt_limit) {
481                         if ((s = tcp_log_addrs(&sc->sc_inc, NULL, NULL, NULL))) {
482                                 log(LOG_DEBUG, "%s; %s: Retransmits exhausted, "
483                                     "giving up and removing syncache entry\n",
484                                     s, __func__);
485                                 free(s, M_TCPLOG);
486                         }
487                         syncache_drop(sc, sch);
488                         TCPSTAT_INC(tcps_sc_stale);
489                         continue;
490                 }
491                 if ((s = tcp_log_addrs(&sc->sc_inc, NULL, NULL, NULL))) {
492                         log(LOG_DEBUG, "%s; %s: Response timeout, "
493                             "retransmitting (%u) SYN|ACK\n",
494                             s, __func__, sc->sc_rxmits);
495                         free(s, M_TCPLOG);
496                 }
497
498                 syncache_respond(sc, sch, NULL, TH_SYN|TH_ACK);
499                 TCPSTAT_INC(tcps_sc_retransmitted);
500                 syncache_timeout(sc, sch, 0);
501         }
502         if (!TAILQ_EMPTY(&(sch)->sch_bucket))
503                 callout_reset(&(sch)->sch_timer, (sch)->sch_nextc - tick,
504                         syncache_timer, (void *)(sch));
505         CURVNET_RESTORE();
506 }
507
508 /*
509  * Find an entry in the syncache.
510  * Returns always with locked syncache_head plus a matching entry or NULL.
511  */
512 static struct syncache *
513 syncache_lookup(struct in_conninfo *inc, struct syncache_head **schp)
514 {
515         struct syncache *sc;
516         struct syncache_head *sch;
517         uint32_t hash;
518
519         /*
520          * The hash is built on foreign port + local port + foreign address.
521          * We rely on the fact that struct in_conninfo starts with 16 bits
522          * of foreign port, then 16 bits of local port then followed by 128
523          * bits of foreign address.  In case of IPv4 address, the first 3
524          * 32-bit words of the address always are zeroes.
525          */
526         hash = jenkins_hash32((uint32_t *)&inc->inc_ie, 5,
527             V_tcp_syncache.hash_secret) & V_tcp_syncache.hashmask;
528
529         sch = &V_tcp_syncache.hashbase[hash];
530         *schp = sch;
531         SCH_LOCK(sch);
532
533         /* Circle through bucket row to find matching entry. */
534         TAILQ_FOREACH(sc, &sch->sch_bucket, sc_hash)
535                 if (bcmp(&inc->inc_ie, &sc->sc_inc.inc_ie,
536                     sizeof(struct in_endpoints)) == 0)
537                         break;
538
539         return (sc);    /* Always returns with locked sch. */
540 }
541
542 /*
543  * This function is called when we get a RST for a
544  * non-existent connection, so that we can see if the
545  * connection is in the syn cache.  If it is, zap it.
546  * If required send a challenge ACK.
547  */
548 void
549 syncache_chkrst(struct in_conninfo *inc, struct tcphdr *th, struct mbuf *m)
550 {
551         struct syncache *sc;
552         struct syncache_head *sch;
553         char *s = NULL;
554
555         sc = syncache_lookup(inc, &sch);        /* returns locked sch */
556         SCH_LOCK_ASSERT(sch);
557
558         /*
559          * Any RST to our SYN|ACK must not carry ACK, SYN or FIN flags.
560          * See RFC 793 page 65, section SEGMENT ARRIVES.
561          */
562         if (th->th_flags & (TH_ACK|TH_SYN|TH_FIN)) {
563                 if ((s = tcp_log_addrs(inc, th, NULL, NULL)))
564                         log(LOG_DEBUG, "%s; %s: Spurious RST with ACK, SYN or "
565                             "FIN flag set, segment ignored\n", s, __func__);
566                 TCPSTAT_INC(tcps_badrst);
567                 goto done;
568         }
569
570         /*
571          * No corresponding connection was found in syncache.
572          * If syncookies are enabled and possibly exclusively
573          * used, or we are under memory pressure, a valid RST
574          * may not find a syncache entry.  In that case we're
575          * done and no SYN|ACK retransmissions will happen.
576          * Otherwise the RST was misdirected or spoofed.
577          */
578         if (sc == NULL) {
579                 if ((s = tcp_log_addrs(inc, th, NULL, NULL)))
580                         log(LOG_DEBUG, "%s; %s: Spurious RST without matching "
581                             "syncache entry (possibly syncookie only), "
582                             "segment ignored\n", s, __func__);
583                 TCPSTAT_INC(tcps_badrst);
584                 goto done;
585         }
586
587         /*
588          * If the RST bit is set, check the sequence number to see
589          * if this is a valid reset segment.
590          *
591          * RFC 793 page 37:
592          *   In all states except SYN-SENT, all reset (RST) segments
593          *   are validated by checking their SEQ-fields.  A reset is
594          *   valid if its sequence number is in the window.
595          *
596          * RFC 793 page 69:
597          *   There are four cases for the acceptability test for an incoming
598          *   segment:
599          *
600          * Segment Receive  Test
601          * Length  Window
602          * ------- -------  -------------------------------------------
603          *    0       0     SEG.SEQ = RCV.NXT
604          *    0      >0     RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND
605          *   >0       0     not acceptable
606          *   >0      >0     RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND
607          *               or RCV.NXT =< SEG.SEQ+SEG.LEN-1 < RCV.NXT+RCV.WND
608          *
609          * Note that when receiving a SYN segment in the LISTEN state,
610          * IRS is set to SEG.SEQ and RCV.NXT is set to SEG.SEQ+1, as
611          * described in RFC 793, page 66.
612          */
613         if ((SEQ_GEQ(th->th_seq, sc->sc_irs + 1) &&
614             SEQ_LT(th->th_seq, sc->sc_irs + 1 + sc->sc_wnd)) ||
615             (sc->sc_wnd == 0 && th->th_seq == sc->sc_irs + 1)) {
616                 if (V_tcp_insecure_rst ||
617                     th->th_seq == sc->sc_irs + 1) {
618                         syncache_drop(sc, sch);
619                         if ((s = tcp_log_addrs(inc, th, NULL, NULL)))
620                                 log(LOG_DEBUG,
621                                     "%s; %s: Our SYN|ACK was rejected, "
622                                     "connection attempt aborted by remote "
623                                     "endpoint\n",
624                                     s, __func__);
625                         TCPSTAT_INC(tcps_sc_reset);
626                 } else {
627                         TCPSTAT_INC(tcps_badrst);
628                         /* Send challenge ACK. */
629                         if ((s = tcp_log_addrs(inc, th, NULL, NULL)))
630                                 log(LOG_DEBUG, "%s; %s: RST with invalid "
631                                     " SEQ %u != NXT %u (+WND %u), "
632                                     "sending challenge ACK\n",
633                                     s, __func__,
634                                     th->th_seq, sc->sc_irs + 1, sc->sc_wnd);
635                         syncache_respond(sc, sch, m, TH_ACK);
636                 }
637         } else {
638                 if ((s = tcp_log_addrs(inc, th, NULL, NULL)))
639                         log(LOG_DEBUG, "%s; %s: RST with invalid SEQ %u != "
640                             "NXT %u (+WND %u), segment ignored\n",
641                             s, __func__,
642                             th->th_seq, sc->sc_irs + 1, sc->sc_wnd);
643                 TCPSTAT_INC(tcps_badrst);
644         }
645
646 done:
647         if (s != NULL)
648                 free(s, M_TCPLOG);
649         SCH_UNLOCK(sch);
650 }
651
652 void
653 syncache_badack(struct in_conninfo *inc)
654 {
655         struct syncache *sc;
656         struct syncache_head *sch;
657
658         sc = syncache_lookup(inc, &sch);        /* returns locked sch */
659         SCH_LOCK_ASSERT(sch);
660         if (sc != NULL) {
661                 syncache_drop(sc, sch);
662                 TCPSTAT_INC(tcps_sc_badack);
663         }
664         SCH_UNLOCK(sch);
665 }
666
667 void
668 syncache_unreach(struct in_conninfo *inc, tcp_seq th_seq)
669 {
670         struct syncache *sc;
671         struct syncache_head *sch;
672
673         sc = syncache_lookup(inc, &sch);        /* returns locked sch */
674         SCH_LOCK_ASSERT(sch);
675         if (sc == NULL)
676                 goto done;
677
678         /* If the sequence number != sc_iss, then it's a bogus ICMP msg */
679         if (ntohl(th_seq) != sc->sc_iss)
680                 goto done;
681
682         /*
683          * If we've rertransmitted 3 times and this is our second error,
684          * we remove the entry.  Otherwise, we allow it to continue on.
685          * This prevents us from incorrectly nuking an entry during a
686          * spurious network outage.
687          *
688          * See tcp_notify().
689          */
690         if ((sc->sc_flags & SCF_UNREACH) == 0 || sc->sc_rxmits < 3 + 1) {
691                 sc->sc_flags |= SCF_UNREACH;
692                 goto done;
693         }
694         syncache_drop(sc, sch);
695         TCPSTAT_INC(tcps_sc_unreach);
696 done:
697         SCH_UNLOCK(sch);
698 }
699
700 /*
701  * Build a new TCP socket structure from a syncache entry.
702  *
703  * On success return the newly created socket with its underlying inp locked.
704  */
705 static struct socket *
706 syncache_socket(struct syncache *sc, struct socket *lso, struct mbuf *m)
707 {
708         struct tcp_function_block *blk;
709         struct inpcb *inp = NULL;
710         struct socket *so;
711         struct tcpcb *tp;
712         int error;
713         char *s;
714
715         INP_INFO_RLOCK_ASSERT(&V_tcbinfo);
716
717         /*
718          * Ok, create the full blown connection, and set things up
719          * as they would have been set up if we had created the
720          * connection when the SYN arrived.  If we can't create
721          * the connection, abort it.
722          */
723         so = sonewconn(lso, 0);
724         if (so == NULL) {
725                 /*
726                  * Drop the connection; we will either send a RST or
727                  * have the peer retransmit its SYN again after its
728                  * RTO and try again.
729                  */
730                 TCPSTAT_INC(tcps_listendrop);
731                 if ((s = tcp_log_addrs(&sc->sc_inc, NULL, NULL, NULL))) {
732                         log(LOG_DEBUG, "%s; %s: Socket create failed "
733                             "due to limits or memory shortage\n",
734                             s, __func__);
735                         free(s, M_TCPLOG);
736                 }
737                 goto abort2;
738         }
739 #ifdef MAC
740         mac_socketpeer_set_from_mbuf(m, so);
741 #endif
742
743         inp = sotoinpcb(so);
744         inp->inp_inc.inc_fibnum = so->so_fibnum;
745         INP_WLOCK(inp);
746         /*
747          * Exclusive pcbinfo lock is not required in syncache socket case even
748          * if two inpcb locks can be acquired simultaneously:
749          *  - the inpcb in LISTEN state,
750          *  - the newly created inp.
751          *
752          * In this case, an inp cannot be at same time in LISTEN state and
753          * just created by an accept() call.
754          */
755         INP_HASH_WLOCK(&V_tcbinfo);
756
757         /* Insert new socket into PCB hash list. */
758         inp->inp_inc.inc_flags = sc->sc_inc.inc_flags;
759 #ifdef INET6
760         if (sc->sc_inc.inc_flags & INC_ISIPV6) {
761                 inp->inp_vflag &= ~INP_IPV4;
762                 inp->inp_vflag |= INP_IPV6;
763                 inp->in6p_laddr = sc->sc_inc.inc6_laddr;
764         } else {
765                 inp->inp_vflag &= ~INP_IPV6;
766                 inp->inp_vflag |= INP_IPV4;
767 #endif
768                 inp->inp_laddr = sc->sc_inc.inc_laddr;
769 #ifdef INET6
770         }
771 #endif
772
773         /*
774          * If there's an mbuf and it has a flowid, then let's initialise the
775          * inp with that particular flowid.
776          */
777         if (m != NULL && M_HASHTYPE_GET(m) != M_HASHTYPE_NONE) {
778                 inp->inp_flowid = m->m_pkthdr.flowid;
779                 inp->inp_flowtype = M_HASHTYPE_GET(m);
780         }
781
782         inp->inp_lport = sc->sc_inc.inc_lport;
783 #ifdef INET6
784         if (inp->inp_vflag & INP_IPV6PROTO) {
785                 struct inpcb *oinp = sotoinpcb(lso);
786
787                 /*
788                  * Inherit socket options from the listening socket.
789                  * Note that in6p_inputopts are not (and should not be)
790                  * copied, since it stores previously received options and is
791                  * used to detect if each new option is different than the
792                  * previous one and hence should be passed to a user.
793                  * If we copied in6p_inputopts, a user would not be able to
794                  * receive options just after calling the accept system call.
795                  */
796                 inp->inp_flags |= oinp->inp_flags & INP_CONTROLOPTS;
797                 if (oinp->in6p_outputopts)
798                         inp->in6p_outputopts =
799                             ip6_copypktopts(oinp->in6p_outputopts, M_NOWAIT);
800         }
801
802         if (sc->sc_inc.inc_flags & INC_ISIPV6) {
803                 struct in6_addr laddr6;
804                 struct sockaddr_in6 sin6;
805
806                 sin6.sin6_family = AF_INET6;
807                 sin6.sin6_len = sizeof(sin6);
808                 sin6.sin6_addr = sc->sc_inc.inc6_faddr;
809                 sin6.sin6_port = sc->sc_inc.inc_fport;
810                 sin6.sin6_flowinfo = sin6.sin6_scope_id = 0;
811                 laddr6 = inp->in6p_laddr;
812                 if (IN6_IS_ADDR_UNSPECIFIED(&inp->in6p_laddr))
813                         inp->in6p_laddr = sc->sc_inc.inc6_laddr;
814                 if ((error = in6_pcbconnect_mbuf(inp, (struct sockaddr *)&sin6,
815                     thread0.td_ucred, m, false)) != 0) {
816                         inp->in6p_laddr = laddr6;
817                         if ((s = tcp_log_addrs(&sc->sc_inc, NULL, NULL, NULL))) {
818                                 log(LOG_DEBUG, "%s; %s: in6_pcbconnect failed "
819                                     "with error %i\n",
820                                     s, __func__, error);
821                                 free(s, M_TCPLOG);
822                         }
823                         INP_HASH_WUNLOCK(&V_tcbinfo);
824                         goto abort;
825                 }
826                 /* Override flowlabel from in6_pcbconnect. */
827                 inp->inp_flow &= ~IPV6_FLOWLABEL_MASK;
828                 inp->inp_flow |= sc->sc_flowlabel;
829         }
830 #endif /* INET6 */
831 #if defined(INET) && defined(INET6)
832         else
833 #endif
834 #ifdef INET
835         {
836                 struct in_addr laddr;
837                 struct sockaddr_in sin;
838
839                 inp->inp_options = (m) ? ip_srcroute(m) : NULL;
840                 
841                 if (inp->inp_options == NULL) {
842                         inp->inp_options = sc->sc_ipopts;
843                         sc->sc_ipopts = NULL;
844                 }
845
846                 sin.sin_family = AF_INET;
847                 sin.sin_len = sizeof(sin);
848                 sin.sin_addr = sc->sc_inc.inc_faddr;
849                 sin.sin_port = sc->sc_inc.inc_fport;
850                 bzero((caddr_t)sin.sin_zero, sizeof(sin.sin_zero));
851                 laddr = inp->inp_laddr;
852                 if (inp->inp_laddr.s_addr == INADDR_ANY)
853                         inp->inp_laddr = sc->sc_inc.inc_laddr;
854                 if ((error = in_pcbconnect_mbuf(inp, (struct sockaddr *)&sin,
855                     thread0.td_ucred, m, false)) != 0) {
856                         inp->inp_laddr = laddr;
857                         if ((s = tcp_log_addrs(&sc->sc_inc, NULL, NULL, NULL))) {
858                                 log(LOG_DEBUG, "%s; %s: in_pcbconnect failed "
859                                     "with error %i\n",
860                                     s, __func__, error);
861                                 free(s, M_TCPLOG);
862                         }
863                         INP_HASH_WUNLOCK(&V_tcbinfo);
864                         goto abort;
865                 }
866         }
867 #endif /* INET */
868 #if defined(IPSEC) || defined(IPSEC_SUPPORT)
869         /* Copy old policy into new socket's. */
870         if (ipsec_copy_pcbpolicy(sotoinpcb(lso), inp) != 0)
871                 printf("syncache_socket: could not copy policy\n");
872 #endif
873         INP_HASH_WUNLOCK(&V_tcbinfo);
874         tp = intotcpcb(inp);
875         tcp_state_change(tp, TCPS_SYN_RECEIVED);
876         tp->iss = sc->sc_iss;
877         tp->irs = sc->sc_irs;
878         tcp_rcvseqinit(tp);
879         tcp_sendseqinit(tp);
880         blk = sototcpcb(lso)->t_fb;
881         if (V_functions_inherit_listen_socket_stack && blk != tp->t_fb) {
882                 /*
883                  * Our parents t_fb was not the default,
884                  * we need to release our ref on tp->t_fb and 
885                  * pickup one on the new entry.
886                  */
887                 struct tcp_function_block *rblk;
888                 
889                 rblk = find_and_ref_tcp_fb(blk);
890                 KASSERT(rblk != NULL,
891                     ("cannot find blk %p out of syncache?", blk));
892                 if (tp->t_fb->tfb_tcp_fb_fini)
893                         (*tp->t_fb->tfb_tcp_fb_fini)(tp, 0);
894                 refcount_release(&tp->t_fb->tfb_refcnt);
895                 tp->t_fb = rblk;
896                 /*
897                  * XXXrrs this is quite dangerous, it is possible
898                  * for the new function to fail to init. We also
899                  * are not asking if the handoff_is_ok though at
900                  * the very start thats probalbly ok.
901                  */
902                 if (tp->t_fb->tfb_tcp_fb_init) {
903                         (*tp->t_fb->tfb_tcp_fb_init)(tp);
904                 }
905         }               
906         tp->snd_wl1 = sc->sc_irs;
907         tp->snd_max = tp->iss + 1;
908         tp->snd_nxt = tp->iss + 1;
909         tp->rcv_up = sc->sc_irs + 1;
910         tp->rcv_wnd = sc->sc_wnd;
911         tp->rcv_adv += tp->rcv_wnd;
912         tp->last_ack_sent = tp->rcv_nxt;
913
914         tp->t_flags = sototcpcb(lso)->t_flags & (TF_NOPUSH|TF_NODELAY);
915         if (sc->sc_flags & SCF_NOOPT)
916                 tp->t_flags |= TF_NOOPT;
917         else {
918                 if (sc->sc_flags & SCF_WINSCALE) {
919                         tp->t_flags |= TF_REQ_SCALE|TF_RCVD_SCALE;
920                         tp->snd_scale = sc->sc_requested_s_scale;
921                         tp->request_r_scale = sc->sc_requested_r_scale;
922                 }
923                 if (sc->sc_flags & SCF_TIMESTAMP) {
924                         tp->t_flags |= TF_REQ_TSTMP|TF_RCVD_TSTMP;
925                         tp->ts_recent = sc->sc_tsreflect;
926                         tp->ts_recent_age = tcp_ts_getticks();
927                         tp->ts_offset = sc->sc_tsoff;
928                 }
929 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE)
930                 if (sc->sc_flags & SCF_SIGNATURE)
931                         tp->t_flags |= TF_SIGNATURE;
932 #endif
933                 if (sc->sc_flags & SCF_SACK)
934                         tp->t_flags |= TF_SACK_PERMIT;
935         }
936
937         if (sc->sc_flags & SCF_ECN)
938                 tp->t_flags |= TF_ECN_PERMIT;
939
940         /*
941          * Set up MSS and get cached values from tcp_hostcache.
942          * This might overwrite some of the defaults we just set.
943          */
944         tcp_mss(tp, sc->sc_peer_mss);
945
946         /*
947          * If the SYN,ACK was retransmitted, indicate that CWND to be
948          * limited to one segment in cc_conn_init().
949          * NB: sc_rxmits counts all SYN,ACK transmits, not just retransmits.
950          */
951         if (sc->sc_rxmits > 1)
952                 tp->snd_cwnd = 1;
953
954 #ifdef TCP_OFFLOAD
955         /*
956          * Allow a TOE driver to install its hooks.  Note that we hold the
957          * pcbinfo lock too and that prevents tcp_usr_accept from accepting a
958          * new connection before the TOE driver has done its thing.
959          */
960         if (ADDED_BY_TOE(sc)) {
961                 struct toedev *tod = sc->sc_tod;
962
963                 tod->tod_offload_socket(tod, sc->sc_todctx, so);
964         }
965 #endif
966         /*
967          * Copy and activate timers.
968          */
969         tp->t_keepinit = sototcpcb(lso)->t_keepinit;
970         tp->t_keepidle = sototcpcb(lso)->t_keepidle;
971         tp->t_keepintvl = sototcpcb(lso)->t_keepintvl;
972         tp->t_keepcnt = sototcpcb(lso)->t_keepcnt;
973         tcp_timer_activate(tp, TT_KEEP, TP_KEEPINIT(tp));
974
975         TCPSTAT_INC(tcps_accepts);
976         return (so);
977
978 abort:
979         INP_WUNLOCK(inp);
980 abort2:
981         if (so != NULL)
982                 soabort(so);
983         return (NULL);
984 }
985
986 /*
987  * This function gets called when we receive an ACK for a
988  * socket in the LISTEN state.  We look up the connection
989  * in the syncache, and if its there, we pull it out of
990  * the cache and turn it into a full-blown connection in
991  * the SYN-RECEIVED state.
992  *
993  * On syncache_socket() success the newly created socket
994  * has its underlying inp locked.
995  */
996 int
997 syncache_expand(struct in_conninfo *inc, struct tcpopt *to, struct tcphdr *th,
998     struct socket **lsop, struct mbuf *m)
999 {
1000         struct syncache *sc;
1001         struct syncache_head *sch;
1002         struct syncache scs;
1003         char *s;
1004
1005         /*
1006          * Global TCP locks are held because we manipulate the PCB lists
1007          * and create a new socket.
1008          */
1009         INP_INFO_RLOCK_ASSERT(&V_tcbinfo);
1010         KASSERT((th->th_flags & (TH_RST|TH_ACK|TH_SYN)) == TH_ACK,
1011             ("%s: can handle only ACK", __func__));
1012
1013         sc = syncache_lookup(inc, &sch);        /* returns locked sch */
1014         SCH_LOCK_ASSERT(sch);
1015
1016 #ifdef INVARIANTS
1017         /*
1018          * Test code for syncookies comparing the syncache stored
1019          * values with the reconstructed values from the cookie.
1020          */
1021         if (sc != NULL)
1022                 syncookie_cmp(inc, sch, sc, th, to, *lsop);
1023 #endif
1024
1025         if (sc == NULL) {
1026                 /*
1027                  * There is no syncache entry, so see if this ACK is
1028                  * a returning syncookie.  To do this, first:
1029                  *  A. Check if syncookies are used in case of syncache
1030                  *     overflows
1031                  *  B. See if this socket has had a syncache entry dropped in
1032                  *     the recent past. We don't want to accept a bogus
1033                  *     syncookie if we've never received a SYN or accept it
1034                  *     twice.
1035                  *  C. check that the syncookie is valid.  If it is, then
1036                  *     cobble up a fake syncache entry, and return.
1037                  */
1038                 if (!V_tcp_syncookies) {
1039                         SCH_UNLOCK(sch);
1040                         if ((s = tcp_log_addrs(inc, th, NULL, NULL)))
1041                                 log(LOG_DEBUG, "%s; %s: Spurious ACK, "
1042                                     "segment rejected (syncookies disabled)\n",
1043                                     s, __func__);
1044                         goto failed;
1045                 }
1046                 if (!V_tcp_syncookiesonly &&
1047                     sch->sch_last_overflow < time_uptime - SYNCOOKIE_LIFETIME) {
1048                         SCH_UNLOCK(sch);
1049                         if ((s = tcp_log_addrs(inc, th, NULL, NULL)))
1050                                 log(LOG_DEBUG, "%s; %s: Spurious ACK, "
1051                                     "segment rejected (no syncache entry)\n",
1052                                     s, __func__);
1053                         goto failed;
1054                 }
1055                 bzero(&scs, sizeof(scs));
1056                 sc = syncookie_lookup(inc, sch, &scs, th, to, *lsop);
1057                 SCH_UNLOCK(sch);
1058                 if (sc == NULL) {
1059                         if ((s = tcp_log_addrs(inc, th, NULL, NULL)))
1060                                 log(LOG_DEBUG, "%s; %s: Segment failed "
1061                                     "SYNCOOKIE authentication, segment rejected "
1062                                     "(probably spoofed)\n", s, __func__);
1063                         goto failed;
1064                 }
1065 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE)
1066                 /* If received ACK has MD5 signature, check it. */
1067                 if ((to->to_flags & TOF_SIGNATURE) != 0 &&
1068                     (!TCPMD5_ENABLED() ||
1069                     TCPMD5_INPUT(m, th, to->to_signature) != 0)) {
1070                         /* Drop the ACK. */
1071                         if ((s = tcp_log_addrs(inc, th, NULL, NULL))) {
1072                                 log(LOG_DEBUG, "%s; %s: Segment rejected, "
1073                                     "MD5 signature doesn't match.\n",
1074                                     s, __func__);
1075                                 free(s, M_TCPLOG);
1076                         }
1077                         TCPSTAT_INC(tcps_sig_err_sigopt);
1078                         return (-1); /* Do not send RST */
1079                 }
1080 #endif /* TCP_SIGNATURE */
1081         } else {
1082 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE)
1083                 /*
1084                  * If listening socket requested TCP digests, check that
1085                  * received ACK has signature and it is correct.
1086                  * If not, drop the ACK and leave sc entry in th cache,
1087                  * because SYN was received with correct signature.
1088                  */
1089                 if (sc->sc_flags & SCF_SIGNATURE) {
1090                         if ((to->to_flags & TOF_SIGNATURE) == 0) {
1091                                 /* No signature */
1092                                 TCPSTAT_INC(tcps_sig_err_nosigopt);
1093                                 SCH_UNLOCK(sch);
1094                                 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) {
1095                                         log(LOG_DEBUG, "%s; %s: Segment "
1096                                             "rejected, MD5 signature wasn't "
1097                                             "provided.\n", s, __func__);
1098                                         free(s, M_TCPLOG);
1099                                 }
1100                                 return (-1); /* Do not send RST */
1101                         }
1102                         if (!TCPMD5_ENABLED() ||
1103                             TCPMD5_INPUT(m, th, to->to_signature) != 0) {
1104                                 /* Doesn't match or no SA */
1105                                 SCH_UNLOCK(sch);
1106                                 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) {
1107                                         log(LOG_DEBUG, "%s; %s: Segment "
1108                                             "rejected, MD5 signature doesn't "
1109                                             "match.\n", s, __func__);
1110                                         free(s, M_TCPLOG);
1111                                 }
1112                                 return (-1); /* Do not send RST */
1113                         }
1114                 }
1115 #endif /* TCP_SIGNATURE */
1116
1117                 /*
1118                  * RFC 7323 PAWS: If we have a timestamp on this segment and
1119                  * it's less than ts_recent, drop it.
1120                  * XXXMT: RFC 7323 also requires to send an ACK.
1121                  *        In tcp_input.c this is only done for TCP segments
1122                  *        with user data, so be consistent here and just drop
1123                  *        the segment.
1124                  */
1125                 if (sc->sc_flags & SCF_TIMESTAMP && to->to_flags & TOF_TS &&
1126                     TSTMP_LT(to->to_tsval, sc->sc_tsreflect)) {
1127                         SCH_UNLOCK(sch);
1128                         if ((s = tcp_log_addrs(inc, th, NULL, NULL))) {
1129                                 log(LOG_DEBUG,
1130                                     "%s; %s: SEG.TSval %u < TS.Recent %u, "
1131                                     "segment dropped\n", s, __func__,
1132                                     to->to_tsval, sc->sc_tsreflect);
1133                                 free(s, M_TCPLOG);
1134                         }
1135                         return (-1);  /* Do not send RST */
1136                 }
1137
1138                 /*
1139                  * Pull out the entry to unlock the bucket row.
1140                  * 
1141                  * NOTE: We must decrease TCPS_SYN_RECEIVED count here, not
1142                  * tcp_state_change().  The tcpcb is not existent at this
1143                  * moment.  A new one will be allocated via syncache_socket->
1144                  * sonewconn->tcp_usr_attach in TCPS_CLOSED state, then
1145                  * syncache_socket() will change it to TCPS_SYN_RECEIVED.
1146                  */
1147                 TCPSTATES_DEC(TCPS_SYN_RECEIVED);
1148                 TAILQ_REMOVE(&sch->sch_bucket, sc, sc_hash);
1149                 sch->sch_length--;
1150 #ifdef TCP_OFFLOAD
1151                 if (ADDED_BY_TOE(sc)) {
1152                         struct toedev *tod = sc->sc_tod;
1153
1154                         tod->tod_syncache_removed(tod, sc->sc_todctx);
1155                 }
1156 #endif
1157                 SCH_UNLOCK(sch);
1158         }
1159
1160         /*
1161          * Segment validation:
1162          * ACK must match our initial sequence number + 1 (the SYN|ACK).
1163          */
1164         if (th->th_ack != sc->sc_iss + 1) {
1165                 if ((s = tcp_log_addrs(inc, th, NULL, NULL)))
1166                         log(LOG_DEBUG, "%s; %s: ACK %u != ISS+1 %u, segment "
1167                             "rejected\n", s, __func__, th->th_ack, sc->sc_iss);
1168                 goto failed;
1169         }
1170
1171         /*
1172          * The SEQ must fall in the window starting at the received
1173          * initial receive sequence number + 1 (the SYN).
1174          */
1175         if (SEQ_LEQ(th->th_seq, sc->sc_irs) ||
1176             SEQ_GT(th->th_seq, sc->sc_irs + sc->sc_wnd)) {
1177                 if ((s = tcp_log_addrs(inc, th, NULL, NULL)))
1178                         log(LOG_DEBUG, "%s; %s: SEQ %u != IRS+1 %u, segment "
1179                             "rejected\n", s, __func__, th->th_seq, sc->sc_irs);
1180                 goto failed;
1181         }
1182
1183         /*
1184          * If timestamps were not negotiated during SYN/ACK they
1185          * must not appear on any segment during this session.
1186          */
1187         if (!(sc->sc_flags & SCF_TIMESTAMP) && (to->to_flags & TOF_TS)) {
1188                 if ((s = tcp_log_addrs(inc, th, NULL, NULL)))
1189                         log(LOG_DEBUG, "%s; %s: Timestamp not expected, "
1190                             "segment rejected\n", s, __func__);
1191                 goto failed;
1192         }
1193
1194         /*
1195          * If timestamps were negotiated during SYN/ACK they should
1196          * appear on every segment during this session.
1197          * XXXAO: This is only informal as there have been unverified
1198          * reports of non-compliants stacks.
1199          */
1200         if ((sc->sc_flags & SCF_TIMESTAMP) && !(to->to_flags & TOF_TS)) {
1201                 if ((s = tcp_log_addrs(inc, th, NULL, NULL))) {
1202                         log(LOG_DEBUG, "%s; %s: Timestamp missing, "
1203                             "no action\n", s, __func__);
1204                         free(s, M_TCPLOG);
1205                         s = NULL;
1206                 }
1207         }
1208
1209         *lsop = syncache_socket(sc, *lsop, m);
1210
1211         if (*lsop == NULL)
1212                 TCPSTAT_INC(tcps_sc_aborted);
1213         else
1214                 TCPSTAT_INC(tcps_sc_completed);
1215
1216 /* how do we find the inp for the new socket? */
1217         if (sc != &scs)
1218                 syncache_free(sc);
1219         return (1);
1220 failed:
1221         if (sc != NULL && sc != &scs)
1222                 syncache_free(sc);
1223         if (s != NULL)
1224                 free(s, M_TCPLOG);
1225         *lsop = NULL;
1226         return (0);
1227 }
1228
1229 static void
1230 syncache_tfo_expand(struct syncache *sc, struct socket **lsop, struct mbuf *m,
1231     uint64_t response_cookie)
1232 {
1233         struct inpcb *inp;
1234         struct tcpcb *tp;
1235         unsigned int *pending_counter;
1236
1237         /*
1238          * Global TCP locks are held because we manipulate the PCB lists
1239          * and create a new socket.
1240          */
1241         INP_INFO_RLOCK_ASSERT(&V_tcbinfo);
1242
1243         pending_counter = intotcpcb(sotoinpcb(*lsop))->t_tfo_pending;
1244         *lsop = syncache_socket(sc, *lsop, m);
1245         if (*lsop == NULL) {
1246                 TCPSTAT_INC(tcps_sc_aborted);
1247                 atomic_subtract_int(pending_counter, 1);
1248         } else {
1249                 soisconnected(*lsop);
1250                 inp = sotoinpcb(*lsop);
1251                 tp = intotcpcb(inp);
1252                 tp->t_flags |= TF_FASTOPEN;
1253                 tp->t_tfo_cookie.server = response_cookie;
1254                 tp->snd_max = tp->iss;
1255                 tp->snd_nxt = tp->iss;
1256                 tp->t_tfo_pending = pending_counter;
1257                 TCPSTAT_INC(tcps_sc_completed);
1258         }
1259 }
1260
1261 /*
1262  * Given a LISTEN socket and an inbound SYN request, add
1263  * this to the syn cache, and send back a segment:
1264  *      <SEQ=ISS><ACK=RCV_NXT><CTL=SYN,ACK>
1265  * to the source.
1266  *
1267  * IMPORTANT NOTE: We do _NOT_ ACK data that might accompany the SYN.
1268  * Doing so would require that we hold onto the data and deliver it
1269  * to the application.  However, if we are the target of a SYN-flood
1270  * DoS attack, an attacker could send data which would eventually
1271  * consume all available buffer space if it were ACKed.  By not ACKing
1272  * the data, we avoid this DoS scenario.
1273  *
1274  * The exception to the above is when a SYN with a valid TCP Fast Open (TFO)
1275  * cookie is processed and a new socket is created.  In this case, any data
1276  * accompanying the SYN will be queued to the socket by tcp_input() and will
1277  * be ACKed either when the application sends response data or the delayed
1278  * ACK timer expires, whichever comes first.
1279  */
1280 int
1281 syncache_add(struct in_conninfo *inc, struct tcpopt *to, struct tcphdr *th,
1282     struct inpcb *inp, struct socket **lsop, struct mbuf *m, void *tod,
1283     void *todctx, uint8_t iptos)
1284 {
1285         struct tcpcb *tp;
1286         struct socket *so;
1287         struct syncache *sc = NULL;
1288         struct syncache_head *sch;
1289         struct mbuf *ipopts = NULL;
1290         u_int ltflags;
1291         int win, ip_ttl, ip_tos;
1292         char *s;
1293         int rv = 0;
1294 #ifdef INET6
1295         int autoflowlabel = 0;
1296 #endif
1297 #ifdef MAC
1298         struct label *maclabel;
1299 #endif
1300         struct syncache scs;
1301         struct ucred *cred;
1302         uint64_t tfo_response_cookie;
1303         unsigned int *tfo_pending = NULL;
1304         int tfo_cookie_valid = 0;
1305         int tfo_response_cookie_valid = 0;
1306
1307         INP_WLOCK_ASSERT(inp);                  /* listen socket */
1308         KASSERT((th->th_flags & (TH_RST|TH_ACK|TH_SYN)) == TH_SYN,
1309             ("%s: unexpected tcp flags", __func__));
1310
1311         /*
1312          * Combine all so/tp operations very early to drop the INP lock as
1313          * soon as possible.
1314          */
1315         so = *lsop;
1316         KASSERT(SOLISTENING(so), ("%s: %p not listening", __func__, so));
1317         tp = sototcpcb(so);
1318         cred = crhold(so->so_cred);
1319
1320 #ifdef INET6
1321         if ((inc->inc_flags & INC_ISIPV6) &&
1322             (inp->inp_flags & IN6P_AUTOFLOWLABEL))
1323                 autoflowlabel = 1;
1324 #endif
1325         ip_ttl = inp->inp_ip_ttl;
1326         ip_tos = inp->inp_ip_tos;
1327         win = so->sol_sbrcv_hiwat;
1328         ltflags = (tp->t_flags & (TF_NOOPT | TF_SIGNATURE));
1329
1330         if (V_tcp_fastopen_server_enable && IS_FASTOPEN(tp->t_flags) &&
1331             (tp->t_tfo_pending != NULL) &&
1332             (to->to_flags & TOF_FASTOPEN)) {
1333                 /*
1334                  * Limit the number of pending TFO connections to
1335                  * approximately half of the queue limit.  This prevents TFO
1336                  * SYN floods from starving the service by filling the
1337                  * listen queue with bogus TFO connections.
1338                  */
1339                 if (atomic_fetchadd_int(tp->t_tfo_pending, 1) <=
1340                     (so->sol_qlimit / 2)) {
1341                         int result;
1342
1343                         result = tcp_fastopen_check_cookie(inc,
1344                             to->to_tfo_cookie, to->to_tfo_len,
1345                             &tfo_response_cookie);
1346                         tfo_cookie_valid = (result > 0);
1347                         tfo_response_cookie_valid = (result >= 0);
1348                 }
1349
1350                 /*
1351                  * Remember the TFO pending counter as it will have to be
1352                  * decremented below if we don't make it to syncache_tfo_expand().
1353                  */
1354                 tfo_pending = tp->t_tfo_pending;
1355         }
1356
1357         /* By the time we drop the lock these should no longer be used. */
1358         so = NULL;
1359         tp = NULL;
1360
1361 #ifdef MAC
1362         if (mac_syncache_init(&maclabel) != 0) {
1363                 INP_WUNLOCK(inp);
1364                 goto done;
1365         } else
1366                 mac_syncache_create(maclabel, inp);
1367 #endif
1368         if (!tfo_cookie_valid)
1369                 INP_WUNLOCK(inp);
1370
1371         /*
1372          * Remember the IP options, if any.
1373          */
1374 #ifdef INET6
1375         if (!(inc->inc_flags & INC_ISIPV6))
1376 #endif
1377 #ifdef INET
1378                 ipopts = (m) ? ip_srcroute(m) : NULL;
1379 #else
1380                 ipopts = NULL;
1381 #endif
1382
1383 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE)
1384         /*
1385          * If listening socket requested TCP digests, check that received
1386          * SYN has signature and it is correct. If signature doesn't match
1387          * or TCP_SIGNATURE support isn't enabled, drop the packet.
1388          */
1389         if (ltflags & TF_SIGNATURE) {
1390                 if ((to->to_flags & TOF_SIGNATURE) == 0) {
1391                         TCPSTAT_INC(tcps_sig_err_nosigopt);
1392                         goto done;
1393                 }
1394                 if (!TCPMD5_ENABLED() ||
1395                     TCPMD5_INPUT(m, th, to->to_signature) != 0)
1396                         goto done;
1397         }
1398 #endif  /* TCP_SIGNATURE */
1399         /*
1400          * See if we already have an entry for this connection.
1401          * If we do, resend the SYN,ACK, and reset the retransmit timer.
1402          *
1403          * XXX: should the syncache be re-initialized with the contents
1404          * of the new SYN here (which may have different options?)
1405          *
1406          * XXX: We do not check the sequence number to see if this is a
1407          * real retransmit or a new connection attempt.  The question is
1408          * how to handle such a case; either ignore it as spoofed, or
1409          * drop the current entry and create a new one?
1410          */
1411         sc = syncache_lookup(inc, &sch);        /* returns locked entry */
1412         SCH_LOCK_ASSERT(sch);
1413         if (sc != NULL) {
1414                 if (tfo_cookie_valid)
1415                         INP_WUNLOCK(inp);
1416                 TCPSTAT_INC(tcps_sc_dupsyn);
1417                 if (ipopts) {
1418                         /*
1419                          * If we were remembering a previous source route,
1420                          * forget it and use the new one we've been given.
1421                          */
1422                         if (sc->sc_ipopts)
1423                                 (void) m_free(sc->sc_ipopts);
1424                         sc->sc_ipopts = ipopts;
1425                 }
1426                 /*
1427                  * Update timestamp if present.
1428                  */
1429                 if ((sc->sc_flags & SCF_TIMESTAMP) && (to->to_flags & TOF_TS))
1430                         sc->sc_tsreflect = to->to_tsval;
1431                 else
1432                         sc->sc_flags &= ~SCF_TIMESTAMP;
1433 #ifdef MAC
1434                 /*
1435                  * Since we have already unconditionally allocated label
1436                  * storage, free it up.  The syncache entry will already
1437                  * have an initialized label we can use.
1438                  */
1439                 mac_syncache_destroy(&maclabel);
1440 #endif
1441                 TCP_PROBE5(receive, NULL, NULL, m, NULL, th);
1442                 /* Retransmit SYN|ACK and reset retransmit count. */
1443                 if ((s = tcp_log_addrs(&sc->sc_inc, th, NULL, NULL))) {
1444                         log(LOG_DEBUG, "%s; %s: Received duplicate SYN, "
1445                             "resetting timer and retransmitting SYN|ACK\n",
1446                             s, __func__);
1447                         free(s, M_TCPLOG);
1448                 }
1449                 if (syncache_respond(sc, sch, m, TH_SYN|TH_ACK) == 0) {
1450                         sc->sc_rxmits = 0;
1451                         syncache_timeout(sc, sch, 1);
1452                         TCPSTAT_INC(tcps_sndacks);
1453                         TCPSTAT_INC(tcps_sndtotal);
1454                 }
1455                 SCH_UNLOCK(sch);
1456                 goto donenoprobe;
1457         }
1458
1459         if (tfo_cookie_valid) {
1460                 bzero(&scs, sizeof(scs));
1461                 sc = &scs;
1462                 goto skip_alloc;
1463         }
1464
1465         sc = uma_zalloc(V_tcp_syncache.zone, M_NOWAIT | M_ZERO);
1466         if (sc == NULL) {
1467                 /*
1468                  * The zone allocator couldn't provide more entries.
1469                  * Treat this as if the cache was full; drop the oldest
1470                  * entry and insert the new one.
1471                  */
1472                 TCPSTAT_INC(tcps_sc_zonefail);
1473                 if ((sc = TAILQ_LAST(&sch->sch_bucket, sch_head)) != NULL) {
1474                         sch->sch_last_overflow = time_uptime;
1475                         syncache_drop(sc, sch);
1476                 }
1477                 sc = uma_zalloc(V_tcp_syncache.zone, M_NOWAIT | M_ZERO);
1478                 if (sc == NULL) {
1479                         if (V_tcp_syncookies) {
1480                                 bzero(&scs, sizeof(scs));
1481                                 sc = &scs;
1482                         } else {
1483                                 SCH_UNLOCK(sch);
1484                                 if (ipopts)
1485                                         (void) m_free(ipopts);
1486                                 goto done;
1487                         }
1488                 }
1489         }
1490
1491 skip_alloc:
1492         if (!tfo_cookie_valid && tfo_response_cookie_valid)
1493                 sc->sc_tfo_cookie = &tfo_response_cookie;
1494
1495         /*
1496          * Fill in the syncache values.
1497          */
1498 #ifdef MAC
1499         sc->sc_label = maclabel;
1500 #endif
1501         sc->sc_cred = cred;
1502         cred = NULL;
1503         sc->sc_ipopts = ipopts;
1504         bcopy(inc, &sc->sc_inc, sizeof(struct in_conninfo));
1505 #ifdef INET6
1506         if (!(inc->inc_flags & INC_ISIPV6))
1507 #endif
1508         {
1509                 sc->sc_ip_tos = ip_tos;
1510                 sc->sc_ip_ttl = ip_ttl;
1511         }
1512 #ifdef TCP_OFFLOAD
1513         sc->sc_tod = tod;
1514         sc->sc_todctx = todctx;
1515 #endif
1516         sc->sc_irs = th->th_seq;
1517         sc->sc_iss = arc4random();
1518         sc->sc_flags = 0;
1519         sc->sc_flowlabel = 0;
1520
1521         /*
1522          * Initial receive window: clip sbspace to [0 .. TCP_MAXWIN].
1523          * win was derived from socket earlier in the function.
1524          */
1525         win = imax(win, 0);
1526         win = imin(win, TCP_MAXWIN);
1527         sc->sc_wnd = win;
1528
1529         if (V_tcp_do_rfc1323) {
1530                 /*
1531                  * A timestamp received in a SYN makes
1532                  * it ok to send timestamp requests and replies.
1533                  */
1534                 if (to->to_flags & TOF_TS) {
1535                         sc->sc_tsreflect = to->to_tsval;
1536                         sc->sc_flags |= SCF_TIMESTAMP;
1537                         sc->sc_tsoff = tcp_new_ts_offset(inc);
1538                 }
1539                 if (to->to_flags & TOF_SCALE) {
1540                         int wscale = 0;
1541
1542                         /*
1543                          * Pick the smallest possible scaling factor that
1544                          * will still allow us to scale up to sb_max, aka
1545                          * kern.ipc.maxsockbuf.
1546                          *
1547                          * We do this because there are broken firewalls that
1548                          * will corrupt the window scale option, leading to
1549                          * the other endpoint believing that our advertised
1550                          * window is unscaled.  At scale factors larger than
1551                          * 5 the unscaled window will drop below 1500 bytes,
1552                          * leading to serious problems when traversing these
1553                          * broken firewalls.
1554                          *
1555                          * With the default maxsockbuf of 256K, a scale factor
1556                          * of 3 will be chosen by this algorithm.  Those who
1557                          * choose a larger maxsockbuf should watch out
1558                          * for the compatibility problems mentioned above.
1559                          *
1560                          * RFC1323: The Window field in a SYN (i.e., a <SYN>
1561                          * or <SYN,ACK>) segment itself is never scaled.
1562                          */
1563                         while (wscale < TCP_MAX_WINSHIFT &&
1564                             (TCP_MAXWIN << wscale) < sb_max)
1565                                 wscale++;
1566                         sc->sc_requested_r_scale = wscale;
1567                         sc->sc_requested_s_scale = to->to_wscale;
1568                         sc->sc_flags |= SCF_WINSCALE;
1569                 }
1570         }
1571 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE)
1572         /*
1573          * If listening socket requested TCP digests, flag this in the
1574          * syncache so that syncache_respond() will do the right thing
1575          * with the SYN+ACK.
1576          */
1577         if (ltflags & TF_SIGNATURE)
1578                 sc->sc_flags |= SCF_SIGNATURE;
1579 #endif  /* TCP_SIGNATURE */
1580         if (to->to_flags & TOF_SACKPERM)
1581                 sc->sc_flags |= SCF_SACK;
1582         if (to->to_flags & TOF_MSS)
1583                 sc->sc_peer_mss = to->to_mss;   /* peer mss may be zero */
1584         if (ltflags & TF_NOOPT)
1585                 sc->sc_flags |= SCF_NOOPT;
1586         if ((th->th_flags & (TH_ECE|TH_CWR)) && V_tcp_do_ecn)
1587                 sc->sc_flags |= SCF_ECN;
1588
1589         if (V_tcp_syncookies)
1590                 sc->sc_iss = syncookie_generate(sch, sc);
1591 #ifdef INET6
1592         if (autoflowlabel) {
1593                 if (V_tcp_syncookies)
1594                         sc->sc_flowlabel = sc->sc_iss;
1595                 else
1596                         sc->sc_flowlabel = ip6_randomflowlabel();
1597                 sc->sc_flowlabel = htonl(sc->sc_flowlabel) & IPV6_FLOWLABEL_MASK;
1598         }
1599 #endif
1600         SCH_UNLOCK(sch);
1601
1602         if (tfo_cookie_valid) {
1603                 syncache_tfo_expand(sc, lsop, m, tfo_response_cookie);
1604                 /* INP_WUNLOCK(inp) will be performed by the caller */
1605                 rv = 1;
1606                 goto tfo_expanded;
1607         }
1608
1609         TCP_PROBE5(receive, NULL, NULL, m, NULL, th);
1610         /*
1611          * Do a standard 3-way handshake.
1612          */
1613         if (syncache_respond(sc, sch, m, TH_SYN|TH_ACK) == 0) {
1614                 if (V_tcp_syncookies && V_tcp_syncookiesonly && sc != &scs)
1615                         syncache_free(sc);
1616                 else if (sc != &scs)
1617                         syncache_insert(sc, sch);   /* locks and unlocks sch */
1618                 TCPSTAT_INC(tcps_sndacks);
1619                 TCPSTAT_INC(tcps_sndtotal);
1620         } else {
1621                 if (sc != &scs)
1622                         syncache_free(sc);
1623                 TCPSTAT_INC(tcps_sc_dropped);
1624         }
1625         goto donenoprobe;
1626
1627 done:
1628         TCP_PROBE5(receive, NULL, NULL, m, NULL, th);
1629 donenoprobe:
1630         if (m) {
1631                 *lsop = NULL;
1632                 m_freem(m);
1633         }
1634         /*
1635          * If tfo_pending is not NULL here, then a TFO SYN that did not
1636          * result in a new socket was processed and the associated pending
1637          * counter has not yet been decremented.  All such TFO processing paths
1638          * transit this point.
1639          */
1640         if (tfo_pending != NULL)
1641                 tcp_fastopen_decrement_counter(tfo_pending);
1642
1643 tfo_expanded:
1644         if (cred != NULL)
1645                 crfree(cred);
1646 #ifdef MAC
1647         if (sc == &scs)
1648                 mac_syncache_destroy(&maclabel);
1649 #endif
1650         return (rv);
1651 }
1652
1653 /*
1654  * Send SYN|ACK or ACK to the peer.  Either in response to a peer's segment,
1655  * i.e. m0 != NULL, or upon 3WHS ACK timeout, i.e. m0 == NULL.
1656  */
1657 static int
1658 syncache_respond(struct syncache *sc, struct syncache_head *sch,
1659     const struct mbuf *m0, int flags)
1660 {
1661         struct ip *ip = NULL;
1662         struct mbuf *m;
1663         struct tcphdr *th = NULL;
1664         int optlen, error = 0;  /* Make compiler happy */
1665         u_int16_t hlen, tlen, mssopt;
1666         struct tcpopt to;
1667 #ifdef INET6
1668         struct ip6_hdr *ip6 = NULL;
1669 #endif
1670         hlen =
1671 #ifdef INET6
1672                (sc->sc_inc.inc_flags & INC_ISIPV6) ? sizeof(struct ip6_hdr) :
1673 #endif
1674                 sizeof(struct ip);
1675         tlen = hlen + sizeof(struct tcphdr);
1676
1677         /* Determine MSS we advertize to other end of connection. */
1678         mssopt = max(tcp_mssopt(&sc->sc_inc), V_tcp_minmss);
1679
1680         /* XXX: Assume that the entire packet will fit in a header mbuf. */
1681         KASSERT(max_linkhdr + tlen + TCP_MAXOLEN <= MHLEN,
1682             ("syncache: mbuf too small"));
1683
1684         /* Create the IP+TCP header from scratch. */
1685         m = m_gethdr(M_NOWAIT, MT_DATA);
1686         if (m == NULL)
1687                 return (ENOBUFS);
1688 #ifdef MAC
1689         mac_syncache_create_mbuf(sc->sc_label, m);
1690 #endif
1691         m->m_data += max_linkhdr;
1692         m->m_len = tlen;
1693         m->m_pkthdr.len = tlen;
1694         m->m_pkthdr.rcvif = NULL;
1695
1696 #ifdef INET6
1697         if (sc->sc_inc.inc_flags & INC_ISIPV6) {
1698                 ip6 = mtod(m, struct ip6_hdr *);
1699                 ip6->ip6_vfc = IPV6_VERSION;
1700                 ip6->ip6_nxt = IPPROTO_TCP;
1701                 ip6->ip6_src = sc->sc_inc.inc6_laddr;
1702                 ip6->ip6_dst = sc->sc_inc.inc6_faddr;
1703                 ip6->ip6_plen = htons(tlen - hlen);
1704                 /* ip6_hlim is set after checksum */
1705                 /* Zero out traffic class and flow label. */
1706                 ip6->ip6_flow &= ~IPV6_FLOWINFO_MASK;
1707                 ip6->ip6_flow |= sc->sc_flowlabel;
1708
1709                 th = (struct tcphdr *)(ip6 + 1);
1710         }
1711 #endif
1712 #if defined(INET6) && defined(INET)
1713         else
1714 #endif
1715 #ifdef INET
1716         {
1717                 ip = mtod(m, struct ip *);
1718                 ip->ip_v = IPVERSION;
1719                 ip->ip_hl = sizeof(struct ip) >> 2;
1720                 ip->ip_len = htons(tlen);
1721                 ip->ip_id = 0;
1722                 ip->ip_off = 0;
1723                 ip->ip_sum = 0;
1724                 ip->ip_p = IPPROTO_TCP;
1725                 ip->ip_src = sc->sc_inc.inc_laddr;
1726                 ip->ip_dst = sc->sc_inc.inc_faddr;
1727                 ip->ip_ttl = sc->sc_ip_ttl;
1728                 ip->ip_tos = sc->sc_ip_tos;
1729
1730                 /*
1731                  * See if we should do MTU discovery.  Route lookups are
1732                  * expensive, so we will only unset the DF bit if:
1733                  *
1734                  *      1) path_mtu_discovery is disabled
1735                  *      2) the SCF_UNREACH flag has been set
1736                  */
1737                 if (V_path_mtu_discovery && ((sc->sc_flags & SCF_UNREACH) == 0))
1738                        ip->ip_off |= htons(IP_DF);
1739
1740                 th = (struct tcphdr *)(ip + 1);
1741         }
1742 #endif /* INET */
1743         th->th_sport = sc->sc_inc.inc_lport;
1744         th->th_dport = sc->sc_inc.inc_fport;
1745
1746         if (flags & TH_SYN)
1747                 th->th_seq = htonl(sc->sc_iss);
1748         else
1749                 th->th_seq = htonl(sc->sc_iss + 1);
1750         th->th_ack = htonl(sc->sc_irs + 1);
1751         th->th_off = sizeof(struct tcphdr) >> 2;
1752         th->th_x2 = 0;
1753         th->th_flags = flags;
1754         th->th_win = htons(sc->sc_wnd);
1755         th->th_urp = 0;
1756
1757         if ((flags & TH_SYN) && (sc->sc_flags & SCF_ECN)) {
1758                 th->th_flags |= TH_ECE;
1759                 TCPSTAT_INC(tcps_ecn_shs);
1760         }
1761
1762         /* Tack on the TCP options. */
1763         if ((sc->sc_flags & SCF_NOOPT) == 0) {
1764                 to.to_flags = 0;
1765
1766                 if (flags & TH_SYN) {
1767                         to.to_mss = mssopt;
1768                         to.to_flags = TOF_MSS;
1769                         if (sc->sc_flags & SCF_WINSCALE) {
1770                                 to.to_wscale = sc->sc_requested_r_scale;
1771                                 to.to_flags |= TOF_SCALE;
1772                         }
1773                         if (sc->sc_flags & SCF_SACK)
1774                                 to.to_flags |= TOF_SACKPERM;
1775 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE)
1776                         if (sc->sc_flags & SCF_SIGNATURE)
1777                                 to.to_flags |= TOF_SIGNATURE;
1778 #endif
1779                         if (sc->sc_tfo_cookie) {
1780                                 to.to_flags |= TOF_FASTOPEN;
1781                                 to.to_tfo_len = TCP_FASTOPEN_COOKIE_LEN;
1782                                 to.to_tfo_cookie = sc->sc_tfo_cookie;
1783                                 /* don't send cookie again when retransmitting response */
1784                                 sc->sc_tfo_cookie = NULL;
1785                         }
1786                 }
1787                 if (sc->sc_flags & SCF_TIMESTAMP) {
1788                         to.to_tsval = sc->sc_tsoff + tcp_ts_getticks();
1789                         to.to_tsecr = sc->sc_tsreflect;
1790                         to.to_flags |= TOF_TS;
1791                 }
1792                 optlen = tcp_addoptions(&to, (u_char *)(th + 1));
1793
1794                 /* Adjust headers by option size. */
1795                 th->th_off = (sizeof(struct tcphdr) + optlen) >> 2;
1796                 m->m_len += optlen;
1797                 m->m_pkthdr.len += optlen;
1798 #ifdef INET6
1799                 if (sc->sc_inc.inc_flags & INC_ISIPV6)
1800                         ip6->ip6_plen = htons(ntohs(ip6->ip6_plen) + optlen);
1801                 else
1802 #endif
1803                         ip->ip_len = htons(ntohs(ip->ip_len) + optlen);
1804 #if defined(IPSEC_SUPPORT) || defined(TCP_SIGNATURE)
1805                 if (sc->sc_flags & SCF_SIGNATURE) {
1806                         KASSERT(to.to_flags & TOF_SIGNATURE,
1807                             ("tcp_addoptions() didn't set tcp_signature"));
1808
1809                         /* NOTE: to.to_signature is inside of mbuf */
1810                         if (!TCPMD5_ENABLED() ||
1811                             TCPMD5_OUTPUT(m, th, to.to_signature) != 0) {
1812                                 m_freem(m);
1813                                 return (EACCES);
1814                         }
1815                 }
1816 #endif
1817         } else
1818                 optlen = 0;
1819
1820         M_SETFIB(m, sc->sc_inc.inc_fibnum);
1821         m->m_pkthdr.csum_data = offsetof(struct tcphdr, th_sum);
1822         /*
1823          * If we have peer's SYN and it has a flowid, then let's assign it to
1824          * our SYN|ACK.  ip6_output() and ip_output() will not assign flowid
1825          * to SYN|ACK due to lack of inp here.
1826          */
1827         if (m0 != NULL && M_HASHTYPE_GET(m0) != M_HASHTYPE_NONE) {
1828                 m->m_pkthdr.flowid = m0->m_pkthdr.flowid;
1829                 M_HASHTYPE_SET(m, M_HASHTYPE_GET(m0));
1830         }
1831 #ifdef INET6
1832         if (sc->sc_inc.inc_flags & INC_ISIPV6) {
1833                 m->m_pkthdr.csum_flags = CSUM_TCP_IPV6;
1834                 th->th_sum = in6_cksum_pseudo(ip6, tlen + optlen - hlen,
1835                     IPPROTO_TCP, 0);
1836                 ip6->ip6_hlim = in6_selecthlim(NULL, NULL);
1837 #ifdef TCP_OFFLOAD
1838                 if (ADDED_BY_TOE(sc)) {
1839                         struct toedev *tod = sc->sc_tod;
1840
1841                         error = tod->tod_syncache_respond(tod, sc->sc_todctx, m);
1842
1843                         return (error);
1844                 }
1845 #endif
1846                 TCP_PROBE5(send, NULL, NULL, ip6, NULL, th);
1847                 error = ip6_output(m, NULL, NULL, 0, NULL, NULL, NULL);
1848         }
1849 #endif
1850 #if defined(INET6) && defined(INET)
1851         else
1852 #endif
1853 #ifdef INET
1854         {
1855                 m->m_pkthdr.csum_flags = CSUM_TCP;
1856                 th->th_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr,
1857                     htons(tlen + optlen - hlen + IPPROTO_TCP));
1858 #ifdef TCP_OFFLOAD
1859                 if (ADDED_BY_TOE(sc)) {
1860                         struct toedev *tod = sc->sc_tod;
1861
1862                         error = tod->tod_syncache_respond(tod, sc->sc_todctx, m);
1863
1864                         return (error);
1865                 }
1866 #endif
1867                 TCP_PROBE5(send, NULL, NULL, ip, NULL, th);
1868                 error = ip_output(m, sc->sc_ipopts, NULL, 0, NULL, NULL);
1869         }
1870 #endif
1871         return (error);
1872 }
1873
1874 /*
1875  * The purpose of syncookies is to handle spoofed SYN flooding DoS attacks
1876  * that exceed the capacity of the syncache by avoiding the storage of any
1877  * of the SYNs we receive.  Syncookies defend against blind SYN flooding
1878  * attacks where the attacker does not have access to our responses.
1879  *
1880  * Syncookies encode and include all necessary information about the
1881  * connection setup within the SYN|ACK that we send back.  That way we
1882  * can avoid keeping any local state until the ACK to our SYN|ACK returns
1883  * (if ever).  Normally the syncache and syncookies are running in parallel
1884  * with the latter taking over when the former is exhausted.  When matching
1885  * syncache entry is found the syncookie is ignored.
1886  *
1887  * The only reliable information persisting the 3WHS is our initial sequence
1888  * number ISS of 32 bits.  Syncookies embed a cryptographically sufficient
1889  * strong hash (MAC) value and a few bits of TCP SYN options in the ISS
1890  * of our SYN|ACK.  The MAC can be recomputed when the ACK to our SYN|ACK
1891  * returns and signifies a legitimate connection if it matches the ACK.
1892  *
1893  * The available space of 32 bits to store the hash and to encode the SYN
1894  * option information is very tight and we should have at least 24 bits for
1895  * the MAC to keep the number of guesses by blind spoofing reasonably high.
1896  *
1897  * SYN option information we have to encode to fully restore a connection:
1898  * MSS: is imporant to chose an optimal segment size to avoid IP level
1899  *   fragmentation along the path.  The common MSS values can be encoded
1900  *   in a 3-bit table.  Uncommon values are captured by the next lower value
1901  *   in the table leading to a slight increase in packetization overhead.
1902  * WSCALE: is necessary to allow large windows to be used for high delay-
1903  *   bandwidth product links.  Not scaling the window when it was initially
1904  *   negotiated is bad for performance as lack of scaling further decreases
1905  *   the apparent available send window.  We only need to encode the WSCALE
1906  *   we received from the remote end.  Our end can be recalculated at any
1907  *   time.  The common WSCALE values can be encoded in a 3-bit table.
1908  *   Uncommon values are captured by the next lower value in the table
1909  *   making us under-estimate the available window size halving our
1910  *   theoretically possible maximum throughput for that connection.
1911  * SACK: Greatly assists in packet loss recovery and requires 1 bit.
1912  * TIMESTAMP and SIGNATURE is not encoded because they are permanent options
1913  *   that are included in all segments on a connection.  We enable them when
1914  *   the ACK has them.
1915  *
1916  * Security of syncookies and attack vectors:
1917  *
1918  * The MAC is computed over (faddr||laddr||fport||lport||irs||flags||secmod)
1919  * together with the gloabl secret to make it unique per connection attempt.
1920  * Thus any change of any of those parameters results in a different MAC output
1921  * in an unpredictable way unless a collision is encountered.  24 bits of the
1922  * MAC are embedded into the ISS.
1923  *
1924  * To prevent replay attacks two rotating global secrets are updated with a
1925  * new random value every 15 seconds.  The life-time of a syncookie is thus
1926  * 15-30 seconds.
1927  *
1928  * Vector 1: Attacking the secret.  This requires finding a weakness in the
1929  * MAC itself or the way it is used here.  The attacker can do a chosen plain
1930  * text attack by varying and testing the all parameters under his control.
1931  * The strength depends on the size and randomness of the secret, and the
1932  * cryptographic security of the MAC function.  Due to the constant updating
1933  * of the secret the attacker has at most 29.999 seconds to find the secret
1934  * and launch spoofed connections.  After that he has to start all over again.
1935  *
1936  * Vector 2: Collision attack on the MAC of a single ACK.  With a 24 bit MAC
1937  * size an average of 4,823 attempts are required for a 50% chance of success
1938  * to spoof a single syncookie (birthday collision paradox).  However the
1939  * attacker is blind and doesn't know if one of his attempts succeeded unless
1940  * he has a side channel to interfere success from.  A single connection setup
1941  * success average of 90% requires 8,790 packets, 99.99% requires 17,578 packets.
1942  * This many attempts are required for each one blind spoofed connection.  For
1943  * every additional spoofed connection he has to launch another N attempts.
1944  * Thus for a sustained rate 100 spoofed connections per second approximately
1945  * 1,800,000 packets per second would have to be sent.
1946  *
1947  * NB: The MAC function should be fast so that it doesn't become a CPU
1948  * exhaustion attack vector itself.
1949  *
1950  * References:
1951  *  RFC4987 TCP SYN Flooding Attacks and Common Mitigations
1952  *  SYN cookies were first proposed by cryptographer Dan J. Bernstein in 1996
1953  *   http://cr.yp.to/syncookies.html    (overview)
1954  *   http://cr.yp.to/syncookies/archive (details)
1955  *
1956  *
1957  * Schematic construction of a syncookie enabled Initial Sequence Number:
1958  *  0        1         2         3
1959  *  12345678901234567890123456789012
1960  * |xxxxxxxxxxxxxxxxxxxxxxxxWWWMMMSP|
1961  *
1962  *  x 24 MAC (truncated)
1963  *  W  3 Send Window Scale index
1964  *  M  3 MSS index
1965  *  S  1 SACK permitted
1966  *  P  1 Odd/even secret
1967  */
1968
1969 /*
1970  * Distribution and probability of certain MSS values.  Those in between are
1971  * rounded down to the next lower one.
1972  * [An Analysis of TCP Maximum Segment Sizes, S. Alcock and R. Nelson, 2011]
1973  *                            .2%  .3%   5%    7%    7%    20%   15%   45%
1974  */
1975 static int tcp_sc_msstab[] = { 216, 536, 1200, 1360, 1400, 1440, 1452, 1460 };
1976
1977 /*
1978  * Distribution and probability of certain WSCALE values.  We have to map the
1979  * (send) window scale (shift) option with a range of 0-14 from 4 bits into 3
1980  * bits based on prevalence of certain values.  Where we don't have an exact
1981  * match for are rounded down to the next lower one letting us under-estimate
1982  * the true available window.  At the moment this would happen only for the
1983  * very uncommon values 3, 5 and those above 8 (more than 16MB socket buffer
1984  * and window size).  The absence of the WSCALE option (no scaling in either
1985  * direction) is encoded with index zero.
1986  * [WSCALE values histograms, Allman, 2012]
1987  *                            X 10 10 35  5  6 14 10%   by host
1988  *                            X 11  4  5  5 18 49  3%   by connections
1989  */
1990 static int tcp_sc_wstab[] = { 0, 0, 1, 2, 4, 6, 7, 8 };
1991
1992 /*
1993  * Compute the MAC for the SYN cookie.  SIPHASH-2-4 is chosen for its speed
1994  * and good cryptographic properties.
1995  */
1996 static uint32_t
1997 syncookie_mac(struct in_conninfo *inc, tcp_seq irs, uint8_t flags,
1998     uint8_t *secbits, uintptr_t secmod)
1999 {
2000         SIPHASH_CTX ctx;
2001         uint32_t siphash[2];
2002
2003         SipHash24_Init(&ctx);
2004         SipHash_SetKey(&ctx, secbits);
2005         switch (inc->inc_flags & INC_ISIPV6) {
2006 #ifdef INET
2007         case 0:
2008                 SipHash_Update(&ctx, &inc->inc_faddr, sizeof(inc->inc_faddr));
2009                 SipHash_Update(&ctx, &inc->inc_laddr, sizeof(inc->inc_laddr));
2010                 break;
2011 #endif
2012 #ifdef INET6
2013         case INC_ISIPV6:
2014                 SipHash_Update(&ctx, &inc->inc6_faddr, sizeof(inc->inc6_faddr));
2015                 SipHash_Update(&ctx, &inc->inc6_laddr, sizeof(inc->inc6_laddr));
2016                 break;
2017 #endif
2018         }
2019         SipHash_Update(&ctx, &inc->inc_fport, sizeof(inc->inc_fport));
2020         SipHash_Update(&ctx, &inc->inc_lport, sizeof(inc->inc_lport));
2021         SipHash_Update(&ctx, &irs, sizeof(irs));
2022         SipHash_Update(&ctx, &flags, sizeof(flags));
2023         SipHash_Update(&ctx, &secmod, sizeof(secmod));
2024         SipHash_Final((u_int8_t *)&siphash, &ctx);
2025
2026         return (siphash[0] ^ siphash[1]);
2027 }
2028
2029 static tcp_seq
2030 syncookie_generate(struct syncache_head *sch, struct syncache *sc)
2031 {
2032         u_int i, secbit, wscale;
2033         uint32_t iss, hash;
2034         uint8_t *secbits;
2035         union syncookie cookie;
2036
2037         SCH_LOCK_ASSERT(sch);
2038
2039         cookie.cookie = 0;
2040
2041         /* Map our computed MSS into the 3-bit index. */
2042         for (i = nitems(tcp_sc_msstab) - 1;
2043              tcp_sc_msstab[i] > sc->sc_peer_mss && i > 0;
2044              i--)
2045                 ;
2046         cookie.flags.mss_idx = i;
2047
2048         /*
2049          * Map the send window scale into the 3-bit index but only if
2050          * the wscale option was received.
2051          */
2052         if (sc->sc_flags & SCF_WINSCALE) {
2053                 wscale = sc->sc_requested_s_scale;
2054                 for (i = nitems(tcp_sc_wstab) - 1;
2055                     tcp_sc_wstab[i] > wscale && i > 0;
2056                      i--)
2057                         ;
2058                 cookie.flags.wscale_idx = i;
2059         }
2060
2061         /* Can we do SACK? */
2062         if (sc->sc_flags & SCF_SACK)
2063                 cookie.flags.sack_ok = 1;
2064
2065         /* Which of the two secrets to use. */
2066         secbit = sch->sch_sc->secret.oddeven & 0x1;
2067         cookie.flags.odd_even = secbit;
2068
2069         secbits = sch->sch_sc->secret.key[secbit];
2070         hash = syncookie_mac(&sc->sc_inc, sc->sc_irs, cookie.cookie, secbits,
2071             (uintptr_t)sch);
2072
2073         /*
2074          * Put the flags into the hash and XOR them to get better ISS number
2075          * variance.  This doesn't enhance the cryptographic strength and is
2076          * done to prevent the 8 cookie bits from showing up directly on the
2077          * wire.
2078          */
2079         iss = hash & ~0xff;
2080         iss |= cookie.cookie ^ (hash >> 24);
2081
2082         TCPSTAT_INC(tcps_sc_sendcookie);
2083         return (iss);
2084 }
2085
2086 static struct syncache *
2087 syncookie_lookup(struct in_conninfo *inc, struct syncache_head *sch, 
2088     struct syncache *sc, struct tcphdr *th, struct tcpopt *to,
2089     struct socket *lso)
2090 {
2091         uint32_t hash;
2092         uint8_t *secbits;
2093         tcp_seq ack, seq;
2094         int wnd, wscale = 0;
2095         union syncookie cookie;
2096
2097         SCH_LOCK_ASSERT(sch);
2098
2099         /*
2100          * Pull information out of SYN-ACK/ACK and revert sequence number
2101          * advances.
2102          */
2103         ack = th->th_ack - 1;
2104         seq = th->th_seq - 1;
2105
2106         /*
2107          * Unpack the flags containing enough information to restore the
2108          * connection.
2109          */
2110         cookie.cookie = (ack & 0xff) ^ (ack >> 24);
2111
2112         /* Which of the two secrets to use. */
2113         secbits = sch->sch_sc->secret.key[cookie.flags.odd_even];
2114
2115         hash = syncookie_mac(inc, seq, cookie.cookie, secbits, (uintptr_t)sch);
2116
2117         /* The recomputed hash matches the ACK if this was a genuine cookie. */
2118         if ((ack & ~0xff) != (hash & ~0xff))
2119                 return (NULL);
2120
2121         /* Fill in the syncache values. */
2122         sc->sc_flags = 0;
2123         bcopy(inc, &sc->sc_inc, sizeof(struct in_conninfo));
2124         sc->sc_ipopts = NULL;
2125         
2126         sc->sc_irs = seq;
2127         sc->sc_iss = ack;
2128
2129         switch (inc->inc_flags & INC_ISIPV6) {
2130 #ifdef INET
2131         case 0:
2132                 sc->sc_ip_ttl = sotoinpcb(lso)->inp_ip_ttl;
2133                 sc->sc_ip_tos = sotoinpcb(lso)->inp_ip_tos;
2134                 break;
2135 #endif
2136 #ifdef INET6
2137         case INC_ISIPV6:
2138                 if (sotoinpcb(lso)->inp_flags & IN6P_AUTOFLOWLABEL)
2139                         sc->sc_flowlabel = sc->sc_iss & IPV6_FLOWLABEL_MASK;
2140                 break;
2141 #endif
2142         }
2143
2144         sc->sc_peer_mss = tcp_sc_msstab[cookie.flags.mss_idx];
2145
2146         /* We can simply recompute receive window scale we sent earlier. */
2147         while (wscale < TCP_MAX_WINSHIFT && (TCP_MAXWIN << wscale) < sb_max)
2148                 wscale++;
2149
2150         /* Only use wscale if it was enabled in the orignal SYN. */
2151         if (cookie.flags.wscale_idx > 0) {
2152                 sc->sc_requested_r_scale = wscale;
2153                 sc->sc_requested_s_scale = tcp_sc_wstab[cookie.flags.wscale_idx];
2154                 sc->sc_flags |= SCF_WINSCALE;
2155         }
2156
2157         wnd = lso->sol_sbrcv_hiwat;
2158         wnd = imax(wnd, 0);
2159         wnd = imin(wnd, TCP_MAXWIN);
2160         sc->sc_wnd = wnd;
2161
2162         if (cookie.flags.sack_ok)
2163                 sc->sc_flags |= SCF_SACK;
2164
2165         if (to->to_flags & TOF_TS) {
2166                 sc->sc_flags |= SCF_TIMESTAMP;
2167                 sc->sc_tsreflect = to->to_tsval;
2168                 sc->sc_tsoff = tcp_new_ts_offset(inc);
2169         }
2170
2171         if (to->to_flags & TOF_SIGNATURE)
2172                 sc->sc_flags |= SCF_SIGNATURE;
2173
2174         sc->sc_rxmits = 0;
2175
2176         TCPSTAT_INC(tcps_sc_recvcookie);
2177         return (sc);
2178 }
2179
2180 #ifdef INVARIANTS
2181 static int
2182 syncookie_cmp(struct in_conninfo *inc, struct syncache_head *sch,
2183     struct syncache *sc, struct tcphdr *th, struct tcpopt *to,
2184     struct socket *lso)
2185 {
2186         struct syncache scs, *scx;
2187         char *s;
2188
2189         bzero(&scs, sizeof(scs));
2190         scx = syncookie_lookup(inc, sch, &scs, th, to, lso);
2191
2192         if ((s = tcp_log_addrs(inc, th, NULL, NULL)) == NULL)
2193                 return (0);
2194
2195         if (scx != NULL) {
2196                 if (sc->sc_peer_mss != scx->sc_peer_mss)
2197                         log(LOG_DEBUG, "%s; %s: mss different %i vs %i\n",
2198                             s, __func__, sc->sc_peer_mss, scx->sc_peer_mss);
2199
2200                 if (sc->sc_requested_r_scale != scx->sc_requested_r_scale)
2201                         log(LOG_DEBUG, "%s; %s: rwscale different %i vs %i\n",
2202                             s, __func__, sc->sc_requested_r_scale,
2203                             scx->sc_requested_r_scale);
2204
2205                 if (sc->sc_requested_s_scale != scx->sc_requested_s_scale)
2206                         log(LOG_DEBUG, "%s; %s: swscale different %i vs %i\n",
2207                             s, __func__, sc->sc_requested_s_scale,
2208                             scx->sc_requested_s_scale);
2209
2210                 if ((sc->sc_flags & SCF_SACK) != (scx->sc_flags & SCF_SACK))
2211                         log(LOG_DEBUG, "%s; %s: SACK different\n", s, __func__);
2212         }
2213
2214         if (s != NULL)
2215                 free(s, M_TCPLOG);
2216         return (0);
2217 }
2218 #endif /* INVARIANTS */
2219
2220 static void
2221 syncookie_reseed(void *arg)
2222 {
2223         struct tcp_syncache *sc = arg;
2224         uint8_t *secbits;
2225         int secbit;
2226
2227         /*
2228          * Reseeding the secret doesn't have to be protected by a lock.
2229          * It only must be ensured that the new random values are visible
2230          * to all CPUs in a SMP environment.  The atomic with release
2231          * semantics ensures that.
2232          */
2233         secbit = (sc->secret.oddeven & 0x1) ? 0 : 1;
2234         secbits = sc->secret.key[secbit];
2235         arc4rand(secbits, SYNCOOKIE_SECRET_SIZE, 0);
2236         atomic_add_rel_int(&sc->secret.oddeven, 1);
2237
2238         /* Reschedule ourself. */
2239         callout_schedule(&sc->secret.reseed, SYNCOOKIE_LIFETIME * hz);
2240 }
2241
2242 /*
2243  * Exports the syncache entries to userland so that netstat can display
2244  * them alongside the other sockets.  This function is intended to be
2245  * called only from tcp_pcblist.
2246  *
2247  * Due to concurrency on an active system, the number of pcbs exported
2248  * may have no relation to max_pcbs.  max_pcbs merely indicates the
2249  * amount of space the caller allocated for this function to use.
2250  */
2251 int
2252 syncache_pcblist(struct sysctl_req *req, int max_pcbs, int *pcbs_exported)
2253 {
2254         struct xtcpcb xt;
2255         struct syncache *sc;
2256         struct syncache_head *sch;
2257         int count, error, i;
2258
2259         for (count = 0, error = 0, i = 0; i < V_tcp_syncache.hashsize; i++) {
2260                 sch = &V_tcp_syncache.hashbase[i];
2261                 SCH_LOCK(sch);
2262                 TAILQ_FOREACH(sc, &sch->sch_bucket, sc_hash) {
2263                         if (count >= max_pcbs) {
2264                                 SCH_UNLOCK(sch);
2265                                 goto exit;
2266                         }
2267                         if (cr_cansee(req->td->td_ucred, sc->sc_cred) != 0)
2268                                 continue;
2269                         bzero(&xt, sizeof(xt));
2270                         xt.xt_len = sizeof(xt);
2271                         if (sc->sc_inc.inc_flags & INC_ISIPV6)
2272                                 xt.xt_inp.inp_vflag = INP_IPV6;
2273                         else
2274                                 xt.xt_inp.inp_vflag = INP_IPV4;
2275                         bcopy(&sc->sc_inc, &xt.xt_inp.inp_inc,
2276                             sizeof (struct in_conninfo));
2277                         xt.t_state = TCPS_SYN_RECEIVED;
2278                         xt.xt_inp.xi_socket.xso_protocol = IPPROTO_TCP;
2279                         xt.xt_inp.xi_socket.xso_len = sizeof (struct xsocket);
2280                         xt.xt_inp.xi_socket.so_type = SOCK_STREAM;
2281                         xt.xt_inp.xi_socket.so_state = SS_ISCONNECTING;
2282                         error = SYSCTL_OUT(req, &xt, sizeof xt);
2283                         if (error) {
2284                                 SCH_UNLOCK(sch);
2285                                 goto exit;
2286                         }
2287                         count++;
2288                 }
2289                 SCH_UNLOCK(sch);
2290         }
2291 exit:
2292         *pcbs_exported = count;
2293         return error;
2294 }