ip_htable.c revision 1.1 1 1.1 christos /* $NetBSD: ip_htable.c,v 1.1 2012/03/23 20:36:56 christos Exp $ */
2 1.1 christos
3 1.1 christos /*
4 1.1 christos * Copyright (C) 2012 by Darren Reed.
5 1.1 christos *
6 1.1 christos * See the IPFILTER.LICENCE file for details on licencing.
7 1.1 christos */
8 1.1 christos #if defined(KERNEL) || defined(_KERNEL)
9 1.1 christos # undef KERNEL
10 1.1 christos # undef _KERNEL
11 1.1 christos # define KERNEL 1
12 1.1 christos # define _KERNEL 1
13 1.1 christos #endif
14 1.1 christos #include <sys/param.h>
15 1.1 christos #include <sys/types.h>
16 1.1 christos #include <sys/errno.h>
17 1.1 christos #include <sys/time.h>
18 1.1 christos #include <sys/file.h>
19 1.1 christos #if !defined(_KERNEL)
20 1.1 christos # include <stdlib.h>
21 1.1 christos # include <string.h>
22 1.1 christos # define _KERNEL
23 1.1 christos # ifdef __OpenBSD__
24 1.1 christos struct file;
25 1.1 christos # endif
26 1.1 christos # include <sys/uio.h>
27 1.1 christos # undef _KERNEL
28 1.1 christos #endif
29 1.1 christos #include <sys/socket.h>
30 1.1 christos #if defined(__FreeBSD_version) && (__FreeBSD_version >= 300000)
31 1.1 christos # include <sys/malloc.h>
32 1.1 christos #endif
33 1.1 christos #if defined(__FreeBSD__)
34 1.1 christos # include <sys/cdefs.h>
35 1.1 christos # include <sys/proc.h>
36 1.1 christos #endif
37 1.1 christos #if !defined(__svr4__) && !defined(__SVR4) && !defined(__hpux) && \
38 1.1 christos !defined(linux)
39 1.1 christos # include <sys/mbuf.h>
40 1.1 christos #endif
41 1.1 christos #if defined(_KERNEL)
42 1.1 christos # include <sys/systm.h>
43 1.1 christos #else
44 1.1 christos # include "ipf.h"
45 1.1 christos #endif
46 1.1 christos #include <netinet/in.h>
47 1.1 christos #include <net/if.h>
48 1.1 christos
49 1.1 christos #include "netinet/ip_compat.h"
50 1.1 christos #include "netinet/ip_fil.h"
51 1.1 christos #include "netinet/ip_lookup.h"
52 1.1 christos #include "netinet/ip_htable.h"
53 1.1 christos /* END OF INCLUDES */
54 1.1 christos
55 1.1 christos #if !defined(lint)
56 1.1 christos static const char rcsid[] = "@(#)Id";
57 1.1 christos #endif
58 1.1 christos
59 1.1 christos # ifdef USE_INET6
60 1.1 christos static iphtent_t *ipf_iphmfind6 __P((iphtable_t *, i6addr_t *));
61 1.1 christos # endif
62 1.1 christos static iphtent_t *ipf_iphmfind __P((iphtable_t *, struct in_addr *));
63 1.1 christos static int ipf_iphmfindip __P((ipf_main_softc_t *, void *, int, void *, u_int));
64 1.1 christos static int ipf_htable_clear __P((ipf_main_softc_t *, void *, iphtable_t *));
65 1.1 christos static int ipf_htable_create __P((ipf_main_softc_t *, void *, iplookupop_t *));
66 1.1 christos static int ipf_htable_deref __P((ipf_main_softc_t *, void *, void *));
67 1.1 christos static int ipf_htable_destroy __P((ipf_main_softc_t *, void *, int, char *));
68 1.1 christos static void *ipf_htable_exists __P((void *, int, char *));
69 1.1 christos static size_t ipf_htable_flush __P((ipf_main_softc_t *, void *,
70 1.1 christos iplookupflush_t *));
71 1.1 christos static void ipf_htable_free __P((void *, iphtable_t *));
72 1.1 christos static int ipf_htable_iter_deref __P((ipf_main_softc_t *, void *, int,
73 1.1 christos int, void *));
74 1.1 christos static int ipf_htable_iter_next __P((ipf_main_softc_t *, void *, ipftoken_t *,
75 1.1 christos ipflookupiter_t *));
76 1.1 christos static int ipf_htable_node_add __P((ipf_main_softc_t *, void *,
77 1.1 christos iplookupop_t *, int));
78 1.1 christos static int ipf_htable_node_del __P((ipf_main_softc_t *, void *,
79 1.1 christos iplookupop_t *, int));
80 1.1 christos static int ipf_htable_remove __P((ipf_main_softc_t *, void *, iphtable_t *));
81 1.1 christos static void *ipf_htable_soft_create __P((ipf_main_softc_t *));
82 1.1 christos static void ipf_htable_soft_destroy __P((ipf_main_softc_t *, void *));
83 1.1 christos static int ipf_htable_soft_init __P((ipf_main_softc_t *, void *));
84 1.1 christos static void ipf_htable_soft_fini __P((ipf_main_softc_t *, void *));
85 1.1 christos static int ipf_htable_stats_get __P((ipf_main_softc_t *, void *,
86 1.1 christos iplookupop_t *));
87 1.1 christos static int ipf_htable_table_add __P((ipf_main_softc_t *, void *,
88 1.1 christos iplookupop_t *));
89 1.1 christos static int ipf_htable_table_del __P((ipf_main_softc_t *, void *,
90 1.1 christos iplookupop_t *));
91 1.1 christos static int ipf_htent_deref __P((void *, iphtent_t *));
92 1.1 christos static iphtent_t *ipf_htent_find __P((iphtable_t *, iphtent_t *));
93 1.1 christos static int ipf_htent_insert __P((ipf_main_softc_t *, void *, iphtable_t *,
94 1.1 christos iphtent_t *));
95 1.1 christos static int ipf_htent_remove __P((ipf_main_softc_t *, void *, iphtable_t *,
96 1.1 christos iphtent_t *));
97 1.1 christos static void *ipf_htable_select_add_ref __P((void *, int, char *));
98 1.1 christos static void ipf_htable_expire __P((ipf_main_softc_t *, void *));
99 1.1 christos
100 1.1 christos
101 1.1 christos typedef struct ipf_htable_softc_s {
102 1.1 christos u_long ipht_nomem[LOOKUP_POOL_SZ];
103 1.1 christos u_long ipf_nhtables[LOOKUP_POOL_SZ];
104 1.1 christos u_long ipf_nhtnodes[LOOKUP_POOL_SZ];
105 1.1 christos iphtable_t *ipf_htables[LOOKUP_POOL_SZ];
106 1.1 christos iphtent_t *ipf_node_explist;
107 1.1 christos } ipf_htable_softc_t;
108 1.1 christos
109 1.1 christos ipf_lookup_t ipf_htable_backend = {
110 1.1 christos IPLT_HASH,
111 1.1 christos ipf_htable_soft_create,
112 1.1 christos ipf_htable_soft_destroy,
113 1.1 christos ipf_htable_soft_init,
114 1.1 christos ipf_htable_soft_fini,
115 1.1 christos ipf_iphmfindip,
116 1.1 christos ipf_htable_flush,
117 1.1 christos ipf_htable_iter_deref,
118 1.1 christos ipf_htable_iter_next,
119 1.1 christos ipf_htable_node_add,
120 1.1 christos ipf_htable_node_del,
121 1.1 christos ipf_htable_stats_get,
122 1.1 christos ipf_htable_table_add,
123 1.1 christos ipf_htable_table_del,
124 1.1 christos ipf_htable_deref,
125 1.1 christos ipf_htable_exists,
126 1.1 christos ipf_htable_select_add_ref,
127 1.1 christos NULL,
128 1.1 christos ipf_htable_expire,
129 1.1 christos NULL
130 1.1 christos };
131 1.1 christos
132 1.1 christos
133 1.1 christos /* ------------------------------------------------------------------------ */
134 1.1 christos /* Function: ipf_htable_soft_create */
135 1.1 christos /* Returns: void * - NULL = failure, else pointer to local context */
136 1.1 christos /* Parameters: softc(I) - pointer to soft context main structure */
137 1.1 christos /* */
138 1.1 christos /* Initialise the routing table data structures where required. */
139 1.1 christos /* ------------------------------------------------------------------------ */
140 1.1 christos static void *
141 1.1 christos ipf_htable_soft_create(softc)
142 1.1 christos ipf_main_softc_t *softc;
143 1.1 christos {
144 1.1 christos ipf_htable_softc_t *softh;
145 1.1 christos
146 1.1 christos KMALLOC(softh, ipf_htable_softc_t *);
147 1.1 christos if (softh == NULL)
148 1.1 christos return NULL;
149 1.1 christos
150 1.1 christos bzero((char *)softh, sizeof(*softh));
151 1.1 christos
152 1.1 christos return softh;
153 1.1 christos }
154 1.1 christos
155 1.1 christos
156 1.1 christos /* ------------------------------------------------------------------------ */
157 1.1 christos /* Function: ipf_htable_soft_destroy */
158 1.1 christos /* Returns: Nil */
159 1.1 christos /* Parameters: softc(I) - pointer to soft context main structure */
160 1.1 christos /* arg(I) - pointer to local context to use */
161 1.1 christos /* */
162 1.1 christos /* Clean up the pool by free'ing the radix tree associated with it and free */
163 1.1 christos /* up the pool context too. */
164 1.1 christos /* ------------------------------------------------------------------------ */
165 1.1 christos static void
166 1.1 christos ipf_htable_soft_destroy(softc, arg)
167 1.1 christos ipf_main_softc_t *softc;
168 1.1 christos void *arg;
169 1.1 christos {
170 1.1 christos ipf_htable_softc_t *softh = arg;
171 1.1 christos
172 1.1 christos KFREE(softh);
173 1.1 christos }
174 1.1 christos
175 1.1 christos
176 1.1 christos /* ------------------------------------------------------------------------ */
177 1.1 christos /* Function: ipf_htable_soft_init */
178 1.1 christos /* Returns: int - 0 = success, else error */
179 1.1 christos /* Parameters: softc(I) - pointer to soft context main structure */
180 1.1 christos /* arg(I) - pointer to local context to use */
181 1.1 christos /* */
182 1.1 christos /* Initialise the hash table ready for use. */
183 1.1 christos /* ------------------------------------------------------------------------ */
184 1.1 christos static int
185 1.1 christos ipf_htable_soft_init(softc, arg)
186 1.1 christos ipf_main_softc_t *softc;
187 1.1 christos void *arg;
188 1.1 christos {
189 1.1 christos ipf_htable_softc_t *softh = arg;
190 1.1 christos
191 1.1 christos bzero((char *)softh, sizeof(*softh));
192 1.1 christos
193 1.1 christos return 0;
194 1.1 christos }
195 1.1 christos
196 1.1 christos
197 1.1 christos /* ------------------------------------------------------------------------ */
198 1.1 christos /* Function: ipf_htable_soft_fini */
199 1.1 christos /* Returns: Nil */
200 1.1 christos /* Parameters: softc(I) - pointer to soft context main structure */
201 1.1 christos /* arg(I) - pointer to local context to use */
202 1.1 christos /* Locks: WRITE(ipf_global) */
203 1.1 christos /* */
204 1.1 christos /* Clean up all the pool data structures allocated and call the cleanup */
205 1.1 christos /* function for the radix tree that supports the pools. ipf_pool_destroy is */
206 1.1 christos /* used to delete the pools one by one to ensure they're properly freed up. */
207 1.1 christos /* ------------------------------------------------------------------------ */
208 1.1 christos static void
209 1.1 christos ipf_htable_soft_fini(softc, arg)
210 1.1 christos ipf_main_softc_t *softc;
211 1.1 christos void *arg;
212 1.1 christos {
213 1.1 christos iplookupflush_t fop;
214 1.1 christos
215 1.1 christos fop.iplf_type = IPLT_HASH;
216 1.1 christos fop.iplf_unit = IPL_LOGALL;
217 1.1 christos fop.iplf_arg = 0;
218 1.1 christos fop.iplf_count = 0;
219 1.1 christos *fop.iplf_name = '\0';
220 1.1 christos ipf_htable_flush(softc, arg, &fop);
221 1.1 christos }
222 1.1 christos
223 1.1 christos
224 1.1 christos /* ------------------------------------------------------------------------ */
225 1.1 christos /* Function: ipf_htable_stats_get */
226 1.1 christos /* Returns: int - 0 = success, else error */
227 1.1 christos /* Parameters: softc(I) - pointer to soft context main structure */
228 1.1 christos /* arg(I) - pointer to local context to use */
229 1.1 christos /* op(I) - pointer to lookup operation data */
230 1.1 christos /* */
231 1.1 christos /* Copy the relevant statistics out of internal structures and into the */
232 1.1 christos /* structure used to export statistics. */
233 1.1 christos /* ------------------------------------------------------------------------ */
234 1.1 christos static int
235 1.1 christos ipf_htable_stats_get(softc, arg, op)
236 1.1 christos ipf_main_softc_t *softc;
237 1.1 christos void *arg;
238 1.1 christos iplookupop_t *op;
239 1.1 christos {
240 1.1 christos ipf_htable_softc_t *softh = arg;
241 1.1 christos iphtstat_t stats;
242 1.1 christos int err;
243 1.1 christos
244 1.1 christos if (op->iplo_size != sizeof(stats)) {
245 1.1 christos IPFERROR(30001);
246 1.1 christos return EINVAL;
247 1.1 christos }
248 1.1 christos
249 1.1 christos stats.iphs_tables = softh->ipf_htables[op->iplo_unit + 1];
250 1.1 christos stats.iphs_numtables = softh->ipf_nhtables[op->iplo_unit + 1];
251 1.1 christos stats.iphs_numnodes = softh->ipf_nhtnodes[op->iplo_unit + 1];
252 1.1 christos stats.iphs_nomem = softh->ipht_nomem[op->iplo_unit + 1];
253 1.1 christos
254 1.1 christos err = COPYOUT(&stats, op->iplo_struct, sizeof(stats));
255 1.1 christos if (err != 0) {
256 1.1 christos IPFERROR(30013);
257 1.1 christos return EFAULT;
258 1.1 christos }
259 1.1 christos return 0;
260 1.1 christos
261 1.1 christos }
262 1.1 christos
263 1.1 christos
264 1.1 christos /* ------------------------------------------------------------------------ */
265 1.1 christos /* Function: ipf_htable_create */
266 1.1 christos /* Returns: int - 0 = success, else error */
267 1.1 christos /* Parameters: softc(I) - pointer to soft context main structure */
268 1.1 christos /* arg(I) - pointer to local context to use */
269 1.1 christos /* op(I) - pointer to lookup operation data */
270 1.1 christos /* */
271 1.1 christos /* Create a new hash table using the template passed. */
272 1.1 christos /* ------------------------------------------------------------------------ */
273 1.1 christos static int
274 1.1 christos ipf_htable_create(softc, arg, op)
275 1.1 christos ipf_main_softc_t *softc;
276 1.1 christos void *arg;
277 1.1 christos iplookupop_t *op;
278 1.1 christos {
279 1.1 christos ipf_htable_softc_t *softh = arg;
280 1.1 christos iphtable_t *iph, *oiph;
281 1.1 christos char name[FR_GROUPLEN];
282 1.1 christos int err, i, unit;
283 1.1 christos
284 1.1 christos unit = op->iplo_unit;
285 1.1 christos if ((op->iplo_arg & IPHASH_ANON) == 0) {
286 1.1 christos iph = ipf_htable_exists(softh, unit, op->iplo_name);
287 1.1 christos if (iph != NULL) {
288 1.1 christos if ((iph->iph_flags & IPHASH_DELETE) == 0) {
289 1.1 christos IPFERROR(30004);
290 1.1 christos return EEXIST;
291 1.1 christos }
292 1.1 christos iph->iph_flags &= ~IPHASH_DELETE;
293 1.1 christos iph->iph_ref++;
294 1.1 christos return 0;
295 1.1 christos }
296 1.1 christos }
297 1.1 christos
298 1.1 christos KMALLOC(iph, iphtable_t *);
299 1.1 christos if (iph == NULL) {
300 1.1 christos softh->ipht_nomem[op->iplo_unit + 1]++;
301 1.1 christos IPFERROR(30002);
302 1.1 christos return ENOMEM;
303 1.1 christos }
304 1.1 christos err = COPYIN(op->iplo_struct, iph, sizeof(*iph));
305 1.1 christos if (err != 0) {
306 1.1 christos KFREE(iph);
307 1.1 christos IPFERROR(30003);
308 1.1 christos return EFAULT;
309 1.1 christos }
310 1.1 christos
311 1.1 christos if (iph->iph_unit != unit) {
312 1.1 christos IPFERROR(30005);
313 1.1 christos return EINVAL;
314 1.1 christos }
315 1.1 christos
316 1.1 christos if ((op->iplo_arg & IPHASH_ANON) != 0) {
317 1.1 christos i = IPHASH_ANON;
318 1.1 christos do {
319 1.1 christos i++;
320 1.1 christos #if defined(SNPRINTF) && defined(_KERNEL)
321 1.1 christos SNPRINTF(name, sizeof(name), "%u", i);
322 1.1 christos #else
323 1.1 christos (void)sprintf(name, "%u", i);
324 1.1 christos #endif
325 1.1 christos for (oiph = softh->ipf_htables[unit + 1]; oiph != NULL;
326 1.1 christos oiph = oiph->iph_next)
327 1.1 christos if (strncmp(oiph->iph_name, name,
328 1.1 christos sizeof(oiph->iph_name)) == 0)
329 1.1 christos break;
330 1.1 christos } while (oiph != NULL);
331 1.1 christos
332 1.1 christos (void)strncpy(iph->iph_name, name, sizeof(iph->iph_name));
333 1.1 christos (void)strncpy(op->iplo_name, name, sizeof(op->iplo_name));
334 1.1 christos iph->iph_type |= IPHASH_ANON;
335 1.1 christos }
336 1.1 christos
337 1.1 christos KMALLOCS(iph->iph_table, iphtent_t **,
338 1.1 christos iph->iph_size * sizeof(*iph->iph_table));
339 1.1 christos if (iph->iph_table == NULL) {
340 1.1 christos KFREE(iph);
341 1.1 christos softh->ipht_nomem[unit + 1]++;
342 1.1 christos IPFERROR(30006);
343 1.1 christos return ENOMEM;
344 1.1 christos }
345 1.1 christos
346 1.1 christos bzero((char *)iph->iph_table, iph->iph_size * sizeof(*iph->iph_table));
347 1.1 christos iph->iph_maskset[0] = 0;
348 1.1 christos iph->iph_maskset[1] = 0;
349 1.1 christos iph->iph_maskset[2] = 0;
350 1.1 christos iph->iph_maskset[3] = 0;
351 1.1 christos iph->iph_list = NULL;
352 1.1 christos
353 1.1 christos iph->iph_ref = 1;
354 1.1 christos iph->iph_next = softh->ipf_htables[unit + 1];
355 1.1 christos iph->iph_pnext = &softh->ipf_htables[unit + 1];
356 1.1 christos if (softh->ipf_htables[unit + 1] != NULL)
357 1.1 christos softh->ipf_htables[unit + 1]->iph_pnext = &iph->iph_next;
358 1.1 christos softh->ipf_htables[unit + 1] = iph;
359 1.1 christos
360 1.1 christos softh->ipf_nhtables[unit + 1]++;
361 1.1 christos
362 1.1 christos return 0;
363 1.1 christos }
364 1.1 christos
365 1.1 christos
366 1.1 christos /* ------------------------------------------------------------------------ */
367 1.1 christos /* Function: ipf_htable_table_del */
368 1.1 christos /* Returns: int - 0 = success, else error */
369 1.1 christos /* Parameters: softc(I) - pointer to soft context main structure */
370 1.1 christos /* arg(I) - pointer to local context to use */
371 1.1 christos /* op(I) - pointer to lookup operation data */
372 1.1 christos /* */
373 1.1 christos /* ------------------------------------------------------------------------ */
374 1.1 christos static int
375 1.1 christos ipf_htable_table_del(softc, arg, op)
376 1.1 christos ipf_main_softc_t *softc;
377 1.1 christos void *arg;
378 1.1 christos iplookupop_t *op;
379 1.1 christos {
380 1.1 christos return ipf_htable_destroy(softc, arg, op->iplo_unit, op->iplo_name);
381 1.1 christos }
382 1.1 christos
383 1.1 christos
384 1.1 christos /* ------------------------------------------------------------------------ */
385 1.1 christos /* Function: ipf_htable_destroy */
386 1.1 christos /* Returns: int - 0 = success, else error */
387 1.1 christos /* Parameters: softc(I) - pointer to soft context main structure */
388 1.1 christos /* arg(I) - pointer to local context to use */
389 1.1 christos /* op(I) - pointer to lookup operation data */
390 1.1 christos /* */
391 1.1 christos /* Find the hash table that belongs to the relevant part of ipfilter with a */
392 1.1 christos /* matching name and attempt to destroy it. If it is in use, empty it out */
393 1.1 christos /* and mark it for deletion so that when all the references disappear, it */
394 1.1 christos /* can be removed. */
395 1.1 christos /* ------------------------------------------------------------------------ */
396 1.1 christos static int
397 1.1 christos ipf_htable_destroy(softc, arg, unit, name)
398 1.1 christos ipf_main_softc_t *softc;
399 1.1 christos void *arg;
400 1.1 christos int unit;
401 1.1 christos char *name;
402 1.1 christos {
403 1.1 christos iphtable_t *iph;
404 1.1 christos
405 1.1 christos iph = ipf_htable_find(arg, unit, name);
406 1.1 christos if (iph == NULL) {
407 1.1 christos IPFERROR(30007);
408 1.1 christos return ESRCH;
409 1.1 christos }
410 1.1 christos
411 1.1 christos if (iph->iph_unit != unit) {
412 1.1 christos IPFERROR(30008);
413 1.1 christos return EINVAL;
414 1.1 christos }
415 1.1 christos
416 1.1 christos if (iph->iph_ref != 0) {
417 1.1 christos ipf_htable_clear(softc, arg, iph);
418 1.1 christos iph->iph_flags |= IPHASH_DELETE;
419 1.1 christos return 0;
420 1.1 christos }
421 1.1 christos
422 1.1 christos ipf_htable_remove(softc, arg, iph);
423 1.1 christos
424 1.1 christos return 0;
425 1.1 christos }
426 1.1 christos
427 1.1 christos
428 1.1 christos /* ------------------------------------------------------------------------ */
429 1.1 christos /* Function: ipf_htable_clear */
430 1.1 christos /* Returns: int - 0 = success, else error */
431 1.1 christos /* Parameters: softc(I) - pointer to soft context main structure */
432 1.1 christos /* arg(I) - pointer to local context to use */
433 1.1 christos /* iph(I) - pointer to hash table to destroy */
434 1.1 christos /* */
435 1.1 christos /* Clean out the hash table by walking the list of entries and removing */
436 1.1 christos /* each one, one by one. */
437 1.1 christos /* ------------------------------------------------------------------------ */
438 1.1 christos static int
439 1.1 christos ipf_htable_clear(softc, arg, iph)
440 1.1 christos ipf_main_softc_t *softc;
441 1.1 christos void *arg;
442 1.1 christos iphtable_t *iph;
443 1.1 christos {
444 1.1 christos iphtent_t *ipe;
445 1.1 christos
446 1.1 christos while ((ipe = iph->iph_list) != NULL)
447 1.1 christos if (ipf_htent_remove(softc, arg, iph, ipe) != 0)
448 1.1 christos return 1;
449 1.1 christos return 0;
450 1.1 christos }
451 1.1 christos
452 1.1 christos
453 1.1 christos /* ------------------------------------------------------------------------ */
454 1.1 christos /* Function: ipf_htable_free */
455 1.1 christos /* Returns: Nil */
456 1.1 christos /* Parameters: arg(I) - pointer to local context to use */
457 1.1 christos /* iph(I) - pointer to hash table to destroy */
458 1.1 christos /* */
459 1.1 christos /* ------------------------------------------------------------------------ */
460 1.1 christos static void
461 1.1 christos ipf_htable_free(arg, iph)
462 1.1 christos void *arg;
463 1.1 christos iphtable_t *iph;
464 1.1 christos {
465 1.1 christos ipf_htable_softc_t *softh = arg;
466 1.1 christos
467 1.1 christos if (iph->iph_next != NULL)
468 1.1 christos iph->iph_next->iph_pnext = iph->iph_pnext;
469 1.1 christos if (iph->iph_pnext != NULL)
470 1.1 christos *iph->iph_pnext = iph->iph_next;
471 1.1 christos iph->iph_pnext = NULL;
472 1.1 christos iph->iph_next = NULL;
473 1.1 christos
474 1.1 christos softh->ipf_nhtables[iph->iph_unit + 1]--;
475 1.1 christos
476 1.1 christos KFREES(iph->iph_table, iph->iph_size * sizeof(*iph->iph_table));
477 1.1 christos KFREE(iph);
478 1.1 christos }
479 1.1 christos
480 1.1 christos
481 1.1 christos /* ------------------------------------------------------------------------ */
482 1.1 christos /* Function: ipf_htable_remove */
483 1.1 christos /* Returns: int - 0 = success, else error */
484 1.1 christos /* Parameters: softc(I) - pointer to soft context main structure */
485 1.1 christos /* arg(I) - pointer to local context to use */
486 1.1 christos /* iph(I) - pointer to hash table to destroy */
487 1.1 christos /* */
488 1.1 christos /* It is necessary to unlink here as well as free (called by deref) so that */
489 1.1 christos /* the while loop in ipf_htable_flush() functions properly. */
490 1.1 christos /* ------------------------------------------------------------------------ */
491 1.1 christos static int
492 1.1 christos ipf_htable_remove(softc, arg, iph)
493 1.1 christos ipf_main_softc_t *softc;
494 1.1 christos void *arg;
495 1.1 christos iphtable_t *iph;
496 1.1 christos {
497 1.1 christos
498 1.1 christos if (ipf_htable_clear(softc, arg, iph) != 0)
499 1.1 christos return 1;
500 1.1 christos
501 1.1 christos if (iph->iph_pnext != NULL)
502 1.1 christos *iph->iph_pnext = iph->iph_next;
503 1.1 christos if (iph->iph_next != NULL)
504 1.1 christos iph->iph_next->iph_pnext = iph->iph_pnext;
505 1.1 christos iph->iph_pnext = NULL;
506 1.1 christos iph->iph_next = NULL;
507 1.1 christos
508 1.1 christos return ipf_htable_deref(softc, arg, iph);
509 1.1 christos }
510 1.1 christos
511 1.1 christos
512 1.1 christos /* ------------------------------------------------------------------------ */
513 1.1 christos /* Function: ipf_htable_node_del */
514 1.1 christos /* Returns: int - 0 = success, else error */
515 1.1 christos /* Parameters: softc(I) - pointer to soft context main structure */
516 1.1 christos /* arg(I) - pointer to local context to use */
517 1.1 christos /* op(I) - pointer to lookup operation data */
518 1.1 christos /* uid(I) - real uid of process doing operation */
519 1.1 christos /* */
520 1.1 christos /* ------------------------------------------------------------------------ */
521 1.1 christos static int
522 1.1 christos ipf_htable_node_del(softc, arg, op, uid)
523 1.1 christos ipf_main_softc_t *softc;
524 1.1 christos void *arg;
525 1.1 christos iplookupop_t *op;
526 1.1 christos int uid;
527 1.1 christos {
528 1.1 christos iphtable_t *iph;
529 1.1 christos iphtent_t hte, *ent;
530 1.1 christos int err;
531 1.1 christos
532 1.1 christos if (op->iplo_size != sizeof(hte)) {
533 1.1 christos IPFERROR(30014);
534 1.1 christos return EINVAL;
535 1.1 christos }
536 1.1 christos
537 1.1 christos err = COPYIN(op->iplo_struct, &hte, sizeof(hte));
538 1.1 christos if (err != 0) {
539 1.1 christos IPFERROR(30015);
540 1.1 christos return EFAULT;
541 1.1 christos }
542 1.1 christos
543 1.1 christos iph = ipf_htable_find(arg, op->iplo_unit, op->iplo_name);
544 1.1 christos if (iph == NULL) {
545 1.1 christos IPFERROR(30016);
546 1.1 christos return ESRCH;
547 1.1 christos }
548 1.1 christos
549 1.1 christos ent = ipf_htent_find(iph, &hte);
550 1.1 christos if (ent == NULL) {
551 1.1 christos IPFERROR(30022);
552 1.1 christos return ESRCH;
553 1.1 christos }
554 1.1 christos
555 1.1 christos if ((uid != 0) && (ent->ipe_uid != uid)) {
556 1.1 christos IPFERROR(30023);
557 1.1 christos return EACCES;
558 1.1 christos }
559 1.1 christos
560 1.1 christos err = ipf_htent_remove(softc, arg, iph, ent);
561 1.1 christos
562 1.1 christos return err;
563 1.1 christos }
564 1.1 christos
565 1.1 christos
566 1.1 christos /* ------------------------------------------------------------------------ */
567 1.1 christos /* Function: ipf_htable_node_del */
568 1.1 christos /* Returns: int - 0 = success, else error */
569 1.1 christos /* Parameters: softc(I) - pointer to soft context main structure */
570 1.1 christos /* arg(I) - pointer to local context to use */
571 1.1 christos /* op(I) - pointer to lookup operation data */
572 1.1 christos /* */
573 1.1 christos /* ------------------------------------------------------------------------ */
574 1.1 christos static int
575 1.1 christos ipf_htable_table_add(softc, arg, op)
576 1.1 christos ipf_main_softc_t *softc;
577 1.1 christos void *arg;
578 1.1 christos iplookupop_t *op;
579 1.1 christos {
580 1.1 christos int err;
581 1.1 christos
582 1.1 christos if (ipf_htable_find(arg, op->iplo_unit, op->iplo_name) != NULL) {
583 1.1 christos IPFERROR(30017);
584 1.1 christos err = EEXIST;
585 1.1 christos } else {
586 1.1 christos err = ipf_htable_create(softc, arg, op);
587 1.1 christos }
588 1.1 christos
589 1.1 christos return err;
590 1.1 christos }
591 1.1 christos
592 1.1 christos
593 1.1 christos /* ------------------------------------------------------------------------ */
594 1.1 christos /* Function: ipf_htent_remove */
595 1.1 christos /* Returns: int - 0 = success, else error */
596 1.1 christos /* Parameters: softc(I) - pointer to soft context main structure */
597 1.1 christos /* arg(I) - pointer to local context to use */
598 1.1 christos /* iph(I) - pointer to hash table */
599 1.1 christos /* ipe(I) - pointer to hash table entry to remove */
600 1.1 christos /* */
601 1.1 christos /* Delete an entry from a hash table. */
602 1.1 christos /* ------------------------------------------------------------------------ */
603 1.1 christos static int
604 1.1 christos ipf_htent_remove(softc, arg, iph, ipe)
605 1.1 christos ipf_main_softc_t *softc;
606 1.1 christos void *arg;
607 1.1 christos iphtable_t *iph;
608 1.1 christos iphtent_t *ipe;
609 1.1 christos {
610 1.1 christos
611 1.1 christos if (ipe->ipe_hnext != NULL)
612 1.1 christos ipe->ipe_hnext->ipe_phnext = ipe->ipe_phnext;
613 1.1 christos if (ipe->ipe_phnext != NULL)
614 1.1 christos *ipe->ipe_phnext = ipe->ipe_hnext;
615 1.1 christos ipe->ipe_phnext = NULL;
616 1.1 christos ipe->ipe_hnext = NULL;
617 1.1 christos
618 1.1 christos if (ipe->ipe_dnext != NULL)
619 1.1 christos ipe->ipe_dnext->ipe_pdnext = ipe->ipe_pdnext;
620 1.1 christos if (ipe->ipe_pdnext != NULL)
621 1.1 christos *ipe->ipe_pdnext = ipe->ipe_dnext;
622 1.1 christos ipe->ipe_pdnext = NULL;
623 1.1 christos ipe->ipe_dnext = NULL;
624 1.1 christos
625 1.1 christos if (ipe->ipe_next != NULL)
626 1.1 christos ipe->ipe_next->ipe_pnext = ipe->ipe_pnext;
627 1.1 christos if (ipe->ipe_pnext != NULL)
628 1.1 christos *ipe->ipe_pnext = ipe->ipe_next;
629 1.1 christos ipe->ipe_pnext = NULL;
630 1.1 christos ipe->ipe_next = NULL;
631 1.1 christos
632 1.1 christos switch (iph->iph_type & ~IPHASH_ANON)
633 1.1 christos {
634 1.1 christos case IPHASH_GROUPMAP :
635 1.1 christos if (ipe->ipe_group != NULL)
636 1.1 christos ipf_group_del(softc, ipe->ipe_group, IPL_LOGIPF,
637 1.1 christos softc->ipf_active);
638 1.1 christos break;
639 1.1 christos
640 1.1 christos default :
641 1.1 christos ipe->ipe_ptr = NULL;
642 1.1 christos ipe->ipe_value = 0;
643 1.1 christos break;
644 1.1 christos }
645 1.1 christos
646 1.1 christos return ipf_htent_deref(arg, ipe);
647 1.1 christos }
648 1.1 christos
649 1.1 christos
650 1.1 christos /* ------------------------------------------------------------------------ */
651 1.1 christos /* Function: ipf_htable_deref */
652 1.1 christos /* Returns: int - 0 = success, else error */
653 1.1 christos /* Parameters: softc(I) - pointer to soft context main structure */
654 1.1 christos /* arg(I) - pointer to local context to use */
655 1.1 christos /* object(I) - pointer to hash table */
656 1.1 christos /* */
657 1.1 christos /* ------------------------------------------------------------------------ */
658 1.1 christos static int
659 1.1 christos ipf_htable_deref(softc, arg, object)
660 1.1 christos ipf_main_softc_t *softc;
661 1.1 christos void *arg, *object;
662 1.1 christos {
663 1.1 christos ipf_htable_softc_t *softh = arg;
664 1.1 christos iphtable_t *iph = object;
665 1.1 christos int refs;
666 1.1 christos
667 1.1 christos iph->iph_ref--;
668 1.1 christos refs = iph->iph_ref;
669 1.1 christos
670 1.1 christos if (iph->iph_ref == 0) {
671 1.1 christos ipf_htable_free(softh, iph);
672 1.1 christos }
673 1.1 christos
674 1.1 christos return refs;
675 1.1 christos }
676 1.1 christos
677 1.1 christos
678 1.1 christos /* ------------------------------------------------------------------------ */
679 1.1 christos /* Function: ipf_htent_deref */
680 1.1 christos /* Parameters: arg(I) - pointer to local context to use */
681 1.1 christos /* ipe(I) - */
682 1.1 christos /* */
683 1.1 christos /* ------------------------------------------------------------------------ */
684 1.1 christos static int
685 1.1 christos ipf_htent_deref(arg, ipe)
686 1.1 christos void *arg;
687 1.1 christos iphtent_t *ipe;
688 1.1 christos {
689 1.1 christos ipf_htable_softc_t *softh = arg;
690 1.1 christos
691 1.1 christos ipe->ipe_ref--;
692 1.1 christos if (ipe->ipe_ref == 0) {
693 1.1 christos softh->ipf_nhtnodes[ipe->ipe_unit + 1]--;
694 1.1 christos KFREE(ipe);
695 1.1 christos
696 1.1 christos return 0;
697 1.1 christos }
698 1.1 christos
699 1.1 christos return ipe->ipe_ref;
700 1.1 christos }
701 1.1 christos
702 1.1 christos
703 1.1 christos /* ------------------------------------------------------------------------ */
704 1.1 christos /* Function: ipf_htable_exists */
705 1.1 christos /* Parameters: arg(I) - pointer to local context to use */
706 1.1 christos /* */
707 1.1 christos /* ------------------------------------------------------------------------ */
708 1.1 christos static void *
709 1.1 christos ipf_htable_exists(arg, unit, name)
710 1.1 christos void *arg;
711 1.1 christos int unit;
712 1.1 christos char *name;
713 1.1 christos {
714 1.1 christos ipf_htable_softc_t *softh = arg;
715 1.1 christos iphtable_t *iph;
716 1.1 christos
717 1.1 christos if (unit == IPL_LOGALL) {
718 1.1 christos int i;
719 1.1 christos
720 1.1 christos for (i = 0; i <= LOOKUP_POOL_MAX; i++) {
721 1.1 christos for (iph = softh->ipf_htables[i]; iph != NULL;
722 1.1 christos iph = iph->iph_next) {
723 1.1 christos if (strncmp(iph->iph_name, name,
724 1.1 christos sizeof(iph->iph_name)) == 0)
725 1.1 christos break;
726 1.1 christos }
727 1.1 christos if (iph != NULL)
728 1.1 christos break;
729 1.1 christos }
730 1.1 christos } else {
731 1.1 christos for (iph = softh->ipf_htables[unit + 1]; iph != NULL;
732 1.1 christos iph = iph->iph_next) {
733 1.1 christos if (strncmp(iph->iph_name, name,
734 1.1 christos sizeof(iph->iph_name)) == 0)
735 1.1 christos break;
736 1.1 christos }
737 1.1 christos }
738 1.1 christos return iph;
739 1.1 christos }
740 1.1 christos
741 1.1 christos
742 1.1 christos /* ------------------------------------------------------------------------ */
743 1.1 christos /* Function: ipf_htable_select_add_ref */
744 1.1 christos /* Returns: void * - NULL = failure, else pointer to the hash table */
745 1.1 christos /* Parameters: arg(I) - pointer to local context to use */
746 1.1 christos /* unit(I) - ipfilter device to which we are working on */
747 1.1 christos /* name(I) - name of the hash table */
748 1.1 christos /* */
749 1.1 christos /* ------------------------------------------------------------------------ */
750 1.1 christos static void *
751 1.1 christos ipf_htable_select_add_ref(arg, unit, name)
752 1.1 christos void *arg;
753 1.1 christos int unit;
754 1.1 christos char *name;
755 1.1 christos {
756 1.1 christos iphtable_t *iph;
757 1.1 christos
758 1.1 christos iph = ipf_htable_exists(arg, unit, name);
759 1.1 christos if (iph != NULL) {
760 1.1 christos ATOMIC_INC32(iph->iph_ref);
761 1.1 christos }
762 1.1 christos return iph;
763 1.1 christos }
764 1.1 christos
765 1.1 christos
766 1.1 christos /* ------------------------------------------------------------------------ */
767 1.1 christos /* Function: ipf_htable_find */
768 1.1 christos /* Returns: void * - NULL = failure, else pointer to the hash table */
769 1.1 christos /* Parameters: arg(I) - pointer to local context to use */
770 1.1 christos /* unit(I) - ipfilter device to which we are working on */
771 1.1 christos /* name(I) - name of the hash table */
772 1.1 christos /* */
773 1.1 christos /* This function is exposed becaues it is used in the group-map feature. */
774 1.1 christos /* ------------------------------------------------------------------------ */
775 1.1 christos iphtable_t *
776 1.1 christos ipf_htable_find(arg, unit, name)
777 1.1 christos void *arg;
778 1.1 christos int unit;
779 1.1 christos char *name;
780 1.1 christos {
781 1.1 christos iphtable_t *iph;
782 1.1 christos
783 1.1 christos iph = ipf_htable_exists(arg, unit, name);
784 1.1 christos if ((iph != NULL) && (iph->iph_flags & IPHASH_DELETE) == 0)
785 1.1 christos return iph;
786 1.1 christos
787 1.1 christos return NULL;
788 1.1 christos }
789 1.1 christos
790 1.1 christos
791 1.1 christos /* ------------------------------------------------------------------------ */
792 1.1 christos /* Function: ipf_htable_flush */
793 1.1 christos /* Returns: size_t - number of entries flushed */
794 1.1 christos /* Parameters: softc(I) - pointer to soft context main structure */
795 1.1 christos /* arg(I) - pointer to local context to use */
796 1.1 christos /* op(I) - pointer to lookup operation data */
797 1.1 christos /* */
798 1.1 christos /* ------------------------------------------------------------------------ */
799 1.1 christos static size_t
800 1.1 christos ipf_htable_flush(softc, arg, op)
801 1.1 christos ipf_main_softc_t *softc;
802 1.1 christos void *arg;
803 1.1 christos iplookupflush_t *op;
804 1.1 christos {
805 1.1 christos ipf_htable_softc_t *softh = arg;
806 1.1 christos iphtable_t *iph;
807 1.1 christos size_t freed;
808 1.1 christos int i;
809 1.1 christos
810 1.1 christos freed = 0;
811 1.1 christos
812 1.1 christos for (i = -1; i <= IPL_LOGMAX; i++) {
813 1.1 christos if (op->iplf_unit == i || op->iplf_unit == IPL_LOGALL) {
814 1.1 christos while ((iph = softh->ipf_htables[i + 1]) != NULL) {
815 1.1 christos if (ipf_htable_remove(softc, arg, iph) == 0) {
816 1.1 christos freed++;
817 1.1 christos } else {
818 1.1 christos iph->iph_flags |= IPHASH_DELETE;
819 1.1 christos }
820 1.1 christos }
821 1.1 christos }
822 1.1 christos }
823 1.1 christos
824 1.1 christos return freed;
825 1.1 christos }
826 1.1 christos
827 1.1 christos
828 1.1 christos /* ------------------------------------------------------------------------ */
829 1.1 christos /* Function: ipf_htable_node_add */
830 1.1 christos /* Returns: int - 0 = success, else error */
831 1.1 christos /* Parameters: softc(I) - pointer to soft context main structure */
832 1.1 christos /* arg(I) - pointer to local context to use */
833 1.1 christos /* op(I) - pointer to lookup operation data */
834 1.1 christos /* uid(I) - real uid of process doing operation */
835 1.1 christos /* */
836 1.1 christos /* ------------------------------------------------------------------------ */
837 1.1 christos static int
838 1.1 christos ipf_htable_node_add(softc, arg, op, uid)
839 1.1 christos ipf_main_softc_t *softc;
840 1.1 christos void *arg;
841 1.1 christos iplookupop_t *op;
842 1.1 christos int uid;
843 1.1 christos {
844 1.1 christos iphtable_t *iph;
845 1.1 christos iphtent_t hte;
846 1.1 christos int err;
847 1.1 christos
848 1.1 christos if (op->iplo_size != sizeof(hte)) {
849 1.1 christos IPFERROR(30018);
850 1.1 christos return EINVAL;
851 1.1 christos }
852 1.1 christos
853 1.1 christos err = COPYIN(op->iplo_struct, &hte, sizeof(hte));
854 1.1 christos if (err != 0) {
855 1.1 christos IPFERROR(30019);
856 1.1 christos return EFAULT;
857 1.1 christos }
858 1.1 christos hte.ipe_uid = uid;
859 1.1 christos
860 1.1 christos iph = ipf_htable_find(arg, op->iplo_unit, op->iplo_name);
861 1.1 christos if (iph == NULL) {
862 1.1 christos IPFERROR(30020);
863 1.1 christos return ESRCH;
864 1.1 christos }
865 1.1 christos
866 1.1 christos if (ipf_htent_find(iph, &hte) != NULL) {
867 1.1 christos IPFERROR(30021);
868 1.1 christos return EEXIST;
869 1.1 christos }
870 1.1 christos
871 1.1 christos err = ipf_htent_insert(softc, arg, iph, &hte);
872 1.1 christos
873 1.1 christos return err;
874 1.1 christos }
875 1.1 christos
876 1.1 christos
877 1.1 christos /* ------------------------------------------------------------------------ */
878 1.1 christos /* Function: ipf_htent_insert */
879 1.1 christos /* Returns: int - 0 = success, -1 = error */
880 1.1 christos /* Parameters: softc(I) - pointer to soft context main structure */
881 1.1 christos /* arg(I) - pointer to local context to use */
882 1.1 christos /* op(I) - pointer to lookup operation data */
883 1.1 christos /* ipeo(I) - */
884 1.1 christos /* */
885 1.1 christos /* Add an entry to a hash table. */
886 1.1 christos /* ------------------------------------------------------------------------ */
887 1.1 christos static int
888 1.1 christos ipf_htent_insert(softc, arg, iph, ipeo)
889 1.1 christos ipf_main_softc_t *softc;
890 1.1 christos void *arg;
891 1.1 christos iphtable_t *iph;
892 1.1 christos iphtent_t *ipeo;
893 1.1 christos {
894 1.1 christos ipf_htable_softc_t *softh = arg;
895 1.1 christos iphtent_t *ipe;
896 1.1 christos u_int hv;
897 1.1 christos int bits;
898 1.1 christos
899 1.1 christos KMALLOC(ipe, iphtent_t *);
900 1.1 christos if (ipe == NULL)
901 1.1 christos return -1;
902 1.1 christos
903 1.1 christos bcopy((char *)ipeo, (char *)ipe, sizeof(*ipe));
904 1.1 christos ipe->ipe_addr.i6[0] &= ipe->ipe_mask.i6[0];
905 1.1 christos ipe->ipe_addr.i6[1] &= ipe->ipe_mask.i6[1];
906 1.1 christos ipe->ipe_addr.i6[2] &= ipe->ipe_mask.i6[2];
907 1.1 christos ipe->ipe_addr.i6[3] &= ipe->ipe_mask.i6[3];
908 1.1 christos if (ipe->ipe_family == AF_INET) {
909 1.1 christos bits = count4bits(ipe->ipe_mask.in4_addr);
910 1.1 christos ipe->ipe_addr.i6[0] = ntohl(ipe->ipe_addr.i6[0]);
911 1.1 christos ipe->ipe_mask.i6[0] = ntohl(ipe->ipe_mask.i6[0]);
912 1.1 christos ipe->ipe_addr.i6[1] = 0;
913 1.1 christos ipe->ipe_addr.i6[2] = 0;
914 1.1 christos ipe->ipe_addr.i6[3] = 0;
915 1.1 christos ipe->ipe_mask.i6[1] = 0;
916 1.1 christos ipe->ipe_mask.i6[2] = 0;
917 1.1 christos ipe->ipe_mask.i6[3] = 0;
918 1.1 christos hv = IPE_V4_HASH_FN(ipe->ipe_addr.in4_addr,
919 1.1 christos ipe->ipe_mask.in4_addr, iph->iph_size);
920 1.1 christos } else
921 1.1 christos #ifdef USE_INET6
922 1.1 christos if (ipe->ipe_family == AF_INET6) {
923 1.1 christos bits = count6bits(ipe->ipe_mask.i6);
924 1.1 christos ipe->ipe_addr.i6[0] = ntohl(ipe->ipe_addr.i6[0]);
925 1.1 christos ipe->ipe_addr.i6[1] = ntohl(ipe->ipe_addr.i6[1]);
926 1.1 christos ipe->ipe_addr.i6[2] = ntohl(ipe->ipe_addr.i6[2]);
927 1.1 christos ipe->ipe_addr.i6[3] = ntohl(ipe->ipe_addr.i6[3]);
928 1.1 christos ipe->ipe_mask.i6[0] = ntohl(ipe->ipe_mask.i6[0]);
929 1.1 christos ipe->ipe_mask.i6[1] = ntohl(ipe->ipe_mask.i6[1]);
930 1.1 christos ipe->ipe_mask.i6[2] = ntohl(ipe->ipe_mask.i6[2]);
931 1.1 christos ipe->ipe_mask.i6[3] = ntohl(ipe->ipe_mask.i6[3]);
932 1.1 christos hv = IPE_V6_HASH_FN(ipe->ipe_addr.i6,
933 1.1 christos ipe->ipe_mask.i6, iph->iph_size);
934 1.1 christos } else
935 1.1 christos #endif
936 1.1 christos {
937 1.1 christos KFREE(ipe);
938 1.1 christos return -1;
939 1.1 christos }
940 1.1 christos
941 1.1 christos ipe->ipe_owner = iph;
942 1.1 christos ipe->ipe_ref = 1;
943 1.1 christos ipe->ipe_hnext = iph->iph_table[hv];
944 1.1 christos ipe->ipe_phnext = iph->iph_table + hv;
945 1.1 christos
946 1.1 christos if (iph->iph_table[hv] != NULL)
947 1.1 christos iph->iph_table[hv]->ipe_phnext = &ipe->ipe_hnext;
948 1.1 christos iph->iph_table[hv] = ipe;
949 1.1 christos
950 1.1 christos ipe->ipe_next = iph->iph_list;
951 1.1 christos ipe->ipe_pnext = &iph->iph_list;
952 1.1 christos if (ipe->ipe_next != NULL)
953 1.1 christos ipe->ipe_next->ipe_pnext = &ipe->ipe_next;
954 1.1 christos iph->iph_list = ipe;
955 1.1 christos
956 1.1 christos if (ipe->ipe_die != 0) {
957 1.1 christos /*
958 1.1 christos * If the new node has a given expiration time, insert it
959 1.1 christos * into the list of expiring nodes with the ones to be
960 1.1 christos * removed first added to the front of the list. The
961 1.1 christos * insertion is O(n) but it is kept sorted for quick scans
962 1.1 christos * at expiration interval checks.
963 1.1 christos */
964 1.1 christos iphtent_t *n;
965 1.1 christos
966 1.1 christos ipe->ipe_die = softc->ipf_ticks + IPF_TTLVAL(ipe->ipe_die);
967 1.1 christos for (n = softh->ipf_node_explist; n != NULL; n = n->ipe_dnext) {
968 1.1 christos if (ipe->ipe_die < n->ipe_die)
969 1.1 christos break;
970 1.1 christos if (n->ipe_dnext == NULL) {
971 1.1 christos /*
972 1.1 christos * We've got to the last node and everything
973 1.1 christos * wanted to be expired before this new node,
974 1.1 christos * so we have to tack it on the end...
975 1.1 christos */
976 1.1 christos n->ipe_dnext = ipe;
977 1.1 christos ipe->ipe_pdnext = &n->ipe_dnext;
978 1.1 christos n = NULL;
979 1.1 christos break;
980 1.1 christos }
981 1.1 christos }
982 1.1 christos
983 1.1 christos if (softh->ipf_node_explist == NULL) {
984 1.1 christos softh->ipf_node_explist = ipe;
985 1.1 christos ipe->ipe_pdnext = &softh->ipf_node_explist;
986 1.1 christos } else if (n != NULL) {
987 1.1 christos ipe->ipe_dnext = n;
988 1.1 christos ipe->ipe_pdnext = n->ipe_pdnext;
989 1.1 christos n->ipe_pdnext = &ipe->ipe_dnext;
990 1.1 christos }
991 1.1 christos }
992 1.1 christos
993 1.1 christos if (ipe->ipe_family == AF_INET) {
994 1.1 christos if ((bits >= 0) && (bits != 32))
995 1.1 christos iph->iph_maskset[0] |= 1 << bits;
996 1.1 christos }
997 1.1 christos #ifdef USE_INET6
998 1.1 christos else if (ipe->ipe_family == AF_INET6) {
999 1.1 christos if ((bits >= 0) && (bits != 128)) {
1000 1.1 christos if (bits >= 96)
1001 1.1 christos iph->iph_maskset[3] |= 1 << (bits - 96);
1002 1.1 christos else if (bits >= 64)
1003 1.1 christos iph->iph_maskset[2] |= 1 << (bits - 64);
1004 1.1 christos else if (bits >= 32)
1005 1.1 christos iph->iph_maskset[1] |= 1 << (bits - 32);
1006 1.1 christos else
1007 1.1 christos iph->iph_maskset[0] |= 1 << bits;
1008 1.1 christos }
1009 1.1 christos }
1010 1.1 christos #endif
1011 1.1 christos
1012 1.1 christos switch (iph->iph_type & ~IPHASH_ANON)
1013 1.1 christos {
1014 1.1 christos case IPHASH_GROUPMAP :
1015 1.1 christos ipe->ipe_ptr = ipf_group_add(softc, ipe->ipe_group, NULL,
1016 1.1 christos iph->iph_flags, IPL_LOGIPF,
1017 1.1 christos softc->ipf_active);
1018 1.1 christos break;
1019 1.1 christos
1020 1.1 christos default :
1021 1.1 christos ipe->ipe_ptr = NULL;
1022 1.1 christos ipe->ipe_value = 0;
1023 1.1 christos break;
1024 1.1 christos }
1025 1.1 christos
1026 1.1 christos ipe->ipe_unit = iph->iph_unit;
1027 1.1 christos softh->ipf_nhtnodes[ipe->ipe_unit + 1]++;
1028 1.1 christos
1029 1.1 christos return 0;
1030 1.1 christos }
1031 1.1 christos
1032 1.1 christos
1033 1.1 christos /* ------------------------------------------------------------------------ */
1034 1.1 christos /* Function: ipf_htent_find */
1035 1.1 christos /* Returns: int - 0 = success, else error */
1036 1.1 christos /* Parameters: iph(I) - pointer to table to search */
1037 1.1 christos /* ipeo(I) - pointer to entry to find */
1038 1.1 christos /* */
1039 1.1 christos /* While it isn't absolutely necessary to for the address and mask to be */
1040 1.1 christos /* passed in through an iphtent_t structure, one is always present when it */
1041 1.1 christos /* is time to call this function, so it is just more convenient. */
1042 1.1 christos /* ------------------------------------------------------------------------ */
1043 1.1 christos static iphtent_t *
1044 1.1 christos ipf_htent_find(iph, ipeo)
1045 1.1 christos iphtable_t *iph;
1046 1.1 christos iphtent_t *ipeo;
1047 1.1 christos {
1048 1.1 christos iphtent_t ipe, *ent;
1049 1.1 christos u_int hv;
1050 1.1 christos int bits;
1051 1.1 christos
1052 1.1 christos bcopy((char *)ipeo, (char *)&ipe, sizeof(ipe));
1053 1.1 christos ipe.ipe_addr.i6[0] &= ipe.ipe_mask.i6[0];
1054 1.1 christos ipe.ipe_addr.i6[1] &= ipe.ipe_mask.i6[1];
1055 1.1 christos ipe.ipe_addr.i6[2] &= ipe.ipe_mask.i6[2];
1056 1.1 christos ipe.ipe_addr.i6[3] &= ipe.ipe_mask.i6[3];
1057 1.1 christos if (ipe.ipe_family == AF_INET) {
1058 1.1 christos bits = count4bits(ipe.ipe_mask.in4_addr);
1059 1.1 christos ipe.ipe_addr.i6[0] = ntohl(ipe.ipe_addr.i6[0]);
1060 1.1 christos ipe.ipe_mask.i6[0] = ntohl(ipe.ipe_mask.i6[0]);
1061 1.1 christos ipe.ipe_addr.i6[1] = 0;
1062 1.1 christos ipe.ipe_addr.i6[2] = 0;
1063 1.1 christos ipe.ipe_addr.i6[3] = 0;
1064 1.1 christos ipe.ipe_mask.i6[1] = 0;
1065 1.1 christos ipe.ipe_mask.i6[2] = 0;
1066 1.1 christos ipe.ipe_mask.i6[3] = 0;
1067 1.1 christos hv = IPE_V4_HASH_FN(ipe.ipe_addr.in4_addr,
1068 1.1 christos ipe.ipe_mask.in4_addr, iph->iph_size);
1069 1.1 christos } else
1070 1.1 christos #ifdef USE_INET6
1071 1.1 christos if (ipe.ipe_family == AF_INET6) {
1072 1.1 christos bits = count6bits(ipe.ipe_mask.i6);
1073 1.1 christos ipe.ipe_addr.i6[0] = ntohl(ipe.ipe_addr.i6[0]);
1074 1.1 christos ipe.ipe_addr.i6[1] = ntohl(ipe.ipe_addr.i6[1]);
1075 1.1 christos ipe.ipe_addr.i6[2] = ntohl(ipe.ipe_addr.i6[2]);
1076 1.1 christos ipe.ipe_addr.i6[3] = ntohl(ipe.ipe_addr.i6[3]);
1077 1.1 christos ipe.ipe_mask.i6[0] = ntohl(ipe.ipe_mask.i6[0]);
1078 1.1 christos ipe.ipe_mask.i6[1] = ntohl(ipe.ipe_mask.i6[1]);
1079 1.1 christos ipe.ipe_mask.i6[2] = ntohl(ipe.ipe_mask.i6[2]);
1080 1.1 christos ipe.ipe_mask.i6[3] = ntohl(ipe.ipe_mask.i6[3]);
1081 1.1 christos hv = IPE_V6_HASH_FN(ipe.ipe_addr.i6,
1082 1.1 christos ipe.ipe_mask.i6, iph->iph_size);
1083 1.1 christos } else
1084 1.1 christos #endif
1085 1.1 christos return NULL;
1086 1.1 christos
1087 1.1 christos for (ent = iph->iph_table[hv]; ent != NULL; ent = ent->ipe_hnext) {
1088 1.1 christos if (ent->ipe_family != ipe.ipe_family)
1089 1.1 christos continue;
1090 1.1 christos if (IP6_NEQ(&ipe.ipe_addr, &ent->ipe_addr))
1091 1.1 christos continue;
1092 1.1 christos if (IP6_NEQ(&ipe.ipe_mask, &ent->ipe_mask))
1093 1.1 christos continue;
1094 1.1 christos break;
1095 1.1 christos }
1096 1.1 christos
1097 1.1 christos return ent;
1098 1.1 christos }
1099 1.1 christos
1100 1.1 christos
1101 1.1 christos /* ------------------------------------------------------------------------ */
1102 1.1 christos /* Function: ipf_iphmfindgroup */
1103 1.1 christos /* Returns: int - 0 = success, else error */
1104 1.1 christos /* Parameters: softc(I) - pointer to soft context main structure */
1105 1.1 christos /* tptr(I) - */
1106 1.1 christos /* aptr(I) - */
1107 1.1 christos /* */
1108 1.1 christos /* Search a hash table for a matching entry and return the pointer stored */
1109 1.1 christos /* in it for use as the next group of rules to search. */
1110 1.1 christos /* */
1111 1.1 christos /* This function is exposed becaues it is used in the group-map feature. */
1112 1.1 christos /* ------------------------------------------------------------------------ */
1113 1.1 christos void *
1114 1.1 christos ipf_iphmfindgroup(softc, tptr, aptr)
1115 1.1 christos ipf_main_softc_t *softc;
1116 1.1 christos void *tptr, *aptr;
1117 1.1 christos {
1118 1.1 christos struct in_addr *addr;
1119 1.1 christos iphtable_t *iph;
1120 1.1 christos iphtent_t *ipe;
1121 1.1 christos void *rval;
1122 1.1 christos
1123 1.1 christos READ_ENTER(&softc->ipf_poolrw);
1124 1.1 christos iph = tptr;
1125 1.1 christos addr = aptr;
1126 1.1 christos
1127 1.1 christos ipe = ipf_iphmfind(iph, addr);
1128 1.1 christos if (ipe != NULL)
1129 1.1 christos rval = ipe->ipe_ptr;
1130 1.1 christos else
1131 1.1 christos rval = NULL;
1132 1.1 christos RWLOCK_EXIT(&softc->ipf_poolrw);
1133 1.1 christos return rval;
1134 1.1 christos }
1135 1.1 christos
1136 1.1 christos
1137 1.1 christos /* ------------------------------------------------------------------------ */
1138 1.1 christos /* Function: ipf_iphmfindip */
1139 1.1 christos /* Returns: int - 0 == +ve match, -1 == error, 1 == -ve/no match */
1140 1.1 christos /* Parameters: softc(I) - pointer to soft context main structure */
1141 1.1 christos /* tptr(I) - pointer to the pool to search */
1142 1.1 christos /* ipversion(I) - IP protocol version (4 or 6) */
1143 1.1 christos /* aptr(I) - pointer to address information */
1144 1.1 christos /* bytes(I) - packet length */
1145 1.1 christos /* */
1146 1.1 christos /* Search the hash table for a given address and return a search result. */
1147 1.1 christos /* ------------------------------------------------------------------------ */
1148 1.1 christos static int
1149 1.1 christos ipf_iphmfindip(softc, tptr, ipversion, aptr, bytes)
1150 1.1 christos ipf_main_softc_t *softc;
1151 1.1 christos void *tptr, *aptr;
1152 1.1 christos int ipversion;
1153 1.1 christos u_int bytes;
1154 1.1 christos {
1155 1.1 christos struct in_addr *addr;
1156 1.1 christos iphtable_t *iph;
1157 1.1 christos iphtent_t *ipe;
1158 1.1 christos int rval;
1159 1.1 christos
1160 1.1 christos if (tptr == NULL || aptr == NULL)
1161 1.1 christos return -1;
1162 1.1 christos
1163 1.1 christos iph = tptr;
1164 1.1 christos addr = aptr;
1165 1.1 christos
1166 1.1 christos READ_ENTER(&softc->ipf_poolrw);
1167 1.1 christos if (ipversion == 4) {
1168 1.1 christos ipe = ipf_iphmfind(iph, addr);
1169 1.1 christos #ifdef USE_INET6
1170 1.1 christos } else if (ipversion == 6) {
1171 1.1 christos ipe = ipf_iphmfind6(iph, (i6addr_t *)addr);
1172 1.1 christos #endif
1173 1.1 christos } else {
1174 1.1 christos ipe = NULL;
1175 1.1 christos }
1176 1.1 christos
1177 1.1 christos if (ipe != NULL) {
1178 1.1 christos rval = 0;
1179 1.1 christos ipe->ipe_hits++;
1180 1.1 christos ipe->ipe_bytes += bytes;
1181 1.1 christos } else {
1182 1.1 christos rval = 1;
1183 1.1 christos }
1184 1.1 christos RWLOCK_EXIT(&softc->ipf_poolrw);
1185 1.1 christos return rval;
1186 1.1 christos }
1187 1.1 christos
1188 1.1 christos
1189 1.1 christos /* ------------------------------------------------------------------------ */
1190 1.1 christos /* Function: ipf_iphmfindip */
1191 1.1 christos /* Parameters: iph(I) - pointer to hash table */
1192 1.1 christos /* addr(I) - pointer to IPv4 address */
1193 1.1 christos /* Locks: ipf_poolrw */
1194 1.1 christos /* */
1195 1.1 christos /* ------------------------------------------------------------------------ */
1196 1.1 christos static iphtent_t *
1197 1.1 christos ipf_iphmfind(iph, addr)
1198 1.1 christos iphtable_t *iph;
1199 1.1 christos struct in_addr *addr;
1200 1.1 christos {
1201 1.1 christos u_32_t hmsk, msk, ips;
1202 1.1 christos iphtent_t *ipe;
1203 1.1 christos u_int hv;
1204 1.1 christos
1205 1.1 christos hmsk = iph->iph_maskset[0];
1206 1.1 christos msk = 0xffffffff;
1207 1.1 christos maskloop:
1208 1.1 christos ips = ntohl(addr->s_addr) & msk;
1209 1.1 christos hv = IPE_V4_HASH_FN(ips, msk, iph->iph_size);
1210 1.1 christos for (ipe = iph->iph_table[hv]; (ipe != NULL); ipe = ipe->ipe_hnext) {
1211 1.1 christos if ((ipe->ipe_family != AF_INET) ||
1212 1.1 christos (ipe->ipe_mask.in4_addr != msk) ||
1213 1.1 christos (ipe->ipe_addr.in4_addr != ips)) {
1214 1.1 christos continue;
1215 1.1 christos }
1216 1.1 christos break;
1217 1.1 christos }
1218 1.1 christos
1219 1.1 christos if ((ipe == NULL) && (hmsk != 0)) {
1220 1.1 christos while (hmsk != 0) {
1221 1.1 christos msk <<= 1;
1222 1.1 christos if (hmsk & 0x80000000)
1223 1.1 christos break;
1224 1.1 christos hmsk <<= 1;
1225 1.1 christos }
1226 1.1 christos if (hmsk != 0) {
1227 1.1 christos hmsk <<= 1;
1228 1.1 christos goto maskloop;
1229 1.1 christos }
1230 1.1 christos }
1231 1.1 christos return ipe;
1232 1.1 christos }
1233 1.1 christos
1234 1.1 christos
1235 1.1 christos /* ------------------------------------------------------------------------ */
1236 1.1 christos /* Function: ipf_htable_iter_next */
1237 1.1 christos /* Returns: int - 0 = success, else error */
1238 1.1 christos /* Parameters: softc(I) - pointer to soft context main structure */
1239 1.1 christos /* arg(I) - pointer to local context to use */
1240 1.1 christos /* token(I) - */
1241 1.1 christos /* ilp(I) - */
1242 1.1 christos /* */
1243 1.1 christos /* ------------------------------------------------------------------------ */
1244 1.1 christos static int
1245 1.1 christos ipf_htable_iter_next(softc, arg, token, ilp)
1246 1.1 christos ipf_main_softc_t *softc;
1247 1.1 christos void *arg;
1248 1.1 christos ipftoken_t *token;
1249 1.1 christos ipflookupiter_t *ilp;
1250 1.1 christos {
1251 1.1 christos ipf_htable_softc_t *softh = arg;
1252 1.1 christos iphtent_t *node, zn, *nextnode;
1253 1.1 christos iphtable_t *iph, zp, *nextiph;
1254 1.1 christos void *hnext;
1255 1.1 christos int err;
1256 1.1 christos
1257 1.1 christos err = 0;
1258 1.1 christos iph = NULL;
1259 1.1 christos node = NULL;
1260 1.1 christos nextiph = NULL;
1261 1.1 christos nextnode = NULL;
1262 1.1 christos
1263 1.1 christos READ_ENTER(&softc->ipf_poolrw);
1264 1.1 christos
1265 1.1 christos switch (ilp->ili_otype)
1266 1.1 christos {
1267 1.1 christos case IPFLOOKUPITER_LIST :
1268 1.1 christos iph = token->ipt_data;
1269 1.1 christos if (iph == NULL) {
1270 1.1 christos nextiph = softh->ipf_htables[(int)ilp->ili_unit + 1];
1271 1.1 christos } else {
1272 1.1 christos nextiph = iph->iph_next;
1273 1.1 christos }
1274 1.1 christos
1275 1.1 christos if (nextiph != NULL) {
1276 1.1 christos ATOMIC_INC(nextiph->iph_ref);
1277 1.1 christos token->ipt_data = nextiph;
1278 1.1 christos } else {
1279 1.1 christos bzero((char *)&zp, sizeof(zp));
1280 1.1 christos nextiph = &zp;
1281 1.1 christos token->ipt_data = NULL;
1282 1.1 christos }
1283 1.1 christos hnext = nextiph->iph_next;
1284 1.1 christos break;
1285 1.1 christos
1286 1.1 christos case IPFLOOKUPITER_NODE :
1287 1.1 christos node = token->ipt_data;
1288 1.1 christos if (node == NULL) {
1289 1.1 christos iph = ipf_htable_find(arg, ilp->ili_unit + 1,
1290 1.1 christos ilp->ili_name);
1291 1.1 christos if (iph == NULL) {
1292 1.1 christos IPFERROR(30009);
1293 1.1 christos err = ESRCH;
1294 1.1 christos } else {
1295 1.1 christos nextnode = iph->iph_list;
1296 1.1 christos }
1297 1.1 christos } else {
1298 1.1 christos nextnode = node->ipe_next;
1299 1.1 christos }
1300 1.1 christos
1301 1.1 christos if (nextnode != NULL) {
1302 1.1 christos ATOMIC_INC(nextnode->ipe_ref);
1303 1.1 christos token->ipt_data = nextnode;
1304 1.1 christos } else {
1305 1.1 christos bzero((char *)&zn, sizeof(zn));
1306 1.1 christos nextnode = &zn;
1307 1.1 christos token->ipt_data = NULL;
1308 1.1 christos }
1309 1.1 christos hnext = nextnode->ipe_next;
1310 1.1 christos break;
1311 1.1 christos
1312 1.1 christos default :
1313 1.1 christos IPFERROR(30010);
1314 1.1 christos err = EINVAL;
1315 1.1 christos hnext = NULL;
1316 1.1 christos break;
1317 1.1 christos }
1318 1.1 christos
1319 1.1 christos RWLOCK_EXIT(&softc->ipf_poolrw);
1320 1.1 christos if (err != 0)
1321 1.1 christos return err;
1322 1.1 christos
1323 1.1 christos switch (ilp->ili_otype)
1324 1.1 christos {
1325 1.1 christos case IPFLOOKUPITER_LIST :
1326 1.1 christos err = COPYOUT(nextiph, ilp->ili_data, sizeof(*nextiph));
1327 1.1 christos if (err != 0) {
1328 1.1 christos IPFERROR(30011);
1329 1.1 christos err = EFAULT;
1330 1.1 christos }
1331 1.1 christos if (iph != NULL) {
1332 1.1 christos WRITE_ENTER(&softc->ipf_poolrw);
1333 1.1 christos ipf_htable_deref(softc, softh, iph);
1334 1.1 christos RWLOCK_EXIT(&softc->ipf_poolrw);
1335 1.1 christos }
1336 1.1 christos break;
1337 1.1 christos
1338 1.1 christos case IPFLOOKUPITER_NODE :
1339 1.1 christos err = COPYOUT(nextnode, ilp->ili_data, sizeof(*nextnode));
1340 1.1 christos if (err != 0) {
1341 1.1 christos IPFERROR(30012);
1342 1.1 christos err = EFAULT;
1343 1.1 christos }
1344 1.1 christos if (node != NULL) {
1345 1.1 christos WRITE_ENTER(&softc->ipf_poolrw);
1346 1.1 christos ipf_htent_deref(softc, node);
1347 1.1 christos RWLOCK_EXIT(&softc->ipf_poolrw);
1348 1.1 christos }
1349 1.1 christos break;
1350 1.1 christos }
1351 1.1 christos
1352 1.1 christos if (hnext != NULL)
1353 1.1 christos ipf_token_mark_complete(token);
1354 1.1 christos
1355 1.1 christos return err;
1356 1.1 christos }
1357 1.1 christos
1358 1.1 christos
1359 1.1 christos /* ------------------------------------------------------------------------ */
1360 1.1 christos /* Function: ipf_htable_iter_deref */
1361 1.1 christos /* Returns: int - 0 = success, else error */
1362 1.1 christos /* Parameters: softc(I) - pointer to soft context main structure */
1363 1.1 christos /* arg(I) - pointer to local context to use */
1364 1.1 christos /* otype(I) - which data structure type is being walked */
1365 1.1 christos /* unit(I) - ipfilter device to which we are working on */
1366 1.1 christos /* data(I) - pointer to old data structure */
1367 1.1 christos /* */
1368 1.1 christos /* ------------------------------------------------------------------------ */
1369 1.1 christos static int
1370 1.1 christos ipf_htable_iter_deref(softc, arg, otype, unit, data)
1371 1.1 christos ipf_main_softc_t *softc;
1372 1.1 christos void *arg;
1373 1.1 christos int otype;
1374 1.1 christos int unit;
1375 1.1 christos void *data;
1376 1.1 christos {
1377 1.1 christos
1378 1.1 christos if (data == NULL)
1379 1.1 christos return EFAULT;
1380 1.1 christos
1381 1.1 christos if (unit < -1 || unit > IPL_LOGMAX)
1382 1.1 christos return EINVAL;
1383 1.1 christos
1384 1.1 christos switch (otype)
1385 1.1 christos {
1386 1.1 christos case IPFLOOKUPITER_LIST :
1387 1.1 christos ipf_htable_deref(softc, arg, (iphtable_t *)data);
1388 1.1 christos break;
1389 1.1 christos
1390 1.1 christos case IPFLOOKUPITER_NODE :
1391 1.1 christos ipf_htent_deref(arg, (iphtent_t *)data);
1392 1.1 christos break;
1393 1.1 christos default :
1394 1.1 christos break;
1395 1.1 christos }
1396 1.1 christos
1397 1.1 christos return 0;
1398 1.1 christos }
1399 1.1 christos
1400 1.1 christos
1401 1.1 christos #ifdef USE_INET6
1402 1.1 christos /* ------------------------------------------------------------------------ */
1403 1.1 christos /* Function: ipf_iphmfind6 */
1404 1.1 christos /* Parameters: iph(I) - pointer to hash table */
1405 1.1 christos /* addr(I) - pointer to IPv6 address */
1406 1.1 christos /* Locks: ipf_poolrw */
1407 1.1 christos /* */
1408 1.1 christos /* ------------------------------------------------------------------------ */
1409 1.1 christos static iphtent_t *
1410 1.1 christos ipf_iphmfind6(iph, addr)
1411 1.1 christos iphtable_t *iph;
1412 1.1 christos i6addr_t *addr;
1413 1.1 christos {
1414 1.1 christos i6addr_t msk, ips;
1415 1.1 christos iphtent_t *ipe;
1416 1.1 christos u_32_t hmsk;
1417 1.1 christos u_int hv;
1418 1.1 christos int i;
1419 1.1 christos
1420 1.1 christos for (i = 3, hmsk = iph->iph_maskset[3]; (hmsk == 0) && (i >= 0); i--)
1421 1.1 christos hmsk = iph->iph_maskset[i];
1422 1.1 christos
1423 1.1 christos msk.i6[0] = 0xffffffff;
1424 1.1 christos msk.i6[1] = 0xffffffff;
1425 1.1 christos msk.i6[2] = 0xffffffff;
1426 1.1 christos msk.i6[3] = 0xffffffff;
1427 1.1 christos ips.i6[0] = ntohl(addr->i6[0]);
1428 1.1 christos ips.i6[1] = ntohl(addr->i6[1]);
1429 1.1 christos ips.i6[2] = ntohl(addr->i6[2]);
1430 1.1 christos ips.i6[3] = ntohl(addr->i6[3]);
1431 1.1 christos maskloop:
1432 1.1 christos if (i >= 0)
1433 1.1 christos ips.i6[i] = ntohl(addr->i6[i]) & msk.i6[i];
1434 1.1 christos hv = IPE_V6_HASH_FN(ips.i6, msk.i6, iph->iph_size);
1435 1.1 christos for (ipe = iph->iph_table[hv]; (ipe != NULL); ipe = ipe->ipe_next) {
1436 1.1 christos if ((ipe->ipe_family != AF_INET6) ||
1437 1.1 christos IP6_NEQ(&ipe->ipe_mask, &msk) ||
1438 1.1 christos IP6_NEQ(&ipe->ipe_addr, &ips)) {
1439 1.1 christos continue;
1440 1.1 christos }
1441 1.1 christos break;
1442 1.1 christos }
1443 1.1 christos
1444 1.1 christos if ((ipe == NULL) && (i >= 0)) {
1445 1.1 christos nextmask:
1446 1.1 christos if (hmsk != 0) {
1447 1.1 christos while (hmsk != 0) {
1448 1.1 christos msk.i6[i] <<= 1;
1449 1.1 christos if (hmsk & 0x80000000)
1450 1.1 christos break;
1451 1.1 christos hmsk <<= 1;
1452 1.1 christos }
1453 1.1 christos if (hmsk != 0) {
1454 1.1 christos hmsk <<= 1;
1455 1.1 christos goto maskloop;
1456 1.1 christos }
1457 1.1 christos } else if (i >= 0) {
1458 1.1 christos ips.i6[i] = 0;
1459 1.1 christos msk.i6[i] = 0;
1460 1.1 christos i--;
1461 1.1 christos hmsk = iph->iph_maskset[i];
1462 1.1 christos goto nextmask;
1463 1.1 christos }
1464 1.1 christos }
1465 1.1 christos return ipe;
1466 1.1 christos }
1467 1.1 christos #endif
1468 1.1 christos
1469 1.1 christos
1470 1.1 christos static void
1471 1.1 christos ipf_htable_expire(softc, arg)
1472 1.1 christos ipf_main_softc_t *softc;
1473 1.1 christos void *arg;
1474 1.1 christos {
1475 1.1 christos ipf_htable_softc_t *softh = arg;
1476 1.1 christos iphtent_t *n;
1477 1.1 christos
1478 1.1 christos while ((n = softh->ipf_node_explist) != NULL) {
1479 1.1 christos if (n->ipe_die > softc->ipf_ticks)
1480 1.1 christos break;
1481 1.1 christos
1482 1.1 christos ipf_htent_remove(softc, softh, n->ipe_owner, n);
1483 1.1 christos }
1484 1.1 christos }
1485 1.1 christos
1486 1.1 christos
1487 1.1 christos #ifndef _KERNEL
1488 1.1 christos
1489 1.1 christos /* ------------------------------------------------------------------------ */
1490 1.1 christos /* */
1491 1.1 christos /* ------------------------------------------------------------------------ */
1492 1.1 christos void
1493 1.1 christos ipf_htable_dump(softc, arg)
1494 1.1 christos ipf_main_softc_t *softc;
1495 1.1 christos void *arg;
1496 1.1 christos {
1497 1.1 christos ipf_htable_softc_t *softh = arg;
1498 1.1 christos iphtable_t *iph;
1499 1.1 christos int i;
1500 1.1 christos
1501 1.1 christos printf("List of configured hash tables\n");
1502 1.1 christos for (i = 0; i < IPL_LOGSIZE; i++)
1503 1.1 christos for (iph = softh->ipf_htables[i]; iph != NULL;
1504 1.1 christos iph = iph->iph_next)
1505 1.1 christos printhash(iph, bcopywrap, NULL, opts, NULL);
1506 1.1 christos
1507 1.1 christos }
1508 1.1 christos #endif
1509