]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - sys/contrib/pf/net/pf_subr.c
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / sys / contrib / pf / net / pf_subr.c
1 /*-
2  * Copyright (c) 1982, 1986, 1988, 1990, 1993, 1995
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 4. Neither the name of the University nor the names of its contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  */
30
31 #include "opt_inet.h"
32 #include "opt_inet6.h"
33
34 #include <sys/cdefs.h>
35 __FBSDID("$FreeBSD$");
36
37 #include <sys/param.h>
38 #include <sys/kernel.h>
39 #include <sys/libkern.h>
40 #include <sys/mbuf.h>
41 #include <sys/md5.h>
42 #include <sys/time.h>
43 #include <sys/random.h>
44 #include <sys/socket.h>
45 #include <sys/socketvar.h>
46 #include <sys/systm.h>
47 #include <sys/time.h>
48
49 #include <net/if.h>
50 #include <net/if_types.h>
51 #include <net/bpf.h>
52 #include <net/route.h>
53
54 #include <netinet/in.h>
55 #include <netinet/in_var.h>
56 #include <netinet/in_systm.h>
57 #include <netinet/ip.h>
58 #include <netinet/ip_var.h>
59 #include <netinet/tcp.h>
60 #include <netinet/tcp_seq.h>
61 #include <netinet/udp.h>
62 #include <netinet/ip_icmp.h>
63 #include <netinet/in_pcb.h>
64 #include <netinet/tcp_timer.h>
65 #include <netinet/tcp_var.h>
66 #include <netinet/if_ether.h>
67 #include <net/pfvar.h>
68
69 /*
70  * Following is where TCP initial sequence number generation occurs.
71  *
72  * There are two places where we must use initial sequence numbers:
73  * 1.  In SYN-ACK packets.
74  * 2.  In SYN packets.
75  *
76  * All ISNs for SYN-ACK packets are generated by the syncache.  See
77  * tcp_syncache.c for details.
78  *
79  * The ISNs in SYN packets must be monotonic; TIME_WAIT recycling
80  * depends on this property.  In addition, these ISNs should be
81  * unguessable so as to prevent connection hijacking.  To satisfy
82  * the requirements of this situation, the algorithm outlined in
83  * RFC 1948 is used, with only small modifications.
84  *
85  * Implementation details:
86  *
87  * Time is based off the system timer, and is corrected so that it
88  * increases by one megabyte per second.  This allows for proper
89  * recycling on high speed LANs while still leaving over an hour
90  * before rollover.
91  *
92  * As reading the *exact* system time is too expensive to be done
93  * whenever setting up a TCP connection, we increment the time
94  * offset in two ways.  First, a small random positive increment
95  * is added to isn_offset for each connection that is set up.
96  * Second, the function tcp_isn_tick fires once per clock tick
97  * and increments isn_offset as necessary so that sequence numbers
98  * are incremented at approximately ISN_BYTES_PER_SECOND.  The
99  * random positive increments serve only to ensure that the same
100  * exact sequence number is never sent out twice (as could otherwise
101  * happen when a port is recycled in less than the system tick
102  * interval.)
103  *
104  * net.inet.tcp.isn_reseed_interval controls the number of seconds
105  * between seeding of isn_secret.  This is normally set to zero,
106  * as reseeding should not be necessary.
107  *
108  * Locking of the global variables isn_secret, isn_last_reseed, isn_offset,
109  * isn_offset_old, and isn_ctx is performed using the TCP pcbinfo lock.  In
110  * general, this means holding an exclusive (write) lock.
111  */
112
113 #define ISN_BYTES_PER_SECOND 1048576
114 #define ISN_STATIC_INCREMENT 4096
115 #define ISN_RANDOM_INCREMENT (4096 - 1)
116
117 static u_char pf_isn_secret[32];
118 static int pf_isn_last_reseed;
119 static u_int32_t pf_isn_offset;
120
121 u_int32_t
122 pf_new_isn(struct pf_state *s)
123 {
124         MD5_CTX isn_ctx;
125         u_int32_t md5_buffer[4];
126         u_int32_t new_isn;
127         struct pf_state_host *src, *dst;
128
129         /* Seed if this is the first use, reseed if requested. */
130         if (pf_isn_last_reseed == 0) {
131                 read_random(&pf_isn_secret, sizeof(pf_isn_secret));
132                 pf_isn_last_reseed = ticks;
133         }
134
135         if (s->direction == PF_IN) {
136                 src = &s->ext;
137                 dst = &s->gwy;
138         } else {
139                 src = &s->lan;
140                 dst = &s->ext;
141         }
142
143         /* Compute the md5 hash and return the ISN. */
144         MD5Init(&isn_ctx);
145         MD5Update(&isn_ctx, (u_char *) &dst->port, sizeof(u_short));
146         MD5Update(&isn_ctx, (u_char *) &src->port, sizeof(u_short));
147 #ifdef INET6
148         if (s->af == AF_INET6) {
149                 MD5Update(&isn_ctx, (u_char *) &dst->addr,
150                           sizeof(struct in6_addr));
151                 MD5Update(&isn_ctx, (u_char *) &src->addr,
152                           sizeof(struct in6_addr));
153         } else
154 #endif
155         {
156                 MD5Update(&isn_ctx, (u_char *) &dst->addr,
157                           sizeof(struct in_addr));
158                 MD5Update(&isn_ctx, (u_char *) &src->addr,
159                           sizeof(struct in_addr));
160         }
161         MD5Update(&isn_ctx, (u_char *) &pf_isn_secret, sizeof(pf_isn_secret));
162         MD5Final((u_char *) &md5_buffer, &isn_ctx);
163         new_isn = (tcp_seq) md5_buffer[0];
164         pf_isn_offset += ISN_STATIC_INCREMENT +
165                 (arc4random() & ISN_RANDOM_INCREMENT);
166         new_isn += pf_isn_offset;
167         return (new_isn);
168 }