1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
|
/* $OpenBSD: pfvar.h,v 1.5 2001/06/24 23:44:00 art Exp $ */
/*
* Copyright (c) 2001, Daniel Hartmeier
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* - Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
*/
#ifndef _NET_PFVAR_H_
#define _NET_PFVAR_H_
#include <sys/types.h>
enum { PF_IN=0, PF_OUT=1 };
enum { PF_PASS=0, PF_DROP=1, PF_DROP_RST=2 };
struct rule_addr {
u_int32_t addr;
u_int32_t mask;
u_int16_t port[2];
u_int8_t not;
u_int8_t port_op;
};
struct rule {
char ifname[IFNAMSIZ];
struct ifnet *ifp;
struct rule_addr src;
struct rule_addr dst;
struct rule *next;
u_int8_t action;
u_int8_t direction;
u_int8_t log;
u_int8_t quick;
u_int8_t keep_state;
u_int8_t proto;
u_int8_t type;
u_int8_t code;
u_int8_t flags;
u_int8_t flagset;
};
struct state_host {
u_int32_t addr;
u_int16_t port;
};
struct state_peer {
u_int32_t seqlo;
u_int32_t seqhi;
u_int8_t state;
};
struct state {
struct state *next;
struct state_host lan;
struct state_host gwy;
struct state_host ext;
struct state_peer src;
struct state_peer dst;
u_int32_t creation;
u_int32_t expire;
u_int32_t packets;
u_int32_t bytes;
u_int8_t proto;
u_int8_t direction;
};
struct nat {
char ifname[IFNAMSIZ];
struct ifnet *ifp;
struct nat *next;
u_int32_t saddr;
u_int32_t smask;
u_int32_t daddr;
u_int8_t proto;
u_int8_t not;
};
struct rdr {
char ifname[IFNAMSIZ];
struct ifnet *ifp;
struct rdr *next;
u_int32_t daddr;
u_int32_t dmask;
u_int32_t raddr;
u_int16_t dport;
u_int16_t rport;
u_int8_t proto;
u_int8_t not;
};
struct status {
u_int32_t running;
u_int32_t bytes[2];
u_int32_t packets[2][2];
u_int32_t states;
u_int32_t state_inserts;
u_int32_t state_removals;
u_int32_t state_searches;
u_int32_t since;
};
/*
* ioctl parameter structure
*/
struct pfioc {
u_int32_t size;
u_int16_t entries;
void *buffer;
};
/*
* ioctl operations
*/
#define DIOCSTART _IO ('D', 1)
#define DIOCSTOP _IO ('D', 2)
#define DIOCSETRULES _IOWR('D', 3, struct pfioc)
#define DIOCGETRULES _IOWR('D', 4, struct pfioc)
#define DIOCSETNAT _IOWR('D', 5, struct pfioc)
#define DIOCGETNAT _IOWR('D', 6, struct pfioc)
#define DIOCSETRDR _IOWR('D', 7, struct pfioc)
#define DIOCGETRDR _IOWR('D', 8, struct pfioc)
#define DIOCCLRSTATES _IO ('D', 9)
#define DIOCGETSTATES _IOWR('D', 10, struct pfioc)
#define DIOCSETSTATUSIF _IOWR('D', 11, struct pfioc)
#define DIOCGETSTATUS _IOWR('D', 12, struct pfioc)
/*
* ioctl errors
*/
enum error_msg {
NO_ERROR=0,
ERROR_INVALID_OP=100,
ERROR_ALREADY_RUNNING,
ERROR_NOT_RUNNING,
ERROR_INVALID_PARAMETERS,
ERROR_MALLOC,
MAX_ERROR_NUM
};
#ifdef _KERNEL
int pf_test(int, struct ifnet *, struct mbuf **);
#endif /* _KERNEL */
#endif /* _NET_PFVAR_H_ */
|