xref: /freebsd/usr.sbin/ppp/filter.h (revision 5521ff5a4d1929056e7ffc982fac3341ca54df7c)
1 /*-
2  * Copyright (c) 1996 - 2001 Brian Somers <brian@Awfulhak.org>
3  *          based on work by Toshiharu OHNO <tony-o@iij.ad.jp>
4  *                           Internet Initiative Japan, Inc (IIJ)
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  *
28  * $FreeBSD$
29  */
30 
31 /* Known protocols - f_proto */
32 #define	P_NONE	0
33 #define	P_TCP	1
34 #define	P_UDP	2
35 #define	P_ICMP	3
36 #ifdef IPPROTO_OSPFIGP
37 #define	P_OSPF	4
38 #endif
39 #define	P_IGMP	5
40 #ifdef IPPROTO_GRE
41 #define P_GRE	6
42 #endif
43 #define P_ESP	7
44 #define P_AH	8
45 #define P_IPIP	9
46 
47 /* Operations - f_srcop, f_dstop */
48 #define	OP_NONE	0
49 #define	OP_EQ	1
50 #define	OP_GT	2
51 #define	OP_LT	3
52 
53 /* srctype or dsttype */
54 #define T_ADDR		0
55 #define T_MYADDR	1
56 #define T_HISADDR	2
57 #define T_DNS0		3
58 #define T_DNS1		4
59 
60 /*
61  * There's a struct filterent for each possible filter rule.  The
62  * layout is designed to minimise size (there are 4 * MAXFILTERS of
63  * them) - which is also conveniently a power of 2 (32 bytes) on
64  * architectures where sizeof(int)==4 (this makes indexing faster).
65  *
66  * f_action and f_proto only need to be 6 and 3 bits, respectively,
67  * but making them 8 bits allows them to be efficently accessed using
68  * byte operations as well as allowing space for future expansion
69  * (expanding MAXFILTERS or converting f_proto IPPROTO_... values).
70  *
71  * Note that there are four free bits in the initial word for future
72  * extensions.
73  */
74 struct filterent {
75   unsigned f_action : 8;		/* Filtering action: goto or A_... */
76   unsigned f_proto : 8;		/* Protocol: P_... */
77   unsigned f_srcop : 2;		/* Source port operation: OP_... */
78   unsigned f_dstop : 2;		/* Destination port operation: OP_... */
79   unsigned f_srctype : 3;	/* T_ value of src */
80   unsigned f_dsttype : 3;	/* T_ value of dst */
81   unsigned f_estab : 1;		/* Check TCP ACK bit */
82   unsigned f_syn : 1;		/* Check TCP SYN bit */
83   unsigned f_finrst : 1;	/* Check TCP FIN/RST bits */
84   unsigned f_invert : 1;	/* true to complement match */
85   struct in_range f_src;	/* Source address and mask */
86   struct in_range f_dst;	/* Destination address and mask */
87   u_short f_srcport;		/* Source port, compared with f_srcop */
88   u_short f_dstport;		/* Destination port, compared with f_dstop */
89   unsigned timeout;		/* Keep alive value for passed packet */
90 };
91 
92 #define	MAXFILTERS	40	/* in each filter set */
93 
94 /* f_action values [0..MAXFILTERS) specify the next filter rule, others are: */
95 #define	A_NONE		(MAXFILTERS)
96 #define	A_PERMIT	(A_NONE+1)
97 #define	A_DENY		(A_PERMIT+1)
98 
99 struct filter {
100   struct filterent rule[MAXFILTERS];	/* incoming packet filter */
101   const char *name;
102   unsigned fragok : 1;
103   unsigned logok : 1;
104 };
105 
106 /* Which filter set */
107 #define FL_IN		0
108 #define FL_OUT		1
109 #define FL_DIAL		2
110 #define FL_KEEP		3
111 
112 struct ipcp;
113 struct cmdargs;
114 
115 extern int ParseAddr(struct ipcp *, const char *, struct in_addr *,
116                      struct in_addr *, int *);
117 extern int filter_Show(struct cmdargs const *);
118 extern int filter_Set(struct cmdargs const *);
119 extern const char * filter_Action2Nam(int);
120 extern const char *filter_Proto2Nam(int);
121 extern const char *filter_Op2Nam(int);
122 extern struct in_addr bits2mask(int);
123 extern void filter_AdjustAddr(struct filter *, struct in_addr *,
124                               struct in_addr *, struct in_addr [2]);
125