]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - sys/contrib/ipfilter/netinet/fil.c
MFC r342547:
[FreeBSD/stable/10.git] / sys / contrib / ipfilter / netinet / fil.c
1 /*      $FreeBSD$       */
2
3 /*
4  * Copyright (C) 2012 by Darren Reed.
5  *
6  * See the IPFILTER.LICENCE file for details on licencing.
7  *
8  * Copyright 2008 Sun Microsystems.
9  *
10  * $Id$
11  *
12  */
13 #if defined(KERNEL) || defined(_KERNEL)
14 # undef KERNEL
15 # undef _KERNEL
16 # define        KERNEL  1
17 # define        _KERNEL 1
18 #endif
19 #include <sys/errno.h>
20 #include <sys/types.h>
21 #include <sys/param.h>
22 #include <sys/time.h>
23 #if defined(_KERNEL) && defined(__FreeBSD_version) && \
24     (__FreeBSD_version >= 220000)
25 # if (__FreeBSD_version >= 400000)
26 #  if !defined(IPFILTER_LKM)
27 #   include "opt_inet6.h"
28 #  endif
29 #  if (__FreeBSD_version == 400019)
30 #   define CSUM_DELAY_DATA
31 #  endif
32 # endif
33 # include <sys/filio.h>
34 #else
35 # include <sys/ioctl.h>
36 #endif
37 #if (defined(__SVR4) || defined(__svr4__)) && defined(sun)
38 # include <sys/filio.h>
39 #endif
40 #if !defined(_AIX51)
41 # include <sys/fcntl.h>
42 #endif
43 #if defined(_KERNEL)
44 # include <sys/systm.h>
45 # include <sys/file.h>
46 #else
47 # include <stdio.h>
48 # include <string.h>
49 # include <stdlib.h>
50 # include <stddef.h>
51 # include <sys/file.h>
52 # define _KERNEL
53 # ifdef __OpenBSD__
54 struct file;
55 # endif
56 # include <sys/uio.h>
57 # undef _KERNEL
58 #endif
59 #if !defined(__SVR4) && !defined(__svr4__) && !defined(__hpux) && \
60     !defined(linux)
61 # include <sys/mbuf.h>
62 #else
63 # if !defined(linux)
64 #  include <sys/byteorder.h>
65 # endif
66 # if (SOLARIS2 < 5) && defined(sun)
67 #  include <sys/dditypes.h>
68 # endif
69 #endif
70 #ifdef __hpux
71 # define _NET_ROUTE_INCLUDED
72 #endif
73 #if !defined(linux)
74 # include <sys/protosw.h>
75 #endif
76 #include <sys/socket.h>
77 #include <net/if.h>
78 #ifdef sun
79 # include <net/af.h>
80 #endif
81 #include <netinet/in.h>
82 #include <netinet/in_systm.h>
83 #include <netinet/ip.h>
84 #if defined(__sgi) && defined(IFF_DRVRLOCK) /* IRIX 6 */
85 # include <sys/hashing.h>
86 # include <netinet/in_var.h>
87 #endif
88 #include <netinet/tcp.h>
89 #if (!defined(__sgi) && !defined(AIX)) || defined(_KERNEL)
90 # include <netinet/udp.h>
91 # include <netinet/ip_icmp.h>
92 #endif
93 #ifdef __hpux
94 # undef _NET_ROUTE_INCLUDED
95 #endif
96 #ifdef __osf__
97 # undef _RADIX_H_
98 #endif
99 #include "netinet/ip_compat.h"
100 #ifdef  USE_INET6
101 # include <netinet/icmp6.h>
102 # if !SOLARIS && defined(_KERNEL) && !defined(__osf__) && !defined(__hpux)
103 #  include <netinet6/in6_var.h>
104 # endif
105 #endif
106 #include "netinet/ip_fil.h"
107 #include "netinet/ip_nat.h"
108 #include "netinet/ip_frag.h"
109 #include "netinet/ip_state.h"
110 #include "netinet/ip_proxy.h"
111 #include "netinet/ip_auth.h"
112 #ifdef IPFILTER_SCAN
113 # include "netinet/ip_scan.h"
114 #endif
115 #include "netinet/ip_sync.h"
116 #include "netinet/ip_lookup.h"
117 #include "netinet/ip_pool.h"
118 #include "netinet/ip_htable.h"
119 #ifdef IPFILTER_COMPILED
120 # include "netinet/ip_rules.h"
121 #endif
122 #if defined(IPFILTER_BPF) && defined(_KERNEL)
123 # include <net/bpf.h>
124 #endif
125 #if defined(__FreeBSD_version) && (__FreeBSD_version >= 300000)
126 # include <sys/malloc.h>
127 #endif
128 #include "netinet/ipl.h"
129
130 #if defined(__NetBSD__) && (__NetBSD_Version__ >= 104230000)
131 # include <sys/callout.h>
132 extern struct callout ipf_slowtimer_ch;
133 #endif
134 #if defined(__OpenBSD__)
135 # include <sys/timeout.h>
136 extern struct timeout ipf_slowtimer_ch;
137 #endif
138 /* END OF INCLUDES */
139
140 #if !defined(lint)
141 static const char sccsid[] = "@(#)fil.c 1.36 6/5/96 (C) 1993-2000 Darren Reed";
142 static const char rcsid[] = "@(#)$FreeBSD$";
143 /* static const char rcsid[] = "@(#)$Id: fil.c,v 2.243.2.125 2007/10/10 09:27:20 darrenr Exp $"; */
144 #endif
145
146 #ifndef _KERNEL
147 # include "ipf.h"
148 # include "ipt.h"
149 extern  int     opts;
150 extern  int     blockreason;
151 #endif /* _KERNEL */
152
153 #define LBUMP(x)        softc->x++
154 #define LBUMPD(x, y)    do { softc->x.y++; DT(y); } while (0)
155
156 static  INLINE int      ipf_check_ipf __P((fr_info_t *, frentry_t *, int));
157 static  u_32_t          ipf_checkcipso __P((fr_info_t *, u_char *, int));
158 static  u_32_t          ipf_checkripso __P((u_char *));
159 static  u_32_t          ipf_decaps __P((fr_info_t *, u_32_t, int));
160 #ifdef IPFILTER_LOG
161 static  frentry_t       *ipf_dolog __P((fr_info_t *, u_32_t *));
162 #endif
163 static  int             ipf_flushlist __P((ipf_main_softc_t *, int *,
164                                            frentry_t **));
165 static  int             ipf_flush_groups __P((ipf_main_softc_t *, frgroup_t **,
166                                               int));
167 static  ipfunc_t        ipf_findfunc __P((ipfunc_t));
168 static  void            *ipf_findlookup __P((ipf_main_softc_t *, int,
169                                              frentry_t *,
170                                              i6addr_t *, i6addr_t *));
171 static  frentry_t       *ipf_firewall __P((fr_info_t *, u_32_t *));
172 static  int             ipf_fr_matcharray __P((fr_info_t *, int *));
173 static  int             ipf_frruleiter __P((ipf_main_softc_t *, void *, int,
174                                             void *));
175 static  void            ipf_funcfini __P((ipf_main_softc_t *, frentry_t *));
176 static  int             ipf_funcinit __P((ipf_main_softc_t *, frentry_t *));
177 static  int             ipf_geniter __P((ipf_main_softc_t *, ipftoken_t *,
178                                          ipfgeniter_t *));
179 static  void            ipf_getstat __P((ipf_main_softc_t *,
180                                          struct friostat *, int));
181 static  int             ipf_group_flush __P((ipf_main_softc_t *, frgroup_t *));
182 static  void            ipf_group_free __P((frgroup_t *));
183 static  int             ipf_grpmapfini __P((struct ipf_main_softc_s *,
184                                             frentry_t *));
185 static  int             ipf_grpmapinit __P((struct ipf_main_softc_s *,
186                                             frentry_t *));
187 static  frentry_t       *ipf_nextrule __P((ipf_main_softc_t *, int, int,
188                                            frentry_t *, int));
189 static  int             ipf_portcheck __P((frpcmp_t *, u_32_t));
190 static  INLINE int      ipf_pr_ah __P((fr_info_t *));
191 static  INLINE void     ipf_pr_esp __P((fr_info_t *));
192 static  INLINE void     ipf_pr_gre __P((fr_info_t *));
193 static  INLINE void     ipf_pr_udp __P((fr_info_t *));
194 static  INLINE void     ipf_pr_tcp __P((fr_info_t *));
195 static  INLINE void     ipf_pr_icmp __P((fr_info_t *));
196 static  INLINE void     ipf_pr_ipv4hdr __P((fr_info_t *));
197 static  INLINE void     ipf_pr_short __P((fr_info_t *, int));
198 static  INLINE int      ipf_pr_tcpcommon __P((fr_info_t *));
199 static  INLINE int      ipf_pr_udpcommon __P((fr_info_t *));
200 static  void            ipf_rule_delete __P((ipf_main_softc_t *, frentry_t *f,
201                                              int, int));
202 static  void            ipf_rule_expire_insert __P((ipf_main_softc_t *,
203                                                     frentry_t *, int));
204 static  int             ipf_synclist __P((ipf_main_softc_t *, frentry_t *,
205                                           void *));
206 static  void            ipf_token_flush __P((ipf_main_softc_t *));
207 static  void            ipf_token_unlink __P((ipf_main_softc_t *,
208                                               ipftoken_t *));
209 static  ipftuneable_t   *ipf_tune_findbyname __P((ipftuneable_t *,
210                                                   const char *));
211 static  ipftuneable_t   *ipf_tune_findbycookie __P((ipftuneable_t **, void *,
212                                                     void **));
213 static  int             ipf_updateipid __P((fr_info_t *));
214 static  int             ipf_settimeout __P((struct ipf_main_softc_s *,
215                                             struct ipftuneable *,
216                                             ipftuneval_t *));
217 #if !defined(_KERNEL) || (!defined(__NetBSD__) && !defined(__OpenBSD__) && \
218      !defined(__FreeBSD__)) || \
219     FREEBSD_LT_REV(501000) || NETBSD_LT_REV(105000000) || \
220     OPENBSD_LT_REV(200006)
221 static  int             ppsratecheck(struct timeval *, int *, int);
222 #endif
223
224
225 /*
226  * bit values for identifying presence of individual IP options
227  * All of these tables should be ordered by increasing key value on the left
228  * hand side to allow for binary searching of the array and include a trailer
229  * with a 0 for the bitmask for linear searches to easily find the end with.
230  */
231 static const    struct  optlist ipopts[20] = {
232         { IPOPT_NOP,    0x000001 },
233         { IPOPT_RR,     0x000002 },
234         { IPOPT_ZSU,    0x000004 },
235         { IPOPT_MTUP,   0x000008 },
236         { IPOPT_MTUR,   0x000010 },
237         { IPOPT_ENCODE, 0x000020 },
238         { IPOPT_TS,     0x000040 },
239         { IPOPT_TR,     0x000080 },
240         { IPOPT_SECURITY, 0x000100 },
241         { IPOPT_LSRR,   0x000200 },
242         { IPOPT_E_SEC,  0x000400 },
243         { IPOPT_CIPSO,  0x000800 },
244         { IPOPT_SATID,  0x001000 },
245         { IPOPT_SSRR,   0x002000 },
246         { IPOPT_ADDEXT, 0x004000 },
247         { IPOPT_VISA,   0x008000 },
248         { IPOPT_IMITD,  0x010000 },
249         { IPOPT_EIP,    0x020000 },
250         { IPOPT_FINN,   0x040000 },
251         { 0,            0x000000 }
252 };
253
254 #ifdef USE_INET6
255 static const struct optlist ip6exthdr[] = {
256         { IPPROTO_HOPOPTS,              0x000001 },
257         { IPPROTO_IPV6,                 0x000002 },
258         { IPPROTO_ROUTING,              0x000004 },
259         { IPPROTO_FRAGMENT,             0x000008 },
260         { IPPROTO_ESP,                  0x000010 },
261         { IPPROTO_AH,                   0x000020 },
262         { IPPROTO_NONE,                 0x000040 },
263         { IPPROTO_DSTOPTS,              0x000080 },
264         { IPPROTO_MOBILITY,             0x000100 },
265         { 0,                            0 }
266 };
267 #endif
268
269 /*
270  * bit values for identifying presence of individual IP security options
271  */
272 static const    struct  optlist secopt[8] = {
273         { IPSO_CLASS_RES4,      0x01 },
274         { IPSO_CLASS_TOPS,      0x02 },
275         { IPSO_CLASS_SECR,      0x04 },
276         { IPSO_CLASS_RES3,      0x08 },
277         { IPSO_CLASS_CONF,      0x10 },
278         { IPSO_CLASS_UNCL,      0x20 },
279         { IPSO_CLASS_RES2,      0x40 },
280         { IPSO_CLASS_RES1,      0x80 }
281 };
282
283 char    ipfilter_version[] = IPL_VERSION;
284
285 int     ipf_features = 0
286 #ifdef  IPFILTER_LKM
287                 | IPF_FEAT_LKM
288 #endif
289 #ifdef  IPFILTER_LOG
290                 | IPF_FEAT_LOG
291 #endif
292                 | IPF_FEAT_LOOKUP
293 #ifdef  IPFILTER_BPF
294                 | IPF_FEAT_BPF
295 #endif
296 #ifdef  IPFILTER_COMPILED
297                 | IPF_FEAT_COMPILED
298 #endif
299 #ifdef  IPFILTER_CKSUM
300                 | IPF_FEAT_CKSUM
301 #endif
302                 | IPF_FEAT_SYNC
303 #ifdef  IPFILTER_SCAN
304                 | IPF_FEAT_SCAN
305 #endif
306 #ifdef  USE_INET6
307                 | IPF_FEAT_IPV6
308 #endif
309         ;
310
311
312 /*
313  * Table of functions available for use with call rules.
314  */
315 static ipfunc_resolve_t ipf_availfuncs[] = {
316         { "srcgrpmap", ipf_srcgrpmap, ipf_grpmapinit, ipf_grpmapfini },
317         { "dstgrpmap", ipf_dstgrpmap, ipf_grpmapinit, ipf_grpmapfini },
318         { "",         NULL,           NULL,           NULL }
319 };
320
321 static ipftuneable_t ipf_main_tuneables[] = {
322         { { (void *)offsetof(struct ipf_main_softc_s, ipf_flags) },
323                 "ipf_flags",            0,      0xffffffff,
324                 stsizeof(ipf_main_softc_t, ipf_flags),
325                 0,                      NULL,   NULL },
326         { { (void *)offsetof(struct ipf_main_softc_s, ipf_active) },
327                 "active",               0,      0,
328                 stsizeof(ipf_main_softc_t, ipf_active),
329                 IPFT_RDONLY,            NULL,   NULL },
330         { { (void *)offsetof(ipf_main_softc_t, ipf_control_forwarding) },
331                 "control_forwarding",   0, 1,
332                 stsizeof(ipf_main_softc_t, ipf_control_forwarding),
333                 0,                      NULL,   NULL },
334         { { (void *)offsetof(ipf_main_softc_t, ipf_update_ipid) },
335                 "update_ipid",          0,      1,
336                 stsizeof(ipf_main_softc_t, ipf_update_ipid),
337                 0,                      NULL,   NULL },
338         { { (void *)offsetof(ipf_main_softc_t, ipf_chksrc) },
339                 "chksrc",               0,      1,
340                 stsizeof(ipf_main_softc_t, ipf_chksrc),
341                 0,                      NULL,   NULL },
342         { { (void *)offsetof(ipf_main_softc_t, ipf_minttl) },
343                 "min_ttl",              0,      1,
344                 stsizeof(ipf_main_softc_t, ipf_minttl),
345                 0,                      NULL,   NULL },
346         { { (void *)offsetof(ipf_main_softc_t, ipf_icmpminfragmtu) },
347                 "icmp_minfragmtu",      0,      1,
348                 stsizeof(ipf_main_softc_t, ipf_icmpminfragmtu),
349                 0,                      NULL,   NULL },
350         { { (void *)offsetof(ipf_main_softc_t, ipf_pass) },
351                 "default_pass",         0,      0xffffffff,
352                 stsizeof(ipf_main_softc_t, ipf_pass),
353                 0,                      NULL,   NULL },
354         { { (void *)offsetof(ipf_main_softc_t, ipf_tcpidletimeout) },
355                 "tcp_idle_timeout",     1,      0x7fffffff,
356                 stsizeof(ipf_main_softc_t, ipf_tcpidletimeout),
357                 0,                      NULL,   ipf_settimeout },
358         { { (void *)offsetof(ipf_main_softc_t, ipf_tcpclosewait) },
359                 "tcp_close_wait",       1,      0x7fffffff,
360                 stsizeof(ipf_main_softc_t, ipf_tcpclosewait),
361                 0,                      NULL,   ipf_settimeout },
362         { { (void *)offsetof(ipf_main_softc_t, ipf_tcplastack) },
363                 "tcp_last_ack",         1,      0x7fffffff,
364                 stsizeof(ipf_main_softc_t, ipf_tcplastack),
365                 0,                      NULL,   ipf_settimeout },
366         { { (void *)offsetof(ipf_main_softc_t, ipf_tcptimeout) },
367                 "tcp_timeout",          1,      0x7fffffff,
368                 stsizeof(ipf_main_softc_t, ipf_tcptimeout),
369                 0,                      NULL,   ipf_settimeout },
370         { { (void *)offsetof(ipf_main_softc_t, ipf_tcpsynsent) },
371                 "tcp_syn_sent",         1,      0x7fffffff,
372                 stsizeof(ipf_main_softc_t, ipf_tcpsynsent),
373                 0,                      NULL,   ipf_settimeout },
374         { { (void *)offsetof(ipf_main_softc_t, ipf_tcpsynrecv) },
375                 "tcp_syn_received",     1,      0x7fffffff,
376                 stsizeof(ipf_main_softc_t, ipf_tcpsynrecv),
377                 0,                      NULL,   ipf_settimeout },
378         { { (void *)offsetof(ipf_main_softc_t, ipf_tcpclosed) },
379                 "tcp_closed",           1,      0x7fffffff,
380                 stsizeof(ipf_main_softc_t, ipf_tcpclosed),
381                 0,                      NULL,   ipf_settimeout },
382         { { (void *)offsetof(ipf_main_softc_t, ipf_tcphalfclosed) },
383                 "tcp_half_closed",      1,      0x7fffffff,
384                 stsizeof(ipf_main_softc_t, ipf_tcphalfclosed),
385                 0,                      NULL,   ipf_settimeout },
386         { { (void *)offsetof(ipf_main_softc_t, ipf_tcptimewait) },
387                 "tcp_time_wait",        1,      0x7fffffff,
388                 stsizeof(ipf_main_softc_t, ipf_tcptimewait),
389                 0,                      NULL,   ipf_settimeout },
390         { { (void *)offsetof(ipf_main_softc_t, ipf_udptimeout) },
391                 "udp_timeout",          1,      0x7fffffff,
392                 stsizeof(ipf_main_softc_t, ipf_udptimeout),
393                 0,                      NULL,   ipf_settimeout },
394         { { (void *)offsetof(ipf_main_softc_t, ipf_udpacktimeout) },
395                 "udp_ack_timeout",      1,      0x7fffffff,
396                 stsizeof(ipf_main_softc_t, ipf_udpacktimeout),
397                 0,                      NULL,   ipf_settimeout },
398         { { (void *)offsetof(ipf_main_softc_t, ipf_icmptimeout) },
399                 "icmp_timeout",         1,      0x7fffffff,
400                 stsizeof(ipf_main_softc_t, ipf_icmptimeout),
401                 0,                      NULL,   ipf_settimeout },
402         { { (void *)offsetof(ipf_main_softc_t, ipf_icmpacktimeout) },
403                 "icmp_ack_timeout",     1,      0x7fffffff,
404                 stsizeof(ipf_main_softc_t, ipf_icmpacktimeout),
405                 0,                      NULL,   ipf_settimeout },
406         { { (void *)offsetof(ipf_main_softc_t, ipf_iptimeout) },
407                 "ip_timeout",           1,      0x7fffffff,
408                 stsizeof(ipf_main_softc_t, ipf_iptimeout),
409                 0,                      NULL,   ipf_settimeout },
410 #if defined(INSTANCES) && defined(_KERNEL)
411         { { (void *)offsetof(ipf_main_softc_t, ipf_get_loopback) },
412                 "intercept_loopback",   0,      1,
413                 stsizeof(ipf_main_softc_t, ipf_get_loopback),
414                 0,                      NULL,   ipf_set_loopback },
415 #endif
416         { { 0 },
417                 NULL,                   0,      0,
418                 0,
419                 0,                      NULL,   NULL }
420 };
421
422
423 /*
424  * The next section of code is a a collection of small routines that set
425  * fields in the fr_info_t structure passed based on properties of the
426  * current packet.  There are different routines for the same protocol
427  * for each of IPv4 and IPv6.  Adding a new protocol, for which there
428  * will "special" inspection for setup, is now more easily done by adding
429  * a new routine and expanding the ipf_pr_ipinit*() function rather than by
430  * adding more code to a growing switch statement.
431  */
432 #ifdef USE_INET6
433 static  INLINE int      ipf_pr_ah6 __P((fr_info_t *));
434 static  INLINE void     ipf_pr_esp6 __P((fr_info_t *));
435 static  INLINE void     ipf_pr_gre6 __P((fr_info_t *));
436 static  INLINE void     ipf_pr_udp6 __P((fr_info_t *));
437 static  INLINE void     ipf_pr_tcp6 __P((fr_info_t *));
438 static  INLINE void     ipf_pr_icmp6 __P((fr_info_t *));
439 static  INLINE void     ipf_pr_ipv6hdr __P((fr_info_t *));
440 static  INLINE void     ipf_pr_short6 __P((fr_info_t *, int));
441 static  INLINE int      ipf_pr_hopopts6 __P((fr_info_t *));
442 static  INLINE int      ipf_pr_mobility6 __P((fr_info_t *));
443 static  INLINE int      ipf_pr_routing6 __P((fr_info_t *));
444 static  INLINE int      ipf_pr_dstopts6 __P((fr_info_t *));
445 static  INLINE int      ipf_pr_fragment6 __P((fr_info_t *));
446 static  INLINE struct ip6_ext *ipf_pr_ipv6exthdr __P((fr_info_t *, int, int));
447
448
449 /* ------------------------------------------------------------------------ */
450 /* Function:    ipf_pr_short6                                               */
451 /* Returns:     void                                                        */
452 /* Parameters:  fin(I)  - pointer to packet information                     */
453 /*              xmin(I) - minimum header size                               */
454 /*                                                                          */
455 /* IPv6 Only                                                                */
456 /* This is function enforces the 'is a packet too short to be legit' rule   */
457 /* for IPv6 and marks the packet with FI_SHORT if so.  See function comment */
458 /* for ipf_pr_short() for more details.                                     */
459 /* ------------------------------------------------------------------------ */
460 static INLINE void
461 ipf_pr_short6(fin, xmin)
462         fr_info_t *fin;
463         int xmin;
464 {
465
466         if (fin->fin_dlen < xmin)
467                 fin->fin_flx |= FI_SHORT;
468 }
469
470
471 /* ------------------------------------------------------------------------ */
472 /* Function:    ipf_pr_ipv6hdr                                              */
473 /* Returns:     void                                                        */
474 /* Parameters:  fin(I) - pointer to packet information                      */
475 /*                                                                          */
476 /* IPv6 Only                                                                */
477 /* Copy values from the IPv6 header into the fr_info_t struct and call the  */
478 /* per-protocol analyzer if it exists.  In validating the packet, a protocol*/
479 /* analyzer may pullup or free the packet itself so we need to be vigiliant */
480 /* of that possibility arising.                                             */
481 /* ------------------------------------------------------------------------ */
482 static INLINE void
483 ipf_pr_ipv6hdr(fin)
484         fr_info_t *fin;
485 {
486         ip6_t *ip6 = (ip6_t *)fin->fin_ip;
487         int p, go = 1, i, hdrcount;
488         fr_ip_t *fi = &fin->fin_fi;
489
490         fin->fin_off = 0;
491
492         fi->fi_tos = 0;
493         fi->fi_optmsk = 0;
494         fi->fi_secmsk = 0;
495         fi->fi_auth = 0;
496
497         p = ip6->ip6_nxt;
498         fin->fin_crc = p;
499         fi->fi_ttl = ip6->ip6_hlim;
500         fi->fi_src.in6 = ip6->ip6_src;
501         fin->fin_crc += fi->fi_src.i6[0];
502         fin->fin_crc += fi->fi_src.i6[1];
503         fin->fin_crc += fi->fi_src.i6[2];
504         fin->fin_crc += fi->fi_src.i6[3];
505         fi->fi_dst.in6 = ip6->ip6_dst;
506         fin->fin_crc += fi->fi_dst.i6[0];
507         fin->fin_crc += fi->fi_dst.i6[1];
508         fin->fin_crc += fi->fi_dst.i6[2];
509         fin->fin_crc += fi->fi_dst.i6[3];
510         fin->fin_id = 0;
511         if (IN6_IS_ADDR_MULTICAST(&fi->fi_dst.in6))
512                 fin->fin_flx |= FI_MULTICAST|FI_MBCAST;
513
514         hdrcount = 0;
515         while (go && !(fin->fin_flx & FI_SHORT)) {
516                 switch (p)
517                 {
518                 case IPPROTO_UDP :
519                         ipf_pr_udp6(fin);
520                         go = 0;
521                         break;
522
523                 case IPPROTO_TCP :
524                         ipf_pr_tcp6(fin);
525                         go = 0;
526                         break;
527
528                 case IPPROTO_ICMPV6 :
529                         ipf_pr_icmp6(fin);
530                         go = 0;
531                         break;
532
533                 case IPPROTO_GRE :
534                         ipf_pr_gre6(fin);
535                         go = 0;
536                         break;
537
538                 case IPPROTO_HOPOPTS :
539                         p = ipf_pr_hopopts6(fin);
540                         break;
541
542                 case IPPROTO_MOBILITY :
543                         p = ipf_pr_mobility6(fin);
544                         break;
545
546                 case IPPROTO_DSTOPTS :
547                         p = ipf_pr_dstopts6(fin);
548                         break;
549
550                 case IPPROTO_ROUTING :
551                         p = ipf_pr_routing6(fin);
552                         break;
553
554                 case IPPROTO_AH :
555                         p = ipf_pr_ah6(fin);
556                         break;
557
558                 case IPPROTO_ESP :
559                         ipf_pr_esp6(fin);
560                         go = 0;
561                         break;
562
563                 case IPPROTO_IPV6 :
564                         for (i = 0; ip6exthdr[i].ol_bit != 0; i++)
565                                 if (ip6exthdr[i].ol_val == p) {
566                                         fin->fin_flx |= ip6exthdr[i].ol_bit;
567                                         break;
568                                 }
569                         go = 0;
570                         break;
571
572                 case IPPROTO_NONE :
573                         go = 0;
574                         break;
575
576                 case IPPROTO_FRAGMENT :
577                         p = ipf_pr_fragment6(fin);
578                         /*
579                          * Given that the only fragments we want to let through
580                          * (where fin_off != 0) are those where the non-first
581                          * fragments only have data, we can safely stop looking
582                          * at headers if this is a non-leading fragment.
583                          */
584                         if (fin->fin_off != 0)
585                                 go = 0;
586                         break;
587
588                 default :
589                         go = 0;
590                         break;
591                 }
592                 hdrcount++;
593
594                 /*
595                  * It is important to note that at this point, for the
596                  * extension headers (go != 0), the entire header may not have
597                  * been pulled up when the code gets to this point.  This is
598                  * only done for "go != 0" because the other header handlers
599                  * will all pullup their complete header.  The other indicator
600                  * of an incomplete packet is that this was just an extension
601                  * header.
602                  */
603                 if ((go != 0) && (p != IPPROTO_NONE) &&
604                     (ipf_pr_pullup(fin, 0) == -1)) {
605                         p = IPPROTO_NONE;
606                         break;
607                 }
608         }
609
610         /*
611          * Some of the above functions, like ipf_pr_esp6(), can call ipf_pullup
612          * and destroy whatever packet was here.  The caller of this function
613          * expects us to return if there is a problem with ipf_pullup.
614          */
615         if (fin->fin_m == NULL) {
616                 ipf_main_softc_t *softc = fin->fin_main_soft;
617
618                 LBUMPD(ipf_stats[fin->fin_out], fr_v6_bad);
619                 return;
620         }
621
622         fi->fi_p = p;
623
624         /*
625          * IPv6 fragment case 1 - see comment for ipf_pr_fragment6().
626          * "go != 0" imples the above loop hasn't arrived at a layer 4 header.
627          */
628         if ((go != 0) && (fin->fin_flx & FI_FRAG) && (fin->fin_off == 0)) {
629                 ipf_main_softc_t *softc = fin->fin_main_soft;
630
631                 fin->fin_flx |= FI_BAD;
632                 LBUMPD(ipf_stats[fin->fin_out], fr_v6_badfrag);
633                 LBUMP(ipf_stats[fin->fin_out].fr_v6_bad);
634         }
635 }
636
637
638 /* ------------------------------------------------------------------------ */
639 /* Function:    ipf_pr_ipv6exthdr                                           */
640 /* Returns:     struct ip6_ext * - pointer to the start of the next header  */
641 /*                                 or NULL if there is a prolblem.          */
642 /* Parameters:  fin(I)      - pointer to packet information                 */
643 /*              multiple(I) - flag indicating yes/no if multiple occurances */
644 /*                            of this extension header are allowed.         */
645 /*              proto(I)    - protocol number for this extension header     */
646 /*                                                                          */
647 /* IPv6 Only                                                                */
648 /* This function embodies a number of common checks that all IPv6 extension */
649 /* headers must be subjected to.  For example, making sure the packet is    */
650 /* big enough for it to be in, checking if it is repeated and setting a     */
651 /* flag to indicate its presence.                                           */
652 /* ------------------------------------------------------------------------ */
653 static INLINE struct ip6_ext *
654 ipf_pr_ipv6exthdr(fin, multiple, proto)
655         fr_info_t *fin;
656         int multiple, proto;
657 {
658         ipf_main_softc_t *softc = fin->fin_main_soft;
659         struct ip6_ext *hdr;
660         u_short shift;
661         int i;
662
663         fin->fin_flx |= FI_V6EXTHDR;
664
665                                 /* 8 is default length of extension hdr */
666         if ((fin->fin_dlen - 8) < 0) {
667                 fin->fin_flx |= FI_SHORT;
668                 LBUMPD(ipf_stats[fin->fin_out], fr_v6_ext_short);
669                 return NULL;
670         }
671
672         if (ipf_pr_pullup(fin, 8) == -1) {
673                 LBUMPD(ipf_stats[fin->fin_out], fr_v6_ext_pullup);
674                 return NULL;
675         }
676
677         hdr = fin->fin_dp;
678         switch (proto)
679         {
680         case IPPROTO_FRAGMENT :
681                 shift = 8;
682                 break;
683         default :
684                 shift = 8 + (hdr->ip6e_len << 3);
685                 break;
686         }
687
688         if (shift > fin->fin_dlen) {    /* Nasty extension header length? */
689                 fin->fin_flx |= FI_BAD;
690                 LBUMPD(ipf_stats[fin->fin_out], fr_v6_ext_hlen);
691                 return NULL;
692         }
693
694         fin->fin_dp = (char *)fin->fin_dp + shift;
695         fin->fin_dlen -= shift;
696
697         /*
698          * If we have seen a fragment header, do not set any flags to indicate
699          * the presence of this extension header as it has no impact on the
700          * end result until after it has been defragmented.
701          */
702         if (fin->fin_flx & FI_FRAG)
703                 return hdr;
704
705         for (i = 0; ip6exthdr[i].ol_bit != 0; i++)
706                 if (ip6exthdr[i].ol_val == proto) {
707                         /*
708                          * Most IPv6 extension headers are only allowed once.
709                          */
710                         if ((multiple == 0) &&
711                             ((fin->fin_optmsk & ip6exthdr[i].ol_bit) != 0))
712                                 fin->fin_flx |= FI_BAD;
713                         else
714                                 fin->fin_optmsk |= ip6exthdr[i].ol_bit;
715                         break;
716                 }
717
718         return hdr;
719 }
720
721
722 /* ------------------------------------------------------------------------ */
723 /* Function:    ipf_pr_hopopts6                                             */
724 /* Returns:     int    - value of the next header or IPPROTO_NONE if error  */
725 /* Parameters:  fin(I) - pointer to packet information                      */
726 /*                                                                          */
727 /* IPv6 Only                                                                */
728 /* This is function checks pending hop by hop options extension header      */
729 /* ------------------------------------------------------------------------ */
730 static INLINE int
731 ipf_pr_hopopts6(fin)
732         fr_info_t *fin;
733 {
734         struct ip6_ext *hdr;
735
736         hdr = ipf_pr_ipv6exthdr(fin, 0, IPPROTO_HOPOPTS);
737         if (hdr == NULL)
738                 return IPPROTO_NONE;
739         return hdr->ip6e_nxt;
740 }
741
742
743 /* ------------------------------------------------------------------------ */
744 /* Function:    ipf_pr_mobility6                                            */
745 /* Returns:     int    - value of the next header or IPPROTO_NONE if error  */
746 /* Parameters:  fin(I) - pointer to packet information                      */
747 /*                                                                          */
748 /* IPv6 Only                                                                */
749 /* This is function checks the IPv6 mobility extension header               */
750 /* ------------------------------------------------------------------------ */
751 static INLINE int
752 ipf_pr_mobility6(fin)
753         fr_info_t *fin;
754 {
755         struct ip6_ext *hdr;
756
757         hdr = ipf_pr_ipv6exthdr(fin, 0, IPPROTO_MOBILITY);
758         if (hdr == NULL)
759                 return IPPROTO_NONE;
760         return hdr->ip6e_nxt;
761 }
762
763
764 /* ------------------------------------------------------------------------ */
765 /* Function:    ipf_pr_routing6                                             */
766 /* Returns:     int    - value of the next header or IPPROTO_NONE if error  */
767 /* Parameters:  fin(I) - pointer to packet information                      */
768 /*                                                                          */
769 /* IPv6 Only                                                                */
770 /* This is function checks pending routing extension header                 */
771 /* ------------------------------------------------------------------------ */
772 static INLINE int
773 ipf_pr_routing6(fin)
774         fr_info_t *fin;
775 {
776         struct ip6_routing *hdr;
777
778         hdr = (struct ip6_routing *)ipf_pr_ipv6exthdr(fin, 0, IPPROTO_ROUTING);
779         if (hdr == NULL)
780                 return IPPROTO_NONE;
781
782         switch (hdr->ip6r_type)
783         {
784         case 0 :
785                 /*
786                  * Nasty extension header length?
787                  */
788                 if (((hdr->ip6r_len >> 1) < hdr->ip6r_segleft) ||
789                     (hdr->ip6r_segleft && (hdr->ip6r_len & 1))) {
790                         ipf_main_softc_t *softc = fin->fin_main_soft;
791
792                         fin->fin_flx |= FI_BAD;
793                         LBUMPD(ipf_stats[fin->fin_out], fr_v6_rh_bad);
794                         return IPPROTO_NONE;
795                 }
796                 break;
797
798         default :
799                 break;
800         }
801
802         return hdr->ip6r_nxt;
803 }
804
805
806 /* ------------------------------------------------------------------------ */
807 /* Function:    ipf_pr_fragment6                                            */
808 /* Returns:     int    - value of the next header or IPPROTO_NONE if error  */
809 /* Parameters:  fin(I) - pointer to packet information                      */
810 /*                                                                          */
811 /* IPv6 Only                                                                */
812 /* Examine the IPv6 fragment header and extract fragment offset information.*/
813 /*                                                                          */
814 /* Fragments in IPv6 are extraordinarily difficult to deal with - much more */
815 /* so than in IPv4.  There are 5 cases of fragments with IPv6 that all      */
816 /* packets with a fragment header can fit into.  They are as follows:       */
817 /*                                                                          */
818 /* 1.  [IPv6][0-n EH][FH][0-n EH] (no L4HDR present)                        */
819 /* 2.  [IPV6][0-n EH][FH][0-n EH][L4HDR part] (short)                       */
820 /* 3.  [IPV6][0-n EH][FH][L4HDR part][0-n data] (short)                     */
821 /* 4.  [IPV6][0-n EH][FH][0-n EH][L4HDR][0-n data]                          */
822 /* 5.  [IPV6][0-n EH][FH][data]                                             */
823 /*                                                                          */
824 /* IPV6 = IPv6 header, FH = Fragment Header,                                */
825 /* 0-n EH = 0 or more extension headers, 0-n data = 0 or more bytes of data */
826 /*                                                                          */
827 /* Packets that match 1, 2, 3 will be dropped as the only reasonable        */
828 /* scenario in which they happen is in extreme circumstances that are most  */
829 /* likely to be an indication of an attack rather than normal traffic.      */
830 /* A type 3 packet may be sent by an attacked after a type 4 packet.  There */
831 /* are two rules that can be used to guard against type 3 packets: L4       */
832 /* headers must always be in a packet that has the offset field set to 0    */
833 /* and no packet is allowed to overlay that where offset = 0.               */
834 /* ------------------------------------------------------------------------ */
835 static INLINE int
836 ipf_pr_fragment6(fin)
837         fr_info_t *fin;
838 {
839         ipf_main_softc_t *softc = fin->fin_main_soft;
840         struct ip6_frag *frag;
841
842         fin->fin_flx |= FI_FRAG;
843
844         frag = (struct ip6_frag *)ipf_pr_ipv6exthdr(fin, 0, IPPROTO_FRAGMENT);
845         if (frag == NULL) {
846                 LBUMPD(ipf_stats[fin->fin_out], fr_v6_frag_bad);
847                 return IPPROTO_NONE;
848         }
849
850         if ((frag->ip6f_offlg & IP6F_MORE_FRAG) != 0) {
851                 /*
852                  * Any fragment that isn't the last fragment must have its
853                  * length as a multiple of 8.
854                  */
855                 if ((fin->fin_plen & 7) != 0)
856                         fin->fin_flx |= FI_BAD;
857         }
858
859         fin->fin_fraghdr = frag;
860         fin->fin_id = frag->ip6f_ident;
861         fin->fin_off = ntohs(frag->ip6f_offlg & IP6F_OFF_MASK);
862         if (fin->fin_off != 0)
863                 fin->fin_flx |= FI_FRAGBODY;
864
865         /*
866          * Jumbograms aren't handled, so the max. length is 64k
867          */
868         if ((fin->fin_off << 3) + fin->fin_dlen > 65535)
869                   fin->fin_flx |= FI_BAD;
870
871         /*
872          * We don't know where the transport layer header (or whatever is next
873          * is), as it could be behind destination options (amongst others) so
874          * return the fragment header as the type of packet this is.  Note that
875          * this effectively disables the fragment cache for > 1 protocol at a
876          * time.
877          */
878         return frag->ip6f_nxt;
879 }
880
881
882 /* ------------------------------------------------------------------------ */
883 /* Function:    ipf_pr_dstopts6                                             */
884 /* Returns:     int    - value of the next header or IPPROTO_NONE if error  */
885 /* Parameters:  fin(I) - pointer to packet information                      */
886 /*                                                                          */
887 /* IPv6 Only                                                                */
888 /* This is function checks pending destination options extension header     */
889 /* ------------------------------------------------------------------------ */
890 static INLINE int
891 ipf_pr_dstopts6(fin)
892         fr_info_t *fin;
893 {
894         ipf_main_softc_t *softc = fin->fin_main_soft;
895         struct ip6_ext *hdr;
896
897         hdr = ipf_pr_ipv6exthdr(fin, 0, IPPROTO_DSTOPTS);
898         if (hdr == NULL) {
899                 LBUMPD(ipf_stats[fin->fin_out], fr_v6_dst_bad);
900                 return IPPROTO_NONE;
901         }
902         return hdr->ip6e_nxt;
903 }
904
905
906 /* ------------------------------------------------------------------------ */
907 /* Function:    ipf_pr_icmp6                                                */
908 /* Returns:     void                                                        */
909 /* Parameters:  fin(I) - pointer to packet information                      */
910 /*                                                                          */
911 /* IPv6 Only                                                                */
912 /* This routine is mainly concerned with determining the minimum valid size */
913 /* for an ICMPv6 packet.                                                    */
914 /* ------------------------------------------------------------------------ */
915 static INLINE void
916 ipf_pr_icmp6(fin)
917         fr_info_t *fin;
918 {
919         int minicmpsz = sizeof(struct icmp6_hdr);
920         struct icmp6_hdr *icmp6;
921
922         if (ipf_pr_pullup(fin, ICMP6ERR_MINPKTLEN - sizeof(ip6_t)) == -1) {
923                 ipf_main_softc_t *softc = fin->fin_main_soft;
924
925                 LBUMPD(ipf_stats[fin->fin_out], fr_v6_icmp6_pullup);
926                 return;
927         }
928
929         if (fin->fin_dlen > 1) {
930                 ip6_t *ip6;
931
932                 icmp6 = fin->fin_dp;
933
934                 fin->fin_data[0] = *(u_short *)icmp6;
935
936                 if ((icmp6->icmp6_type & ICMP6_INFOMSG_MASK) != 0)
937                         fin->fin_flx |= FI_ICMPQUERY;
938
939                 switch (icmp6->icmp6_type)
940                 {
941                 case ICMP6_ECHO_REPLY :
942                 case ICMP6_ECHO_REQUEST :
943                         if (fin->fin_dlen >= 6)
944                                 fin->fin_data[1] = icmp6->icmp6_id;
945                         minicmpsz = ICMP6ERR_MINPKTLEN - sizeof(ip6_t);
946                         break;
947
948                 case ICMP6_DST_UNREACH :
949                 case ICMP6_PACKET_TOO_BIG :
950                 case ICMP6_TIME_EXCEEDED :
951                 case ICMP6_PARAM_PROB :
952                         fin->fin_flx |= FI_ICMPERR;
953                         minicmpsz = ICMP6ERR_IPICMPHLEN - sizeof(ip6_t);
954                         if (fin->fin_plen < ICMP6ERR_IPICMPHLEN)
955                                 break;
956
957                         if (M_LEN(fin->fin_m) < fin->fin_plen) {
958                                 if (ipf_coalesce(fin) != 1)
959                                         return;
960                         }
961
962                         if (ipf_pr_pullup(fin, ICMP6ERR_MINPKTLEN) == -1)
963                                 return;
964
965                         /*
966                          * If the destination of this packet doesn't match the
967                          * source of the original packet then this packet is
968                          * not correct.
969                          */
970                         icmp6 = fin->fin_dp;
971                         ip6 = (ip6_t *)((char *)icmp6 + ICMPERR_ICMPHLEN);
972                         if (IP6_NEQ(&fin->fin_fi.fi_dst,
973                                     (i6addr_t *)&ip6->ip6_src))
974                                 fin->fin_flx |= FI_BAD;
975                         break;
976                 default :
977                         break;
978                 }
979         }
980
981         ipf_pr_short6(fin, minicmpsz);
982         if ((fin->fin_flx & (FI_SHORT|FI_BAD)) == 0) {
983                 u_char p = fin->fin_p;
984
985                 fin->fin_p = IPPROTO_ICMPV6;
986                 ipf_checkv6sum(fin);
987                 fin->fin_p = p;
988         }
989 }
990
991
992 /* ------------------------------------------------------------------------ */
993 /* Function:    ipf_pr_udp6                                                 */
994 /* Returns:     void                                                        */
995 /* Parameters:  fin(I) - pointer to packet information                      */
996 /*                                                                          */
997 /* IPv6 Only                                                                */
998 /* Analyse the packet for IPv6/UDP properties.                              */
999 /* Is not expected to be called for fragmented packets.                     */
1000 /* ------------------------------------------------------------------------ */
1001 static INLINE void
1002 ipf_pr_udp6(fin)
1003         fr_info_t *fin;
1004 {
1005
1006         if (ipf_pr_udpcommon(fin) == 0) {
1007                 u_char p = fin->fin_p;
1008
1009                 fin->fin_p = IPPROTO_UDP;
1010                 ipf_checkv6sum(fin);
1011                 fin->fin_p = p;
1012         }
1013 }
1014
1015
1016 /* ------------------------------------------------------------------------ */
1017 /* Function:    ipf_pr_tcp6                                                 */
1018 /* Returns:     void                                                        */
1019 /* Parameters:  fin(I) - pointer to packet information                      */
1020 /*                                                                          */
1021 /* IPv6 Only                                                                */
1022 /* Analyse the packet for IPv6/TCP properties.                              */
1023 /* Is not expected to be called for fragmented packets.                     */
1024 /* ------------------------------------------------------------------------ */
1025 static INLINE void
1026 ipf_pr_tcp6(fin)
1027         fr_info_t *fin;
1028 {
1029
1030         if (ipf_pr_tcpcommon(fin) == 0) {
1031                 u_char p = fin->fin_p;
1032
1033                 fin->fin_p = IPPROTO_TCP;
1034                 ipf_checkv6sum(fin);
1035                 fin->fin_p = p;
1036         }
1037 }
1038
1039
1040 /* ------------------------------------------------------------------------ */
1041 /* Function:    ipf_pr_esp6                                                 */
1042 /* Returns:     void                                                        */
1043 /* Parameters:  fin(I) - pointer to packet information                      */
1044 /*                                                                          */
1045 /* IPv6 Only                                                                */
1046 /* Analyse the packet for ESP properties.                                   */
1047 /* The minimum length is taken to be the SPI (32bits) plus a tail (32bits)  */
1048 /* even though the newer ESP packets must also have a sequence number that  */
1049 /* is 32bits as well, it is not possible(?) to determine the version from a */
1050 /* simple packet header.                                                    */
1051 /* ------------------------------------------------------------------------ */
1052 static INLINE void
1053 ipf_pr_esp6(fin)
1054         fr_info_t *fin;
1055 {
1056
1057         if ((fin->fin_off == 0) && (ipf_pr_pullup(fin, 8) == -1)) {
1058                 ipf_main_softc_t *softc = fin->fin_main_soft;
1059
1060                 LBUMPD(ipf_stats[fin->fin_out], fr_v6_esp_pullup);
1061                 return;
1062         }
1063 }
1064
1065
1066 /* ------------------------------------------------------------------------ */
1067 /* Function:    ipf_pr_ah6                                                  */
1068 /* Returns:     int    - value of the next header or IPPROTO_NONE if error  */
1069 /* Parameters:  fin(I) - pointer to packet information                      */
1070 /*                                                                          */
1071 /* IPv6 Only                                                                */
1072 /* Analyse the packet for AH properties.                                    */
1073 /* The minimum length is taken to be the combination of all fields in the   */
1074 /* header being present and no authentication data (null algorithm used.)   */
1075 /* ------------------------------------------------------------------------ */
1076 static INLINE int
1077 ipf_pr_ah6(fin)
1078         fr_info_t *fin;
1079 {
1080         authhdr_t *ah;
1081
1082         fin->fin_flx |= FI_AH;
1083
1084         ah = (authhdr_t *)ipf_pr_ipv6exthdr(fin, 0, IPPROTO_HOPOPTS);
1085         if (ah == NULL) {
1086                 ipf_main_softc_t *softc = fin->fin_main_soft;
1087
1088                 LBUMPD(ipf_stats[fin->fin_out], fr_v6_ah_bad);
1089                 return IPPROTO_NONE;
1090         }
1091
1092         ipf_pr_short6(fin, sizeof(*ah));
1093
1094         /*
1095          * No need for another pullup, ipf_pr_ipv6exthdr() will pullup
1096          * enough data to satisfy ah_next (the very first one.)
1097          */
1098         return ah->ah_next;
1099 }
1100
1101
1102 /* ------------------------------------------------------------------------ */
1103 /* Function:    ipf_pr_gre6                                                 */
1104 /* Returns:     void                                                        */
1105 /* Parameters:  fin(I) - pointer to packet information                      */
1106 /*                                                                          */
1107 /* Analyse the packet for GRE properties.                                   */
1108 /* ------------------------------------------------------------------------ */
1109 static INLINE void
1110 ipf_pr_gre6(fin)
1111         fr_info_t *fin;
1112 {
1113         grehdr_t *gre;
1114
1115         if (ipf_pr_pullup(fin, sizeof(grehdr_t)) == -1) {
1116                 ipf_main_softc_t *softc = fin->fin_main_soft;
1117
1118                 LBUMPD(ipf_stats[fin->fin_out], fr_v6_gre_pullup);
1119                 return;
1120         }
1121
1122         gre = fin->fin_dp;
1123         if (GRE_REV(gre->gr_flags) == 1)
1124                 fin->fin_data[0] = gre->gr_call;
1125 }
1126 #endif  /* USE_INET6 */
1127
1128
1129 /* ------------------------------------------------------------------------ */
1130 /* Function:    ipf_pr_pullup                                               */
1131 /* Returns:     int     - 0 == pullup succeeded, -1 == failure              */
1132 /* Parameters:  fin(I)  - pointer to packet information                     */
1133 /*              plen(I) - length (excluding L3 header) to pullup            */
1134 /*                                                                          */
1135 /* Short inline function to cut down on code duplication to perform a call  */
1136 /* to ipf_pullup to ensure there is the required amount of data,            */
1137 /* consecutively in the packet buffer.                                      */
1138 /*                                                                          */
1139 /* This function pulls up 'extra' data at the location of fin_dp.  fin_dp   */
1140 /* points to the first byte after the complete layer 3 header, which will   */
1141 /* include all of the known extension headers for IPv6 or options for IPv4. */
1142 /*                                                                          */
1143 /* Since fr_pullup() expects the total length of bytes to be pulled up, it  */
1144 /* is necessary to add those we can already assume to be pulled up (fin_dp  */
1145 /* - fin_ip) to what is passed through.                                     */
1146 /* ------------------------------------------------------------------------ */
1147 int
1148 ipf_pr_pullup(fin, plen)
1149         fr_info_t *fin;
1150         int plen;
1151 {
1152         ipf_main_softc_t *softc = fin->fin_main_soft;
1153
1154         if (fin->fin_m != NULL) {
1155                 if (fin->fin_dp != NULL)
1156                         plen += (char *)fin->fin_dp -
1157                                 ((char *)fin->fin_ip + fin->fin_hlen);
1158                 plen += fin->fin_hlen;
1159                 if (M_LEN(fin->fin_m) < plen + fin->fin_ipoff) {
1160 #if defined(_KERNEL)
1161                         if (ipf_pullup(fin->fin_m, fin, plen) == NULL) {
1162                                 DT(ipf_pullup_fail);
1163                                 LBUMP(ipf_stats[fin->fin_out].fr_pull[1]);
1164                                 return -1;
1165                         }
1166                         LBUMP(ipf_stats[fin->fin_out].fr_pull[0]);
1167 #else
1168                         LBUMP(ipf_stats[fin->fin_out].fr_pull[1]);
1169                         /*
1170                          * Fake ipf_pullup failing
1171                          */
1172                         fin->fin_reason = FRB_PULLUP;
1173                         *fin->fin_mp = NULL;
1174                         fin->fin_m = NULL;
1175                         fin->fin_ip = NULL;
1176                         return -1;
1177 #endif
1178                 }
1179         }
1180         return 0;
1181 }
1182
1183
1184 /* ------------------------------------------------------------------------ */
1185 /* Function:    ipf_pr_short                                                */
1186 /* Returns:     void                                                        */
1187 /* Parameters:  fin(I)  - pointer to packet information                     */
1188 /*              xmin(I) - minimum header size                               */
1189 /*                                                                          */
1190 /* Check if a packet is "short" as defined by xmin.  The rule we are        */
1191 /* applying here is that the packet must not be fragmented within the layer */
1192 /* 4 header.  That is, it must not be a fragment that has its offset set to */
1193 /* start within the layer 4 header (hdrmin) or if it is at offset 0, the    */
1194 /* entire layer 4 header must be present (min).                             */
1195 /* ------------------------------------------------------------------------ */
1196 static INLINE void
1197 ipf_pr_short(fin, xmin)
1198         fr_info_t *fin;
1199         int xmin;
1200 {
1201
1202         if (fin->fin_off == 0) {
1203                 if (fin->fin_dlen < xmin)
1204                         fin->fin_flx |= FI_SHORT;
1205         } else if (fin->fin_off < xmin) {
1206                 fin->fin_flx |= FI_SHORT;
1207         }
1208 }
1209
1210
1211 /* ------------------------------------------------------------------------ */
1212 /* Function:    ipf_pr_icmp                                                 */
1213 /* Returns:     void                                                        */
1214 /* Parameters:  fin(I) - pointer to packet information                      */
1215 /*                                                                          */
1216 /* IPv4 Only                                                                */
1217 /* Do a sanity check on the packet for ICMP (v4).  In nearly all cases,     */
1218 /* except extrememly bad packets, both type and code will be present.       */
1219 /* The expected minimum size of an ICMP packet is very much dependent on    */
1220 /* the type of it.                                                          */
1221 /*                                                                          */
1222 /* XXX - other ICMP sanity checks?                                          */
1223 /* ------------------------------------------------------------------------ */
1224 static INLINE void
1225 ipf_pr_icmp(fin)
1226         fr_info_t *fin;
1227 {
1228         ipf_main_softc_t *softc = fin->fin_main_soft;
1229         int minicmpsz = sizeof(struct icmp);
1230         icmphdr_t *icmp;
1231         ip_t *oip;
1232
1233         ipf_pr_short(fin, ICMPERR_ICMPHLEN);
1234
1235         if (fin->fin_off != 0) {
1236                 LBUMPD(ipf_stats[fin->fin_out], fr_v4_icmp_frag);
1237                 return;
1238         }
1239
1240         if (ipf_pr_pullup(fin, ICMPERR_ICMPHLEN) == -1) {
1241                 LBUMPD(ipf_stats[fin->fin_out], fr_v4_icmp_pullup);
1242                 return;
1243         }
1244
1245         icmp = fin->fin_dp;
1246
1247         fin->fin_data[0] = *(u_short *)icmp;
1248         fin->fin_data[1] = icmp->icmp_id;
1249
1250         switch (icmp->icmp_type)
1251         {
1252         case ICMP_ECHOREPLY :
1253         case ICMP_ECHO :
1254         /* Router discovery messaes - RFC 1256 */
1255         case ICMP_ROUTERADVERT :
1256         case ICMP_ROUTERSOLICIT :
1257                 fin->fin_flx |= FI_ICMPQUERY;
1258                 minicmpsz = ICMP_MINLEN;
1259                 break;
1260         /*
1261          * type(1) + code(1) + cksum(2) + id(2) seq(2) +
1262          * 3 * timestamp(3 * 4)
1263          */
1264         case ICMP_TSTAMP :
1265         case ICMP_TSTAMPREPLY :
1266                 fin->fin_flx |= FI_ICMPQUERY;
1267                 minicmpsz = 20;
1268                 break;
1269         /*
1270          * type(1) + code(1) + cksum(2) + id(2) seq(2) +
1271          * mask(4)
1272          */
1273         case ICMP_IREQ :
1274         case ICMP_IREQREPLY :
1275         case ICMP_MASKREQ :
1276         case ICMP_MASKREPLY :
1277                 fin->fin_flx |= FI_ICMPQUERY;
1278                 minicmpsz = 12;
1279                 break;
1280         /*
1281          * type(1) + code(1) + cksum(2) + id(2) seq(2) + ip(20+)
1282          */
1283         case ICMP_UNREACH :
1284 #ifdef icmp_nextmtu
1285                 if (icmp->icmp_code == ICMP_UNREACH_NEEDFRAG) {
1286                         if (icmp->icmp_nextmtu < softc->ipf_icmpminfragmtu)
1287                                 fin->fin_flx |= FI_BAD;
1288                 }
1289 #endif
1290                 /* FALLTHROUGH */
1291         case ICMP_SOURCEQUENCH :
1292         case ICMP_REDIRECT :
1293         case ICMP_TIMXCEED :
1294         case ICMP_PARAMPROB :
1295                 fin->fin_flx |= FI_ICMPERR;
1296                 if (ipf_coalesce(fin) != 1) {
1297                         LBUMPD(ipf_stats[fin->fin_out], fr_icmp_coalesce);
1298                         return;
1299                 }
1300
1301                 /*
1302                  * ICMP error packets should not be generated for IP
1303                  * packets that are a fragment that isn't the first
1304                  * fragment.
1305                  */
1306                 oip = (ip_t *)((char *)fin->fin_dp + ICMPERR_ICMPHLEN);
1307                 if ((ntohs(oip->ip_off) & IP_OFFMASK) != 0)
1308                         fin->fin_flx |= FI_BAD;
1309
1310                 /*
1311                  * If the destination of this packet doesn't match the
1312                  * source of the original packet then this packet is
1313                  * not correct.
1314                  */
1315                 if (oip->ip_src.s_addr != fin->fin_daddr)
1316                         fin->fin_flx |= FI_BAD;
1317                 break;
1318         default :
1319                 break;
1320         }
1321
1322         ipf_pr_short(fin, minicmpsz);
1323
1324         ipf_checkv4sum(fin);
1325 }
1326
1327
1328 /* ------------------------------------------------------------------------ */
1329 /* Function:    ipf_pr_tcpcommon                                            */
1330 /* Returns:     int    - 0 = header ok, 1 = bad packet, -1 = buffer error   */
1331 /* Parameters:  fin(I) - pointer to packet information                      */
1332 /*                                                                          */
1333 /* TCP header sanity checking.  Look for bad combinations of TCP flags,     */
1334 /* and make some checks with how they interact with other fields.           */
1335 /* If compiled with IPFILTER_CKSUM, check to see if the TCP checksum is     */
1336 /* valid and mark the packet as bad if not.                                 */
1337 /* ------------------------------------------------------------------------ */
1338 static INLINE int
1339 ipf_pr_tcpcommon(fin)
1340         fr_info_t *fin;
1341 {
1342         ipf_main_softc_t *softc = fin->fin_main_soft;
1343         int flags, tlen;
1344         tcphdr_t *tcp;
1345
1346         fin->fin_flx |= FI_TCPUDP;
1347         if (fin->fin_off != 0) {
1348                 LBUMPD(ipf_stats[fin->fin_out], fr_tcp_frag);
1349                 return 0;
1350         }
1351
1352         if (ipf_pr_pullup(fin, sizeof(*tcp)) == -1) {
1353                 LBUMPD(ipf_stats[fin->fin_out], fr_tcp_pullup);
1354                 return -1;
1355         }
1356
1357         tcp = fin->fin_dp;
1358         if (fin->fin_dlen > 3) {
1359                 fin->fin_sport = ntohs(tcp->th_sport);
1360                 fin->fin_dport = ntohs(tcp->th_dport);
1361         }
1362
1363         if ((fin->fin_flx & FI_SHORT) != 0) {
1364                 LBUMPD(ipf_stats[fin->fin_out], fr_tcp_short);
1365                 return 1;
1366         }
1367
1368         /*
1369          * Use of the TCP data offset *must* result in a value that is at
1370          * least the same size as the TCP header.
1371          */
1372         tlen = TCP_OFF(tcp) << 2;
1373         if (tlen < sizeof(tcphdr_t)) {
1374                 LBUMPD(ipf_stats[fin->fin_out], fr_tcp_small);
1375                 fin->fin_flx |= FI_BAD;
1376                 return 1;
1377         }
1378
1379         flags = tcp->th_flags;
1380         fin->fin_tcpf = tcp->th_flags;
1381
1382         /*
1383          * If the urgent flag is set, then the urgent pointer must
1384          * also be set and vice versa.  Good TCP packets do not have
1385          * just one of these set.
1386          */
1387         if ((flags & TH_URG) != 0 && (tcp->th_urp == 0)) {
1388                 fin->fin_flx |= FI_BAD;
1389 #if 0
1390         } else if ((flags & TH_URG) == 0 && (tcp->th_urp != 0)) {
1391                 /*
1392                  * Ignore this case (#if 0) as it shows up in "real"
1393                  * traffic with bogus values in the urgent pointer field.
1394                  */
1395                 fin->fin_flx |= FI_BAD;
1396 #endif
1397         } else if (((flags & (TH_SYN|TH_FIN)) != 0) &&
1398                    ((flags & (TH_RST|TH_ACK)) == TH_RST)) {
1399                 /* TH_FIN|TH_RST|TH_ACK seems to appear "naturally" */
1400                 fin->fin_flx |= FI_BAD;
1401 #if 1
1402         } else if (((flags & TH_SYN) != 0) &&
1403                    ((flags & (TH_URG|TH_PUSH)) != 0)) {
1404                 /*
1405                  * SYN with URG and PUSH set is not for normal TCP but it is
1406                  * possible(?) with T/TCP...but who uses T/TCP?
1407                  */
1408                 fin->fin_flx |= FI_BAD;
1409 #endif
1410         } else if (!(flags & TH_ACK)) {
1411                 /*
1412                  * If the ack bit isn't set, then either the SYN or
1413                  * RST bit must be set.  If the SYN bit is set, then
1414                  * we expect the ACK field to be 0.  If the ACK is
1415                  * not set and if URG, PSH or FIN are set, consdier
1416                  * that to indicate a bad TCP packet.
1417                  */
1418                 if ((flags == TH_SYN) && (tcp->th_ack != 0)) {
1419                         /*
1420                          * Cisco PIX sets the ACK field to a random value.
1421                          * In light of this, do not set FI_BAD until a patch
1422                          * is available from Cisco to ensure that
1423                          * interoperability between existing systems is
1424                          * achieved.
1425                          */
1426                         /*fin->fin_flx |= FI_BAD*/;
1427                 } else if (!(flags & (TH_RST|TH_SYN))) {
1428                         fin->fin_flx |= FI_BAD;
1429                 } else if ((flags & (TH_URG|TH_PUSH|TH_FIN)) != 0) {
1430                         fin->fin_flx |= FI_BAD;
1431                 }
1432         }
1433         if (fin->fin_flx & FI_BAD) {
1434                 LBUMPD(ipf_stats[fin->fin_out], fr_tcp_bad_flags);
1435                 return 1;
1436         }
1437
1438         /*
1439          * At this point, it's not exactly clear what is to be gained by
1440          * marking up which TCP options are and are not present.  The one we
1441          * are most interested in is the TCP window scale.  This is only in
1442          * a SYN packet [RFC1323] so we don't need this here...?
1443          * Now if we were to analyse the header for passive fingerprinting,
1444          * then that might add some weight to adding this...
1445          */
1446         if (tlen == sizeof(tcphdr_t)) {
1447                 return 0;
1448         }
1449
1450         if (ipf_pr_pullup(fin, tlen) == -1) {
1451                 LBUMPD(ipf_stats[fin->fin_out], fr_tcp_pullup);
1452                 return -1;
1453         }
1454
1455 #if 0
1456         tcp = fin->fin_dp;
1457         ip = fin->fin_ip;
1458         s = (u_char *)(tcp + 1);
1459         off = IP_HL(ip) << 2;
1460 # ifdef _KERNEL
1461         if (fin->fin_mp != NULL) {
1462                 mb_t *m = *fin->fin_mp;
1463
1464                 if (off + tlen > M_LEN(m))
1465                         return;
1466         }
1467 # endif
1468         for (tlen -= (int)sizeof(*tcp); tlen > 0; ) {
1469                 opt = *s;
1470                 if (opt == '\0')
1471                         break;
1472                 else if (opt == TCPOPT_NOP)
1473                         ol = 1;
1474                 else {
1475                         if (tlen < 2)
1476                                 break;
1477                         ol = (int)*(s + 1);
1478                         if (ol < 2 || ol > tlen)
1479                                 break;
1480                 }
1481
1482                 for (i = 9, mv = 4; mv >= 0; ) {
1483                         op = ipopts + i;
1484                         if (opt == (u_char)op->ol_val) {
1485                                 optmsk |= op->ol_bit;
1486                                 break;
1487                         }
1488                 }
1489                 tlen -= ol;
1490                 s += ol;
1491         }
1492 #endif /* 0 */
1493
1494         return 0;
1495 }
1496
1497
1498
1499 /* ------------------------------------------------------------------------ */
1500 /* Function:    ipf_pr_udpcommon                                            */
1501 /* Returns:     int    - 0 = header ok, 1 = bad packet                      */
1502 /* Parameters:  fin(I) - pointer to packet information                      */
1503 /*                                                                          */
1504 /* Extract the UDP source and destination ports, if present.  If compiled   */
1505 /* with IPFILTER_CKSUM, check to see if the UDP checksum is valid.          */
1506 /* ------------------------------------------------------------------------ */
1507 static INLINE int
1508 ipf_pr_udpcommon(fin)
1509         fr_info_t *fin;
1510 {
1511         udphdr_t *udp;
1512
1513         fin->fin_flx |= FI_TCPUDP;
1514
1515         if (!fin->fin_off && (fin->fin_dlen > 3)) {
1516                 if (ipf_pr_pullup(fin, sizeof(*udp)) == -1) {
1517                         ipf_main_softc_t *softc = fin->fin_main_soft;
1518
1519                         fin->fin_flx |= FI_SHORT;
1520                         LBUMPD(ipf_stats[fin->fin_out], fr_udp_pullup);
1521                         return 1;
1522                 }
1523
1524                 udp = fin->fin_dp;
1525
1526                 fin->fin_sport = ntohs(udp->uh_sport);
1527                 fin->fin_dport = ntohs(udp->uh_dport);
1528         }
1529
1530         return 0;
1531 }
1532
1533
1534 /* ------------------------------------------------------------------------ */
1535 /* Function:    ipf_pr_tcp                                                  */
1536 /* Returns:     void                                                        */
1537 /* Parameters:  fin(I) - pointer to packet information                      */
1538 /*                                                                          */
1539 /* IPv4 Only                                                                */
1540 /* Analyse the packet for IPv4/TCP properties.                              */
1541 /* ------------------------------------------------------------------------ */
1542 static INLINE void
1543 ipf_pr_tcp(fin)
1544         fr_info_t *fin;
1545 {
1546
1547         ipf_pr_short(fin, sizeof(tcphdr_t));
1548
1549         if (ipf_pr_tcpcommon(fin) == 0)
1550                 ipf_checkv4sum(fin);
1551 }
1552
1553
1554 /* ------------------------------------------------------------------------ */
1555 /* Function:    ipf_pr_udp                                                  */
1556 /* Returns:     void                                                        */
1557 /* Parameters:  fin(I) - pointer to packet information                      */
1558 /*                                                                          */
1559 /* IPv4 Only                                                                */
1560 /* Analyse the packet for IPv4/UDP properties.                              */
1561 /* ------------------------------------------------------------------------ */
1562 static INLINE void
1563 ipf_pr_udp(fin)
1564         fr_info_t *fin;
1565 {
1566
1567         ipf_pr_short(fin, sizeof(udphdr_t));
1568
1569         if (ipf_pr_udpcommon(fin) == 0)
1570                 ipf_checkv4sum(fin);
1571 }
1572
1573
1574 /* ------------------------------------------------------------------------ */
1575 /* Function:    ipf_pr_esp                                                  */
1576 /* Returns:     void                                                        */
1577 /* Parameters:  fin(I) - pointer to packet information                      */
1578 /*                                                                          */
1579 /* Analyse the packet for ESP properties.                                   */
1580 /* The minimum length is taken to be the SPI (32bits) plus a tail (32bits)  */
1581 /* even though the newer ESP packets must also have a sequence number that  */
1582 /* is 32bits as well, it is not possible(?) to determine the version from a */
1583 /* simple packet header.                                                    */
1584 /* ------------------------------------------------------------------------ */
1585 static INLINE void
1586 ipf_pr_esp(fin)
1587         fr_info_t *fin;
1588 {
1589
1590         if (fin->fin_off == 0) {
1591                 ipf_pr_short(fin, 8);
1592                 if (ipf_pr_pullup(fin, 8) == -1) {
1593                         ipf_main_softc_t *softc = fin->fin_main_soft;
1594
1595                         LBUMPD(ipf_stats[fin->fin_out], fr_v4_esp_pullup);
1596                 }
1597         }
1598 }
1599
1600
1601 /* ------------------------------------------------------------------------ */
1602 /* Function:    ipf_pr_ah                                                   */
1603 /* Returns:     int    - value of the next header or IPPROTO_NONE if error  */
1604 /* Parameters:  fin(I) - pointer to packet information                      */
1605 /*                                                                          */
1606 /* Analyse the packet for AH properties.                                    */
1607 /* The minimum length is taken to be the combination of all fields in the   */
1608 /* header being present and no authentication data (null algorithm used.)   */
1609 /* ------------------------------------------------------------------------ */
1610 static INLINE int
1611 ipf_pr_ah(fin)
1612         fr_info_t *fin;
1613 {
1614         ipf_main_softc_t *softc = fin->fin_main_soft;
1615         authhdr_t *ah;
1616         int len;
1617
1618         fin->fin_flx |= FI_AH;
1619         ipf_pr_short(fin, sizeof(*ah));
1620
1621         if (((fin->fin_flx & FI_SHORT) != 0) || (fin->fin_off != 0)) {
1622                 LBUMPD(ipf_stats[fin->fin_out], fr_v4_ah_bad);
1623                 return IPPROTO_NONE;
1624         }
1625
1626         if (ipf_pr_pullup(fin, sizeof(*ah)) == -1) {
1627                 DT(fr_v4_ah_pullup_1);
1628                 LBUMP(ipf_stats[fin->fin_out].fr_v4_ah_pullup);
1629                 return IPPROTO_NONE;
1630         }
1631
1632         ah = (authhdr_t *)fin->fin_dp;
1633
1634         len = (ah->ah_plen + 2) << 2;
1635         ipf_pr_short(fin, len);
1636         if (ipf_pr_pullup(fin, len) == -1) {
1637                 DT(fr_v4_ah_pullup_2);
1638                 LBUMP(ipf_stats[fin->fin_out].fr_v4_ah_pullup);
1639                 return IPPROTO_NONE;
1640         }
1641
1642         /*
1643          * Adjust fin_dp and fin_dlen for skipping over the authentication
1644          * header.
1645          */
1646         fin->fin_dp = (char *)fin->fin_dp + len;
1647         fin->fin_dlen -= len;
1648         return ah->ah_next;
1649 }
1650
1651
1652 /* ------------------------------------------------------------------------ */
1653 /* Function:    ipf_pr_gre                                                  */
1654 /* Returns:     void                                                        */
1655 /* Parameters:  fin(I) - pointer to packet information                      */
1656 /*                                                                          */
1657 /* Analyse the packet for GRE properties.                                   */
1658 /* ------------------------------------------------------------------------ */
1659 static INLINE void
1660 ipf_pr_gre(fin)
1661         fr_info_t *fin;
1662 {
1663         ipf_main_softc_t *softc = fin->fin_main_soft;
1664         grehdr_t *gre;
1665
1666         ipf_pr_short(fin, sizeof(grehdr_t));
1667
1668         if (fin->fin_off != 0) {
1669                 LBUMPD(ipf_stats[fin->fin_out], fr_v4_gre_frag);
1670                 return;
1671         }
1672
1673         if (ipf_pr_pullup(fin, sizeof(grehdr_t)) == -1) {
1674                 LBUMPD(ipf_stats[fin->fin_out], fr_v4_gre_pullup);
1675                 return;
1676         }
1677
1678         gre = fin->fin_dp;
1679         if (GRE_REV(gre->gr_flags) == 1)
1680                 fin->fin_data[0] = gre->gr_call;
1681 }
1682
1683
1684 /* ------------------------------------------------------------------------ */
1685 /* Function:    ipf_pr_ipv4hdr                                              */
1686 /* Returns:     void                                                        */
1687 /* Parameters:  fin(I) - pointer to packet information                      */
1688 /*                                                                          */
1689 /* IPv4 Only                                                                */
1690 /* Analyze the IPv4 header and set fields in the fr_info_t structure.       */
1691 /* Check all options present and flag their presence if any exist.          */
1692 /* ------------------------------------------------------------------------ */
1693 static INLINE void
1694 ipf_pr_ipv4hdr(fin)
1695         fr_info_t *fin;
1696 {
1697         u_short optmsk = 0, secmsk = 0, auth = 0;
1698         int hlen, ol, mv, p, i;
1699         const struct optlist *op;
1700         u_char *s, opt;
1701         u_short off;
1702         fr_ip_t *fi;
1703         ip_t *ip;
1704
1705         fi = &fin->fin_fi;
1706         hlen = fin->fin_hlen;
1707
1708         ip = fin->fin_ip;
1709         p = ip->ip_p;
1710         fi->fi_p = p;
1711         fin->fin_crc = p;
1712         fi->fi_tos = ip->ip_tos;
1713         fin->fin_id = ip->ip_id;
1714         off = ntohs(ip->ip_off);
1715
1716         /* Get both TTL and protocol */
1717         fi->fi_p = ip->ip_p;
1718         fi->fi_ttl = ip->ip_ttl;
1719
1720         /* Zero out bits not used in IPv6 address */
1721         fi->fi_src.i6[1] = 0;
1722         fi->fi_src.i6[2] = 0;
1723         fi->fi_src.i6[3] = 0;
1724         fi->fi_dst.i6[1] = 0;
1725         fi->fi_dst.i6[2] = 0;
1726         fi->fi_dst.i6[3] = 0;
1727
1728         fi->fi_saddr = ip->ip_src.s_addr;
1729         fin->fin_crc += fi->fi_saddr;
1730         fi->fi_daddr = ip->ip_dst.s_addr;
1731         fin->fin_crc += fi->fi_daddr;
1732         if (IN_CLASSD(ntohl(fi->fi_daddr)))
1733                 fin->fin_flx |= FI_MULTICAST|FI_MBCAST;
1734
1735         /*
1736          * set packet attribute flags based on the offset and
1737          * calculate the byte offset that it represents.
1738          */
1739         off &= IP_MF|IP_OFFMASK;
1740         if (off != 0) {
1741                 int morefrag = off & IP_MF;
1742
1743                 fi->fi_flx |= FI_FRAG;
1744                 off &= IP_OFFMASK;
1745                 if (off != 0) {
1746                         fin->fin_flx |= FI_FRAGBODY;
1747                         off <<= 3;
1748                         if ((off + fin->fin_dlen > 65535) ||
1749                             (fin->fin_dlen == 0) ||
1750                             ((morefrag != 0) && ((fin->fin_dlen & 7) != 0))) {
1751                                 /*
1752                                  * The length of the packet, starting at its
1753                                  * offset cannot exceed 65535 (0xffff) as the
1754                                  * length of an IP packet is only 16 bits.
1755                                  *
1756                                  * Any fragment that isn't the last fragment
1757                                  * must have a length greater than 0 and it
1758                                  * must be an even multiple of 8.
1759                                  */
1760                                 fi->fi_flx |= FI_BAD;
1761                         }
1762                 }
1763         }
1764         fin->fin_off = off;
1765
1766         /*
1767          * Call per-protocol setup and checking
1768          */
1769         if (p == IPPROTO_AH) {
1770                 /*
1771                  * Treat AH differently because we expect there to be another
1772                  * layer 4 header after it.
1773                  */
1774                 p = ipf_pr_ah(fin);
1775         }
1776
1777         switch (p)
1778         {
1779         case IPPROTO_UDP :
1780                 ipf_pr_udp(fin);
1781                 break;
1782         case IPPROTO_TCP :
1783                 ipf_pr_tcp(fin);
1784                 break;
1785         case IPPROTO_ICMP :
1786                 ipf_pr_icmp(fin);
1787                 break;
1788         case IPPROTO_ESP :
1789                 ipf_pr_esp(fin);
1790                 break;
1791         case IPPROTO_GRE :
1792                 ipf_pr_gre(fin);
1793                 break;
1794         }
1795
1796         ip = fin->fin_ip;
1797         if (ip == NULL)
1798                 return;
1799
1800         /*
1801          * If it is a standard IP header (no options), set the flag fields
1802          * which relate to options to 0.
1803          */
1804         if (hlen == sizeof(*ip)) {
1805                 fi->fi_optmsk = 0;
1806                 fi->fi_secmsk = 0;
1807                 fi->fi_auth = 0;
1808                 return;
1809         }
1810
1811         /*
1812          * So the IP header has some IP options attached.  Walk the entire
1813          * list of options present with this packet and set flags to indicate
1814          * which ones are here and which ones are not.  For the somewhat out
1815          * of date and obscure security classification options, set a flag to
1816          * represent which classification is present.
1817          */
1818         fi->fi_flx |= FI_OPTIONS;
1819
1820         for (s = (u_char *)(ip + 1), hlen -= (int)sizeof(*ip); hlen > 0; ) {
1821                 opt = *s;
1822                 if (opt == '\0')
1823                         break;
1824                 else if (opt == IPOPT_NOP)
1825                         ol = 1;
1826                 else {
1827                         if (hlen < 2)
1828                                 break;
1829                         ol = (int)*(s + 1);
1830                         if (ol < 2 || ol > hlen)
1831                                 break;
1832                 }
1833                 for (i = 9, mv = 4; mv >= 0; ) {
1834                         op = ipopts + i;
1835
1836                         if ((opt == (u_char)op->ol_val) && (ol > 4)) {
1837                                 u_32_t doi;
1838
1839                                 switch (opt)
1840                                 {
1841                                 case IPOPT_SECURITY :
1842                                         if (optmsk & op->ol_bit) {
1843                                                 fin->fin_flx |= FI_BAD;
1844                                         } else {
1845                                                 doi = ipf_checkripso(s);
1846                                                 secmsk = doi >> 16;
1847                                                 auth = doi & 0xffff;
1848                                         }
1849                                         break;
1850
1851                                 case IPOPT_CIPSO :
1852
1853                                         if (optmsk & op->ol_bit) {
1854                                                 fin->fin_flx |= FI_BAD;
1855                                         } else {
1856                                                 doi = ipf_checkcipso(fin,
1857                                                                      s, ol);
1858                                                 secmsk = doi >> 16;
1859                                                 auth = doi & 0xffff;
1860                                         }
1861                                         break;
1862                                 }
1863                                 optmsk |= op->ol_bit;
1864                         }
1865
1866                         if (opt < op->ol_val)
1867                                 i -= mv;
1868                         else
1869                                 i += mv;
1870                         mv--;
1871                 }
1872                 hlen -= ol;
1873                 s += ol;
1874         }
1875
1876         /*
1877          *
1878          */
1879         if (auth && !(auth & 0x0100))
1880                 auth &= 0xff00;
1881         fi->fi_optmsk = optmsk;
1882         fi->fi_secmsk = secmsk;
1883         fi->fi_auth = auth;
1884 }
1885
1886
1887 /* ------------------------------------------------------------------------ */
1888 /* Function:    ipf_checkripso                                              */
1889 /* Returns:     void                                                        */
1890 /* Parameters:  s(I)   - pointer to start of RIPSO option                   */
1891 /*                                                                          */
1892 /* ------------------------------------------------------------------------ */
1893 static u_32_t
1894 ipf_checkripso(s)
1895         u_char *s;
1896 {
1897         const struct optlist *sp;
1898         u_short secmsk = 0, auth = 0;
1899         u_char sec;
1900         int j, m;
1901
1902         sec = *(s + 2); /* classification */
1903         for (j = 3, m = 2; m >= 0; ) {
1904                 sp = secopt + j;
1905                 if (sec == sp->ol_val) {
1906                         secmsk |= sp->ol_bit;
1907                         auth = *(s + 3);
1908                         auth *= 256;
1909                         auth += *(s + 4);
1910                         break;
1911                 }
1912                 if (sec < sp->ol_val)
1913                         j -= m;
1914                 else
1915                         j += m;
1916                 m--;
1917         }
1918
1919         return (secmsk << 16) | auth;
1920 }
1921
1922
1923 /* ------------------------------------------------------------------------ */
1924 /* Function:    ipf_checkcipso                                              */
1925 /* Returns:     u_32_t  - 0 = failure, else the doi from the header         */
1926 /* Parameters:  fin(IO) - pointer to packet information                     */
1927 /*              s(I)    - pointer to start of CIPSO option                  */
1928 /*              ol(I)   - length of CIPSO option field                      */
1929 /*                                                                          */
1930 /* This function returns the domain of integrity (DOI) field from the CIPSO */
1931 /* header and returns that whilst also storing the highest sensitivity      */
1932 /* value found in the fr_info_t structure.                                  */
1933 /*                                                                          */
1934 /* No attempt is made to extract the category bitmaps as these are defined  */
1935 /* by the user (rather than the protocol) and can be rather numerous on the */
1936 /* end nodes.                                                               */
1937 /* ------------------------------------------------------------------------ */
1938 static u_32_t
1939 ipf_checkcipso(fin, s, ol)
1940         fr_info_t *fin;
1941         u_char *s;
1942         int ol;
1943 {
1944         ipf_main_softc_t *softc = fin->fin_main_soft;
1945         fr_ip_t *fi;
1946         u_32_t doi;
1947         u_char *t, tag, tlen, sensitivity;
1948         int len;
1949
1950         if (ol < 6 || ol > 40) {
1951                 LBUMPD(ipf_stats[fin->fin_out], fr_v4_cipso_bad);
1952                 fin->fin_flx |= FI_BAD;
1953                 return 0;
1954         }
1955
1956         fi = &fin->fin_fi;
1957         fi->fi_sensitivity = 0;
1958         /*
1959          * The DOI field MUST be there.
1960          */
1961         bcopy(s + 2, &doi, sizeof(doi));
1962
1963         t = (u_char *)s + 6;
1964         for (len = ol - 6; len >= 2; len -= tlen, t+= tlen) {
1965                 tag = *t;
1966                 tlen = *(t + 1);
1967                 if (tlen > len || tlen < 4 || tlen > 34) {
1968                         LBUMPD(ipf_stats[fin->fin_out], fr_v4_cipso_tlen);
1969                         fin->fin_flx |= FI_BAD;
1970                         return 0;
1971                 }
1972
1973                 sensitivity = 0;
1974                 /*
1975                  * Tag numbers 0, 1, 2, 5 are laid out in the CIPSO Internet
1976                  * draft (16 July 1992) that has expired.
1977                  */
1978                 if (tag == 0) {
1979                         fin->fin_flx |= FI_BAD;
1980                         continue;
1981                 } else if (tag == 1) {
1982                         if (*(t + 2) != 0) {
1983                                 fin->fin_flx |= FI_BAD;
1984                                 continue;
1985                         }
1986                         sensitivity = *(t + 3);
1987                         /* Category bitmap for categories 0-239 */
1988
1989                 } else if (tag == 4) {
1990                         if (*(t + 2) != 0) {
1991                                 fin->fin_flx |= FI_BAD;
1992                                 continue;
1993                         }
1994                         sensitivity = *(t + 3);
1995                         /* Enumerated categories, 16bits each, upto 15 */
1996
1997                 } else if (tag == 5) {
1998                         if (*(t + 2) != 0) {
1999                                 fin->fin_flx |= FI_BAD;
2000                                 continue;
2001                         }
2002                         sensitivity = *(t + 3);
2003                         /* Range of categories (2*16bits), up to 7 pairs */
2004
2005                 } else if (tag > 127) {
2006                         /* Custom defined DOI */
2007                         ;
2008                 } else {
2009                         fin->fin_flx |= FI_BAD;
2010                         continue;
2011                 }
2012
2013                 if (sensitivity > fi->fi_sensitivity)
2014                         fi->fi_sensitivity = sensitivity;
2015         }
2016
2017         return doi;
2018 }
2019
2020
2021 /* ------------------------------------------------------------------------ */
2022 /* Function:    ipf_makefrip                                                */
2023 /* Returns:     int     - 0 == packet ok, -1 == packet freed                */
2024 /* Parameters:  hlen(I) - length of IP packet header                        */
2025 /*              ip(I)   - pointer to the IP header                          */
2026 /*              fin(IO) - pointer to packet information                     */
2027 /*                                                                          */
2028 /* Compact the IP header into a structure which contains just the info.     */
2029 /* which is useful for comparing IP headers with and store this information */
2030 /* in the fr_info_t structure pointer to by fin.  At present, it is assumed */
2031 /* this function will be called with either an IPv4 or IPv6 packet.         */
2032 /* ------------------------------------------------------------------------ */
2033 int
2034 ipf_makefrip(hlen, ip, fin)
2035         int hlen;
2036         ip_t *ip;
2037         fr_info_t *fin;
2038 {
2039         ipf_main_softc_t *softc = fin->fin_main_soft;
2040         int v;
2041
2042         fin->fin_depth = 0;
2043         fin->fin_hlen = (u_short)hlen;
2044         fin->fin_ip = ip;
2045         fin->fin_rule = 0xffffffff;
2046         fin->fin_group[0] = -1;
2047         fin->fin_group[1] = '\0';
2048         fin->fin_dp = (char *)ip + hlen;
2049
2050         v = fin->fin_v;
2051         if (v == 4) {
2052                 fin->fin_plen = ntohs(ip->ip_len);
2053                 fin->fin_dlen = fin->fin_plen - hlen;
2054                 ipf_pr_ipv4hdr(fin);
2055 #ifdef  USE_INET6
2056         } else if (v == 6) {
2057                 fin->fin_plen = ntohs(((ip6_t *)ip)->ip6_plen);
2058                 fin->fin_dlen = fin->fin_plen;
2059                 fin->fin_plen += hlen;
2060
2061                 ipf_pr_ipv6hdr(fin);
2062 #endif
2063         }
2064         if (fin->fin_ip == NULL) {
2065                 LBUMP(ipf_stats[fin->fin_out].fr_ip_freed);
2066                 return -1;
2067         }
2068         return 0;
2069 }
2070
2071
2072 /* ------------------------------------------------------------------------ */
2073 /* Function:    ipf_portcheck                                               */
2074 /* Returns:     int - 1 == port matched, 0 == port match failed             */
2075 /* Parameters:  frp(I) - pointer to port check `expression'                 */
2076 /*              pop(I) - port number to evaluate                            */
2077 /*                                                                          */
2078 /* Perform a comparison of a port number against some other(s), using a     */
2079 /* structure with compare information stored in it.                         */
2080 /* ------------------------------------------------------------------------ */
2081 static INLINE int
2082 ipf_portcheck(frp, pop)
2083         frpcmp_t *frp;
2084         u_32_t pop;
2085 {
2086         int err = 1;
2087         u_32_t po;
2088
2089         po = frp->frp_port;
2090
2091         /*
2092          * Do opposite test to that required and continue if that succeeds.
2093          */
2094         switch (frp->frp_cmp)
2095         {
2096         case FR_EQUAL :
2097                 if (pop != po) /* EQUAL */
2098                         err = 0;
2099                 break;
2100         case FR_NEQUAL :
2101                 if (pop == po) /* NOTEQUAL */
2102                         err = 0;
2103                 break;
2104         case FR_LESST :
2105                 if (pop >= po) /* LESSTHAN */
2106                         err = 0;
2107                 break;
2108         case FR_GREATERT :
2109                 if (pop <= po) /* GREATERTHAN */
2110                         err = 0;
2111                 break;
2112         case FR_LESSTE :
2113                 if (pop > po) /* LT or EQ */
2114                         err = 0;
2115                 break;
2116         case FR_GREATERTE :
2117                 if (pop < po) /* GT or EQ */
2118                         err = 0;
2119                 break;
2120         case FR_OUTRANGE :
2121                 if (pop >= po && pop <= frp->frp_top) /* Out of range */
2122                         err = 0;
2123                 break;
2124         case FR_INRANGE :
2125                 if (pop <= po || pop >= frp->frp_top) /* In range */
2126                         err = 0;
2127                 break;
2128         case FR_INCRANGE :
2129                 if (pop < po || pop > frp->frp_top) /* Inclusive range */
2130                         err = 0;
2131                 break;
2132         default :
2133                 break;
2134         }
2135         return err;
2136 }
2137
2138
2139 /* ------------------------------------------------------------------------ */
2140 /* Function:    ipf_tcpudpchk                                               */
2141 /* Returns:     int - 1 == protocol matched, 0 == check failed              */
2142 /* Parameters:  fda(I) - pointer to packet information                      */
2143 /*              ft(I)  - pointer to structure with comparison data          */
2144 /*                                                                          */
2145 /* Compares the current pcket (assuming it is TCP/UDP) information with a   */
2146 /* structure containing information that we want to match against.          */
2147 /* ------------------------------------------------------------------------ */
2148 int
2149 ipf_tcpudpchk(fi, ft)
2150         fr_ip_t *fi;
2151         frtuc_t *ft;
2152 {
2153         int err = 1;
2154
2155         /*
2156          * Both ports should *always* be in the first fragment.
2157          * So far, I cannot find any cases where they can not be.
2158          *
2159          * compare destination ports
2160          */
2161         if (ft->ftu_dcmp)
2162                 err = ipf_portcheck(&ft->ftu_dst, fi->fi_ports[1]);
2163
2164         /*
2165          * compare source ports
2166          */
2167         if (err && ft->ftu_scmp)
2168                 err = ipf_portcheck(&ft->ftu_src, fi->fi_ports[0]);
2169
2170         /*
2171          * If we don't have all the TCP/UDP header, then how can we
2172          * expect to do any sort of match on it ?  If we were looking for
2173          * TCP flags, then NO match.  If not, then match (which should
2174          * satisfy the "short" class too).
2175          */
2176         if (err && (fi->fi_p == IPPROTO_TCP)) {
2177                 if (fi->fi_flx & FI_SHORT)
2178                         return !(ft->ftu_tcpf | ft->ftu_tcpfm);
2179                 /*
2180                  * Match the flags ?  If not, abort this match.
2181                  */
2182                 if (ft->ftu_tcpfm &&
2183                     ft->ftu_tcpf != (fi->fi_tcpf & ft->ftu_tcpfm)) {
2184                         FR_DEBUG(("f. %#x & %#x != %#x\n", fi->fi_tcpf,
2185                                  ft->ftu_tcpfm, ft->ftu_tcpf));
2186                         err = 0;
2187                 }
2188         }
2189         return err;
2190 }
2191
2192
2193 /* ------------------------------------------------------------------------ */
2194 /* Function:    ipf_check_ipf                                               */
2195 /* Returns:     int - 0 == match, else no match                             */
2196 /* Parameters:  fin(I)     - pointer to packet information                  */
2197 /*              fr(I)      - pointer to filter rule                         */
2198 /*              portcmp(I) - flag indicating whether to attempt matching on */
2199 /*                           TCP/UDP port data.                             */
2200 /*                                                                          */
2201 /* Check to see if a packet matches an IPFilter rule.  Checks of addresses, */
2202 /* port numbers, etc, for "standard" IPFilter rules are all orchestrated in */
2203 /* this function.                                                           */
2204 /* ------------------------------------------------------------------------ */
2205 static INLINE int
2206 ipf_check_ipf(fin, fr, portcmp)
2207         fr_info_t *fin;
2208         frentry_t *fr;
2209         int portcmp;
2210 {
2211         u_32_t  *ld, *lm, *lip;
2212         fripf_t *fri;
2213         fr_ip_t *fi;
2214         int i;
2215
2216         fi = &fin->fin_fi;
2217         fri = fr->fr_ipf;
2218         lip = (u_32_t *)fi;
2219         lm = (u_32_t *)&fri->fri_mip;
2220         ld = (u_32_t *)&fri->fri_ip;
2221
2222         /*
2223          * first 32 bits to check coversion:
2224          * IP version, TOS, TTL, protocol
2225          */
2226         i = ((*lip & *lm) != *ld);
2227         FR_DEBUG(("0. %#08x & %#08x != %#08x\n",
2228                    ntohl(*lip), ntohl(*lm), ntohl(*ld)));
2229         if (i)
2230                 return 1;
2231
2232         /*
2233          * Next 32 bits is a constructed bitmask indicating which IP options
2234          * are present (if any) in this packet.
2235          */
2236         lip++, lm++, ld++;
2237         i = ((*lip & *lm) != *ld);
2238         FR_DEBUG(("1. %#08x & %#08x != %#08x\n",
2239                    ntohl(*lip), ntohl(*lm), ntohl(*ld)));
2240         if (i != 0)
2241                 return 1;
2242
2243         lip++, lm++, ld++;
2244         /*
2245          * Unrolled loops (4 each, for 32 bits) for address checks.
2246          */
2247         /*
2248          * Check the source address.
2249          */
2250         if (fr->fr_satype == FRI_LOOKUP) {
2251                 i = (*fr->fr_srcfunc)(fin->fin_main_soft, fr->fr_srcptr,
2252                                       fi->fi_v, lip, fin->fin_plen);
2253                 if (i == -1)
2254                         return 1;
2255                 lip += 3;
2256                 lm += 3;
2257                 ld += 3;
2258         } else {
2259                 i = ((*lip & *lm) != *ld);
2260                 FR_DEBUG(("2a. %#08x & %#08x != %#08x\n",
2261                            ntohl(*lip), ntohl(*lm), ntohl(*ld)));
2262                 if (fi->fi_v == 6) {
2263                         lip++, lm++, ld++;
2264                         i |= ((*lip & *lm) != *ld);
2265                         FR_DEBUG(("2b. %#08x & %#08x != %#08x\n",
2266                                    ntohl(*lip), ntohl(*lm), ntohl(*ld)));
2267                         lip++, lm++, ld++;
2268                         i |= ((*lip & *lm) != *ld);
2269                         FR_DEBUG(("2c. %#08x & %#08x != %#08x\n",
2270                                    ntohl(*lip), ntohl(*lm), ntohl(*ld)));
2271                         lip++, lm++, ld++;
2272                         i |= ((*lip & *lm) != *ld);
2273                         FR_DEBUG(("2d. %#08x & %#08x != %#08x\n",
2274                                    ntohl(*lip), ntohl(*lm), ntohl(*ld)));
2275                 } else {
2276                         lip += 3;
2277                         lm += 3;
2278                         ld += 3;
2279                 }
2280         }
2281         i ^= (fr->fr_flags & FR_NOTSRCIP) >> 6;
2282         if (i != 0)
2283                 return 1;
2284
2285         /*
2286          * Check the destination address.
2287          */
2288         lip++, lm++, ld++;
2289         if (fr->fr_datype == FRI_LOOKUP) {
2290                 i = (*fr->fr_dstfunc)(fin->fin_main_soft, fr->fr_dstptr,
2291                                       fi->fi_v, lip, fin->fin_plen);
2292                 if (i == -1)
2293                         return 1;
2294                 lip += 3;
2295                 lm += 3;
2296                 ld += 3;
2297         } else {
2298                 i = ((*lip & *lm) != *ld);
2299                 FR_DEBUG(("3a. %#08x & %#08x != %#08x\n",
2300                            ntohl(*lip), ntohl(*lm), ntohl(*ld)));
2301                 if (fi->fi_v == 6) {
2302                         lip++, lm++, ld++;
2303                         i |= ((*lip & *lm) != *ld);
2304                         FR_DEBUG(("3b. %#08x & %#08x != %#08x\n",
2305                                    ntohl(*lip), ntohl(*lm), ntohl(*ld)));
2306                         lip++, lm++, ld++;
2307                         i |= ((*lip & *lm) != *ld);
2308                         FR_DEBUG(("3c. %#08x & %#08x != %#08x\n",
2309                                    ntohl(*lip), ntohl(*lm), ntohl(*ld)));
2310                         lip++, lm++, ld++;
2311                         i |= ((*lip & *lm) != *ld);
2312                         FR_DEBUG(("3d. %#08x & %#08x != %#08x\n",
2313                                    ntohl(*lip), ntohl(*lm), ntohl(*ld)));
2314                 } else {
2315                         lip += 3;
2316                         lm += 3;
2317                         ld += 3;
2318                 }
2319         }
2320         i ^= (fr->fr_flags & FR_NOTDSTIP) >> 7;
2321         if (i != 0)
2322                 return 1;
2323         /*
2324          * IP addresses matched.  The next 32bits contains:
2325          * mast of old IP header security & authentication bits.
2326          */
2327         lip++, lm++, ld++;
2328         i = (*ld - (*lip & *lm));
2329         FR_DEBUG(("4. %#08x & %#08x != %#08x\n", *lip, *lm, *ld));
2330
2331         /*
2332          * Next we have 32 bits of packet flags.
2333          */
2334         lip++, lm++, ld++;
2335         i |= (*ld - (*lip & *lm));
2336         FR_DEBUG(("5. %#08x & %#08x != %#08x\n", *lip, *lm, *ld));
2337
2338         if (i == 0) {
2339                 /*
2340                  * If a fragment, then only the first has what we're
2341                  * looking for here...
2342                  */
2343                 if (portcmp) {
2344                         if (!ipf_tcpudpchk(&fin->fin_fi, &fr->fr_tuc))
2345                                 i = 1;
2346                 } else {
2347                         if (fr->fr_dcmp || fr->fr_scmp ||
2348                             fr->fr_tcpf || fr->fr_tcpfm)
2349                                 i = 1;
2350                         if (fr->fr_icmpm || fr->fr_icmp) {
2351                                 if (((fi->fi_p != IPPROTO_ICMP) &&
2352                                      (fi->fi_p != IPPROTO_ICMPV6)) ||
2353                                     fin->fin_off || (fin->fin_dlen < 2))
2354                                         i = 1;
2355                                 else if ((fin->fin_data[0] & fr->fr_icmpm) !=
2356                                          fr->fr_icmp) {
2357                                         FR_DEBUG(("i. %#x & %#x != %#x\n",
2358                                                  fin->fin_data[0],
2359                                                  fr->fr_icmpm, fr->fr_icmp));
2360                                         i = 1;
2361                                 }
2362                         }
2363                 }
2364         }
2365         return i;
2366 }
2367
2368
2369 /* ------------------------------------------------------------------------ */
2370 /* Function:    ipf_scanlist                                                */
2371 /* Returns:     int - result flags of scanning filter list                  */
2372 /* Parameters:  fin(I) - pointer to packet information                      */
2373 /*              pass(I) - default result to return for filtering            */
2374 /*                                                                          */
2375 /* Check the input/output list of rules for a match to the current packet.  */
2376 /* If a match is found, the value of fr_flags from the rule becomes the     */
2377 /* return value and fin->fin_fr points to the matched rule.                 */
2378 /*                                                                          */
2379 /* This function may be called recusively upto 16 times (limit inbuilt.)    */
2380 /* When unwinding, it should finish up with fin_depth as 0.                 */
2381 /*                                                                          */
2382 /* Could be per interface, but this gets real nasty when you don't have,    */
2383 /* or can't easily change, the kernel source code to .                      */
2384 /* ------------------------------------------------------------------------ */
2385 int
2386 ipf_scanlist(fin, pass)
2387         fr_info_t *fin;
2388         u_32_t pass;
2389 {
2390         ipf_main_softc_t *softc = fin->fin_main_soft;
2391         int rulen, portcmp, off, skip;
2392         struct frentry *fr, *fnext;
2393         u_32_t passt, passo;
2394
2395         /*
2396          * Do not allow nesting deeper than 16 levels.
2397          */
2398         if (fin->fin_depth >= 16)
2399                 return pass;
2400
2401         fr = fin->fin_fr;
2402
2403         /*
2404          * If there are no rules in this list, return now.
2405          */
2406         if (fr == NULL)
2407                 return pass;
2408
2409         skip = 0;
2410         portcmp = 0;
2411         fin->fin_depth++;
2412         fin->fin_fr = NULL;
2413         off = fin->fin_off;
2414
2415         if ((fin->fin_flx & FI_TCPUDP) && (fin->fin_dlen > 3) && !off)
2416                 portcmp = 1;
2417
2418         for (rulen = 0; fr; fr = fnext, rulen++) {
2419                 fnext = fr->fr_next;
2420                 if (skip != 0) {
2421                         FR_VERBOSE(("SKIP %d (%#x)\n", skip, fr->fr_flags));
2422                         skip--;
2423                         continue;
2424                 }
2425
2426                 /*
2427                  * In all checks below, a null (zero) value in the
2428                  * filter struture is taken to mean a wildcard.
2429                  *
2430                  * check that we are working for the right interface
2431                  */
2432 #ifdef  _KERNEL
2433                 if (fr->fr_ifa && fr->fr_ifa != fin->fin_ifp)
2434                         continue;
2435 #else
2436                 if (opts & (OPT_VERBOSE|OPT_DEBUG))
2437                         printf("\n");
2438                 FR_VERBOSE(("%c", FR_ISSKIP(pass) ? 's' :
2439                                   FR_ISPASS(pass) ? 'p' :
2440                                   FR_ISACCOUNT(pass) ? 'A' :
2441                                   FR_ISAUTH(pass) ? 'a' :
2442                                   (pass & FR_NOMATCH) ? 'n' :'b'));
2443                 if (fr->fr_ifa && fr->fr_ifa != fin->fin_ifp)
2444                         continue;
2445                 FR_VERBOSE((":i"));
2446 #endif
2447
2448                 switch (fr->fr_type)
2449                 {
2450                 case FR_T_IPF :
2451                 case FR_T_IPF_BUILTIN :
2452                         if (ipf_check_ipf(fin, fr, portcmp))
2453                                 continue;
2454                         break;
2455 #if defined(IPFILTER_BPF)
2456                 case FR_T_BPFOPC :
2457                 case FR_T_BPFOPC_BUILTIN :
2458                     {
2459                         u_char *mc;
2460                         int wlen;
2461
2462                         if (*fin->fin_mp == NULL)
2463                                 continue;
2464                         if (fin->fin_family != fr->fr_family)
2465                                 continue;
2466                         mc = (u_char *)fin->fin_m;
2467                         wlen = fin->fin_dlen + fin->fin_hlen;
2468                         if (!bpf_filter(fr->fr_data, mc, wlen, 0))
2469                                 continue;
2470                         break;
2471                     }
2472 #endif
2473                 case FR_T_CALLFUNC_BUILTIN :
2474                     {
2475                         frentry_t *f;
2476
2477                         f = (*fr->fr_func)(fin, &pass);
2478                         if (f != NULL)
2479                                 fr = f;
2480                         else
2481                                 continue;
2482                         break;
2483                     }
2484
2485                 case FR_T_IPFEXPR :
2486                 case FR_T_IPFEXPR_BUILTIN :
2487                         if (fin->fin_family != fr->fr_family)
2488                                 continue;
2489                         if (ipf_fr_matcharray(fin, fr->fr_data) == 0)
2490                                 continue;
2491                         break;
2492
2493                 default :
2494                         break;
2495                 }
2496
2497                 if ((fin->fin_out == 0) && (fr->fr_nattag.ipt_num[0] != 0)) {
2498                         if (fin->fin_nattag == NULL)
2499                                 continue;
2500                         if (ipf_matchtag(&fr->fr_nattag, fin->fin_nattag) == 0)
2501                                 continue;
2502                 }
2503                 FR_VERBOSE(("=%d/%d.%d *", fr->fr_grhead, fr->fr_group, rulen));
2504
2505                 passt = fr->fr_flags;
2506
2507                 /*
2508                  * If the rule is a "call now" rule, then call the function
2509                  * in the rule, if it exists and use the results from that.
2510                  * If the function pointer is bad, just make like we ignore
2511                  * it, except for increasing the hit counter.
2512                  */
2513                 if ((passt & FR_CALLNOW) != 0) {
2514                         frentry_t *frs;
2515
2516                         ATOMIC_INC64(fr->fr_hits);
2517                         if ((fr->fr_func == NULL) ||
2518                             (fr->fr_func == (ipfunc_t)-1))
2519                                 continue;
2520
2521                         frs = fin->fin_fr;
2522                         fin->fin_fr = fr;
2523                         fr = (*fr->fr_func)(fin, &passt);
2524                         if (fr == NULL) {
2525                                 fin->fin_fr = frs;
2526                                 continue;
2527                         }
2528                         passt = fr->fr_flags;
2529                 }
2530                 fin->fin_fr = fr;
2531
2532 #ifdef  IPFILTER_LOG
2533                 /*
2534                  * Just log this packet...
2535                  */
2536                 if ((passt & FR_LOGMASK) == FR_LOG) {
2537                         if (ipf_log_pkt(fin, passt) == -1) {
2538                                 if (passt & FR_LOGORBLOCK) {
2539                                         DT(frb_logfail);
2540                                         passt &= ~FR_CMDMASK;
2541                                         passt |= FR_BLOCK|FR_QUICK;
2542                                         fin->fin_reason = FRB_LOGFAIL;
2543                                 }
2544                         }
2545                 }
2546 #endif /* IPFILTER_LOG */
2547
2548                 MUTEX_ENTER(&fr->fr_lock);
2549                 fr->fr_bytes += (U_QUAD_T)fin->fin_plen;
2550                 fr->fr_hits++;
2551                 MUTEX_EXIT(&fr->fr_lock);
2552                 fin->fin_rule = rulen;
2553
2554                 passo = pass;
2555                 if (FR_ISSKIP(passt)) {
2556                         skip = fr->fr_arg;
2557                         continue;
2558                 } else if (((passt & FR_LOGMASK) != FR_LOG) &&
2559                            ((passt & FR_LOGMASK) != FR_DECAPSULATE)) {
2560                         pass = passt;
2561                 }
2562
2563                 if (passt & (FR_RETICMP|FR_FAKEICMP))
2564                         fin->fin_icode = fr->fr_icode;
2565
2566                 if (fr->fr_group != -1) {
2567                         (void) strncpy(fin->fin_group,
2568                                        FR_NAME(fr, fr_group),
2569                                        strlen(FR_NAME(fr, fr_group)));
2570                 } else {
2571                         fin->fin_group[0] = '\0';
2572                 }
2573
2574                 FR_DEBUG(("pass %#x/%#x/%x\n", passo, pass, passt));
2575
2576                 if (fr->fr_grphead != NULL) {
2577                         fin->fin_fr = fr->fr_grphead->fg_start;
2578                         FR_VERBOSE(("group %s\n", FR_NAME(fr, fr_grhead)));
2579
2580                         if (FR_ISDECAPS(passt))
2581                                 passt = ipf_decaps(fin, pass, fr->fr_icode);
2582                         else
2583                                 passt = ipf_scanlist(fin, pass);
2584
2585                         if (fin->fin_fr == NULL) {
2586                                 fin->fin_rule = rulen;
2587                                 if (fr->fr_group != -1)
2588                                         (void) strncpy(fin->fin_group,
2589                                                        fr->fr_names +
2590                                                        fr->fr_group,
2591                                                        strlen(fr->fr_names +
2592                                                               fr->fr_group));
2593                                 fin->fin_fr = fr;
2594                                 passt = pass;
2595                         }
2596                         pass = passt;
2597                 }
2598
2599                 if (pass & FR_QUICK) {
2600                         /*
2601                          * Finally, if we've asked to track state for this
2602                          * packet, set it up.  Add state for "quick" rules
2603                          * here so that if the action fails we can consider
2604                          * the rule to "not match" and keep on processing
2605                          * filter rules.
2606                          */
2607                         if ((pass & FR_KEEPSTATE) && !FR_ISAUTH(pass) &&
2608                             !(fin->fin_flx & FI_STATE)) {
2609                                 int out = fin->fin_out;
2610
2611                                 fin->fin_fr = fr;
2612                                 if (ipf_state_add(softc, fin, NULL, 0) == 0) {
2613                                         LBUMPD(ipf_stats[out], fr_ads);
2614                                 } else {
2615                                         LBUMPD(ipf_stats[out], fr_bads);
2616                                         pass = passo;
2617                                         continue;
2618                                 }
2619                         }
2620                         break;
2621                 }
2622         }
2623         fin->fin_depth--;
2624         return pass;
2625 }
2626
2627
2628 /* ------------------------------------------------------------------------ */
2629 /* Function:    ipf_acctpkt                                                 */
2630 /* Returns:     frentry_t* - always returns NULL                            */
2631 /* Parameters:  fin(I) - pointer to packet information                      */
2632 /*              passp(IO) - pointer to current/new filter decision (unused) */
2633 /*                                                                          */
2634 /* Checks a packet against accounting rules, if there are any for the given */
2635 /* IP protocol version.                                                     */
2636 /*                                                                          */
2637 /* N.B.: this function returns NULL to match the prototype used by other    */
2638 /* functions called from the IPFilter "mainline" in ipf_check().            */
2639 /* ------------------------------------------------------------------------ */
2640 frentry_t *
2641 ipf_acctpkt(fin, passp)
2642         fr_info_t *fin;
2643         u_32_t *passp;
2644 {
2645         ipf_main_softc_t *softc = fin->fin_main_soft;
2646         char group[FR_GROUPLEN];
2647         frentry_t *fr, *frsave;
2648         u_32_t pass, rulen;
2649
2650         passp = passp;
2651         fr = softc->ipf_acct[fin->fin_out][softc->ipf_active];
2652
2653         if (fr != NULL) {
2654                 frsave = fin->fin_fr;
2655                 bcopy(fin->fin_group, group, FR_GROUPLEN);
2656                 rulen = fin->fin_rule;
2657                 fin->fin_fr = fr;
2658                 pass = ipf_scanlist(fin, FR_NOMATCH);
2659                 if (FR_ISACCOUNT(pass)) {
2660                         LBUMPD(ipf_stats[0], fr_acct);
2661                 }
2662                 fin->fin_fr = frsave;
2663                 bcopy(group, fin->fin_group, FR_GROUPLEN);
2664                 fin->fin_rule = rulen;
2665         }
2666         return NULL;
2667 }
2668
2669
2670 /* ------------------------------------------------------------------------ */
2671 /* Function:    ipf_firewall                                                */
2672 /* Returns:     frentry_t* - returns pointer to matched rule, if no matches */
2673 /*                           were found, returns NULL.                      */
2674 /* Parameters:  fin(I) - pointer to packet information                      */
2675 /*              passp(IO) - pointer to current/new filter decision (unused) */
2676 /*                                                                          */
2677 /* Applies an appropriate set of firewall rules to the packet, to see if    */
2678 /* there are any matches.  The first check is to see if a match can be seen */
2679 /* in the cache.  If not, then search an appropriate list of rules.  Once a */
2680 /* matching rule is found, take any appropriate actions as defined by the   */
2681 /* rule - except logging.                                                   */
2682 /* ------------------------------------------------------------------------ */
2683 static frentry_t *
2684 ipf_firewall(fin, passp)
2685         fr_info_t *fin;
2686         u_32_t *passp;
2687 {
2688         ipf_main_softc_t *softc = fin->fin_main_soft;
2689         frentry_t *fr;
2690         u_32_t pass;
2691         int out;
2692
2693         out = fin->fin_out;
2694         pass = *passp;
2695
2696         /*
2697          * This rule cache will only affect packets that are not being
2698          * statefully filtered.
2699          */
2700         fin->fin_fr = softc->ipf_rules[out][softc->ipf_active];
2701         if (fin->fin_fr != NULL)
2702                 pass = ipf_scanlist(fin, softc->ipf_pass);
2703
2704         if ((pass & FR_NOMATCH)) {
2705                 LBUMPD(ipf_stats[out], fr_nom);
2706         }
2707         fr = fin->fin_fr;
2708
2709         /*
2710          * Apply packets per second rate-limiting to a rule as required.
2711          */
2712         if ((fr != NULL) && (fr->fr_pps != 0) &&
2713             !ppsratecheck(&fr->fr_lastpkt, &fr->fr_curpps, fr->fr_pps)) {
2714                 DT2(frb_ppsrate, fr_info_t *, fin, frentry_t *, fr);
2715                 pass &= ~(FR_CMDMASK|FR_RETICMP|FR_RETRST);
2716                 pass |= FR_BLOCK;
2717                 LBUMPD(ipf_stats[out], fr_ppshit);
2718                 fin->fin_reason = FRB_PPSRATE;
2719         }
2720
2721         /*
2722          * If we fail to add a packet to the authorization queue, then we
2723          * drop the packet later.  However, if it was added then pretend
2724          * we've dropped it already.
2725          */
2726         if (FR_ISAUTH(pass)) {
2727                 if (ipf_auth_new(fin->fin_m, fin) != 0) {
2728                         DT1(frb_authnew, fr_info_t *, fin);
2729                         fin->fin_m = *fin->fin_mp = NULL;
2730                         fin->fin_reason = FRB_AUTHNEW;
2731                         fin->fin_error = 0;
2732                 } else {
2733                         IPFERROR(1);
2734                         fin->fin_error = ENOSPC;
2735                 }
2736         }
2737
2738         if ((fr != NULL) && (fr->fr_func != NULL) &&
2739             (fr->fr_func != (ipfunc_t)-1) && !(pass & FR_CALLNOW))
2740                 (void) (*fr->fr_func)(fin, &pass);
2741
2742         /*
2743          * If a rule is a pre-auth rule, check again in the list of rules
2744          * loaded for authenticated use.  It does not particulary matter
2745          * if this search fails because a "preauth" result, from a rule,
2746          * is treated as "not a pass", hence the packet is blocked.
2747          */
2748         if (FR_ISPREAUTH(pass)) {
2749                 pass = ipf_auth_pre_scanlist(softc, fin, pass);
2750         }
2751
2752         /*
2753          * If the rule has "keep frag" and the packet is actually a fragment,
2754          * then create a fragment state entry.
2755          */
2756         if (pass & FR_KEEPFRAG) {
2757                 if (fin->fin_flx & FI_FRAG) {
2758                         if (ipf_frag_new(softc, fin, pass) == -1) {
2759                                 LBUMP(ipf_stats[out].fr_bnfr);
2760                         } else {
2761                                 LBUMP(ipf_stats[out].fr_nfr);
2762                         }
2763                 } else {
2764                         LBUMP(ipf_stats[out].fr_cfr);
2765                 }
2766         }
2767
2768         fr = fin->fin_fr;
2769         *passp = pass;
2770
2771         return fr;
2772 }
2773
2774
2775 /* ------------------------------------------------------------------------ */
2776 /* Function:    ipf_check                                                   */
2777 /* Returns:     int -  0 == packet allowed through,                         */
2778 /*              User space:                                                 */
2779 /*                    -1 == packet blocked                                  */
2780 /*                     1 == packet not matched                              */
2781 /*                    -2 == requires authentication                         */
2782 /*              Kernel:                                                     */
2783 /*                   > 0 == filter error # for packet                       */
2784 /* Parameters: ip(I)   - pointer to start of IPv4/6 packet                  */
2785 /*             hlen(I) - length of header                                   */
2786 /*             ifp(I)  - pointer to interface this packet is on             */
2787 /*             out(I)  - 0 == packet going in, 1 == packet going out        */
2788 /*             mp(IO)  - pointer to caller's buffer pointer that holds this */
2789 /*                       IP packet.                                         */
2790 /* Solaris & HP-UX ONLY :                                                   */
2791 /*             qpi(I)  - pointer to STREAMS queue information for this      */
2792 /*                       interface & direction.                             */
2793 /*                                                                          */
2794 /* ipf_check() is the master function for all IPFilter packet processing.   */
2795 /* It orchestrates: Network Address Translation (NAT), checking for packet  */
2796 /* authorisation (or pre-authorisation), presence of related state info.,   */
2797 /* generating log entries, IP packet accounting, routing of packets as      */
2798 /* directed by firewall rules and of course whether or not to allow the     */
2799 /* packet to be further processed by the kernel.                            */
2800 /*                                                                          */
2801 /* For packets blocked, the contents of "mp" will be NULL'd and the buffer  */
2802 /* freed.  Packets passed may be returned with the pointer pointed to by    */
2803 /* by "mp" changed to a new buffer.                                         */
2804 /* ------------------------------------------------------------------------ */
2805 int
2806 ipf_check(ctx, ip, hlen, ifp, out
2807 #if defined(_KERNEL) && defined(MENTAT)
2808         , qif, mp)
2809         void *qif;
2810 #else
2811         , mp)
2812 #endif
2813         mb_t **mp;
2814         ip_t *ip;
2815         int hlen;
2816         void *ifp;
2817         int out;
2818         void *ctx;
2819 {
2820         /*
2821          * The above really sucks, but short of writing a diff
2822          */
2823         ipf_main_softc_t *softc = ctx;
2824         fr_info_t frinfo;
2825         fr_info_t *fin = &frinfo;
2826         u_32_t pass = softc->ipf_pass;
2827         frentry_t *fr = NULL;
2828         int v = IP_V(ip);
2829         mb_t *mc = NULL;
2830         mb_t *m;
2831         /*
2832          * The first part of ipf_check() deals with making sure that what goes
2833          * into the filtering engine makes some sense.  Information about the
2834          * the packet is distilled, collected into a fr_info_t structure and
2835          * the an attempt to ensure the buffer the packet is in is big enough
2836          * to hold all the required packet headers.
2837          */
2838 #ifdef  _KERNEL
2839 # ifdef MENTAT
2840         qpktinfo_t *qpi = qif;
2841
2842 #  ifdef __sparc
2843         if ((u_int)ip & 0x3)
2844                 return 2;
2845 #  endif
2846 # else
2847         SPL_INT(s);
2848 # endif
2849
2850         if (softc->ipf_running <= 0) {
2851                 return 0;
2852         }
2853
2854         bzero((char *)fin, sizeof(*fin));
2855
2856 # ifdef MENTAT
2857         if (qpi->qpi_flags & QF_BROADCAST)
2858                 fin->fin_flx |= FI_MBCAST|FI_BROADCAST;
2859         if (qpi->qpi_flags & QF_MULTICAST)
2860                 fin->fin_flx |= FI_MBCAST|FI_MULTICAST;
2861         m = qpi->qpi_m;
2862         fin->fin_qfm = m;
2863         fin->fin_qpi = qpi;
2864 # else /* MENTAT */
2865
2866         m = *mp;
2867
2868 #  if defined(M_MCAST)
2869         if ((m->m_flags & M_MCAST) != 0)
2870                 fin->fin_flx |= FI_MBCAST|FI_MULTICAST;
2871 #  endif
2872 #  if defined(M_MLOOP)
2873         if ((m->m_flags & M_MLOOP) != 0)
2874                 fin->fin_flx |= FI_MBCAST|FI_MULTICAST;
2875 #  endif
2876 #  if defined(M_BCAST)
2877         if ((m->m_flags & M_BCAST) != 0)
2878                 fin->fin_flx |= FI_MBCAST|FI_BROADCAST;
2879 #  endif
2880 #  ifdef M_CANFASTFWD
2881         /*
2882          * XXX For now, IP Filter and fast-forwarding of cached flows
2883          * XXX are mutually exclusive.  Eventually, IP Filter should
2884          * XXX get a "can-fast-forward" filter rule.
2885          */
2886         m->m_flags &= ~M_CANFASTFWD;
2887 #  endif /* M_CANFASTFWD */
2888 #  if defined(CSUM_DELAY_DATA) && (!defined(__FreeBSD_version) || \
2889                                    (__FreeBSD_version < 501108))
2890         /*
2891          * disable delayed checksums.
2892          */
2893         if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA) {
2894                 in_delayed_cksum(m);
2895                 m->m_pkthdr.csum_flags &= ~CSUM_DELAY_DATA;
2896         }
2897 #  endif /* CSUM_DELAY_DATA */
2898 # endif /* MENTAT */
2899 #else
2900         bzero((char *)fin, sizeof(*fin));
2901         m = *mp;
2902 # if defined(M_MCAST)
2903         if ((m->m_flags & M_MCAST) != 0)
2904                 fin->fin_flx |= FI_MBCAST|FI_MULTICAST;
2905 # endif
2906 # if defined(M_MLOOP)
2907         if ((m->m_flags & M_MLOOP) != 0)
2908                 fin->fin_flx |= FI_MBCAST|FI_MULTICAST;
2909 # endif
2910 # if defined(M_BCAST)
2911         if ((m->m_flags & M_BCAST) != 0)
2912                 fin->fin_flx |= FI_MBCAST|FI_BROADCAST;
2913 # endif
2914 #endif /* _KERNEL */
2915
2916         fin->fin_v = v;
2917         fin->fin_m = m;
2918         fin->fin_ip = ip;
2919         fin->fin_mp = mp;
2920         fin->fin_out = out;
2921         fin->fin_ifp = ifp;
2922         fin->fin_error = ENETUNREACH;
2923         fin->fin_hlen = (u_short)hlen;
2924         fin->fin_dp = (char *)ip + hlen;
2925         fin->fin_main_soft = softc;
2926
2927         fin->fin_ipoff = (char *)ip - MTOD(m, char *);
2928
2929         SPL_NET(s);
2930
2931 #ifdef  USE_INET6
2932         if (v == 6) {
2933                 LBUMP(ipf_stats[out].fr_ipv6);
2934                 /*
2935                  * Jumbo grams are quite likely too big for internal buffer
2936                  * structures to handle comfortably, for now, so just drop
2937                  * them.
2938                  */
2939                 if (((ip6_t *)ip)->ip6_plen == 0) {
2940                         DT1(frb_jumbo, ip6_t *, (ip6_t *)ip);
2941                         pass = FR_BLOCK|FR_NOMATCH;
2942                         fin->fin_reason = FRB_JUMBO;
2943                         goto finished;
2944                 }
2945                 fin->fin_family = AF_INET6;
2946         } else
2947 #endif
2948         {
2949                 fin->fin_family = AF_INET;
2950         }
2951
2952         if (ipf_makefrip(hlen, ip, fin) == -1) {
2953                 DT1(frb_makefrip, fr_info_t *, fin);
2954                 pass = FR_BLOCK|FR_NOMATCH;
2955                 fin->fin_reason = FRB_MAKEFRIP;
2956                 goto finished;
2957         }
2958
2959         /*
2960          * For at least IPv6 packets, if a m_pullup() fails then this pointer
2961          * becomes NULL and so we have no packet to free.
2962          */
2963         if (*fin->fin_mp == NULL)
2964                 goto finished;
2965
2966         if (!out) {
2967                 if (v == 4) {
2968                         if (softc->ipf_chksrc && !ipf_verifysrc(fin)) {
2969                                 LBUMPD(ipf_stats[0], fr_v4_badsrc);
2970                                 fin->fin_flx |= FI_BADSRC;
2971                         }
2972                         if (fin->fin_ip->ip_ttl < softc->ipf_minttl) {
2973                                 LBUMPD(ipf_stats[0], fr_v4_badttl);
2974                                 fin->fin_flx |= FI_LOWTTL;
2975                         }
2976                 }
2977 #ifdef USE_INET6
2978                 else  if (v == 6) {
2979                         if (((ip6_t *)ip)->ip6_hlim < softc->ipf_minttl) {
2980                                 LBUMPD(ipf_stats[0], fr_v6_badttl);
2981                                 fin->fin_flx |= FI_LOWTTL;
2982                         }
2983                 }
2984 #endif
2985         }
2986
2987         if (fin->fin_flx & FI_SHORT) {
2988                 LBUMPD(ipf_stats[out], fr_short);
2989         }
2990
2991         READ_ENTER(&softc->ipf_mutex);
2992
2993         if (!out) {
2994                 switch (fin->fin_v)
2995                 {
2996                 case 4 :
2997                         if (ipf_nat_checkin(fin, &pass) == -1) {
2998                                 goto filterdone;
2999                         }
3000                         break;
3001 #ifdef USE_INET6
3002                 case 6 :
3003                         if (ipf_nat6_checkin(fin, &pass) == -1) {
3004                                 goto filterdone;
3005                         }
3006                         break;
3007 #endif
3008                 default :
3009                         break;
3010                 }
3011         }
3012         /*
3013          * Check auth now.
3014          * If a packet is found in the auth table, then skip checking
3015          * the access lists for permission but we do need to consider
3016          * the result as if it were from the ACL's.  In addition, being
3017          * found in the auth table means it has been seen before, so do
3018          * not pass it through accounting (again), lest it be counted twice.
3019          */
3020         fr = ipf_auth_check(fin, &pass);
3021         if (!out && (fr == NULL))
3022                 (void) ipf_acctpkt(fin, NULL);
3023
3024         if (fr == NULL) {
3025                 if ((fin->fin_flx & FI_FRAG) != 0)
3026                         fr = ipf_frag_known(fin, &pass);
3027
3028                 if (fr == NULL)
3029                         fr = ipf_state_check(fin, &pass);
3030         }
3031
3032         if ((pass & FR_NOMATCH) || (fr == NULL))
3033                 fr = ipf_firewall(fin, &pass);
3034
3035         /*
3036          * If we've asked to track state for this packet, set it up.
3037          * Here rather than ipf_firewall because ipf_checkauth may decide
3038          * to return a packet for "keep state"
3039          */
3040         if ((pass & FR_KEEPSTATE) && (fin->fin_m != NULL) &&
3041             !(fin->fin_flx & FI_STATE)) {
3042                 if (ipf_state_add(softc, fin, NULL, 0) == 0) {
3043                         LBUMP(ipf_stats[out].fr_ads);
3044                 } else {
3045                         LBUMP(ipf_stats[out].fr_bads);
3046                         if (FR_ISPASS(pass)) {
3047                                 DT(frb_stateadd);
3048                                 pass &= ~FR_CMDMASK;
3049                                 pass |= FR_BLOCK;
3050                                 fin->fin_reason = FRB_STATEADD;
3051                         }
3052                 }
3053         }
3054
3055         fin->fin_fr = fr;
3056         if ((fr != NULL) && !(fin->fin_flx & FI_STATE)) {
3057                 fin->fin_dif = &fr->fr_dif;
3058                 fin->fin_tif = &fr->fr_tifs[fin->fin_rev];
3059         }
3060
3061         /*
3062          * Only count/translate packets which will be passed on, out the
3063          * interface.
3064          */
3065         if (out && FR_ISPASS(pass)) {
3066                 (void) ipf_acctpkt(fin, NULL);
3067
3068                 switch (fin->fin_v)
3069                 {
3070                 case 4 :
3071                         if (ipf_nat_checkout(fin, &pass) == -1) {
3072                                 ;
3073                         } else if ((softc->ipf_update_ipid != 0) && (v == 4)) {
3074                                 if (ipf_updateipid(fin) == -1) {
3075                                         DT(frb_updateipid);
3076                                         LBUMP(ipf_stats[1].fr_ipud);
3077                                         pass &= ~FR_CMDMASK;
3078                                         pass |= FR_BLOCK;
3079                                         fin->fin_reason = FRB_UPDATEIPID;
3080                                 } else {
3081                                         LBUMP(ipf_stats[0].fr_ipud);
3082                                 }
3083                         }
3084                         break;
3085 #ifdef USE_INET6
3086                 case 6 :
3087                         (void) ipf_nat6_checkout(fin, &pass);
3088                         break;
3089 #endif
3090                 default :
3091                         break;
3092                 }
3093         }
3094
3095 filterdone:
3096 #ifdef  IPFILTER_LOG
3097         if ((softc->ipf_flags & FF_LOGGING) || (pass & FR_LOGMASK)) {
3098                 (void) ipf_dolog(fin, &pass);
3099         }
3100 #endif
3101
3102         /*
3103          * The FI_STATE flag is cleared here so that calling ipf_state_check
3104          * will work when called from inside of fr_fastroute.  Although
3105          * there is a similar flag, FI_NATED, for NAT, it does have the same
3106          * impact on code execution.
3107          */
3108         fin->fin_flx &= ~FI_STATE;
3109
3110 #if defined(FASTROUTE_RECURSION)
3111         /*
3112          * Up the reference on fr_lock and exit ipf_mutex. The generation of
3113          * a packet below can sometimes cause a recursive call into IPFilter.
3114          * On those platforms where that does happen, we need to hang onto
3115          * the filter rule just in case someone decides to remove or flush it
3116          * in the meantime.
3117          */
3118         if (fr != NULL) {
3119                 MUTEX_ENTER(&fr->fr_lock);
3120                 fr->fr_ref++;
3121                 MUTEX_EXIT(&fr->fr_lock);
3122         }
3123
3124         RWLOCK_EXIT(&softc->ipf_mutex);
3125 #endif
3126
3127         if ((pass & FR_RETMASK) != 0) {
3128                 /*
3129                  * Should we return an ICMP packet to indicate error
3130                  * status passing through the packet filter ?
3131                  * WARNING: ICMP error packets AND TCP RST packets should
3132                  * ONLY be sent in repsonse to incoming packets.  Sending
3133                  * them in response to outbound packets can result in a
3134                  * panic on some operating systems.
3135                  */
3136                 if (!out) {
3137                         if (pass & FR_RETICMP) {
3138                                 int dst;
3139
3140                                 if ((pass & FR_RETMASK) == FR_FAKEICMP)
3141                                         dst = 1;
3142                                 else
3143                                         dst = 0;
3144                                 (void) ipf_send_icmp_err(ICMP_UNREACH, fin,
3145                                                          dst);
3146                                 LBUMP(ipf_stats[0].fr_ret);
3147                         } else if (((pass & FR_RETMASK) == FR_RETRST) &&
3148                                    !(fin->fin_flx & FI_SHORT)) {
3149                                 if (((fin->fin_flx & FI_OOW) != 0) ||
3150                                     (ipf_send_reset(fin) == 0)) {
3151                                         LBUMP(ipf_stats[1].fr_ret);
3152                                 }
3153                         }
3154
3155                         /*
3156                          * When using return-* with auth rules, the auth code
3157                          * takes over disposing of this packet.
3158                          */
3159                         if (FR_ISAUTH(pass) && (fin->fin_m != NULL)) {
3160                                 DT1(frb_authcapture, fr_info_t *, fin);
3161                                 fin->fin_m = *fin->fin_mp = NULL;
3162                                 fin->fin_reason = FRB_AUTHCAPTURE;
3163                                 m = NULL;
3164                         }
3165                 } else {
3166                         if (pass & FR_RETRST) {
3167                                 fin->fin_error = ECONNRESET;
3168                         }
3169                 }
3170         }
3171
3172         /*
3173          * After the above so that ICMP unreachables and TCP RSTs get
3174          * created properly.
3175          */
3176         if (FR_ISBLOCK(pass) && (fin->fin_flx & FI_NEWNAT))
3177                 ipf_nat_uncreate(fin);
3178
3179         /*
3180          * If we didn't drop off the bottom of the list of rules (and thus
3181          * the 'current' rule fr is not NULL), then we may have some extra
3182          * instructions about what to do with a packet.
3183          * Once we're finished return to our caller, freeing the packet if
3184          * we are dropping it.
3185          */
3186         if (fr != NULL) {
3187                 frdest_t *fdp;
3188
3189                 /*
3190                  * Generate a duplicated packet first because ipf_fastroute
3191                  * can lead to fin_m being free'd... not good.
3192                  */
3193                 fdp = fin->fin_dif;
3194                 if ((fdp != NULL) && (fdp->fd_ptr != NULL) &&
3195                     (fdp->fd_ptr != (void *)-1)) {
3196                         mc = M_COPY(fin->fin_m);
3197                         if (mc != NULL)
3198                                 ipf_fastroute(mc, &mc, fin, fdp);
3199                 }
3200
3201                 fdp = fin->fin_tif;
3202                 if (!out && (pass & FR_FASTROUTE)) {
3203                         /*
3204                          * For fastroute rule, no destination interface defined
3205                          * so pass NULL as the frdest_t parameter
3206                          */
3207                         (void) ipf_fastroute(fin->fin_m, mp, fin, NULL);
3208                         m = *mp = NULL;
3209                 } else if ((fdp != NULL) && (fdp->fd_ptr != NULL) &&
3210                            (fdp->fd_ptr != (struct ifnet *)-1)) {
3211                         /* this is for to rules: */
3212                         ipf_fastroute(fin->fin_m, mp, fin, fdp);
3213                         m = *mp = NULL;
3214                 }
3215
3216 #if defined(FASTROUTE_RECURSION)
3217                 (void) ipf_derefrule(softc, &fr);
3218 #endif
3219         }
3220 #if !defined(FASTROUTE_RECURSION)
3221         RWLOCK_EXIT(&softc->ipf_mutex);
3222 #endif
3223
3224 finished:
3225         if (!FR_ISPASS(pass)) {
3226                 LBUMP(ipf_stats[out].fr_block);
3227                 if (*mp != NULL) {
3228 #ifdef _KERNEL
3229                         FREE_MB_T(*mp);
3230 #endif
3231                         m = *mp = NULL;
3232                 }
3233         } else {
3234                 LBUMP(ipf_stats[out].fr_pass);
3235 #if defined(_KERNEL) && defined(__sgi)
3236                 if ((fin->fin_hbuf != NULL) &&
3237                     (mtod(fin->fin_m, struct ip *) != fin->fin_ip)) {
3238                         COPYBACK(fin->fin_m, 0, fin->fin_plen, fin->fin_hbuf);
3239                 }
3240 #endif
3241         }
3242
3243         SPL_X(s);
3244
3245 #ifdef _KERNEL
3246         if (FR_ISPASS(pass))
3247                 return 0;
3248         LBUMP(ipf_stats[out].fr_blocked[fin->fin_reason]);
3249         return fin->fin_error;
3250 #else /* _KERNEL */
3251         if (*mp != NULL)
3252                 (*mp)->mb_ifp = fin->fin_ifp;
3253         blockreason = fin->fin_reason;
3254         FR_VERBOSE(("fin_flx %#x pass %#x ", fin->fin_flx, pass));
3255         /*if ((pass & FR_CMDMASK) == (softc->ipf_pass & FR_CMDMASK))*/
3256                 if ((pass & FR_NOMATCH) != 0)
3257                         return 1;
3258
3259         if ((pass & FR_RETMASK) != 0)
3260                 switch (pass & FR_RETMASK)
3261                 {
3262                 case FR_RETRST :
3263                         return 3;
3264                 case FR_RETICMP :
3265                         return 4;
3266                 case FR_FAKEICMP :
3267                         return 5;
3268                 }
3269
3270         switch (pass & FR_CMDMASK)
3271         {
3272         case FR_PASS :
3273                 return 0;
3274         case FR_BLOCK :
3275                 return -1;
3276         case FR_AUTH :
3277                 return -2;
3278         case FR_ACCOUNT :
3279                 return -3;
3280         case FR_PREAUTH :
3281                 return -4;
3282         }
3283         return 2;
3284 #endif /* _KERNEL */
3285 }
3286
3287
3288 #ifdef  IPFILTER_LOG
3289 /* ------------------------------------------------------------------------ */
3290 /* Function:    ipf_dolog                                                   */
3291 /* Returns:     frentry_t* - returns contents of fin_fr (no change made)    */
3292 /* Parameters:  fin(I) - pointer to packet information                      */
3293 /*              passp(IO) - pointer to current/new filter decision (unused) */
3294 /*                                                                          */
3295 /* Checks flags set to see how a packet should be logged, if it is to be    */
3296 /* logged.  Adjust statistics based on its success or not.                  */
3297 /* ------------------------------------------------------------------------ */
3298 frentry_t *
3299 ipf_dolog(fin, passp)
3300         fr_info_t *fin;
3301         u_32_t *passp;
3302 {
3303         ipf_main_softc_t *softc = fin->fin_main_soft;
3304         u_32_t pass;
3305         int out;
3306
3307         out = fin->fin_out;
3308         pass = *passp;
3309
3310         if ((softc->ipf_flags & FF_LOGNOMATCH) && (pass & FR_NOMATCH)) {
3311                 pass |= FF_LOGNOMATCH;
3312                 LBUMPD(ipf_stats[out], fr_npkl);
3313                 goto logit;
3314
3315         } else if (((pass & FR_LOGMASK) == FR_LOGP) ||
3316             (FR_ISPASS(pass) && (softc->ipf_flags & FF_LOGPASS))) {
3317                 if ((pass & FR_LOGMASK) != FR_LOGP)
3318                         pass |= FF_LOGPASS;
3319                 LBUMPD(ipf_stats[out], fr_ppkl);
3320                 goto logit;
3321
3322         } else if (((pass & FR_LOGMASK) == FR_LOGB) ||
3323                    (FR_ISBLOCK(pass) && (softc->ipf_flags & FF_LOGBLOCK))) {
3324                 if ((pass & FR_LOGMASK) != FR_LOGB)
3325                         pass |= FF_LOGBLOCK;
3326                 LBUMPD(ipf_stats[out], fr_bpkl);
3327
3328 logit:
3329                 if (ipf_log_pkt(fin, pass) == -1) {
3330                         /*
3331                          * If the "or-block" option has been used then
3332                          * block the packet if we failed to log it.
3333                          */
3334                         if ((pass & FR_LOGORBLOCK) && FR_ISPASS(pass)) {
3335                                 DT1(frb_logfail2, u_int, pass);
3336                                 pass &= ~FR_CMDMASK;
3337                                 pass |= FR_BLOCK;
3338                                 fin->fin_reason = FRB_LOGFAIL2;
3339                         }
3340                 }
3341                 *passp = pass;
3342         }
3343
3344         return fin->fin_fr;
3345 }
3346 #endif /* IPFILTER_LOG */
3347
3348
3349 /* ------------------------------------------------------------------------ */
3350 /* Function:    ipf_cksum                                                   */
3351 /* Returns:     u_short - IP header checksum                                */
3352 /* Parameters:  addr(I) - pointer to start of buffer to checksum            */
3353 /*              len(I)  - length of buffer in bytes                         */
3354 /*                                                                          */
3355 /* Calculate the two's complement 16 bit checksum of the buffer passed.     */
3356 /*                                                                          */
3357 /* N.B.: addr should be 16bit aligned.                                      */
3358 /* ------------------------------------------------------------------------ */
3359 u_short
3360 ipf_cksum(addr, len)
3361         u_short *addr;
3362         int len;
3363 {
3364         u_32_t sum = 0;
3365
3366         for (sum = 0; len > 1; len -= 2)
3367                 sum += *addr++;
3368
3369         /* mop up an odd byte, if necessary */
3370         if (len == 1)
3371                 sum += *(u_char *)addr;
3372
3373         /*
3374          * add back carry outs from top 16 bits to low 16 bits
3375          */
3376         sum = (sum >> 16) + (sum & 0xffff);     /* add hi 16 to low 16 */
3377         sum += (sum >> 16);                     /* add carry */
3378         return (u_short)(~sum);
3379 }
3380
3381
3382 /* ------------------------------------------------------------------------ */
3383 /* Function:    fr_cksum                                                    */
3384 /* Returns:     u_short - layer 4 checksum                                  */
3385 /* Parameters:  fin(I)     - pointer to packet information                  */
3386 /*              ip(I)      - pointer to IP header                           */
3387 /*              l4proto(I) - protocol to caclulate checksum for             */
3388 /*              l4hdr(I)   - pointer to layer 4 header                      */
3389 /*                                                                          */
3390 /* Calculates the TCP checksum for the packet held in "m", using the data   */
3391 /* in the IP header "ip" to seed it.                                        */
3392 /*                                                                          */
3393 /* NB: This function assumes we've pullup'd enough for all of the IP header */
3394 /* and the TCP header.  We also assume that data blocks aren't allocated in */
3395 /* odd sizes.                                                               */
3396 /*                                                                          */
3397 /* Expects ip_len and ip_off to be in network byte order when called.       */
3398 /* ------------------------------------------------------------------------ */
3399 u_short
3400 fr_cksum(fin, ip, l4proto, l4hdr)
3401         fr_info_t *fin;
3402         ip_t *ip;
3403         int l4proto;
3404         void *l4hdr;
3405 {
3406         u_short *sp, slen, sumsave, *csump;
3407         u_int sum, sum2;
3408         int hlen;
3409         int off;
3410 #ifdef  USE_INET6
3411         ip6_t *ip6;
3412 #endif
3413
3414         csump = NULL;
3415         sumsave = 0;
3416         sp = NULL;
3417         slen = 0;
3418         hlen = 0;
3419         sum = 0;
3420
3421         sum = htons((u_short)l4proto);
3422         /*
3423          * Add up IP Header portion
3424          */
3425 #ifdef  USE_INET6
3426         if (IP_V(ip) == 4) {
3427 #endif
3428                 hlen = IP_HL(ip) << 2;
3429                 off = hlen;
3430                 sp = (u_short *)&ip->ip_src;
3431                 sum += *sp++;   /* ip_src */
3432                 sum += *sp++;
3433                 sum += *sp++;   /* ip_dst */
3434                 sum += *sp++;
3435 #ifdef  USE_INET6
3436         } else if (IP_V(ip) == 6) {
3437                 ip6 = (ip6_t *)ip;
3438                 hlen = sizeof(*ip6);
3439                 off = ((char *)fin->fin_dp - (char *)fin->fin_ip);
3440                 sp = (u_short *)&ip6->ip6_src;
3441                 sum += *sp++;   /* ip6_src */
3442                 sum += *sp++;
3443                 sum += *sp++;
3444                 sum += *sp++;
3445                 sum += *sp++;
3446                 sum += *sp++;
3447                 sum += *sp++;
3448                 sum += *sp++;
3449                 /* This needs to be routing header aware. */
3450                 sum += *sp++;   /* ip6_dst */
3451                 sum += *sp++;
3452                 sum += *sp++;
3453                 sum += *sp++;
3454                 sum += *sp++;
3455                 sum += *sp++;
3456                 sum += *sp++;
3457                 sum += *sp++;
3458         } else {
3459                 return 0xffff;
3460         }
3461 #endif
3462         slen = fin->fin_plen - off;
3463         sum += htons(slen);
3464
3465         switch (l4proto)
3466         {
3467         case IPPROTO_UDP :
3468                 csump = &((udphdr_t *)l4hdr)->uh_sum;
3469                 break;
3470
3471         case IPPROTO_TCP :
3472                 csump = &((tcphdr_t *)l4hdr)->th_sum;
3473                 break;
3474         case IPPROTO_ICMP :
3475                 csump = &((icmphdr_t *)l4hdr)->icmp_cksum;
3476                 sum = 0;        /* Pseudo-checksum is not included */
3477                 break;
3478 #ifdef USE_INET6
3479         case IPPROTO_ICMPV6 :
3480                 csump = &((struct icmp6_hdr *)l4hdr)->icmp6_cksum;
3481                 break;
3482 #endif
3483         default :
3484                 break;
3485         }
3486
3487         if (csump != NULL) {
3488                 sumsave = *csump;
3489                 *csump = 0;
3490         }
3491
3492         sum2 = ipf_pcksum(fin, off, sum);
3493         if (csump != NULL)
3494                 *csump = sumsave;
3495         return sum2;
3496 }
3497
3498
3499 /* ------------------------------------------------------------------------ */
3500 /* Function:    ipf_findgroup                                               */
3501 /* Returns:     frgroup_t * - NULL = group not found, else pointer to group */
3502 /* Parameters:  softc(I) - pointer to soft context main structure           */
3503 /*              group(I) - group name to search for                         */
3504 /*              unit(I)  - device to which this group belongs               */
3505 /*              set(I)   - which set of rules (inactive/inactive) this is   */
3506 /*              fgpp(O)  - pointer to place to store pointer to the pointer */
3507 /*                         to where to add the next (last) group or where   */
3508 /*                         to delete group from.                            */
3509 /*                                                                          */
3510 /* Search amongst the defined groups for a particular group number.         */
3511 /* ------------------------------------------------------------------------ */
3512 frgroup_t *
3513 ipf_findgroup(softc, group, unit, set, fgpp)
3514         ipf_main_softc_t *softc;
3515         char *group;
3516         minor_t unit;
3517         int set;
3518         frgroup_t ***fgpp;
3519 {
3520         frgroup_t *fg, **fgp;
3521
3522         /*
3523          * Which list of groups to search in is dependent on which list of
3524          * rules are being operated on.
3525          */
3526         fgp = &softc->ipf_groups[unit][set];
3527
3528         while ((fg = *fgp) != NULL) {
3529                 if (strncmp(group, fg->fg_name, FR_GROUPLEN) == 0)
3530                         break;
3531                 else
3532                         fgp = &fg->fg_next;
3533         }
3534         if (fgpp != NULL)
3535                 *fgpp = fgp;
3536         return fg;
3537 }
3538
3539
3540 /* ------------------------------------------------------------------------ */
3541 /* Function:    ipf_group_add                                               */
3542 /* Returns:     frgroup_t * - NULL == did not create group,                 */
3543 /*                            != NULL == pointer to the group               */
3544 /* Parameters:  softc(I) - pointer to soft context main structure           */
3545 /*              num(I)   - group number to add                              */
3546 /*              head(I)  - rule pointer that is using this as the head      */
3547 /*              flags(I) - rule flags which describe the type of rule it is */
3548 /*              unit(I)  - device to which this group will belong to        */
3549 /*              set(I)   - which set of rules (inactive/inactive) this is   */
3550 /* Write Locks: ipf_mutex                                                   */
3551 /*                                                                          */
3552 /* Add a new group head, or if it already exists, increase the reference    */
3553 /* count to it.                                                             */
3554 /* ------------------------------------------------------------------------ */
3555 frgroup_t *
3556 ipf_group_add(softc, group, head, flags, unit, set)
3557         ipf_main_softc_t *softc;
3558         char *group;
3559         void *head;
3560         u_32_t flags;
3561         minor_t unit;
3562         int set;
3563 {
3564         frgroup_t *fg, **fgp;
3565         u_32_t gflags;
3566
3567         if (group == NULL)
3568                 return NULL;
3569
3570         if (unit == IPL_LOGIPF && *group == '\0')
3571                 return NULL;
3572
3573         fgp = NULL;
3574         gflags = flags & FR_INOUT;
3575
3576         fg = ipf_findgroup(softc, group, unit, set, &fgp);
3577         if (fg != NULL) {
3578                 if (fg->fg_head == NULL && head != NULL)
3579                         fg->fg_head = head;
3580                 if (fg->fg_flags == 0)
3581                         fg->fg_flags = gflags;
3582                 else if (gflags != fg->fg_flags)
3583                         return NULL;
3584                 fg->fg_ref++;
3585                 return fg;
3586         }
3587
3588         KMALLOC(fg, frgroup_t *);
3589         if (fg != NULL) {
3590                 fg->fg_head = head;
3591                 fg->fg_start = NULL;
3592                 fg->fg_next = *fgp;
3593                 bcopy(group, fg->fg_name, strlen(group) + 1);
3594                 fg->fg_flags = gflags;
3595                 fg->fg_ref = 1;
3596                 fg->fg_set = &softc->ipf_groups[unit][set];
3597                 *fgp = fg;
3598         }
3599         return fg;
3600 }
3601
3602
3603 /* ------------------------------------------------------------------------ */
3604 /* Function:    ipf_group_del                                               */
3605 /* Returns:     int      - number of rules deleted                          */
3606 /* Parameters:  softc(I) - pointer to soft context main structure           */
3607 /*              group(I) - group name to delete                             */
3608 /*              fr(I)    - filter rule from which group is referenced       */
3609 /* Write Locks: ipf_mutex                                                   */
3610 /*                                                                          */
3611 /* This function is called whenever a reference to a group is to be dropped */
3612 /* and thus its reference count needs to be lowered and the group free'd if */
3613 /* the reference count reaches zero. Passing in fr is really for the sole   */
3614 /* purpose of knowing when the head rule is being deleted.                  */
3615 /* ------------------------------------------------------------------------ */
3616 void
3617 ipf_group_del(softc, group, fr)
3618         ipf_main_softc_t *softc;
3619         frgroup_t *group;
3620         frentry_t *fr;
3621 {
3622
3623         if (group->fg_head == fr)
3624                 group->fg_head = NULL;
3625
3626         group->fg_ref--;
3627         if ((group->fg_ref == 0) && (group->fg_start == NULL))
3628                 ipf_group_free(group);
3629 }
3630
3631
3632 /* ------------------------------------------------------------------------ */
3633 /* Function:    ipf_group_free                                              */
3634 /* Returns:     Nil                                                         */
3635 /* Parameters:  group(I) - pointer to filter rule group                     */
3636 /*                                                                          */
3637 /* Remove the group from the list of groups and free it.                    */
3638 /* ------------------------------------------------------------------------ */
3639 static void
3640 ipf_group_free(group)
3641         frgroup_t *group;
3642 {
3643         frgroup_t **gp;
3644
3645         for (gp = group->fg_set; *gp != NULL; gp = &(*gp)->fg_next) {
3646                 if (*gp == group) {
3647                         *gp = group->fg_next;
3648                         break;
3649                 }
3650         }
3651         KFREE(group);
3652 }
3653
3654
3655 /* ------------------------------------------------------------------------ */
3656 /* Function:    ipf_group_flush                                             */
3657 /* Returns:     int      - number of rules flush from group                 */
3658 /* Parameters:  softc(I) - pointer to soft context main structure           */
3659 /* Parameters:  group(I) - pointer to filter rule group                     */
3660 /*                                                                          */
3661 /* Remove all of the rules that currently are listed under the given group. */
3662 /* ------------------------------------------------------------------------ */
3663 static int
3664 ipf_group_flush(softc, group)
3665         ipf_main_softc_t *softc;
3666         frgroup_t *group;
3667 {
3668         int gone = 0;
3669
3670         (void) ipf_flushlist(softc, &gone, &group->fg_start);
3671
3672         return gone;
3673 }
3674
3675
3676 /* ------------------------------------------------------------------------ */
3677 /* Function:    ipf_getrulen                                                */
3678 /* Returns:     frentry_t * - NULL == not found, else pointer to rule n     */
3679 /* Parameters:  softc(I) - pointer to soft context main structure           */
3680 /* Parameters:  unit(I)  - device for which to count the rule's number      */
3681 /*              flags(I) - which set of rules to find the rule in           */
3682 /*              group(I) - group name                                       */
3683 /*              n(I)     - rule number to find                              */
3684 /*                                                                          */
3685 /* Find rule # n in group # g and return a pointer to it.  Return NULl if   */
3686 /* group # g doesn't exist or there are less than n rules in the group.     */
3687 /* ------------------------------------------------------------------------ */
3688 frentry_t *
3689 ipf_getrulen(softc, unit, group, n)
3690         ipf_main_softc_t *softc;
3691         int unit;
3692         char *group;
3693         u_32_t n;
3694 {
3695         frentry_t *fr;
3696         frgroup_t *fg;
3697
3698         fg = ipf_findgroup(softc, group, unit, softc->ipf_active, NULL);
3699         if (fg == NULL)
3700                 return NULL;
3701         for (fr = fg->fg_start; fr && n; fr = fr->fr_next, n--)
3702                 ;
3703         if (n != 0)
3704                 return NULL;
3705         return fr;
3706 }
3707
3708
3709 /* ------------------------------------------------------------------------ */
3710 /* Function:    ipf_flushlist                                               */
3711 /* Returns:     int - >= 0 - number of flushed rules                        */
3712 /* Parameters:  softc(I)   - pointer to soft context main structure         */
3713 /*              nfreedp(O) - pointer to int where flush count is stored     */
3714 /*              listp(I)   - pointer to list to flush pointer               */
3715 /* Write Locks: ipf_mutex                                                   */
3716 /*                                                                          */
3717 /* Recursively flush rules from the list, descending groups as they are     */
3718 /* encountered.  if a rule is the head of a group and it has lost all its   */
3719 /* group members, then also delete the group reference.  nfreedp is needed  */
3720 /* to store the accumulating count of rules removed, whereas the returned   */
3721 /* value is just the number removed from the current list.  The latter is   */
3722 /* needed to correctly adjust reference counts on rules that define groups. */
3723 /*                                                                          */
3724 /* NOTE: Rules not loaded from user space cannot be flushed.                */
3725 /* ------------------------------------------------------------------------ */
3726 static int
3727 ipf_flushlist(softc, nfreedp, listp)
3728         ipf_main_softc_t *softc;
3729         int *nfreedp;
3730         frentry_t **listp;
3731 {
3732         int freed = 0;
3733         frentry_t *fp;
3734
3735         while ((fp = *listp) != NULL) {
3736                 if ((fp->fr_type & FR_T_BUILTIN) ||
3737                     !(fp->fr_flags & FR_COPIED)) {
3738                         listp = &fp->fr_next;
3739                         continue;
3740                 }
3741                 *listp = fp->fr_next;
3742                 if (fp->fr_next != NULL)
3743                         fp->fr_next->fr_pnext = fp->fr_pnext;
3744                 fp->fr_pnext = NULL;
3745
3746                 if (fp->fr_grphead != NULL) {
3747                         freed += ipf_group_flush(softc, fp->fr_grphead);
3748                         fp->fr_names[fp->fr_grhead] = '\0';
3749                 }
3750
3751                 if (fp->fr_icmpgrp != NULL) {
3752                         freed += ipf_group_flush(softc, fp->fr_icmpgrp);
3753                         fp->fr_names[fp->fr_icmphead] = '\0';
3754                 }
3755
3756                 if (fp->fr_srctrack.ht_max_nodes)
3757                         ipf_rb_ht_flush(&fp->fr_srctrack);
3758
3759                 fp->fr_next = NULL;
3760
3761                 ASSERT(fp->fr_ref > 0);
3762                 if (ipf_derefrule(softc, &fp) == 0)
3763                         freed++;
3764         }
3765         *nfreedp += freed;
3766         return freed;
3767 }
3768
3769
3770 /* ------------------------------------------------------------------------ */
3771 /* Function:    ipf_flush                                                   */
3772 /* Returns:     int - >= 0 - number of flushed rules                        */
3773 /* Parameters:  softc(I) - pointer to soft context main structure           */
3774 /*              unit(I)  - device for which to flush rules                  */
3775 /*              flags(I) - which set of rules to flush                      */
3776 /*                                                                          */
3777 /* Calls flushlist() for all filter rules (accounting, firewall - both IPv4 */
3778 /* and IPv6) as defined by the value of flags.                              */
3779 /* ------------------------------------------------------------------------ */
3780 int
3781 ipf_flush(softc, unit, flags)
3782         ipf_main_softc_t *softc;
3783         minor_t unit;
3784         int flags;
3785 {
3786         int flushed = 0, set;
3787
3788         WRITE_ENTER(&softc->ipf_mutex);
3789
3790         set = softc->ipf_active;
3791         if ((flags & FR_INACTIVE) == FR_INACTIVE)
3792                 set = 1 - set;
3793
3794         if (flags & FR_OUTQUE) {
3795                 ipf_flushlist(softc, &flushed, &softc->ipf_rules[1][set]);
3796                 ipf_flushlist(softc, &flushed, &softc->ipf_acct[1][set]);
3797         }
3798         if (flags & FR_INQUE) {
3799                 ipf_flushlist(softc, &flushed, &softc->ipf_rules[0][set]);
3800                 ipf_flushlist(softc, &flushed, &softc->ipf_acct[0][set]);
3801         }
3802
3803         flushed += ipf_flush_groups(softc, &softc->ipf_groups[unit][set],
3804                                     flags & (FR_INQUE|FR_OUTQUE));
3805
3806         RWLOCK_EXIT(&softc->ipf_mutex);
3807
3808         if (unit == IPL_LOGIPF) {
3809                 int tmp;
3810
3811                 tmp = ipf_flush(softc, IPL_LOGCOUNT, flags);
3812                 if (tmp >= 0)
3813                         flushed += tmp;
3814         }
3815         return flushed;
3816 }
3817
3818
3819 /* ------------------------------------------------------------------------ */
3820 /* Function:    ipf_flush_groups                                            */
3821 /* Returns:     int - >= 0 - number of flushed rules                        */
3822 /* Parameters:  softc(I)  - soft context pointerto work with                */
3823 /*              grhead(I) - pointer to the start of the group list to flush */
3824 /*              flags(I)  - which set of rules to flush                     */
3825 /*                                                                          */
3826 /* Walk through all of the groups under the given group head and remove all */
3827 /* of those that match the flags passed in. The for loop here is bit more   */
3828 /* complicated than usual because the removal of a rule with ipf_derefrule  */
3829 /* may end up removing not only the structure pointed to by "fg" but also   */
3830 /* what is fg_next and fg_next after that. So if a filter rule is actually  */
3831 /* removed from the group then it is necessary to start again.              */
3832 /* ------------------------------------------------------------------------ */
3833 static int
3834 ipf_flush_groups(softc, grhead, flags)
3835         ipf_main_softc_t *softc;
3836         frgroup_t **grhead;
3837         int flags;
3838 {
3839         frentry_t *fr, **frp;
3840         frgroup_t *fg, **fgp;
3841         int flushed = 0;
3842         int removed = 0;
3843
3844         for (fgp = grhead; (fg = *fgp) != NULL; ) {
3845                 while ((fg != NULL) && ((fg->fg_flags & flags) == 0))
3846                         fg = fg->fg_next;
3847                 if (fg == NULL)
3848                         break;
3849                 removed = 0;
3850                 frp = &fg->fg_start;
3851                 while ((removed == 0) && ((fr = *frp) != NULL)) {
3852                         if ((fr->fr_flags & flags) == 0) {
3853                                 frp = &fr->fr_next;
3854                         } else {
3855                                 if (fr->fr_next != NULL)
3856                                         fr->fr_next->fr_pnext = fr->fr_pnext;
3857                                 *frp = fr->fr_next;
3858                                 fr->fr_pnext = NULL;
3859                                 fr->fr_next = NULL;
3860                                 (void) ipf_derefrule(softc, &fr);
3861                                 flushed++;
3862                                 removed++;
3863                         }
3864                 }
3865                 if (removed == 0)
3866                         fgp = &fg->fg_next;
3867         }
3868         return flushed;
3869 }
3870
3871
3872 /* ------------------------------------------------------------------------ */
3873 /* Function:    memstr                                                      */
3874 /* Returns:     char *  - NULL if failed, != NULL pointer to matching bytes */
3875 /* Parameters:  src(I)  - pointer to byte sequence to match                 */
3876 /*              dst(I)  - pointer to byte sequence to search                */
3877 /*              slen(I) - match length                                      */
3878 /*              dlen(I) - length available to search in                     */
3879 /*                                                                          */
3880 /* Search dst for a sequence of bytes matching those at src and extend for  */
3881 /* slen bytes.                                                              */
3882 /* ------------------------------------------------------------------------ */
3883 char *
3884 memstr(src, dst, slen, dlen)
3885         const char *src;
3886         char *dst;
3887         size_t slen, dlen;
3888 {
3889         char *s = NULL;
3890
3891         while (dlen >= slen) {
3892                 if (bcmp(src, dst, slen) == 0) {
3893                         s = dst;
3894                         break;
3895                 }
3896                 dst++;
3897                 dlen--;
3898         }
3899         return s;
3900 }
3901 /* ------------------------------------------------------------------------ */
3902 /* Function:    ipf_fixskip                                                 */
3903 /* Returns:     Nil                                                         */
3904 /* Parameters:  listp(IO)    - pointer to start of list with skip rule      */
3905 /*              rp(I)        - rule added/removed with skip in it.          */
3906 /*              addremove(I) - adjustment (-1/+1) to make to skip count,    */
3907 /*                             depending on whether a rule was just added   */
3908 /*                             or removed.                                  */
3909 /*                                                                          */
3910 /* Adjust all the rules in a list which would have skip'd past the position */
3911 /* where we are inserting to skip to the right place given the change.      */
3912 /* ------------------------------------------------------------------------ */
3913 void
3914 ipf_fixskip(listp, rp, addremove)
3915         frentry_t **listp, *rp;
3916         int addremove;
3917 {
3918         int rules, rn;
3919         frentry_t *fp;
3920
3921         rules = 0;
3922         for (fp = *listp; (fp != NULL) && (fp != rp); fp = fp->fr_next)
3923                 rules++;
3924
3925         if (!fp)
3926                 return;
3927
3928         for (rn = 0, fp = *listp; fp && (fp != rp); fp = fp->fr_next, rn++)
3929                 if (FR_ISSKIP(fp->fr_flags) && (rn + fp->fr_arg >= rules))
3930                         fp->fr_arg += addremove;
3931 }
3932
3933
3934 #ifdef  _KERNEL
3935 /* ------------------------------------------------------------------------ */
3936 /* Function:    count4bits                                                  */
3937 /* Returns:     int - >= 0 - number of consecutive bits in input            */
3938 /* Parameters:  ip(I) - 32bit IP address                                    */
3939 /*                                                                          */
3940 /* IPv4 ONLY                                                                */
3941 /* count consecutive 1's in bit mask.  If the mask generated by counting    */
3942 /* consecutive 1's is different to that passed, return -1, else return #    */
3943 /* of bits.                                                                 */
3944 /* ------------------------------------------------------------------------ */
3945 int
3946 count4bits(ip)
3947         u_32_t  ip;
3948 {
3949         u_32_t  ipn;
3950         int     cnt = 0, i, j;
3951
3952         ip = ipn = ntohl(ip);
3953         for (i = 32; i; i--, ipn *= 2)
3954                 if (ipn & 0x80000000)
3955                         cnt++;
3956                 else
3957                         break;
3958         ipn = 0;
3959         for (i = 32, j = cnt; i; i--, j--) {
3960                 ipn *= 2;
3961                 if (j > 0)
3962                         ipn++;
3963         }
3964         if (ipn == ip)
3965                 return cnt;
3966         return -1;
3967 }
3968
3969
3970 /* ------------------------------------------------------------------------ */
3971 /* Function:    count6bits                                                  */
3972 /* Returns:     int - >= 0 - number of consecutive bits in input            */
3973 /* Parameters:  msk(I) - pointer to start of IPv6 bitmask                   */
3974 /*                                                                          */
3975 /* IPv6 ONLY                                                                */
3976 /* count consecutive 1's in bit mask.                                       */
3977 /* ------------------------------------------------------------------------ */
3978 # ifdef USE_INET6
3979 int
3980 count6bits(msk)
3981         u_32_t *msk;
3982 {
3983         int i = 0, k;
3984         u_32_t j;
3985
3986         for (k = 3; k >= 0; k--)
3987                 if (msk[k] == 0xffffffff)
3988                         i += 32;
3989                 else {
3990                         for (j = msk[k]; j; j <<= 1)
3991                                 if (j & 0x80000000)
3992                                         i++;
3993                 }
3994         return i;
3995 }
3996 # endif
3997 #endif /* _KERNEL */
3998
3999
4000 /* ------------------------------------------------------------------------ */
4001 /* Function:    ipf_synclist                                                */
4002 /* Returns:     int    - 0 = no failures, else indication of first failure  */
4003 /* Parameters:  fr(I)  - start of filter list to sync interface names for   */
4004 /*              ifp(I) - interface pointer for limiting sync lookups        */
4005 /* Write Locks: ipf_mutex                                                   */
4006 /*                                                                          */
4007 /* Walk through a list of filter rules and resolve any interface names into */
4008 /* pointers.  Where dynamic addresses are used, also update the IP address  */
4009 /* used in the rule.  The interface pointer is used to limit the lookups to */
4010 /* a specific set of matching names if it is non-NULL.                      */
4011 /* Errors can occur when resolving the destination name of to/dup-to fields */
4012 /* when the name points to a pool and that pool doest not exist. If this    */
4013 /* does happen then it is necessary to check if there are any lookup refs   */
4014 /* that need to be dropped before returning with an error.                  */
4015 /* ------------------------------------------------------------------------ */
4016 static int
4017 ipf_synclist(softc, fr, ifp)
4018         ipf_main_softc_t *softc;
4019         frentry_t *fr;
4020         void *ifp;
4021 {
4022         frentry_t *frt, *start = fr;
4023         frdest_t *fdp;
4024         char *name;
4025         int error;
4026         void *ifa;
4027         int v, i;
4028
4029         error = 0;
4030
4031         for (; fr; fr = fr->fr_next) {
4032                 if (fr->fr_family == AF_INET)
4033                         v = 4;
4034                 else if (fr->fr_family == AF_INET6)
4035                         v = 6;
4036                 else
4037                         v = 0;
4038
4039                 /*
4040                  * Lookup all the interface names that are part of the rule.
4041                  */
4042                 for (i = 0; i < 4; i++) {
4043                         if ((ifp != NULL) && (fr->fr_ifas[i] != ifp))
4044                                 continue;
4045                         if (fr->fr_ifnames[i] == -1)
4046                                 continue;
4047                         name = FR_NAME(fr, fr_ifnames[i]);
4048                         fr->fr_ifas[i] = ipf_resolvenic(softc, name, v);
4049                 }
4050
4051                 if ((fr->fr_type & ~FR_T_BUILTIN) == FR_T_IPF) {
4052                         if (fr->fr_satype != FRI_NORMAL &&
4053                             fr->fr_satype != FRI_LOOKUP) {
4054                                 ifa = ipf_resolvenic(softc, fr->fr_names +
4055                                                      fr->fr_sifpidx, v);
4056                                 ipf_ifpaddr(softc, v, fr->fr_satype, ifa,
4057                                             &fr->fr_src6, &fr->fr_smsk6);
4058                         }
4059                         if (fr->fr_datype != FRI_NORMAL &&
4060                             fr->fr_datype != FRI_LOOKUP) {
4061                                 ifa = ipf_resolvenic(softc, fr->fr_names +
4062                                                      fr->fr_sifpidx, v);
4063                                 ipf_ifpaddr(softc, v, fr->fr_datype, ifa,
4064                                             &fr->fr_dst6, &fr->fr_dmsk6);
4065                         }
4066                 }
4067
4068                 fdp = &fr->fr_tifs[0];
4069                 if ((ifp == NULL) || (fdp->fd_ptr == ifp)) {
4070                         error = ipf_resolvedest(softc, fr->fr_names, fdp, v);
4071                         if (error != 0)
4072                                 goto unwind;
4073                 }
4074
4075                 fdp = &fr->fr_tifs[1];
4076                 if ((ifp == NULL) || (fdp->fd_ptr == ifp)) {
4077                         error = ipf_resolvedest(softc, fr->fr_names, fdp, v);
4078                         if (error != 0)
4079                                 goto unwind;
4080                 }
4081
4082                 fdp = &fr->fr_dif;
4083                 if ((ifp == NULL) || (fdp->fd_ptr == ifp)) {
4084                         error = ipf_resolvedest(softc, fr->fr_names, fdp, v);
4085                         if (error != 0)
4086                                 goto unwind;
4087                 }
4088
4089                 if (((fr->fr_type & ~FR_T_BUILTIN) == FR_T_IPF) &&
4090                     (fr->fr_satype == FRI_LOOKUP) && (fr->fr_srcptr == NULL)) {
4091                         fr->fr_srcptr = ipf_lookup_res_num(softc,
4092                                                            fr->fr_srctype,
4093                                                            IPL_LOGIPF,
4094                                                            fr->fr_srcnum,
4095                                                            &fr->fr_srcfunc);
4096                 }
4097                 if (((fr->fr_type & ~FR_T_BUILTIN) == FR_T_IPF) &&
4098                     (fr->fr_datype == FRI_LOOKUP) && (fr->fr_dstptr == NULL)) {
4099                         fr->fr_dstptr = ipf_lookup_res_num(softc,
4100                                                            fr->fr_dsttype,
4101                                                            IPL_LOGIPF,
4102                                                            fr->fr_dstnum,
4103                                                            &fr->fr_dstfunc);
4104                 }
4105         }
4106         return 0;
4107
4108 unwind:
4109         for (frt = start; frt != fr; fr = fr->fr_next) {
4110                 if (((frt->fr_type & ~FR_T_BUILTIN) == FR_T_IPF) &&
4111                     (frt->fr_satype == FRI_LOOKUP) && (frt->fr_srcptr != NULL))
4112                                 ipf_lookup_deref(softc, frt->fr_srctype,
4113                                                  frt->fr_srcptr);
4114                 if (((frt->fr_type & ~FR_T_BUILTIN) == FR_T_IPF) &&
4115                     (frt->fr_datype == FRI_LOOKUP) && (frt->fr_dstptr != NULL))
4116                                 ipf_lookup_deref(softc, frt->fr_dsttype,
4117                                                  frt->fr_dstptr);
4118         }
4119         return error;
4120 }
4121
4122
4123 /* ------------------------------------------------------------------------ */
4124 /* Function:    ipf_sync                                                    */
4125 /* Returns:     void                                                        */
4126 /* Parameters:  Nil                                                         */
4127 /*                                                                          */
4128 /* ipf_sync() is called when we suspect that the interface list or          */
4129 /* information about interfaces (like IP#) has changed.  Go through all     */
4130 /* filter rules, NAT entries and the state table and check if anything      */
4131 /* needs to be changed/updated.                                             */
4132 /* ------------------------------------------------------------------------ */
4133 int
4134 ipf_sync(softc, ifp)
4135         ipf_main_softc_t *softc;
4136         void *ifp;
4137 {
4138         int i;
4139
4140 # if !SOLARIS
4141         ipf_nat_sync(softc, ifp);
4142         ipf_state_sync(softc, ifp);
4143         ipf_lookup_sync(softc, ifp);
4144 # endif
4145
4146         WRITE_ENTER(&softc->ipf_mutex);
4147         (void) ipf_synclist(softc, softc->ipf_acct[0][softc->ipf_active], ifp);
4148         (void) ipf_synclist(softc, softc->ipf_acct[1][softc->ipf_active], ifp);
4149         (void) ipf_synclist(softc, softc->ipf_rules[0][softc->ipf_active], ifp);
4150         (void) ipf_synclist(softc, softc->ipf_rules[1][softc->ipf_active], ifp);
4151
4152         for (i = 0; i < IPL_LOGSIZE; i++) {
4153                 frgroup_t *g;
4154
4155                 for (g = softc->ipf_groups[i][0]; g != NULL; g = g->fg_next)
4156                         (void) ipf_synclist(softc, g->fg_start, ifp);
4157                 for (g = softc->ipf_groups[i][1]; g != NULL; g = g->fg_next)
4158                         (void) ipf_synclist(softc, g->fg_start, ifp);
4159         }
4160         RWLOCK_EXIT(&softc->ipf_mutex);
4161
4162         return 0;
4163 }
4164
4165
4166 /*
4167  * In the functions below, bcopy() is called because the pointer being
4168  * copied _from_ in this instance is a pointer to a char buf (which could
4169  * end up being unaligned) and on the kernel's local stack.
4170  */
4171 /* ------------------------------------------------------------------------ */
4172 /* Function:    copyinptr                                                   */
4173 /* Returns:     int - 0 = success, else failure                             */
4174 /* Parameters:  src(I)  - pointer to the source address                     */
4175 /*              dst(I)  - destination address                               */
4176 /*              size(I) - number of bytes to copy                           */
4177 /*                                                                          */
4178 /* Copy a block of data in from user space, given a pointer to the pointer  */
4179 /* to start copying from (src) and a pointer to where to store it (dst).    */
4180 /* NB: src - pointer to user space pointer, dst - kernel space pointer      */
4181 /* ------------------------------------------------------------------------ */
4182 int
4183 copyinptr(softc, src, dst, size)
4184         ipf_main_softc_t *softc;
4185         void *src, *dst;
4186         size_t size;
4187 {
4188         caddr_t ca;
4189         int error;
4190
4191 # if SOLARIS
4192         error = COPYIN(src, &ca, sizeof(ca));
4193         if (error != 0)
4194                 return error;
4195 # else
4196         bcopy(src, (caddr_t)&ca, sizeof(ca));
4197 # endif
4198         error = COPYIN(ca, dst, size);
4199         if (error != 0) {
4200                 IPFERROR(3);
4201                 error = EFAULT;
4202         }
4203         return error;
4204 }
4205
4206
4207 /* ------------------------------------------------------------------------ */
4208 /* Function:    copyoutptr                                                  */
4209 /* Returns:     int - 0 = success, else failure                             */
4210 /* Parameters:  src(I)  - pointer to the source address                     */
4211 /*              dst(I)  - destination address                               */
4212 /*              size(I) - number of bytes to copy                           */
4213 /*                                                                          */
4214 /* Copy a block of data out to user space, given a pointer to the pointer   */
4215 /* to start copying from (src) and a pointer to where to store it (dst).    */
4216 /* NB: src - kernel space pointer, dst - pointer to user space pointer.     */
4217 /* ------------------------------------------------------------------------ */
4218 int
4219 copyoutptr(softc, src, dst, size)
4220         ipf_main_softc_t *softc;
4221         void *src, *dst;
4222         size_t size;
4223 {
4224         caddr_t ca;
4225         int error;
4226
4227         bcopy(dst, (caddr_t)&ca, sizeof(ca));
4228         error = COPYOUT(src, ca, size);
4229         if (error != 0) {
4230                 IPFERROR(4);
4231                 error = EFAULT;
4232         }
4233         return error;
4234 }
4235
4236
4237 /* ------------------------------------------------------------------------ */
4238 /* Function:    ipf_lock                                                    */
4239 /* Returns:     int      - 0 = success, else error                          */
4240 /* Parameters:  data(I)  - pointer to lock value to set                     */
4241 /*              lockp(O) - pointer to location to store old lock value      */
4242 /*                                                                          */
4243 /* Get the new value for the lock integer, set it and return the old value  */
4244 /* in *lockp.                                                               */
4245 /* ------------------------------------------------------------------------ */
4246 int
4247 ipf_lock(data, lockp)
4248         caddr_t data;
4249         int *lockp;
4250 {
4251         int arg, err;
4252
4253         err = BCOPYIN(data, &arg, sizeof(arg));
4254         if (err != 0)
4255                 return EFAULT;
4256         err = BCOPYOUT(lockp, data, sizeof(*lockp));
4257         if (err != 0)
4258                 return EFAULT;
4259         *lockp = arg;
4260         return 0;
4261 }
4262
4263
4264 /* ------------------------------------------------------------------------ */
4265 /* Function:    ipf_getstat                                                 */
4266 /* Returns:     Nil                                                         */
4267 /* Parameters:  softc(I) - pointer to soft context main structure           */
4268 /*              fiop(I)  - pointer to ipfilter stats structure              */
4269 /*              rev(I)   - version claim by program doing ioctl             */
4270 /*                                                                          */
4271 /* Stores a copy of current pointers, counters, etc, in the friostat        */
4272 /* structure.                                                               */
4273 /* If IPFILTER_COMPAT is compiled, we pretend to be whatever version the    */
4274 /* program is looking for. This ensure that validation of the version it    */
4275 /* expects will always succeed. Thus kernels with IPFILTER_COMPAT will      */
4276 /* allow older binaries to work but kernels without it will not.            */
4277 /* ------------------------------------------------------------------------ */
4278 /*ARGSUSED*/
4279 static void
4280 ipf_getstat(softc, fiop, rev)
4281         ipf_main_softc_t *softc;
4282         friostat_t *fiop;
4283         int rev;
4284 {
4285         int i;
4286
4287         bcopy((char *)softc->ipf_stats, (char *)fiop->f_st,
4288               sizeof(ipf_statistics_t) * 2);
4289         fiop->f_locks[IPL_LOGSTATE] = -1;
4290         fiop->f_locks[IPL_LOGNAT] = -1;
4291         fiop->f_locks[IPL_LOGIPF] = -1;
4292         fiop->f_locks[IPL_LOGAUTH] = -1;
4293
4294         fiop->f_ipf[0][0] = softc->ipf_rules[0][0];
4295         fiop->f_acct[0][0] = softc->ipf_acct[0][0];
4296         fiop->f_ipf[0][1] = softc->ipf_rules[0][1];
4297         fiop->f_acct[0][1] = softc->ipf_acct[0][1];
4298         fiop->f_ipf[1][0] = softc->ipf_rules[1][0];
4299         fiop->f_acct[1][0] = softc->ipf_acct[1][0];
4300         fiop->f_ipf[1][1] = softc->ipf_rules[1][1];
4301         fiop->f_acct[1][1] = softc->ipf_acct[1][1];
4302
4303         fiop->f_ticks = softc->ipf_ticks;
4304         fiop->f_active = softc->ipf_active;
4305         fiop->f_froute[0] = softc->ipf_frouteok[0];
4306         fiop->f_froute[1] = softc->ipf_frouteok[1];
4307         fiop->f_rb_no_mem = softc->ipf_rb_no_mem;
4308         fiop->f_rb_node_max = softc->ipf_rb_node_max;
4309
4310         fiop->f_running = softc->ipf_running;
4311         for (i = 0; i < IPL_LOGSIZE; i++) {
4312                 fiop->f_groups[i][0] = softc->ipf_groups[i][0];
4313                 fiop->f_groups[i][1] = softc->ipf_groups[i][1];
4314         }
4315 #ifdef  IPFILTER_LOG
4316         fiop->f_log_ok = ipf_log_logok(softc, IPL_LOGIPF);
4317         fiop->f_log_fail = ipf_log_failures(softc, IPL_LOGIPF);
4318         fiop->f_logging = 1;
4319 #else
4320         fiop->f_log_ok = 0;
4321         fiop->f_log_fail = 0;
4322         fiop->f_logging = 0;
4323 #endif
4324         fiop->f_defpass = softc->ipf_pass;
4325         fiop->f_features = ipf_features;
4326
4327 #ifdef IPFILTER_COMPAT
4328         sprintf(fiop->f_version, "IP Filter: v%d.%d.%d",
4329                 (rev / 1000000) % 100,
4330                 (rev / 10000) % 100,
4331                 (rev / 100) % 100);
4332 #else
4333         rev = rev;
4334         (void) strncpy(fiop->f_version, ipfilter_version,
4335                        sizeof(fiop->f_version));
4336 #endif
4337 }
4338
4339
4340 #ifdef  USE_INET6
4341 int icmptoicmp6types[ICMP_MAXTYPE+1] = {
4342         ICMP6_ECHO_REPLY,       /* 0: ICMP_ECHOREPLY */
4343         -1,                     /* 1: UNUSED */
4344         -1,                     /* 2: UNUSED */
4345         ICMP6_DST_UNREACH,      /* 3: ICMP_UNREACH */
4346         -1,                     /* 4: ICMP_SOURCEQUENCH */
4347         ND_REDIRECT,            /* 5: ICMP_REDIRECT */
4348         -1,                     /* 6: UNUSED */
4349         -1,                     /* 7: UNUSED */
4350         ICMP6_ECHO_REQUEST,     /* 8: ICMP_ECHO */
4351         -1,                     /* 9: UNUSED */
4352         -1,                     /* 10: UNUSED */
4353         ICMP6_TIME_EXCEEDED,    /* 11: ICMP_TIMXCEED */
4354         ICMP6_PARAM_PROB,       /* 12: ICMP_PARAMPROB */
4355         -1,                     /* 13: ICMP_TSTAMP */
4356         -1,                     /* 14: ICMP_TSTAMPREPLY */
4357         -1,                     /* 15: ICMP_IREQ */
4358         -1,                     /* 16: ICMP_IREQREPLY */
4359         -1,                     /* 17: ICMP_MASKREQ */
4360         -1,                     /* 18: ICMP_MASKREPLY */
4361 };
4362
4363
4364 int     icmptoicmp6unreach[ICMP_MAX_UNREACH] = {
4365         ICMP6_DST_UNREACH_ADDR,         /* 0: ICMP_UNREACH_NET */
4366         ICMP6_DST_UNREACH_ADDR,         /* 1: ICMP_UNREACH_HOST */
4367         -1,                             /* 2: ICMP_UNREACH_PROTOCOL */
4368         ICMP6_DST_UNREACH_NOPORT,       /* 3: ICMP_UNREACH_PORT */
4369         -1,                             /* 4: ICMP_UNREACH_NEEDFRAG */
4370         ICMP6_DST_UNREACH_NOTNEIGHBOR,  /* 5: ICMP_UNREACH_SRCFAIL */
4371         ICMP6_DST_UNREACH_ADDR,         /* 6: ICMP_UNREACH_NET_UNKNOWN */
4372         ICMP6_DST_UNREACH_ADDR,         /* 7: ICMP_UNREACH_HOST_UNKNOWN */
4373         -1,                             /* 8: ICMP_UNREACH_ISOLATED */
4374         ICMP6_DST_UNREACH_ADMIN,        /* 9: ICMP_UNREACH_NET_PROHIB */
4375         ICMP6_DST_UNREACH_ADMIN,        /* 10: ICMP_UNREACH_HOST_PROHIB */
4376         -1,                             /* 11: ICMP_UNREACH_TOSNET */
4377         -1,                             /* 12: ICMP_UNREACH_TOSHOST */
4378         ICMP6_DST_UNREACH_ADMIN,        /* 13: ICMP_UNREACH_ADMIN_PROHIBIT */
4379 };
4380 int     icmpreplytype6[ICMP6_MAXTYPE + 1];
4381 #endif
4382
4383 int     icmpreplytype4[ICMP_MAXTYPE + 1];
4384
4385
4386 /* ------------------------------------------------------------------------ */
4387 /* Function:    ipf_matchicmpqueryreply                                     */
4388 /* Returns:     int - 1 if "icmp" is a valid reply to "ic" else 0.          */
4389 /* Parameters:  v(I)    - IP protocol version (4 or 6)                      */
4390 /*              ic(I)   - ICMP information                                  */
4391 /*              icmp(I) - ICMP packet header                                */
4392 /*              rev(I)  - direction (0 = forward/1 = reverse) of packet     */
4393 /*                                                                          */
4394 /* Check if the ICMP packet defined by the header pointed to by icmp is a   */
4395 /* reply to one as described by what's in ic.  If it is a match, return 1,  */
4396 /* else return 0 for no match.                                              */
4397 /* ------------------------------------------------------------------------ */
4398 int
4399 ipf_matchicmpqueryreply(v, ic, icmp, rev)
4400         int v;
4401         icmpinfo_t *ic;
4402         icmphdr_t *icmp;
4403         int rev;
4404 {
4405         int ictype;
4406
4407         ictype = ic->ici_type;
4408
4409         if (v == 4) {
4410                 /*
4411                  * If we matched its type on the way in, then when going out
4412                  * it will still be the same type.
4413                  */
4414                 if ((!rev && (icmp->icmp_type == ictype)) ||
4415                     (rev && (icmpreplytype4[ictype] == icmp->icmp_type))) {
4416                         if (icmp->icmp_type != ICMP_ECHOREPLY)
4417                                 return 1;
4418                         if (icmp->icmp_id == ic->ici_id)
4419                                 return 1;
4420                 }
4421         }
4422 #ifdef  USE_INET6
4423         else if (v == 6) {
4424                 if ((!rev && (icmp->icmp_type == ictype)) ||
4425                     (rev && (icmpreplytype6[ictype] == icmp->icmp_type))) {
4426                         if (icmp->icmp_type != ICMP6_ECHO_REPLY)
4427                                 return 1;
4428                         if (icmp->icmp_id == ic->ici_id)
4429                                 return 1;
4430                 }
4431         }
4432 #endif
4433         return 0;
4434 }
4435
4436
4437 /* ------------------------------------------------------------------------ */
4438 /* Function:    ipf_rule_compare                                            */
4439 /* Parameters:  fr1(I) - first rule structure to compare                    */
4440 /*              fr2(I) - second rule structure to compare                   */
4441 /* Returns:     int    - 0 == rules are the same, else mismatch             */
4442 /*                                                                          */
4443 /* Compare two rules and return 0 if they match or a number indicating      */
4444 /* which of the individual checks failed.                                   */
4445 /* ------------------------------------------------------------------------ */
4446 static int
4447 ipf_rule_compare(frentry_t *fr1, frentry_t *fr2)
4448 {
4449         if (fr1->fr_cksum != fr2->fr_cksum)
4450                 return 1;
4451         if (fr1->fr_size != fr2->fr_size)
4452                 return 2;
4453         if (fr1->fr_dsize != fr2->fr_dsize)
4454                 return 3;
4455         if (bcmp((char *)&fr1->fr_func, (char *)&fr2->fr_func,
4456                  fr1->fr_size - offsetof(struct frentry, fr_func)) != 0)
4457                 return 4;
4458         if (fr1->fr_data && !fr2->fr_data)
4459                 return 5;
4460         if (!fr1->fr_data && fr2->fr_data)
4461                 return 6;
4462         if (fr1->fr_data) {
4463                 if (bcmp(fr1->fr_caddr, fr2->fr_caddr, fr1->fr_dsize))
4464                         return 7;
4465         }
4466         return 0;
4467 }
4468
4469
4470 /* ------------------------------------------------------------------------ */
4471 /* Function:    frrequest                                                   */
4472 /* Returns:     int - 0 == success, > 0 == errno value                      */
4473 /* Parameters:  unit(I)     - device for which this is for                  */
4474 /*              req(I)      - ioctl command (SIOC*)                         */
4475 /*              data(I)     - pointr to ioctl data                          */
4476 /*              set(I)      - 1 or 0 (filter set)                           */
4477 /*              makecopy(I) - flag indicating whether data points to a rule */
4478 /*                            in kernel space & hence doesn't need copying. */
4479 /*                                                                          */
4480 /* This function handles all the requests which operate on the list of      */
4481 /* filter rules.  This includes adding, deleting, insertion.  It is also    */
4482 /* responsible for creating groups when a "head" rule is loaded.  Interface */
4483 /* names are resolved here and other sanity checks are made on the content  */
4484 /* of the rule structure being loaded.  If a rule has user defined timeouts */
4485 /* then make sure they are created and initialised before exiting.          */
4486 /* ------------------------------------------------------------------------ */
4487 int
4488 frrequest(softc, unit, req, data, set, makecopy)
4489         ipf_main_softc_t *softc;
4490         int unit;
4491         ioctlcmd_t req;
4492         int set, makecopy;
4493         caddr_t data;
4494 {
4495         int error = 0, in, family, addrem, need_free = 0;
4496         frentry_t frd, *fp, *f, **fprev, **ftail;
4497         void *ptr, *uptr, *cptr;
4498         u_int *p, *pp;
4499         frgroup_t *fg;
4500         char *group;
4501
4502         ptr = NULL;
4503         cptr = NULL;
4504         fg = NULL;
4505         fp = &frd;
4506         if (makecopy != 0) {
4507                 bzero(fp, sizeof(frd));
4508                 error = ipf_inobj(softc, data, NULL, fp, IPFOBJ_FRENTRY);
4509                 if (error) {
4510                         return error;
4511                 }
4512                 if ((fp->fr_type & FR_T_BUILTIN) != 0) {
4513                         IPFERROR(6);
4514                         return EINVAL;
4515                 }
4516                 KMALLOCS(f, frentry_t *, fp->fr_size);
4517                 if (f == NULL) {
4518                         IPFERROR(131);
4519                         return ENOMEM;
4520                 }
4521                 bzero(f, fp->fr_size);
4522                 error = ipf_inobjsz(softc, data, f, IPFOBJ_FRENTRY,
4523                                     fp->fr_size);
4524                 if (error) {
4525                         KFREES(f, fp->fr_size);
4526                         return error;
4527                 }
4528
4529                 fp = f;
4530                 f = NULL;
4531                 fp->fr_next = NULL;
4532                 fp->fr_dnext = NULL;
4533                 fp->fr_pnext = NULL;
4534                 fp->fr_pdnext = NULL;
4535                 fp->fr_grp = NULL;
4536                 fp->fr_grphead = NULL;
4537                 fp->fr_icmpgrp = NULL;
4538                 fp->fr_isc = (void *)-1;
4539                 fp->fr_ptr = NULL;
4540                 fp->fr_ref = 0;
4541                 fp->fr_flags |= FR_COPIED;
4542         } else {
4543                 fp = (frentry_t *)data;
4544                 if ((fp->fr_type & FR_T_BUILTIN) == 0) {
4545                         IPFERROR(7);
4546                         return EINVAL;
4547                 }
4548                 fp->fr_flags &= ~FR_COPIED;
4549         }
4550
4551         if (((fp->fr_dsize == 0) && (fp->fr_data != NULL)) ||
4552             ((fp->fr_dsize != 0) && (fp->fr_data == NULL))) {
4553                 IPFERROR(8);
4554                 error = EINVAL;
4555                 goto donenolock;
4556         }
4557
4558         family = fp->fr_family;
4559         uptr = fp->fr_data;
4560
4561         if (req == (ioctlcmd_t)SIOCINAFR || req == (ioctlcmd_t)SIOCINIFR ||
4562             req == (ioctlcmd_t)SIOCADAFR || req == (ioctlcmd_t)SIOCADIFR)
4563                 addrem = 0;
4564         else if (req == (ioctlcmd_t)SIOCRMAFR || req == (ioctlcmd_t)SIOCRMIFR)
4565                 addrem = 1;
4566         else if (req == (ioctlcmd_t)SIOCZRLST)
4567                 addrem = 2;
4568         else {
4569                 IPFERROR(9);
4570                 error = EINVAL;
4571                 goto donenolock;
4572         }
4573
4574         /*
4575          * Only filter rules for IPv4 or IPv6 are accepted.
4576          */
4577         if (family == AF_INET) {
4578                 /*EMPTY*/;
4579 #ifdef  USE_INET6
4580         } else if (family == AF_INET6) {
4581                 /*EMPTY*/;
4582 #endif
4583         } else if (family != 0) {
4584                 IPFERROR(10);
4585                 error = EINVAL;
4586                 goto donenolock;
4587         }
4588
4589         /*
4590          * If the rule is being loaded from user space, i.e. we had to copy it
4591          * into kernel space, then do not trust the function pointer in the
4592          * rule.
4593          */
4594         if ((makecopy == 1) && (fp->fr_func != NULL)) {
4595                 if (ipf_findfunc(fp->fr_func) == NULL) {
4596                         IPFERROR(11);
4597                         error = ESRCH;
4598                         goto donenolock;
4599                 }
4600
4601                 if (addrem == 0) {
4602                         error = ipf_funcinit(softc, fp);
4603                         if (error != 0)
4604                                 goto donenolock;
4605                 }
4606         }
4607         if ((fp->fr_flags & FR_CALLNOW) &&
4608             ((fp->fr_func == NULL) || (fp->fr_func == (ipfunc_t)-1))) {
4609                 IPFERROR(142);
4610                 error = ESRCH;
4611                 goto donenolock;
4612         }
4613         if (((fp->fr_flags & FR_CMDMASK) == FR_CALL) &&
4614             ((fp->fr_func == NULL) || (fp->fr_func == (ipfunc_t)-1))) {
4615                 IPFERROR(143);
4616                 error = ESRCH;
4617                 goto donenolock;
4618         }
4619
4620         ptr = NULL;
4621         cptr = NULL;
4622
4623         if (FR_ISACCOUNT(fp->fr_flags))
4624                 unit = IPL_LOGCOUNT;
4625
4626         /*
4627          * Check that each group name in the rule has a start index that
4628          * is valid.
4629          */
4630         if (fp->fr_icmphead != -1) {
4631                 if ((fp->fr_icmphead < 0) ||
4632                     (fp->fr_icmphead >= fp->fr_namelen)) {
4633                         IPFERROR(136);
4634                         error = EINVAL;
4635                         goto donenolock;
4636                 }
4637                 if (!strcmp(FR_NAME(fp, fr_icmphead), "0"))
4638                         fp->fr_names[fp->fr_icmphead] = '\0';
4639         }
4640
4641         if (fp->fr_grhead != -1) {
4642                 if ((fp->fr_grhead < 0) ||
4643                     (fp->fr_grhead >= fp->fr_namelen)) {
4644                         IPFERROR(137);
4645                         error = EINVAL;
4646                         goto donenolock;
4647                 }
4648                 if (!strcmp(FR_NAME(fp, fr_grhead), "0"))
4649                         fp->fr_names[fp->fr_grhead] = '\0';
4650         }
4651
4652         if (fp->fr_group != -1) {
4653                 if ((fp->fr_group < 0) ||
4654                     (fp->fr_group >= fp->fr_namelen)) {
4655                         IPFERROR(138);
4656                         error = EINVAL;
4657                         goto donenolock;
4658                 }
4659                 if ((req != (int)SIOCZRLST) && (fp->fr_group != -1)) {
4660                         /*
4661                          * Allow loading rules that are in groups to cause
4662                          * them to be created if they don't already exit.
4663                          */
4664                         group = FR_NAME(fp, fr_group);
4665                         if (addrem == 0) {
4666                                 fg = ipf_group_add(softc, group, NULL,
4667                                                    fp->fr_flags, unit, set);
4668                                 fp->fr_grp = fg;
4669                         } else {
4670                                 fg = ipf_findgroup(softc, group, unit,
4671                                                    set, NULL);
4672                                 if (fg == NULL) {
4673                                         IPFERROR(12);
4674                                         error = ESRCH;
4675                                         goto donenolock;
4676                                 }
4677                         }
4678
4679                         if (fg->fg_flags == 0) {
4680                                 fg->fg_flags = fp->fr_flags & FR_INOUT;
4681                         } else if (fg->fg_flags != (fp->fr_flags & FR_INOUT)) {
4682                                 IPFERROR(13);
4683                                 error = ESRCH;
4684                                 goto donenolock;
4685                         }
4686                 }
4687         } else {
4688                 /*
4689                  * If a rule is going to be part of a group then it does
4690                  * not matter whether it is an in or out rule, but if it
4691                  * isn't in a group, then it does...
4692                  */
4693                 if ((fp->fr_flags & (FR_INQUE|FR_OUTQUE)) == 0) {
4694                         IPFERROR(14);
4695                         error = EINVAL;
4696                         goto donenolock;
4697                 }
4698         }
4699         in = (fp->fr_flags & FR_INQUE) ? 0 : 1;
4700
4701         /*
4702          * Work out which rule list this change is being applied to.
4703          */
4704         ftail = NULL;
4705         fprev = NULL;
4706         if (unit == IPL_LOGAUTH) {
4707                 if ((fp->fr_tifs[0].fd_ptr != NULL) ||
4708                     (fp->fr_tifs[1].fd_ptr != NULL) ||
4709                     (fp->fr_dif.fd_ptr != NULL) ||
4710                     (fp->fr_flags & FR_FASTROUTE)) {
4711                         softc->ipf_interror = 145;
4712                         error = EINVAL;
4713                         goto donenolock;
4714                 }
4715                 fprev = ipf_auth_rulehead(softc);
4716         } else {
4717                 if (FR_ISACCOUNT(fp->fr_flags))
4718                         fprev = &softc->ipf_acct[in][set];
4719                 else if ((fp->fr_flags & (FR_OUTQUE|FR_INQUE)) != 0)
4720                         fprev = &softc->ipf_rules[in][set];
4721         }
4722         if (fprev == NULL) {
4723                 IPFERROR(15);
4724                 error = ESRCH;
4725                 goto donenolock;
4726         }
4727
4728         if (fg != NULL)
4729                 fprev = &fg->fg_start;
4730
4731         /*
4732          * Copy in extra data for the rule.
4733          */
4734         if (fp->fr_dsize != 0) {
4735                 if (makecopy != 0) {
4736                         KMALLOCS(ptr, void *, fp->fr_dsize);
4737                         if (ptr == NULL) {
4738                                 IPFERROR(16);
4739                                 error = ENOMEM;
4740                                 goto donenolock;
4741                         }
4742
4743                         /*
4744                          * The bcopy case is for when the data is appended
4745                          * to the rule by ipf_in_compat().
4746                          */
4747                         if (uptr >= (void *)fp &&
4748                             uptr < (void *)((char *)fp + fp->fr_size)) {
4749                                 bcopy(uptr, ptr, fp->fr_dsize);
4750                                 error = 0;
4751                         } else {
4752                                 error = COPYIN(uptr, ptr, fp->fr_dsize);
4753                                 if (error != 0) {
4754                                         IPFERROR(17);
4755                                         error = EFAULT;
4756                                         goto donenolock;
4757                                 }
4758                         }
4759                 } else {
4760                         ptr = uptr;
4761                 }
4762                 fp->fr_data = ptr;
4763         } else {
4764                 fp->fr_data = NULL;
4765         }
4766
4767         /*
4768          * Perform per-rule type sanity checks of their members.
4769          * All code after this needs to be aware that allocated memory
4770          * may need to be free'd before exiting.
4771          */
4772         switch (fp->fr_type & ~FR_T_BUILTIN)
4773         {
4774 #if defined(IPFILTER_BPF)
4775         case FR_T_BPFOPC :
4776                 if (fp->fr_dsize == 0) {
4777                         IPFERROR(19);
4778                         error = EINVAL;
4779                         break;
4780                 }
4781                 if (!bpf_validate(ptr, fp->fr_dsize/sizeof(struct bpf_insn))) {
4782                         IPFERROR(20);
4783                         error = EINVAL;
4784                         break;
4785                 }
4786                 break;
4787 #endif
4788         case FR_T_IPF :
4789                 /*
4790                  * Preparation for error case at the bottom of this function.
4791                  */
4792                 if (fp->fr_datype == FRI_LOOKUP)
4793                         fp->fr_dstptr = NULL;
4794                 if (fp->fr_satype == FRI_LOOKUP)
4795                         fp->fr_srcptr = NULL;
4796
4797                 if (fp->fr_dsize != sizeof(fripf_t)) {
4798                         IPFERROR(21);
4799                         error = EINVAL;
4800                         break;
4801                 }
4802
4803                 /*
4804                  * Allowing a rule with both "keep state" and "with oow" is
4805                  * pointless because adding a state entry to the table will
4806                  * fail with the out of window (oow) flag set.
4807                  */
4808                 if ((fp->fr_flags & FR_KEEPSTATE) && (fp->fr_flx & FI_OOW)) {
4809                         IPFERROR(22);
4810                         error = EINVAL;
4811                         break;
4812                 }
4813
4814                 switch (fp->fr_satype)
4815                 {
4816                 case FRI_BROADCAST :
4817                 case FRI_DYNAMIC :
4818                 case FRI_NETWORK :
4819                 case FRI_NETMASKED :
4820                 case FRI_PEERADDR :
4821                         if (fp->fr_sifpidx < 0) {
4822                                 IPFERROR(23);
4823                                 error = EINVAL;
4824                         }
4825                         break;
4826                 case FRI_LOOKUP :
4827                         fp->fr_srcptr = ipf_findlookup(softc, unit, fp,
4828                                                        &fp->fr_src6,
4829                                                        &fp->fr_smsk6);
4830                         if (fp->fr_srcfunc == NULL) {
4831                                 IPFERROR(132);
4832                                 error = ESRCH;
4833                                 break;
4834                         }
4835                         break;
4836                 case FRI_NORMAL :
4837                         break;
4838                 default :
4839                         IPFERROR(133);
4840                         error = EINVAL;
4841                         break;
4842                 }
4843                 if (error != 0)
4844                         break;
4845
4846                 switch (fp->fr_datype)
4847                 {
4848                 case FRI_BROADCAST :
4849                 case FRI_DYNAMIC :
4850                 case FRI_NETWORK :
4851                 case FRI_NETMASKED :
4852                 case FRI_PEERADDR :
4853                         if (fp->fr_difpidx < 0) {
4854                                 IPFERROR(24);
4855                                 error = EINVAL;
4856                         }
4857                         break;
4858                 case FRI_LOOKUP :
4859                         fp->fr_dstptr = ipf_findlookup(softc, unit, fp,
4860                                                        &fp->fr_dst6,
4861                                                        &fp->fr_dmsk6);
4862                         if (fp->fr_dstfunc == NULL) {
4863                                 IPFERROR(134);
4864                                 error = ESRCH;
4865                         }
4866                         break;
4867                 case FRI_NORMAL :
4868                         break;
4869                 default :
4870                         IPFERROR(135);
4871                         error = EINVAL;
4872                 }
4873                 break;
4874
4875         case FR_T_NONE :
4876         case FR_T_CALLFUNC :
4877         case FR_T_COMPIPF :
4878                 break;
4879
4880         case FR_T_IPFEXPR :
4881                 if (ipf_matcharray_verify(fp->fr_data, fp->fr_dsize) == -1) {
4882                         IPFERROR(25);
4883                         error = EINVAL;
4884                 }
4885                 break;
4886
4887         default :
4888                 IPFERROR(26);
4889                 error = EINVAL;
4890                 break;
4891         }
4892         if (error != 0)
4893                 goto donenolock;
4894
4895         if (fp->fr_tif.fd_name != -1) {
4896                 if ((fp->fr_tif.fd_name < 0) ||
4897                     (fp->fr_tif.fd_name >= fp->fr_namelen)) {
4898                         IPFERROR(139);
4899                         error = EINVAL;
4900                         goto donenolock;
4901                 }
4902         }
4903
4904         if (fp->fr_dif.fd_name != -1) {
4905                 if ((fp->fr_dif.fd_name < 0) ||
4906                     (fp->fr_dif.fd_name >= fp->fr_namelen)) {
4907                         IPFERROR(140);
4908                         error = EINVAL;
4909                         goto donenolock;
4910                 }
4911         }
4912
4913         if (fp->fr_rif.fd_name != -1) {
4914                 if ((fp->fr_rif.fd_name < 0) ||
4915                     (fp->fr_rif.fd_name >= fp->fr_namelen)) {
4916                         IPFERROR(141);
4917                         error = EINVAL;
4918                         goto donenolock;
4919                 }
4920         }
4921
4922         /*
4923          * Lookup all the interface names that are part of the rule.
4924          */
4925         error = ipf_synclist(softc, fp, NULL);
4926         if (error != 0)
4927                 goto donenolock;
4928         fp->fr_statecnt = 0;
4929         if (fp->fr_srctrack.ht_max_nodes != 0)
4930                 ipf_rb_ht_init(&fp->fr_srctrack);
4931
4932         /*
4933          * Look for an existing matching filter rule, but don't include the
4934          * next or interface pointer in the comparison (fr_next, fr_ifa).
4935          * This elminates rules which are indentical being loaded.  Checksum
4936          * the constant part of the filter rule to make comparisons quicker
4937          * (this meaning no pointers are included).
4938          */
4939         for (fp->fr_cksum = 0, p = (u_int *)&fp->fr_func, pp = &fp->fr_cksum;
4940              p < pp; p++)
4941                 fp->fr_cksum += *p;
4942         pp = (u_int *)(fp->fr_caddr + fp->fr_dsize);
4943         for (p = (u_int *)fp->fr_data; p < pp; p++)
4944                 fp->fr_cksum += *p;
4945
4946         WRITE_ENTER(&softc->ipf_mutex);
4947
4948         /*
4949          * Now that the filter rule lists are locked, we can walk the
4950          * chain of them without fear.
4951          */
4952         ftail = fprev;
4953         for (f = *ftail; (f = *ftail) != NULL; ftail = &f->fr_next) {
4954                 if (fp->fr_collect <= f->fr_collect) {
4955                         ftail = fprev;
4956                         f = NULL;
4957                         break;
4958                 }
4959                 fprev = ftail;
4960         }
4961
4962         for (; (f = *ftail) != NULL; ftail = &f->fr_next) {
4963                 if (ipf_rule_compare(fp, f) == 0)
4964                         break;
4965         }
4966
4967         /*
4968          * If zero'ing statistics, copy current to caller and zero.
4969          */
4970         if (addrem == 2) {
4971                 if (f == NULL) {
4972                         IPFERROR(27);
4973                         error = ESRCH;
4974                 } else {
4975                         /*
4976                          * Copy and reduce lock because of impending copyout.
4977                          * Well we should, but if we do then the atomicity of
4978                          * this call and the correctness of fr_hits and
4979                          * fr_bytes cannot be guaranteed.  As it is, this code
4980                          * only resets them to 0 if they are successfully
4981                          * copied out into user space.
4982                          */
4983                         bcopy((char *)f, (char *)fp, f->fr_size);
4984                         /* MUTEX_DOWNGRADE(&softc->ipf_mutex); */
4985
4986                         /*
4987                          * When we copy this rule back out, set the data
4988                          * pointer to be what it was in user space.
4989                          */
4990                         fp->fr_data = uptr;
4991                         error = ipf_outobj(softc, data, fp, IPFOBJ_FRENTRY);
4992
4993                         if (error == 0) {
4994                                 if ((f->fr_dsize != 0) && (uptr != NULL))
4995                                         error = COPYOUT(f->fr_data, uptr,
4996                                                         f->fr_dsize);
4997                                         if (error != 0) {
4998                                                 IPFERROR(28);
4999                                                 error = EFAULT;
5000                                         }
5001                                 if (error == 0) {
5002                                         f->fr_hits = 0;
5003                                         f->fr_bytes = 0;
5004                                 }
5005                         }
5006                 }
5007
5008                 if (makecopy != 0) {
5009                         if (ptr != NULL) {
5010                                 KFREES(ptr, fp->fr_dsize);
5011                         }
5012                         KFREES(fp, fp->fr_size);
5013                 }
5014                 RWLOCK_EXIT(&softc->ipf_mutex);
5015                 return error;
5016         }
5017
5018         if (!f) {
5019                 /*
5020                  * At the end of this, ftail must point to the place where the
5021                  * new rule is to be saved/inserted/added.
5022                  * For SIOCAD*FR, this should be the last rule in the group of
5023                  * rules that have equal fr_collect fields.
5024                  * For SIOCIN*FR, ...
5025                  */
5026                 if (req == (ioctlcmd_t)SIOCADAFR ||
5027                     req == (ioctlcmd_t)SIOCADIFR) {
5028
5029                         for (ftail = fprev; (f = *ftail) != NULL; ) {
5030                                 if (f->fr_collect > fp->fr_collect)
5031                                         break;
5032                                 ftail = &f->fr_next;
5033                                 fprev = ftail;
5034                         }
5035                         ftail = fprev;
5036                         f = NULL;
5037                         ptr = NULL;
5038                 } else if (req == (ioctlcmd_t)SIOCINAFR ||
5039                            req == (ioctlcmd_t)SIOCINIFR) {
5040                         while ((f = *fprev) != NULL) {
5041                                 if (f->fr_collect >= fp->fr_collect)
5042                                         break;
5043                                 fprev = &f->fr_next;
5044                         }
5045                         ftail = fprev;
5046                         if (fp->fr_hits != 0) {
5047                                 while (fp->fr_hits && (f = *ftail)) {
5048                                         if (f->fr_collect != fp->fr_collect)
5049                                                 break;
5050                                         fprev = ftail;
5051                                         ftail = &f->fr_next;
5052                                         fp->fr_hits--;
5053                                 }
5054                         }
5055                         f = NULL;
5056                         ptr = NULL;
5057                 }
5058         }
5059
5060         /*
5061          * Request to remove a rule.
5062          */
5063         if (addrem == 1) {
5064                 if (!f) {
5065                         IPFERROR(29);
5066                         error = ESRCH;
5067                 } else {
5068                         /*
5069                          * Do not allow activity from user space to interfere
5070                          * with rules not loaded that way.
5071                          */
5072                         if ((makecopy == 1) && !(f->fr_flags & FR_COPIED)) {
5073                                 IPFERROR(30);
5074                                 error = EPERM;
5075                                 goto done;
5076                         }
5077
5078                         /*
5079                          * Return EBUSY if the rule is being reference by
5080                          * something else (eg state information.)
5081                          */
5082                         if (f->fr_ref > 1) {
5083                                 IPFERROR(31);
5084                                 error = EBUSY;
5085                                 goto done;
5086                         }
5087 #ifdef  IPFILTER_SCAN
5088                         if (f->fr_isctag != -1 &&
5089                             (f->fr_isc != (struct ipscan *)-1))
5090                                 ipf_scan_detachfr(f);
5091 #endif
5092
5093                         if (unit == IPL_LOGAUTH) {
5094                                 error = ipf_auth_precmd(softc, req, f, ftail);
5095                                 goto done;
5096                         }
5097
5098                         ipf_rule_delete(softc, f, unit, set);
5099
5100                         need_free = makecopy;
5101                 }
5102         } else {
5103                 /*
5104                  * Not removing, so we must be adding/inserting a rule.
5105                  */
5106                 if (f != NULL) {
5107                         IPFERROR(32);
5108                         error = EEXIST;
5109                         goto done;
5110                 }
5111                 if (unit == IPL_LOGAUTH) {
5112                         error = ipf_auth_precmd(softc, req, fp, ftail);
5113                         goto done;
5114                 }
5115
5116                 MUTEX_NUKE(&fp->fr_lock);
5117                 MUTEX_INIT(&fp->fr_lock, "filter rule lock");
5118                 if (fp->fr_die != 0)
5119                         ipf_rule_expire_insert(softc, fp, set);
5120
5121                 fp->fr_hits = 0;
5122                 if (makecopy != 0)
5123                         fp->fr_ref = 1;
5124                 fp->fr_pnext = ftail;
5125                 fp->fr_next = *ftail;
5126                 if (fp->fr_next != NULL)
5127                         fp->fr_next->fr_pnext = &fp->fr_next;
5128                 *ftail = fp;
5129                 if (addrem == 0)
5130                         ipf_fixskip(ftail, fp, 1);
5131
5132                 fp->fr_icmpgrp = NULL;
5133                 if (fp->fr_icmphead != -1) {
5134                         group = FR_NAME(fp, fr_icmphead);
5135                         fg = ipf_group_add(softc, group, fp, 0, unit, set);
5136                         fp->fr_icmpgrp = fg;
5137                 }
5138
5139                 fp->fr_grphead = NULL;
5140                 if (fp->fr_grhead != -1) {
5141                         group = FR_NAME(fp, fr_grhead);
5142                         fg = ipf_group_add(softc, group, fp, fp->fr_flags,
5143                                            unit, set);
5144                         fp->fr_grphead = fg;
5145                 }
5146         }
5147 done:
5148         RWLOCK_EXIT(&softc->ipf_mutex);
5149 donenolock:
5150         if (need_free || (error != 0)) {
5151                 if ((fp->fr_type & ~FR_T_BUILTIN) == FR_T_IPF) {
5152                         if ((fp->fr_satype == FRI_LOOKUP) &&
5153                             (fp->fr_srcptr != NULL))
5154                                 ipf_lookup_deref(softc, fp->fr_srctype,
5155                                                  fp->fr_srcptr);
5156                         if ((fp->fr_datype == FRI_LOOKUP) &&
5157                             (fp->fr_dstptr != NULL))
5158                                 ipf_lookup_deref(softc, fp->fr_dsttype,
5159                                                  fp->fr_dstptr);
5160                 }
5161                 if (fp->fr_grp != NULL) {
5162                         WRITE_ENTER(&softc->ipf_mutex);
5163                         ipf_group_del(softc, fp->fr_grp, fp);
5164                         RWLOCK_EXIT(&softc->ipf_mutex);
5165                 }
5166                 if ((ptr != NULL) && (makecopy != 0)) {
5167                         KFREES(ptr, fp->fr_dsize);
5168                 }
5169                 KFREES(fp, fp->fr_size);
5170         }
5171         return (error);
5172 }
5173
5174
5175 /* ------------------------------------------------------------------------ */
5176 /* Function:   ipf_rule_delete                                              */
5177 /* Returns:    Nil                                                          */
5178 /* Parameters: softc(I) - pointer to soft context main structure            */
5179 /*             f(I)     - pointer to the rule being deleted                 */
5180 /*             ftail(I) - pointer to the pointer to f                       */
5181 /*             unit(I)  - device for which this is for                      */
5182 /*             set(I)   - 1 or 0 (filter set)                               */
5183 /*                                                                          */
5184 /* This function attempts to do what it can to delete a filter rule: remove */
5185 /* it from any linked lists and remove any groups it is responsible for.    */
5186 /* But in the end, removing a rule can only drop the reference count - we   */
5187 /* must use that as the guide for whether or not it can be freed.           */
5188 /* ------------------------------------------------------------------------ */
5189 static void
5190 ipf_rule_delete(softc, f, unit, set)
5191         ipf_main_softc_t *softc;
5192         frentry_t *f;
5193         int unit, set;
5194 {
5195
5196         /*
5197          * If fr_pdnext is set, then the rule is on the expire list, so
5198          * remove it from there.
5199          */
5200         if (f->fr_pdnext != NULL) {
5201                 *f->fr_pdnext = f->fr_dnext;
5202                 if (f->fr_dnext != NULL)
5203                         f->fr_dnext->fr_pdnext = f->fr_pdnext;
5204                 f->fr_pdnext = NULL;
5205                 f->fr_dnext = NULL;
5206         }
5207
5208         ipf_fixskip(f->fr_pnext, f, -1);
5209         if (f->fr_pnext != NULL)
5210                 *f->fr_pnext = f->fr_next;
5211         if (f->fr_next != NULL)
5212                 f->fr_next->fr_pnext = f->fr_pnext;
5213         f->fr_pnext = NULL;
5214         f->fr_next = NULL;
5215
5216         (void) ipf_derefrule(softc, &f);
5217 }
5218
5219 /* ------------------------------------------------------------------------ */
5220 /* Function:   ipf_rule_expire_insert                                       */
5221 /* Returns:    Nil                                                          */
5222 /* Parameters: softc(I) - pointer to soft context main structure            */
5223 /*             f(I)     - pointer to rule to be added to expire list        */
5224 /*             set(I)   - 1 or 0 (filter set)                               */
5225 /*                                                                          */
5226 /* If the new rule has a given expiration time, insert it into the list of  */
5227 /* expiring rules with the ones to be removed first added to the front of   */
5228 /* the list. The insertion is O(n) but it is kept sorted for quick scans at */
5229 /* expiration interval checks.                                              */
5230 /* ------------------------------------------------------------------------ */
5231 static void
5232 ipf_rule_expire_insert(softc, f, set)
5233         ipf_main_softc_t *softc;
5234         frentry_t *f;
5235         int set;
5236 {
5237         frentry_t *fr;
5238
5239         /*
5240          */
5241
5242         f->fr_die = softc->ipf_ticks + IPF_TTLVAL(f->fr_die);
5243         for (fr = softc->ipf_rule_explist[set]; fr != NULL;
5244              fr = fr->fr_dnext) {
5245                 if (f->fr_die < fr->fr_die)
5246                         break;
5247                 if (fr->fr_dnext == NULL) {
5248                         /*
5249                          * We've got to the last rule and everything
5250                          * wanted to be expired before this new node,
5251                          * so we have to tack it on the end...
5252                          */
5253                         fr->fr_dnext = f;
5254                         f->fr_pdnext = &fr->fr_dnext;
5255                         fr = NULL;
5256                         break;
5257                 }
5258         }
5259
5260         if (softc->ipf_rule_explist[set] == NULL) {
5261                 softc->ipf_rule_explist[set] = f;
5262                 f->fr_pdnext = &softc->ipf_rule_explist[set];
5263         } else if (fr != NULL) {
5264                 f->fr_dnext = fr;
5265                 f->fr_pdnext = fr->fr_pdnext;
5266                 fr->fr_pdnext = &f->fr_dnext;
5267         }
5268 }
5269
5270
5271 /* ------------------------------------------------------------------------ */
5272 /* Function:   ipf_findlookup                                               */
5273 /* Returns:    NULL = failure, else success                                 */
5274 /* Parameters: softc(I) - pointer to soft context main structure            */
5275 /*             unit(I)  - ipf device we want to find match for              */
5276 /*             fp(I)    - rule for which lookup is for                      */
5277 /*             addrp(I) - pointer to lookup information in address struct   */
5278 /*             maskp(O) - pointer to lookup information for storage         */
5279 /*                                                                          */
5280 /* When using pools and hash tables to store addresses for matching in      */
5281 /* rules, it is necessary to resolve both the object referred to by the     */
5282 /* name or address (and return that pointer) and also provide the means by  */
5283 /* which to determine if an address belongs to that object to make the      */
5284 /* packet matching quicker.                                                 */
5285 /* ------------------------------------------------------------------------ */
5286 static void *
5287 ipf_findlookup(softc, unit, fr, addrp, maskp)
5288         ipf_main_softc_t *softc;
5289         int unit;
5290         frentry_t *fr;
5291         i6addr_t *addrp, *maskp;
5292 {
5293         void *ptr = NULL;
5294
5295         switch (addrp->iplookupsubtype)
5296         {
5297         case 0 :
5298                 ptr = ipf_lookup_res_num(softc, unit, addrp->iplookuptype,
5299                                          addrp->iplookupnum,
5300                                          &maskp->iplookupfunc);
5301                 break;
5302         case 1 :
5303                 if (addrp->iplookupname < 0)
5304                         break;
5305                 if (addrp->iplookupname >= fr->fr_namelen)
5306                         break;
5307                 ptr = ipf_lookup_res_name(softc, unit, addrp->iplookuptype,
5308                                           fr->fr_names + addrp->iplookupname,
5309                                           &maskp->iplookupfunc);
5310                 break;
5311         default :
5312                 break;
5313         }
5314
5315         return ptr;
5316 }
5317
5318
5319 /* ------------------------------------------------------------------------ */
5320 /* Function:    ipf_funcinit                                                */
5321 /* Returns:     int - 0 == success, else ESRCH: cannot resolve rule details */
5322 /* Parameters:  softc(I) - pointer to soft context main structure           */
5323 /*              fr(I)    - pointer to filter rule                           */
5324 /*                                                                          */
5325 /* If a rule is a call rule, then check if the function it points to needs  */
5326 /* an init function to be called now the rule has been loaded.              */
5327 /* ------------------------------------------------------------------------ */
5328 static int
5329 ipf_funcinit(softc, fr)
5330         ipf_main_softc_t *softc;
5331         frentry_t *fr;
5332 {
5333         ipfunc_resolve_t *ft;
5334         int err;
5335
5336         IPFERROR(34);
5337         err = ESRCH;
5338
5339         for (ft = ipf_availfuncs; ft->ipfu_addr != NULL; ft++)
5340                 if (ft->ipfu_addr == fr->fr_func) {
5341                         err = 0;
5342                         if (ft->ipfu_init != NULL)
5343                                 err = (*ft->ipfu_init)(softc, fr);
5344                         break;
5345                 }
5346         return err;
5347 }
5348
5349
5350 /* ------------------------------------------------------------------------ */
5351 /* Function:    ipf_funcfini                                                */
5352 /* Returns:     Nil                                                         */
5353 /* Parameters:  softc(I) - pointer to soft context main structure           */
5354 /*              fr(I)    - pointer to filter rule                           */
5355 /*                                                                          */
5356 /* For a given filter rule, call the matching "fini" function if the rule   */
5357 /* is using a known function that would have resulted in the "init" being   */
5358 /* called for ealier.                                                       */
5359 /* ------------------------------------------------------------------------ */
5360 static void
5361 ipf_funcfini(softc, fr)
5362         ipf_main_softc_t *softc;
5363         frentry_t *fr;
5364 {
5365         ipfunc_resolve_t *ft;
5366
5367         for (ft = ipf_availfuncs; ft->ipfu_addr != NULL; ft++)
5368                 if (ft->ipfu_addr == fr->fr_func) {
5369                         if (ft->ipfu_fini != NULL)
5370                                 (void) (*ft->ipfu_fini)(softc, fr);
5371                         break;
5372                 }
5373 }
5374
5375
5376 /* ------------------------------------------------------------------------ */
5377 /* Function:    ipf_findfunc                                                */
5378 /* Returns:     ipfunc_t - pointer to function if found, else NULL          */
5379 /* Parameters:  funcptr(I) - function pointer to lookup                     */
5380 /*                                                                          */
5381 /* Look for a function in the table of known functions.                     */
5382 /* ------------------------------------------------------------------------ */
5383 static ipfunc_t
5384 ipf_findfunc(funcptr)
5385         ipfunc_t funcptr;
5386 {
5387         ipfunc_resolve_t *ft;
5388
5389         for (ft = ipf_availfuncs; ft->ipfu_addr != NULL; ft++)
5390                 if (ft->ipfu_addr == funcptr)
5391                         return funcptr;
5392         return NULL;
5393 }
5394
5395
5396 /* ------------------------------------------------------------------------ */
5397 /* Function:    ipf_resolvefunc                                             */
5398 /* Returns:     int - 0 == success, else error                              */
5399 /* Parameters:  data(IO) - ioctl data pointer to ipfunc_resolve_t struct    */
5400 /*                                                                          */
5401 /* Copy in a ipfunc_resolve_t structure and then fill in the missing field. */
5402 /* This will either be the function name (if the pointer is set) or the     */
5403 /* function pointer if the name is set.  When found, fill in the other one  */
5404 /* so that the entire, complete, structure can be copied back to user space.*/
5405 /* ------------------------------------------------------------------------ */
5406 int
5407 ipf_resolvefunc(softc, data)
5408         ipf_main_softc_t *softc;
5409         void *data;
5410 {
5411         ipfunc_resolve_t res, *ft;
5412         int error;
5413
5414         error = BCOPYIN(data, &res, sizeof(res));
5415         if (error != 0) {
5416                 IPFERROR(123);
5417                 return EFAULT;
5418         }
5419
5420         if (res.ipfu_addr == NULL && res.ipfu_name[0] != '\0') {
5421                 for (ft = ipf_availfuncs; ft->ipfu_addr != NULL; ft++)
5422                         if (strncmp(res.ipfu_name, ft->ipfu_name,
5423                                     sizeof(res.ipfu_name)) == 0) {
5424                                 res.ipfu_addr = ft->ipfu_addr;
5425                                 res.ipfu_init = ft->ipfu_init;
5426                                 if (COPYOUT(&res, data, sizeof(res)) != 0) {
5427                                         IPFERROR(35);
5428                                         return EFAULT;
5429                                 }
5430                                 return 0;
5431                         }
5432         }
5433         if (res.ipfu_addr != NULL && res.ipfu_name[0] == '\0') {
5434                 for (ft = ipf_availfuncs; ft->ipfu_addr != NULL; ft++)
5435                         if (ft->ipfu_addr == res.ipfu_addr) {
5436                                 (void) strncpy(res.ipfu_name, ft->ipfu_name,
5437                                                sizeof(res.ipfu_name));
5438                                 res.ipfu_init = ft->ipfu_init;
5439                                 if (COPYOUT(&res, data, sizeof(res)) != 0) {
5440                                         IPFERROR(36);
5441                                         return EFAULT;
5442                                 }
5443                                 return 0;
5444                         }
5445         }
5446         IPFERROR(37);
5447         return ESRCH;
5448 }
5449
5450
5451 #if !defined(_KERNEL) || (!defined(__NetBSD__) && !defined(__OpenBSD__) && \
5452      !defined(__FreeBSD__)) || \
5453     FREEBSD_LT_REV(501000) || NETBSD_LT_REV(105000000) || \
5454     OPENBSD_LT_REV(200006)
5455 /*
5456  * From: NetBSD
5457  * ppsratecheck(): packets (or events) per second limitation.
5458  */
5459 int
5460 ppsratecheck(lasttime, curpps, maxpps)
5461         struct timeval *lasttime;
5462         int *curpps;
5463         int maxpps;     /* maximum pps allowed */
5464 {
5465         struct timeval tv, delta;
5466         int rv;
5467
5468         GETKTIME(&tv);
5469
5470         delta.tv_sec = tv.tv_sec - lasttime->tv_sec;
5471         delta.tv_usec = tv.tv_usec - lasttime->tv_usec;
5472         if (delta.tv_usec < 0) {
5473                 delta.tv_sec--;
5474                 delta.tv_usec += 1000000;
5475         }
5476
5477         /*
5478          * check for 0,0 is so that the message will be seen at least once.
5479          * if more than one second have passed since the last update of
5480          * lasttime, reset the counter.
5481          *
5482          * we do increment *curpps even in *curpps < maxpps case, as some may
5483          * try to use *curpps for stat purposes as well.
5484          */
5485         if ((lasttime->tv_sec == 0 && lasttime->tv_usec == 0) ||
5486             delta.tv_sec >= 1) {
5487                 *lasttime = tv;
5488                 *curpps = 0;
5489                 rv = 1;
5490         } else if (maxpps < 0)
5491                 rv = 1;
5492         else if (*curpps < maxpps)
5493                 rv = 1;
5494         else
5495                 rv = 0;
5496         *curpps = *curpps + 1;
5497
5498         return (rv);
5499 }
5500 #endif
5501
5502
5503 /* ------------------------------------------------------------------------ */
5504 /* Function:    ipf_derefrule                                               */
5505 /* Returns:     int   - 0 == rule freed up, else rule not freed             */
5506 /* Parameters:  fr(I) - pointer to filter rule                              */
5507 /*                                                                          */
5508 /* Decrement the reference counter to a rule by one.  If it reaches zero,   */
5509 /* free it and any associated storage space being used by it.               */
5510 /* ------------------------------------------------------------------------ */
5511 int
5512 ipf_derefrule(softc, frp)
5513         ipf_main_softc_t *softc;
5514         frentry_t **frp;
5515 {
5516         frentry_t *fr;
5517         frdest_t *fdp;
5518
5519         fr = *frp;
5520         *frp = NULL;
5521
5522         MUTEX_ENTER(&fr->fr_lock);
5523         fr->fr_ref--;
5524         if (fr->fr_ref == 0) {
5525                 MUTEX_EXIT(&fr->fr_lock);
5526                 MUTEX_DESTROY(&fr->fr_lock);
5527
5528                 ipf_funcfini(softc, fr);
5529
5530                 fdp = &fr->fr_tif;
5531                 if (fdp->fd_type == FRD_DSTLIST)
5532                         ipf_lookup_deref(softc, IPLT_DSTLIST, fdp->fd_ptr);
5533
5534                 fdp = &fr->fr_rif;
5535                 if (fdp->fd_type == FRD_DSTLIST)
5536                         ipf_lookup_deref(softc, IPLT_DSTLIST, fdp->fd_ptr);
5537
5538                 fdp = &fr->fr_dif;
5539                 if (fdp->fd_type == FRD_DSTLIST)
5540                         ipf_lookup_deref(softc, IPLT_DSTLIST, fdp->fd_ptr);
5541
5542                 if ((fr->fr_type & ~FR_T_BUILTIN) == FR_T_IPF &&
5543                     fr->fr_satype == FRI_LOOKUP)
5544                         ipf_lookup_deref(softc, fr->fr_srctype, fr->fr_srcptr);
5545                 if ((fr->fr_type & ~FR_T_BUILTIN) == FR_T_IPF &&
5546                     fr->fr_datype == FRI_LOOKUP)
5547                         ipf_lookup_deref(softc, fr->fr_dsttype, fr->fr_dstptr);
5548
5549                 if (fr->fr_grp != NULL)
5550                         ipf_group_del(softc, fr->fr_grp, fr);
5551
5552                 if (fr->fr_grphead != NULL)
5553                         ipf_group_del(softc, fr->fr_grphead, fr);
5554
5555                 if (fr->fr_icmpgrp != NULL)
5556                         ipf_group_del(softc, fr->fr_icmpgrp, fr);
5557
5558                 if ((fr->fr_flags & FR_COPIED) != 0) {
5559                         if (fr->fr_dsize) {
5560                                 KFREES(fr->fr_data, fr->fr_dsize);
5561                         }
5562                         KFREES(fr, fr->fr_size);
5563                         return 0;
5564                 }
5565                 return 1;
5566         } else {
5567                 MUTEX_EXIT(&fr->fr_lock);
5568         }
5569         return -1;
5570 }
5571
5572
5573 /* ------------------------------------------------------------------------ */
5574 /* Function:    ipf_grpmapinit                                              */
5575 /* Returns:     int - 0 == success, else ESRCH because table entry not found*/
5576 /* Parameters:  fr(I) - pointer to rule to find hash table for              */
5577 /*                                                                          */
5578 /* Looks for group hash table fr_arg and stores a pointer to it in fr_ptr.  */
5579 /* fr_ptr is later used by ipf_srcgrpmap and ipf_dstgrpmap.                 */
5580 /* ------------------------------------------------------------------------ */
5581 static int
5582 ipf_grpmapinit(softc, fr)
5583         ipf_main_softc_t *softc;
5584         frentry_t *fr;
5585 {
5586         char name[FR_GROUPLEN];
5587         iphtable_t *iph;
5588
5589 #if defined(SNPRINTF) && defined(_KERNEL)
5590         SNPRINTF(name, sizeof(name), "%d", fr->fr_arg);
5591 #else
5592         (void) sprintf(name, "%d", fr->fr_arg);
5593 #endif
5594         iph = ipf_lookup_find_htable(softc, IPL_LOGIPF, name);
5595         if (iph == NULL) {
5596                 IPFERROR(38);
5597                 return ESRCH;
5598         }
5599         if ((iph->iph_flags & FR_INOUT) != (fr->fr_flags & FR_INOUT)) {
5600                 IPFERROR(39);
5601                 return ESRCH;
5602         }
5603         iph->iph_ref++;
5604         fr->fr_ptr = iph;
5605         return 0;
5606 }
5607
5608
5609 /* ------------------------------------------------------------------------ */
5610 /* Function:    ipf_grpmapfini                                              */
5611 /* Returns:     int - 0 == success, else ESRCH because table entry not found*/
5612 /* Parameters:  softc(I) - pointer to soft context main structure           */
5613 /*              fr(I)    - pointer to rule to release hash table for        */
5614 /*                                                                          */
5615 /* For rules that have had ipf_grpmapinit called, ipf_lookup_deref needs to */
5616 /* be called to undo what ipf_grpmapinit caused to be done.                 */
5617 /* ------------------------------------------------------------------------ */
5618 static int
5619 ipf_grpmapfini(softc, fr)
5620         ipf_main_softc_t *softc;
5621         frentry_t *fr;
5622 {
5623         iphtable_t *iph;
5624         iph = fr->fr_ptr;
5625         if (iph != NULL)
5626                 ipf_lookup_deref(softc, IPLT_HASH, iph);
5627         return 0;
5628 }
5629
5630
5631 /* ------------------------------------------------------------------------ */
5632 /* Function:    ipf_srcgrpmap                                               */
5633 /* Returns:     frentry_t * - pointer to "new last matching" rule or NULL   */
5634 /* Parameters:  fin(I)    - pointer to packet information                   */
5635 /*              passp(IO) - pointer to current/new filter decision (unused) */
5636 /*                                                                          */
5637 /* Look for a rule group head in a hash table, using the source address as  */
5638 /* the key, and descend into that group and continue matching rules against */
5639 /* the packet.                                                              */
5640 /* ------------------------------------------------------------------------ */
5641 frentry_t *
5642 ipf_srcgrpmap(fin, passp)
5643         fr_info_t *fin;
5644         u_32_t *passp;
5645 {
5646         frgroup_t *fg;
5647         void *rval;
5648
5649         rval = ipf_iphmfindgroup(fin->fin_main_soft, fin->fin_fr->fr_ptr,
5650                                  &fin->fin_src);
5651         if (rval == NULL)
5652                 return NULL;
5653
5654         fg = rval;
5655         fin->fin_fr = fg->fg_start;
5656         (void) ipf_scanlist(fin, *passp);
5657         return fin->fin_fr;
5658 }
5659
5660
5661 /* ------------------------------------------------------------------------ */
5662 /* Function:    ipf_dstgrpmap                                               */
5663 /* Returns:     frentry_t * - pointer to "new last matching" rule or NULL   */
5664 /* Parameters:  fin(I)    - pointer to packet information                   */
5665 /*              passp(IO) - pointer to current/new filter decision (unused) */
5666 /*                                                                          */
5667 /* Look for a rule group head in a hash table, using the destination        */
5668 /* address as the key, and descend into that group and continue matching    */
5669 /* rules against  the packet.                                               */
5670 /* ------------------------------------------------------------------------ */
5671 frentry_t *
5672 ipf_dstgrpmap(fin, passp)
5673         fr_info_t *fin;
5674         u_32_t *passp;
5675 {
5676         frgroup_t *fg;
5677         void *rval;
5678
5679         rval = ipf_iphmfindgroup(fin->fin_main_soft, fin->fin_fr->fr_ptr,
5680                                  &fin->fin_dst);
5681         if (rval == NULL)
5682                 return NULL;
5683
5684         fg = rval;
5685         fin->fin_fr = fg->fg_start;
5686         (void) ipf_scanlist(fin, *passp);
5687         return fin->fin_fr;
5688 }
5689
5690 /*
5691  * Queue functions
5692  * ===============
5693  * These functions manage objects on queues for efficient timeouts.  There
5694  * are a number of system defined queues as well as user defined timeouts.
5695  * It is expected that a lock is held in the domain in which the queue
5696  * belongs (i.e. either state or NAT) when calling any of these functions
5697  * that prevents ipf_freetimeoutqueue() from being called at the same time
5698  * as any other.
5699  */
5700
5701
5702 /* ------------------------------------------------------------------------ */
5703 /* Function:    ipf_addtimeoutqueue                                         */
5704 /* Returns:     struct ifqtq * - NULL if malloc fails, else pointer to      */
5705 /*                               timeout queue with given interval.         */
5706 /* Parameters:  parent(I)  - pointer to pointer to parent node of this list */
5707 /*                           of interface queues.                           */
5708 /*              seconds(I) - timeout value in seconds for this queue.       */
5709 /*                                                                          */
5710 /* This routine first looks for a timeout queue that matches the interval   */
5711 /* being requested.  If it finds one, increments the reference counter and  */
5712 /* returns a pointer to it.  If none are found, it allocates a new one and  */
5713 /* inserts it at the top of the list.                                       */
5714 /*                                                                          */
5715 /* Locking.                                                                 */
5716 /* It is assumed that the caller of this function has an appropriate lock   */
5717 /* held (exclusively) in the domain that encompases 'parent'.               */
5718 /* ------------------------------------------------------------------------ */
5719 ipftq_t *
5720 ipf_addtimeoutqueue(softc, parent, seconds)
5721         ipf_main_softc_t *softc;
5722         ipftq_t **parent;
5723         u_int seconds;
5724 {
5725         ipftq_t *ifq;
5726         u_int period;
5727
5728         period = seconds * IPF_HZ_DIVIDE;
5729
5730         MUTEX_ENTER(&softc->ipf_timeoutlock);
5731         for (ifq = *parent; ifq != NULL; ifq = ifq->ifq_next) {
5732                 if (ifq->ifq_ttl == period) {
5733                         /*
5734                          * Reset the delete flag, if set, so the structure
5735                          * gets reused rather than freed and reallocated.
5736                          */
5737                         MUTEX_ENTER(&ifq->ifq_lock);
5738                         ifq->ifq_flags &= ~IFQF_DELETE;
5739                         ifq->ifq_ref++;
5740                         MUTEX_EXIT(&ifq->ifq_lock);
5741                         MUTEX_EXIT(&softc->ipf_timeoutlock);
5742
5743                         return ifq;
5744                 }
5745         }
5746
5747         KMALLOC(ifq, ipftq_t *);
5748         if (ifq != NULL) {
5749                 MUTEX_NUKE(&ifq->ifq_lock);
5750                 IPFTQ_INIT(ifq, period, "ipftq mutex");
5751                 ifq->ifq_next = *parent;
5752                 ifq->ifq_pnext = parent;
5753                 ifq->ifq_flags = IFQF_USER;
5754                 ifq->ifq_ref++;
5755                 *parent = ifq;
5756                 softc->ipf_userifqs++;
5757         }
5758         MUTEX_EXIT(&softc->ipf_timeoutlock);
5759         return ifq;
5760 }
5761
5762
5763 /* ------------------------------------------------------------------------ */
5764 /* Function:    ipf_deletetimeoutqueue                                      */
5765 /* Returns:     int    - new reference count value of the timeout queue     */
5766 /* Parameters:  ifq(I) - timeout queue which is losing a reference.         */
5767 /* Locks:       ifq->ifq_lock                                               */
5768 /*                                                                          */
5769 /* This routine must be called when we're discarding a pointer to a timeout */
5770 /* queue object, taking care of the reference counter.                      */
5771 /*                                                                          */
5772 /* Now that this just sets a DELETE flag, it requires the expire code to    */
5773 /* check the list of user defined timeout queues and call the free function */
5774 /* below (currently commented out) to stop memory leaking.  It is done this */
5775 /* way because the locking may not be sufficient to safely do a free when   */
5776 /* this function is called.                                                 */
5777 /* ------------------------------------------------------------------------ */
5778 int
5779 ipf_deletetimeoutqueue(ifq)
5780         ipftq_t *ifq;
5781 {
5782
5783         ifq->ifq_ref--;
5784         if ((ifq->ifq_ref == 0) && ((ifq->ifq_flags & IFQF_USER) != 0)) {
5785                 ifq->ifq_flags |= IFQF_DELETE;
5786         }
5787
5788         return ifq->ifq_ref;
5789 }
5790
5791
5792 /* ------------------------------------------------------------------------ */
5793 /* Function:    ipf_freetimeoutqueue                                        */
5794 /* Parameters:  ifq(I) - timeout queue which is losing a reference.         */
5795 /* Returns:     Nil                                                         */
5796 /*                                                                          */
5797 /* Locking:                                                                 */
5798 /* It is assumed that the caller of this function has an appropriate lock   */
5799 /* held (exclusively) in the domain that encompases the callers "domain".   */
5800 /* The ifq_lock for this structure should not be held.                      */
5801 /*                                                                          */
5802 /* Remove a user defined timeout queue from the list of queues it is in and */
5803 /* tidy up after this is done.                                              */
5804 /* ------------------------------------------------------------------------ */
5805 void
5806 ipf_freetimeoutqueue(softc, ifq)
5807         ipf_main_softc_t *softc;
5808         ipftq_t *ifq;
5809 {
5810
5811         if (((ifq->ifq_flags & IFQF_DELETE) == 0) || (ifq->ifq_ref != 0) ||
5812             ((ifq->ifq_flags & IFQF_USER) == 0)) {
5813                 printf("ipf_freetimeoutqueue(%lx) flags 0x%x ttl %d ref %d\n",
5814                        (u_long)ifq, ifq->ifq_flags, ifq->ifq_ttl,
5815                        ifq->ifq_ref);
5816                 return;
5817         }
5818
5819         /*
5820          * Remove from its position in the list.
5821          */
5822         *ifq->ifq_pnext = ifq->ifq_next;
5823         if (ifq->ifq_next != NULL)
5824                 ifq->ifq_next->ifq_pnext = ifq->ifq_pnext;
5825         ifq->ifq_next = NULL;
5826         ifq->ifq_pnext = NULL;
5827
5828         MUTEX_DESTROY(&ifq->ifq_lock);
5829         ATOMIC_DEC(softc->ipf_userifqs);
5830         KFREE(ifq);
5831 }
5832
5833
5834 /* ------------------------------------------------------------------------ */
5835 /* Function:    ipf_deletequeueentry                                        */
5836 /* Returns:     Nil                                                         */
5837 /* Parameters:  tqe(I) - timeout queue entry to delete                      */
5838 /*                                                                          */
5839 /* Remove a tail queue entry from its queue and make it an orphan.          */
5840 /* ipf_deletetimeoutqueue is called to make sure the reference count on the */
5841 /* queue is correct.  We can't, however, call ipf_freetimeoutqueue because  */
5842 /* the correct lock(s) may not be held that would make it safe to do so.    */
5843 /* ------------------------------------------------------------------------ */
5844 void
5845 ipf_deletequeueentry(tqe)
5846         ipftqent_t *tqe;
5847 {
5848         ipftq_t *ifq;
5849
5850         ifq = tqe->tqe_ifq;
5851
5852         MUTEX_ENTER(&ifq->ifq_lock);
5853
5854         if (tqe->tqe_pnext != NULL) {
5855                 *tqe->tqe_pnext = tqe->tqe_next;
5856                 if (tqe->tqe_next != NULL)
5857                         tqe->tqe_next->tqe_pnext = tqe->tqe_pnext;
5858                 else    /* we must be the tail anyway */
5859                         ifq->ifq_tail = tqe->tqe_pnext;
5860
5861                 tqe->tqe_pnext = NULL;
5862                 tqe->tqe_ifq = NULL;
5863         }
5864
5865         (void) ipf_deletetimeoutqueue(ifq);
5866         ASSERT(ifq->ifq_ref > 0);
5867
5868         MUTEX_EXIT(&ifq->ifq_lock);
5869 }
5870
5871
5872 /* ------------------------------------------------------------------------ */
5873 /* Function:    ipf_queuefront                                              */
5874 /* Returns:     Nil                                                         */
5875 /* Parameters:  tqe(I) - pointer to timeout queue entry                     */
5876 /*                                                                          */
5877 /* Move a queue entry to the front of the queue, if it isn't already there. */
5878 /* ------------------------------------------------------------------------ */
5879 void
5880 ipf_queuefront(tqe)
5881         ipftqent_t *tqe;
5882 {
5883         ipftq_t *ifq;
5884
5885         ifq = tqe->tqe_ifq;
5886         if (ifq == NULL)
5887                 return;
5888
5889         MUTEX_ENTER(&ifq->ifq_lock);
5890         if (ifq->ifq_head != tqe) {
5891                 *tqe->tqe_pnext = tqe->tqe_next;
5892                 if (tqe->tqe_next)
5893                         tqe->tqe_next->tqe_pnext = tqe->tqe_pnext;
5894                 else
5895                         ifq->ifq_tail = tqe->tqe_pnext;
5896
5897                 tqe->tqe_next = ifq->ifq_head;
5898                 ifq->ifq_head->tqe_pnext = &tqe->tqe_next;
5899                 ifq->ifq_head = tqe;
5900                 tqe->tqe_pnext = &ifq->ifq_head;
5901         }
5902         MUTEX_EXIT(&ifq->ifq_lock);
5903 }
5904
5905
5906 /* ------------------------------------------------------------------------ */
5907 /* Function:    ipf_queueback                                               */
5908 /* Returns:     Nil                                                         */
5909 /* Parameters:  ticks(I) - ipf tick time to use with this call              */
5910 /*              tqe(I)   - pointer to timeout queue entry                   */
5911 /*                                                                          */
5912 /* Move a queue entry to the back of the queue, if it isn't already there.  */
5913 /* We use use ticks to calculate the expiration and mark for when we last   */
5914 /* touched the structure.                                                   */
5915 /* ------------------------------------------------------------------------ */
5916 void
5917 ipf_queueback(ticks, tqe)
5918         u_long ticks;
5919         ipftqent_t *tqe;
5920 {
5921         ipftq_t *ifq;
5922
5923         ifq = tqe->tqe_ifq;
5924         if (ifq == NULL)
5925                 return;
5926         tqe->tqe_die = ticks + ifq->ifq_ttl;
5927         tqe->tqe_touched = ticks;
5928
5929         MUTEX_ENTER(&ifq->ifq_lock);
5930         if (tqe->tqe_next != NULL) {            /* at the end already ? */
5931                 /*
5932                  * Remove from list
5933                  */
5934                 *tqe->tqe_pnext = tqe->tqe_next;
5935                 tqe->tqe_next->tqe_pnext = tqe->tqe_pnext;
5936
5937                 /*
5938                  * Make it the last entry.
5939                  */
5940                 tqe->tqe_next = NULL;
5941                 tqe->tqe_pnext = ifq->ifq_tail;
5942                 *ifq->ifq_tail = tqe;
5943                 ifq->ifq_tail = &tqe->tqe_next;
5944         }
5945         MUTEX_EXIT(&ifq->ifq_lock);
5946 }
5947
5948
5949 /* ------------------------------------------------------------------------ */
5950 /* Function:    ipf_queueappend                                             */
5951 /* Returns:     Nil                                                         */
5952 /* Parameters:  ticks(I)  - ipf tick time to use with this call             */
5953 /*              tqe(I)    - pointer to timeout queue entry                  */
5954 /*              ifq(I)    - pointer to timeout queue                        */
5955 /*              parent(I) - owing object pointer                            */
5956 /*                                                                          */
5957 /* Add a new item to this queue and put it on the very end.                 */
5958 /* We use use ticks to calculate the expiration and mark for when we last   */
5959 /* touched the structure.                                                   */
5960 /* ------------------------------------------------------------------------ */
5961 void
5962 ipf_queueappend(ticks, tqe, ifq, parent)
5963         u_long ticks;
5964         ipftqent_t *tqe;
5965         ipftq_t *ifq;
5966         void *parent;
5967 {
5968
5969         MUTEX_ENTER(&ifq->ifq_lock);
5970         tqe->tqe_parent = parent;
5971         tqe->tqe_pnext = ifq->ifq_tail;
5972         *ifq->ifq_tail = tqe;
5973         ifq->ifq_tail = &tqe->tqe_next;
5974         tqe->tqe_next = NULL;
5975         tqe->tqe_ifq = ifq;
5976         tqe->tqe_die = ticks + ifq->ifq_ttl;
5977         tqe->tqe_touched = ticks;
5978         ifq->ifq_ref++;
5979         MUTEX_EXIT(&ifq->ifq_lock);
5980 }
5981
5982
5983 /* ------------------------------------------------------------------------ */
5984 /* Function:    ipf_movequeue                                               */
5985 /* Returns:     Nil                                                         */
5986 /* Parameters:  tq(I)   - pointer to timeout queue information              */
5987 /*              oifp(I) - old timeout queue entry was on                    */
5988 /*              nifp(I) - new timeout queue to put entry on                 */
5989 /*                                                                          */
5990 /* Move a queue entry from one timeout queue to another timeout queue.      */
5991 /* If it notices that the current entry is already last and does not need   */
5992 /* to move queue, the return.                                               */
5993 /* ------------------------------------------------------------------------ */
5994 void
5995 ipf_movequeue(ticks, tqe, oifq, nifq)
5996         u_long ticks;
5997         ipftqent_t *tqe;
5998         ipftq_t *oifq, *nifq;
5999 {
6000
6001         /*
6002          * If the queue hasn't changed and we last touched this entry at the
6003          * same ipf time, then we're not going to achieve anything by either
6004          * changing the ttl or moving it on the queue.
6005          */
6006         if (oifq == nifq && tqe->tqe_touched == ticks)
6007                 return;
6008
6009         /*
6010          * For any of this to be outside the lock, there is a risk that two
6011          * packets entering simultaneously, with one changing to a different
6012          * queue and one not, could end up with things in a bizarre state.
6013          */
6014         MUTEX_ENTER(&oifq->ifq_lock);
6015
6016         tqe->tqe_touched = ticks;
6017         tqe->tqe_die = ticks + nifq->ifq_ttl;
6018         /*
6019          * Is the operation here going to be a no-op ?
6020          */
6021         if (oifq == nifq) {
6022                 if ((tqe->tqe_next == NULL) ||
6023                     (tqe->tqe_next->tqe_die == tqe->tqe_die)) {
6024                         MUTEX_EXIT(&oifq->ifq_lock);
6025                         return;
6026                 }
6027         }
6028
6029         /*
6030          * Remove from the old queue
6031          */
6032         *tqe->tqe_pnext = tqe->tqe_next;
6033         if (tqe->tqe_next)
6034                 tqe->tqe_next->tqe_pnext = tqe->tqe_pnext;
6035         else
6036                 oifq->ifq_tail = tqe->tqe_pnext;
6037         tqe->tqe_next = NULL;
6038
6039         /*
6040          * If we're moving from one queue to another, release the
6041          * lock on the old queue and get a lock on the new queue.
6042          * For user defined queues, if we're moving off it, call
6043          * delete in case it can now be freed.
6044          */
6045         if (oifq != nifq) {
6046                 tqe->tqe_ifq = NULL;
6047
6048                 (void) ipf_deletetimeoutqueue(oifq);
6049
6050                 MUTEX_EXIT(&oifq->ifq_lock);
6051
6052                 MUTEX_ENTER(&nifq->ifq_lock);
6053
6054                 tqe->tqe_ifq = nifq;
6055                 nifq->ifq_ref++;
6056         }
6057
6058         /*
6059          * Add to the bottom of the new queue
6060          */
6061         tqe->tqe_pnext = nifq->ifq_tail;
6062         *nifq->ifq_tail = tqe;
6063         nifq->ifq_tail = &tqe->tqe_next;
6064         MUTEX_EXIT(&nifq->ifq_lock);
6065 }
6066
6067
6068 /* ------------------------------------------------------------------------ */
6069 /* Function:    ipf_updateipid                                              */
6070 /* Returns:     int - 0 == success, -1 == error (packet should be droppped) */
6071 /* Parameters:  fin(I) - pointer to packet information                      */
6072 /*                                                                          */
6073 /* When we are doing NAT, change the IP of every packet to represent a      */
6074 /* single sequence of packets coming from the host, hiding any host         */
6075 /* specific sequencing that might otherwise be revealed.  If the packet is  */
6076 /* a fragment, then store the 'new' IPid in the fragment cache and look up  */
6077 /* the fragment cache for non-leading fragments.  If a non-leading fragment */
6078 /* has no match in the cache, return an error.                              */
6079 /* ------------------------------------------------------------------------ */
6080 static int
6081 ipf_updateipid(fin)
6082         fr_info_t *fin;
6083 {
6084         u_short id, ido, sums;
6085         u_32_t sumd, sum;
6086         ip_t *ip;
6087
6088         if (fin->fin_off != 0) {
6089                 sum = ipf_frag_ipidknown(fin);
6090                 if (sum == 0xffffffff)
6091                         return -1;
6092                 sum &= 0xffff;
6093                 id = (u_short)sum;
6094         } else {
6095                 id = ipf_nextipid(fin);
6096                 if (fin->fin_off == 0 && (fin->fin_flx & FI_FRAG) != 0)
6097                         (void) ipf_frag_ipidnew(fin, (u_32_t)id);
6098         }
6099
6100         ip = fin->fin_ip;
6101         ido = ntohs(ip->ip_id);
6102         if (id == ido)
6103                 return 0;
6104         ip->ip_id = htons(id);
6105         CALC_SUMD(ido, id, sumd);       /* DESTRUCTIVE MACRO! id,ido change */
6106         sum = (~ntohs(ip->ip_sum)) & 0xffff;
6107         sum += sumd;
6108         sum = (sum >> 16) + (sum & 0xffff);
6109         sum = (sum >> 16) + (sum & 0xffff);
6110         sums = ~(u_short)sum;
6111         ip->ip_sum = htons(sums);
6112         return 0;
6113 }
6114
6115
6116 #ifdef  NEED_FRGETIFNAME
6117 /* ------------------------------------------------------------------------ */
6118 /* Function:    ipf_getifname                                               */
6119 /* Returns:     char *    - pointer to interface name                       */
6120 /* Parameters:  ifp(I)    - pointer to network interface                    */
6121 /*              buffer(O) - pointer to where to store interface name        */
6122 /*                                                                          */
6123 /* Constructs an interface name in the buffer passed.  The buffer passed is */
6124 /* expected to be at least LIFNAMSIZ in bytes big.  If buffer is passed in  */
6125 /* as a NULL pointer then return a pointer to a static array.               */
6126 /* ------------------------------------------------------------------------ */
6127 char *
6128 ipf_getifname(ifp, buffer)
6129         struct ifnet *ifp;
6130         char *buffer;
6131 {
6132         static char namebuf[LIFNAMSIZ];
6133 # if defined(MENTAT) || defined(__FreeBSD__) || defined(__osf__) || \
6134      defined(__sgi) || defined(linux) || defined(_AIX51) || \
6135      (defined(sun) && !defined(__SVR4) && !defined(__svr4__))
6136         int unit, space;
6137         char temp[20];
6138         char *s;
6139 # endif
6140
6141         if (buffer == NULL)
6142                 buffer = namebuf;
6143         (void) strncpy(buffer, ifp->if_name, LIFNAMSIZ);
6144         buffer[LIFNAMSIZ - 1] = '\0';
6145 # if defined(MENTAT) || defined(__FreeBSD__) || defined(__osf__) || \
6146      defined(__sgi) || defined(_AIX51) || \
6147      (defined(sun) && !defined(__SVR4) && !defined(__svr4__))
6148         for (s = buffer; *s; s++)
6149                 ;
6150         unit = ifp->if_unit;
6151         space = LIFNAMSIZ - (s - buffer);
6152         if ((space > 0) && (unit >= 0)) {
6153 #  if defined(SNPRINTF) && defined(_KERNEL)
6154                 SNPRINTF(temp, sizeof(temp), "%d", unit);
6155 #  else
6156                 (void) sprintf(temp, "%d", unit);
6157 #  endif
6158                 (void) strncpy(s, temp, space);
6159         }
6160 # endif
6161         return buffer;
6162 }
6163 #endif
6164
6165
6166 /* ------------------------------------------------------------------------ */
6167 /* Function:    ipf_ioctlswitch                                             */
6168 /* Returns:     int     - -1 continue processing, else ioctl return value   */
6169 /* Parameters:  unit(I) - device unit opened                                */
6170 /*              data(I) - pointer to ioctl data                             */
6171 /*              cmd(I)  - ioctl command                                     */
6172 /*              mode(I) - mode value                                        */
6173 /*              uid(I)  - uid making the ioctl call                         */
6174 /*              ctx(I)  - pointer to context data                           */
6175 /*                                                                          */
6176 /* Based on the value of unit, call the appropriate ioctl handler or return */
6177 /* EIO if ipfilter is not running.   Also checks if write perms are req'd   */
6178 /* for the device in order to execute the ioctl.  A special case is made    */
6179 /* SIOCIPFINTERROR so that the same code isn't required in every handler.   */
6180 /* The context data pointer is passed through as this is used as the key    */
6181 /* for locating a matching token for continued access for walking lists,    */
6182 /* etc.                                                                     */
6183 /* ------------------------------------------------------------------------ */
6184 int
6185 ipf_ioctlswitch(softc, unit, data, cmd, mode, uid, ctx)
6186         ipf_main_softc_t *softc;
6187         int unit, mode, uid;
6188         ioctlcmd_t cmd;
6189         void *data, *ctx;
6190 {
6191         int error = 0;
6192
6193         switch (cmd)
6194         {
6195         case SIOCIPFINTERROR :
6196                 error = BCOPYOUT(&softc->ipf_interror, data,
6197                                  sizeof(softc->ipf_interror));
6198                 if (error != 0) {
6199                         IPFERROR(40);
6200                         error = EFAULT;
6201                 }
6202                 return error;
6203         default :
6204                 break;
6205         }
6206
6207         switch (unit)
6208         {
6209         case IPL_LOGIPF :
6210                 error = ipf_ipf_ioctl(softc, data, cmd, mode, uid, ctx);
6211                 break;
6212         case IPL_LOGNAT :
6213                 if (softc->ipf_running > 0) {
6214                         error = ipf_nat_ioctl(softc, data, cmd, mode,
6215                                               uid, ctx);
6216                 } else {
6217                         IPFERROR(42);
6218                         error = EIO;
6219                 }
6220                 break;
6221         case IPL_LOGSTATE :
6222                 if (softc->ipf_running > 0) {
6223                         error = ipf_state_ioctl(softc, data, cmd, mode,
6224                                                 uid, ctx);
6225                 } else {
6226                         IPFERROR(43);
6227                         error = EIO;
6228                 }
6229                 break;
6230         case IPL_LOGAUTH :
6231                 if (softc->ipf_running > 0) {
6232                         error = ipf_auth_ioctl(softc, data, cmd, mode,
6233                                                uid, ctx);
6234                 } else {
6235                         IPFERROR(44);
6236                         error = EIO;
6237                 }
6238                 break;
6239         case IPL_LOGSYNC :
6240                 if (softc->ipf_running > 0) {
6241                         error = ipf_sync_ioctl(softc, data, cmd, mode,
6242                                                uid, ctx);
6243                 } else {
6244                         error = EIO;
6245                         IPFERROR(45);
6246                 }
6247                 break;
6248         case IPL_LOGSCAN :
6249 #ifdef IPFILTER_SCAN
6250                 if (softc->ipf_running > 0)
6251                         error = ipf_scan_ioctl(softc, data, cmd, mode,
6252                                                uid, ctx);
6253                 else
6254 #endif
6255                 {
6256                         error = EIO;
6257                         IPFERROR(46);
6258                 }
6259                 break;
6260         case IPL_LOGLOOKUP :
6261                 if (softc->ipf_running > 0) {
6262                         error = ipf_lookup_ioctl(softc, data, cmd, mode,
6263                                                  uid, ctx);
6264                 } else {
6265                         error = EIO;
6266                         IPFERROR(47);
6267                 }
6268                 break;
6269         default :
6270                 IPFERROR(48);
6271                 error = EIO;
6272                 break;
6273         }
6274
6275         return error;
6276 }
6277
6278
6279 /*
6280  * This array defines the expected size of objects coming into the kernel
6281  * for the various recognised object types. The first column is flags (see
6282  * below), 2nd column is current size, 3rd column is the version number of
6283  * when the current size became current.
6284  * Flags:
6285  * 1 = minimum size, not absolute size
6286  */
6287 static  int     ipf_objbytes[IPFOBJ_COUNT][3] = {
6288         { 1,    sizeof(struct frentry),         5010000 },      /* 0 */
6289         { 1,    sizeof(struct friostat),        5010000 },
6290         { 0,    sizeof(struct fr_info),         5010000 },
6291         { 0,    sizeof(struct ipf_authstat),    4010100 },
6292         { 0,    sizeof(struct ipfrstat),        5010000 },
6293         { 1,    sizeof(struct ipnat),           5010000 },      /* 5 */
6294         { 0,    sizeof(struct natstat),         5010000 },
6295         { 0,    sizeof(struct ipstate_save),    5010000 },
6296         { 1,    sizeof(struct nat_save),        5010000 },
6297         { 0,    sizeof(struct natlookup),       5010000 },
6298         { 1,    sizeof(struct ipstate),         5010000 },      /* 10 */
6299         { 0,    sizeof(struct ips_stat),        5010000 },
6300         { 0,    sizeof(struct frauth),          5010000 },
6301         { 0,    sizeof(struct ipftune),         4010100 },
6302         { 0,    sizeof(struct nat),             5010000 },
6303         { 0,    sizeof(struct ipfruleiter),     4011400 },      /* 15 */
6304         { 0,    sizeof(struct ipfgeniter),      4011400 },
6305         { 0,    sizeof(struct ipftable),        4011400 },
6306         { 0,    sizeof(struct ipflookupiter),   4011400 },
6307         { 0,    sizeof(struct ipftq) * IPF_TCP_NSTATES },
6308         { 1,    0,                              0       }, /* IPFEXPR */
6309         { 0,    0,                              0       }, /* PROXYCTL */
6310         { 0,    sizeof (struct fripf),          5010000 }
6311 };
6312
6313
6314 /* ------------------------------------------------------------------------ */
6315 /* Function:    ipf_inobj                                                   */
6316 /* Returns:     int     - 0 = success, else failure                         */
6317 /* Parameters:  softc(I) - soft context pointerto work with                 */
6318 /*              data(I)  - pointer to ioctl data                            */
6319 /*              objp(O)  - where to store ipfobj structure                  */
6320 /*              ptr(I)   - pointer to data to copy out                      */
6321 /*              type(I)  - type of structure being moved                    */
6322 /*                                                                          */
6323 /* Copy in the contents of what the ipfobj_t points to.  In future, we      */
6324 /* add things to check for version numbers, sizes, etc, to make it backward */
6325 /* compatible at the ABI for user land.                                     */
6326 /* If objp is not NULL then we assume that the caller wants to see what is  */
6327 /* in the ipfobj_t structure being copied in. As an example, this can tell  */
6328 /* the caller what version of ipfilter the ioctl program was written to.    */
6329 /* ------------------------------------------------------------------------ */
6330 int
6331 ipf_inobj(softc, data, objp, ptr, type)
6332         ipf_main_softc_t *softc;
6333         void *data;
6334         ipfobj_t *objp;
6335         void *ptr;
6336         int type;
6337 {
6338         ipfobj_t obj;
6339         int error;
6340         int size;
6341
6342         if ((type < 0) || (type >= IPFOBJ_COUNT)) {
6343                 IPFERROR(49);
6344                 return EINVAL;
6345         }
6346
6347         if (objp == NULL)
6348                 objp = &obj;
6349         error = BCOPYIN(data, objp, sizeof(*objp));
6350         if (error != 0) {
6351                 IPFERROR(124);
6352                 return EFAULT;
6353         }
6354
6355         if (objp->ipfo_type != type) {
6356                 IPFERROR(50);
6357                 return EINVAL;
6358         }
6359
6360         if (objp->ipfo_rev >= ipf_objbytes[type][2]) {
6361                 if ((ipf_objbytes[type][0] & 1) != 0) {
6362                         if (objp->ipfo_size < ipf_objbytes[type][1]) {
6363                                 IPFERROR(51);
6364                                 return EINVAL;
6365                         }
6366                         size =  ipf_objbytes[type][1];
6367                 } else if (objp->ipfo_size == ipf_objbytes[type][1]) {
6368                         size =  objp->ipfo_size;
6369                 } else {
6370                         IPFERROR(52);
6371                         return EINVAL;
6372                 }
6373                 error = COPYIN(objp->ipfo_ptr, ptr, size);
6374                 if (error != 0) {
6375                         IPFERROR(55);
6376                         error = EFAULT;
6377                 }
6378         } else {
6379 #ifdef  IPFILTER_COMPAT
6380                 error = ipf_in_compat(softc, objp, ptr, 0);
6381 #else
6382                 IPFERROR(54);
6383                 error = EINVAL;
6384 #endif
6385         }
6386         return error;
6387 }
6388
6389
6390 /* ------------------------------------------------------------------------ */
6391 /* Function:    ipf_inobjsz                                                 */
6392 /* Returns:     int     - 0 = success, else failure                         */
6393 /* Parameters:  softc(I) - soft context pointerto work with                 */
6394 /*              data(I)  - pointer to ioctl data                            */
6395 /*              ptr(I)   - pointer to store real data in                    */
6396 /*              type(I)  - type of structure being moved                    */
6397 /*              sz(I)    - size of data to copy                             */
6398 /*                                                                          */
6399 /* As per ipf_inobj, except the size of the object to copy in is passed in  */
6400 /* but it must not be smaller than the size defined for the type and the    */
6401 /* type must allow for varied sized objects.  The extra requirement here is */
6402 /* that sz must match the size of the object being passed in - this is not  */
6403 /* not possible nor required in ipf_inobj().                                */
6404 /* ------------------------------------------------------------------------ */
6405 int
6406 ipf_inobjsz(softc, data, ptr, type, sz)
6407         ipf_main_softc_t *softc;
6408         void *data;
6409         void *ptr;
6410         int type, sz;
6411 {
6412         ipfobj_t obj;
6413         int error;
6414
6415         if ((type < 0) || (type >= IPFOBJ_COUNT)) {
6416                 IPFERROR(56);
6417                 return EINVAL;
6418         }
6419
6420         error = BCOPYIN(data, &obj, sizeof(obj));
6421         if (error != 0) {
6422                 IPFERROR(125);
6423                 return EFAULT;
6424         }
6425
6426         if (obj.ipfo_type != type) {
6427                 IPFERROR(58);
6428                 return EINVAL;
6429         }
6430
6431         if (obj.ipfo_rev >= ipf_objbytes[type][2]) {
6432                 if (((ipf_objbytes[type][0] & 1) == 0) ||
6433                     (sz < ipf_objbytes[type][1])) {
6434                         IPFERROR(57);
6435                         return EINVAL;
6436                 }
6437                 error = COPYIN(obj.ipfo_ptr, ptr, sz);
6438                 if (error != 0) {
6439                         IPFERROR(61);
6440                         error = EFAULT;
6441                 }
6442         } else {
6443 #ifdef  IPFILTER_COMPAT
6444                 error = ipf_in_compat(softc, &obj, ptr, sz);
6445 #else
6446                 IPFERROR(60);
6447                 error = EINVAL;
6448 #endif
6449         }
6450         return error;
6451 }
6452
6453
6454 /* ------------------------------------------------------------------------ */
6455 /* Function:    ipf_outobjsz                                                */
6456 /* Returns:     int     - 0 = success, else failure                         */
6457 /* Parameters:  data(I) - pointer to ioctl data                             */
6458 /*              ptr(I)  - pointer to store real data in                     */
6459 /*              type(I) - type of structure being moved                     */
6460 /*              sz(I)   - size of data to copy                              */
6461 /*                                                                          */
6462 /* As per ipf_outobj, except the size of the object to copy out is passed in*/
6463 /* but it must not be smaller than the size defined for the type and the    */
6464 /* type must allow for varied sized objects.  The extra requirement here is */
6465 /* that sz must match the size of the object being passed in - this is not  */
6466 /* not possible nor required in ipf_outobj().                               */
6467 /* ------------------------------------------------------------------------ */
6468 int
6469 ipf_outobjsz(softc, data, ptr, type, sz)
6470         ipf_main_softc_t *softc;
6471         void *data;
6472         void *ptr;
6473         int type, sz;
6474 {
6475         ipfobj_t obj;
6476         int error;
6477
6478         if ((type < 0) || (type >= IPFOBJ_COUNT)) {
6479                 IPFERROR(62);
6480                 return EINVAL;
6481         }
6482
6483         error = BCOPYIN(data, &obj, sizeof(obj));
6484         if (error != 0) {
6485                 IPFERROR(127);
6486                 return EFAULT;
6487         }
6488
6489         if (obj.ipfo_type != type) {
6490                 IPFERROR(63);
6491                 return EINVAL;
6492         }
6493
6494         if (obj.ipfo_rev >= ipf_objbytes[type][2]) {
6495                 if (((ipf_objbytes[type][0] & 1) == 0) ||
6496                     (sz < ipf_objbytes[type][1])) {
6497                         IPFERROR(146);
6498                         return EINVAL;
6499                 }
6500                 error = COPYOUT(ptr, obj.ipfo_ptr, sz);
6501                 if (error != 0) {
6502                         IPFERROR(66);
6503                         error = EFAULT;
6504                 }
6505         } else {
6506 #ifdef  IPFILTER_COMPAT
6507                 error = ipf_out_compat(softc, &obj, ptr);
6508 #else
6509                 IPFERROR(65);
6510                 error = EINVAL;
6511 #endif
6512         }
6513         return error;
6514 }
6515
6516
6517 /* ------------------------------------------------------------------------ */
6518 /* Function:    ipf_outobj                                                  */
6519 /* Returns:     int     - 0 = success, else failure                         */
6520 /* Parameters:  data(I) - pointer to ioctl data                             */
6521 /*              ptr(I)  - pointer to store real data in                     */
6522 /*              type(I) - type of structure being moved                     */
6523 /*                                                                          */
6524 /* Copy out the contents of what ptr is to where ipfobj points to.  In      */
6525 /* future, we add things to check for version numbers, sizes, etc, to make  */
6526 /* it backward  compatible at the ABI for user land.                        */
6527 /* ------------------------------------------------------------------------ */
6528 int
6529 ipf_outobj(softc, data, ptr, type)
6530         ipf_main_softc_t *softc;
6531         void *data;
6532         void *ptr;
6533         int type;
6534 {
6535         ipfobj_t obj;
6536         int error;
6537
6538         if ((type < 0) || (type >= IPFOBJ_COUNT)) {
6539                 IPFERROR(67);
6540                 return EINVAL;
6541         }
6542
6543         error = BCOPYIN(data, &obj, sizeof(obj));
6544         if (error != 0) {
6545                 IPFERROR(126);
6546                 return EFAULT;
6547         }
6548
6549         if (obj.ipfo_type != type) {
6550                 IPFERROR(68);
6551                 return EINVAL;
6552         }
6553
6554         if (obj.ipfo_rev >= ipf_objbytes[type][2]) {
6555                 if ((ipf_objbytes[type][0] & 1) != 0) {
6556                         if (obj.ipfo_size < ipf_objbytes[type][1]) {
6557                                 IPFERROR(69);
6558                                 return EINVAL;
6559                         }
6560                 } else if (obj.ipfo_size != ipf_objbytes[type][1]) {
6561                         IPFERROR(70);
6562                         return EINVAL;
6563                 }
6564
6565                 error = COPYOUT(ptr, obj.ipfo_ptr, obj.ipfo_size);
6566                 if (error != 0) {
6567                         IPFERROR(73);
6568                         error = EFAULT;
6569                 }
6570         } else {
6571 #ifdef  IPFILTER_COMPAT
6572                 error = ipf_out_compat(softc, &obj, ptr);
6573 #else
6574                 IPFERROR(72);
6575                 error = EINVAL;
6576 #endif
6577         }
6578         return error;
6579 }
6580
6581
6582 /* ------------------------------------------------------------------------ */
6583 /* Function:    ipf_outobjk                                                 */
6584 /* Returns:     int     - 0 = success, else failure                         */
6585 /* Parameters:  obj(I)  - pointer to data description structure             */
6586 /*              ptr(I)  - pointer to kernel data to copy out                */
6587 /*                                                                          */
6588 /* In the above functions, the ipfobj_t structure is copied into the kernel,*/
6589 /* telling ipfilter how to copy out data. In this instance, the ipfobj_t is */
6590 /* already populated with information and now we just need to use it.       */
6591 /* There is no need for this function to have a "type" parameter as there   */
6592 /* is no point in validating information that comes from the kernel with    */
6593 /* itself.                                                                  */
6594 /* ------------------------------------------------------------------------ */
6595 int
6596 ipf_outobjk(softc, obj, ptr)
6597         ipf_main_softc_t *softc;
6598         ipfobj_t *obj;
6599         void *ptr;
6600 {
6601         int type = obj->ipfo_type;
6602         int error;
6603
6604         if ((type < 0) || (type >= IPFOBJ_COUNT)) {
6605                 IPFERROR(147);
6606                 return EINVAL;
6607         }
6608
6609         if (obj->ipfo_rev >= ipf_objbytes[type][2]) {
6610                 if ((ipf_objbytes[type][0] & 1) != 0) {
6611                         if (obj->ipfo_size < ipf_objbytes[type][1]) {
6612                                 IPFERROR(148);
6613                                 return EINVAL;
6614                         }
6615
6616                 } else if (obj->ipfo_size != ipf_objbytes[type][1]) {
6617                         IPFERROR(149);
6618                         return EINVAL;
6619                 }
6620
6621                 error = COPYOUT(ptr, obj->ipfo_ptr, obj->ipfo_size);
6622                 if (error != 0) {
6623                         IPFERROR(150);
6624                         error = EFAULT;
6625                 }
6626         } else {
6627 #ifdef  IPFILTER_COMPAT
6628                 error = ipf_out_compat(softc, obj, ptr);
6629 #else
6630                 IPFERROR(151);
6631                 error = EINVAL;
6632 #endif
6633         }
6634         return error;
6635 }
6636
6637
6638 /* ------------------------------------------------------------------------ */
6639 /* Function:    ipf_checkl4sum                                              */
6640 /* Returns:     int     - 0 = good, -1 = bad, 1 = cannot check              */
6641 /* Parameters:  fin(I) - pointer to packet information                      */
6642 /*                                                                          */
6643 /* If possible, calculate the layer 4 checksum for the packet.  If this is  */
6644 /* not possible, return without indicating a failure or success but in a    */
6645 /* way that is ditinguishable. This function should only be called by the   */
6646 /* ipf_checkv6sum() for each platform.                                      */
6647 /* ------------------------------------------------------------------------ */
6648 INLINE int
6649 ipf_checkl4sum(fin)
6650         fr_info_t *fin;
6651 {
6652         u_short sum, hdrsum, *csump;
6653         udphdr_t *udp;
6654         int dosum;
6655
6656         /*
6657          * If the TCP packet isn't a fragment, isn't too short and otherwise
6658          * isn't already considered "bad", then validate the checksum.  If
6659          * this check fails then considered the packet to be "bad".
6660          */
6661         if ((fin->fin_flx & (FI_FRAG|FI_SHORT|FI_BAD)) != 0)
6662                 return 1;
6663
6664         csump = NULL;
6665         hdrsum = 0;
6666         dosum = 0;
6667         sum = 0;
6668
6669         switch (fin->fin_p)
6670         {
6671         case IPPROTO_TCP :
6672                 csump = &((tcphdr_t *)fin->fin_dp)->th_sum;
6673                 dosum = 1;
6674                 break;
6675
6676         case IPPROTO_UDP :
6677                 udp = fin->fin_dp;
6678                 if (udp->uh_sum != 0) {
6679                         csump = &udp->uh_sum;
6680                         dosum = 1;
6681                 }
6682                 break;
6683
6684 #ifdef USE_INET6
6685         case IPPROTO_ICMPV6 :
6686                 csump = &((struct icmp6_hdr *)fin->fin_dp)->icmp6_cksum;
6687                 dosum = 1;
6688                 break;
6689 #endif
6690
6691         case IPPROTO_ICMP :
6692                 csump = &((struct icmp *)fin->fin_dp)->icmp_cksum;
6693                 dosum = 1;
6694                 break;
6695
6696         default :
6697                 return 1;
6698                 /*NOTREACHED*/
6699         }
6700
6701         if (csump != NULL)
6702                 hdrsum = *csump;
6703
6704         if (dosum) {
6705                 sum = fr_cksum(fin, fin->fin_ip, fin->fin_p, fin->fin_dp);
6706         }
6707 #if !defined(_KERNEL)
6708         if (sum == hdrsum) {
6709                 FR_DEBUG(("checkl4sum: %hx == %hx\n", sum, hdrsum));
6710         } else {
6711                 FR_DEBUG(("checkl4sum: %hx != %hx\n", sum, hdrsum));
6712         }
6713 #endif
6714         DT2(l4sums, u_short, hdrsum, u_short, sum);
6715         if (hdrsum == sum) {
6716                 fin->fin_cksum = FI_CK_SUMOK;
6717                 return 0;
6718         }
6719         fin->fin_cksum = FI_CK_BAD;
6720         return -1;
6721 }
6722
6723
6724 /* ------------------------------------------------------------------------ */
6725 /* Function:    ipf_ifpfillv4addr                                           */
6726 /* Returns:     int     - 0 = address update, -1 = address not updated      */
6727 /* Parameters:  atype(I)   - type of network address update to perform      */
6728 /*              sin(I)     - pointer to source of address information       */
6729 /*              mask(I)    - pointer to source of netmask information       */
6730 /*              inp(I)     - pointer to destination address store           */
6731 /*              inpmask(I) - pointer to destination netmask store           */
6732 /*                                                                          */
6733 /* Given a type of network address update (atype) to perform, copy          */
6734 /* information from sin/mask into inp/inpmask.  If ipnmask is NULL then no  */
6735 /* netmask update is performed unless FRI_NETMASKED is passed as atype, in  */
6736 /* which case the operation fails.  For all values of atype other than      */
6737 /* FRI_NETMASKED, if inpmask is non-NULL then the mask is set to an all 1s  */
6738 /* value.                                                                   */
6739 /* ------------------------------------------------------------------------ */
6740 int
6741 ipf_ifpfillv4addr(atype, sin, mask, inp, inpmask)
6742         int atype;
6743         struct sockaddr_in *sin, *mask;
6744         struct in_addr *inp, *inpmask;
6745 {
6746         if (inpmask != NULL && atype != FRI_NETMASKED)
6747                 inpmask->s_addr = 0xffffffff;
6748
6749         if (atype == FRI_NETWORK || atype == FRI_NETMASKED) {
6750                 if (atype == FRI_NETMASKED) {
6751                         if (inpmask == NULL)
6752                                 return -1;
6753                         inpmask->s_addr = mask->sin_addr.s_addr;
6754                 }
6755                 inp->s_addr = sin->sin_addr.s_addr & mask->sin_addr.s_addr;
6756         } else {
6757                 inp->s_addr = sin->sin_addr.s_addr;
6758         }
6759         return 0;
6760 }
6761
6762
6763 #ifdef  USE_INET6
6764 /* ------------------------------------------------------------------------ */
6765 /* Function:    ipf_ifpfillv6addr                                           */
6766 /* Returns:     int     - 0 = address update, -1 = address not updated      */
6767 /* Parameters:  atype(I)   - type of network address update to perform      */
6768 /*              sin(I)     - pointer to source of address information       */
6769 /*              mask(I)    - pointer to source of netmask information       */
6770 /*              inp(I)     - pointer to destination address store           */
6771 /*              inpmask(I) - pointer to destination netmask store           */
6772 /*                                                                          */
6773 /* Given a type of network address update (atype) to perform, copy          */
6774 /* information from sin/mask into inp/inpmask.  If ipnmask is NULL then no  */
6775 /* netmask update is performed unless FRI_NETMASKED is passed as atype, in  */
6776 /* which case the operation fails.  For all values of atype other than      */
6777 /* FRI_NETMASKED, if inpmask is non-NULL then the mask is set to an all 1s  */
6778 /* value.                                                                   */
6779 /* ------------------------------------------------------------------------ */
6780 int
6781 ipf_ifpfillv6addr(atype, sin, mask, inp, inpmask)
6782         int atype;
6783         struct sockaddr_in6 *sin, *mask;
6784         i6addr_t *inp, *inpmask;
6785 {
6786         i6addr_t *src, *and;
6787
6788         src = (i6addr_t *)&sin->sin6_addr;
6789         and = (i6addr_t *)&mask->sin6_addr;
6790
6791         if (inpmask != NULL && atype != FRI_NETMASKED) {
6792                 inpmask->i6[0] = 0xffffffff;
6793                 inpmask->i6[1] = 0xffffffff;
6794                 inpmask->i6[2] = 0xffffffff;
6795                 inpmask->i6[3] = 0xffffffff;
6796         }
6797
6798         if (atype == FRI_NETWORK || atype == FRI_NETMASKED) {
6799                 if (atype == FRI_NETMASKED) {
6800                         if (inpmask == NULL)
6801                                 return -1;
6802                         inpmask->i6[0] = and->i6[0];
6803                         inpmask->i6[1] = and->i6[1];
6804                         inpmask->i6[2] = and->i6[2];
6805                         inpmask->i6[3] = and->i6[3];
6806                 }
6807
6808                 inp->i6[0] = src->i6[0] & and->i6[0];
6809                 inp->i6[1] = src->i6[1] & and->i6[1];
6810                 inp->i6[2] = src->i6[2] & and->i6[2];
6811                 inp->i6[3] = src->i6[3] & and->i6[3];
6812         } else {
6813                 inp->i6[0] = src->i6[0];
6814                 inp->i6[1] = src->i6[1];
6815                 inp->i6[2] = src->i6[2];
6816                 inp->i6[3] = src->i6[3];
6817         }
6818         return 0;
6819 }
6820 #endif
6821
6822
6823 /* ------------------------------------------------------------------------ */
6824 /* Function:    ipf_matchtag                                                */
6825 /* Returns:     0 == mismatch, 1 == match.                                  */
6826 /* Parameters:  tag1(I) - pointer to first tag to compare                   */
6827 /*              tag2(I) - pointer to second tag to compare                  */
6828 /*                                                                          */
6829 /* Returns true (non-zero) or false(0) if the two tag structures can be     */
6830 /* considered to be a match or not match, respectively.  The tag is 16      */
6831 /* bytes long (16 characters) but that is overlayed with 4 32bit ints so    */
6832 /* compare the ints instead, for speed. tag1 is the master of the           */
6833 /* comparison.  This function should only be called with both tag1 and tag2 */
6834 /* as non-NULL pointers.                                                    */
6835 /* ------------------------------------------------------------------------ */
6836 int
6837 ipf_matchtag(tag1, tag2)
6838         ipftag_t *tag1, *tag2;
6839 {
6840         if (tag1 == tag2)
6841                 return 1;
6842
6843         if ((tag1->ipt_num[0] == 0) && (tag2->ipt_num[0] == 0))
6844                 return 1;
6845
6846         if ((tag1->ipt_num[0] == tag2->ipt_num[0]) &&
6847             (tag1->ipt_num[1] == tag2->ipt_num[1]) &&
6848             (tag1->ipt_num[2] == tag2->ipt_num[2]) &&
6849             (tag1->ipt_num[3] == tag2->ipt_num[3]))
6850                 return 1;
6851         return 0;
6852 }
6853
6854
6855 /* ------------------------------------------------------------------------ */
6856 /* Function:    ipf_coalesce                                                */
6857 /* Returns:     1 == success, -1 == failure, 0 == no change                 */
6858 /* Parameters:  fin(I) - pointer to packet information                      */
6859 /*                                                                          */
6860 /* Attempt to get all of the packet data into a single, contiguous buffer.  */
6861 /* If this call returns a failure then the buffers have also been freed.    */
6862 /* ------------------------------------------------------------------------ */
6863 int
6864 ipf_coalesce(fin)
6865         fr_info_t *fin;
6866 {
6867
6868         if ((fin->fin_flx & FI_COALESCE) != 0)
6869                 return 1;
6870
6871         /*
6872          * If the mbuf pointers indicate that there is no mbuf to work with,
6873          * return but do not indicate success or failure.
6874          */
6875         if (fin->fin_m == NULL || fin->fin_mp == NULL)
6876                 return 0;
6877
6878 #if defined(_KERNEL)
6879         if (ipf_pullup(fin->fin_m, fin, fin->fin_plen) == NULL) {
6880                 ipf_main_softc_t *softc = fin->fin_main_soft;
6881
6882                 DT1(frb_coalesce, fr_info_t *, fin);
6883                 LBUMP(ipf_stats[fin->fin_out].fr_badcoalesces);
6884 # ifdef MENTAT
6885                 FREE_MB_T(*fin->fin_mp);
6886 # endif
6887                 fin->fin_reason = FRB_COALESCE;
6888                 *fin->fin_mp = NULL;
6889                 fin->fin_m = NULL;
6890                 return -1;
6891         }
6892 #else
6893         fin = fin;      /* LINT */
6894 #endif
6895         return 1;
6896 }
6897
6898
6899 /*
6900  * The following table lists all of the tunable variables that can be
6901  * accessed via SIOCIPFGET/SIOCIPFSET/SIOCIPFGETNEXt.  The format of each row
6902  * in the table below is as follows:
6903  *
6904  * pointer to value, name of value, minimum, maximum, size of the value's
6905  *     container, value attribute flags
6906  *
6907  * For convienience, IPFT_RDONLY means the value is read-only, IPFT_WRDISABLED
6908  * means the value can only be written to when IPFilter is loaded but disabled.
6909  * The obvious implication is if neither of these are set then the value can be
6910  * changed at any time without harm.
6911  */
6912
6913
6914 /* ------------------------------------------------------------------------ */
6915 /* Function:    ipf_tune_findbycookie                                       */
6916 /* Returns:     NULL = search failed, else pointer to tune struct           */
6917 /* Parameters:  cookie(I) - cookie value to search for amongst tuneables    */
6918 /*              next(O)   - pointer to place to store the cookie for the    */
6919 /*                          "next" tuneable, if it is desired.              */
6920 /*                                                                          */
6921 /* This function is used to walk through all of the existing tunables with  */
6922 /* successive calls.  It searches the known tunables for the one which has  */
6923 /* a matching value for "cookie" - ie its address.  When returning a match, */
6924 /* the next one to be found may be returned inside next.                    */
6925 /* ------------------------------------------------------------------------ */
6926 static ipftuneable_t *
6927 ipf_tune_findbycookie(ptop, cookie, next)
6928         ipftuneable_t **ptop;
6929         void *cookie, **next;
6930 {
6931         ipftuneable_t *ta, **tap;
6932
6933         for (ta = *ptop; ta->ipft_name != NULL; ta++)
6934                 if (ta == cookie) {
6935                         if (next != NULL) {
6936                                 /*
6937                                  * If the next entry in the array has a name
6938                                  * present, then return a pointer to it for
6939                                  * where to go next, else return a pointer to
6940                                  * the dynaminc list as a key to search there
6941                                  * next.  This facilitates a weak linking of
6942                                  * the two "lists" together.
6943                                  */
6944                                 if ((ta + 1)->ipft_name != NULL)
6945                                         *next = ta + 1;
6946                                 else
6947                                         *next = ptop;
6948                         }
6949                         return ta;
6950                 }
6951
6952         for (tap = ptop; (ta = *tap) != NULL; tap = &ta->ipft_next)
6953                 if (tap == cookie) {
6954                         if (next != NULL)
6955                                 *next = &ta->ipft_next;
6956                         return ta;
6957                 }
6958
6959         if (next != NULL)
6960                 *next = NULL;
6961         return NULL;
6962 }
6963
6964
6965 /* ------------------------------------------------------------------------ */
6966 /* Function:    ipf_tune_findbyname                                         */
6967 /* Returns:     NULL = search failed, else pointer to tune struct           */
6968 /* Parameters:  name(I) - name of the tuneable entry to find.               */
6969 /*                                                                          */
6970 /* Search the static array of tuneables and the list of dynamic tuneables   */
6971 /* for an entry with a matching name.  If we can find one, return a pointer */
6972 /* to the matching structure.                                               */
6973 /* ------------------------------------------------------------------------ */
6974 static ipftuneable_t *
6975 ipf_tune_findbyname(top, name)
6976         ipftuneable_t *top;
6977         const char *name;
6978 {
6979         ipftuneable_t *ta;
6980
6981         for (ta = top; ta != NULL; ta = ta->ipft_next)
6982                 if (!strcmp(ta->ipft_name, name)) {
6983                         return ta;
6984                 }
6985
6986         return NULL;
6987 }
6988
6989
6990 /* ------------------------------------------------------------------------ */
6991 /* Function:    ipf_tune_add_array                                          */
6992 /* Returns:     int - 0 == success, else failure                            */
6993 /* Parameters:  newtune - pointer to new tune array to add to tuneables     */
6994 /*                                                                          */
6995 /* Appends tune structures from the array passed in (newtune) to the end of */
6996 /* the current list of "dynamic" tuneable parameters.                       */
6997 /* If any entry to be added is already present (by name) then the operation */
6998 /* is aborted - entries that have been added are removed before returning.  */
6999 /* An entry with no name (NULL) is used as the indication that the end of   */
7000 /* the array has been reached.                                              */
7001 /* ------------------------------------------------------------------------ */
7002 int
7003 ipf_tune_add_array(softc, newtune)
7004         ipf_main_softc_t *softc;
7005         ipftuneable_t *newtune;
7006 {
7007         ipftuneable_t *nt, *dt;
7008         int error = 0;
7009
7010         for (nt = newtune; nt->ipft_name != NULL; nt++) {
7011                 error = ipf_tune_add(softc, nt);
7012                 if (error != 0) {
7013                         for (dt = newtune; dt != nt; dt++) {
7014                                 (void) ipf_tune_del(softc, dt);
7015                         }
7016                 }
7017         }
7018
7019         return error;
7020 }
7021
7022
7023 /* ------------------------------------------------------------------------ */
7024 /* Function:    ipf_tune_array_link                                         */
7025 /* Returns:     0 == success, -1 == failure                                 */
7026 /* Parameters:  softc(I) - soft context pointerto work with                 */
7027 /*              array(I) - pointer to an array of tuneables                 */
7028 /*                                                                          */
7029 /* Given an array of tunables (array), append them to the current list of   */
7030 /* tuneables for this context (softc->ipf_tuners.) To properly prepare the  */
7031 /* the array for being appended to the list, initialise all of the next     */
7032 /* pointers so we don't need to walk parts of it with ++ and others with    */
7033 /* next. The array is expected to have an entry with a NULL name as the     */
7034 /* terminator. Trying to add an array with no non-NULL names will return as */
7035 /* a failure.                                                               */
7036 /* ------------------------------------------------------------------------ */
7037 int
7038 ipf_tune_array_link(softc, array)
7039         ipf_main_softc_t *softc;
7040         ipftuneable_t *array;
7041 {
7042         ipftuneable_t *t, **p;
7043
7044         t = array;
7045         if (t->ipft_name == NULL)
7046                 return -1;
7047
7048         for (; t[1].ipft_name != NULL; t++)
7049                 t[0].ipft_next = &t[1];
7050         t->ipft_next = NULL;
7051
7052         /*
7053          * Since a pointer to the last entry isn't kept, we need to find it
7054          * each time we want to add new variables to the list.
7055          */
7056         for (p = &softc->ipf_tuners; (t = *p) != NULL; p = &t->ipft_next)
7057                 if (t->ipft_name == NULL)
7058                         break;
7059         *p = array;
7060
7061         return 0;
7062 }
7063
7064
7065 /* ------------------------------------------------------------------------ */
7066 /* Function:    ipf_tune_array_unlink                                       */
7067 /* Returns:     0 == success, -1 == failure                                 */
7068 /* Parameters:  softc(I) - soft context pointerto work with                 */
7069 /*              array(I) - pointer to an array of tuneables                 */
7070 /*                                                                          */
7071 /* ------------------------------------------------------------------------ */
7072 int
7073 ipf_tune_array_unlink(softc, array)
7074         ipf_main_softc_t *softc;
7075         ipftuneable_t *array;
7076 {
7077         ipftuneable_t *t, **p;
7078
7079         for (p = &softc->ipf_tuners; (t = *p) != NULL; p = &t->ipft_next)
7080                 if (t == array)
7081                         break;
7082         if (t == NULL)
7083                 return -1;
7084
7085         for (; t[1].ipft_name != NULL; t++)
7086                 ;
7087
7088         *p = t->ipft_next;
7089
7090         return 0;
7091 }
7092
7093
7094 /* ------------------------------------------------------------------------ */
7095 /* Function:   ipf_tune_array_copy                                          */
7096 /* Returns:    NULL = failure, else pointer to new array                    */
7097 /* Parameters: base(I)     - pointer to structure base                      */
7098 /*             size(I)     - size of the array at template                  */
7099 /*             template(I) - original array to copy                         */
7100 /*                                                                          */
7101 /* Allocate memory for a new set of tuneable values and copy everything     */
7102 /* from template into the new region of memory.  The new region is full of  */
7103 /* uninitialised pointers (ipft_next) so set them up.  Now, ipftp_offset... */
7104 /*                                                                          */
7105 /* NOTE: the following assumes that sizeof(long) == sizeof(void *)          */
7106 /* In the array template, ipftp_offset is the offset (in bytes) of the      */
7107 /* location of the tuneable value inside the structure pointed to by base.  */
7108 /* As ipftp_offset is a union over the pointers to the tuneable values, if  */
7109 /* we add base to the copy's ipftp_offset, copy ends up with a pointer in   */
7110 /* ipftp_void that points to the stored value.                              */
7111 /* ------------------------------------------------------------------------ */
7112 ipftuneable_t *
7113 ipf_tune_array_copy(base, size, template)
7114         void *base;
7115         size_t size;
7116         ipftuneable_t *template;
7117 {
7118         ipftuneable_t *copy;
7119         int i;
7120
7121
7122         KMALLOCS(copy, ipftuneable_t *, size);
7123         if (copy == NULL) {
7124                 return NULL;
7125         }
7126         bcopy(template, copy, size);
7127
7128         for (i = 0; copy[i].ipft_name; i++) {
7129                 copy[i].ipft_una.ipftp_offset += (u_long)base;
7130                 copy[i].ipft_next = copy + i + 1;
7131         }
7132
7133         return copy;
7134 }
7135
7136
7137 /* ------------------------------------------------------------------------ */
7138 /* Function:    ipf_tune_add                                                */
7139 /* Returns:     int - 0 == success, else failure                            */
7140 /* Parameters:  newtune - pointer to new tune entry to add to tuneables     */
7141 /*                                                                          */
7142 /* Appends tune structures from the array passed in (newtune) to the end of */
7143 /* the current list of "dynamic" tuneable parameters.  Once added, the      */
7144 /* owner of the object is not expected to ever change "ipft_next".          */
7145 /* ------------------------------------------------------------------------ */
7146 int
7147 ipf_tune_add(softc, newtune)
7148         ipf_main_softc_t *softc;
7149         ipftuneable_t *newtune;
7150 {
7151         ipftuneable_t *ta, **tap;
7152
7153         ta = ipf_tune_findbyname(softc->ipf_tuners, newtune->ipft_name);
7154         if (ta != NULL) {
7155                 IPFERROR(74);
7156                 return EEXIST;
7157         }
7158
7159         for (tap = &softc->ipf_tuners; *tap != NULL; tap = &(*tap)->ipft_next)
7160                 ;
7161
7162         newtune->ipft_next = NULL;
7163         *tap = newtune;
7164         return 0;
7165 }
7166
7167
7168 /* ------------------------------------------------------------------------ */
7169 /* Function:    ipf_tune_del                                                */
7170 /* Returns:     int - 0 == success, else failure                            */
7171 /* Parameters:  oldtune - pointer to tune entry to remove from the list of  */
7172 /*                        current dynamic tuneables                         */
7173 /*                                                                          */
7174 /* Search for the tune structure, by pointer, in the list of those that are */
7175 /* dynamically added at run time.  If found, adjust the list so that this   */
7176 /* structure is no longer part of it.                                       */
7177 /* ------------------------------------------------------------------------ */
7178 int
7179 ipf_tune_del(softc, oldtune)
7180         ipf_main_softc_t *softc;
7181         ipftuneable_t *oldtune;
7182 {
7183         ipftuneable_t *ta, **tap;
7184         int error = 0;
7185
7186         for (tap = &softc->ipf_tuners; (ta = *tap) != NULL;
7187              tap = &ta->ipft_next) {
7188                 if (ta == oldtune) {
7189                         *tap = oldtune->ipft_next;
7190                         oldtune->ipft_next = NULL;
7191                         break;
7192                 }
7193         }
7194
7195         if (ta == NULL) {
7196                 error = ESRCH;
7197                 IPFERROR(75);
7198         }
7199         return error;
7200 }
7201
7202
7203 /* ------------------------------------------------------------------------ */
7204 /* Function:    ipf_tune_del_array                                          */
7205 /* Returns:     int - 0 == success, else failure                            */
7206 /* Parameters:  oldtune - pointer to tuneables array                        */
7207 /*                                                                          */
7208 /* Remove each tuneable entry in the array from the list of "dynamic"       */
7209 /* tunables.  If one entry should fail to be found, an error will be        */
7210 /* returned and no further ones removed.                                    */
7211 /* An entry with a NULL name is used as the indicator of the last entry in  */
7212 /* the array.                                                               */
7213 /* ------------------------------------------------------------------------ */
7214 int
7215 ipf_tune_del_array(softc, oldtune)
7216         ipf_main_softc_t *softc;
7217         ipftuneable_t *oldtune;
7218 {
7219         ipftuneable_t *ot;
7220         int error = 0;
7221
7222         for (ot = oldtune; ot->ipft_name != NULL; ot++) {
7223                 error = ipf_tune_del(softc, ot);
7224                 if (error != 0)
7225                         break;
7226         }
7227
7228         return error;
7229
7230 }
7231
7232
7233 /* ------------------------------------------------------------------------ */
7234 /* Function:    ipf_tune                                                    */
7235 /* Returns:     int - 0 == success, else failure                            */
7236 /* Parameters:  cmd(I)  - ioctl command number                              */
7237 /*              data(I) - pointer to ioctl data structure                   */
7238 /*                                                                          */
7239 /* Implement handling of SIOCIPFGETNEXT, SIOCIPFGET and SIOCIPFSET.  These  */
7240 /* three ioctls provide the means to access and control global variables    */
7241 /* within IPFilter, allowing (for example) timeouts and table sizes to be   */
7242 /* changed without rebooting, reloading or recompiling.  The initialisation */
7243 /* and 'destruction' routines of the various components of ipfilter are all */
7244 /* each responsible for handling their own values being too big.            */
7245 /* ------------------------------------------------------------------------ */
7246 int
7247 ipf_ipftune(softc, cmd, data)
7248         ipf_main_softc_t *softc;
7249         ioctlcmd_t cmd;
7250         void *data;
7251 {
7252         ipftuneable_t *ta;
7253         ipftune_t tu;
7254         void *cookie;
7255         int error;
7256
7257         error = ipf_inobj(softc, data, NULL, &tu, IPFOBJ_TUNEABLE);
7258         if (error != 0)
7259                 return error;
7260
7261         tu.ipft_name[sizeof(tu.ipft_name) - 1] = '\0';
7262         cookie = tu.ipft_cookie;
7263         ta = NULL;
7264
7265         switch (cmd)
7266         {
7267         case SIOCIPFGETNEXT :
7268                 /*
7269                  * If cookie is non-NULL, assume it to be a pointer to the last
7270                  * entry we looked at, so find it (if possible) and return a
7271                  * pointer to the next one after it.  The last entry in the
7272                  * the table is a NULL entry, so when we get to it, set cookie
7273                  * to NULL and return that, indicating end of list, erstwhile
7274                  * if we come in with cookie set to NULL, we are starting anew
7275                  * at the front of the list.
7276                  */
7277                 if (cookie != NULL) {
7278                         ta = ipf_tune_findbycookie(&softc->ipf_tuners,
7279                                                    cookie, &tu.ipft_cookie);
7280                 } else {
7281                         ta = softc->ipf_tuners;
7282                         tu.ipft_cookie = ta + 1;
7283                 }
7284                 if (ta != NULL) {
7285                         /*
7286                          * Entry found, but does the data pointed to by that
7287                          * row fit in what we can return?
7288                          */
7289                         if (ta->ipft_sz > sizeof(tu.ipft_un)) {
7290                                 IPFERROR(76);
7291                                 return EINVAL;
7292                         }
7293
7294                         tu.ipft_vlong = 0;
7295                         if (ta->ipft_sz == sizeof(u_long))
7296                                 tu.ipft_vlong = *ta->ipft_plong;
7297                         else if (ta->ipft_sz == sizeof(u_int))
7298                                 tu.ipft_vint = *ta->ipft_pint;
7299                         else if (ta->ipft_sz == sizeof(u_short))
7300                                 tu.ipft_vshort = *ta->ipft_pshort;
7301                         else if (ta->ipft_sz == sizeof(u_char))
7302                                 tu.ipft_vchar = *ta->ipft_pchar;
7303
7304                         tu.ipft_sz = ta->ipft_sz;
7305                         tu.ipft_min = ta->ipft_min;
7306                         tu.ipft_max = ta->ipft_max;
7307                         tu.ipft_flags = ta->ipft_flags;
7308                         bcopy(ta->ipft_name, tu.ipft_name,
7309                               MIN(sizeof(tu.ipft_name),
7310                                   strlen(ta->ipft_name) + 1));
7311                 }
7312                 error = ipf_outobj(softc, data, &tu, IPFOBJ_TUNEABLE);
7313                 break;
7314
7315         case SIOCIPFGET :
7316         case SIOCIPFSET :
7317                 /*
7318                  * Search by name or by cookie value for a particular entry
7319                  * in the tuning paramter table.
7320                  */
7321                 IPFERROR(77);
7322                 error = ESRCH;
7323                 if (cookie != NULL) {
7324                         ta = ipf_tune_findbycookie(&softc->ipf_tuners,
7325                                                    cookie, NULL);
7326                         if (ta != NULL)
7327                                 error = 0;
7328                 } else if (tu.ipft_name[0] != '\0') {
7329                         ta = ipf_tune_findbyname(softc->ipf_tuners,
7330                                                  tu.ipft_name);
7331                         if (ta != NULL)
7332                                 error = 0;
7333                 }
7334                 if (error != 0)
7335                         break;
7336
7337                 if (cmd == (ioctlcmd_t)SIOCIPFGET) {
7338                         /*
7339                          * Fetch the tuning parameters for a particular value
7340                          */
7341                         tu.ipft_vlong = 0;
7342                         if (ta->ipft_sz == sizeof(u_long))
7343                                 tu.ipft_vlong = *ta->ipft_plong;
7344                         else if (ta->ipft_sz == sizeof(u_int))
7345                                 tu.ipft_vint = *ta->ipft_pint;
7346                         else if (ta->ipft_sz == sizeof(u_short))
7347                                 tu.ipft_vshort = *ta->ipft_pshort;
7348                         else if (ta->ipft_sz == sizeof(u_char))
7349                                 tu.ipft_vchar = *ta->ipft_pchar;
7350                         tu.ipft_cookie = ta;
7351                         tu.ipft_sz = ta->ipft_sz;
7352                         tu.ipft_min = ta->ipft_min;
7353                         tu.ipft_max = ta->ipft_max;
7354                         tu.ipft_flags = ta->ipft_flags;
7355                         error = ipf_outobj(softc, data, &tu, IPFOBJ_TUNEABLE);
7356
7357                 } else if (cmd == (ioctlcmd_t)SIOCIPFSET) {
7358                         /*
7359                          * Set an internal parameter.  The hard part here is
7360                          * getting the new value safely and correctly out of
7361                          * the kernel (given we only know its size, not type.)
7362                          */
7363                         u_long in;
7364
7365                         if (((ta->ipft_flags & IPFT_WRDISABLED) != 0) &&
7366                             (softc->ipf_running > 0)) {
7367                                 IPFERROR(78);
7368                                 error = EBUSY;
7369                                 break;
7370                         }
7371
7372                         in = tu.ipft_vlong;
7373                         if (in < ta->ipft_min || in > ta->ipft_max) {
7374                                 IPFERROR(79);
7375                                 error = EINVAL;
7376                                 break;
7377                         }
7378
7379                         if (ta->ipft_func != NULL) {
7380                                 SPL_INT(s);
7381
7382                                 SPL_NET(s);
7383                                 error = (*ta->ipft_func)(softc, ta,
7384                                                          &tu.ipft_un);
7385                                 SPL_X(s);
7386
7387                         } else if (ta->ipft_sz == sizeof(u_long)) {
7388                                 tu.ipft_vlong = *ta->ipft_plong;
7389                                 *ta->ipft_plong = in;
7390
7391                         } else if (ta->ipft_sz == sizeof(u_int)) {
7392                                 tu.ipft_vint = *ta->ipft_pint;
7393                                 *ta->ipft_pint = (u_int)(in & 0xffffffff);
7394
7395                         } else if (ta->ipft_sz == sizeof(u_short)) {
7396                                 tu.ipft_vshort = *ta->ipft_pshort;
7397                                 *ta->ipft_pshort = (u_short)(in & 0xffff);
7398
7399                         } else if (ta->ipft_sz == sizeof(u_char)) {
7400                                 tu.ipft_vchar = *ta->ipft_pchar;
7401                                 *ta->ipft_pchar = (u_char)(in & 0xff);
7402                         }
7403                         error = ipf_outobj(softc, data, &tu, IPFOBJ_TUNEABLE);
7404                 }
7405                 break;
7406
7407         default :
7408                 IPFERROR(80);
7409                 error = EINVAL;
7410                 break;
7411         }
7412
7413         return error;
7414 }
7415
7416
7417 /* ------------------------------------------------------------------------ */
7418 /* Function:    ipf_zerostats                                               */
7419 /* Returns:     int - 0 = success, else failure                             */
7420 /* Parameters:  data(O) - pointer to pointer for copying data back to       */
7421 /*                                                                          */
7422 /* Copies the current statistics out to userspace and then zero's the       */
7423 /* current ones in the kernel. The lock is only held across the bzero() as  */
7424 /* the copyout may result in paging (ie network activity.)                  */
7425 /* ------------------------------------------------------------------------ */
7426 int
7427 ipf_zerostats(softc, data)
7428         ipf_main_softc_t *softc;
7429         caddr_t data;
7430 {
7431         friostat_t fio;
7432         ipfobj_t obj;
7433         int error;
7434
7435         error = ipf_inobj(softc, data, &obj, &fio, IPFOBJ_IPFSTAT);
7436         if (error != 0)
7437                 return error;
7438         ipf_getstat(softc, &fio, obj.ipfo_rev);
7439         error = ipf_outobj(softc, data, &fio, IPFOBJ_IPFSTAT);
7440         if (error != 0)
7441                 return error;
7442
7443         WRITE_ENTER(&softc->ipf_mutex);
7444         bzero(&softc->ipf_stats, sizeof(softc->ipf_stats));
7445         RWLOCK_EXIT(&softc->ipf_mutex);
7446
7447         return 0;
7448 }
7449
7450
7451 /* ------------------------------------------------------------------------ */
7452 /* Function:    ipf_resolvedest                                             */
7453 /* Returns:     Nil                                                         */
7454 /* Parameters:  softc(I) - pointer to soft context main structure           */
7455 /*              base(I)  - where strings are stored                         */
7456 /*              fdp(IO)  - pointer to destination information to resolve    */
7457 /*              v(I)     - IP protocol version to match                     */
7458 /*                                                                          */
7459 /* Looks up an interface name in the frdest structure pointed to by fdp and */
7460 /* if a matching name can be found for the particular IP protocol version   */
7461 /* then store the interface pointer in the frdest struct.  If no match is   */
7462 /* found, then set the interface pointer to be -1 as NULL is considered to  */
7463 /* indicate there is no information at all in the structure.                */
7464 /* ------------------------------------------------------------------------ */
7465 int
7466 ipf_resolvedest(softc, base, fdp, v)
7467         ipf_main_softc_t *softc;
7468         char *base;
7469         frdest_t *fdp;
7470         int v;
7471 {
7472         int errval = 0;
7473         void *ifp;
7474
7475         ifp = NULL;
7476
7477         if (fdp->fd_name != -1) {
7478                 if (fdp->fd_type == FRD_DSTLIST) {
7479                         ifp = ipf_lookup_res_name(softc, IPL_LOGIPF,
7480                                                   IPLT_DSTLIST,
7481                                                   base + fdp->fd_name,
7482                                                   NULL);
7483                         if (ifp == NULL) {
7484                                 IPFERROR(144);
7485                                 errval = ESRCH;
7486                         }
7487                 } else {
7488                         ifp = GETIFP(base + fdp->fd_name, v);
7489                         if (ifp == NULL)
7490                                 ifp = (void *)-1;
7491                 }
7492         }
7493         fdp->fd_ptr = ifp;
7494
7495         if ((ifp != NULL) && (ifp != (void *)-1)) {
7496                 fdp->fd_local = ipf_deliverlocal(softc, v, ifp, &fdp->fd_ip6);
7497         }
7498
7499         return errval;
7500 }
7501
7502
7503 /* ------------------------------------------------------------------------ */
7504 /* Function:    ipf_resolvenic                                              */
7505 /* Returns:     void* - NULL = wildcard name, -1 = failed to find NIC, else */
7506 /*                      pointer to interface structure for NIC              */
7507 /* Parameters:  softc(I)- pointer to soft context main structure            */
7508 /*              name(I) - complete interface name                           */
7509 /*              v(I)    - IP protocol version                               */
7510 /*                                                                          */
7511 /* Look for a network interface structure that firstly has a matching name  */
7512 /* to that passed in and that is also being used for that IP protocol       */
7513 /* version (necessary on some platforms where there are separate listings   */
7514 /* for both IPv4 and IPv6 on the same physical NIC.                         */
7515 /* ------------------------------------------------------------------------ */
7516 void *
7517 ipf_resolvenic(softc, name, v)
7518         ipf_main_softc_t *softc;
7519         char *name;
7520         int v;
7521 {
7522         void *nic;
7523
7524         softc = softc;  /* gcc -Wextra */
7525         if (name[0] == '\0')
7526                 return NULL;
7527
7528         if ((name[1] == '\0') && ((name[0] == '-') || (name[0] == '*'))) {
7529                 return NULL;
7530         }
7531
7532         nic = GETIFP(name, v);
7533         if (nic == NULL)
7534                 nic = (void *)-1;
7535         return nic;
7536 }
7537
7538
7539 /* ------------------------------------------------------------------------ */
7540 /* Function:    ipf_token_expire                                            */
7541 /* Returns:     None.                                                       */
7542 /* Parameters:  softc(I) - pointer to soft context main structure           */
7543 /*                                                                          */
7544 /* This function is run every ipf tick to see if there are any tokens that  */
7545 /* have been held for too long and need to be freed up.                     */
7546 /* ------------------------------------------------------------------------ */
7547 void
7548 ipf_token_expire(softc)
7549         ipf_main_softc_t *softc;
7550 {
7551         ipftoken_t *it;
7552
7553         WRITE_ENTER(&softc->ipf_tokens);
7554         while ((it = softc->ipf_token_head) != NULL) {
7555                 if (it->ipt_die > softc->ipf_ticks)
7556                         break;
7557
7558                 ipf_token_deref(softc, it);
7559         }
7560         RWLOCK_EXIT(&softc->ipf_tokens);
7561 }
7562
7563
7564 /* ------------------------------------------------------------------------ */
7565 /* Function:    ipf_token_flush                                             */
7566 /* Returns:     None.                                                       */
7567 /* Parameters:  softc(I) - pointer to soft context main structure           */
7568 /*                                                                          */
7569 /* Loop through all of the existing tokens and call deref to see if they    */
7570 /* can be freed. Normally a function like this might just loop on           */
7571 /* ipf_token_head but there is a chance that a token might have a ref count */
7572 /* of greater than one and in that case the the reference would drop twice  */
7573 /* by code that is only entitled to drop it once.                           */
7574 /* ------------------------------------------------------------------------ */
7575 static void
7576 ipf_token_flush(softc)
7577         ipf_main_softc_t *softc;
7578 {
7579         ipftoken_t *it, *next;
7580
7581         WRITE_ENTER(&softc->ipf_tokens);
7582         for (it = softc->ipf_token_head; it != NULL; it = next) {
7583                 next = it->ipt_next;
7584                 (void) ipf_token_deref(softc, it);
7585         }
7586         RWLOCK_EXIT(&softc->ipf_tokens);
7587 }
7588
7589
7590 /* ------------------------------------------------------------------------ */
7591 /* Function:    ipf_token_del                                               */
7592 /* Returns:     int     - 0 = success, else error                           */
7593 /* Parameters:  softc(I)- pointer to soft context main structure            */
7594 /*              type(I) - the token type to match                           */
7595 /*              uid(I)  - uid owning the token                              */
7596 /*              ptr(I)  - context pointer for the token                     */
7597 /*                                                                          */
7598 /* This function looks for a a token in the current list that matches up    */
7599 /* the fields (type, uid, ptr).  If none is found, ESRCH is returned, else  */
7600 /* call ipf_token_dewref() to remove it from the list. In the event that    */
7601 /* the token has a reference held elsewhere, setting ipt_complete to 2      */
7602 /* enables debugging to distinguish between the two paths that ultimately   */
7603 /* lead to a token to be deleted.                                           */
7604 /* ------------------------------------------------------------------------ */
7605 int
7606 ipf_token_del(softc, type, uid, ptr)
7607         ipf_main_softc_t *softc;
7608         int type, uid;
7609         void *ptr;
7610 {
7611         ipftoken_t *it;
7612         int error;
7613
7614         IPFERROR(82);
7615         error = ESRCH;
7616
7617         WRITE_ENTER(&softc->ipf_tokens);
7618         for (it = softc->ipf_token_head; it != NULL; it = it->ipt_next) {
7619                 if (ptr == it->ipt_ctx && type == it->ipt_type &&
7620                     uid == it->ipt_uid) {
7621                         it->ipt_complete = 2;
7622                         ipf_token_deref(softc, it);
7623                         error = 0;
7624                         break;
7625                 }
7626         }
7627         RWLOCK_EXIT(&softc->ipf_tokens);
7628
7629         return error;
7630 }
7631
7632
7633 /* ------------------------------------------------------------------------ */
7634 /* Function:    ipf_token_mark_complete                                     */
7635 /* Returns:     None.                                                       */
7636 /* Parameters:  token(I) - pointer to token structure                       */
7637 /*                                                                          */
7638 /* Mark a token as being ineligable for being found with ipf_token_find.    */
7639 /* ------------------------------------------------------------------------ */
7640 void
7641 ipf_token_mark_complete(token)
7642         ipftoken_t *token;
7643 {
7644         if (token->ipt_complete == 0)
7645                 token->ipt_complete = 1;
7646 }
7647
7648
7649 /* ------------------------------------------------------------------------ */
7650 /* Function:    ipf_token_find                                               */
7651 /* Returns:     ipftoken_t * - NULL if no memory, else pointer to token     */
7652 /* Parameters:  softc(I)- pointer to soft context main structure            */
7653 /*              type(I) - the token type to match                           */
7654 /*              uid(I)  - uid owning the token                              */
7655 /*              ptr(I)  - context pointer for the token                     */
7656 /*                                                                          */
7657 /* This function looks for a live token in the list of current tokens that  */
7658 /* matches the tuple (type, uid, ptr).  If one cannot be found then one is  */
7659 /* allocated.  If one is found then it is moved to the top of the list of   */
7660 /* currently active tokens.                                                 */
7661 /* ------------------------------------------------------------------------ */
7662 ipftoken_t *
7663 ipf_token_find(softc, type, uid, ptr)
7664         ipf_main_softc_t *softc;
7665         int type, uid;
7666         void *ptr;
7667 {
7668         ipftoken_t *it, *new;
7669
7670         KMALLOC(new, ipftoken_t *);
7671         if (new != NULL)
7672                 bzero((char *)new, sizeof(*new));
7673
7674         WRITE_ENTER(&softc->ipf_tokens);
7675         for (it = softc->ipf_token_head; it != NULL; it = it->ipt_next) {
7676                 if ((ptr == it->ipt_ctx) && (type == it->ipt_type) &&
7677                     (uid == it->ipt_uid) && (it->ipt_complete < 2))
7678                         break;
7679         }
7680
7681         if (it == NULL) {
7682                 it = new;
7683                 new = NULL;
7684                 if (it == NULL) {
7685                         RWLOCK_EXIT(&softc->ipf_tokens);
7686                         return NULL;
7687                 }
7688                 it->ipt_ctx = ptr;
7689                 it->ipt_uid = uid;
7690                 it->ipt_type = type;
7691                 it->ipt_ref = 1;
7692         } else {
7693                 if (new != NULL) {
7694                         KFREE(new);
7695                         new = NULL;
7696                 }
7697
7698                 if (it->ipt_complete > 0)
7699                         it = NULL;
7700                 else
7701                         ipf_token_unlink(softc, it);
7702         }
7703
7704         if (it != NULL) {
7705                 it->ipt_pnext = softc->ipf_token_tail;
7706                 *softc->ipf_token_tail = it;
7707                 softc->ipf_token_tail = &it->ipt_next;
7708                 it->ipt_next = NULL;
7709                 it->ipt_ref++;
7710
7711                 it->ipt_die = softc->ipf_ticks + 20;
7712         }
7713
7714         RWLOCK_EXIT(&softc->ipf_tokens);
7715
7716         return it;
7717 }
7718
7719
7720 /* ------------------------------------------------------------------------ */
7721 /* Function:    ipf_token_unlink                                            */
7722 /* Returns:     None.                                                       */
7723 /* Parameters:  softc(I) - pointer to soft context main structure           */
7724 /*              token(I) - pointer to token structure                       */
7725 /* Write Locks: ipf_tokens                                                  */
7726 /*                                                                          */
7727 /* This function unlinks a token structure from the linked list of tokens   */
7728 /* that "own" it.  The head pointer never needs to be explicitly adjusted   */
7729 /* but the tail does due to the linked list implementation.                 */
7730 /* ------------------------------------------------------------------------ */
7731 static void
7732 ipf_token_unlink(softc, token)
7733         ipf_main_softc_t *softc;
7734         ipftoken_t *token;
7735 {
7736
7737         if (softc->ipf_token_tail == &token->ipt_next)
7738                 softc->ipf_token_tail = token->ipt_pnext;
7739
7740         *token->ipt_pnext = token->ipt_next;
7741         if (token->ipt_next != NULL)
7742                 token->ipt_next->ipt_pnext = token->ipt_pnext;
7743         token->ipt_next = NULL;
7744         token->ipt_pnext = NULL;
7745 }
7746
7747
7748 /* ------------------------------------------------------------------------ */
7749 /* Function:    ipf_token_deref                                             */
7750 /* Returns:     int      - 0 == token freed, else reference count           */
7751 /* Parameters:  softc(I) - pointer to soft context main structure           */
7752 /*              token(I) - pointer to token structure                       */
7753 /* Write Locks: ipf_tokens                                                  */
7754 /*                                                                          */
7755 /* Drop the reference count on the token structure and if it drops to zero, */
7756 /* call the dereference function for the token type because it is then      */
7757 /* possible to free the token data structure.                               */
7758 /* ------------------------------------------------------------------------ */
7759 int
7760 ipf_token_deref(softc, token)
7761         ipf_main_softc_t *softc;
7762         ipftoken_t *token;
7763 {
7764         void *data, **datap;
7765
7766         ASSERT(token->ipt_ref > 0);
7767         token->ipt_ref--;
7768         if (token->ipt_ref > 0)
7769                 return token->ipt_ref;
7770
7771         data = token->ipt_data;
7772         datap = &data;
7773
7774         if ((data != NULL) && (data != (void *)-1)) {
7775                 switch (token->ipt_type)
7776                 {
7777                 case IPFGENITER_IPF :
7778                         (void) ipf_derefrule(softc, (frentry_t **)datap);
7779                         break;
7780                 case IPFGENITER_IPNAT :
7781                         WRITE_ENTER(&softc->ipf_nat);
7782                         ipf_nat_rule_deref(softc, (ipnat_t **)datap);
7783                         RWLOCK_EXIT(&softc->ipf_nat);
7784                         break;
7785                 case IPFGENITER_NAT :
7786                         ipf_nat_deref(softc, (nat_t **)datap);
7787                         break;
7788                 case IPFGENITER_STATE :
7789                         ipf_state_deref(softc, (ipstate_t **)datap);
7790                         break;
7791                 case IPFGENITER_FRAG :
7792                         ipf_frag_pkt_deref(softc, (ipfr_t **)datap);
7793                         break;
7794                 case IPFGENITER_NATFRAG :
7795                         ipf_frag_nat_deref(softc, (ipfr_t **)datap);
7796                         break;
7797                 case IPFGENITER_HOSTMAP :
7798                         WRITE_ENTER(&softc->ipf_nat);
7799                         ipf_nat_hostmapdel(softc, (hostmap_t **)datap);
7800                         RWLOCK_EXIT(&softc->ipf_nat);
7801                         break;
7802                 default :
7803                         ipf_lookup_iterderef(softc, token->ipt_type, data);
7804                         break;
7805                 }
7806         }
7807
7808         ipf_token_unlink(softc, token);
7809         KFREE(token);
7810         return 0;
7811 }
7812
7813
7814 /* ------------------------------------------------------------------------ */
7815 /* Function:    ipf_nextrule                                                */
7816 /* Returns:     frentry_t * - NULL == no more rules, else pointer to next   */
7817 /* Parameters:  softc(I)    - pointer to soft context main structure        */
7818 /*              fr(I)       - pointer to filter rule                        */
7819 /*              out(I)      - 1 == out rules, 0 == input rules              */
7820 /*                                                                          */
7821 /* Starting with "fr", find the next rule to visit. This includes visiting  */
7822 /* the list of rule groups if either fr is NULL (empty list) or it is the   */
7823 /* last rule in the list. When walking rule lists, it is either input or    */
7824 /* output rules that are returned, never both.                              */
7825 /* ------------------------------------------------------------------------ */
7826 static frentry_t *
7827 ipf_nextrule(softc, active, unit, fr, out)
7828         ipf_main_softc_t *softc;
7829         int active, unit;
7830         frentry_t *fr;
7831         int out;
7832 {
7833         frentry_t *next;
7834         frgroup_t *fg;
7835
7836         if (fr != NULL && fr->fr_group != -1) {
7837                 fg = ipf_findgroup(softc, fr->fr_names + fr->fr_group,
7838                                    unit, active, NULL);
7839                 if (fg != NULL)
7840                         fg = fg->fg_next;
7841         } else {
7842                 fg = softc->ipf_groups[unit][active];
7843         }
7844
7845         while (fg != NULL) {
7846                 next = fg->fg_start;
7847                 while (next != NULL) {
7848                         if (out) {
7849                                 if (next->fr_flags & FR_OUTQUE)
7850                                         return next;
7851                         } else if (next->fr_flags & FR_INQUE) {
7852                                 return next;
7853                         }
7854                         next = next->fr_next;
7855                 }
7856                 if (next == NULL)
7857                         fg = fg->fg_next;
7858         }
7859
7860         return NULL;
7861 }
7862
7863 /* ------------------------------------------------------------------------ */
7864 /* Function:    ipf_getnextrule                                             */
7865 /* Returns:     int - 0 = success, else error                               */
7866 /* Parameters:  softc(I)- pointer to soft context main structure            */
7867 /*              t(I)   - pointer to destination information to resolve      */
7868 /*              ptr(I) - pointer to ipfobj_t to copyin from user space      */
7869 /*                                                                          */
7870 /* This function's first job is to bring in the ipfruleiter_t structure via */
7871 /* the ipfobj_t structure to determine what should be the next rule to      */
7872 /* return. Once the ipfruleiter_t has been brought in, it then tries to     */
7873 /* find the 'next rule'.  This may include searching rule group lists or    */
7874 /* just be as simple as looking at the 'next' field in the rule structure.  */
7875 /* When we have found the rule to return, increase its reference count and  */
7876 /* if we used an existing rule to get here, decrease its reference count.   */
7877 /* ------------------------------------------------------------------------ */
7878 int
7879 ipf_getnextrule(softc, t, ptr)
7880         ipf_main_softc_t *softc;
7881         ipftoken_t *t;
7882         void *ptr;
7883 {
7884         frentry_t *fr, *next, zero;
7885         ipfruleiter_t it;
7886         int error, out;
7887         frgroup_t *fg;
7888         ipfobj_t obj;
7889         int predict;
7890         char *dst;
7891         int unit;
7892
7893         if (t == NULL || ptr == NULL) {
7894                 IPFERROR(84);
7895                 return EFAULT;
7896         }
7897
7898         error = ipf_inobj(softc, ptr, &obj, &it, IPFOBJ_IPFITER);
7899         if (error != 0)
7900                 return error;
7901
7902         if ((it.iri_inout < 0) || (it.iri_inout > 3)) {
7903                 IPFERROR(85);
7904                 return EINVAL;
7905         }
7906         if ((it.iri_active != 0) && (it.iri_active != 1)) {
7907                 IPFERROR(86);
7908                 return EINVAL;
7909         }
7910         if (it.iri_nrules == 0) {
7911                 IPFERROR(87);
7912                 return ENOSPC;
7913         }
7914         if (it.iri_rule == NULL) {
7915                 IPFERROR(88);
7916                 return EFAULT;
7917         }
7918
7919         fg = NULL;
7920         fr = t->ipt_data;
7921         if ((it.iri_inout & F_OUT) != 0)
7922                 out = 1;
7923         else
7924                 out = 0;
7925         if ((it.iri_inout & F_ACIN) != 0)
7926                 unit = IPL_LOGCOUNT;
7927         else
7928                 unit = IPL_LOGIPF;
7929
7930         READ_ENTER(&softc->ipf_mutex);
7931         if (fr == NULL) {
7932                 if (*it.iri_group == '\0') {
7933                         if (unit == IPL_LOGCOUNT) {
7934                                 next = softc->ipf_acct[out][it.iri_active];
7935                         } else {
7936                                 next = softc->ipf_rules[out][it.iri_active];
7937                         }
7938                         if (next == NULL)
7939                                 next = ipf_nextrule(softc, it.iri_active,
7940                                                     unit, NULL, out);
7941                 } else {
7942                         fg = ipf_findgroup(softc, it.iri_group, unit,
7943                                            it.iri_active, NULL);
7944                         if (fg != NULL)
7945                                 next = fg->fg_start;
7946                         else
7947                                 next = NULL;
7948                 }
7949         } else {
7950                 next = fr->fr_next;
7951                 if (next == NULL)
7952                         next = ipf_nextrule(softc, it.iri_active, unit,
7953                                             fr, out);
7954         }
7955
7956         if (next != NULL && next->fr_next != NULL)
7957                 predict = 1;
7958         else if (ipf_nextrule(softc, it.iri_active, unit, next, out) != NULL)
7959                 predict = 1;
7960         else
7961                 predict = 0;
7962
7963         if (fr != NULL)
7964                 (void) ipf_derefrule(softc, &fr);
7965
7966         obj.ipfo_type = IPFOBJ_FRENTRY;
7967         dst = (char *)it.iri_rule;
7968
7969         if (next != NULL) {
7970                 obj.ipfo_size = next->fr_size;
7971                 MUTEX_ENTER(&next->fr_lock);
7972                 next->fr_ref++;
7973                 MUTEX_EXIT(&next->fr_lock);
7974                 t->ipt_data = next;
7975         } else {
7976                 obj.ipfo_size = sizeof(frentry_t);
7977                 bzero(&zero, sizeof(zero));
7978                 next = &zero;
7979                 t->ipt_data = NULL;
7980         }
7981         it.iri_rule = predict ? next : NULL;
7982         if (predict == 0)
7983                 ipf_token_mark_complete(t);
7984
7985         RWLOCK_EXIT(&softc->ipf_mutex);
7986
7987         obj.ipfo_ptr = dst;
7988         error = ipf_outobjk(softc, &obj, next);
7989         if (error == 0 && t->ipt_data != NULL) {
7990                 dst += obj.ipfo_size;
7991                 if (next->fr_data != NULL) {
7992                         ipfobj_t dobj;
7993
7994                         if (next->fr_type == FR_T_IPFEXPR)
7995                                 dobj.ipfo_type = IPFOBJ_IPFEXPR;
7996                         else
7997                                 dobj.ipfo_type = IPFOBJ_FRIPF;
7998                         dobj.ipfo_size = next->fr_dsize;
7999                         dobj.ipfo_rev = obj.ipfo_rev;
8000                         dobj.ipfo_ptr = dst;
8001                         error = ipf_outobjk(softc, &dobj, next->fr_data);
8002                 }
8003         }
8004
8005         if ((fr != NULL) && (next == &zero))
8006                 (void) ipf_derefrule(softc, &fr);
8007
8008         return error;
8009 }
8010
8011
8012 /* ------------------------------------------------------------------------ */
8013 /* Function:    ipf_frruleiter                                              */
8014 /* Returns:     int - 0 = success, else error                               */
8015 /* Parameters:  softc(I)- pointer to soft context main structure            */
8016 /*              data(I) - the token type to match                           */
8017 /*              uid(I)  - uid owning the token                              */
8018 /*              ptr(I)  - context pointer for the token                     */
8019 /*                                                                          */
8020 /* This function serves as a stepping stone between ipf_ipf_ioctl and       */
8021 /* ipf_getnextrule.  It's role is to find the right token in the kernel for */
8022 /* the process doing the ioctl and use that to ask for the next rule.       */
8023 /* ------------------------------------------------------------------------ */
8024 static int
8025 ipf_frruleiter(softc, data, uid, ctx)
8026         ipf_main_softc_t *softc;
8027         void *data, *ctx;
8028         int uid;
8029 {
8030         ipftoken_t *token;
8031         ipfruleiter_t it;
8032         ipfobj_t obj;
8033         int error;
8034
8035         token = ipf_token_find(softc, IPFGENITER_IPF, uid, ctx);
8036         if (token != NULL) {
8037                 error = ipf_getnextrule(softc, token, data);
8038                 WRITE_ENTER(&softc->ipf_tokens);
8039                 ipf_token_deref(softc, token);
8040                 RWLOCK_EXIT(&softc->ipf_tokens);
8041         } else {
8042                 error = ipf_inobj(softc, data, &obj, &it, IPFOBJ_IPFITER);
8043                 if (error != 0)
8044                         return error;
8045                 it.iri_rule = NULL;
8046                 error = ipf_outobj(softc, data, &it, IPFOBJ_IPFITER);
8047         }
8048
8049         return error;
8050 }
8051
8052
8053 /* ------------------------------------------------------------------------ */
8054 /* Function:    ipf_geniter                                                 */
8055 /* Returns:     int - 0 = success, else error                               */
8056 /* Parameters:  softc(I) - pointer to soft context main structure           */
8057 /*              token(I) - pointer to ipftoken_t structure                  */
8058 /*              itp(I)   - pointer to iterator data                         */
8059 /*                                                                          */
8060 /* Decide which iterator function to call using information passed through  */
8061 /* the ipfgeniter_t structure at itp.                                       */
8062 /* ------------------------------------------------------------------------ */
8063 static int
8064 ipf_geniter(softc, token, itp)
8065         ipf_main_softc_t *softc;
8066         ipftoken_t *token;
8067         ipfgeniter_t *itp;
8068 {
8069         int error;
8070
8071         switch (itp->igi_type)
8072         {
8073         case IPFGENITER_FRAG :
8074                 error = ipf_frag_pkt_next(softc, token, itp);
8075                 break;
8076         default :
8077                 IPFERROR(92);
8078                 error = EINVAL;
8079                 break;
8080         }
8081
8082         return error;
8083 }
8084
8085
8086 /* ------------------------------------------------------------------------ */
8087 /* Function:    ipf_genericiter                                             */
8088 /* Returns:     int - 0 = success, else error                               */
8089 /* Parameters:  softc(I)- pointer to soft context main structure            */
8090 /*              data(I) - the token type to match                           */
8091 /*              uid(I)  - uid owning the token                              */
8092 /*              ptr(I)  - context pointer for the token                     */
8093 /*                                                                          */
8094 /* Handle the SIOCGENITER ioctl for the ipfilter device. The primary role   */
8095 /* ------------------------------------------------------------------------ */
8096 int
8097 ipf_genericiter(softc, data, uid, ctx)
8098         ipf_main_softc_t *softc;
8099         void *data, *ctx;
8100         int uid;
8101 {
8102         ipftoken_t *token;
8103         ipfgeniter_t iter;
8104         int error;
8105
8106         error = ipf_inobj(softc, data, NULL, &iter, IPFOBJ_GENITER);
8107         if (error != 0)
8108                 return error;
8109
8110         token = ipf_token_find(softc, iter.igi_type, uid, ctx);
8111         if (token != NULL) {
8112                 token->ipt_subtype = iter.igi_type;
8113                 error = ipf_geniter(softc, token, &iter);
8114                 WRITE_ENTER(&softc->ipf_tokens);
8115                 ipf_token_deref(softc, token);
8116                 RWLOCK_EXIT(&softc->ipf_tokens);
8117         } else {
8118                 IPFERROR(93);
8119                 error = 0;
8120         }
8121
8122         return error;
8123 }
8124
8125
8126 /* ------------------------------------------------------------------------ */
8127 /* Function:    ipf_ipf_ioctl                                               */
8128 /* Returns:     int - 0 = success, else error                               */
8129 /* Parameters:  softc(I)- pointer to soft context main structure           */
8130 /*              data(I) - the token type to match                           */
8131 /*              cmd(I)  - the ioctl command number                          */
8132 /*              mode(I) - mode flags for the ioctl                          */
8133 /*              uid(I)  - uid owning the token                              */
8134 /*              ptr(I)  - context pointer for the token                     */
8135 /*                                                                          */
8136 /* This function handles all of the ioctl command that are actually isssued */
8137 /* to the /dev/ipl device.                                                  */
8138 /* ------------------------------------------------------------------------ */
8139 int
8140 ipf_ipf_ioctl(softc, data, cmd, mode, uid, ctx)
8141         ipf_main_softc_t *softc;
8142         caddr_t data;
8143         ioctlcmd_t cmd;
8144         int mode, uid;
8145         void *ctx;
8146 {
8147         friostat_t fio;
8148         int error, tmp;
8149         ipfobj_t obj;
8150         SPL_INT(s);
8151
8152         switch (cmd)
8153         {
8154         case SIOCFRENB :
8155                 if (!(mode & FWRITE)) {
8156                         IPFERROR(94);
8157                         error = EPERM;
8158                 } else {
8159                         error = BCOPYIN(data, &tmp, sizeof(tmp));
8160                         if (error != 0) {
8161                                 IPFERROR(95);
8162                                 error = EFAULT;
8163                                 break;
8164                         }
8165
8166                         WRITE_ENTER(&softc->ipf_global);
8167                         if (tmp) {
8168                                 if (softc->ipf_running > 0)
8169                                         error = 0;
8170                                 else
8171                                         error = ipfattach(softc);
8172                                 if (error == 0)
8173                                         softc->ipf_running = 1;
8174                                 else
8175                                         (void) ipfdetach(softc);
8176                         } else {
8177                                 if (softc->ipf_running == 1)
8178                                         error = ipfdetach(softc);
8179                                 else
8180                                         error = 0;
8181                                 if (error == 0)
8182                                         softc->ipf_running = -1;
8183                         }
8184                         RWLOCK_EXIT(&softc->ipf_global);
8185                 }
8186                 break;
8187
8188         case SIOCIPFSET :
8189                 if (!(mode & FWRITE)) {
8190                         IPFERROR(96);
8191                         error = EPERM;
8192                         break;
8193                 }
8194                 /* FALLTHRU */
8195         case SIOCIPFGETNEXT :
8196         case SIOCIPFGET :
8197                 error = ipf_ipftune(softc, cmd, (void *)data);
8198                 break;
8199
8200         case SIOCSETFF :
8201                 if (!(mode & FWRITE)) {
8202                         IPFERROR(97);
8203                         error = EPERM;
8204                 } else {
8205                         error = BCOPYIN(data, &softc->ipf_flags,
8206                                         sizeof(softc->ipf_flags));
8207                         if (error != 0) {
8208                                 IPFERROR(98);
8209                                 error = EFAULT;
8210                         }
8211                 }
8212                 break;
8213
8214         case SIOCGETFF :
8215                 error = BCOPYOUT(&softc->ipf_flags, data,
8216                                  sizeof(softc->ipf_flags));
8217                 if (error != 0) {
8218                         IPFERROR(99);
8219                         error = EFAULT;
8220                 }
8221                 break;
8222
8223         case SIOCFUNCL :
8224                 error = ipf_resolvefunc(softc, (void *)data);
8225                 break;
8226
8227         case SIOCINAFR :
8228         case SIOCRMAFR :
8229         case SIOCADAFR :
8230         case SIOCZRLST :
8231                 if (!(mode & FWRITE)) {
8232                         IPFERROR(100);
8233                         error = EPERM;
8234                 } else {
8235                         error = frrequest(softc, IPL_LOGIPF, cmd, (caddr_t)data,
8236                                           softc->ipf_active, 1);
8237                 }
8238                 break;
8239
8240         case SIOCINIFR :
8241         case SIOCRMIFR :
8242         case SIOCADIFR :
8243                 if (!(mode & FWRITE)) {
8244                         IPFERROR(101);
8245                         error = EPERM;
8246                 } else {
8247                         error = frrequest(softc, IPL_LOGIPF, cmd, (caddr_t)data,
8248                                           1 - softc->ipf_active, 1);
8249                 }
8250                 break;
8251
8252         case SIOCSWAPA :
8253                 if (!(mode & FWRITE)) {
8254                         IPFERROR(102);
8255                         error = EPERM;
8256                 } else {
8257                         WRITE_ENTER(&softc->ipf_mutex);
8258                         error = BCOPYOUT(&softc->ipf_active, data,
8259                                          sizeof(softc->ipf_active));
8260                         if (error != 0) {
8261                                 IPFERROR(103);
8262                                 error = EFAULT;
8263                         } else {
8264                                 softc->ipf_active = 1 - softc->ipf_active;
8265                         }
8266                         RWLOCK_EXIT(&softc->ipf_mutex);
8267                 }
8268                 break;
8269
8270         case SIOCGETFS :
8271                 error = ipf_inobj(softc, (void *)data, &obj, &fio,
8272                                   IPFOBJ_IPFSTAT);
8273                 if (error != 0)
8274                         break;
8275                 ipf_getstat(softc, &fio, obj.ipfo_rev);
8276                 error = ipf_outobj(softc, (void *)data, &fio, IPFOBJ_IPFSTAT);
8277                 break;
8278
8279         case SIOCFRZST :
8280                 if (!(mode & FWRITE)) {
8281                         IPFERROR(104);
8282                         error = EPERM;
8283                 } else
8284                         error = ipf_zerostats(softc, (caddr_t)data);
8285                 break;
8286
8287         case SIOCIPFFL :
8288                 if (!(mode & FWRITE)) {
8289                         IPFERROR(105);
8290                         error = EPERM;
8291                 } else {
8292                         error = BCOPYIN(data, &tmp, sizeof(tmp));
8293                         if (!error) {
8294                                 tmp = ipf_flush(softc, IPL_LOGIPF, tmp);
8295                                 error = BCOPYOUT(&tmp, data, sizeof(tmp));
8296                                 if (error != 0) {
8297                                         IPFERROR(106);
8298                                         error = EFAULT;
8299                                 }
8300                         } else {
8301                                 IPFERROR(107);
8302                                 error = EFAULT;
8303                         }
8304                 }
8305                 break;
8306
8307 #ifdef USE_INET6
8308         case SIOCIPFL6 :
8309                 if (!(mode & FWRITE)) {
8310                         IPFERROR(108);
8311                         error = EPERM;
8312                 } else {
8313                         error = BCOPYIN(data, &tmp, sizeof(tmp));
8314                         if (!error) {
8315                                 tmp = ipf_flush(softc, IPL_LOGIPF, tmp);
8316                                 error = BCOPYOUT(&tmp, data, sizeof(tmp));
8317                                 if (error != 0) {
8318                                         IPFERROR(109);
8319                                         error = EFAULT;
8320                                 }
8321                         } else {
8322                                 IPFERROR(110);
8323                                 error = EFAULT;
8324                         }
8325                 }
8326                 break;
8327 #endif
8328
8329         case SIOCSTLCK :
8330                 if (!(mode & FWRITE)) {
8331                         IPFERROR(122);
8332                         error = EPERM;
8333                 } else {
8334                         error = BCOPYIN(data, &tmp, sizeof(tmp));
8335                         if (error == 0) {
8336                                 ipf_state_setlock(softc->ipf_state_soft, tmp);
8337                                 ipf_nat_setlock(softc->ipf_nat_soft, tmp);
8338                                 ipf_frag_setlock(softc->ipf_frag_soft, tmp);
8339                                 ipf_auth_setlock(softc->ipf_auth_soft, tmp);
8340                         } else {
8341                                 IPFERROR(111);
8342                                 error = EFAULT;
8343                         }
8344                 }
8345                 break;
8346
8347 #ifdef  IPFILTER_LOG
8348         case SIOCIPFFB :
8349                 if (!(mode & FWRITE)) {
8350                         IPFERROR(112);
8351                         error = EPERM;
8352                 } else {
8353                         tmp = ipf_log_clear(softc, IPL_LOGIPF);
8354                         error = BCOPYOUT(&tmp, data, sizeof(tmp));
8355                         if (error) {
8356                                 IPFERROR(113);
8357                                 error = EFAULT;
8358                         }
8359                 }
8360                 break;
8361 #endif /* IPFILTER_LOG */
8362
8363         case SIOCFRSYN :
8364                 if (!(mode & FWRITE)) {
8365                         IPFERROR(114);
8366                         error = EPERM;
8367                 } else {
8368                         WRITE_ENTER(&softc->ipf_global);
8369 #if (defined(MENTAT) && defined(_KERNEL)) && !defined(INSTANCES)
8370                         error = ipfsync();
8371 #else
8372                         ipf_sync(softc, NULL);
8373                         error = 0;
8374 #endif
8375                         RWLOCK_EXIT(&softc->ipf_global);
8376
8377                 }
8378                 break;
8379
8380         case SIOCGFRST :
8381                 error = ipf_outobj(softc, (void *)data,
8382                                    ipf_frag_stats(softc->ipf_frag_soft),
8383                                    IPFOBJ_FRAGSTAT);
8384                 break;
8385
8386 #ifdef  IPFILTER_LOG
8387         case FIONREAD :
8388                 tmp = ipf_log_bytesused(softc, IPL_LOGIPF);
8389                 error = BCOPYOUT(&tmp, data, sizeof(tmp));
8390                 break;
8391 #endif
8392
8393         case SIOCIPFITER :
8394                 SPL_SCHED(s);
8395                 error = ipf_frruleiter(softc, data, uid, ctx);
8396                 SPL_X(s);
8397                 break;
8398
8399         case SIOCGENITER :
8400                 SPL_SCHED(s);
8401                 error = ipf_genericiter(softc, data, uid, ctx);
8402                 SPL_X(s);
8403                 break;
8404
8405         case SIOCIPFDELTOK :
8406                 error = BCOPYIN(data, &tmp, sizeof(tmp));
8407                 if (error == 0) {
8408                         SPL_SCHED(s);
8409                         error = ipf_token_del(softc, tmp, uid, ctx);
8410                         SPL_X(s);
8411                 }
8412                 break;
8413
8414         default :
8415                 IPFERROR(115);
8416                 error = EINVAL;
8417                 break;
8418         }
8419
8420         return error;
8421 }
8422
8423
8424 /* ------------------------------------------------------------------------ */
8425 /* Function:    ipf_decaps                                                  */
8426 /* Returns:     int        - -1 == decapsulation failed, else bit mask of   */
8427 /*                           flags indicating packet filtering decision.    */
8428 /* Parameters:  fin(I)     - pointer to packet information                  */
8429 /*              pass(I)    - IP protocol version to match                   */
8430 /*              l5proto(I) - layer 5 protocol to decode UDP data as.        */
8431 /*                                                                          */
8432 /* This function is called for packets that are wrapt up in other packets,  */
8433 /* for example, an IP packet that is the entire data segment for another IP */
8434 /* packet.  If the basic constraints for this are satisfied, change the     */
8435 /* buffer to point to the start of the inner packet and start processing    */
8436 /* rules belonging to the head group this rule specifies.                   */
8437 /* ------------------------------------------------------------------------ */
8438 u_32_t
8439 ipf_decaps(fin, pass, l5proto)
8440         fr_info_t *fin;
8441         u_32_t pass;
8442         int l5proto;
8443 {
8444         fr_info_t fin2, *fino = NULL;
8445         int elen, hlen, nh;
8446         grehdr_t gre;
8447         ip_t *ip;
8448         mb_t *m;
8449
8450         if ((fin->fin_flx & FI_COALESCE) == 0)
8451                 if (ipf_coalesce(fin) == -1)
8452                         goto cantdecaps;
8453
8454         m = fin->fin_m;
8455         hlen = fin->fin_hlen;
8456
8457         switch (fin->fin_p)
8458         {
8459         case IPPROTO_UDP :
8460                 /*
8461                  * In this case, the specific protocol being decapsulated
8462                  * inside UDP frames comes from the rule.
8463                  */
8464                 nh = fin->fin_fr->fr_icode;
8465                 break;
8466
8467         case IPPROTO_GRE :      /* 47 */
8468                 bcopy(fin->fin_dp, (char *)&gre, sizeof(gre));
8469                 hlen += sizeof(grehdr_t);
8470                 if (gre.gr_R|gre.gr_s)
8471                         goto cantdecaps;
8472                 if (gre.gr_C)
8473                         hlen += 4;
8474                 if (gre.gr_K)
8475                         hlen += 4;
8476                 if (gre.gr_S)
8477                         hlen += 4;
8478
8479                 nh = IPPROTO_IP;
8480
8481                 /*
8482                  * If the routing options flag is set, validate that it is
8483                  * there and bounce over it.
8484                  */
8485 #if 0
8486                 /* This is really heavy weight and lots of room for error, */
8487                 /* so for now, put it off and get the simple stuff right.  */
8488                 if (gre.gr_R) {
8489                         u_char off, len, *s;
8490                         u_short af;
8491                         int end;
8492
8493                         end = 0;
8494                         s = fin->fin_dp;
8495                         s += hlen;
8496                         aplen = fin->fin_plen - hlen;
8497                         while (aplen > 3) {
8498                                 af = (s[0] << 8) | s[1];
8499                                 off = s[2];
8500                                 len = s[3];
8501                                 aplen -= 4;
8502                                 s += 4;
8503                                 if (af == 0 && len == 0) {
8504                                         end = 1;
8505                                         break;
8506                                 }
8507                                 if (aplen < len)
8508                                         break;
8509                                 s += len;
8510                                 aplen -= len;
8511                         }
8512                         if (end != 1)
8513                                 goto cantdecaps;
8514                         hlen = s - (u_char *)fin->fin_dp;
8515                 }
8516 #endif
8517                 break;
8518
8519 #ifdef IPPROTO_IPIP
8520         case IPPROTO_IPIP :     /* 4 */
8521 #endif
8522                 nh = IPPROTO_IP;
8523                 break;
8524
8525         default :       /* Includes ESP, AH is special for IPv4 */
8526                 goto cantdecaps;
8527         }
8528
8529         switch (nh)
8530         {
8531         case IPPROTO_IP :
8532         case IPPROTO_IPV6 :
8533                 break;
8534         default :
8535                 goto cantdecaps;
8536         }
8537
8538         bcopy((char *)fin, (char *)&fin2, sizeof(fin2));
8539         fino = fin;
8540         fin = &fin2;
8541         elen = hlen;
8542 #if defined(MENTAT) && defined(_KERNEL)
8543         m->b_rptr += elen;
8544 #else
8545         m->m_data += elen;
8546         m->m_len -= elen;
8547 #endif
8548         fin->fin_plen -= elen;
8549
8550         ip = (ip_t *)((char *)fin->fin_ip + elen);
8551
8552         /*
8553          * Make sure we have at least enough data for the network layer
8554          * header.
8555          */
8556         if (IP_V(ip) == 4)
8557                 hlen = IP_HL(ip) << 2;
8558 #ifdef USE_INET6
8559         else if (IP_V(ip) == 6)
8560                 hlen = sizeof(ip6_t);
8561 #endif
8562         else
8563                 goto cantdecaps2;
8564
8565         if (fin->fin_plen < hlen)
8566                 goto cantdecaps2;
8567
8568         fin->fin_dp = (char *)ip + hlen;
8569
8570         if (IP_V(ip) == 4) {
8571                 /*
8572                  * Perform IPv4 header checksum validation.
8573                  */
8574                 if (ipf_cksum((u_short *)ip, hlen))
8575                         goto cantdecaps2;
8576         }
8577
8578         if (ipf_makefrip(hlen, ip, fin) == -1) {
8579 cantdecaps2:
8580                 if (m != NULL) {
8581 #if defined(MENTAT) && defined(_KERNEL)
8582                         m->b_rptr -= elen;
8583 #else
8584                         m->m_data -= elen;
8585                         m->m_len += elen;
8586 #endif
8587                 }
8588 cantdecaps:
8589                 DT1(frb_decapfrip, fr_info_t *, fin);
8590                 pass &= ~FR_CMDMASK;
8591                 pass |= FR_BLOCK|FR_QUICK;
8592                 fin->fin_reason = FRB_DECAPFRIP;
8593                 return -1;
8594         }
8595
8596         pass = ipf_scanlist(fin, pass);
8597
8598         /*
8599          * Copy the packet filter "result" fields out of the fr_info_t struct
8600          * that is local to the decapsulation processing and back into the
8601          * one we were called with.
8602          */
8603         fino->fin_flx = fin->fin_flx;
8604         fino->fin_rev = fin->fin_rev;
8605         fino->fin_icode = fin->fin_icode;
8606         fino->fin_rule = fin->fin_rule;
8607         (void) strncpy(fino->fin_group, fin->fin_group, FR_GROUPLEN);
8608         fino->fin_fr = fin->fin_fr;
8609         fino->fin_error = fin->fin_error;
8610         fino->fin_mp = fin->fin_mp;
8611         fino->fin_m = fin->fin_m;
8612         m = fin->fin_m;
8613         if (m != NULL) {
8614 #if defined(MENTAT) && defined(_KERNEL)
8615                 m->b_rptr -= elen;
8616 #else
8617                 m->m_data -= elen;
8618                 m->m_len += elen;
8619 #endif
8620         }
8621         return pass;
8622 }
8623
8624
8625 /* ------------------------------------------------------------------------ */
8626 /* Function:    ipf_matcharray_load                                         */
8627 /* Returns:     int         - 0 = success, else error                       */
8628 /* Parameters:  softc(I)    - pointer to soft context main structure        */
8629 /*              data(I)     - pointer to ioctl data                         */
8630 /*              objp(I)     - ipfobj_t structure to load data into          */
8631 /*              arrayptr(I) - pointer to location to store array pointer    */
8632 /*                                                                          */
8633 /* This function loads in a mathing array through the ipfobj_t struct that  */
8634 /* describes it.  Sanity checking and array size limitations are enforced   */
8635 /* in this function to prevent userspace from trying to load in something   */
8636 /* that is insanely big.  Once the size of the array is known, the memory   */
8637 /* required is malloc'd and returned through changing *arrayptr.  The       */
8638 /* contents of the array are verified before returning.  Only in the event  */
8639 /* of a successful call is the caller required to free up the malloc area.  */
8640 /* ------------------------------------------------------------------------ */
8641 int
8642 ipf_matcharray_load(softc, data, objp, arrayptr)
8643         ipf_main_softc_t *softc;
8644         caddr_t data;
8645         ipfobj_t *objp;
8646         int **arrayptr;
8647 {
8648         int arraysize, *array, error;
8649
8650         *arrayptr = NULL;
8651
8652         error = BCOPYIN(data, objp, sizeof(*objp));
8653         if (error != 0) {
8654                 IPFERROR(116);
8655                 return EFAULT;
8656         }
8657
8658         if (objp->ipfo_type != IPFOBJ_IPFEXPR) {
8659                 IPFERROR(117);
8660                 return EINVAL;
8661         }
8662
8663         if (((objp->ipfo_size & 3) != 0) || (objp->ipfo_size == 0) ||
8664             (objp->ipfo_size > 1024)) {
8665                 IPFERROR(118);
8666                 return EINVAL;
8667         }
8668
8669         arraysize = objp->ipfo_size * sizeof(*array);
8670         KMALLOCS(array, int *, arraysize);
8671         if (array == NULL) {
8672                 IPFERROR(119);
8673                 return ENOMEM;
8674         }
8675
8676         error = COPYIN(objp->ipfo_ptr, array, arraysize);
8677         if (error != 0) {
8678                 KFREES(array, arraysize);
8679                 IPFERROR(120);
8680                 return EFAULT;
8681         }
8682
8683         if (ipf_matcharray_verify(array, arraysize) != 0) {
8684                 KFREES(array, arraysize);
8685                 IPFERROR(121);
8686                 return EINVAL;
8687         }
8688
8689         *arrayptr = array;
8690         return 0;
8691 }
8692
8693
8694 /* ------------------------------------------------------------------------ */
8695 /* Function:    ipf_matcharray_verify                                       */
8696 /* Returns:     Nil                                                         */
8697 /* Parameters:  array(I)     - pointer to matching array                    */
8698 /*              arraysize(I) - number of elements in the array              */
8699 /*                                                                          */
8700 /* Verify the contents of a matching array by stepping through each element */
8701 /* in it.  The actual commands in the array are not verified for            */
8702 /* correctness, only that all of the sizes are correctly within limits.     */
8703 /* ------------------------------------------------------------------------ */
8704 int
8705 ipf_matcharray_verify(array, arraysize)
8706         int *array, arraysize;
8707 {
8708         int i, nelem, maxidx;
8709         ipfexp_t *e;
8710
8711         nelem = arraysize / sizeof(*array);
8712
8713         /*
8714          * Currently, it makes no sense to have an array less than 6
8715          * elements long - the initial size at the from, a single operation
8716          * (minimum 4 in length) and a trailer, for a total of 6.
8717          */
8718         if ((array[0] < 6) || (arraysize < 24) || (arraysize > 4096)) {
8719                 return -1;
8720         }
8721
8722         /*
8723          * Verify the size of data pointed to by array with how long
8724          * the array claims to be itself.
8725          */
8726         if (array[0] * sizeof(*array) != arraysize) {
8727                 return -1;
8728         }
8729
8730         maxidx = nelem - 1;
8731         /*
8732          * The last opcode in this array should be an IPF_EXP_END.
8733          */
8734         if (array[maxidx] != IPF_EXP_END) {
8735                 return -1;
8736         }
8737
8738         for (i = 1; i < maxidx; ) {
8739                 e = (ipfexp_t *)(array + i);
8740
8741                 /*
8742                  * The length of the bits to check must be at least 1
8743                  * (or else there is nothing to comapre with!) and it
8744                  * cannot exceed the length of the data present.
8745                  */
8746                 if ((e->ipfe_size < 1 ) ||
8747                     (e->ipfe_size + i > maxidx)) {
8748                         return -1;
8749                 }
8750                 i += e->ipfe_size;
8751         }
8752         return 0;
8753 }
8754
8755
8756 /* ------------------------------------------------------------------------ */
8757 /* Function:    ipf_fr_matcharray                                           */
8758 /* Returns:     int      - 0 = match failed, else positive match            */
8759 /* Parameters:  fin(I)   - pointer to packet information                    */
8760 /*              array(I) - pointer to matching array                        */
8761 /*                                                                          */
8762 /* This function is used to apply a matching array against a packet and     */
8763 /* return an indication of whether or not the packet successfully matches   */
8764 /* all of the commands in it.                                               */
8765 /* ------------------------------------------------------------------------ */
8766 static int
8767 ipf_fr_matcharray(fin, array)
8768         fr_info_t *fin;
8769         int *array;
8770 {
8771         int i, n, *x, rv, p;
8772         ipfexp_t *e;
8773
8774         rv = 0;
8775         n = array[0];
8776         x = array + 1;
8777
8778         for (; n > 0; x += 3 + x[3], rv = 0) {
8779                 e = (ipfexp_t *)x;
8780                 if (e->ipfe_cmd == IPF_EXP_END)
8781                         break;
8782                 n -= e->ipfe_size;
8783
8784                 /*
8785                  * The upper 16 bits currently store the protocol value.
8786                  * This is currently used with TCP and UDP port compares and
8787                  * allows "tcp.port = 80" without requiring an explicit
8788                  " "ip.pr = tcp" first.
8789                  */
8790                 p = e->ipfe_cmd >> 16;
8791                 if ((p != 0) && (p != fin->fin_p))
8792                         break;
8793
8794                 switch (e->ipfe_cmd)
8795                 {
8796                 case IPF_EXP_IP_PR :
8797                         for (i = 0; !rv && i < e->ipfe_narg; i++) {
8798                                 rv |= (fin->fin_p == e->ipfe_arg0[i]);
8799                         }
8800                         break;
8801
8802                 case IPF_EXP_IP_SRCADDR :
8803                         if (fin->fin_v != 4)
8804                                 break;
8805                         for (i = 0; !rv && i < e->ipfe_narg; i++) {
8806                                 rv |= ((fin->fin_saddr &
8807                                         e->ipfe_arg0[i * 2 + 1]) ==
8808                                        e->ipfe_arg0[i * 2]);
8809                         }
8810                         break;
8811
8812                 case IPF_EXP_IP_DSTADDR :
8813                         if (fin->fin_v != 4)
8814                                 break;
8815                         for (i = 0; !rv && i < e->ipfe_narg; i++) {
8816                                 rv |= ((fin->fin_daddr &
8817                                         e->ipfe_arg0[i * 2 + 1]) ==
8818                                        e->ipfe_arg0[i * 2]);
8819                         }
8820                         break;
8821
8822                 case IPF_EXP_IP_ADDR :
8823                         if (fin->fin_v != 4)
8824                                 break;
8825                         for (i = 0; !rv && i < e->ipfe_narg; i++) {
8826                                 rv |= ((fin->fin_saddr &
8827                                         e->ipfe_arg0[i * 2 + 1]) ==
8828                                        e->ipfe_arg0[i * 2]) ||
8829                                       ((fin->fin_daddr &
8830                                         e->ipfe_arg0[i * 2 + 1]) ==
8831                                        e->ipfe_arg0[i * 2]);
8832                         }
8833                         break;
8834
8835 #ifdef USE_INET6
8836                 case IPF_EXP_IP6_SRCADDR :
8837                         if (fin->fin_v != 6)
8838                                 break;
8839                         for (i = 0; !rv && i < e->ipfe_narg; i++) {
8840                                 rv |= IP6_MASKEQ(&fin->fin_src6,
8841                                                  &e->ipfe_arg0[i * 8 + 4],
8842                                                  &e->ipfe_arg0[i * 8]);
8843                         }
8844                         break;
8845
8846                 case IPF_EXP_IP6_DSTADDR :
8847                         if (fin->fin_v != 6)
8848                                 break;
8849                         for (i = 0; !rv && i < e->ipfe_narg; i++) {
8850                                 rv |= IP6_MASKEQ(&fin->fin_dst6,
8851                                                  &e->ipfe_arg0[i * 8 + 4],
8852                                                  &e->ipfe_arg0[i * 8]);
8853                         }
8854                         break;
8855
8856                 case IPF_EXP_IP6_ADDR :
8857                         if (fin->fin_v != 6)
8858                                 break;
8859                         for (i = 0; !rv && i < e->ipfe_narg; i++) {
8860                                 rv |= IP6_MASKEQ(&fin->fin_src6,
8861                                                  &e->ipfe_arg0[i * 8 + 4],
8862                                                  &e->ipfe_arg0[i * 8]) ||
8863                                       IP6_MASKEQ(&fin->fin_dst6,
8864                                                  &e->ipfe_arg0[i * 8 + 4],
8865                                                  &e->ipfe_arg0[i * 8]);
8866                         }
8867                         break;
8868 #endif
8869
8870                 case IPF_EXP_UDP_PORT :
8871                 case IPF_EXP_TCP_PORT :
8872                         for (i = 0; !rv && i < e->ipfe_narg; i++) {
8873                                 rv |= (fin->fin_sport == e->ipfe_arg0[i]) ||
8874                                       (fin->fin_dport == e->ipfe_arg0[i]);
8875                         }
8876                         break;
8877
8878                 case IPF_EXP_UDP_SPORT :
8879                 case IPF_EXP_TCP_SPORT :
8880                         for (i = 0; !rv && i < e->ipfe_narg; i++) {
8881                                 rv |= (fin->fin_sport == e->ipfe_arg0[i]);
8882                         }
8883                         break;
8884
8885                 case IPF_EXP_UDP_DPORT :
8886                 case IPF_EXP_TCP_DPORT :
8887                         for (i = 0; !rv && i < e->ipfe_narg; i++) {
8888                                 rv |= (fin->fin_dport == e->ipfe_arg0[i]);
8889                         }
8890                         break;
8891
8892                 case IPF_EXP_TCP_FLAGS :
8893                         for (i = 0; !rv && i < e->ipfe_narg; i++) {
8894                                 rv |= ((fin->fin_tcpf &
8895                                         e->ipfe_arg0[i * 2 + 1]) ==
8896                                        e->ipfe_arg0[i * 2]);
8897                         }
8898                         break;
8899                 }
8900                 rv ^= e->ipfe_not;
8901
8902                 if (rv == 0)
8903                         break;
8904         }
8905
8906         return rv;
8907 }
8908
8909
8910 /* ------------------------------------------------------------------------ */
8911 /* Function:    ipf_queueflush                                              */
8912 /* Returns:     int - number of entries flushed (0 = none)                  */
8913 /* Parameters:  softc(I)    - pointer to soft context main structure        */
8914 /*              deletefn(I) - function to call to delete entry              */
8915 /*              ipfqs(I)    - top of the list of ipf internal queues        */
8916 /*              userqs(I)   - top of the list of user defined timeouts      */
8917 /*                                                                          */
8918 /* This fucntion gets called when the state/NAT hash tables fill up and we  */
8919 /* need to try a bit harder to free up some space.  The algorithm used here */
8920 /* split into two parts but both halves have the same goal: to reduce the   */
8921 /* number of connections considered to be "active" to the low watermark.    */
8922 /* There are two steps in doing this:                                       */
8923 /* 1) Remove any TCP connections that are already considered to be "closed" */
8924 /*    but have not yet been removed from the state table.  The two states   */
8925 /*    TCPS_TIME_WAIT and TCPS_CLOSED are considered to be the perfect       */
8926 /*    candidates for this style of removal.  If freeing up entries in       */
8927 /*    CLOSED or both CLOSED and TIME_WAIT brings us to the low watermark,   */
8928 /*    we do not go on to step 2.                                            */
8929 /*                                                                          */
8930 /* 2) Look for the oldest entries on each timeout queue and free them if    */
8931 /*    they are within the given window we are considering.  Where the       */
8932 /*    window starts and the steps taken to increase its size depend upon    */
8933 /*    how long ipf has been running (ipf_ticks.)  Anything modified in the  */
8934 /*    last 30 seconds is not touched.                                       */
8935 /*                                              touched                     */
8936 /*         die     ipf_ticks  30*1.5    1800*1.5   |  43200*1.5             */
8937 /*           |          |        |           |     |     |                  */
8938 /* future <--+----------+--------+-----------+-----+-----+-----------> past */
8939 /*                     now        \_int=30s_/ \_int=1hr_/ \_int=12hr        */
8940 /*                                                                          */
8941 /* Points to note:                                                          */
8942 /* - tqe_die is the time, in the future, when entries die.                  */
8943 /* - tqe_die - ipf_ticks is how long left the connection has to live in ipf */
8944 /*   ticks.                                                                 */
8945 /* - tqe_touched is when the entry was last used by NAT/state               */
8946 /* - the closer tqe_touched is to ipf_ticks, the further tqe_die will be    */
8947 /*   ipf_ticks any given timeout queue and vice versa.                      */
8948 /* - both tqe_die and tqe_touched increase over time                        */
8949 /* - timeout queues are sorted with the highest value of tqe_die at the     */
8950 /*   bottom and therefore the smallest values of each are at the top        */
8951 /* - the pointer passed in as ipfqs should point to an array of timeout     */
8952 /*   queues representing each of the TCP states                             */
8953 /*                                                                          */
8954 /* We start by setting up a maximum range to scan for things to move of     */
8955 /* iend (newest) to istart (oldest) in chunks of "interval".  If nothing is */
8956 /* found in that range, "interval" is adjusted (so long as it isn't 30) and */
8957 /* we start again with a new value for "iend" and "istart".  This is        */
8958 /* continued until we either finish the scan of 30 second intervals or the  */
8959 /* low water mark is reached.                                               */
8960 /* ------------------------------------------------------------------------ */
8961 int
8962 ipf_queueflush(softc, deletefn, ipfqs, userqs, activep, size, low)
8963         ipf_main_softc_t *softc;
8964         ipftq_delete_fn_t deletefn;
8965         ipftq_t *ipfqs, *userqs;
8966         u_int *activep;
8967         int size, low;
8968 {
8969         u_long interval, istart, iend;
8970         ipftq_t *ifq, *ifqnext;
8971         ipftqent_t *tqe, *tqn;
8972         int removed = 0;
8973
8974         for (tqn = ipfqs[IPF_TCPS_CLOSED].ifq_head; ((tqe = tqn) != NULL); ) {
8975                 tqn = tqe->tqe_next;
8976                 if ((*deletefn)(softc, tqe->tqe_parent) == 0)
8977                         removed++;
8978         }
8979         if ((*activep * 100 / size) > low) {
8980                 for (tqn = ipfqs[IPF_TCPS_TIME_WAIT].ifq_head;
8981                      ((tqe = tqn) != NULL); ) {
8982                         tqn = tqe->tqe_next;
8983                         if ((*deletefn)(softc, tqe->tqe_parent) == 0)
8984                                 removed++;
8985                 }
8986         }
8987
8988         if ((*activep * 100 / size) <= low) {
8989                 return removed;
8990         }
8991
8992         /*
8993          * NOTE: Use of "* 15 / 10" is required here because if "* 1.5" is
8994          *       used then the operations are upgraded to floating point
8995          *       and kernels don't like floating point...
8996          */
8997         if (softc->ipf_ticks > IPF_TTLVAL(43200 * 15 / 10)) {
8998                 istart = IPF_TTLVAL(86400 * 4);
8999                 interval = IPF_TTLVAL(43200);
9000         } else if (softc->ipf_ticks > IPF_TTLVAL(1800 * 15 / 10)) {
9001                 istart = IPF_TTLVAL(43200);
9002                 interval = IPF_TTLVAL(1800);
9003         } else if (softc->ipf_ticks > IPF_TTLVAL(30 * 15 / 10)) {
9004                 istart = IPF_TTLVAL(1800);
9005                 interval = IPF_TTLVAL(30);
9006         } else {
9007                 return 0;
9008         }
9009         if (istart > softc->ipf_ticks) {
9010                 if (softc->ipf_ticks - interval < interval)
9011                         istart = interval;
9012                 else
9013                         istart = (softc->ipf_ticks / interval) * interval;
9014         }
9015
9016         iend = softc->ipf_ticks - interval;
9017
9018         while ((*activep * 100 / size) > low) {
9019                 u_long try;
9020
9021                 try = softc->ipf_ticks - istart;
9022
9023                 for (ifq = ipfqs; ifq != NULL; ifq = ifq->ifq_next) {
9024                         for (tqn = ifq->ifq_head; ((tqe = tqn) != NULL); ) {
9025                                 if (try < tqe->tqe_touched)
9026                                         break;
9027                                 tqn = tqe->tqe_next;
9028                                 if ((*deletefn)(softc, tqe->tqe_parent) == 0)
9029                                         removed++;
9030                         }
9031                 }
9032
9033                 for (ifq = userqs; ifq != NULL; ifq = ifqnext) {
9034                         ifqnext = ifq->ifq_next;
9035
9036                         for (tqn = ifq->ifq_head; ((tqe = tqn) != NULL); ) {
9037                                 if (try < tqe->tqe_touched)
9038                                         break;
9039                                 tqn = tqe->tqe_next;
9040                                 if ((*deletefn)(softc, tqe->tqe_parent) == 0)
9041                                         removed++;
9042                         }
9043                 }
9044
9045                 if (try >= iend) {
9046                         if (interval == IPF_TTLVAL(43200)) {
9047                                 interval = IPF_TTLVAL(1800);
9048                         } else if (interval == IPF_TTLVAL(1800)) {
9049                                 interval = IPF_TTLVAL(30);
9050                         } else {
9051                                 break;
9052                         }
9053                         if (interval >= softc->ipf_ticks)
9054                                 break;
9055
9056                         iend = softc->ipf_ticks - interval;
9057                 }
9058                 istart -= interval;
9059         }
9060
9061         return removed;
9062 }
9063
9064
9065 /* ------------------------------------------------------------------------ */
9066 /* Function:    ipf_deliverlocal                                            */
9067 /* Returns:     int - 1 = local address, 0 = non-local address              */
9068 /* Parameters:  softc(I)     - pointer to soft context main structure       */
9069 /*              ipversion(I) - IP protocol version (4 or 6)                 */
9070 /*              ifp(I)       - network interface pointer                    */
9071 /*              ipaddr(I)    - IPv4/6 destination address                   */
9072 /*                                                                          */
9073 /* This fucntion is used to determine in the address "ipaddr" belongs to    */
9074 /* the network interface represented by ifp.                                */
9075 /* ------------------------------------------------------------------------ */
9076 int
9077 ipf_deliverlocal(softc, ipversion, ifp, ipaddr)
9078         ipf_main_softc_t *softc;
9079         int ipversion;
9080         void *ifp;
9081         i6addr_t *ipaddr;
9082 {
9083         i6addr_t addr;
9084         int islocal = 0;
9085
9086         if (ipversion == 4) {
9087                 if (ipf_ifpaddr(softc, 4, FRI_NORMAL, ifp, &addr, NULL) == 0) {
9088                         if (addr.in4.s_addr == ipaddr->in4.s_addr)
9089                                 islocal = 1;
9090                 }
9091
9092 #ifdef USE_INET6
9093         } else if (ipversion == 6) {
9094                 if (ipf_ifpaddr(softc, 6, FRI_NORMAL, ifp, &addr, NULL) == 0) {
9095                         if (IP6_EQ(&addr, ipaddr))
9096                                 islocal = 1;
9097                 }
9098 #endif
9099         }
9100
9101         return islocal;
9102 }
9103
9104
9105 /* ------------------------------------------------------------------------ */
9106 /* Function:    ipf_settimeout                                              */
9107 /* Returns:     int - 0 = success, -1 = failure                             */
9108 /* Parameters:  softc(I) - pointer to soft context main structure           */
9109 /*              t(I)     - pointer to tuneable array entry                  */
9110 /*              p(I)     - pointer to values passed in to apply             */
9111 /*                                                                          */
9112 /* This function is called to set the timeout values for each distinct      */
9113 /* queue timeout that is available.  When called, it calls into both the    */
9114 /* state and NAT code, telling them to update their timeout queues.         */
9115 /* ------------------------------------------------------------------------ */
9116 static int
9117 ipf_settimeout(softc, t, p)
9118         struct ipf_main_softc_s *softc;
9119         ipftuneable_t *t;
9120         ipftuneval_t *p;
9121 {
9122
9123         /*
9124          * ipf_interror should be set by the functions called here, not
9125          * by this function - it's just a middle man.
9126          */
9127         if (ipf_state_settimeout(softc, t, p) == -1)
9128                 return -1;
9129         if (ipf_nat_settimeout(softc, t, p) == -1)
9130                 return -1;
9131         return 0;
9132 }
9133
9134
9135 /* ------------------------------------------------------------------------ */
9136 /* Function:    ipf_apply_timeout                                           */
9137 /* Returns:     int - 0 = success, -1 = failure                             */
9138 /* Parameters:  head(I)    - pointer to tuneable array entry                */
9139 /*              seconds(I) - pointer to values passed in to apply           */
9140 /*                                                                          */
9141 /* This function applies a timeout of "seconds" to the timeout queue that   */
9142 /* is pointed to by "head".  All entries on this list have an expiration    */
9143 /* set to be the current tick value of ipf plus the ttl.  Given that this   */
9144 /* function should only be called when the delta is non-zero, the task is   */
9145 /* to walk the entire list and apply the change.  The sort order will not   */
9146 /* change.  The only catch is that this is O(n) across the list, so if the  */
9147 /* queue has lots of entries (10s of thousands or 100s of thousands), it    */
9148 /* could take a relatively long time to work through them all.              */
9149 /* ------------------------------------------------------------------------ */
9150 void
9151 ipf_apply_timeout(head, seconds)
9152         ipftq_t *head;
9153         u_int seconds;
9154 {
9155         u_int oldtimeout, newtimeout;
9156         ipftqent_t *tqe;
9157         int delta;
9158
9159         MUTEX_ENTER(&head->ifq_lock);
9160         oldtimeout = head->ifq_ttl;
9161         newtimeout = IPF_TTLVAL(seconds);
9162         delta = oldtimeout - newtimeout;
9163
9164         head->ifq_ttl = newtimeout;
9165
9166         for (tqe = head->ifq_head; tqe != NULL; tqe = tqe->tqe_next) {
9167                 tqe->tqe_die += delta;
9168         }
9169         MUTEX_EXIT(&head->ifq_lock);
9170 }
9171
9172
9173 /* ------------------------------------------------------------------------ */
9174 /* Function:   ipf_settimeout_tcp                                           */
9175 /* Returns:    int - 0 = successfully applied, -1 = failed                  */
9176 /* Parameters: t(I)   - pointer to tuneable to change                       */
9177 /*             p(I)   - pointer to new timeout information                  */
9178 /*             tab(I) - pointer to table of TCP queues                      */
9179 /*                                                                          */
9180 /* This function applies the new timeout (p) to the TCP tunable (t) and     */
9181 /* updates all of the entries on the relevant timeout queue by calling      */
9182 /* ipf_apply_timeout().                                                     */
9183 /* ------------------------------------------------------------------------ */
9184 int
9185 ipf_settimeout_tcp(t, p, tab)
9186         ipftuneable_t *t;
9187         ipftuneval_t *p;
9188         ipftq_t *tab;
9189 {
9190         if (!strcmp(t->ipft_name, "tcp_idle_timeout") ||
9191             !strcmp(t->ipft_name, "tcp_established")) {
9192                 ipf_apply_timeout(&tab[IPF_TCPS_ESTABLISHED], p->ipftu_int);
9193         } else if (!strcmp(t->ipft_name, "tcp_close_wait")) {
9194                 ipf_apply_timeout(&tab[IPF_TCPS_CLOSE_WAIT], p->ipftu_int);
9195         } else if (!strcmp(t->ipft_name, "tcp_last_ack")) {
9196                 ipf_apply_timeout(&tab[IPF_TCPS_LAST_ACK], p->ipftu_int);
9197         } else if (!strcmp(t->ipft_name, "tcp_timeout")) {
9198                 ipf_apply_timeout(&tab[IPF_TCPS_LISTEN], p->ipftu_int);
9199                 ipf_apply_timeout(&tab[IPF_TCPS_HALF_ESTAB], p->ipftu_int);
9200                 ipf_apply_timeout(&tab[IPF_TCPS_CLOSING], p->ipftu_int);
9201         } else if (!strcmp(t->ipft_name, "tcp_listen")) {
9202                 ipf_apply_timeout(&tab[IPF_TCPS_LISTEN], p->ipftu_int);
9203         } else if (!strcmp(t->ipft_name, "tcp_half_established")) {
9204                 ipf_apply_timeout(&tab[IPF_TCPS_HALF_ESTAB], p->ipftu_int);
9205         } else if (!strcmp(t->ipft_name, "tcp_closing")) {
9206                 ipf_apply_timeout(&tab[IPF_TCPS_CLOSING], p->ipftu_int);
9207         } else if (!strcmp(t->ipft_name, "tcp_syn_received")) {
9208                 ipf_apply_timeout(&tab[IPF_TCPS_SYN_RECEIVED], p->ipftu_int);
9209         } else if (!strcmp(t->ipft_name, "tcp_syn_sent")) {
9210                 ipf_apply_timeout(&tab[IPF_TCPS_SYN_SENT], p->ipftu_int);
9211         } else if (!strcmp(t->ipft_name, "tcp_closed")) {
9212                 ipf_apply_timeout(&tab[IPF_TCPS_CLOSED], p->ipftu_int);
9213         } else if (!strcmp(t->ipft_name, "tcp_half_closed")) {
9214                 ipf_apply_timeout(&tab[IPF_TCPS_CLOSED], p->ipftu_int);
9215         } else if (!strcmp(t->ipft_name, "tcp_time_wait")) {
9216                 ipf_apply_timeout(&tab[IPF_TCPS_TIME_WAIT], p->ipftu_int);
9217         } else {
9218                 /*
9219                  * ipf_interror isn't set here because it should be set
9220                  * by whatever called this function.
9221                  */
9222                 return -1;
9223         }
9224         return 0;
9225 }
9226
9227
9228 /* ------------------------------------------------------------------------ */
9229 /* Function:   ipf_main_soft_create                                         */
9230 /* Returns:    NULL = failure, else success                                 */
9231 /* Parameters: arg(I) - pointer to soft context structure if already allocd */
9232 /*                                                                          */
9233 /* Create the foundation soft context structure. In circumstances where it  */
9234 /* is not required to dynamically allocate the context, a pointer can be    */
9235 /* passed in (rather than NULL) to a structure to be initialised.           */
9236 /* The main thing of interest is that a number of locks are initialised     */
9237 /* here instead of in the where might be expected - in the relevant create  */
9238 /* function elsewhere.  This is done because the current locking design has */
9239 /* some areas where these locks are used outside of their module.           */
9240 /* Possibly the most important exercise that is done here is setting of all */
9241 /* the timeout values, allowing them to be changed before init().           */
9242 /* ------------------------------------------------------------------------ */
9243 void *
9244 ipf_main_soft_create(arg)
9245         void *arg;
9246 {
9247         ipf_main_softc_t *softc;
9248
9249         if (arg == NULL) {
9250                 KMALLOC(softc, ipf_main_softc_t *);
9251                 if (softc == NULL)
9252                         return NULL;
9253         } else {
9254                 softc = arg;
9255         }
9256
9257         bzero((char *)softc, sizeof(*softc));
9258
9259         /*
9260          * This serves as a flag as to whether or not the softc should be
9261          * free'd when _destroy is called.
9262          */
9263         softc->ipf_dynamic_softc = (arg == NULL) ? 1 : 0;
9264
9265         softc->ipf_tuners = ipf_tune_array_copy(softc,
9266                                                 sizeof(ipf_main_tuneables),
9267                                                 ipf_main_tuneables);
9268         if (softc->ipf_tuners == NULL) {
9269                 ipf_main_soft_destroy(softc);
9270                 return NULL;
9271         }
9272
9273         MUTEX_INIT(&softc->ipf_rw, "ipf rw mutex");
9274         MUTEX_INIT(&softc->ipf_timeoutlock, "ipf timeout lock");
9275         RWLOCK_INIT(&softc->ipf_global, "ipf filter load/unload mutex");
9276         RWLOCK_INIT(&softc->ipf_mutex, "ipf filter rwlock");
9277         RWLOCK_INIT(&softc->ipf_tokens, "ipf token rwlock");
9278         RWLOCK_INIT(&softc->ipf_state, "ipf state rwlock");
9279         RWLOCK_INIT(&softc->ipf_nat, "ipf IP NAT rwlock");
9280         RWLOCK_INIT(&softc->ipf_poolrw, "ipf pool rwlock");
9281         RWLOCK_INIT(&softc->ipf_frag, "ipf frag rwlock");
9282
9283         softc->ipf_token_head = NULL;
9284         softc->ipf_token_tail = &softc->ipf_token_head;
9285
9286         softc->ipf_tcpidletimeout = FIVE_DAYS;
9287         softc->ipf_tcpclosewait = IPF_TTLVAL(2 * TCP_MSL);
9288         softc->ipf_tcplastack = IPF_TTLVAL(30);
9289         softc->ipf_tcptimewait = IPF_TTLVAL(2 * TCP_MSL);
9290         softc->ipf_tcptimeout = IPF_TTLVAL(2 * TCP_MSL);
9291         softc->ipf_tcpsynsent = IPF_TTLVAL(2 * TCP_MSL);
9292         softc->ipf_tcpsynrecv = IPF_TTLVAL(2 * TCP_MSL);
9293         softc->ipf_tcpclosed = IPF_TTLVAL(30);
9294         softc->ipf_tcphalfclosed = IPF_TTLVAL(2 * 3600);
9295         softc->ipf_udptimeout = IPF_TTLVAL(120);
9296         softc->ipf_udpacktimeout = IPF_TTLVAL(12);
9297         softc->ipf_icmptimeout = IPF_TTLVAL(60);
9298         softc->ipf_icmpacktimeout = IPF_TTLVAL(6);
9299         softc->ipf_iptimeout = IPF_TTLVAL(60);
9300
9301 #if defined(IPFILTER_DEFAULT_BLOCK)
9302         softc->ipf_pass = FR_BLOCK|FR_NOMATCH;
9303 #else
9304         softc->ipf_pass = (IPF_DEFAULT_PASS)|FR_NOMATCH;
9305 #endif
9306         softc->ipf_minttl = 4;
9307         softc->ipf_icmpminfragmtu = 68;
9308         softc->ipf_flags = IPF_LOGGING;
9309
9310         return softc;
9311 }
9312
9313 /* ------------------------------------------------------------------------ */
9314 /* Function:   ipf_main_soft_init                                           */
9315 /* Returns:    0 = success, -1 = failure                                    */
9316 /* Parameters: softc(I) - pointer to soft context main structure            */
9317 /*                                                                          */
9318 /* A null-op function that exists as a placeholder so that the flow in      */
9319 /* other functions is obvious.                                              */
9320 /* ------------------------------------------------------------------------ */
9321 /*ARGSUSED*/
9322 int
9323 ipf_main_soft_init(softc)
9324         ipf_main_softc_t *softc;
9325 {
9326         return 0;
9327 }
9328
9329
9330 /* ------------------------------------------------------------------------ */
9331 /* Function:   ipf_main_soft_destroy                                        */
9332 /* Returns:    void                                                         */
9333 /* Parameters: softc(I) - pointer to soft context main structure            */
9334 /*                                                                          */
9335 /* Undo everything that we did in ipf_main_soft_create.                     */
9336 /*                                                                          */
9337 /* The most important check that needs to be made here is whether or not    */
9338 /* the structure was allocated by ipf_main_soft_create() by checking what   */
9339 /* value is stored in ipf_dynamic_main.                                     */
9340 /* ------------------------------------------------------------------------ */
9341 /*ARGSUSED*/
9342 void
9343 ipf_main_soft_destroy(softc)
9344         ipf_main_softc_t *softc;
9345 {
9346
9347         RW_DESTROY(&softc->ipf_frag);
9348         RW_DESTROY(&softc->ipf_poolrw);
9349         RW_DESTROY(&softc->ipf_nat);
9350         RW_DESTROY(&softc->ipf_state);
9351         RW_DESTROY(&softc->ipf_tokens);
9352         RW_DESTROY(&softc->ipf_mutex);
9353         RW_DESTROY(&softc->ipf_global);
9354         MUTEX_DESTROY(&softc->ipf_timeoutlock);
9355         MUTEX_DESTROY(&softc->ipf_rw);
9356
9357         if (softc->ipf_tuners != NULL) {
9358                 KFREES(softc->ipf_tuners, sizeof(ipf_main_tuneables));
9359         }
9360         if (softc->ipf_dynamic_softc == 1) {
9361                 KFREE(softc);
9362         }
9363 }
9364
9365
9366 /* ------------------------------------------------------------------------ */
9367 /* Function:   ipf_main_soft_fini                                           */
9368 /* Returns:    0 = success, -1 = failure                                    */
9369 /* Parameters: softc(I) - pointer to soft context main structure            */
9370 /*                                                                          */
9371 /* Clean out the rules which have been added since _init was last called,   */
9372 /* the only dynamic part of the mainline.                                   */
9373 /* ------------------------------------------------------------------------ */
9374 int
9375 ipf_main_soft_fini(softc)
9376         ipf_main_softc_t *softc;
9377 {
9378         (void) ipf_flush(softc, IPL_LOGIPF, FR_INQUE|FR_OUTQUE|FR_INACTIVE);
9379         (void) ipf_flush(softc, IPL_LOGIPF, FR_INQUE|FR_OUTQUE);
9380         (void) ipf_flush(softc, IPL_LOGCOUNT, FR_INQUE|FR_OUTQUE|FR_INACTIVE);
9381         (void) ipf_flush(softc, IPL_LOGCOUNT, FR_INQUE|FR_OUTQUE);
9382
9383         return 0;
9384 }
9385
9386
9387 /* ------------------------------------------------------------------------ */
9388 /* Function:   ipf_main_load                                                */
9389 /* Returns:    0 = success, -1 = failure                                    */
9390 /* Parameters: none                                                         */
9391 /*                                                                          */
9392 /* Handle global initialisation that needs to be done for the base part of  */
9393 /* IPFilter. At present this just amounts to initialising some ICMP lookup  */
9394 /* arrays that get used by the state/NAT code.                              */
9395 /* ------------------------------------------------------------------------ */
9396 int
9397 ipf_main_load()
9398 {
9399         int i;
9400
9401         /* fill icmp reply type table */
9402         for (i = 0; i <= ICMP_MAXTYPE; i++)
9403                 icmpreplytype4[i] = -1;
9404         icmpreplytype4[ICMP_ECHO] = ICMP_ECHOREPLY;
9405         icmpreplytype4[ICMP_TSTAMP] = ICMP_TSTAMPREPLY;
9406         icmpreplytype4[ICMP_IREQ] = ICMP_IREQREPLY;
9407         icmpreplytype4[ICMP_MASKREQ] = ICMP_MASKREPLY;
9408
9409 #ifdef  USE_INET6
9410         /* fill icmp reply type table */
9411         for (i = 0; i <= ICMP6_MAXTYPE; i++)
9412                 icmpreplytype6[i] = -1;
9413         icmpreplytype6[ICMP6_ECHO_REQUEST] = ICMP6_ECHO_REPLY;
9414         icmpreplytype6[ICMP6_MEMBERSHIP_QUERY] = ICMP6_MEMBERSHIP_REPORT;
9415         icmpreplytype6[ICMP6_NI_QUERY] = ICMP6_NI_REPLY;
9416         icmpreplytype6[ND_ROUTER_SOLICIT] = ND_ROUTER_ADVERT;
9417         icmpreplytype6[ND_NEIGHBOR_SOLICIT] = ND_NEIGHBOR_ADVERT;
9418 #endif
9419
9420         return 0;
9421 }
9422
9423
9424 /* ------------------------------------------------------------------------ */
9425 /* Function:   ipf_main_unload                                              */
9426 /* Returns:    0 = success, -1 = failure                                    */
9427 /* Parameters: none                                                         */
9428 /*                                                                          */
9429 /* A null-op function that exists as a placeholder so that the flow in      */
9430 /* other functions is obvious.                                              */
9431 /* ------------------------------------------------------------------------ */
9432 int
9433 ipf_main_unload()
9434 {
9435         return 0;
9436 }
9437
9438
9439 /* ------------------------------------------------------------------------ */
9440 /* Function:   ipf_load_all                                                 */
9441 /* Returns:    0 = success, -1 = failure                                    */
9442 /* Parameters: none                                                         */
9443 /*                                                                          */
9444 /* Work through all of the subsystems inside IPFilter and call the load     */
9445 /* function for each in an order that won't lead to a crash :)              */
9446 /* ------------------------------------------------------------------------ */
9447 int
9448 ipf_load_all()
9449 {
9450         if (ipf_main_load() == -1)
9451                 return -1;
9452
9453         if (ipf_state_main_load() == -1)
9454                 return -1;
9455
9456         if (ipf_nat_main_load() == -1)
9457                 return -1;
9458
9459         if (ipf_frag_main_load() == -1)
9460                 return -1;
9461
9462         if (ipf_auth_main_load() == -1)
9463                 return -1;
9464
9465         if (ipf_proxy_main_load() == -1)
9466                 return -1;
9467
9468         return 0;
9469 }
9470
9471
9472 /* ------------------------------------------------------------------------ */
9473 /* Function:   ipf_unload_all                                               */
9474 /* Returns:    0 = success, -1 = failure                                    */
9475 /* Parameters: none                                                         */
9476 /*                                                                          */
9477 /* Work through all of the subsystems inside IPFilter and call the unload   */
9478 /* function for each in an order that won't lead to a crash :)              */
9479 /* ------------------------------------------------------------------------ */
9480 int
9481 ipf_unload_all()
9482 {
9483         if (ipf_proxy_main_unload() == -1)
9484                 return -1;
9485
9486         if (ipf_auth_main_unload() == -1)
9487                 return -1;
9488
9489         if (ipf_frag_main_unload() == -1)
9490                 return -1;
9491
9492         if (ipf_nat_main_unload() == -1)
9493                 return -1;
9494
9495         if (ipf_state_main_unload() == -1)
9496                 return -1;
9497
9498         if (ipf_main_unload() == -1)
9499                 return -1;
9500
9501         return 0;
9502 }
9503
9504
9505 /* ------------------------------------------------------------------------ */
9506 /* Function:   ipf_create_all                                               */
9507 /* Returns:    NULL = failure, else success                                 */
9508 /* Parameters: arg(I) - pointer to soft context main structure              */
9509 /*                                                                          */
9510 /* Work through all of the subsystems inside IPFilter and call the create   */
9511 /* function for each in an order that won't lead to a crash :)              */
9512 /* ------------------------------------------------------------------------ */
9513 ipf_main_softc_t *
9514 ipf_create_all(arg)
9515         void *arg;
9516 {
9517         ipf_main_softc_t *softc;
9518
9519         softc = ipf_main_soft_create(arg);
9520         if (softc == NULL)
9521                 return NULL;
9522
9523 #ifdef IPFILTER_LOG
9524         softc->ipf_log_soft = ipf_log_soft_create(softc);
9525         if (softc->ipf_log_soft == NULL) {
9526                 ipf_destroy_all(softc);
9527                 return NULL;
9528         }
9529 #endif
9530
9531         softc->ipf_lookup_soft = ipf_lookup_soft_create(softc);
9532         if (softc->ipf_lookup_soft == NULL) {
9533                 ipf_destroy_all(softc);
9534                 return NULL;
9535         }
9536
9537         softc->ipf_sync_soft = ipf_sync_soft_create(softc);
9538         if (softc->ipf_sync_soft == NULL) {
9539                 ipf_destroy_all(softc);
9540                 return NULL;
9541         }
9542
9543         softc->ipf_state_soft = ipf_state_soft_create(softc);
9544         if (softc->ipf_state_soft == NULL) {
9545                 ipf_destroy_all(softc);
9546                 return NULL;
9547         }
9548
9549         softc->ipf_nat_soft = ipf_nat_soft_create(softc);
9550         if (softc->ipf_nat_soft == NULL) {
9551                 ipf_destroy_all(softc);
9552                 return NULL;
9553         }
9554
9555         softc->ipf_frag_soft = ipf_frag_soft_create(softc);
9556         if (softc->ipf_frag_soft == NULL) {
9557                 ipf_destroy_all(softc);
9558                 return NULL;
9559         }
9560
9561         softc->ipf_auth_soft = ipf_auth_soft_create(softc);
9562         if (softc->ipf_auth_soft == NULL) {
9563                 ipf_destroy_all(softc);
9564                 return NULL;
9565         }
9566
9567         softc->ipf_proxy_soft = ipf_proxy_soft_create(softc);
9568         if (softc->ipf_proxy_soft == NULL) {
9569                 ipf_destroy_all(softc);
9570                 return NULL;
9571         }
9572
9573         return softc;
9574 }
9575
9576
9577 /* ------------------------------------------------------------------------ */
9578 /* Function:   ipf_destroy_all                                              */
9579 /* Returns:    void                                                         */
9580 /* Parameters: softc(I) - pointer to soft context main structure            */
9581 /*                                                                          */
9582 /* Work through all of the subsystems inside IPFilter and call the destroy  */
9583 /* function for each in an order that won't lead to a crash :)              */
9584 /*                                                                          */
9585 /* Every one of these functions is expected to succeed, so there is no      */
9586 /* checking of return values.                                               */
9587 /* ------------------------------------------------------------------------ */
9588 void
9589 ipf_destroy_all(softc)
9590         ipf_main_softc_t *softc;
9591 {
9592
9593         if (softc->ipf_state_soft != NULL) {
9594                 ipf_state_soft_destroy(softc, softc->ipf_state_soft);
9595                 softc->ipf_state_soft = NULL;
9596         }
9597
9598         if (softc->ipf_nat_soft != NULL) {
9599                 ipf_nat_soft_destroy(softc, softc->ipf_nat_soft);
9600                 softc->ipf_nat_soft = NULL;
9601         }
9602
9603         if (softc->ipf_frag_soft != NULL) {
9604                 ipf_frag_soft_destroy(softc, softc->ipf_frag_soft);
9605                 softc->ipf_frag_soft = NULL;
9606         }
9607
9608         if (softc->ipf_auth_soft != NULL) {
9609                 ipf_auth_soft_destroy(softc, softc->ipf_auth_soft);
9610                 softc->ipf_auth_soft = NULL;
9611         }
9612
9613         if (softc->ipf_proxy_soft != NULL) {
9614                 ipf_proxy_soft_destroy(softc, softc->ipf_proxy_soft);
9615                 softc->ipf_proxy_soft = NULL;
9616         }
9617
9618         if (softc->ipf_sync_soft != NULL) {
9619                 ipf_sync_soft_destroy(softc, softc->ipf_sync_soft);
9620                 softc->ipf_sync_soft = NULL;
9621         }
9622
9623         if (softc->ipf_lookup_soft != NULL) {
9624                 ipf_lookup_soft_destroy(softc, softc->ipf_lookup_soft);
9625                 softc->ipf_lookup_soft = NULL;
9626         }
9627
9628 #ifdef IPFILTER_LOG
9629         if (softc->ipf_log_soft != NULL) {
9630                 ipf_log_soft_destroy(softc, softc->ipf_log_soft);
9631                 softc->ipf_log_soft = NULL;
9632         }
9633 #endif
9634
9635         ipf_main_soft_destroy(softc);
9636 }
9637
9638
9639 /* ------------------------------------------------------------------------ */
9640 /* Function:   ipf_init_all                                                 */
9641 /* Returns:    0 = success, -1 = failure                                    */
9642 /* Parameters: softc(I) - pointer to soft context main structure            */
9643 /*                                                                          */
9644 /* Work through all of the subsystems inside IPFilter and call the init     */
9645 /* function for each in an order that won't lead to a crash :)              */
9646 /* ------------------------------------------------------------------------ */
9647 int
9648 ipf_init_all(softc)
9649         ipf_main_softc_t *softc;
9650 {
9651
9652         if (ipf_main_soft_init(softc) == -1)
9653                 return -1;
9654
9655 #ifdef IPFILTER_LOG
9656         if (ipf_log_soft_init(softc, softc->ipf_log_soft) == -1)
9657                 return -1;
9658 #endif
9659
9660         if (ipf_lookup_soft_init(softc, softc->ipf_lookup_soft) == -1)
9661                 return -1;
9662
9663         if (ipf_sync_soft_init(softc, softc->ipf_sync_soft) == -1)
9664                 return -1;
9665
9666         if (ipf_state_soft_init(softc, softc->ipf_state_soft) == -1)
9667                 return -1;
9668
9669         if (ipf_nat_soft_init(softc, softc->ipf_nat_soft) == -1)
9670                 return -1;
9671
9672         if (ipf_frag_soft_init(softc, softc->ipf_frag_soft) == -1)
9673                 return -1;
9674
9675         if (ipf_auth_soft_init(softc, softc->ipf_auth_soft) == -1)
9676                 return -1;
9677
9678         if (ipf_proxy_soft_init(softc, softc->ipf_proxy_soft) == -1)
9679                 return -1;
9680
9681         return 0;
9682 }
9683
9684
9685 /* ------------------------------------------------------------------------ */
9686 /* Function:   ipf_fini_all                                                 */
9687 /* Returns:    0 = success, -1 = failure                                    */
9688 /* Parameters: softc(I) - pointer to soft context main structure            */
9689 /*                                                                          */
9690 /* Work through all of the subsystems inside IPFilter and call the fini     */
9691 /* function for each in an order that won't lead to a crash :)              */
9692 /* ------------------------------------------------------------------------ */
9693 int
9694 ipf_fini_all(softc)
9695         ipf_main_softc_t *softc;
9696 {
9697
9698         ipf_token_flush(softc);
9699
9700         if (ipf_proxy_soft_fini(softc, softc->ipf_proxy_soft) == -1)
9701                 return -1;
9702
9703         if (ipf_auth_soft_fini(softc, softc->ipf_auth_soft) == -1)
9704                 return -1;
9705
9706         if (ipf_frag_soft_fini(softc, softc->ipf_frag_soft) == -1)
9707                 return -1;
9708
9709         if (ipf_nat_soft_fini(softc, softc->ipf_nat_soft) == -1)
9710                 return -1;
9711
9712         if (ipf_state_soft_fini(softc, softc->ipf_state_soft) == -1)
9713                 return -1;
9714
9715         if (ipf_sync_soft_fini(softc, softc->ipf_sync_soft) == -1)
9716                 return -1;
9717
9718         if (ipf_lookup_soft_fini(softc, softc->ipf_lookup_soft) == -1)
9719                 return -1;
9720
9721 #ifdef IPFILTER_LOG
9722         if (ipf_log_soft_fini(softc, softc->ipf_log_soft) == -1)
9723                 return -1;
9724 #endif
9725
9726         if (ipf_main_soft_fini(softc) == -1)
9727                 return -1;
9728
9729         return 0;
9730 }
9731
9732
9733 /* ------------------------------------------------------------------------ */
9734 /* Function:    ipf_rule_expire                                             */
9735 /* Returns:     Nil                                                         */
9736 /* Parameters:  softc(I) - pointer to soft context main structure           */
9737 /*                                                                          */
9738 /* At present this function exists just to support temporary addition of    */
9739 /* firewall rules. Both inactive and active lists are scanned for items to  */
9740 /* purge, as by rights, the expiration is computed as soon as the rule is   */
9741 /* loaded in.                                                               */
9742 /* ------------------------------------------------------------------------ */
9743 void
9744 ipf_rule_expire(softc)
9745         ipf_main_softc_t *softc;
9746 {
9747         frentry_t *fr;
9748
9749         if ((softc->ipf_rule_explist[0] == NULL) &&
9750             (softc->ipf_rule_explist[1] == NULL))
9751                 return;
9752
9753         WRITE_ENTER(&softc->ipf_mutex);
9754
9755         while ((fr = softc->ipf_rule_explist[0]) != NULL) {
9756                 /*
9757                  * Because the list is kept sorted on insertion, the fist
9758                  * one that dies in the future means no more work to do.
9759                  */
9760                 if (fr->fr_die > softc->ipf_ticks)
9761                         break;
9762                 ipf_rule_delete(softc, fr, IPL_LOGIPF, 0);
9763         }
9764
9765         while ((fr = softc->ipf_rule_explist[1]) != NULL) {
9766                 /*
9767                  * Because the list is kept sorted on insertion, the fist
9768                  * one that dies in the future means no more work to do.
9769                  */
9770                 if (fr->fr_die > softc->ipf_ticks)
9771                         break;
9772                 ipf_rule_delete(softc, fr, IPL_LOGIPF, 1);
9773         }
9774
9775         RWLOCK_EXIT(&softc->ipf_mutex);
9776 }
9777
9778
9779 static int ipf_ht_node_cmp __P((struct host_node_s *, struct host_node_s *));
9780 static void ipf_ht_node_make_key __P((host_track_t *, host_node_t *, int,
9781                                       i6addr_t *));
9782
9783 host_node_t RBI_ZERO(ipf_rb);
9784 RBI_CODE(ipf_rb, host_node_t, hn_entry, ipf_ht_node_cmp)
9785
9786
9787 /* ------------------------------------------------------------------------ */
9788 /* Function:    ipf_ht_node_cmp                                             */
9789 /* Returns:     int   - 0 == nodes are the same, ..                         */
9790 /* Parameters:  k1(I) - pointer to first key to compare                     */
9791 /*              k2(I) - pointer to second key to compare                    */
9792 /*                                                                          */
9793 /* The "key" for the node is a combination of two fields: the address       */
9794 /* family and the address itself.                                           */
9795 /*                                                                          */
9796 /* Because we're not actually interpreting the address data, it isn't       */
9797 /* necessary to convert them to/from network/host byte order. The mask is   */
9798 /* just used to remove bits that aren't significant - it doesn't matter     */
9799 /* where they are, as long as they're always in the same place.             */
9800 /*                                                                          */
9801 /* As with IP6_EQ, comparing IPv6 addresses starts at the bottom because    */
9802 /* this is where individual ones will differ the most - but not true for    */
9803 /* for /48's, etc.                                                          */
9804 /* ------------------------------------------------------------------------ */
9805 static int
9806 ipf_ht_node_cmp(k1, k2)
9807         struct host_node_s *k1, *k2;
9808 {
9809         int i;
9810
9811         i = (k2->hn_addr.adf_family - k1->hn_addr.adf_family);
9812         if (i != 0)
9813                 return i;
9814
9815         if (k1->hn_addr.adf_family == AF_INET)
9816                 return (k2->hn_addr.adf_addr.in4.s_addr -
9817                         k1->hn_addr.adf_addr.in4.s_addr);
9818
9819         i = k2->hn_addr.adf_addr.i6[3] - k1->hn_addr.adf_addr.i6[3];
9820         if (i != 0)
9821                 return i;
9822         i = k2->hn_addr.adf_addr.i6[2] - k1->hn_addr.adf_addr.i6[2];
9823         if (i != 0)
9824                 return i;
9825         i = k2->hn_addr.adf_addr.i6[1] - k1->hn_addr.adf_addr.i6[1];
9826         if (i != 0)
9827                 return i;
9828         i = k2->hn_addr.adf_addr.i6[0] - k1->hn_addr.adf_addr.i6[0];
9829         return i;
9830 }
9831
9832
9833 /* ------------------------------------------------------------------------ */
9834 /* Function:    ipf_ht_node_make_key                                        */
9835 /* Returns:     Nil                                                         */
9836 /* parameters:  htp(I)    - pointer to address tracking structure           */
9837 /*              key(I)    - where to store masked address for lookup        */
9838 /*              family(I) - protocol family of address                      */
9839 /*              addr(I)   - pointer to network address                      */
9840 /*                                                                          */
9841 /* Using the "netmask" (number of bits) stored parent host tracking struct, */
9842 /* copy the address passed in into the key structure whilst masking out the */
9843 /* bits that we don't want.                                                 */
9844 /*                                                                          */
9845 /* Because the parser will set ht_netmask to 128 if there is no protocol    */
9846 /* specified (the parser doesn't know if it should be a v4 or v6 rule), we  */
9847 /* have to be wary of that and not allow 32-128 to happen.                  */
9848 /* ------------------------------------------------------------------------ */
9849 static void
9850 ipf_ht_node_make_key(htp, key, family, addr)
9851         host_track_t *htp;
9852         host_node_t *key;
9853         int family;
9854         i6addr_t *addr;
9855 {
9856         key->hn_addr.adf_family = family;
9857         if (family == AF_INET) {
9858                 u_32_t mask;
9859                 int bits;
9860
9861                 key->hn_addr.adf_len = sizeof(key->hn_addr.adf_addr.in4);
9862                 bits = htp->ht_netmask;
9863                 if (bits >= 32) {
9864                         mask = 0xffffffff;
9865                 } else {
9866                         mask = htonl(0xffffffff << (32 - bits));
9867                 }
9868                 key->hn_addr.adf_addr.in4.s_addr = addr->in4.s_addr & mask;
9869 #ifdef USE_INET6
9870         } else {
9871                 int bits = htp->ht_netmask;
9872
9873                 key->hn_addr.adf_len = sizeof(key->hn_addr.adf_addr.in6);
9874                 if (bits > 96) {
9875                         key->hn_addr.adf_addr.i6[3] = addr->i6[3] &
9876                                              htonl(0xffffffff << (128 - bits));
9877                         key->hn_addr.adf_addr.i6[2] = addr->i6[2];
9878                         key->hn_addr.adf_addr.i6[1] = addr->i6[2];
9879                         key->hn_addr.adf_addr.i6[0] = addr->i6[2];
9880                 } else if (bits > 64) {
9881                         key->hn_addr.adf_addr.i6[3] = 0;
9882                         key->hn_addr.adf_addr.i6[2] = addr->i6[2] &
9883                                              htonl(0xffffffff << (96 - bits));
9884                         key->hn_addr.adf_addr.i6[1] = addr->i6[1];
9885                         key->hn_addr.adf_addr.i6[0] = addr->i6[0];
9886                 } else if (bits > 32) {
9887                         key->hn_addr.adf_addr.i6[3] = 0;
9888                         key->hn_addr.adf_addr.i6[2] = 0;
9889                         key->hn_addr.adf_addr.i6[1] = addr->i6[1] &
9890                                              htonl(0xffffffff << (64 - bits));
9891                         key->hn_addr.adf_addr.i6[0] = addr->i6[0];
9892                 } else {
9893                         key->hn_addr.adf_addr.i6[3] = 0;
9894                         key->hn_addr.adf_addr.i6[2] = 0;
9895                         key->hn_addr.adf_addr.i6[1] = 0;
9896                         key->hn_addr.adf_addr.i6[0] = addr->i6[0] &
9897                                              htonl(0xffffffff << (32 - bits));
9898                 }
9899 #endif
9900         }
9901 }
9902
9903
9904 /* ------------------------------------------------------------------------ */
9905 /* Function:    ipf_ht_node_add                                             */
9906 /* Returns:     int       - 0 == success,  -1 == failure                    */
9907 /* Parameters:  softc(I)  - pointer to soft context main structure          */
9908 /*              htp(I)    - pointer to address tracking structure           */
9909 /*              family(I) - protocol family of address                      */
9910 /*              addr(I)   - pointer to network address                      */
9911 /*                                                                          */
9912 /* NOTE: THIS FUNCTION MUST BE CALLED WITH AN EXCLUSIVE LOCK THAT PREVENTS  */
9913 /*       ipf_ht_node_del FROM RUNNING CONCURRENTLY ON THE SAME htp.         */
9914 /*                                                                          */
9915 /* After preparing the key with the address information to find, look in    */
9916 /* the red-black tree to see if the address is known. A successful call to  */
9917 /* this function can mean one of two things: a new node was added to the    */
9918 /* tree or a matching node exists and we're able to bump up its activity.   */
9919 /* ------------------------------------------------------------------------ */
9920 int
9921 ipf_ht_node_add(softc, htp, family, addr)
9922         ipf_main_softc_t *softc;
9923         host_track_t *htp;
9924         int family;
9925         i6addr_t *addr;
9926 {
9927         host_node_t *h;
9928         host_node_t k;
9929
9930         ipf_ht_node_make_key(htp, &k, family, addr);
9931
9932         h = RBI_SEARCH(ipf_rb, &htp->ht_root, &k);
9933         if (h == NULL) {
9934                 if (htp->ht_cur_nodes >= htp->ht_max_nodes)
9935                         return -1;
9936                 KMALLOC(h, host_node_t *);
9937                 if (h == NULL) {
9938                         DT(ipf_rb_no_mem);
9939                         LBUMP(ipf_rb_no_mem);
9940                         return -1;
9941                 }
9942
9943                 /*
9944                  * If there was a macro to initialise the RB node then that
9945                  * would get used here, but there isn't...
9946                  */
9947                 bzero((char *)h, sizeof(*h));
9948                 h->hn_addr = k.hn_addr;
9949                 h->hn_addr.adf_family = k.hn_addr.adf_family;
9950                 RBI_INSERT(ipf_rb, &htp->ht_root, h);
9951                 htp->ht_cur_nodes++;
9952         } else {
9953                 if ((htp->ht_max_per_node != 0) &&
9954                     (h->hn_active >= htp->ht_max_per_node)) {
9955                         DT(ipf_rb_node_max);
9956                         LBUMP(ipf_rb_node_max);
9957                         return -1;
9958                 }
9959         }
9960
9961         h->hn_active++;
9962
9963         return 0;
9964 }
9965
9966
9967 /* ------------------------------------------------------------------------ */
9968 /* Function:    ipf_ht_node_del                                             */
9969 /* Returns:     int       - 0 == success,  -1 == failure                    */
9970 /* parameters:  htp(I)    - pointer to address tracking structure           */
9971 /*              family(I) - protocol family of address                      */
9972 /*              addr(I)   - pointer to network address                      */
9973 /*                                                                          */
9974 /* NOTE: THIS FUNCTION MUST BE CALLED WITH AN EXCLUSIVE LOCK THAT PREVENTS  */
9975 /*       ipf_ht_node_add FROM RUNNING CONCURRENTLY ON THE SAME htp.         */
9976 /*                                                                          */
9977 /* Try and find the address passed in amongst the leavese on this tree to   */
9978 /* be friend. If found then drop the active account for that node drops by  */
9979 /* one. If that count reaches 0, it is time to free it all up.              */
9980 /* ------------------------------------------------------------------------ */
9981 int
9982 ipf_ht_node_del(htp, family, addr)
9983         host_track_t *htp;
9984         int family;
9985         i6addr_t *addr;
9986 {
9987         host_node_t *h;
9988         host_node_t k;
9989
9990         ipf_ht_node_make_key(htp, &k, family, addr);
9991
9992         h = RBI_SEARCH(ipf_rb, &htp->ht_root, &k);
9993         if (h == NULL) {
9994                 return -1;
9995         } else {
9996                 h->hn_active--;
9997                 if (h->hn_active == 0) {
9998                         (void) RBI_DELETE(ipf_rb, &htp->ht_root, h);
9999                         htp->ht_cur_nodes--;
10000                         KFREE(h);
10001                 }
10002         }
10003
10004         return 0;
10005 }
10006
10007
10008 /* ------------------------------------------------------------------------ */
10009 /* Function:    ipf_rb_ht_init                                              */
10010 /* Returns:     Nil                                                         */
10011 /* Parameters:  head(I) - pointer to host tracking structure                */
10012 /*                                                                          */
10013 /* Initialise the host tracking structure to be ready for use above.        */
10014 /* ------------------------------------------------------------------------ */
10015 void
10016 ipf_rb_ht_init(head)
10017         host_track_t *head;
10018 {
10019         RBI_INIT(ipf_rb, &head->ht_root);
10020 }
10021
10022
10023 /* ------------------------------------------------------------------------ */
10024 /* Function:    ipf_rb_ht_freenode                                          */
10025 /* Returns:     Nil                                                         */
10026 /* Parameters:  head(I) - pointer to host tracking structure                */
10027 /*              arg(I)  - additional argument from walk caller              */
10028 /*                                                                          */
10029 /* Free an actual host_node_t structure.                                    */
10030 /* ------------------------------------------------------------------------ */
10031 void
10032 ipf_rb_ht_freenode(node, arg)
10033         host_node_t *node;
10034         void *arg;
10035 {
10036         KFREE(node);
10037 }
10038
10039
10040 /* ------------------------------------------------------------------------ */
10041 /* Function:    ipf_rb_ht_flush                                             */
10042 /* Returns:     Nil                                                         */
10043 /* Parameters:  head(I) - pointer to host tracking structure                */
10044 /*                                                                          */
10045 /* Remove all of the nodes in the tree tracking hosts by calling a walker   */
10046 /* and free'ing each one.                                                   */
10047 /* ------------------------------------------------------------------------ */
10048 void
10049 ipf_rb_ht_flush(head)
10050         host_track_t *head;
10051 {
10052         RBI_WALK(ipf_rb, &head->ht_root, ipf_rb_ht_freenode, NULL);
10053 }
10054
10055
10056 /* ------------------------------------------------------------------------ */
10057 /* Function:    ipf_slowtimer                                               */
10058 /* Returns:     Nil                                                         */
10059 /* Parameters:  ptr(I) - pointer to main ipf soft context structure         */
10060 /*                                                                          */
10061 /* Slowly expire held state for fragments.  Timeouts are set * in           */
10062 /* expectation of this being called twice per second.                       */
10063 /* ------------------------------------------------------------------------ */
10064 void
10065 ipf_slowtimer(softc)
10066         ipf_main_softc_t *softc;
10067 {
10068
10069         ipf_token_expire(softc);
10070         ipf_frag_expire(softc);
10071         ipf_state_expire(softc);
10072         ipf_nat_expire(softc);
10073         ipf_auth_expire(softc);
10074         ipf_lookup_expire(softc);
10075         ipf_rule_expire(softc);
10076         ipf_sync_expire(softc);
10077         softc->ipf_ticks++;
10078 #   if defined(__OpenBSD__)
10079         timeout_add(&ipf_slowtimer_ch, hz/2);
10080 #   endif
10081 }
10082
10083
10084 /* ------------------------------------------------------------------------ */
10085 /* Function:    ipf_inet_mask_add                                           */
10086 /* Returns:     Nil                                                         */
10087 /* Parameters:  bits(I) - pointer to nat context information                */
10088 /*              mtab(I) - pointer to mask hash table structure              */
10089 /*                                                                          */
10090 /* When called, bits represents the mask of a new NAT rule that has just    */
10091 /* been added. This function inserts a bitmask into the array of masks to   */
10092 /* search when searching for a matching NAT rule for a packet.              */
10093 /* Prevention of duplicate masks is achieved by checking the use count for  */
10094 /* a given netmask.                                                         */
10095 /* ------------------------------------------------------------------------ */
10096 void
10097 ipf_inet_mask_add(bits, mtab)
10098         int bits;
10099         ipf_v4_masktab_t *mtab;
10100 {
10101         u_32_t mask;
10102         int i, j;
10103
10104         mtab->imt4_masks[bits]++;
10105         if (mtab->imt4_masks[bits] > 1)
10106                 return;
10107
10108         if (bits == 0)
10109                 mask = 0;
10110         else
10111                 mask = 0xffffffff << (32 - bits);
10112
10113         for (i = 0; i < 33; i++) {
10114                 if (ntohl(mtab->imt4_active[i]) < mask) {
10115                         for (j = 32; j > i; j--)
10116                                 mtab->imt4_active[j] = mtab->imt4_active[j - 1];
10117                         mtab->imt4_active[i] = htonl(mask);
10118                         break;
10119                 }
10120         }
10121         mtab->imt4_max++;
10122 }
10123
10124
10125 /* ------------------------------------------------------------------------ */
10126 /* Function:    ipf_inet_mask_del                                           */
10127 /* Returns:     Nil                                                         */
10128 /* Parameters:  bits(I) - number of bits set in the netmask                 */
10129 /*              mtab(I) - pointer to mask hash table structure              */
10130 /*                                                                          */
10131 /* Remove the 32bit bitmask represented by "bits" from the collection of    */
10132 /* netmasks stored inside of mtab.                                          */
10133 /* ------------------------------------------------------------------------ */
10134 void
10135 ipf_inet_mask_del(bits, mtab)
10136         int bits;
10137         ipf_v4_masktab_t *mtab;
10138 {
10139         u_32_t mask;
10140         int i, j;
10141
10142         mtab->imt4_masks[bits]--;
10143         if (mtab->imt4_masks[bits] > 0)
10144                 return;
10145
10146         mask = htonl(0xffffffff << (32 - bits));
10147         for (i = 0; i < 33; i++) {
10148                 if (mtab->imt4_active[i] == mask) {
10149                         for (j = i + 1; j < 33; j++)
10150                                 mtab->imt4_active[j - 1] = mtab->imt4_active[j];
10151                         break;
10152                 }
10153         }
10154         mtab->imt4_max--;
10155         ASSERT(mtab->imt4_max >= 0);
10156 }
10157
10158
10159 #ifdef USE_INET6
10160 /* ------------------------------------------------------------------------ */
10161 /* Function:    ipf_inet6_mask_add                                          */
10162 /* Returns:     Nil                                                         */
10163 /* Parameters:  bits(I) - number of bits set in mask                        */
10164 /*              mask(I) - pointer to mask to add                            */
10165 /*              mtab(I) - pointer to mask hash table structure              */
10166 /*                                                                          */
10167 /* When called, bitcount represents the mask of a IPv6 NAT map rule that    */
10168 /* has just been added. This function inserts a bitmask into the array of   */
10169 /* masks to search when searching for a matching NAT rule for a packet.     */
10170 /* Prevention of duplicate masks is achieved by checking the use count for  */
10171 /* a given netmask.                                                         */
10172 /* ------------------------------------------------------------------------ */
10173 void
10174 ipf_inet6_mask_add(bits, mask, mtab)
10175         int bits;
10176         i6addr_t *mask;
10177         ipf_v6_masktab_t *mtab;
10178 {
10179         i6addr_t zero;
10180         int i, j;
10181
10182         mtab->imt6_masks[bits]++;
10183         if (mtab->imt6_masks[bits] > 1)
10184                 return;
10185
10186         if (bits == 0) {
10187                 mask = &zero;
10188                 zero.i6[0] = 0;
10189                 zero.i6[1] = 0;
10190                 zero.i6[2] = 0;
10191                 zero.i6[3] = 0;
10192         }
10193
10194         for (i = 0; i < 129; i++) {
10195                 if (IP6_LT(&mtab->imt6_active[i], mask)) {
10196                         for (j = 128; j > i; j--)
10197                                 mtab->imt6_active[j] = mtab->imt6_active[j - 1];
10198                         mtab->imt6_active[i] = *mask;
10199                         break;
10200                 }
10201         }
10202         mtab->imt6_max++;
10203 }
10204
10205
10206 /* ------------------------------------------------------------------------ */
10207 /* Function:    ipf_inet6_mask_del                                          */
10208 /* Returns:     Nil                                                         */
10209 /* Parameters:  bits(I) - number of bits set in mask                        */
10210 /*              mask(I) - pointer to mask to remove                         */
10211 /*              mtab(I) - pointer to mask hash table structure              */
10212 /*                                                                          */
10213 /* Remove the 128bit bitmask represented by "bits" from the collection of   */
10214 /* netmasks stored inside of mtab.                                          */
10215 /* ------------------------------------------------------------------------ */
10216 void
10217 ipf_inet6_mask_del(bits, mask, mtab)
10218         int bits;
10219         i6addr_t *mask;
10220         ipf_v6_masktab_t *mtab;
10221 {
10222         i6addr_t zero;
10223         int i, j;
10224
10225         mtab->imt6_masks[bits]--;
10226         if (mtab->imt6_masks[bits] > 0)
10227                 return;
10228
10229         if (bits == 0)
10230                 mask = &zero;
10231         zero.i6[0] = 0;
10232         zero.i6[1] = 0;
10233         zero.i6[2] = 0;
10234         zero.i6[3] = 0;
10235
10236         for (i = 0; i < 129; i++) {
10237                 if (IP6_EQ(&mtab->imt6_active[i], mask)) {
10238                         for (j = i + 1; j < 129; j++) {
10239                                 mtab->imt6_active[j - 1] = mtab->imt6_active[j];
10240                                 if (IP6_EQ(&mtab->imt6_active[j - 1], &zero))
10241                                         break;
10242                         }
10243                         break;
10244                 }
10245         }
10246         mtab->imt6_max--;
10247         ASSERT(mtab->imt6_max >= 0);
10248 }
10249 #endif