1c398230bSWarner Losh /*-
24d846d26SWarner Losh * SPDX-License-Identifier: BSD-2-Clause
3fe267a55SPedro F. Giffuni *
4361021ccSMike Silbersack * Copyright (c) 2008 Michael J. Silbersack.
564dddc18SKris Kennaway * All rights reserved.
664dddc18SKris Kennaway *
764dddc18SKris Kennaway * Redistribution and use in source and binary forms, with or without
864dddc18SKris Kennaway * modification, are permitted provided that the following conditions
964dddc18SKris Kennaway * are met:
1064dddc18SKris Kennaway * 1. Redistributions of source code must retain the above copyright
11361021ccSMike Silbersack * notice unmodified, this list of conditions, and the following
12361021ccSMike Silbersack * disclaimer.
1364dddc18SKris Kennaway * 2. Redistributions in binary form must reproduce the above copyright
1464dddc18SKris Kennaway * notice, this list of conditions and the following disclaimer in the
1564dddc18SKris Kennaway * documentation and/or other materials provided with the distribution.
1664dddc18SKris Kennaway *
1764dddc18SKris Kennaway * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
1864dddc18SKris Kennaway * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
1964dddc18SKris Kennaway * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
2064dddc18SKris Kennaway * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
2164dddc18SKris Kennaway * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
2264dddc18SKris Kennaway * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2364dddc18SKris Kennaway * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2464dddc18SKris Kennaway * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2564dddc18SKris Kennaway * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
2664dddc18SKris Kennaway * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2764dddc18SKris Kennaway */
2864dddc18SKris Kennaway
294b421e2dSMike Silbersack #include <sys/cdefs.h>
30361021ccSMike Silbersack /*
31361021ccSMike Silbersack * IP ID generation is a fascinating topic.
32361021ccSMike Silbersack *
33361021ccSMike Silbersack * In order to avoid ID collisions during packet reassembly, common sense
34361021ccSMike Silbersack * dictates that the period between reuse of IDs be as large as possible.
35361021ccSMike Silbersack * This leads to the classic implementation of a system-wide counter, thereby
36361021ccSMike Silbersack * ensuring that IDs repeat only once every 2^16 packets.
37361021ccSMike Silbersack *
38361021ccSMike Silbersack * Subsequent security researchers have pointed out that using a global
39361021ccSMike Silbersack * counter makes ID values predictable. This predictability allows traffic
40361021ccSMike Silbersack * analysis, idle scanning, and even packet injection in specific cases.
41361021ccSMike Silbersack * These results suggest that IP IDs should be as random as possible.
42361021ccSMike Silbersack *
43361021ccSMike Silbersack * The "searchable queues" algorithm used in this IP ID implementation was
44361021ccSMike Silbersack * proposed by Amit Klein. It is a compromise between the above two
45361021ccSMike Silbersack * viewpoints that has provable behavior that can be tuned to the user's
46361021ccSMike Silbersack * requirements.
47361021ccSMike Silbersack *
48361021ccSMike Silbersack * The basic concept is that we supplement a standard random number generator
49361021ccSMike Silbersack * with a queue of the last L IDs that we have handed out to ensure that all
50361021ccSMike Silbersack * IDs have a period of at least L.
51361021ccSMike Silbersack *
52361021ccSMike Silbersack * To efficiently implement this idea, we keep two data structures: a
53361021ccSMike Silbersack * circular array of IDs of size L and a bitstring of 65536 bits.
54361021ccSMike Silbersack *
55361021ccSMike Silbersack * To start, we ask the RNG for a new ID. A quick index into the bitstring
56361021ccSMike Silbersack * is used to determine if this is a recently used value. The process is
57361021ccSMike Silbersack * repeated until a value is returned that is not in the bitstring.
58361021ccSMike Silbersack *
59361021ccSMike Silbersack * Having found a usable ID, we remove the ID stored at the current position
60361021ccSMike Silbersack * in the queue from the bitstring and replace it with our new ID. Our new
61361021ccSMike Silbersack * ID is then added to the bitstring and the queue pointer is incremented.
62361021ccSMike Silbersack *
63361021ccSMike Silbersack * The lower limit of 512 was chosen because there doesn't seem to be much
64361021ccSMike Silbersack * point to having a smaller value. The upper limit of 32768 was chosen for
65361021ccSMike Silbersack * two reasons. First, every step above 32768 decreases the entropy. Taken
66361021ccSMike Silbersack * to an extreme, 65533 would offer 1 bit of entropy. Second, the number of
67361021ccSMike Silbersack * attempts it takes the algorithm to find an unused ID drastically
68361021ccSMike Silbersack * increases, killing performance. The default value of 8192 was chosen
69361021ccSMike Silbersack * because it provides a good tradeoff between randomness and non-repetition.
70361021ccSMike Silbersack *
71361021ccSMike Silbersack * With L=8192, the queue will use 16K of memory. The bitstring always
72361021ccSMike Silbersack * uses 8K of memory. No memory is allocated until the use of random ids is
73361021ccSMike Silbersack * enabled.
74361021ccSMike Silbersack */
75361021ccSMike Silbersack
7664dddc18SKris Kennaway #include <sys/param.h>
776d947416SGleb Smirnoff #include <sys/systm.h>
786d947416SGleb Smirnoff #include <sys/counter.h>
791d549750SBjoern A. Zeeb #include <sys/kernel.h>
806d947416SGleb Smirnoff #include <sys/malloc.h>
81361021ccSMike Silbersack #include <sys/lock.h>
82361021ccSMike Silbersack #include <sys/mutex.h>
8364dddc18SKris Kennaway #include <sys/random.h>
846d947416SGleb Smirnoff #include <sys/smp.h>
85361021ccSMike Silbersack #include <sys/sysctl.h>
86513635bfSGleb Smirnoff #include <sys/bitstring.h>
87513635bfSGleb Smirnoff
88513635bfSGleb Smirnoff #include <net/vnet.h>
89513635bfSGleb Smirnoff
90361021ccSMike Silbersack #include <netinet/in.h>
916d947416SGleb Smirnoff #include <netinet/ip.h>
92361021ccSMike Silbersack #include <netinet/ip_var.h>
9364dddc18SKris Kennaway
946d947416SGleb Smirnoff /*
956d947416SGleb Smirnoff * By default we generate IP ID only for non-atomic datagrams, as
966d947416SGleb Smirnoff * suggested by RFC6864. We use per-CPU counter for that, or if
976d947416SGleb Smirnoff * user wants to, we can turn on random ID generation.
986d947416SGleb Smirnoff */
995f901c92SAndrew Turner VNET_DEFINE_STATIC(int, ip_rfc6864) = 1;
1006d947416SGleb Smirnoff #define V_ip_rfc6864 VNET(ip_rfc6864)
101*70703aa9Sacazuc
102*70703aa9Sacazuc VNET_DEFINE(int, ip_random_id) = 0;
10364dddc18SKris Kennaway
1046d947416SGleb Smirnoff /*
1056d947416SGleb Smirnoff * Random ID state engine.
1066d947416SGleb Smirnoff */
1076d947416SGleb Smirnoff static MALLOC_DEFINE(M_IPID, "ipid", "randomized ip id state");
1085f901c92SAndrew Turner VNET_DEFINE_STATIC(uint16_t *, id_array);
1095f901c92SAndrew Turner VNET_DEFINE_STATIC(bitstr_t *, id_bits);
1105f901c92SAndrew Turner VNET_DEFINE_STATIC(int, array_ptr);
1115f901c92SAndrew Turner VNET_DEFINE_STATIC(int, array_size);
1125f901c92SAndrew Turner VNET_DEFINE_STATIC(int, random_id_collisions);
1135f901c92SAndrew Turner VNET_DEFINE_STATIC(int, random_id_total);
1145f901c92SAndrew Turner VNET_DEFINE_STATIC(struct mtx, ip_id_mtx);
115513635bfSGleb Smirnoff #define V_id_array VNET(id_array)
116513635bfSGleb Smirnoff #define V_id_bits VNET(id_bits)
117513635bfSGleb Smirnoff #define V_array_ptr VNET(array_ptr)
118513635bfSGleb Smirnoff #define V_array_size VNET(array_size)
119513635bfSGleb Smirnoff #define V_random_id_collisions VNET(random_id_collisions)
120513635bfSGleb Smirnoff #define V_random_id_total VNET(random_id_total)
121513635bfSGleb Smirnoff #define V_ip_id_mtx VNET(ip_id_mtx)
12264dddc18SKris Kennaway
1236d947416SGleb Smirnoff /*
1246d947416SGleb Smirnoff * Non-random ID state engine is simply a per-cpu counter.
1256d947416SGleb Smirnoff */
1265f901c92SAndrew Turner VNET_DEFINE_STATIC(counter_u64_t, ip_id);
1276d947416SGleb Smirnoff #define V_ip_id VNET(ip_id)
1286d947416SGleb Smirnoff
129*70703aa9Sacazuc static int sysctl_ip_random_id(SYSCTL_HANDLER_ARGS);
130361021ccSMike Silbersack static int sysctl_ip_id_change(SYSCTL_HANDLER_ARGS);
1316d947416SGleb Smirnoff static void ip_initid(int);
1326d947416SGleb Smirnoff static uint16_t ip_randomid(void);
133513635bfSGleb Smirnoff static void ipid_sysinit(void);
134513635bfSGleb Smirnoff static void ipid_sysuninit(void);
13564dddc18SKris Kennaway
1364b79449eSBjoern A. Zeeb SYSCTL_DECL(_net_inet_ip);
1376d947416SGleb Smirnoff SYSCTL_PROC(_net_inet_ip, OID_AUTO, random_id,
1387029da5cSPawel Biernacki CTLTYPE_INT | CTLFLAG_VNET | CTLFLAG_RW | CTLFLAG_MPSAFE,
139*70703aa9Sacazuc &VNET_NAME(ip_random_id), 0, sysctl_ip_random_id, "IU",
1406d947416SGleb Smirnoff "Assign random ip_id values");
1416d947416SGleb Smirnoff SYSCTL_INT(_net_inet_ip, OID_AUTO, rfc6864, CTLFLAG_VNET | CTLFLAG_RW,
1426d947416SGleb Smirnoff &VNET_NAME(ip_rfc6864), 0,
1436d947416SGleb Smirnoff "Use constant IP ID for atomic datagrams");
144513635bfSGleb Smirnoff SYSCTL_PROC(_net_inet_ip, OID_AUTO, random_id_period,
1457029da5cSPawel Biernacki CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_VNET | CTLFLAG_MPSAFE,
146513635bfSGleb Smirnoff &VNET_NAME(array_size), 0, sysctl_ip_id_change, "IU", "IP ID Array size");
147513635bfSGleb Smirnoff SYSCTL_INT(_net_inet_ip, OID_AUTO, random_id_collisions,
148513635bfSGleb Smirnoff CTLFLAG_RD | CTLFLAG_VNET,
149513635bfSGleb Smirnoff &VNET_NAME(random_id_collisions), 0, "Count of IP ID collisions");
150513635bfSGleb Smirnoff SYSCTL_INT(_net_inet_ip, OID_AUTO, random_id_total, CTLFLAG_RD | CTLFLAG_VNET,
151513635bfSGleb Smirnoff &VNET_NAME(random_id_total), 0, "Count of IP IDs created");
152361021ccSMike Silbersack
153361021ccSMike Silbersack static int
sysctl_ip_random_id(SYSCTL_HANDLER_ARGS)154*70703aa9Sacazuc sysctl_ip_random_id(SYSCTL_HANDLER_ARGS)
1556d947416SGleb Smirnoff {
1566d947416SGleb Smirnoff int error, new;
1576d947416SGleb Smirnoff
158*70703aa9Sacazuc new = V_ip_random_id;
1596d947416SGleb Smirnoff error = sysctl_handle_int(oidp, &new, 0, req);
1606d947416SGleb Smirnoff if (error || req->newptr == NULL)
1616d947416SGleb Smirnoff return (error);
1626d947416SGleb Smirnoff if (new != 0 && new != 1)
1636d947416SGleb Smirnoff return (EINVAL);
164*70703aa9Sacazuc if (new == V_ip_random_id)
1656d947416SGleb Smirnoff return (0);
166*70703aa9Sacazuc if (new == 1 && V_ip_random_id == 0)
1676d947416SGleb Smirnoff ip_initid(8192);
1686d947416SGleb Smirnoff /* We don't free memory when turning random ID off, due to race. */
169*70703aa9Sacazuc V_ip_random_id = new;
1706d947416SGleb Smirnoff return (0);
1716d947416SGleb Smirnoff }
1726d947416SGleb Smirnoff
1736d947416SGleb Smirnoff static int
sysctl_ip_id_change(SYSCTL_HANDLER_ARGS)174361021ccSMike Silbersack sysctl_ip_id_change(SYSCTL_HANDLER_ARGS)
17564dddc18SKris Kennaway {
176361021ccSMike Silbersack int error, new;
17764dddc18SKris Kennaway
178513635bfSGleb Smirnoff new = V_array_size;
179361021ccSMike Silbersack error = sysctl_handle_int(oidp, &new, 0, req);
180361021ccSMike Silbersack if (error == 0 && req->newptr) {
1811f08c947SGleb Smirnoff if (new >= 512 && new <= 32768)
1821f08c947SGleb Smirnoff ip_initid(new);
1831f08c947SGleb Smirnoff else
184361021ccSMike Silbersack error = EINVAL;
18564dddc18SKris Kennaway }
186361021ccSMike Silbersack return (error);
18764dddc18SKris Kennaway }
18864dddc18SKris Kennaway
18964dddc18SKris Kennaway static void
ip_initid(int new_size)1901f08c947SGleb Smirnoff ip_initid(int new_size)
19164dddc18SKris Kennaway {
1921f08c947SGleb Smirnoff uint16_t *new_array;
1931f08c947SGleb Smirnoff bitstr_t *new_bits;
19464dddc18SKris Kennaway
1951f08c947SGleb Smirnoff new_array = malloc(new_size * sizeof(uint16_t), M_IPID,
1961f08c947SGleb Smirnoff M_WAITOK | M_ZERO);
1971f08c947SGleb Smirnoff new_bits = malloc(bitstr_size(65536), M_IPID, M_WAITOK | M_ZERO);
19864dddc18SKris Kennaway
199513635bfSGleb Smirnoff mtx_lock(&V_ip_id_mtx);
200513635bfSGleb Smirnoff if (V_id_array != NULL) {
201513635bfSGleb Smirnoff free(V_id_array, M_IPID);
202513635bfSGleb Smirnoff free(V_id_bits, M_IPID);
2031f08c947SGleb Smirnoff }
204513635bfSGleb Smirnoff V_id_array = new_array;
205513635bfSGleb Smirnoff V_id_bits = new_bits;
206513635bfSGleb Smirnoff V_array_size = new_size;
207513635bfSGleb Smirnoff V_array_ptr = 0;
208513635bfSGleb Smirnoff V_random_id_collisions = 0;
209513635bfSGleb Smirnoff V_random_id_total = 0;
210513635bfSGleb Smirnoff mtx_unlock(&V_ip_id_mtx);
211361021ccSMike Silbersack }
21264dddc18SKris Kennaway
2136d947416SGleb Smirnoff static uint16_t
ip_randomid(void)2141f08c947SGleb Smirnoff ip_randomid(void)
2151f08c947SGleb Smirnoff {
2161f08c947SGleb Smirnoff uint16_t new_id;
2171f08c947SGleb Smirnoff
218513635bfSGleb Smirnoff mtx_lock(&V_ip_id_mtx);
219361021ccSMike Silbersack /*
220361021ccSMike Silbersack * To avoid a conflict with the zeros that the array is initially
221361021ccSMike Silbersack * filled with, we never hand out an id of zero.
222361021ccSMike Silbersack */
223361021ccSMike Silbersack new_id = 0;
224361021ccSMike Silbersack do {
225361021ccSMike Silbersack if (new_id != 0)
226513635bfSGleb Smirnoff V_random_id_collisions++;
227361021ccSMike Silbersack arc4rand(&new_id, sizeof(new_id), 0);
228513635bfSGleb Smirnoff } while (bit_test(V_id_bits, new_id) || new_id == 0);
229513635bfSGleb Smirnoff bit_clear(V_id_bits, V_id_array[V_array_ptr]);
230513635bfSGleb Smirnoff bit_set(V_id_bits, new_id);
231513635bfSGleb Smirnoff V_id_array[V_array_ptr] = new_id;
232513635bfSGleb Smirnoff V_array_ptr++;
233513635bfSGleb Smirnoff if (V_array_ptr == V_array_size)
234513635bfSGleb Smirnoff V_array_ptr = 0;
235513635bfSGleb Smirnoff V_random_id_total++;
236513635bfSGleb Smirnoff mtx_unlock(&V_ip_id_mtx);
237361021ccSMike Silbersack return (new_id);
23864dddc18SKris Kennaway }
2391f08c947SGleb Smirnoff
2406d947416SGleb Smirnoff void
ip_fillid(struct ip * ip,bool do_randomid)241*70703aa9Sacazuc ip_fillid(struct ip *ip, bool do_randomid)
2426d947416SGleb Smirnoff {
2436d947416SGleb Smirnoff
2446d947416SGleb Smirnoff /*
2456d947416SGleb Smirnoff * Per RFC6864 Section 4
2466d947416SGleb Smirnoff *
2476d947416SGleb Smirnoff * o Atomic datagrams: (DF==1) && (MF==0) && (frag_offset==0)
2486d947416SGleb Smirnoff * o Non-atomic datagrams: (DF==0) || (MF==1) || (frag_offset>0)
2496d947416SGleb Smirnoff */
2506d947416SGleb Smirnoff if (V_ip_rfc6864 && (ip->ip_off & htons(IP_DF)) == htons(IP_DF))
2516d947416SGleb Smirnoff ip->ip_id = 0;
252*70703aa9Sacazuc else if (do_randomid)
2536d947416SGleb Smirnoff ip->ip_id = ip_randomid();
2546d947416SGleb Smirnoff else {
2556d947416SGleb Smirnoff counter_u64_add(V_ip_id, 1);
2567a742e37SGleb Smirnoff /*
2577a742e37SGleb Smirnoff * There are two issues about this trick, to be kept in mind.
2587a742e37SGleb Smirnoff * 1) We can migrate between counter_u64_add() and next
2597a742e37SGleb Smirnoff * line, and grab counter from other CPU, resulting in too
2607a742e37SGleb Smirnoff * quick ID reuse. This is tolerable in our particular case,
2617a742e37SGleb Smirnoff * since probability of such event is much lower then reuse
2627a742e37SGleb Smirnoff * of ID due to legitimate overflow, that at modern Internet
2637a742e37SGleb Smirnoff * speeds happens all the time.
2647a742e37SGleb Smirnoff * 2) We are relying on the fact that counter(9) is based on
2657a742e37SGleb Smirnoff * UMA_ZONE_PCPU uma(9) zone. We also take only last
2667a742e37SGleb Smirnoff * sixteen bits of a counter, so we don't care about the
2677a742e37SGleb Smirnoff * fact that machines with 32-bit word update their counters
2687a742e37SGleb Smirnoff * not atomically.
2697a742e37SGleb Smirnoff */
2706d947416SGleb Smirnoff ip->ip_id = htons((*(uint64_t *)zpcpu_get(V_ip_id)) & 0xffff);
2716d947416SGleb Smirnoff }
2726d947416SGleb Smirnoff }
2736d947416SGleb Smirnoff
2741f08c947SGleb Smirnoff static void
ipid_sysinit(void)275513635bfSGleb Smirnoff ipid_sysinit(void)
2761f08c947SGleb Smirnoff {
27796c85efbSNathan Whitehorn int i;
2781f08c947SGleb Smirnoff
279513635bfSGleb Smirnoff mtx_init(&V_ip_id_mtx, "ip_id_mtx", NULL, MTX_DEF);
2806d947416SGleb Smirnoff V_ip_id = counter_u64_alloc(M_WAITOK);
28196c85efbSNathan Whitehorn
28296c85efbSNathan Whitehorn CPU_FOREACH(i)
2836d947416SGleb Smirnoff arc4rand(zpcpu_get_cpu(V_ip_id, i), sizeof(uint64_t), 0);
2841f08c947SGleb Smirnoff }
285513635bfSGleb Smirnoff VNET_SYSINIT(ip_id, SI_SUB_PROTO_DOMAIN, SI_ORDER_ANY, ipid_sysinit, NULL);
286513635bfSGleb Smirnoff
287513635bfSGleb Smirnoff static void
ipid_sysuninit(void)288513635bfSGleb Smirnoff ipid_sysuninit(void)
289513635bfSGleb Smirnoff {
290513635bfSGleb Smirnoff
2916d947416SGleb Smirnoff if (V_id_array != NULL) {
292513635bfSGleb Smirnoff free(V_id_array, M_IPID);
293513635bfSGleb Smirnoff free(V_id_bits, M_IPID);
294513635bfSGleb Smirnoff }
2956d947416SGleb Smirnoff counter_u64_free(V_ip_id);
296a6c96fc2SBjoern A. Zeeb mtx_destroy(&V_ip_id_mtx);
2976d947416SGleb Smirnoff }
29889856f7eSBjoern A. Zeeb VNET_SYSUNINIT(ip_id, SI_SUB_PROTO_DOMAIN, SI_ORDER_THIRD, ipid_sysuninit, NULL);
299