1994-10-28 15:09:49 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1993 Daniel Boulet
|
|
|
|
* Copyright (c) 1994 Ugen J.S.Antsilevich
|
1998-03-15 00:36:27 +00:00
|
|
|
* Copyright (c) 1996 Alex Nash
|
2000-02-10 14:17:40 +00:00
|
|
|
* Copyright (c) 2000 Luigi Rizzo
|
1994-10-28 15:09:49 +00:00
|
|
|
*
|
|
|
|
* Redistribution and use in source forms, with and without modification,
|
|
|
|
* are permitted provided that this entire comment appears intact.
|
|
|
|
*
|
|
|
|
* Redistribution in binary form may occur without any restrictions.
|
|
|
|
* Obviously, it would be nice if you gave credit where credit is due
|
|
|
|
* but requiring it would be too onerous.
|
|
|
|
*
|
|
|
|
* This software is provided ``AS IS'' without any warranties of any kind.
|
1995-07-23 05:36:31 +00:00
|
|
|
*
|
1999-08-28 01:08:13 +00:00
|
|
|
* $FreeBSD$
|
1994-10-28 15:09:49 +00:00
|
|
|
*/
|
|
|
|
|
2000-02-10 14:17:40 +00:00
|
|
|
#define DEB(x)
|
|
|
|
#define DDB(x) x
|
|
|
|
|
1994-10-28 15:09:49 +00:00
|
|
|
/*
|
|
|
|
* Implement IP packet firewall
|
|
|
|
*/
|
1996-06-12 19:34:33 +00:00
|
|
|
|
1999-04-20 14:29:59 +00:00
|
|
|
#if !defined(KLD_MODULE)
|
1996-06-12 19:34:33 +00:00
|
|
|
#include "opt_ipfw.h"
|
1998-12-14 18:09:13 +00:00
|
|
|
#include "opt_ipdn.h"
|
1997-11-05 20:17:23 +00:00
|
|
|
#include "opt_ipdivert.h"
|
1998-01-08 23:42:31 +00:00
|
|
|
#include "opt_inet.h"
|
|
|
|
#ifndef INET
|
|
|
|
#error IPFIREWALL requires INET.
|
|
|
|
#endif /* INET */
|
1996-06-13 17:35:28 +00:00
|
|
|
#endif
|
1996-06-12 19:34:33 +00:00
|
|
|
|
1994-10-28 15:09:49 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/mbuf.h>
|
|
|
|
#include <sys/kernel.h>
|
1996-10-12 19:49:43 +00:00
|
|
|
#include <sys/socket.h>
|
1998-08-23 03:07:17 +00:00
|
|
|
#include <sys/socketvar.h>
|
1996-02-23 15:47:58 +00:00
|
|
|
#include <sys/sysctl.h>
|
1999-08-21 18:35:55 +00:00
|
|
|
#include <sys/syslog.h>
|
1999-06-19 18:43:33 +00:00
|
|
|
#include <sys/ucred.h>
|
1994-10-28 15:09:49 +00:00
|
|
|
#include <net/if.h>
|
1999-06-19 18:43:33 +00:00
|
|
|
#include <net/route.h>
|
1994-10-28 15:09:49 +00:00
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netinet/in_systm.h>
|
2001-02-13 14:12:37 +00:00
|
|
|
#include <netinet/in_var.h>
|
1999-06-19 18:43:33 +00:00
|
|
|
#include <netinet/in_pcb.h>
|
1994-10-28 15:09:49 +00:00
|
|
|
#include <netinet/ip.h>
|
1996-07-10 19:44:30 +00:00
|
|
|
#include <netinet/ip_var.h>
|
1994-10-28 15:09:49 +00:00
|
|
|
#include <netinet/ip_icmp.h>
|
|
|
|
#include <netinet/ip_fw.h>
|
1998-12-14 18:09:13 +00:00
|
|
|
#ifdef DUMMYNET
|
|
|
|
#include <netinet/ip_dummynet.h>
|
|
|
|
#endif
|
1997-06-02 05:02:37 +00:00
|
|
|
#include <netinet/tcp.h>
|
|
|
|
#include <netinet/tcp_timer.h>
|
|
|
|
#include <netinet/tcp_var.h>
|
|
|
|
#include <netinet/tcpip.h>
|
|
|
|
#include <netinet/udp.h>
|
1999-06-19 18:43:33 +00:00
|
|
|
#include <netinet/udp_var.h>
|
1994-10-28 15:09:49 +00:00
|
|
|
|
1998-12-14 18:09:13 +00:00
|
|
|
#include <netinet/if_ether.h> /* XXX ethertype_ip */
|
|
|
|
|
1996-02-23 15:47:58 +00:00
|
|
|
static int fw_debug = 1;
|
|
|
|
#ifdef IPFIREWALL_VERBOSE
|
|
|
|
static int fw_verbose = 1;
|
1994-11-28 12:35:14 +00:00
|
|
|
#else
|
1996-02-23 15:47:58 +00:00
|
|
|
static int fw_verbose = 0;
|
1994-11-28 12:35:14 +00:00
|
|
|
#endif
|
2000-02-10 14:17:40 +00:00
|
|
|
int fw_one_pass = 1 ;
|
1996-06-09 23:46:21 +00:00
|
|
|
#ifdef IPFIREWALL_VERBOSE_LIMIT
|
|
|
|
static int fw_verbose_limit = IPFIREWALL_VERBOSE_LIMIT;
|
|
|
|
#else
|
|
|
|
static int fw_verbose_limit = 0;
|
|
|
|
#endif
|
2001-03-21 08:19:31 +00:00
|
|
|
static int fw_permanent_rules = 0;
|
1996-02-23 15:47:58 +00:00
|
|
|
|
2001-01-26 06:49:34 +00:00
|
|
|
/*
|
|
|
|
* Right now, two fields in the IP header are changed to host format
|
|
|
|
* by the IP layer before calling the firewall. Ideally, we would like
|
|
|
|
* to have them in network format so that the packet can be
|
|
|
|
* used as it comes from the device driver (and is thus readonly).
|
|
|
|
*/
|
|
|
|
|
1999-08-28 07:20:59 +00:00
|
|
|
static u_int64_t counter; /* counter for ipfw_report(NULL...) */
|
2000-02-10 14:17:40 +00:00
|
|
|
struct ipfw_flow_id last_pkt ;
|
1999-08-28 07:20:59 +00:00
|
|
|
|
1998-08-23 03:07:17 +00:00
|
|
|
#define IPFW_DEFAULT_RULE ((u_int)(u_short)~0)
|
|
|
|
|
2001-02-10 00:10:18 +00:00
|
|
|
LIST_HEAD (ip_fw_head, ip_fw_chain) ip_fw_chain_head;
|
1995-07-04 05:29:30 +00:00
|
|
|
|
1998-12-22 20:38:06 +00:00
|
|
|
MALLOC_DEFINE(M_IPFW, "IpFw/IpAcct", "IpFw/IpAcct chain's");
|
1997-10-12 20:26:33 +00:00
|
|
|
|
1996-02-23 15:47:58 +00:00
|
|
|
#ifdef SYSCTL_NODE
|
1996-08-31 21:05:20 +00:00
|
|
|
SYSCTL_NODE(_net_inet_ip, OID_AUTO, fw, CTLFLAG_RW, 0, "Firewall");
|
2000-02-10 14:17:40 +00:00
|
|
|
SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, enable, CTLFLAG_RW,
|
|
|
|
&fw_enable, 0, "Enable ipfw");
|
1999-05-03 23:57:32 +00:00
|
|
|
SYSCTL_INT(_net_inet_ip_fw, OID_AUTO,one_pass,CTLFLAG_RW,
|
|
|
|
&fw_one_pass, 0,
|
2000-09-29 08:39:06 +00:00
|
|
|
"Only do a single pass through ipfw when using dummynet(4)");
|
2000-02-10 14:17:40 +00:00
|
|
|
SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, debug, CTLFLAG_RW,
|
|
|
|
&fw_debug, 0, "Enable printing of debug ip_fw statements");
|
1999-05-03 23:57:32 +00:00
|
|
|
SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, verbose, CTLFLAG_RW,
|
|
|
|
&fw_verbose, 0, "Log matches to ipfw rules");
|
|
|
|
SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, verbose_limit, CTLFLAG_RW,
|
|
|
|
&fw_verbose_limit, 0, "Set upper limit of matches of ipfw rules logged");
|
2001-03-21 08:19:31 +00:00
|
|
|
SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, permanent_rules, CTLFLAG_RW,
|
|
|
|
&fw_permanent_rules, 0, "Set rule number, below which rules are permanent");
|
2000-02-10 14:17:40 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Extension for stateful ipfw.
|
|
|
|
*
|
|
|
|
* Dynamic rules are stored in lists accessed through a hash table
|
|
|
|
* (ipfw_dyn_v) whose size is curr_dyn_buckets. This value can
|
|
|
|
* be modified through the sysctl variable dyn_buckets which is
|
|
|
|
* updated when the table becomes empty.
|
|
|
|
*
|
|
|
|
* XXX currently there is only one list, ipfw_dyn.
|
|
|
|
*
|
|
|
|
* When a packet is received, it is first hashed, then matched
|
|
|
|
* against the entries in the corresponding list.
|
|
|
|
* Matching occurs according to the rule type. The default is to
|
|
|
|
* match the four fields and the protocol, and rules are bidirectional.
|
|
|
|
*
|
|
|
|
* For a busy proxy/web server we will have lots of connections to
|
|
|
|
* the server. We could decide for a rule type where we ignore
|
|
|
|
* ports (different hashing) and avoid special SYN/RST/FIN handling.
|
|
|
|
*
|
|
|
|
* XXX when we decide to support more than one rule type, we should
|
|
|
|
* repeat the hashing multiple times uing only the useful fields.
|
|
|
|
* Or, we could run the various tests in parallel, because the
|
|
|
|
* 'move to front' technique should shorten the average search.
|
|
|
|
*
|
|
|
|
* The lifetime of dynamic rules is regulated by dyn_*_lifetime,
|
|
|
|
* measured in seconds and depending on the flags.
|
|
|
|
*
|
|
|
|
* The total number of dynamic rules is stored in dyn_count.
|
|
|
|
* The max number of dynamic rules is dyn_max. When we reach
|
|
|
|
* the maximum number of rules we do not create anymore. This is
|
|
|
|
* done to avoid consuming too much memory, but also too much
|
|
|
|
* time when searching on each packet (ideally, we should try instead
|
|
|
|
* to put a limit on the length of the list on each bucket...).
|
|
|
|
*
|
|
|
|
* Each dynamic rules holds a pointer to the parent ipfw rule so
|
|
|
|
* we know what action to perform. Dynamic rules are removed when
|
|
|
|
* the parent rule is deleted.
|
|
|
|
* There are some limitations with dynamic rules -- we do not
|
|
|
|
* obey the 'randomized match', and we do not do multiple
|
|
|
|
* passes through the firewall.
|
|
|
|
* XXX check the latter!!!
|
|
|
|
*/
|
|
|
|
static struct ipfw_dyn_rule **ipfw_dyn_v = NULL ;
|
|
|
|
static u_int32_t dyn_buckets = 256 ; /* must be power of 2 */
|
|
|
|
static u_int32_t curr_dyn_buckets = 256 ; /* must be power of 2 */
|
|
|
|
static u_int32_t dyn_ack_lifetime = 300 ;
|
|
|
|
static u_int32_t dyn_syn_lifetime = 20 ;
|
|
|
|
static u_int32_t dyn_fin_lifetime = 20 ;
|
|
|
|
static u_int32_t dyn_rst_lifetime = 5 ;
|
|
|
|
static u_int32_t dyn_short_lifetime = 30 ;
|
|
|
|
static u_int32_t dyn_count = 0 ;
|
|
|
|
static u_int32_t dyn_max = 1000 ;
|
|
|
|
SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, dyn_buckets, CTLFLAG_RW,
|
|
|
|
&dyn_buckets, 0, "Number of dyn. buckets");
|
|
|
|
SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, curr_dyn_buckets, CTLFLAG_RD,
|
|
|
|
&curr_dyn_buckets, 0, "Current Number of dyn. buckets");
|
|
|
|
SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, dyn_count, CTLFLAG_RD,
|
|
|
|
&dyn_count, 0, "Number of dyn. rules");
|
|
|
|
SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, dyn_max, CTLFLAG_RW,
|
|
|
|
&dyn_max, 0, "Max number of dyn. rules");
|
|
|
|
SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, dyn_ack_lifetime, CTLFLAG_RW,
|
|
|
|
&dyn_ack_lifetime, 0, "Lifetime of dyn. rules for acks");
|
|
|
|
SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, dyn_syn_lifetime, CTLFLAG_RW,
|
|
|
|
&dyn_syn_lifetime, 0, "Lifetime of dyn. rules for syn");
|
|
|
|
SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, dyn_fin_lifetime, CTLFLAG_RW,
|
|
|
|
&dyn_fin_lifetime, 0, "Lifetime of dyn. rules for fin");
|
|
|
|
SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, dyn_rst_lifetime, CTLFLAG_RW,
|
|
|
|
&dyn_rst_lifetime, 0, "Lifetime of dyn. rules for rst");
|
|
|
|
SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, dyn_short_lifetime, CTLFLAG_RW,
|
2000-10-26 00:16:12 +00:00
|
|
|
&dyn_short_lifetime, 0, "Lifetime of dyn. rules for other situations");
|
2000-02-10 14:17:40 +00:00
|
|
|
|
1995-07-04 05:29:30 +00:00
|
|
|
#endif
|
1994-11-28 12:35:14 +00:00
|
|
|
|
1999-08-21 18:35:55 +00:00
|
|
|
#define dprintf(a) do { \
|
|
|
|
if (fw_debug) \
|
|
|
|
printf a; \
|
|
|
|
} while (0)
|
|
|
|
#define SNPARGS(buf, len) buf + len, sizeof(buf) > len ? sizeof(buf) - len : 0
|
1994-11-28 12:35:14 +00:00
|
|
|
|
1996-02-23 15:47:58 +00:00
|
|
|
static int add_entry __P((struct ip_fw_head *chainptr, struct ip_fw *frwl));
|
1997-06-02 05:02:37 +00:00
|
|
|
static int del_entry __P((struct ip_fw_head *chainptr, u_short number));
|
1998-08-23 03:07:17 +00:00
|
|
|
static int zero_entry __P((struct ip_fw *));
|
1999-08-01 16:57:24 +00:00
|
|
|
static int resetlog_entry __P((struct ip_fw *));
|
1998-08-23 03:07:17 +00:00
|
|
|
static int check_ipfw_struct __P((struct ip_fw *m));
|
1998-04-15 17:47:40 +00:00
|
|
|
static __inline int
|
|
|
|
iface_match __P((struct ifnet *ifp, union ip_fw_if *ifu,
|
|
|
|
int byname));
|
1995-12-02 19:38:06 +00:00
|
|
|
static int ipopts_match __P((struct ip *ip, struct ip_fw *f));
|
2000-10-02 03:33:31 +00:00
|
|
|
static int iptos_match __P((struct ip *ip, struct ip_fw *f));
|
1998-04-15 17:47:40 +00:00
|
|
|
static __inline int
|
|
|
|
port_match __P((u_short *portptr, int nports, u_short port,
|
2000-01-08 11:31:43 +00:00
|
|
|
int range_flag, int mask));
|
1995-12-02 19:38:06 +00:00
|
|
|
static int tcpflg_match __P((struct tcphdr *tcp, struct ip_fw *f));
|
1996-06-09 23:46:21 +00:00
|
|
|
static int icmptype_match __P((struct icmp * icmp, struct ip_fw * f));
|
2001-01-26 06:49:34 +00:00
|
|
|
static void ipfw_report __P((struct ip_fw *f, struct ip *ip, int offset,
|
1997-06-02 05:02:37 +00:00
|
|
|
struct ifnet *rif, struct ifnet *oif));
|
1994-10-28 15:09:49 +00:00
|
|
|
|
1998-12-14 18:09:13 +00:00
|
|
|
static void flush_rule_ptrs(void);
|
|
|
|
|
1998-05-25 10:37:48 +00:00
|
|
|
static int ip_fw_chk __P((struct ip **pip, int hlen,
|
1998-07-06 03:20:19 +00:00
|
|
|
struct ifnet *oif, u_int16_t *cookie, struct mbuf **m,
|
1998-12-14 18:09:13 +00:00
|
|
|
struct ip_fw_chain **flow_id,
|
1998-07-06 03:20:19 +00:00
|
|
|
struct sockaddr_in **next_hop));
|
1998-08-23 03:07:17 +00:00
|
|
|
static int ip_fw_ctl __P((struct sockopt *sopt));
|
1996-05-08 04:29:08 +00:00
|
|
|
|
1996-08-05 02:35:04 +00:00
|
|
|
static char err_prefix[] = "ip_fw_ctl:";
|
1996-05-08 04:29:08 +00:00
|
|
|
|
1994-10-28 15:09:49 +00:00
|
|
|
/*
|
1996-02-23 15:47:58 +00:00
|
|
|
* Returns 1 if the port is matched by the vector, 0 otherwise
|
1994-10-28 15:09:49 +00:00
|
|
|
*/
|
1998-04-15 17:47:40 +00:00
|
|
|
static __inline int
|
2000-01-08 11:31:43 +00:00
|
|
|
port_match(u_short *portptr, int nports, u_short port, int range_flag, int mask)
|
1994-10-28 15:09:49 +00:00
|
|
|
{
|
1995-07-04 05:39:03 +00:00
|
|
|
if (!nports)
|
1996-02-23 15:47:58 +00:00
|
|
|
return 1;
|
2000-01-08 11:31:43 +00:00
|
|
|
if (mask) {
|
|
|
|
if ( 0 == ((portptr[0] ^ port) & portptr[1]) )
|
|
|
|
return 1;
|
|
|
|
nports -= 2;
|
|
|
|
portptr += 2;
|
|
|
|
}
|
1995-07-04 05:39:03 +00:00
|
|
|
if (range_flag) {
|
|
|
|
if (portptr[0] <= port && port <= portptr[1]) {
|
1996-02-23 15:47:58 +00:00
|
|
|
return 1;
|
1995-07-04 05:39:03 +00:00
|
|
|
}
|
|
|
|
nports -= 2;
|
|
|
|
portptr += 2;
|
1994-10-28 15:09:49 +00:00
|
|
|
}
|
1995-07-04 05:39:03 +00:00
|
|
|
while (nports-- > 0) {
|
|
|
|
if (*portptr++ == port) {
|
1996-02-23 15:47:58 +00:00
|
|
|
return 1;
|
1995-07-04 05:39:03 +00:00
|
|
|
}
|
1994-10-28 15:09:49 +00:00
|
|
|
}
|
1996-02-23 15:47:58 +00:00
|
|
|
return 0;
|
1994-10-28 15:09:49 +00:00
|
|
|
}
|
|
|
|
|
1995-11-14 20:34:56 +00:00
|
|
|
static int
|
1996-06-09 23:46:21 +00:00
|
|
|
tcpflg_match(struct tcphdr *tcp, struct ip_fw *f)
|
1995-10-23 03:58:06 +00:00
|
|
|
{
|
|
|
|
u_char flg_set, flg_clr;
|
o IPFW incorrectly handled filtering in the presence of previously
reserved and now allocated TCP flags in incoming packets. This patch
stops overloading those bits in the IP firewall rules, and moves
colliding flags to a seperate field, ipflg. The IPFW userland
management tool, ipfw(8), is updated to reflect this change. New TCP
flags related to ECN are now included in tcp.h for reference, although
we don't currently implement TCP+ECN.
o To use this fix without completely rebuilding, it is sufficient to copy
ip_fw.h and tcp.h into your appropriate include directory, then rebuild
the ipfw kernel module, and ipfw tool, and install both. Note that a
mismatch between module and userland tool will result in incorrect
installation of firewall rules that may have unexpected effects. This
is an MFC candidate, following shakedown. This bug does not appear
to affect ipfilter.
Reviewed by: security-officer, billf
Reported by: Aragon Gouveia <aragon@phat.za.net>
2001-01-09 03:10:30 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If an established connection is required, reject packets that
|
|
|
|
* have only SYN of RST|ACK|SYN set. Otherwise, fall through to
|
|
|
|
* other flag requirements.
|
|
|
|
*/
|
|
|
|
if ((f->fw_ipflg & IP_FW_IF_TCPEST) &&
|
|
|
|
((tcp->th_flags & (IP_FW_TCPF_RST | IP_FW_TCPF_ACK |
|
|
|
|
IP_FW_TCPF_SYN)) == IP_FW_TCPF_SYN))
|
|
|
|
return 0;
|
1996-04-03 13:52:20 +00:00
|
|
|
|
1995-10-23 03:58:06 +00:00
|
|
|
flg_set = tcp->th_flags & f->fw_tcpf;
|
|
|
|
flg_clr = tcp->th_flags & f->fw_tcpnf;
|
|
|
|
|
|
|
|
if (flg_set != f->fw_tcpf)
|
|
|
|
return 0;
|
1996-02-23 15:47:58 +00:00
|
|
|
if (flg_clr)
|
1995-10-23 03:58:06 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
1996-06-09 23:46:21 +00:00
|
|
|
static int
|
|
|
|
icmptype_match(struct icmp *icmp, struct ip_fw *f)
|
|
|
|
{
|
|
|
|
int type;
|
|
|
|
|
|
|
|
if (!(f->fw_flg & IP_FW_F_ICMPBIT))
|
|
|
|
return(1);
|
|
|
|
|
|
|
|
type = icmp->icmp_type;
|
|
|
|
|
|
|
|
/* check for matching type in the bitmap */
|
1998-01-08 03:03:54 +00:00
|
|
|
if (type < IP_FW_ICMPTYPES_MAX &&
|
1999-07-28 22:27:27 +00:00
|
|
|
(f->fw_uar.fw_icmptypes[type / (sizeof(unsigned) * NBBY)] &
|
|
|
|
(1U << (type % (sizeof(unsigned) * NBBY)))))
|
1996-06-09 23:46:21 +00:00
|
|
|
return(1);
|
|
|
|
|
|
|
|
return(0); /* no match */
|
|
|
|
}
|
1994-10-28 15:09:49 +00:00
|
|
|
|
1998-03-15 00:36:27 +00:00
|
|
|
static int
|
|
|
|
is_icmp_query(struct ip *ip)
|
|
|
|
{
|
|
|
|
const struct icmp *icmp;
|
|
|
|
int icmp_type;
|
|
|
|
|
1998-08-03 17:23:37 +00:00
|
|
|
icmp = (struct icmp *)((u_int32_t *)ip + ip->ip_hl);
|
1998-03-15 00:36:27 +00:00
|
|
|
icmp_type = icmp->icmp_type;
|
|
|
|
|
|
|
|
if (icmp_type == ICMP_ECHO || icmp_type == ICMP_ROUTERSOLICIT ||
|
|
|
|
icmp_type == ICMP_TSTAMP || icmp_type == ICMP_IREQ ||
|
|
|
|
icmp_type == ICMP_MASKREQ)
|
|
|
|
return(1);
|
|
|
|
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
1995-11-14 20:34:56 +00:00
|
|
|
static int
|
1996-06-09 23:46:21 +00:00
|
|
|
ipopts_match(struct ip *ip, struct ip_fw *f)
|
1995-10-01 21:52:50 +00:00
|
|
|
{
|
|
|
|
register u_char *cp;
|
|
|
|
int opt, optlen, cnt;
|
|
|
|
u_char opts, nopts, nopts_sve;
|
|
|
|
|
|
|
|
cp = (u_char *)(ip + 1);
|
|
|
|
cnt = (ip->ip_hl << 2) - sizeof (struct ip);
|
|
|
|
opts = f->fw_ipopt;
|
|
|
|
nopts = nopts_sve = f->fw_ipnopt;
|
1995-10-23 03:58:06 +00:00
|
|
|
|
1995-10-01 21:52:50 +00:00
|
|
|
for (; cnt > 0; cnt -= optlen, cp += optlen) {
|
|
|
|
opt = cp[IPOPT_OPTVAL];
|
|
|
|
if (opt == IPOPT_EOL)
|
|
|
|
break;
|
|
|
|
if (opt == IPOPT_NOP)
|
|
|
|
optlen = 1;
|
|
|
|
else {
|
|
|
|
optlen = cp[IPOPT_OLEN];
|
|
|
|
if (optlen <= 0 || optlen > cnt) {
|
1996-02-24 13:38:28 +00:00
|
|
|
return 0; /*XXX*/
|
1995-10-01 21:52:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
switch (opt) {
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IPOPT_LSRR:
|
|
|
|
opts &= ~IP_FW_IPOPT_LSRR;
|
|
|
|
nopts &= ~IP_FW_IPOPT_LSRR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IPOPT_SSRR:
|
|
|
|
opts &= ~IP_FW_IPOPT_SSRR;
|
|
|
|
nopts &= ~IP_FW_IPOPT_SSRR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IPOPT_RR:
|
|
|
|
opts &= ~IP_FW_IPOPT_RR;
|
|
|
|
nopts &= ~IP_FW_IPOPT_RR;
|
|
|
|
break;
|
|
|
|
case IPOPT_TS:
|
|
|
|
opts &= ~IP_FW_IPOPT_TS;
|
|
|
|
nopts &= ~IP_FW_IPOPT_TS;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (opts == nopts)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (opts == 0 && nopts == nopts_sve)
|
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2000-10-02 03:33:31 +00:00
|
|
|
static int
|
|
|
|
iptos_match(struct ip *ip, struct ip_fw *f)
|
|
|
|
{
|
|
|
|
|
|
|
|
u_int flags = (ip->ip_tos & 0x1f);
|
|
|
|
u_char opts, nopts, nopts_sve;
|
|
|
|
|
|
|
|
opts = f->fw_iptos;
|
|
|
|
nopts = nopts_sve = f->fw_ipntos;
|
|
|
|
|
|
|
|
while (flags != 0) {
|
|
|
|
u_int flag;
|
|
|
|
|
|
|
|
flag = 1 << (ffs(flags) -1);
|
|
|
|
opts &= ~flag;
|
|
|
|
nopts &= ~flag;
|
|
|
|
flags &= ~flag;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opts == 0 && nopts == nopts_sve)
|
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-06-08 15:34:51 +00:00
|
|
|
static int
|
|
|
|
tcpopts_match(struct tcphdr *tcp, struct ip_fw *f)
|
|
|
|
{
|
|
|
|
register u_char *cp;
|
|
|
|
int opt, optlen, cnt;
|
|
|
|
u_char opts, nopts, nopts_sve;
|
|
|
|
|
|
|
|
cp = (u_char *)(tcp + 1);
|
|
|
|
cnt = (tcp->th_off << 2) - sizeof (struct tcphdr);
|
|
|
|
opts = f->fw_tcpopt;
|
|
|
|
nopts = nopts_sve = f->fw_tcpnopt;
|
|
|
|
|
|
|
|
for (; cnt > 0; cnt -= optlen, cp += optlen) {
|
|
|
|
opt = cp[0];
|
|
|
|
if (opt == TCPOPT_EOL)
|
|
|
|
break;
|
|
|
|
if (opt == TCPOPT_NOP)
|
|
|
|
optlen = 1;
|
|
|
|
else {
|
|
|
|
optlen = cp[1];
|
|
|
|
if (optlen <= 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
switch (opt) {
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TCPOPT_MAXSEG:
|
|
|
|
opts &= ~IP_FW_TCPOPT_MSS;
|
|
|
|
nopts &= ~IP_FW_TCPOPT_MSS;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TCPOPT_WINDOW:
|
|
|
|
opts &= ~IP_FW_TCPOPT_WINDOW;
|
|
|
|
nopts &= ~IP_FW_TCPOPT_WINDOW;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TCPOPT_SACK_PERMITTED:
|
|
|
|
case TCPOPT_SACK:
|
|
|
|
opts &= ~IP_FW_TCPOPT_SACK;
|
|
|
|
nopts &= ~IP_FW_TCPOPT_SACK;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TCPOPT_TIMESTAMP:
|
|
|
|
opts &= ~IP_FW_TCPOPT_TS;
|
|
|
|
nopts &= ~IP_FW_TCPOPT_TS;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TCPOPT_CC:
|
|
|
|
case TCPOPT_CCNEW:
|
|
|
|
case TCPOPT_CCECHO:
|
|
|
|
opts &= ~IP_FW_TCPOPT_CC;
|
|
|
|
nopts &= ~IP_FW_TCPOPT_CC;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (opts == nopts)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (opts == 0 && nopts == nopts_sve)
|
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1998-04-15 17:47:40 +00:00
|
|
|
static __inline int
|
1997-06-02 05:02:37 +00:00
|
|
|
iface_match(struct ifnet *ifp, union ip_fw_if *ifu, int byname)
|
|
|
|
{
|
|
|
|
/* Check by name or by IP address */
|
|
|
|
if (byname) {
|
|
|
|
/* Check unit number (-1 is wildcard) */
|
|
|
|
if (ifu->fu_via_if.unit != -1
|
|
|
|
&& ifp->if_unit != ifu->fu_via_if.unit)
|
|
|
|
return(0);
|
|
|
|
/* Check name */
|
|
|
|
if (strncmp(ifp->if_name, ifu->fu_via_if.name, FW_IFNLEN))
|
|
|
|
return(0);
|
|
|
|
return(1);
|
|
|
|
} else if (ifu->fu_via_ip.s_addr != 0) { /* Zero == wildcard */
|
|
|
|
struct ifaddr *ia;
|
|
|
|
|
2001-02-04 13:13:25 +00:00
|
|
|
TAILQ_FOREACH(ia, &ifp->if_addrhead, ifa_link) {
|
1997-06-02 05:02:37 +00:00
|
|
|
if (ia->ifa_addr == NULL)
|
|
|
|
continue;
|
|
|
|
if (ia->ifa_addr->sa_family != AF_INET)
|
|
|
|
continue;
|
|
|
|
if (ifu->fu_via_ip.s_addr != ((struct sockaddr_in *)
|
|
|
|
(ia->ifa_addr))->sin_addr.s_addr)
|
|
|
|
continue;
|
|
|
|
return(1);
|
|
|
|
}
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
return(1);
|
|
|
|
}
|
|
|
|
|
1996-02-23 15:47:58 +00:00
|
|
|
static void
|
2001-01-26 06:49:34 +00:00
|
|
|
ipfw_report(struct ip_fw *f, struct ip *ip, int offset,
|
1997-06-02 05:02:37 +00:00
|
|
|
struct ifnet *rif, struct ifnet *oif)
|
1996-02-23 15:47:58 +00:00
|
|
|
{
|
2000-05-14 02:18:43 +00:00
|
|
|
struct tcphdr *const tcp = (struct tcphdr *) ((u_int32_t *) ip+ ip->ip_hl);
|
|
|
|
struct udphdr *const udp = (struct udphdr *) ((u_int32_t *) ip+ ip->ip_hl);
|
|
|
|
struct icmp *const icmp = (struct icmp *) ((u_int32_t *) ip + ip->ip_hl);
|
|
|
|
u_int64_t count;
|
|
|
|
char *action;
|
|
|
|
char action2[32], proto[47], name[18], fragment[17];
|
|
|
|
int len;
|
|
|
|
|
|
|
|
count = f ? f->fw_pcnt : ++counter;
|
|
|
|
if ((f == NULL && fw_verbose_limit != 0 && count > fw_verbose_limit) ||
|
|
|
|
(f && f->fw_logamount != 0 && count > f->fw_loghighest))
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Print command name */
|
|
|
|
snprintf(SNPARGS(name, 0), "ipfw: %d", f ? f->fw_number : -1);
|
|
|
|
|
|
|
|
action = action2;
|
|
|
|
if (!f)
|
|
|
|
action = "Refuse";
|
|
|
|
else {
|
|
|
|
switch (f->fw_flg & IP_FW_F_COMMAND) {
|
|
|
|
case IP_FW_F_DENY:
|
|
|
|
action = "Deny";
|
|
|
|
break;
|
|
|
|
case IP_FW_F_REJECT:
|
|
|
|
if (f->fw_reject_code == IP_FW_REJECT_RST)
|
|
|
|
action = "Reset";
|
|
|
|
else
|
|
|
|
action = "Unreach";
|
|
|
|
break;
|
|
|
|
case IP_FW_F_ACCEPT:
|
|
|
|
action = "Accept";
|
|
|
|
break;
|
|
|
|
case IP_FW_F_COUNT:
|
|
|
|
action = "Count";
|
|
|
|
break;
|
1999-06-11 11:27:35 +00:00
|
|
|
#ifdef IPDIVERT
|
2000-05-14 02:18:43 +00:00
|
|
|
case IP_FW_F_DIVERT:
|
|
|
|
snprintf(SNPARGS(action2, 0), "Divert %d",
|
|
|
|
f->fw_divert_port);
|
|
|
|
break;
|
|
|
|
case IP_FW_F_TEE:
|
|
|
|
snprintf(SNPARGS(action2, 0), "Tee %d",
|
|
|
|
f->fw_divert_port);
|
|
|
|
break;
|
1999-06-11 11:27:35 +00:00
|
|
|
#endif
|
2000-05-14 02:18:43 +00:00
|
|
|
case IP_FW_F_SKIPTO:
|
|
|
|
snprintf(SNPARGS(action2, 0), "SkipTo %d",
|
|
|
|
f->fw_skipto_rule);
|
|
|
|
break;
|
1998-12-14 18:09:13 +00:00
|
|
|
#ifdef DUMMYNET
|
2000-05-14 02:18:43 +00:00
|
|
|
case IP_FW_F_PIPE:
|
|
|
|
snprintf(SNPARGS(action2, 0), "Pipe %d",
|
|
|
|
f->fw_skipto_rule);
|
|
|
|
break;
|
2000-06-08 09:45:23 +00:00
|
|
|
case IP_FW_F_QUEUE:
|
|
|
|
snprintf(SNPARGS(action2, 0), "Queue %d",
|
|
|
|
f->fw_skipto_rule);
|
|
|
|
break;
|
1998-12-14 18:09:13 +00:00
|
|
|
#endif
|
1998-07-06 03:20:19 +00:00
|
|
|
#ifdef IPFIREWALL_FORWARD
|
2000-05-14 02:18:43 +00:00
|
|
|
case IP_FW_F_FWD:
|
|
|
|
if (f->fw_fwd_ip.sin_port)
|
|
|
|
snprintf(SNPARGS(action2, 0),
|
|
|
|
"Forward to %s:%d",
|
|
|
|
inet_ntoa(f->fw_fwd_ip.sin_addr),
|
|
|
|
f->fw_fwd_ip.sin_port);
|
|
|
|
else
|
|
|
|
snprintf(SNPARGS(action2, 0), "Forward to %s",
|
|
|
|
inet_ntoa(f->fw_fwd_ip.sin_addr));
|
|
|
|
break;
|
1998-07-06 03:20:19 +00:00
|
|
|
#endif
|
2000-05-14 02:18:43 +00:00
|
|
|
default:
|
|
|
|
action = "UNKNOWN";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
1999-08-21 18:35:55 +00:00
|
|
|
|
2000-05-14 02:18:43 +00:00
|
|
|
switch (ip->ip_p) {
|
|
|
|
case IPPROTO_TCP:
|
|
|
|
len = snprintf(SNPARGS(proto, 0), "TCP %s",
|
|
|
|
inet_ntoa(ip->ip_src));
|
2001-01-26 06:49:34 +00:00
|
|
|
if (offset == 0)
|
2000-05-14 02:18:43 +00:00
|
|
|
len += snprintf(SNPARGS(proto, len), ":%d ",
|
|
|
|
ntohs(tcp->th_sport));
|
|
|
|
else
|
|
|
|
len += snprintf(SNPARGS(proto, len), " ");
|
|
|
|
len += snprintf(SNPARGS(proto, len), "%s",
|
|
|
|
inet_ntoa(ip->ip_dst));
|
2001-01-26 06:49:34 +00:00
|
|
|
if (offset == 0)
|
2000-05-14 02:18:43 +00:00
|
|
|
snprintf(SNPARGS(proto, len), ":%d",
|
|
|
|
ntohs(tcp->th_dport));
|
|
|
|
break;
|
|
|
|
case IPPROTO_UDP:
|
|
|
|
len = snprintf(SNPARGS(proto, 0), "UDP %s",
|
|
|
|
inet_ntoa(ip->ip_src));
|
2001-01-26 06:49:34 +00:00
|
|
|
if (offset == 0)
|
2000-05-14 02:18:43 +00:00
|
|
|
len += snprintf(SNPARGS(proto, len), ":%d ",
|
|
|
|
ntohs(udp->uh_sport));
|
|
|
|
else
|
|
|
|
len += snprintf(SNPARGS(proto, len), " ");
|
|
|
|
len += snprintf(SNPARGS(proto, len), "%s",
|
|
|
|
inet_ntoa(ip->ip_dst));
|
2001-01-26 06:49:34 +00:00
|
|
|
if (offset == 0)
|
2000-05-14 02:18:43 +00:00
|
|
|
snprintf(SNPARGS(proto, len), ":%d",
|
|
|
|
ntohs(udp->uh_dport));
|
|
|
|
break;
|
|
|
|
case IPPROTO_ICMP:
|
2001-01-26 06:49:34 +00:00
|
|
|
if (offset == 0)
|
2000-05-14 02:18:43 +00:00
|
|
|
len = snprintf(SNPARGS(proto, 0), "ICMP:%u.%u ",
|
|
|
|
icmp->icmp_type, icmp->icmp_code);
|
|
|
|
else
|
|
|
|
len = snprintf(SNPARGS(proto, 0), "ICMP ");
|
|
|
|
len += snprintf(SNPARGS(proto, len), "%s",
|
|
|
|
inet_ntoa(ip->ip_src));
|
|
|
|
snprintf(SNPARGS(proto, len), " %s", inet_ntoa(ip->ip_dst));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
len = snprintf(SNPARGS(proto, 0), "P:%d %s", ip->ip_p,
|
|
|
|
inet_ntoa(ip->ip_src));
|
|
|
|
snprintf(SNPARGS(proto, len), " %s", inet_ntoa(ip->ip_dst));
|
|
|
|
break;
|
1998-12-31 07:43:29 +00:00
|
|
|
}
|
2000-05-14 02:18:43 +00:00
|
|
|
|
2001-01-26 06:49:34 +00:00
|
|
|
if (offset != 0)
|
2000-05-14 02:18:43 +00:00
|
|
|
snprintf(SNPARGS(fragment, 0), " Fragment = %d",
|
2001-01-26 06:49:34 +00:00
|
|
|
offset);
|
2000-05-14 02:18:43 +00:00
|
|
|
else
|
|
|
|
fragment[0] = '\0';
|
|
|
|
if (oif)
|
|
|
|
log(LOG_SECURITY | LOG_INFO, "%s %s %s out via %s%d%s\n",
|
|
|
|
name, action, proto, oif->if_name, oif->if_unit, fragment);
|
|
|
|
else if (rif)
|
|
|
|
log(LOG_SECURITY | LOG_INFO, "%s %s %s in via %s%d%s\n", name,
|
|
|
|
action, proto, rif->if_name, rif->if_unit, fragment);
|
|
|
|
else
|
|
|
|
log(LOG_SECURITY | LOG_INFO, "%s %s %s%s\n", name, action,
|
|
|
|
proto, fragment);
|
|
|
|
if ((f ? f->fw_logamount != 0 : 1) &&
|
|
|
|
count == (f ? f->fw_loghighest : fw_verbose_limit))
|
|
|
|
log(LOG_SECURITY | LOG_NOTICE,
|
|
|
|
"ipfw: limit %d reached on entry %d\n",
|
|
|
|
f ? f->fw_logamount : fw_verbose_limit,
|
|
|
|
f ? f->fw_number : -1);
|
1998-12-14 18:09:13 +00:00
|
|
|
}
|
|
|
|
|
2000-02-10 14:17:40 +00:00
|
|
|
static __inline int
|
|
|
|
hash_packet(struct ipfw_flow_id *id)
|
|
|
|
{
|
|
|
|
u_int32_t i ;
|
|
|
|
|
|
|
|
i = (id->dst_ip) ^ (id->src_ip) ^ (id->dst_port) ^ (id->src_port);
|
|
|
|
i &= (curr_dyn_buckets - 1) ;
|
|
|
|
return i ;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define TIME_LEQ(a,b) ((int)((a)-(b)) <= 0)
|
|
|
|
/*
|
|
|
|
* Remove all dynamic rules pointing to a given chain, or all
|
|
|
|
* rules if chain == NULL. Second parameter is 1 if we want to
|
|
|
|
* delete unconditionally, otherwise only expired rules are removed.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
remove_dyn_rule(struct ip_fw_chain *chain, int force)
|
|
|
|
{
|
|
|
|
struct ipfw_dyn_rule *prev, *q, *old_q ;
|
|
|
|
int i ;
|
|
|
|
static u_int32_t last_remove = 0 ;
|
|
|
|
|
|
|
|
if (ipfw_dyn_v == NULL || dyn_count == 0)
|
|
|
|
return ;
|
|
|
|
/* do not expire more than once per second, it is useless */
|
|
|
|
if (force == 0 && last_remove == time_second)
|
|
|
|
return ;
|
|
|
|
last_remove = time_second ;
|
|
|
|
|
|
|
|
for (i = 0 ; i < curr_dyn_buckets ; i++) {
|
|
|
|
for (prev=NULL, q = ipfw_dyn_v[i] ; q ; ) {
|
|
|
|
if ( (chain == NULL || chain == q->chain) &&
|
|
|
|
(force || TIME_LEQ( q->expire , time_second ) ) ) {
|
|
|
|
DEB(printf("-- remove entry 0x%08x %d -> 0x%08x %d, %d left\n",
|
|
|
|
(q->id.src_ip), (q->id.src_port),
|
|
|
|
(q->id.dst_ip), (q->id.dst_port), dyn_count-1 ); )
|
|
|
|
old_q = q ;
|
|
|
|
if (prev != NULL)
|
|
|
|
prev->next = q = q->next ;
|
|
|
|
else
|
|
|
|
ipfw_dyn_v[i] = q = q->next ;
|
|
|
|
dyn_count-- ;
|
|
|
|
free(old_q, M_IPFW);
|
|
|
|
continue ;
|
|
|
|
} else {
|
|
|
|
prev = q ;
|
|
|
|
q = q->next ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ipfw_dyn_rule *
|
2000-02-29 17:51:25 +00:00
|
|
|
lookup_dyn_rule(struct ipfw_flow_id *pkt, int *match_direction)
|
2000-02-10 14:17:40 +00:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* stateful ipfw extensions.
|
|
|
|
* Lookup into dynamic session queue
|
|
|
|
*/
|
|
|
|
struct ipfw_dyn_rule *prev, *q, *old_q ;
|
|
|
|
int i, dir = 0;
|
|
|
|
#define MATCH_FORWARD 1
|
|
|
|
|
|
|
|
if (ipfw_dyn_v == NULL)
|
|
|
|
return NULL ;
|
|
|
|
i = hash_packet( pkt );
|
|
|
|
for (prev=NULL, q = ipfw_dyn_v[i] ; q != NULL ; ) {
|
2000-02-29 17:51:25 +00:00
|
|
|
if (TIME_LEQ( q->expire , time_second ) ) { /* expire entry */
|
|
|
|
old_q = q ;
|
|
|
|
if (prev != NULL)
|
|
|
|
prev->next = q = q->next ;
|
|
|
|
else
|
|
|
|
ipfw_dyn_v[i] = q = q->next ;
|
|
|
|
dyn_count-- ;
|
|
|
|
free(old_q, M_IPFW);
|
|
|
|
continue ;
|
|
|
|
}
|
|
|
|
if ( pkt->proto == q->id.proto) {
|
|
|
|
switch (q->type) {
|
|
|
|
default: /* bidirectional rule, no masks */
|
2000-02-10 14:17:40 +00:00
|
|
|
if (pkt->src_ip == q->id.src_ip &&
|
|
|
|
pkt->dst_ip == q->id.dst_ip &&
|
|
|
|
pkt->src_port == q->id.src_port &&
|
|
|
|
pkt->dst_port == q->id.dst_port ) {
|
|
|
|
dir = MATCH_FORWARD ;
|
|
|
|
goto found ;
|
|
|
|
}
|
|
|
|
if (pkt->src_ip == q->id.dst_ip &&
|
|
|
|
pkt->dst_ip == q->id.src_ip &&
|
|
|
|
pkt->src_port == q->id.dst_port &&
|
2000-02-10 16:50:53 +00:00
|
|
|
pkt->dst_port == q->id.src_port ) {
|
2000-02-10 14:17:40 +00:00
|
|
|
dir = 0 ; /* reverse match */
|
|
|
|
goto found ;
|
2000-02-10 16:50:53 +00:00
|
|
|
}
|
2000-02-29 17:51:25 +00:00
|
|
|
break ;
|
2000-02-10 16:50:53 +00:00
|
|
|
}
|
2000-02-29 17:51:25 +00:00
|
|
|
}
|
|
|
|
prev = q ;
|
|
|
|
q = q->next ;
|
2000-02-10 14:17:40 +00:00
|
|
|
}
|
|
|
|
return NULL ; /* clearly not found */
|
|
|
|
found:
|
2000-02-29 17:51:25 +00:00
|
|
|
if ( prev != NULL) { /* found and not in front */
|
|
|
|
prev->next = q->next ;
|
|
|
|
q->next = ipfw_dyn_v[i] ;
|
|
|
|
ipfw_dyn_v[i] = q ;
|
|
|
|
}
|
|
|
|
if (pkt->proto == IPPROTO_TCP) {
|
|
|
|
/* update state according to flags */
|
|
|
|
u_char flags = pkt->flags & (TH_FIN|TH_SYN|TH_RST);
|
|
|
|
q->state |= (dir == MATCH_FORWARD ) ? flags : (flags << 8);
|
|
|
|
switch (q->state) {
|
|
|
|
case TH_SYN :
|
|
|
|
/* opening */
|
|
|
|
q->expire = time_second + dyn_syn_lifetime ;
|
|
|
|
break ;
|
|
|
|
case TH_SYN | (TH_SYN << 8) :
|
|
|
|
/* move to established */
|
|
|
|
q->expire = time_second + dyn_ack_lifetime ;
|
|
|
|
break ;
|
|
|
|
case TH_SYN | (TH_SYN << 8) | TH_FIN :
|
|
|
|
case TH_SYN | (TH_SYN << 8) | (TH_FIN << 8) :
|
|
|
|
/* one side tries to close */
|
2001-03-27 05:28:30 +00:00
|
|
|
q->expire = time_second + dyn_ack_lifetime ;
|
2000-02-29 17:51:25 +00:00
|
|
|
break ;
|
|
|
|
case TH_SYN | (TH_SYN << 8) | TH_FIN | (TH_FIN << 8) :
|
|
|
|
/* both sides closed */
|
|
|
|
q->expire = time_second + dyn_fin_lifetime ;
|
|
|
|
break ;
|
|
|
|
default:
|
2000-05-02 15:39:36 +00:00
|
|
|
#if 0
|
2000-06-08 09:45:23 +00:00
|
|
|
/*
|
|
|
|
* reset or some invalid combination, but can also
|
|
|
|
* occur if we use keep-state the wrong way.
|
|
|
|
*/
|
2000-02-29 17:51:25 +00:00
|
|
|
if ( (q->state & ((TH_RST << 8)|TH_RST)) == 0)
|
|
|
|
printf("invalid state: 0x%x\n", q->state);
|
2000-05-02 15:39:36 +00:00
|
|
|
#endif
|
2000-02-29 17:51:25 +00:00
|
|
|
q->expire = time_second + dyn_rst_lifetime ;
|
|
|
|
break ;
|
2000-02-10 14:17:40 +00:00
|
|
|
}
|
2000-02-29 17:51:25 +00:00
|
|
|
} else {
|
|
|
|
/* should do something for UDP and others... */
|
|
|
|
q->expire = time_second + dyn_short_lifetime ;
|
2000-02-10 14:17:40 +00:00
|
|
|
}
|
2000-02-29 17:51:25 +00:00
|
|
|
if (match_direction)
|
|
|
|
*match_direction = dir ;
|
2000-02-10 14:17:40 +00:00
|
|
|
return q ;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Install state for a dynamic session.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void
|
|
|
|
add_dyn_rule(struct ipfw_flow_id *id, struct ipfw_flow_id *mask,
|
|
|
|
struct ip_fw_chain *chain)
|
|
|
|
{
|
|
|
|
struct ipfw_dyn_rule *r ;
|
|
|
|
|
|
|
|
int i ;
|
|
|
|
if (ipfw_dyn_v == NULL ||
|
|
|
|
(dyn_count == 0 && dyn_buckets != curr_dyn_buckets)) {
|
|
|
|
/* try reallocation, make sure we have a power of 2 */
|
|
|
|
u_int32_t i = dyn_buckets ;
|
|
|
|
while ( i > 0 && (i & 1) == 0 )
|
|
|
|
i >>= 1 ;
|
|
|
|
if (i != 1) /* not a power of 2 */
|
|
|
|
dyn_buckets = curr_dyn_buckets ; /* reset */
|
|
|
|
else {
|
|
|
|
if (ipfw_dyn_v != NULL)
|
|
|
|
free(ipfw_dyn_v, M_IPFW);
|
|
|
|
ipfw_dyn_v = malloc(curr_dyn_buckets * sizeof r,
|
2000-12-08 21:51:06 +00:00
|
|
|
M_IPFW, M_DONTWAIT | M_ZERO);
|
2000-02-10 14:17:40 +00:00
|
|
|
if (ipfw_dyn_v == NULL)
|
|
|
|
return ; /* failed ! */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
i = hash_packet(id);
|
|
|
|
|
2000-12-08 21:51:06 +00:00
|
|
|
r = malloc(sizeof *r, M_IPFW, M_DONTWAIT | M_ZERO);
|
2000-02-10 14:17:40 +00:00
|
|
|
if (r == NULL) {
|
|
|
|
printf ("sorry cannot allocate state\n");
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mask)
|
|
|
|
r->mask = *mask ;
|
|
|
|
r->id = *id ;
|
|
|
|
r->expire = time_second + dyn_syn_lifetime ;
|
|
|
|
r->chain = chain ;
|
|
|
|
r->type = ((struct ip_fw_ext *)chain->rule)->dyn_type ;
|
|
|
|
|
|
|
|
r->bucket = i ;
|
|
|
|
r->next = ipfw_dyn_v[i] ;
|
|
|
|
ipfw_dyn_v[i] = r ;
|
|
|
|
dyn_count++ ;
|
|
|
|
DEB(printf("-- add entry 0x%08x %d -> 0x%08x %d, %d left\n",
|
|
|
|
(r->id.src_ip), (r->id.src_port),
|
|
|
|
(r->id.dst_ip), (r->id.dst_port),
|
|
|
|
dyn_count ); )
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Install dynamic state.
|
|
|
|
* There are different types of dynamic rules which can be installed.
|
|
|
|
* The type is in chain->dyn_type.
|
|
|
|
* Type 0 (default) is a bidirectional rule
|
|
|
|
*/
|
|
|
|
static void
|
2000-05-14 02:18:43 +00:00
|
|
|
install_state(struct ip_fw_chain *chain)
|
2000-02-10 14:17:40 +00:00
|
|
|
{
|
|
|
|
struct ipfw_dyn_rule *q ;
|
2000-06-08 09:45:23 +00:00
|
|
|
static int last_log ;
|
|
|
|
|
2000-02-10 14:17:40 +00:00
|
|
|
u_long type = ((struct ip_fw_ext *)chain->rule)->dyn_type ;
|
|
|
|
|
|
|
|
DEB(printf("-- install state type %d 0x%08lx %u -> 0x%08lx %u\n",
|
|
|
|
type,
|
|
|
|
(last_pkt.src_ip), (last_pkt.src_port),
|
|
|
|
(last_pkt.dst_ip), (last_pkt.dst_port) );)
|
|
|
|
|
2000-02-29 17:51:25 +00:00
|
|
|
q = lookup_dyn_rule(&last_pkt, NULL) ;
|
2000-02-10 14:17:40 +00:00
|
|
|
if (q != NULL) {
|
2000-06-08 09:45:23 +00:00
|
|
|
if (last_log == time_second)
|
|
|
|
return ;
|
|
|
|
last_log = time_second ;
|
2000-02-10 14:17:40 +00:00
|
|
|
printf(" entry already present, done\n");
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
if (dyn_count >= dyn_max) /* try remove old ones... */
|
|
|
|
remove_dyn_rule(NULL, 0 /* expire */);
|
|
|
|
if (dyn_count >= dyn_max) {
|
2000-06-08 09:45:23 +00:00
|
|
|
if (last_log == time_second)
|
|
|
|
return ;
|
|
|
|
last_log = time_second ;
|
2000-02-10 14:17:40 +00:00
|
|
|
printf(" Too many dynamic rules, sorry\n");
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
switch (type) {
|
|
|
|
default: /* bidir rule */
|
|
|
|
add_dyn_rule(&last_pkt, NULL, chain);
|
|
|
|
break ;
|
|
|
|
}
|
2000-02-29 17:51:25 +00:00
|
|
|
q = lookup_dyn_rule(&last_pkt, NULL) ; /* XXX this just sets the lifetime ... */
|
2000-02-10 14:17:40 +00:00
|
|
|
}
|
|
|
|
|
1998-12-14 18:09:13 +00:00
|
|
|
/*
|
|
|
|
* given an ip_fw_chain *, lookup_next_rule will return a pointer
|
|
|
|
* of the same type to the next one. This can be either the jump
|
|
|
|
* target (for skipto instructions) or the next one in the chain (in
|
|
|
|
* all other cases including a missing jump target).
|
|
|
|
* Backward jumps are not allowed, so start looking from the next
|
|
|
|
* rule...
|
|
|
|
*/
|
|
|
|
static struct ip_fw_chain * lookup_next_rule(struct ip_fw_chain *me);
|
|
|
|
|
|
|
|
static struct ip_fw_chain *
|
|
|
|
lookup_next_rule(struct ip_fw_chain *me)
|
|
|
|
{
|
|
|
|
struct ip_fw_chain *chain ;
|
|
|
|
int rule = me->rule->fw_skipto_rule ; /* guess... */
|
|
|
|
|
|
|
|
if ( (me->rule->fw_flg & IP_FW_F_COMMAND) == IP_FW_F_SKIPTO )
|
2001-02-10 00:10:18 +00:00
|
|
|
for (chain = LIST_NEXT(me,next); chain ; chain = LIST_NEXT(chain,next))
|
1998-12-14 18:09:13 +00:00
|
|
|
if (chain->rule->fw_number >= rule)
|
|
|
|
return chain ;
|
2001-02-10 00:10:18 +00:00
|
|
|
return LIST_NEXT(me,next) ; /* failure or not a skipto */
|
1998-12-14 18:09:13 +00:00
|
|
|
}
|
1995-10-01 21:52:50 +00:00
|
|
|
|
1994-10-28 15:09:49 +00:00
|
|
|
/*
|
1997-06-02 05:02:37 +00:00
|
|
|
* Parameters:
|
1996-07-10 19:44:30 +00:00
|
|
|
*
|
1998-12-14 18:09:13 +00:00
|
|
|
* pip Pointer to packet header (struct ip **)
|
1997-06-02 05:02:37 +00:00
|
|
|
* hlen Packet header length
|
|
|
|
* oif Outgoing interface, or NULL if packet is incoming
|
1998-06-06 19:39:10 +00:00
|
|
|
* *cookie Skip up to the first rule past this rule number;
|
2000-05-14 02:18:43 +00:00
|
|
|
* upon return, non-zero port number for divert or tee.
|
|
|
|
* Special case: cookie == NULL on input for bridging.
|
1997-06-02 05:02:37 +00:00
|
|
|
* *m The packet; we set to NULL when/if we nuke it.
|
1998-12-14 18:09:13 +00:00
|
|
|
* *flow_id pointer to the last matching rule (in/out)
|
|
|
|
* *next_hop socket we are forwarding to (in/out).
|
1996-07-10 19:44:30 +00:00
|
|
|
*
|
|
|
|
* Return value:
|
|
|
|
*
|
2001-02-10 00:10:18 +00:00
|
|
|
* IP_FW_PORT_DENY_FLAG the packet must be dropped.
|
1997-06-02 05:02:37 +00:00
|
|
|
* 0 The packet is to be accepted and routed normally OR
|
|
|
|
* the packet was denied/rejected and has been dropped;
|
|
|
|
* in the latter case, *m is equal to NULL upon return.
|
1999-12-06 00:43:07 +00:00
|
|
|
* port Divert the packet to port, with these caveats:
|
|
|
|
*
|
|
|
|
* - If IP_FW_PORT_TEE_FLAG is set, tee the packet instead
|
|
|
|
* of diverting it (ie, 'ipfw tee').
|
|
|
|
*
|
|
|
|
* - If IP_FW_PORT_DYNT_FLAG is set, interpret the lower
|
|
|
|
* 16 bits as a dummynet pipe number instead of diverting
|
1994-10-28 15:09:49 +00:00
|
|
|
*/
|
|
|
|
|
1996-05-08 04:29:08 +00:00
|
|
|
static int
|
1998-05-25 10:37:48 +00:00
|
|
|
ip_fw_chk(struct ip **pip, int hlen,
|
1998-07-06 03:20:19 +00:00
|
|
|
struct ifnet *oif, u_int16_t *cookie, struct mbuf **m,
|
1998-12-14 18:09:13 +00:00
|
|
|
struct ip_fw_chain **flow_id,
|
1998-07-06 03:20:19 +00:00
|
|
|
struct sockaddr_in **next_hop)
|
1994-10-28 15:09:49 +00:00
|
|
|
{
|
1996-02-23 15:47:58 +00:00
|
|
|
struct ip_fw_chain *chain;
|
2000-02-10 14:17:40 +00:00
|
|
|
struct ip_fw *f = NULL, *rule = NULL;
|
2000-05-14 02:18:43 +00:00
|
|
|
struct ip *ip = *pip;
|
1997-06-02 05:02:37 +00:00
|
|
|
struct ifnet *const rif = (*m)->m_pkthdr.rcvif;
|
2001-02-13 14:12:37 +00:00
|
|
|
struct ifnet *tif;
|
1998-12-31 07:43:29 +00:00
|
|
|
u_short offset = 0 ;
|
2000-01-08 11:31:43 +00:00
|
|
|
u_short src_port = 0, dst_port = 0;
|
|
|
|
struct in_addr src_ip, dst_ip; /* XXX */
|
2000-02-10 14:17:40 +00:00
|
|
|
u_int8_t proto= 0, flags = 0 ; /* XXX */
|
2000-05-14 02:18:43 +00:00
|
|
|
u_int16_t skipto, bridgeCookie;
|
2001-01-26 06:49:34 +00:00
|
|
|
u_int16_t ip_len;
|
1999-12-06 00:43:07 +00:00
|
|
|
|
2000-02-10 14:17:40 +00:00
|
|
|
int dyn_checked = 0 ; /* set after dyn.rules have been checked. */
|
2000-02-29 17:51:25 +00:00
|
|
|
int direction = MATCH_FORWARD ; /* dirty trick... */
|
2000-02-10 14:17:40 +00:00
|
|
|
struct ipfw_dyn_rule *q = NULL ;
|
2000-05-14 02:18:43 +00:00
|
|
|
|
|
|
|
/* Special hack for bridging (as usual) */
|
|
|
|
if (cookie == NULL) {
|
|
|
|
bridgeCookie = 0;
|
|
|
|
cookie = &bridgeCookie;
|
2001-01-26 06:49:34 +00:00
|
|
|
#define BRIDGED (cookie == &bridgeCookie)
|
|
|
|
hlen = ip->ip_hl << 2;
|
2000-05-14 02:18:43 +00:00
|
|
|
}
|
|
|
|
|
1999-12-06 00:43:07 +00:00
|
|
|
/* Grab and reset cookie */
|
|
|
|
skipto = *cookie;
|
|
|
|
*cookie = 0;
|
1994-10-28 15:09:49 +00:00
|
|
|
|
2000-05-14 02:18:43 +00:00
|
|
|
#define PULLUP_TO(len) do { \
|
|
|
|
if ((*m)->m_len < (len)) { \
|
2001-01-27 02:31:08 +00:00
|
|
|
ip = NULL ; \
|
2000-05-14 02:18:43 +00:00
|
|
|
if ((*m = m_pullup(*m, (len))) == 0) \
|
|
|
|
goto bogusfrag; \
|
|
|
|
ip = mtod(*m, struct ip *); \
|
|
|
|
*pip = ip; \
|
|
|
|
} \
|
2000-01-08 11:31:43 +00:00
|
|
|
} while (0)
|
|
|
|
|
|
|
|
/*
|
2000-05-14 02:18:43 +00:00
|
|
|
* Collect parameters into local variables for faster matching.
|
2000-01-08 11:31:43 +00:00
|
|
|
*/
|
2000-10-27 07:19:17 +00:00
|
|
|
proto = ip->ip_p;
|
|
|
|
src_ip = ip->ip_src;
|
|
|
|
dst_ip = ip->ip_dst;
|
2001-01-26 19:43:54 +00:00
|
|
|
if (0 && BRIDGED) { /* not yet... */
|
|
|
|
offset = (ntohs(ip->ip_off) & IP_OFFMASK);
|
|
|
|
ip_len = ntohs(ip->ip_len);
|
2001-01-26 06:49:34 +00:00
|
|
|
} else {
|
|
|
|
offset = (ip->ip_off & IP_OFFMASK);
|
|
|
|
ip_len = ip->ip_len;
|
|
|
|
}
|
2000-10-27 07:19:17 +00:00
|
|
|
if (offset == 0) {
|
2000-01-08 11:31:43 +00:00
|
|
|
struct tcphdr *tcp;
|
|
|
|
struct udphdr *udp;
|
|
|
|
|
|
|
|
switch (proto) {
|
|
|
|
case IPPROTO_TCP :
|
2000-10-06 12:12:09 +00:00
|
|
|
PULLUP_TO(hlen + sizeof(struct tcphdr));
|
2000-01-08 11:31:43 +00:00
|
|
|
tcp =(struct tcphdr *)((u_int32_t *)ip + ip->ip_hl);
|
|
|
|
dst_port = tcp->th_dport ;
|
|
|
|
src_port = tcp->th_sport ;
|
2000-02-10 14:17:40 +00:00
|
|
|
flags = tcp->th_flags ;
|
2000-01-08 11:31:43 +00:00
|
|
|
break ;
|
|
|
|
|
|
|
|
case IPPROTO_UDP :
|
2000-10-06 12:12:09 +00:00
|
|
|
PULLUP_TO(hlen + sizeof(struct udphdr));
|
2000-01-08 11:31:43 +00:00
|
|
|
udp =(struct udphdr *)((u_int32_t *)ip + ip->ip_hl);
|
|
|
|
dst_port = udp->uh_dport ;
|
|
|
|
src_port = udp->uh_sport ;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IPPROTO_ICMP:
|
2000-10-06 12:12:09 +00:00
|
|
|
PULLUP_TO(hlen + 4); /* type, code and checksum. */
|
2000-02-10 14:17:40 +00:00
|
|
|
flags = ((struct icmp *)
|
|
|
|
((u_int32_t *)ip + ip->ip_hl))->icmp_type ;
|
2000-01-08 11:31:43 +00:00
|
|
|
break ;
|
|
|
|
|
|
|
|
default :
|
2000-10-06 12:12:09 +00:00
|
|
|
break;
|
2000-01-08 11:31:43 +00:00
|
|
|
}
|
|
|
|
}
|
2000-10-27 07:19:17 +00:00
|
|
|
#undef PULLUP_TO
|
|
|
|
last_pkt.src_ip = ntohl(src_ip.s_addr);
|
|
|
|
last_pkt.dst_ip = ntohl(dst_ip.s_addr);
|
|
|
|
last_pkt.proto = proto;
|
|
|
|
last_pkt.src_port = ntohs(src_port);
|
|
|
|
last_pkt.dst_port = ntohs(dst_port);
|
|
|
|
last_pkt.flags = flags;
|
2000-01-08 11:31:43 +00:00
|
|
|
|
1998-12-14 18:09:13 +00:00
|
|
|
if (*flow_id) {
|
1999-12-06 00:43:07 +00:00
|
|
|
/* Accept if passed first test */
|
|
|
|
if (fw_one_pass)
|
|
|
|
return 0;
|
|
|
|
/*
|
|
|
|
* Packet has already been tagged. Look for the next rule
|
|
|
|
* to restart processing.
|
|
|
|
*/
|
2001-02-10 00:10:18 +00:00
|
|
|
chain = LIST_NEXT(*flow_id, next);
|
1999-12-06 00:43:07 +00:00
|
|
|
|
|
|
|
if ((chain = (*flow_id)->rule->next_rule_ptr) == NULL)
|
|
|
|
chain = (*flow_id)->rule->next_rule_ptr =
|
|
|
|
lookup_next_rule(*flow_id);
|
|
|
|
if (chain == NULL)
|
1998-05-25 10:37:48 +00:00
|
|
|
goto dropit;
|
1999-12-06 00:43:07 +00:00
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* Go down the chain, looking for enlightment.
|
2000-01-08 11:31:43 +00:00
|
|
|
* If we've been asked to start at a given rule, do so.
|
1999-12-06 00:43:07 +00:00
|
|
|
*/
|
2001-02-10 00:10:18 +00:00
|
|
|
chain = LIST_FIRST(&ip_fw_chain_head);
|
1999-12-06 00:43:07 +00:00
|
|
|
if (skipto != 0) {
|
|
|
|
if (skipto >= IPFW_DEFAULT_RULE)
|
|
|
|
goto dropit;
|
|
|
|
while (chain && chain->rule->fw_number <= skipto)
|
2001-02-10 00:10:18 +00:00
|
|
|
chain = LIST_NEXT(chain, next);
|
1999-12-06 00:43:07 +00:00
|
|
|
if (chain == NULL)
|
|
|
|
goto dropit;
|
1998-05-25 10:37:48 +00:00
|
|
|
}
|
|
|
|
}
|
2000-01-08 11:31:43 +00:00
|
|
|
|
2000-02-10 14:17:40 +00:00
|
|
|
|
2001-02-10 00:10:18 +00:00
|
|
|
for (; chain; chain = LIST_NEXT(chain, next)) {
|
1998-12-14 18:09:13 +00:00
|
|
|
again:
|
|
|
|
f = chain->rule;
|
2000-01-08 11:31:43 +00:00
|
|
|
if (f->fw_number == IPFW_DEFAULT_RULE)
|
|
|
|
goto got_match ;
|
1994-11-28 12:35:14 +00:00
|
|
|
|
2000-02-10 14:17:40 +00:00
|
|
|
/*
|
|
|
|
* dynamic rules are checked at the first keep-state or
|
|
|
|
* check-state occurrence.
|
|
|
|
*/
|
|
|
|
if (f->fw_flg & (IP_FW_F_KEEP_S|IP_FW_F_CHECK_S) &&
|
|
|
|
dyn_checked == 0 ) {
|
|
|
|
dyn_checked = 1 ;
|
2000-05-14 02:18:43 +00:00
|
|
|
q = lookup_dyn_rule(&last_pkt, &direction);
|
2000-02-10 14:17:40 +00:00
|
|
|
if (q != NULL) {
|
2000-02-29 17:51:25 +00:00
|
|
|
DEB(printf("-- dynamic match 0x%08x %d %s 0x%08x %d\n",
|
2000-02-10 14:17:40 +00:00
|
|
|
(q->id.src_ip), (q->id.src_port),
|
2000-02-29 17:51:25 +00:00
|
|
|
(direction == MATCH_FORWARD ? "-->" : "<--"),
|
2000-02-10 14:17:40 +00:00
|
|
|
(q->id.dst_ip), (q->id.dst_port) ); )
|
|
|
|
chain = q->chain ;
|
2000-02-29 17:51:25 +00:00
|
|
|
f = chain->rule ;
|
2000-02-10 14:17:40 +00:00
|
|
|
q->pcnt++ ;
|
2001-01-26 06:49:34 +00:00
|
|
|
q->bcnt += ip_len;
|
2000-02-10 14:17:40 +00:00
|
|
|
goto got_match ; /* random not allowed here */
|
|
|
|
}
|
|
|
|
/* if this was a check-only rule, continue with next */
|
|
|
|
if (f->fw_flg & IP_FW_F_CHECK_S)
|
|
|
|
continue ;
|
|
|
|
}
|
2000-05-14 02:18:43 +00:00
|
|
|
|
|
|
|
/* Check if rule only valid for bridged packets */
|
2001-02-10 00:10:18 +00:00
|
|
|
if ((f->fw_flg & IP_FW_BRIDGED) != 0 && !(BRIDGED))
|
2000-05-14 02:18:43 +00:00
|
|
|
continue;
|
2000-02-10 14:17:40 +00:00
|
|
|
|
1998-04-21 18:54:53 +00:00
|
|
|
if (oif) {
|
|
|
|
/* Check direction outbound */
|
|
|
|
if (!(f->fw_flg & IP_FW_F_OUT))
|
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
/* Check direction inbound */
|
|
|
|
if (!(f->fw_flg & IP_FW_F_IN))
|
|
|
|
continue;
|
|
|
|
}
|
1996-02-24 00:17:35 +00:00
|
|
|
|
|
|
|
/* Fragments */
|
1998-12-31 07:43:29 +00:00
|
|
|
if ((f->fw_flg & IP_FW_F_FRAG) && offset == 0 )
|
1996-02-24 00:17:35 +00:00
|
|
|
continue;
|
|
|
|
|
2001-02-13 14:12:37 +00:00
|
|
|
if (f->fw_flg & IP_FW_F_SME) {
|
|
|
|
INADDR_TO_IFP(src_ip, tif);
|
|
|
|
if (tif == NULL)
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (f->fw_flg & IP_FW_F_DME) {
|
|
|
|
INADDR_TO_IFP(dst_ip, tif);
|
|
|
|
if (tif == NULL)
|
|
|
|
continue;
|
|
|
|
}
|
1996-02-23 15:47:58 +00:00
|
|
|
/* If src-addr doesn't match, not this rule. */
|
2000-01-08 11:31:43 +00:00
|
|
|
if (((f->fw_flg & IP_FW_F_INVSRC) != 0) ^ ((src_ip.s_addr
|
1997-06-04 22:09:15 +00:00
|
|
|
& f->fw_smsk.s_addr) != f->fw_src.s_addr))
|
1996-02-23 15:47:58 +00:00
|
|
|
continue;
|
1994-10-28 15:09:49 +00:00
|
|
|
|
1996-02-23 15:47:58 +00:00
|
|
|
/* If dest-addr doesn't match, not this rule. */
|
2000-01-08 11:31:43 +00:00
|
|
|
if (((f->fw_flg & IP_FW_F_INVDST) != 0) ^ ((dst_ip.s_addr
|
1997-06-04 22:09:15 +00:00
|
|
|
& f->fw_dmsk.s_addr) != f->fw_dst.s_addr))
|
1996-02-23 15:47:58 +00:00
|
|
|
continue;
|
1995-07-04 05:39:03 +00:00
|
|
|
|
1997-06-02 05:02:37 +00:00
|
|
|
/* Interface check */
|
|
|
|
if ((f->fw_flg & IF_FW_F_VIAHACK) == IF_FW_F_VIAHACK) {
|
|
|
|
struct ifnet *const iface = oif ? oif : rif;
|
1995-07-04 05:39:03 +00:00
|
|
|
|
1997-06-02 05:02:37 +00:00
|
|
|
/* Backwards compatibility hack for "via" */
|
|
|
|
if (!iface || !iface_match(iface,
|
|
|
|
&f->fw_in_if, f->fw_flg & IP_FW_F_OIFNAME))
|
1996-02-23 15:47:58 +00:00
|
|
|
continue;
|
1997-06-02 05:02:37 +00:00
|
|
|
} else {
|
|
|
|
/* Check receive interface */
|
|
|
|
if ((f->fw_flg & IP_FW_F_IIFACE)
|
|
|
|
&& (!rif || !iface_match(rif,
|
|
|
|
&f->fw_in_if, f->fw_flg & IP_FW_F_IIFNAME)))
|
1996-02-23 15:47:58 +00:00
|
|
|
continue;
|
1997-06-02 05:02:37 +00:00
|
|
|
/* Check outgoing interface */
|
|
|
|
if ((f->fw_flg & IP_FW_F_OIFACE)
|
|
|
|
&& (!oif || !iface_match(oif,
|
|
|
|
&f->fw_out_if, f->fw_flg & IP_FW_F_OIFNAME)))
|
1996-02-23 20:11:37 +00:00
|
|
|
continue;
|
1995-07-04 05:39:03 +00:00
|
|
|
}
|
1996-02-23 15:47:58 +00:00
|
|
|
|
2000-10-02 03:33:31 +00:00
|
|
|
/* Check IP header values */
|
|
|
|
if (f->fw_ipflg & IP_FW_IF_IPOPT && !ipopts_match(ip, f))
|
|
|
|
continue;
|
2001-01-26 06:49:34 +00:00
|
|
|
if (f->fw_ipflg & IP_FW_IF_IPLEN && f->fw_iplen != ip_len)
|
2000-10-02 03:33:31 +00:00
|
|
|
continue;
|
2000-10-03 12:18:11 +00:00
|
|
|
if (f->fw_ipflg & IP_FW_IF_IPID && f->fw_ipid != ntohs(ip->ip_id))
|
2000-10-02 03:33:31 +00:00
|
|
|
continue;
|
|
|
|
if (f->fw_ipflg & IP_FW_IF_IPTOS && !iptos_match(ip, f))
|
|
|
|
continue;
|
|
|
|
if (f->fw_ipflg & IP_FW_IF_IPTTL && f->fw_ipttl != ip->ip_ttl)
|
|
|
|
continue;
|
|
|
|
if (f->fw_ipflg & IP_FW_IF_IPVER && f->fw_ipver != ip->ip_v)
|
1997-06-02 05:02:37 +00:00
|
|
|
continue;
|
1997-06-04 22:09:15 +00:00
|
|
|
|
1999-06-19 18:43:33 +00:00
|
|
|
/* Check protocol; if wildcard, and no [ug]id, match */
|
|
|
|
if (f->fw_prot == IPPROTO_IP) {
|
|
|
|
if (!(f->fw_flg & (IP_FW_F_UID|IP_FW_F_GID)))
|
1999-08-11 15:34:47 +00:00
|
|
|
goto rnd_then_got_match;
|
1999-06-19 18:43:33 +00:00
|
|
|
} else
|
|
|
|
/* If different, don't match */
|
2000-01-08 11:31:43 +00:00
|
|
|
if (proto != f->fw_prot)
|
1999-06-19 18:43:33 +00:00
|
|
|
continue;
|
1994-11-16 10:17:11 +00:00
|
|
|
|
1999-06-19 18:43:33 +00:00
|
|
|
/* Protocol specific checks for uid only */
|
|
|
|
if (f->fw_flg & (IP_FW_F_UID|IP_FW_F_GID)) {
|
2000-01-08 11:31:43 +00:00
|
|
|
switch (proto) {
|
1999-06-19 18:43:33 +00:00
|
|
|
case IPPROTO_TCP:
|
|
|
|
{
|
|
|
|
struct inpcb *P;
|
|
|
|
|
|
|
|
if (offset == 1) /* cf. RFC 1858 */
|
|
|
|
goto bogusfrag;
|
|
|
|
if (offset != 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (oif)
|
2000-01-08 11:31:43 +00:00
|
|
|
P = in_pcblookup_hash(&tcbinfo, dst_ip,
|
|
|
|
dst_port, src_ip, src_port, 0,
|
1999-12-07 17:39:16 +00:00
|
|
|
oif);
|
1999-06-19 18:43:33 +00:00
|
|
|
else
|
2000-01-08 11:31:43 +00:00
|
|
|
P = in_pcblookup_hash(&tcbinfo, src_ip,
|
|
|
|
src_port, dst_ip, dst_port, 0,
|
1999-12-07 17:39:16 +00:00
|
|
|
NULL);
|
1999-06-19 18:43:33 +00:00
|
|
|
|
1999-09-19 02:17:02 +00:00
|
|
|
if (P && P->inp_socket) {
|
1999-06-19 18:43:33 +00:00
|
|
|
if (f->fw_flg & IP_FW_F_UID) {
|
1999-09-19 02:17:02 +00:00
|
|
|
if (P->inp_socket->so_cred->cr_uid !=
|
1999-06-19 18:43:33 +00:00
|
|
|
f->fw_uid)
|
|
|
|
continue;
|
|
|
|
} else if (!groupmember(f->fw_gid,
|
1999-09-19 02:17:02 +00:00
|
|
|
P->inp_socket->so_cred))
|
1999-06-19 18:43:33 +00:00
|
|
|
continue;
|
1999-12-06 00:43:07 +00:00
|
|
|
} else
|
|
|
|
continue;
|
1999-06-19 18:43:33 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case IPPROTO_UDP:
|
|
|
|
{
|
|
|
|
struct inpcb *P;
|
|
|
|
|
|
|
|
if (offset != 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (oif)
|
2000-01-08 11:31:43 +00:00
|
|
|
P = in_pcblookup_hash(&udbinfo, dst_ip,
|
|
|
|
dst_port, src_ip, src_port, 1,
|
1999-12-07 17:39:16 +00:00
|
|
|
oif);
|
1999-06-19 18:43:33 +00:00
|
|
|
else
|
2000-01-08 11:31:43 +00:00
|
|
|
P = in_pcblookup_hash(&udbinfo, src_ip,
|
|
|
|
src_port, dst_ip, dst_port, 1,
|
1999-12-07 17:39:16 +00:00
|
|
|
NULL);
|
1999-06-19 18:43:33 +00:00
|
|
|
|
1999-09-19 02:17:02 +00:00
|
|
|
if (P && P->inp_socket) {
|
1999-06-19 18:43:33 +00:00
|
|
|
if (f->fw_flg & IP_FW_F_UID) {
|
1999-09-19 02:17:02 +00:00
|
|
|
if (P->inp_socket->so_cred->cr_uid !=
|
1999-06-19 18:43:33 +00:00
|
|
|
f->fw_uid)
|
|
|
|
continue;
|
|
|
|
} else if (!groupmember(f->fw_gid,
|
1999-09-19 02:17:02 +00:00
|
|
|
P->inp_socket->so_cred))
|
1999-06-19 18:43:33 +00:00
|
|
|
continue;
|
1999-12-06 00:43:07 +00:00
|
|
|
} else
|
|
|
|
continue;
|
1999-06-19 18:43:33 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-06 00:43:07 +00:00
|
|
|
default:
|
|
|
|
continue;
|
|
|
|
}
|
1999-06-19 18:43:33 +00:00
|
|
|
}
|
|
|
|
|
1997-06-02 05:02:37 +00:00
|
|
|
/* Protocol specific checks */
|
2000-01-08 11:31:43 +00:00
|
|
|
switch (proto) {
|
1996-08-13 19:43:41 +00:00
|
|
|
case IPPROTO_TCP:
|
1997-06-02 05:02:37 +00:00
|
|
|
{
|
|
|
|
struct tcphdr *tcp;
|
1996-06-09 23:46:21 +00:00
|
|
|
|
1997-06-02 05:02:37 +00:00
|
|
|
if (offset == 1) /* cf. RFC 1858 */
|
|
|
|
goto bogusfrag;
|
1998-02-12 00:57:06 +00:00
|
|
|
if (offset != 0) {
|
|
|
|
/*
|
|
|
|
* TCP flags and ports aren't available in this
|
|
|
|
* packet -- if this rule specified either one,
|
|
|
|
* we consider the rule a non-match.
|
|
|
|
*/
|
|
|
|
if (f->fw_nports != 0 ||
|
2001-02-27 10:20:44 +00:00
|
|
|
f->fw_ipflg & IP_FW_IF_TCPMSK)
|
1998-02-12 00:57:06 +00:00
|
|
|
continue;
|
|
|
|
|
1997-06-02 05:02:37 +00:00
|
|
|
break;
|
1998-02-12 00:57:06 +00:00
|
|
|
}
|
1998-08-03 17:23:37 +00:00
|
|
|
tcp = (struct tcphdr *) ((u_int32_t *)ip + ip->ip_hl);
|
2000-06-08 15:34:51 +00:00
|
|
|
|
2000-10-02 03:33:31 +00:00
|
|
|
if (f->fw_ipflg & IP_FW_IF_TCPOPT && !tcpopts_match(tcp, f))
|
|
|
|
continue;
|
o IPFW incorrectly handled filtering in the presence of previously
reserved and now allocated TCP flags in incoming packets. This patch
stops overloading those bits in the IP firewall rules, and moves
colliding flags to a seperate field, ipflg. The IPFW userland
management tool, ipfw(8), is updated to reflect this change. New TCP
flags related to ECN are now included in tcp.h for reference, although
we don't currently implement TCP+ECN.
o To use this fix without completely rebuilding, it is sufficient to copy
ip_fw.h and tcp.h into your appropriate include directory, then rebuild
the ipfw kernel module, and ipfw tool, and install both. Note that a
mismatch between module and userland tool will result in incorrect
installation of firewall rules that may have unexpected effects. This
is an MFC candidate, following shakedown. This bug does not appear
to affect ipfilter.
Reviewed by: security-officer, billf
Reported by: Aragon Gouveia <aragon@phat.za.net>
2001-01-09 03:10:30 +00:00
|
|
|
if (((f->fw_ipflg & IP_FW_IF_TCPFLG) ||
|
|
|
|
(f->fw_ipflg & IP_FW_IF_TCPEST)) &&
|
|
|
|
!tcpflg_match(tcp, f))
|
2000-10-02 03:33:31 +00:00
|
|
|
continue;
|
|
|
|
if (f->fw_ipflg & IP_FW_IF_TCPSEQ && tcp->th_seq != f->fw_tcpseq)
|
|
|
|
continue;
|
|
|
|
if (f->fw_ipflg & IP_FW_IF_TCPACK && tcp->th_ack != f->fw_tcpack)
|
2000-06-08 15:34:51 +00:00
|
|
|
continue;
|
2000-10-02 03:33:31 +00:00
|
|
|
if (f->fw_ipflg & IP_FW_IF_TCPWIN && tcp->th_win != f->fw_tcpwin)
|
1997-06-02 05:02:37 +00:00
|
|
|
continue;
|
1996-08-13 19:43:41 +00:00
|
|
|
goto check_ports;
|
1997-06-02 05:02:37 +00:00
|
|
|
}
|
1995-07-04 05:39:03 +00:00
|
|
|
|
1996-08-13 19:43:41 +00:00
|
|
|
case IPPROTO_UDP:
|
1998-02-12 00:57:06 +00:00
|
|
|
if (offset != 0) {
|
|
|
|
/*
|
|
|
|
* Port specification is unavailable -- if this
|
|
|
|
* rule specifies a port, we consider the rule
|
|
|
|
* a non-match.
|
|
|
|
*/
|
|
|
|
if (f->fw_nports != 0)
|
|
|
|
continue;
|
|
|
|
|
1997-06-02 05:02:37 +00:00
|
|
|
break;
|
1998-02-12 00:57:06 +00:00
|
|
|
}
|
1996-08-13 19:43:41 +00:00
|
|
|
check_ports:
|
1998-01-08 03:03:54 +00:00
|
|
|
if (!port_match(&f->fw_uar.fw_pts[0],
|
2000-01-08 11:31:43 +00:00
|
|
|
IP_FW_GETNSRCP(f), ntohs(src_port),
|
|
|
|
f->fw_flg & IP_FW_F_SRNG,
|
|
|
|
f->fw_flg & IP_FW_F_SMSK))
|
1996-06-25 00:22:20 +00:00
|
|
|
continue;
|
1998-01-08 03:03:54 +00:00
|
|
|
if (!port_match(&f->fw_uar.fw_pts[IP_FW_GETNSRCP(f)],
|
2000-01-08 11:31:43 +00:00
|
|
|
IP_FW_GETNDSTP(f), ntohs(dst_port),
|
|
|
|
f->fw_flg & IP_FW_F_DRNG,
|
|
|
|
f->fw_flg & IP_FW_F_DMSK))
|
1996-06-25 00:22:20 +00:00
|
|
|
continue;
|
1996-08-13 19:43:41 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case IPPROTO_ICMP:
|
1997-06-02 05:02:37 +00:00
|
|
|
{
|
|
|
|
struct icmp *icmp;
|
|
|
|
|
|
|
|
if (offset != 0) /* Type isn't valid */
|
|
|
|
break;
|
1998-08-03 17:23:37 +00:00
|
|
|
icmp = (struct icmp *) ((u_int32_t *)ip + ip->ip_hl);
|
1996-08-13 19:43:41 +00:00
|
|
|
if (!icmptype_match(icmp, f))
|
|
|
|
continue;
|
|
|
|
break;
|
1997-06-02 05:02:37 +00:00
|
|
|
}
|
|
|
|
|
1999-12-06 00:43:07 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
|
1997-06-02 05:02:37 +00:00
|
|
|
bogusfrag:
|
2001-01-27 02:31:08 +00:00
|
|
|
if (fw_verbose && ip != NULL)
|
2001-01-26 06:49:34 +00:00
|
|
|
ipfw_report(NULL, ip, offset, rif, oif);
|
1999-12-06 00:43:07 +00:00
|
|
|
goto dropit;
|
|
|
|
|
1996-06-25 00:22:20 +00:00
|
|
|
}
|
1995-07-04 05:39:03 +00:00
|
|
|
|
1999-08-11 15:34:47 +00:00
|
|
|
rnd_then_got_match:
|
|
|
|
if ( ((struct ip_fw_ext *)f)->dont_match_prob &&
|
|
|
|
random() < ((struct ip_fw_ext *)f)->dont_match_prob )
|
|
|
|
continue ;
|
1996-02-23 15:47:58 +00:00
|
|
|
got_match:
|
2000-02-10 14:17:40 +00:00
|
|
|
/*
|
2000-02-29 17:51:25 +00:00
|
|
|
* If not a dynamic match (q == NULL) and keep-state, install
|
|
|
|
* a new dynamic entry.
|
2000-02-10 14:17:40 +00:00
|
|
|
*/
|
2000-02-29 17:51:25 +00:00
|
|
|
if (q == NULL && f->fw_flg & IP_FW_F_KEEP_S)
|
2000-05-14 02:18:43 +00:00
|
|
|
install_state(chain);
|
1997-06-02 05:02:37 +00:00
|
|
|
/* Update statistics */
|
|
|
|
f->fw_pcnt += 1;
|
2001-01-26 06:49:34 +00:00
|
|
|
f->fw_bcnt += ip_len;
|
1998-03-30 09:56:58 +00:00
|
|
|
f->timestamp = time_second;
|
1997-06-02 05:02:37 +00:00
|
|
|
|
|
|
|
/* Log to console if desired */
|
|
|
|
if ((f->fw_flg & IP_FW_F_PRN) && fw_verbose)
|
2001-01-26 06:49:34 +00:00
|
|
|
ipfw_report(f, ip, offset, rif, oif);
|
1997-06-02 05:02:37 +00:00
|
|
|
|
1996-07-10 19:44:30 +00:00
|
|
|
/* Take appropriate action */
|
1997-06-02 05:02:37 +00:00
|
|
|
switch (f->fw_flg & IP_FW_F_COMMAND) {
|
|
|
|
case IP_FW_F_ACCEPT:
|
|
|
|
return(0);
|
|
|
|
case IP_FW_F_COUNT:
|
1996-07-10 19:44:30 +00:00
|
|
|
continue;
|
1998-12-14 18:09:13 +00:00
|
|
|
#ifdef IPDIVERT
|
1997-06-02 05:02:37 +00:00
|
|
|
case IP_FW_F_DIVERT:
|
1998-06-06 19:39:10 +00:00
|
|
|
*cookie = f->fw_number;
|
1997-06-02 05:02:37 +00:00
|
|
|
return(f->fw_divert_port);
|
|
|
|
case IP_FW_F_TEE:
|
1999-12-06 00:43:07 +00:00
|
|
|
*cookie = f->fw_number;
|
|
|
|
return(f->fw_divert_port | IP_FW_PORT_TEE_FLAG);
|
1999-06-11 11:27:35 +00:00
|
|
|
#endif
|
1998-12-14 18:09:13 +00:00
|
|
|
case IP_FW_F_SKIPTO: /* XXX check */
|
|
|
|
if ( f->next_rule_ptr )
|
|
|
|
chain = f->next_rule_ptr ;
|
|
|
|
else
|
|
|
|
chain = lookup_next_rule(chain) ;
|
|
|
|
if (! chain) goto dropit;
|
|
|
|
goto again ;
|
|
|
|
#ifdef DUMMYNET
|
|
|
|
case IP_FW_F_PIPE:
|
2000-06-08 09:45:23 +00:00
|
|
|
case IP_FW_F_QUEUE:
|
2001-04-06 06:52:25 +00:00
|
|
|
*flow_id = chain;
|
1999-12-06 00:43:07 +00:00
|
|
|
return(f->fw_pipe_nr | IP_FW_PORT_DYNT_FLAG);
|
1997-06-02 05:02:37 +00:00
|
|
|
#endif
|
1998-07-06 03:20:19 +00:00
|
|
|
#ifdef IPFIREWALL_FORWARD
|
|
|
|
case IP_FW_F_FWD:
|
|
|
|
/* Change the next-hop address for this packet.
|
|
|
|
* Initially we'll only worry about directly
|
|
|
|
* reachable next-hop's, but ultimately
|
|
|
|
* we will work out for next-hops that aren't
|
|
|
|
* direct the route we would take for it. We
|
|
|
|
* [cs]ould leave this latter problem to
|
|
|
|
* ip_output.c. We hope to high [name the abode of
|
|
|
|
* your favourite deity] that ip_output doesn't modify
|
|
|
|
* the new value of next_hop (which is dst there)
|
|
|
|
*/
|
2000-02-29 17:51:25 +00:00
|
|
|
if (next_hop != NULL /* Make sure, first... */
|
|
|
|
&& (q == NULL || direction == MATCH_FORWARD) )
|
1998-07-06 03:20:19 +00:00
|
|
|
*next_hop = &(f->fw_fwd_ip);
|
|
|
|
return(0); /* Allow the packet */
|
|
|
|
#endif
|
1997-06-02 05:02:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Deny/reject this packet using this rule */
|
|
|
|
rule = f;
|
|
|
|
break;
|
1998-07-06 03:20:19 +00:00
|
|
|
|
1996-02-24 00:17:35 +00:00
|
|
|
}
|
1995-07-04 05:39:03 +00:00
|
|
|
|
2000-05-14 02:18:43 +00:00
|
|
|
/* Rule IPFW_DEFAULT_RULE should always be there and match */
|
|
|
|
KASSERT(chain != NULL, ("ip_fw: no chain"));
|
1996-07-10 19:44:30 +00:00
|
|
|
|
1996-02-23 15:47:58 +00:00
|
|
|
/*
|
1996-07-10 19:44:30 +00:00
|
|
|
* At this point, we're going to drop the packet.
|
1997-06-02 05:02:37 +00:00
|
|
|
* Send a reject notice if all of the following are true:
|
1996-07-10 19:44:30 +00:00
|
|
|
*
|
1997-06-02 05:02:37 +00:00
|
|
|
* - The packet matched a reject rule
|
1998-03-15 00:36:27 +00:00
|
|
|
* - The packet is not an ICMP packet, or is an ICMP query packet
|
1997-06-02 05:02:37 +00:00
|
|
|
* - The packet is not a multicast or broadcast packet
|
|
|
|
*/
|
|
|
|
if ((rule->fw_flg & IP_FW_F_COMMAND) == IP_FW_F_REJECT
|
1998-03-15 00:36:27 +00:00
|
|
|
&& (ip->ip_p != IPPROTO_ICMP || is_icmp_query(ip))
|
1997-06-02 05:02:37 +00:00
|
|
|
&& !((*m)->m_flags & (M_BCAST|M_MCAST))
|
|
|
|
&& !IN_MULTICAST(ntohl(ip->ip_dst.s_addr))) {
|
|
|
|
switch (rule->fw_reject_code) {
|
|
|
|
case IP_FW_REJECT_RST:
|
|
|
|
{
|
2001-01-26 06:49:34 +00:00
|
|
|
/* XXX warning, this code writes into the mbuf */
|
1997-06-02 05:02:37 +00:00
|
|
|
struct tcphdr *const tcp =
|
1998-08-03 17:23:37 +00:00
|
|
|
(struct tcphdr *) ((u_int32_t *)ip + ip->ip_hl);
|
1997-12-19 03:36:15 +00:00
|
|
|
struct tcpiphdr ti, *const tip = (struct tcpiphdr *) ip;
|
1997-06-02 05:02:37 +00:00
|
|
|
|
|
|
|
if (offset != 0 || (tcp->th_flags & TH_RST))
|
|
|
|
break;
|
|
|
|
ti.ti_i = *((struct ipovly *) ip);
|
|
|
|
ti.ti_t = *tcp;
|
1997-12-19 03:36:15 +00:00
|
|
|
bcopy(&ti, ip, sizeof(ti));
|
|
|
|
NTOHL(tip->ti_seq);
|
|
|
|
NTOHL(tip->ti_ack);
|
2001-01-26 06:49:34 +00:00
|
|
|
tip->ti_len = ip_len - hlen - (tip->ti_off << 2);
|
1997-06-02 05:02:37 +00:00
|
|
|
if (tcp->th_flags & TH_ACK) {
|
2000-01-09 19:17:30 +00:00
|
|
|
tcp_respond(NULL, (void *)ip, tcp, *m,
|
2001-03-09 08:13:08 +00:00
|
|
|
(tcp_seq)0, tcp->th_ack, TH_RST);
|
1997-06-02 05:02:37 +00:00
|
|
|
} else {
|
|
|
|
if (tcp->th_flags & TH_SYN)
|
1997-12-19 03:36:15 +00:00
|
|
|
tip->ti_len++;
|
2000-01-09 19:17:30 +00:00
|
|
|
tcp_respond(NULL, (void *)ip, tcp, *m,
|
|
|
|
tip->ti_seq + tip->ti_len,
|
|
|
|
(tcp_seq)0, TH_RST|TH_ACK);
|
1997-06-02 05:02:37 +00:00
|
|
|
}
|
|
|
|
*m = NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: /* Send an ICMP unreachable using code */
|
|
|
|
icmp_error(*m, ICMP_UNREACH,
|
|
|
|
rule->fw_reject_code, 0L, 0);
|
|
|
|
*m = NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dropit:
|
|
|
|
/*
|
|
|
|
* Finally, drop the packet.
|
1996-02-23 15:47:58 +00:00
|
|
|
*/
|
2001-02-10 00:10:18 +00:00
|
|
|
return(IP_FW_PORT_DENY_FLAG);
|
2001-01-26 06:49:34 +00:00
|
|
|
#undef BRIDGED
|
1995-07-04 05:39:03 +00:00
|
|
|
}
|
1994-10-28 15:09:49 +00:00
|
|
|
|
1998-12-14 18:09:13 +00:00
|
|
|
/*
|
|
|
|
* when a rule is added/deleted, zero the direct pointers within
|
|
|
|
* all firewall rules. These will be reconstructed on the fly
|
|
|
|
* as packets are matched.
|
|
|
|
* Must be called at splnet().
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
flush_rule_ptrs()
|
|
|
|
{
|
|
|
|
struct ip_fw_chain *fcp ;
|
|
|
|
|
2001-02-10 00:10:18 +00:00
|
|
|
LIST_FOREACH(fcp, &ip_fw_chain_head, next) {
|
1998-12-14 18:09:13 +00:00
|
|
|
fcp->rule->next_rule_ptr = NULL ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1995-07-04 05:39:03 +00:00
|
|
|
static int
|
1996-06-09 23:46:21 +00:00
|
|
|
add_entry(struct ip_fw_head *chainptr, struct ip_fw *frwl)
|
1995-07-04 05:39:03 +00:00
|
|
|
{
|
1996-02-23 15:47:58 +00:00
|
|
|
struct ip_fw *ftmp = 0;
|
1999-08-11 15:34:47 +00:00
|
|
|
struct ip_fw_ext *ftmp_ext = 0 ;
|
1996-02-23 15:47:58 +00:00
|
|
|
struct ip_fw_chain *fwc = 0, *fcp, *fcpl = 0;
|
|
|
|
u_short nbr = 0;
|
1995-07-04 05:39:03 +00:00
|
|
|
int s;
|
|
|
|
|
1996-02-23 15:47:58 +00:00
|
|
|
fwc = malloc(sizeof *fwc, M_IPFW, M_DONTWAIT);
|
2000-12-08 21:51:06 +00:00
|
|
|
ftmp_ext = malloc(sizeof *ftmp_ext, M_IPFW, M_DONTWAIT | M_ZERO);
|
1999-08-11 15:34:47 +00:00
|
|
|
ftmp = &ftmp_ext->rule ;
|
1996-02-23 15:47:58 +00:00
|
|
|
if (!fwc || !ftmp) {
|
1996-08-05 02:35:04 +00:00
|
|
|
dprintf(("%s malloc said no\n", err_prefix));
|
1996-02-23 15:47:58 +00:00
|
|
|
if (fwc) free(fwc, M_IPFW);
|
|
|
|
if (ftmp) free(ftmp, M_IPFW);
|
1995-07-04 05:39:03 +00:00
|
|
|
return (ENOSPC);
|
|
|
|
}
|
1996-05-06 20:31:04 +00:00
|
|
|
|
1999-08-11 15:34:47 +00:00
|
|
|
bcopy(frwl, ftmp, sizeof(*ftmp));
|
|
|
|
if (ftmp->fw_flg & IP_FW_F_RND_MATCH)
|
1999-08-24 00:48:19 +00:00
|
|
|
ftmp_ext->dont_match_prob = (intptr_t)ftmp->pipe_ptr;
|
2000-02-10 14:17:40 +00:00
|
|
|
if (ftmp->fw_flg & IP_FW_F_KEEP_S)
|
|
|
|
ftmp_ext->dyn_type = (u_long)(ftmp->next_rule_ptr) ;
|
1999-08-11 15:34:47 +00:00
|
|
|
|
1997-08-06 00:19:05 +00:00
|
|
|
ftmp->fw_in_if.fu_via_if.name[FW_IFNLEN - 1] = '\0';
|
1995-07-04 05:39:03 +00:00
|
|
|
ftmp->fw_pcnt = 0L;
|
|
|
|
ftmp->fw_bcnt = 0L;
|
1998-12-14 18:09:13 +00:00
|
|
|
ftmp->next_rule_ptr = NULL ;
|
|
|
|
ftmp->pipe_ptr = NULL ;
|
1996-02-23 15:47:58 +00:00
|
|
|
fwc->rule = ftmp;
|
|
|
|
|
1996-05-06 20:31:04 +00:00
|
|
|
s = splnet();
|
|
|
|
|
2001-02-04 13:13:25 +00:00
|
|
|
if (LIST_FIRST(chainptr) == 0) {
|
2001-02-10 00:10:18 +00:00
|
|
|
LIST_INSERT_HEAD(chainptr, fwc, next);
|
1996-06-17 00:00:35 +00:00
|
|
|
splx(s);
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If entry number is 0, find highest numbered rule and add 100 */
|
|
|
|
if (ftmp->fw_number == 0) {
|
2001-02-10 00:10:18 +00:00
|
|
|
LIST_FOREACH(fcp, chainptr, next) {
|
1996-06-17 00:00:35 +00:00
|
|
|
if (fcp->rule->fw_number != (u_short)-1)
|
|
|
|
nbr = fcp->rule->fw_number;
|
|
|
|
else
|
1996-02-23 15:47:58 +00:00
|
|
|
break;
|
1996-06-17 00:00:35 +00:00
|
|
|
}
|
1998-08-23 03:07:17 +00:00
|
|
|
if (nbr < IPFW_DEFAULT_RULE - 100)
|
1996-06-17 00:00:35 +00:00
|
|
|
nbr += 100;
|
2000-10-12 07:59:14 +00:00
|
|
|
ftmp->fw_number = frwl->fw_number = nbr;
|
1996-06-17 00:00:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Got a valid number; now insert it, keeping the list ordered */
|
2001-02-10 00:10:18 +00:00
|
|
|
LIST_FOREACH(fcp, chainptr, next) {
|
1996-06-17 00:00:35 +00:00
|
|
|
if (fcp->rule->fw_number > ftmp->fw_number) {
|
|
|
|
if (fcpl) {
|
2001-02-10 00:10:18 +00:00
|
|
|
LIST_INSERT_AFTER(fcpl, fwc, next);
|
1996-02-23 15:47:58 +00:00
|
|
|
} else {
|
2001-02-10 00:10:18 +00:00
|
|
|
LIST_INSERT_HEAD(chainptr, fwc, next);
|
1994-10-31 23:58:04 +00:00
|
|
|
}
|
1996-06-17 00:00:35 +00:00
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
fcpl = fcp;
|
|
|
|
}
|
1995-07-04 05:39:03 +00:00
|
|
|
}
|
1998-12-14 18:09:13 +00:00
|
|
|
flush_rule_ptrs();
|
1996-02-23 15:47:58 +00:00
|
|
|
|
1995-07-04 05:39:03 +00:00
|
|
|
splx(s);
|
|
|
|
return (0);
|
1994-10-28 15:09:49 +00:00
|
|
|
}
|
|
|
|
|
1995-07-04 05:39:03 +00:00
|
|
|
static int
|
1997-06-02 05:02:37 +00:00
|
|
|
del_entry(struct ip_fw_head *chainptr, u_short number)
|
1994-10-28 15:09:49 +00:00
|
|
|
{
|
1996-02-23 15:47:58 +00:00
|
|
|
struct ip_fw_chain *fcp;
|
1994-10-28 15:09:49 +00:00
|
|
|
|
1998-01-05 00:57:15 +00:00
|
|
|
fcp = LIST_FIRST(chainptr);
|
1997-06-02 05:02:37 +00:00
|
|
|
if (number != (u_short)-1) {
|
2001-02-10 00:10:18 +00:00
|
|
|
for (; fcp; fcp = LIST_NEXT(fcp, next)) {
|
1997-06-02 05:02:37 +00:00
|
|
|
if (fcp->rule->fw_number == number) {
|
1998-01-04 22:36:12 +00:00
|
|
|
int s;
|
|
|
|
|
|
|
|
/* prevent access to rules while removing them */
|
|
|
|
s = splnet();
|
|
|
|
while (fcp && fcp->rule->fw_number == number) {
|
|
|
|
struct ip_fw_chain *next;
|
|
|
|
|
2001-01-26 06:49:34 +00:00
|
|
|
remove_dyn_rule(fcp, 1 /* delete */);
|
2001-02-10 00:10:18 +00:00
|
|
|
next = LIST_NEXT(fcp, next);
|
|
|
|
LIST_REMOVE(fcp, next);
|
1998-12-14 18:09:13 +00:00
|
|
|
#ifdef DUMMYNET
|
|
|
|
dn_rule_delete(fcp) ;
|
|
|
|
#endif
|
|
|
|
flush_rule_ptrs();
|
1998-01-04 22:36:12 +00:00
|
|
|
free(fcp->rule, M_IPFW);
|
|
|
|
free(fcp, M_IPFW);
|
|
|
|
fcp = next;
|
|
|
|
}
|
1996-05-06 20:31:04 +00:00
|
|
|
splx(s);
|
|
|
|
return 0;
|
|
|
|
}
|
1995-07-04 05:39:03 +00:00
|
|
|
}
|
|
|
|
}
|
1996-05-06 20:31:04 +00:00
|
|
|
|
1996-02-23 15:47:58 +00:00
|
|
|
return (EINVAL);
|
1994-12-13 15:57:34 +00:00
|
|
|
}
|
|
|
|
|
1996-06-09 23:46:21 +00:00
|
|
|
static int
|
1998-08-23 03:07:17 +00:00
|
|
|
zero_entry(struct ip_fw *frwl)
|
1996-06-09 23:46:21 +00:00
|
|
|
{
|
|
|
|
struct ip_fw_chain *fcp;
|
1998-08-23 03:07:17 +00:00
|
|
|
int s, cleared;
|
1996-06-09 23:46:21 +00:00
|
|
|
|
1998-08-23 03:07:17 +00:00
|
|
|
if (frwl == 0) {
|
1998-01-04 22:36:12 +00:00
|
|
|
s = splnet();
|
2001-02-10 00:10:18 +00:00
|
|
|
LIST_FOREACH(fcp, &ip_fw_chain_head, next) {
|
1996-06-09 23:46:21 +00:00
|
|
|
fcp->rule->fw_bcnt = fcp->rule->fw_pcnt = 0;
|
1999-08-01 16:57:24 +00:00
|
|
|
fcp->rule->fw_loghighest = fcp->rule->fw_logamount;
|
1996-06-09 23:46:21 +00:00
|
|
|
fcp->rule->timestamp = 0;
|
|
|
|
}
|
1998-01-04 22:36:12 +00:00
|
|
|
splx(s);
|
|
|
|
}
|
|
|
|
else {
|
1998-08-23 03:07:17 +00:00
|
|
|
cleared = 0;
|
1998-01-04 22:36:12 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* It's possible to insert multiple chain entries with the
|
|
|
|
* same number, so we don't stop after finding the first
|
|
|
|
* match if zeroing a specific entry.
|
|
|
|
*/
|
2001-02-10 00:10:18 +00:00
|
|
|
LIST_FOREACH(fcp, &ip_fw_chain_head, next)
|
1998-01-04 22:36:12 +00:00
|
|
|
if (frwl->fw_number == fcp->rule->fw_number) {
|
|
|
|
s = splnet();
|
|
|
|
while (fcp && frwl->fw_number == fcp->rule->fw_number) {
|
|
|
|
fcp->rule->fw_bcnt = fcp->rule->fw_pcnt = 0;
|
1999-08-01 16:57:24 +00:00
|
|
|
fcp->rule->fw_loghighest =
|
|
|
|
fcp->rule->fw_logamount;
|
1998-01-04 22:36:12 +00:00
|
|
|
fcp->rule->timestamp = 0;
|
2001-02-10 00:10:18 +00:00
|
|
|
fcp = LIST_NEXT(fcp, next);
|
1998-01-04 22:36:12 +00:00
|
|
|
}
|
|
|
|
splx(s);
|
|
|
|
cleared = 1;
|
|
|
|
break;
|
|
|
|
}
|
1998-08-23 03:07:17 +00:00
|
|
|
if (!cleared) /* we didn't find any matching rules */
|
|
|
|
return (EINVAL);
|
1998-01-04 22:36:12 +00:00
|
|
|
}
|
1996-06-09 23:46:21 +00:00
|
|
|
|
1997-12-27 18:44:56 +00:00
|
|
|
if (fw_verbose) {
|
|
|
|
if (frwl)
|
1999-08-21 18:35:55 +00:00
|
|
|
log(LOG_SECURITY | LOG_NOTICE,
|
|
|
|
"ipfw: Entry %d cleared.\n", frwl->fw_number);
|
1997-12-27 18:44:56 +00:00
|
|
|
else
|
1999-08-21 18:35:55 +00:00
|
|
|
log(LOG_SECURITY | LOG_NOTICE,
|
|
|
|
"ipfw: Accounting cleared.\n");
|
1997-12-27 18:44:56 +00:00
|
|
|
}
|
|
|
|
|
1998-08-23 03:07:17 +00:00
|
|
|
return (0);
|
1997-06-02 05:02:37 +00:00
|
|
|
}
|
1994-11-16 10:17:11 +00:00
|
|
|
|
1999-08-01 16:57:24 +00:00
|
|
|
static int
|
|
|
|
resetlog_entry(struct ip_fw *frwl)
|
|
|
|
{
|
|
|
|
struct ip_fw_chain *fcp;
|
|
|
|
int s, cleared;
|
|
|
|
|
|
|
|
if (frwl == 0) {
|
|
|
|
s = splnet();
|
1999-08-28 07:20:59 +00:00
|
|
|
counter = 0;
|
2001-02-10 00:10:18 +00:00
|
|
|
LIST_FOREACH(fcp, &ip_fw_chain_head, next)
|
1999-08-01 16:57:24 +00:00
|
|
|
fcp->rule->fw_loghighest = fcp->rule->fw_pcnt +
|
|
|
|
fcp->rule->fw_logamount;
|
|
|
|
splx(s);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
cleared = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* It's possible to insert multiple chain entries with the
|
|
|
|
* same number, so we don't stop after finding the first
|
|
|
|
* match if zeroing a specific entry.
|
|
|
|
*/
|
2001-02-10 00:10:18 +00:00
|
|
|
LIST_FOREACH(fcp, &ip_fw_chain_head, next)
|
1999-08-01 16:57:24 +00:00
|
|
|
if (frwl->fw_number == fcp->rule->fw_number) {
|
|
|
|
s = splnet();
|
|
|
|
while (fcp && frwl->fw_number == fcp->rule->fw_number) {
|
|
|
|
fcp->rule->fw_loghighest =
|
|
|
|
fcp->rule->fw_pcnt +
|
|
|
|
fcp->rule->fw_logamount;
|
2001-02-10 00:10:18 +00:00
|
|
|
fcp = LIST_NEXT(fcp, next);
|
1999-08-01 16:57:24 +00:00
|
|
|
}
|
|
|
|
splx(s);
|
|
|
|
cleared = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!cleared) /* we didn't find any matching rules */
|
|
|
|
return (EINVAL);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fw_verbose) {
|
|
|
|
if (frwl)
|
1999-08-21 18:35:55 +00:00
|
|
|
log(LOG_SECURITY | LOG_NOTICE,
|
|
|
|
"ipfw: Entry %d logging count reset.\n",
|
1999-08-01 16:57:24 +00:00
|
|
|
frwl->fw_number);
|
|
|
|
else
|
1999-08-21 18:35:55 +00:00
|
|
|
log(LOG_SECURITY | LOG_NOTICE, "
|
|
|
|
ipfw: All logging counts cleared.\n");
|
1999-08-01 16:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
1998-08-23 03:07:17 +00:00
|
|
|
static int
|
1997-06-02 05:02:37 +00:00
|
|
|
check_ipfw_struct(struct ip_fw *frwl)
|
|
|
|
{
|
|
|
|
/* Check for invalid flag bits */
|
1995-07-04 05:39:03 +00:00
|
|
|
if ((frwl->fw_flg & ~IP_FW_F_MASK) != 0) {
|
1996-08-05 02:35:04 +00:00
|
|
|
dprintf(("%s undefined flag bits set (flags=%x)\n",
|
|
|
|
err_prefix, frwl->fw_flg));
|
1998-08-23 03:07:17 +00:00
|
|
|
return (EINVAL);
|
1995-07-04 05:39:03 +00:00
|
|
|
}
|
2000-02-10 14:17:40 +00:00
|
|
|
if (frwl->fw_flg == IP_FW_F_CHECK_S) {
|
2000-06-08 09:45:23 +00:00
|
|
|
/* check-state */
|
2000-02-10 14:17:40 +00:00
|
|
|
return 0 ;
|
|
|
|
}
|
1997-06-02 05:02:37 +00:00
|
|
|
/* Must apply to incoming or outgoing (or both) */
|
|
|
|
if (!(frwl->fw_flg & (IP_FW_F_IN | IP_FW_F_OUT))) {
|
|
|
|
dprintf(("%s neither in nor out\n", err_prefix));
|
1998-08-23 03:07:17 +00:00
|
|
|
return (EINVAL);
|
1997-06-02 05:02:37 +00:00
|
|
|
}
|
|
|
|
/* Empty interface name is no good */
|
|
|
|
if (((frwl->fw_flg & IP_FW_F_IIFNAME)
|
|
|
|
&& !*frwl->fw_in_if.fu_via_if.name)
|
|
|
|
|| ((frwl->fw_flg & IP_FW_F_OIFNAME)
|
|
|
|
&& !*frwl->fw_out_if.fu_via_if.name)) {
|
|
|
|
dprintf(("%s empty interface name\n", err_prefix));
|
1998-08-23 03:07:17 +00:00
|
|
|
return (EINVAL);
|
1997-06-02 05:02:37 +00:00
|
|
|
}
|
|
|
|
/* Sanity check interface matching */
|
|
|
|
if ((frwl->fw_flg & IF_FW_F_VIAHACK) == IF_FW_F_VIAHACK) {
|
|
|
|
; /* allow "via" backwards compatibility */
|
|
|
|
} else if ((frwl->fw_flg & IP_FW_F_IN)
|
|
|
|
&& (frwl->fw_flg & IP_FW_F_OIFACE)) {
|
|
|
|
dprintf(("%s outgoing interface check on incoming\n",
|
|
|
|
err_prefix));
|
1998-08-23 03:07:17 +00:00
|
|
|
return (EINVAL);
|
1997-06-02 05:02:37 +00:00
|
|
|
}
|
|
|
|
/* Sanity check port ranges */
|
|
|
|
if ((frwl->fw_flg & IP_FW_F_SRNG) && IP_FW_GETNSRCP(frwl) < 2) {
|
1996-08-05 02:35:04 +00:00
|
|
|
dprintf(("%s src range set but n_src_p=%d\n",
|
1997-06-02 05:02:37 +00:00
|
|
|
err_prefix, IP_FW_GETNSRCP(frwl)));
|
1998-08-23 03:07:17 +00:00
|
|
|
return (EINVAL);
|
1995-07-04 05:39:03 +00:00
|
|
|
}
|
1997-06-02 05:02:37 +00:00
|
|
|
if ((frwl->fw_flg & IP_FW_F_DRNG) && IP_FW_GETNDSTP(frwl) < 2) {
|
1996-08-05 02:35:04 +00:00
|
|
|
dprintf(("%s dst range set but n_dst_p=%d\n",
|
1997-06-02 05:02:37 +00:00
|
|
|
err_prefix, IP_FW_GETNDSTP(frwl)));
|
1998-08-23 03:07:17 +00:00
|
|
|
return (EINVAL);
|
1995-07-04 05:39:03 +00:00
|
|
|
}
|
1997-06-02 05:02:37 +00:00
|
|
|
if (IP_FW_GETNSRCP(frwl) + IP_FW_GETNDSTP(frwl) > IP_FW_MAX_PORTS) {
|
1996-08-05 02:35:04 +00:00
|
|
|
dprintf(("%s too many ports (%d+%d)\n",
|
1997-06-02 05:02:37 +00:00
|
|
|
err_prefix, IP_FW_GETNSRCP(frwl), IP_FW_GETNDSTP(frwl)));
|
1998-08-23 03:07:17 +00:00
|
|
|
return (EINVAL);
|
1995-07-04 05:39:03 +00:00
|
|
|
}
|
1996-06-29 03:33:20 +00:00
|
|
|
/*
|
1997-06-02 05:02:37 +00:00
|
|
|
* Protocols other than TCP/UDP don't use port range
|
1996-06-29 03:33:20 +00:00
|
|
|
*/
|
1996-08-13 19:43:41 +00:00
|
|
|
if ((frwl->fw_prot != IPPROTO_TCP) &&
|
|
|
|
(frwl->fw_prot != IPPROTO_UDP) &&
|
1997-06-02 05:02:37 +00:00
|
|
|
(IP_FW_GETNSRCP(frwl) || IP_FW_GETNDSTP(frwl))) {
|
1996-08-13 19:43:41 +00:00
|
|
|
dprintf(("%s port(s) specified for non TCP/UDP rule\n",
|
1996-08-05 02:35:04 +00:00
|
|
|
err_prefix));
|
1998-08-23 03:07:17 +00:00
|
|
|
return (EINVAL);
|
1996-06-29 03:33:20 +00:00
|
|
|
}
|
|
|
|
|
1996-06-25 00:22:20 +00:00
|
|
|
/*
|
|
|
|
* Rather than modify the entry to make such entries work,
|
|
|
|
* we reject this rule and require user level utilities
|
|
|
|
* to enforce whatever policy they deem appropriate.
|
|
|
|
*/
|
|
|
|
if ((frwl->fw_src.s_addr & (~frwl->fw_smsk.s_addr)) ||
|
|
|
|
(frwl->fw_dst.s_addr & (~frwl->fw_dmsk.s_addr))) {
|
1996-08-05 02:35:04 +00:00
|
|
|
dprintf(("%s rule never matches\n", err_prefix));
|
1998-08-23 03:07:17 +00:00
|
|
|
return (EINVAL);
|
1996-06-25 00:22:20 +00:00
|
|
|
}
|
1996-07-10 19:44:30 +00:00
|
|
|
|
1998-02-12 00:57:06 +00:00
|
|
|
if ((frwl->fw_flg & IP_FW_F_FRAG) &&
|
|
|
|
(frwl->fw_prot == IPPROTO_UDP || frwl->fw_prot == IPPROTO_TCP)) {
|
|
|
|
if (frwl->fw_nports) {
|
|
|
|
dprintf(("%s cannot mix 'frag' and ports\n", err_prefix));
|
1998-08-23 03:07:17 +00:00
|
|
|
return (EINVAL);
|
1998-02-12 00:57:06 +00:00
|
|
|
}
|
|
|
|
if (frwl->fw_prot == IPPROTO_TCP &&
|
|
|
|
frwl->fw_tcpf != frwl->fw_tcpnf) {
|
|
|
|
dprintf(("%s cannot mix 'frag' and TCP flags\n", err_prefix));
|
1998-08-23 03:07:17 +00:00
|
|
|
return (EINVAL);
|
1998-02-12 00:57:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-09-06 03:10:42 +00:00
|
|
|
if (frwl->fw_flg & (IP_FW_F_UID | IP_FW_F_GID)) {
|
2000-09-12 02:38:05 +00:00
|
|
|
if ((frwl->fw_prot != IPPROTO_TCP) &&
|
|
|
|
(frwl->fw_prot != IPPROTO_UDP) &&
|
|
|
|
(frwl->fw_prot != IPPROTO_IP)) {
|
2000-09-06 03:10:42 +00:00
|
|
|
dprintf(("%s cannot use uid/gid logic on non-TCP/UDP\n", err_prefix));
|
|
|
|
return (EINVAL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1997-06-02 05:02:37 +00:00
|
|
|
/* Check command specific stuff */
|
|
|
|
switch (frwl->fw_flg & IP_FW_F_COMMAND)
|
|
|
|
{
|
|
|
|
case IP_FW_F_REJECT:
|
|
|
|
if (frwl->fw_reject_code >= 0x100
|
|
|
|
&& !(frwl->fw_prot == IPPROTO_TCP
|
|
|
|
&& frwl->fw_reject_code == IP_FW_REJECT_RST)) {
|
|
|
|
dprintf(("%s unknown reject code\n", err_prefix));
|
1998-08-23 03:07:17 +00:00
|
|
|
return (EINVAL);
|
1997-06-02 05:02:37 +00:00
|
|
|
}
|
|
|
|
break;
|
1999-06-11 11:27:35 +00:00
|
|
|
#if defined(IPDIVERT) || defined(DUMMYNET)
|
|
|
|
#ifdef IPDIVERT
|
1997-06-02 05:02:37 +00:00
|
|
|
case IP_FW_F_DIVERT: /* Diverting to port zero is invalid */
|
|
|
|
case IP_FW_F_TEE:
|
1999-06-11 11:27:35 +00:00
|
|
|
#endif
|
|
|
|
#ifdef DUMMYNET
|
|
|
|
case IP_FW_F_PIPE: /* piping through 0 is invalid */
|
2000-06-08 09:45:23 +00:00
|
|
|
case IP_FW_F_QUEUE: /* piping through 0 is invalid */
|
1999-06-11 11:27:35 +00:00
|
|
|
#endif
|
1997-06-02 05:02:37 +00:00
|
|
|
if (frwl->fw_divert_port == 0) {
|
|
|
|
dprintf(("%s can't divert to port 0\n", err_prefix));
|
1998-08-23 03:07:17 +00:00
|
|
|
return (EINVAL);
|
1997-06-02 05:02:37 +00:00
|
|
|
}
|
|
|
|
break;
|
1999-06-11 11:27:35 +00:00
|
|
|
#endif /* IPDIVERT || DUMMYNET */
|
1997-06-02 05:02:37 +00:00
|
|
|
case IP_FW_F_DENY:
|
|
|
|
case IP_FW_F_ACCEPT:
|
|
|
|
case IP_FW_F_COUNT:
|
|
|
|
case IP_FW_F_SKIPTO:
|
1998-07-06 03:20:19 +00:00
|
|
|
#ifdef IPFIREWALL_FORWARD
|
|
|
|
case IP_FW_F_FWD:
|
|
|
|
#endif
|
1997-06-02 05:02:37 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
dprintf(("%s invalid command\n", err_prefix));
|
1998-08-23 03:07:17 +00:00
|
|
|
return (EINVAL);
|
1996-07-10 19:44:30 +00:00
|
|
|
}
|
1997-06-02 05:02:37 +00:00
|
|
|
|
1998-08-23 03:07:17 +00:00
|
|
|
return 0;
|
1994-11-16 10:17:11 +00:00
|
|
|
}
|
|
|
|
|
1996-05-08 04:29:08 +00:00
|
|
|
static int
|
1998-08-23 03:07:17 +00:00
|
|
|
ip_fw_ctl(struct sockopt *sopt)
|
1994-10-28 15:09:49 +00:00
|
|
|
{
|
1998-08-23 03:07:17 +00:00
|
|
|
int error, s;
|
|
|
|
size_t size;
|
|
|
|
struct ip_fw_chain *fcp;
|
1999-08-11 15:34:47 +00:00
|
|
|
struct ip_fw frwl, *bp , *buf;
|
1998-08-23 03:07:17 +00:00
|
|
|
|
1999-08-01 16:57:24 +00:00
|
|
|
/*
|
2000-11-07 09:20:32 +00:00
|
|
|
* Disallow modifications in really-really secure mode, but still allow
|
1999-08-01 16:57:24 +00:00
|
|
|
* the logging counters to be reset.
|
|
|
|
*/
|
2000-11-07 09:20:32 +00:00
|
|
|
if (securelevel >= 3 && (sopt->sopt_name == IP_FW_ADD ||
|
|
|
|
(sopt->sopt_dir == SOPT_SET && sopt->sopt_name != IP_FW_RESETLOG)))
|
1998-08-23 03:07:17 +00:00
|
|
|
return (EPERM);
|
|
|
|
error = 0;
|
|
|
|
|
|
|
|
switch (sopt->sopt_name) {
|
|
|
|
case IP_FW_GET:
|
2001-02-10 00:10:18 +00:00
|
|
|
size = 0 ;
|
|
|
|
LIST_FOREACH(fcp, &ip_fw_chain_head, next)
|
|
|
|
size += sizeof(struct ip_fw) ;
|
2000-02-10 14:17:40 +00:00
|
|
|
if (ipfw_dyn_v) {
|
|
|
|
int i ;
|
|
|
|
struct ipfw_dyn_rule *p ;
|
|
|
|
|
|
|
|
for (i = 0 ; i < curr_dyn_buckets ; i++ )
|
|
|
|
for ( p = ipfw_dyn_v[i] ; p != NULL ; p = p->next )
|
|
|
|
size += sizeof(*p) ;
|
|
|
|
}
|
1998-08-23 03:07:17 +00:00
|
|
|
buf = malloc(size, M_TEMP, M_WAITOK);
|
|
|
|
if (buf == 0) {
|
|
|
|
error = ENOBUFS;
|
|
|
|
break;
|
1998-04-21 18:54:53 +00:00
|
|
|
}
|
1998-08-23 03:07:17 +00:00
|
|
|
|
2001-02-10 00:10:18 +00:00
|
|
|
bp = buf ;
|
|
|
|
LIST_FOREACH(fcp, &ip_fw_chain_head, next) {
|
1998-08-23 03:07:17 +00:00
|
|
|
bcopy(fcp->rule, bp, sizeof *fcp->rule);
|
1999-08-29 10:23:13 +00:00
|
|
|
bp->pipe_ptr = (void *)(intptr_t)
|
1999-08-11 15:34:47 +00:00
|
|
|
((struct ip_fw_ext *)fcp->rule)->dont_match_prob;
|
2000-02-10 14:17:40 +00:00
|
|
|
bp->next_rule_ptr = (void *)(intptr_t)
|
|
|
|
((struct ip_fw_ext *)fcp->rule)->dyn_type;
|
1999-08-24 00:48:19 +00:00
|
|
|
bp++;
|
1996-02-24 13:38:28 +00:00
|
|
|
}
|
2000-02-10 14:17:40 +00:00
|
|
|
if (ipfw_dyn_v) {
|
|
|
|
int i ;
|
|
|
|
struct ipfw_dyn_rule *p, *dst, *last = NULL ;
|
|
|
|
|
|
|
|
dst = (struct ipfw_dyn_rule *)bp ;
|
|
|
|
for (i = 0 ; i < curr_dyn_buckets ; i++ )
|
|
|
|
for ( p = ipfw_dyn_v[i] ; p != NULL ; p = p->next, dst++ ) {
|
|
|
|
bcopy(p, dst, sizeof *p);
|
|
|
|
(int)dst->chain = p->chain->rule->fw_number ;
|
|
|
|
dst->next = dst ; /* fake non-null pointer... */
|
|
|
|
last = dst ;
|
|
|
|
if (TIME_LEQ(dst->expire, time_second) )
|
|
|
|
dst->expire = 0 ;
|
|
|
|
else
|
|
|
|
dst->expire -= time_second ;
|
|
|
|
}
|
|
|
|
if (last != NULL)
|
|
|
|
last->next = NULL ;
|
|
|
|
}
|
1998-08-23 03:07:17 +00:00
|
|
|
error = sooptcopyout(sopt, buf, size);
|
|
|
|
FREE(buf, M_TEMP);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IP_FW_FLUSH:
|
2001-01-26 06:49:34 +00:00
|
|
|
s = splnet();
|
|
|
|
remove_dyn_rule(NULL, 1 /* force delete */);
|
|
|
|
splx(s);
|
2001-03-21 08:19:31 +00:00
|
|
|
fcp = LIST_FIRST(&ip_fw_chain_head);
|
|
|
|
while (fcp) {
|
|
|
|
struct ip_fw_chain *next;
|
|
|
|
next = LIST_NEXT(fcp, next);
|
|
|
|
if (fcp->rule->fw_number > fw_permanent_rules &&
|
|
|
|
fcp->rule->fw_number != IPFW_DEFAULT_RULE ) {
|
|
|
|
s = splnet();
|
|
|
|
LIST_REMOVE(fcp, next);
|
1999-05-24 10:01:22 +00:00
|
|
|
#ifdef DUMMYNET
|
2001-03-21 08:19:31 +00:00
|
|
|
dn_rule_delete(fcp);
|
1999-05-24 10:01:22 +00:00
|
|
|
#endif
|
2001-03-21 08:19:31 +00:00
|
|
|
FREE(fcp->rule, M_IPFW);
|
|
|
|
FREE(fcp, M_IPFW);
|
|
|
|
splx(s);
|
|
|
|
}
|
|
|
|
fcp = next;
|
1996-02-23 15:47:58 +00:00
|
|
|
}
|
1998-08-23 03:07:17 +00:00
|
|
|
break;
|
1994-10-28 15:09:49 +00:00
|
|
|
|
1998-08-23 03:07:17 +00:00
|
|
|
case IP_FW_ZERO:
|
|
|
|
if (sopt->sopt_val != 0) {
|
|
|
|
error = sooptcopyin(sopt, &frwl, sizeof frwl,
|
|
|
|
sizeof frwl);
|
|
|
|
if (error || (error = zero_entry(&frwl)))
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
error = zero_entry(0);
|
|
|
|
}
|
|
|
|
break;
|
1994-10-28 15:09:49 +00:00
|
|
|
|
1998-08-23 03:07:17 +00:00
|
|
|
case IP_FW_ADD:
|
|
|
|
error = sooptcopyin(sopt, &frwl, sizeof frwl, sizeof frwl);
|
|
|
|
if (error || (error = check_ipfw_struct(&frwl)))
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (frwl.fw_number == IPFW_DEFAULT_RULE) {
|
|
|
|
dprintf(("%s can't add rule %u\n", err_prefix,
|
|
|
|
(unsigned)IPFW_DEFAULT_RULE));
|
1997-06-02 05:02:37 +00:00
|
|
|
error = EINVAL;
|
1998-08-23 03:07:17 +00:00
|
|
|
} else {
|
2001-02-10 00:10:18 +00:00
|
|
|
error = add_entry(&ip_fw_chain_head, &frwl);
|
2000-10-12 07:59:14 +00:00
|
|
|
if (!error && sopt->sopt_dir == SOPT_GET)
|
|
|
|
error = sooptcopyout(sopt, &frwl, sizeof frwl);
|
1998-08-23 03:07:17 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IP_FW_DEL:
|
|
|
|
error = sooptcopyin(sopt, &frwl, sizeof frwl, sizeof frwl);
|
|
|
|
if (error)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (frwl.fw_number == IPFW_DEFAULT_RULE) {
|
|
|
|
dprintf(("%s can't delete rule %u\n", err_prefix,
|
|
|
|
(unsigned)IPFW_DEFAULT_RULE));
|
1997-06-02 05:02:37 +00:00
|
|
|
error = EINVAL;
|
1998-08-23 03:07:17 +00:00
|
|
|
} else {
|
2001-02-10 00:10:18 +00:00
|
|
|
error = del_entry(&ip_fw_chain_head, frwl.fw_number);
|
1998-08-23 03:07:17 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
1999-08-01 16:57:24 +00:00
|
|
|
case IP_FW_RESETLOG:
|
|
|
|
if (sopt->sopt_val != 0) {
|
|
|
|
error = sooptcopyin(sopt, &frwl, sizeof frwl,
|
|
|
|
sizeof frwl);
|
|
|
|
if (error || (error = resetlog_entry(&frwl)))
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
error = resetlog_entry(0);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
1998-08-23 03:07:17 +00:00
|
|
|
default:
|
1998-12-14 18:09:13 +00:00
|
|
|
printf("ip_fw_ctl invalid option %d\n", sopt->sopt_name);
|
|
|
|
error = EINVAL ;
|
1997-06-02 05:02:37 +00:00
|
|
|
}
|
|
|
|
|
1998-08-23 03:07:17 +00:00
|
|
|
return (error);
|
1994-10-28 15:09:49 +00:00
|
|
|
}
|
1996-02-23 15:47:58 +00:00
|
|
|
|
1998-12-14 18:09:13 +00:00
|
|
|
struct ip_fw_chain *ip_fw_default_rule ;
|
|
|
|
|
1996-02-23 15:47:58 +00:00
|
|
|
void
|
|
|
|
ip_fw_init(void)
|
|
|
|
{
|
1997-09-10 03:07:14 +00:00
|
|
|
struct ip_fw default_rule;
|
1996-02-23 15:47:58 +00:00
|
|
|
|
1996-02-24 13:38:28 +00:00
|
|
|
ip_fw_chk_ptr = ip_fw_chk;
|
|
|
|
ip_fw_ctl_ptr = ip_fw_ctl;
|
2001-02-10 00:10:18 +00:00
|
|
|
LIST_INIT(&ip_fw_chain_head);
|
1996-02-23 15:47:58 +00:00
|
|
|
|
1997-09-10 03:07:14 +00:00
|
|
|
bzero(&default_rule, sizeof default_rule);
|
|
|
|
default_rule.fw_prot = IPPROTO_IP;
|
1998-08-23 03:07:17 +00:00
|
|
|
default_rule.fw_number = IPFW_DEFAULT_RULE;
|
1997-09-10 03:07:14 +00:00
|
|
|
#ifdef IPFIREWALL_DEFAULT_TO_ACCEPT
|
|
|
|
default_rule.fw_flg |= IP_FW_F_ACCEPT;
|
|
|
|
#else
|
|
|
|
default_rule.fw_flg |= IP_FW_F_DENY;
|
|
|
|
#endif
|
|
|
|
default_rule.fw_flg |= IP_FW_F_IN | IP_FW_F_OUT;
|
1998-08-23 03:07:17 +00:00
|
|
|
if (check_ipfw_struct(&default_rule) != 0 ||
|
2001-02-10 00:10:18 +00:00
|
|
|
add_entry(&ip_fw_chain_head, &default_rule))
|
1998-06-12 20:03:26 +00:00
|
|
|
panic("ip_fw_init");
|
1996-07-10 19:44:30 +00:00
|
|
|
|
2001-02-10 00:10:18 +00:00
|
|
|
ip_fw_default_rule = LIST_FIRST(&ip_fw_chain_head) ;
|
1996-07-10 19:44:30 +00:00
|
|
|
printf("IP packet filtering initialized, "
|
|
|
|
#ifdef IPDIVERT
|
2000-02-10 14:17:40 +00:00
|
|
|
"divert enabled, "
|
1996-07-10 19:44:30 +00:00
|
|
|
#else
|
2000-02-10 14:17:40 +00:00
|
|
|
"divert disabled, "
|
1996-07-10 19:44:30 +00:00
|
|
|
#endif
|
1998-07-06 03:20:19 +00:00
|
|
|
#ifdef IPFIREWALL_FORWARD
|
2000-02-10 14:17:40 +00:00
|
|
|
"rule-based forwarding enabled, "
|
1998-07-06 03:20:19 +00:00
|
|
|
#else
|
2000-02-10 14:17:40 +00:00
|
|
|
"rule-based forwarding disabled, "
|
1998-07-06 03:20:19 +00:00
|
|
|
#endif
|
1997-09-10 03:07:14 +00:00
|
|
|
#ifdef IPFIREWALL_DEFAULT_TO_ACCEPT
|
2000-02-10 14:17:40 +00:00
|
|
|
"default to accept, ");
|
|
|
|
#else
|
|
|
|
"default to deny, " );
|
1997-09-10 03:07:14 +00:00
|
|
|
#endif
|
1996-06-09 23:46:21 +00:00
|
|
|
#ifndef IPFIREWALL_VERBOSE
|
|
|
|
printf("logging disabled\n");
|
|
|
|
#else
|
|
|
|
if (fw_verbose_limit == 0)
|
|
|
|
printf("unlimited logging\n");
|
|
|
|
else
|
1999-08-01 16:57:24 +00:00
|
|
|
printf("logging limited to %d packets/entry by default\n",
|
1996-07-10 19:44:30 +00:00
|
|
|
fw_verbose_limit);
|
1996-06-09 23:46:21 +00:00
|
|
|
#endif
|
1996-02-23 15:47:58 +00:00
|
|
|
}
|
1996-02-24 13:38:28 +00:00
|
|
|
|
1998-12-21 22:40:54 +00:00
|
|
|
static ip_fw_chk_t *old_chk_ptr;
|
|
|
|
static ip_fw_ctl_t *old_ctl_ptr;
|
|
|
|
|
|
|
|
static int
|
|
|
|
ipfw_modevent(module_t mod, int type, void *unused)
|
|
|
|
{
|
|
|
|
int s;
|
2001-02-10 00:10:18 +00:00
|
|
|
struct ip_fw_chain *fcp;
|
1998-12-21 22:40:54 +00:00
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case MOD_LOAD:
|
|
|
|
s = splnet();
|
|
|
|
|
|
|
|
old_chk_ptr = ip_fw_chk_ptr;
|
|
|
|
old_ctl_ptr = ip_fw_ctl_ptr;
|
|
|
|
|
|
|
|
ip_fw_init();
|
|
|
|
splx(s);
|
|
|
|
return 0;
|
|
|
|
case MOD_UNLOAD:
|
|
|
|
s = splnet();
|
|
|
|
ip_fw_chk_ptr = old_chk_ptr;
|
|
|
|
ip_fw_ctl_ptr = old_ctl_ptr;
|
2000-02-10 14:17:40 +00:00
|
|
|
remove_dyn_rule(NULL, 1 /* force delete */);
|
2001-02-10 00:10:18 +00:00
|
|
|
while ( (fcp = LIST_FIRST(&ip_fw_chain_head)) != NULL) {
|
|
|
|
LIST_REMOVE(fcp, next);
|
2000-02-10 14:17:40 +00:00
|
|
|
#ifdef DUMMYNET
|
|
|
|
dn_rule_delete(fcp);
|
|
|
|
#endif
|
1998-12-21 22:40:54 +00:00
|
|
|
free(fcp->rule, M_IPFW);
|
|
|
|
free(fcp, M_IPFW);
|
|
|
|
}
|
|
|
|
|
|
|
|
splx(s);
|
2000-02-10 14:17:40 +00:00
|
|
|
printf("IP firewall unloaded\n");
|
1998-12-21 22:40:54 +00:00
|
|
|
return 0;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static moduledata_t ipfwmod = {
|
|
|
|
"ipfw",
|
|
|
|
ipfw_modevent,
|
|
|
|
0
|
|
|
|
};
|
|
|
|
DECLARE_MODULE(ipfw, ipfwmod, SI_SUB_PSEUDO, SI_ORDER_ANY);
|