npf_impl.h revision 1.8 1 1.8 zoltan /* $NetBSD: npf_impl.h,v 1.8 2011/11/04 01:00:27 zoltan Exp $ */
2 1.1 rmind
3 1.1 rmind /*-
4 1.6 rmind * Copyright (c) 2009-2011 The NetBSD Foundation, Inc.
5 1.1 rmind * All rights reserved.
6 1.1 rmind *
7 1.1 rmind * This material is based upon work partially supported by The
8 1.1 rmind * NetBSD Foundation under a contract with Mindaugas Rasiukevicius.
9 1.1 rmind *
10 1.1 rmind * Redistribution and use in source and binary forms, with or without
11 1.1 rmind * modification, are permitted provided that the following conditions
12 1.1 rmind * are met:
13 1.1 rmind * 1. Redistributions of source code must retain the above copyright
14 1.1 rmind * notice, this list of conditions and the following disclaimer.
15 1.1 rmind * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 rmind * notice, this list of conditions and the following disclaimer in the
17 1.1 rmind * documentation and/or other materials provided with the distribution.
18 1.1 rmind *
19 1.1 rmind * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.1 rmind * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.1 rmind * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.1 rmind * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.1 rmind * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.1 rmind * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.1 rmind * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.1 rmind * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.1 rmind * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.1 rmind * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.1 rmind * POSSIBILITY OF SUCH DAMAGE.
30 1.1 rmind */
31 1.1 rmind
32 1.1 rmind /*
33 1.1 rmind * Private NPF structures and interfaces.
34 1.1 rmind * For internal use within NPF core only.
35 1.1 rmind */
36 1.1 rmind
37 1.1 rmind #ifndef _NPF_IMPL_H_
38 1.1 rmind #define _NPF_IMPL_H_
39 1.1 rmind
40 1.7 rmind #if !defined(_KERNEL) && !defined(_NPF_TESTING)
41 1.7 rmind #error "Kernel-level header only"
42 1.7 rmind #endif
43 1.7 rmind
44 1.4 rmind #include <sys/types.h>
45 1.4 rmind #include <sys/queue.h>
46 1.4 rmind #include <sys/hash.h>
47 1.3 matt #include <sys/rbtree.h>
48 1.1 rmind #include <sys/rwlock.h>
49 1.6 rmind #include <net/if.h>
50 1.1 rmind
51 1.1 rmind #include "npf.h"
52 1.1 rmind #include "npf_ncode.h"
53 1.1 rmind
54 1.1 rmind #ifdef _NPF_TESTING
55 1.1 rmind #include "testing.h"
56 1.1 rmind #endif
57 1.1 rmind
58 1.6 rmind #ifdef _NPF_DEBUG
59 1.6 rmind #define NPF_PRINTF(x) printf x
60 1.6 rmind #else
61 1.6 rmind #define NPF_PRINTF(x)
62 1.6 rmind #endif
63 1.6 rmind
64 1.1 rmind /*
65 1.1 rmind * STRUCTURE DECLARATIONS.
66 1.1 rmind */
67 1.1 rmind
68 1.7 rmind struct npf_ruleset;
69 1.7 rmind struct npf_rule;
70 1.1 rmind struct npf_nat;
71 1.1 rmind struct npf_session;
72 1.1 rmind
73 1.7 rmind typedef struct npf_ruleset npf_ruleset_t;
74 1.7 rmind typedef struct npf_rule npf_rule_t;
75 1.1 rmind typedef struct npf_nat npf_nat_t;
76 1.1 rmind typedef struct npf_alg npf_alg_t;
77 1.1 rmind typedef struct npf_natpolicy npf_natpolicy_t;
78 1.1 rmind typedef struct npf_session npf_session_t;
79 1.1 rmind
80 1.5 rmind struct npf_sehash;
81 1.1 rmind struct npf_tblent;
82 1.1 rmind struct npf_table;
83 1.1 rmind
84 1.5 rmind typedef struct npf_sehash npf_sehash_t;
85 1.1 rmind typedef struct npf_tblent npf_tblent_t;
86 1.1 rmind typedef struct npf_table npf_table_t;
87 1.1 rmind
88 1.1 rmind typedef npf_table_t * npf_tableset_t;
89 1.1 rmind
90 1.1 rmind /*
91 1.1 rmind * DEFINITIONS.
92 1.1 rmind */
93 1.1 rmind
94 1.5 rmind typedef bool (*npf_algfunc_t)(npf_cache_t *, nbuf_t *, void *);
95 1.1 rmind
96 1.1 rmind #define NPF_NCODE_LIMIT 1024
97 1.1 rmind #define NPF_TABLE_SLOTS 32
98 1.1 rmind
99 1.1 rmind /*
100 1.4 rmind * SESSION STATE STRUCTURES
101 1.4 rmind */
102 1.4 rmind
103 1.4 rmind typedef struct {
104 1.4 rmind uint32_t nst_seqend; /* SEQ number + length. */
105 1.4 rmind uint32_t nst_ackend; /* ACK sequence number + window. */
106 1.4 rmind uint32_t nst_maxwin; /* Maximum window seen. */
107 1.4 rmind int nst_wscale; /* Window Scale. */
108 1.4 rmind } npf_tcpstate_t;
109 1.4 rmind
110 1.4 rmind typedef struct {
111 1.4 rmind kmutex_t nst_lock;
112 1.4 rmind int nst_state;
113 1.4 rmind npf_tcpstate_t nst_tcpst[2];
114 1.4 rmind } npf_state_t;
115 1.4 rmind
116 1.4 rmind /*
117 1.1 rmind * INTERFACES.
118 1.1 rmind */
119 1.1 rmind
120 1.5 rmind /* NPF control, statistics, etc. */
121 1.5 rmind void npf_core_enter(void);
122 1.5 rmind npf_ruleset_t * npf_core_ruleset(void);
123 1.5 rmind npf_ruleset_t * npf_core_natset(void);
124 1.5 rmind npf_tableset_t *npf_core_tableset(void);
125 1.5 rmind void npf_core_exit(void);
126 1.5 rmind bool npf_core_locked(void);
127 1.5 rmind void npf_reload(npf_ruleset_t *, npf_tableset_t *, npf_ruleset_t *);
128 1.5 rmind
129 1.5 rmind void npflogattach(int);
130 1.5 rmind void npflogdetach(void);
131 1.1 rmind int npfctl_switch(void *);
132 1.1 rmind int npfctl_reload(u_long, void *);
133 1.5 rmind int npfctl_sessions_save(u_long, void *);
134 1.5 rmind int npfctl_sessions_load(u_long, void *);
135 1.7 rmind int npfctl_update_rule(u_long, void *);
136 1.1 rmind int npfctl_table(void *);
137 1.1 rmind
138 1.5 rmind void npf_stats_inc(npf_stats_t);
139 1.5 rmind void npf_stats_dec(npf_stats_t);
140 1.5 rmind
141 1.1 rmind /* Packet filter hooks. */
142 1.1 rmind int npf_register_pfil(void);
143 1.1 rmind void npf_unregister_pfil(void);
144 1.5 rmind void npf_log_packet(npf_cache_t *, nbuf_t *, int);
145 1.1 rmind
146 1.1 rmind /* Protocol helpers. */
147 1.4 rmind bool npf_fetch_ip(npf_cache_t *, nbuf_t *, void *);
148 1.4 rmind bool npf_fetch_tcp(npf_cache_t *, nbuf_t *, void *);
149 1.4 rmind bool npf_fetch_udp(npf_cache_t *, nbuf_t *, void *);
150 1.1 rmind bool npf_fetch_icmp(npf_cache_t *, nbuf_t *, void *);
151 1.2 rmind bool npf_cache_all(npf_cache_t *, nbuf_t *);
152 1.1 rmind
153 1.4 rmind bool npf_rwrip(npf_cache_t *, nbuf_t *, void *, const int,
154 1.4 rmind npf_addr_t *);
155 1.1 rmind bool npf_rwrport(npf_cache_t *, nbuf_t *, void *, const int,
156 1.4 rmind in_port_t);
157 1.4 rmind bool npf_rwrcksum(npf_cache_t *, nbuf_t *, void *, const int,
158 1.4 rmind npf_addr_t *, in_port_t);
159 1.1 rmind
160 1.1 rmind uint16_t npf_fixup16_cksum(uint16_t, uint16_t, uint16_t);
161 1.1 rmind uint16_t npf_fixup32_cksum(uint16_t, uint32_t, uint32_t);
162 1.4 rmind uint16_t npf_addr_cksum(uint16_t, int, npf_addr_t *, npf_addr_t *);
163 1.4 rmind uint32_t npf_addr_sum(const int, const npf_addr_t *, const npf_addr_t *);
164 1.8 zoltan int npf_tcpsaw(npf_cache_t *, nbuf_t *, tcp_seq *, tcp_seq *, uint32_t *);
165 1.4 rmind bool npf_fetch_tcpopts(const npf_cache_t *, nbuf_t *,
166 1.4 rmind uint16_t *, int *);
167 1.5 rmind bool npf_normalize(npf_cache_t *, nbuf_t *, bool, bool, u_int, u_int);
168 1.2 rmind void npf_return_block(npf_cache_t *, nbuf_t *, const int);
169 1.2 rmind
170 1.1 rmind /* Complex instructions. */
171 1.1 rmind int npf_match_ether(nbuf_t *, int, int, uint16_t, uint32_t *);
172 1.8 zoltan int npf_match_table(npf_cache_t *, nbuf_t *, void *,
173 1.1 rmind const int, const u_int);
174 1.8 zoltan int npf_match_ipmask(npf_cache_t *, nbuf_t *, void *,
175 1.8 zoltan const int, const npf_addr_t *, const npf_netmask_t);
176 1.1 rmind int npf_match_tcp_ports(npf_cache_t *, nbuf_t *, void *,
177 1.1 rmind const int, const uint32_t);
178 1.1 rmind int npf_match_udp_ports(npf_cache_t *, nbuf_t *, void *,
179 1.1 rmind const int, const uint32_t);
180 1.4 rmind int npf_match_icmp4(npf_cache_t *, nbuf_t *, void *, uint32_t);
181 1.4 rmind int npf_match_tcpfl(npf_cache_t *, nbuf_t *, void *, uint32_t);
182 1.1 rmind
183 1.1 rmind /* Tableset interface. */
184 1.5 rmind void npf_tableset_sysinit(void);
185 1.1 rmind void npf_tableset_sysfini(void);
186 1.1 rmind
187 1.1 rmind npf_tableset_t *npf_tableset_create(void);
188 1.1 rmind void npf_tableset_destroy(npf_tableset_t *);
189 1.1 rmind int npf_tableset_insert(npf_tableset_t *, npf_table_t *);
190 1.1 rmind npf_tableset_t *npf_tableset_reload(npf_tableset_t *);
191 1.1 rmind
192 1.1 rmind npf_table_t * npf_table_create(u_int, int, size_t);
193 1.1 rmind void npf_table_destroy(npf_table_t *);
194 1.1 rmind void npf_table_ref(npf_table_t *);
195 1.1 rmind void npf_table_unref(npf_table_t *);
196 1.1 rmind
197 1.1 rmind npf_table_t * npf_table_get(npf_tableset_t *, u_int);
198 1.1 rmind void npf_table_put(npf_table_t *);
199 1.1 rmind int npf_table_check(npf_tableset_t *, u_int, int);
200 1.8 zoltan int npf_table_add_cidr(npf_tableset_t *, u_int,
201 1.8 zoltan const npf_addr_t *, const npf_netmask_t);
202 1.8 zoltan int npf_table_rem_cidr(npf_tableset_t *, u_int,
203 1.8 zoltan const npf_addr_t *, const npf_netmask_t);
204 1.8 zoltan int npf_table_match_addr(u_int, const npf_addr_t *);
205 1.1 rmind
206 1.1 rmind /* Ruleset interface. */
207 1.1 rmind npf_ruleset_t * npf_ruleset_create(void);
208 1.1 rmind void npf_ruleset_destroy(npf_ruleset_t *);
209 1.1 rmind void npf_ruleset_insert(npf_ruleset_t *, npf_rule_t *);
210 1.5 rmind void npf_ruleset_natreload(npf_ruleset_t *, npf_ruleset_t *);
211 1.5 rmind npf_rule_t * npf_ruleset_matchnat(npf_ruleset_t *, npf_natpolicy_t *);
212 1.6 rmind npf_rule_t * npf_ruleset_sharepm(npf_ruleset_t *, npf_natpolicy_t *);
213 1.7 rmind npf_rule_t * npf_ruleset_replace(const char *, npf_ruleset_t *);
214 1.1 rmind
215 1.7 rmind npf_rule_t * npf_ruleset_inspect(npf_cache_t *, nbuf_t *, npf_ruleset_t *,
216 1.6 rmind ifnet_t *, const int, const int);
217 1.5 rmind int npf_rule_apply(npf_cache_t *, nbuf_t *, npf_rule_t *, int *);
218 1.5 rmind
219 1.7 rmind /* Rule interface. */
220 1.7 rmind npf_rule_t * npf_rule_alloc(prop_dictionary_t, npf_rproc_t *, void *, size_t);
221 1.7 rmind void npf_rule_free(npf_rule_t *);
222 1.1 rmind npf_ruleset_t * npf_rule_subset(npf_rule_t *);
223 1.1 rmind npf_natpolicy_t *npf_rule_getnat(const npf_rule_t *);
224 1.1 rmind void npf_rule_setnat(npf_rule_t *, npf_natpolicy_t *);
225 1.1 rmind
226 1.5 rmind npf_rproc_t * npf_rproc_create(prop_dictionary_t);
227 1.5 rmind npf_rproc_t * npf_rproc_return(npf_rule_t *);
228 1.5 rmind void npf_rproc_release(npf_rproc_t *);
229 1.7 rmind void npf_rproc_run(npf_cache_t *, nbuf_t *, npf_rproc_t *, int);
230 1.5 rmind
231 1.4 rmind /* Session handling interface. */
232 1.5 rmind void npf_session_sysinit(void);
233 1.1 rmind void npf_session_sysfini(void);
234 1.1 rmind int npf_session_tracking(bool);
235 1.1 rmind
236 1.5 rmind npf_sehash_t * sess_htable_create(void);
237 1.5 rmind void sess_htable_destroy(npf_sehash_t *);
238 1.5 rmind void sess_htable_reload(npf_sehash_t *);
239 1.5 rmind
240 1.4 rmind npf_session_t * npf_session_inspect(npf_cache_t *, nbuf_t *, const int);
241 1.5 rmind npf_session_t * npf_session_establish(const npf_cache_t *, nbuf_t *, const int);
242 1.1 rmind void npf_session_release(npf_session_t *);
243 1.5 rmind void npf_session_expire(npf_session_t *);
244 1.5 rmind bool npf_session_pass(const npf_session_t *, npf_rproc_t **);
245 1.5 rmind void npf_session_setpass(npf_session_t *, npf_rproc_t *);
246 1.5 rmind int npf_session_setnat(npf_session_t *, npf_nat_t *, const int);
247 1.2 rmind npf_nat_t * npf_session_retnat(npf_session_t *, const int, bool *);
248 1.1 rmind
249 1.5 rmind int npf_session_save(prop_array_t, prop_array_t);
250 1.5 rmind int npf_session_restore(npf_sehash_t *, prop_dictionary_t);
251 1.5 rmind
252 1.4 rmind /* State handling. */
253 1.4 rmind bool npf_state_init(const npf_cache_t *, nbuf_t *, npf_state_t *);
254 1.4 rmind bool npf_state_inspect(const npf_cache_t *, nbuf_t *, npf_state_t *,
255 1.4 rmind const bool);
256 1.4 rmind int npf_state_etime(const npf_state_t *, const int);
257 1.4 rmind void npf_state_destroy(npf_state_t *);
258 1.4 rmind
259 1.1 rmind /* NAT. */
260 1.1 rmind void npf_nat_sysinit(void);
261 1.1 rmind void npf_nat_sysfini(void);
262 1.6 rmind npf_natpolicy_t *npf_nat_newpolicy(prop_dictionary_t, npf_ruleset_t *);
263 1.1 rmind void npf_nat_freepolicy(npf_natpolicy_t *);
264 1.5 rmind bool npf_nat_matchpolicy(npf_natpolicy_t *, npf_natpolicy_t *);
265 1.6 rmind bool npf_nat_sharepm(npf_natpolicy_t *, npf_natpolicy_t *);
266 1.1 rmind
267 1.2 rmind int npf_do_nat(npf_cache_t *, npf_session_t *, nbuf_t *,
268 1.6 rmind ifnet_t *, const int);
269 1.1 rmind void npf_nat_expire(npf_nat_t *);
270 1.4 rmind void npf_nat_getorig(npf_nat_t *, npf_addr_t **, in_port_t *);
271 1.5 rmind void npf_nat_gettrans(npf_nat_t *, npf_addr_t **, in_port_t *);
272 1.1 rmind void npf_nat_setalg(npf_nat_t *, npf_alg_t *, uintptr_t);
273 1.1 rmind
274 1.5 rmind int npf_nat_save(prop_dictionary_t, prop_array_t, npf_nat_t *);
275 1.5 rmind npf_nat_t * npf_nat_restore(prop_dictionary_t, npf_session_t *);
276 1.5 rmind
277 1.1 rmind /* ALG interface. */
278 1.1 rmind void npf_alg_sysinit(void);
279 1.1 rmind void npf_alg_sysfini(void);
280 1.1 rmind npf_alg_t * npf_alg_register(npf_algfunc_t, npf_algfunc_t,
281 1.1 rmind npf_algfunc_t, npf_algfunc_t);
282 1.1 rmind int npf_alg_unregister(npf_alg_t *);
283 1.4 rmind bool npf_alg_match(npf_cache_t *, nbuf_t *, npf_nat_t *);
284 1.1 rmind void npf_alg_exec(npf_cache_t *, nbuf_t *, npf_nat_t *, const int );
285 1.1 rmind bool npf_alg_sessionid(npf_cache_t *, nbuf_t *, npf_cache_t *);
286 1.1 rmind
287 1.1 rmind /* Debugging routines. */
288 1.1 rmind void npf_rulenc_dump(npf_rule_t *);
289 1.1 rmind void npf_sessions_dump(void);
290 1.4 rmind void npf_state_dump(npf_state_t *);
291 1.1 rmind void npf_nat_dump(npf_nat_t *);
292 1.1 rmind
293 1.7 rmind #endif /* _NPF_IMPL_H_ */
294