MFC r1.6 r1.30 r1.28 (HEAD):
[dragonfly.git] / usr.sbin / pfctl / pfctl_radix.c
blobc3349cd97b20cfc87a6c12674198c523b219bb3a
1 /* $OpenBSD: pfctl_radix.c,v 1.24 2004/02/10 18:29:30 henning Exp $ */
2 /* $DragonFly: src/usr.sbin/pfctl/pfctl_radix.c,v 1.1 2004/09/21 21:25:28 joerg Exp $ */
4 /*
5 * Copyright (c) 2002 Cedric Berger
6 * All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
12 * - Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * - Redistributions in binary form must reproduce the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer in the documentation and/or other materials provided
17 * with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
22 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
23 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
24 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
25 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
26 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
29 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 * POSSIBILITY OF SUCH DAMAGE.
34 #include <sys/types.h>
35 #include <sys/ioctl.h>
36 #include <sys/socket.h>
38 #include <net/if.h>
39 #include <net/pf/pfvar.h>
41 #include <errno.h>
42 #include <string.h>
43 #include <ctype.h>
44 #include <stdio.h>
45 #include <stdlib.h>
46 #include <limits.h>
47 #include <err.h>
49 #include "pfctl.h"
51 #define BUF_SIZE 256
53 extern int dev_fd;
55 static int pfr_next_token(char buf[], FILE *);
58 int
59 pfr_clr_tables(struct pfr_table *filter, int *ndel, int flags)
61 struct pfioc_table io;
63 bzero(&io, sizeof io);
64 io.pfrio_flags = flags;
65 if (filter != NULL)
66 io.pfrio_table = *filter;
67 if (ioctl(dev_fd, DIOCRCLRTABLES, &io))
68 return (-1);
69 if (ndel != NULL)
70 *ndel = io.pfrio_ndel;
71 return (0);
74 int
75 pfr_add_tables(struct pfr_table *tbl, int size, int *nadd, int flags)
77 struct pfioc_table io;
79 if (size < 0 || (size && tbl == NULL)) {
80 errno = EINVAL;
81 return (-1);
83 bzero(&io, sizeof io);
84 io.pfrio_flags = flags;
85 io.pfrio_buffer = tbl;
86 io.pfrio_esize = sizeof(*tbl);
87 io.pfrio_size = size;
88 if (ioctl(dev_fd, DIOCRADDTABLES, &io))
89 return (-1);
90 if (nadd != NULL)
91 *nadd = io.pfrio_nadd;
92 return (0);
95 int
96 pfr_del_tables(struct pfr_table *tbl, int size, int *ndel, int flags)
98 struct pfioc_table io;
100 if (size < 0 || (size && tbl == NULL)) {
101 errno = EINVAL;
102 return (-1);
104 bzero(&io, sizeof io);
105 io.pfrio_flags = flags;
106 io.pfrio_buffer = tbl;
107 io.pfrio_esize = sizeof(*tbl);
108 io.pfrio_size = size;
109 if (ioctl(dev_fd, DIOCRDELTABLES, &io))
110 return (-1);
111 if (ndel != NULL)
112 *ndel = io.pfrio_ndel;
113 return (0);
117 pfr_get_tables(struct pfr_table *filter, struct pfr_table *tbl, int *size,
118 int flags)
120 struct pfioc_table io;
122 if (size == NULL || *size < 0 || (*size && tbl == NULL)) {
123 errno = EINVAL;
124 return (-1);
126 bzero(&io, sizeof io);
127 io.pfrio_flags = flags;
128 if (filter != NULL)
129 io.pfrio_table = *filter;
130 io.pfrio_buffer = tbl;
131 io.pfrio_esize = sizeof(*tbl);
132 io.pfrio_size = *size;
133 if (ioctl(dev_fd, DIOCRGETTABLES, &io))
134 return (-1);
135 *size = io.pfrio_size;
136 return (0);
140 pfr_get_tstats(struct pfr_table *filter, struct pfr_tstats *tbl, int *size,
141 int flags)
143 struct pfioc_table io;
145 if (size == NULL || *size < 0 || (*size && tbl == NULL)) {
146 errno = EINVAL;
147 return (-1);
149 bzero(&io, sizeof io);
150 io.pfrio_flags = flags;
151 if (filter != NULL)
152 io.pfrio_table = *filter;
153 io.pfrio_buffer = tbl;
154 io.pfrio_esize = sizeof(*tbl);
155 io.pfrio_size = *size;
156 if (ioctl(dev_fd, DIOCRGETTSTATS, &io))
157 return (-1);
158 *size = io.pfrio_size;
159 return (0);
163 pfr_clr_addrs(struct pfr_table *tbl, int *ndel, int flags)
165 struct pfioc_table io;
167 if (tbl == NULL) {
168 errno = EINVAL;
169 return (-1);
171 bzero(&io, sizeof io);
172 io.pfrio_flags = flags;
173 io.pfrio_table = *tbl;
174 if (ioctl(dev_fd, DIOCRCLRADDRS, &io))
175 return (-1);
176 if (ndel != NULL)
177 *ndel = io.pfrio_ndel;
178 return (0);
182 pfr_add_addrs(struct pfr_table *tbl, struct pfr_addr *addr, int size,
183 int *nadd, int flags)
185 struct pfioc_table io;
187 if (tbl == NULL || size < 0 || (size && addr == NULL)) {
188 errno = EINVAL;
189 return (-1);
191 bzero(&io, sizeof io);
192 io.pfrio_flags = flags;
193 io.pfrio_table = *tbl;
194 io.pfrio_buffer = addr;
195 io.pfrio_esize = sizeof(*addr);
196 io.pfrio_size = size;
197 if (ioctl(dev_fd, DIOCRADDADDRS, &io))
198 return (-1);
199 if (nadd != NULL)
200 *nadd = io.pfrio_nadd;
201 return (0);
205 pfr_del_addrs(struct pfr_table *tbl, struct pfr_addr *addr, int size,
206 int *ndel, int flags)
208 struct pfioc_table io;
210 if (tbl == NULL || size < 0 || (size && addr == NULL)) {
211 errno = EINVAL;
212 return (-1);
214 bzero(&io, sizeof io);
215 io.pfrio_flags = flags;
216 io.pfrio_table = *tbl;
217 io.pfrio_buffer = addr;
218 io.pfrio_esize = sizeof(*addr);
219 io.pfrio_size = size;
220 if (ioctl(dev_fd, DIOCRDELADDRS, &io))
221 return (-1);
222 if (ndel != NULL)
223 *ndel = io.pfrio_ndel;
224 return (0);
228 pfr_set_addrs(struct pfr_table *tbl, struct pfr_addr *addr, int size,
229 int *size2, int *nadd, int *ndel, int *nchange, int flags)
231 struct pfioc_table io;
233 if (tbl == NULL || size < 0 || (size && addr == NULL)) {
234 errno = EINVAL;
235 return (-1);
237 bzero(&io, sizeof io);
238 io.pfrio_flags = flags;
239 io.pfrio_table = *tbl;
240 io.pfrio_buffer = addr;
241 io.pfrio_esize = sizeof(*addr);
242 io.pfrio_size = size;
243 io.pfrio_size2 = (size2 != NULL) ? *size2 : 0;
244 if (ioctl(dev_fd, DIOCRSETADDRS, &io))
245 return (-1);
246 if (nadd != NULL)
247 *nadd = io.pfrio_nadd;
248 if (ndel != NULL)
249 *ndel = io.pfrio_ndel;
250 if (nchange != NULL)
251 *nchange = io.pfrio_nchange;
252 if (size2 != NULL)
253 *size2 = io.pfrio_size2;
254 return (0);
258 pfr_get_addrs(struct pfr_table *tbl, struct pfr_addr *addr, int *size,
259 int flags)
261 struct pfioc_table io;
263 if (tbl == NULL || size == NULL || *size < 0 ||
264 (*size && addr == NULL)) {
265 errno = EINVAL;
266 return (-1);
268 bzero(&io, sizeof io);
269 io.pfrio_flags = flags;
270 io.pfrio_table = *tbl;
271 io.pfrio_buffer = addr;
272 io.pfrio_esize = sizeof(*addr);
273 io.pfrio_size = *size;
274 if (ioctl(dev_fd, DIOCRGETADDRS, &io))
275 return (-1);
276 *size = io.pfrio_size;
277 return (0);
281 pfr_get_astats(struct pfr_table *tbl, struct pfr_astats *addr, int *size,
282 int flags)
284 struct pfioc_table io;
286 if (tbl == NULL || size == NULL || *size < 0 ||
287 (*size && addr == NULL)) {
288 errno = EINVAL;
289 return (-1);
291 bzero(&io, sizeof io);
292 io.pfrio_flags = flags;
293 io.pfrio_table = *tbl;
294 io.pfrio_buffer = addr;
295 io.pfrio_esize = sizeof(*addr);
296 io.pfrio_size = *size;
297 if (ioctl(dev_fd, DIOCRGETASTATS, &io))
298 return (-1);
299 *size = io.pfrio_size;
300 return (0);
304 pfr_clr_astats(struct pfr_table *tbl, struct pfr_addr *addr, int size,
305 int *nzero, int flags)
307 struct pfioc_table io;
309 if (tbl == NULL || size < 0 || (size && addr == NULL)) {
310 errno = EINVAL;
311 return (-1);
313 bzero(&io, sizeof io);
314 io.pfrio_flags = flags;
315 io.pfrio_table = *tbl;
316 io.pfrio_buffer = addr;
317 io.pfrio_esize = sizeof(*addr);
318 io.pfrio_size = size;
319 if (ioctl(dev_fd, DIOCRCLRASTATS, &io))
320 return (-1);
321 if (nzero != NULL)
322 *nzero = io.pfrio_nzero;
323 return (0);
327 pfr_clr_tstats(struct pfr_table *tbl, int size, int *nzero, int flags)
329 struct pfioc_table io;
331 if (size < 0 || (size && !tbl)) {
332 errno = EINVAL;
333 return (-1);
335 bzero(&io, sizeof io);
336 io.pfrio_flags = flags;
337 io.pfrio_buffer = tbl;
338 io.pfrio_esize = sizeof(*tbl);
339 io.pfrio_size = size;
340 if (ioctl(dev_fd, DIOCRCLRTSTATS, &io))
341 return (-1);
342 if (nzero)
343 *nzero = io.pfrio_nzero;
344 return (0);
348 pfr_set_tflags(struct pfr_table *tbl, int size, int setflag, int clrflag,
349 int *nchange, int *ndel, int flags)
351 struct pfioc_table io;
353 if (size < 0 || (size && !tbl)) {
354 errno = EINVAL;
355 return (-1);
357 bzero(&io, sizeof io);
358 io.pfrio_flags = flags;
359 io.pfrio_buffer = tbl;
360 io.pfrio_esize = sizeof(*tbl);
361 io.pfrio_size = size;
362 io.pfrio_setflag = setflag;
363 io.pfrio_clrflag = clrflag;
364 if (ioctl(dev_fd, DIOCRSETTFLAGS, &io))
365 return (-1);
366 if (nchange)
367 *nchange = io.pfrio_nchange;
368 if (ndel)
369 *ndel = io.pfrio_ndel;
370 return (0);
374 pfr_tst_addrs(struct pfr_table *tbl, struct pfr_addr *addr, int size,
375 int *nmatch, int flags)
377 struct pfioc_table io;
379 if (tbl == NULL || size < 0 || (size && addr == NULL)) {
380 errno = EINVAL;
381 return (-1);
383 bzero(&io, sizeof io);
384 io.pfrio_flags = flags;
385 io.pfrio_table = *tbl;
386 io.pfrio_buffer = addr;
387 io.pfrio_esize = sizeof(*addr);
388 io.pfrio_size = size;
389 if (ioctl(dev_fd, DIOCRTSTADDRS, &io))
390 return (-1);
391 if (nmatch)
392 *nmatch = io.pfrio_nmatch;
393 return (0);
397 pfr_ina_begin(struct pfr_table *trs, int *ticket, int *ndel, int flags)
399 struct pfioc_table io;
401 bzero(&io, sizeof io);
402 if (trs != NULL)
403 io.pfrio_table = *trs;
404 io.pfrio_flags = flags;
405 if (ioctl(dev_fd, DIOCRINABEGIN, &io))
406 return (-1);
407 if (ndel != NULL)
408 *ndel = io.pfrio_ndel;
409 if (ticket != NULL)
410 *ticket = io.pfrio_ticket;
411 return (0);
415 pfr_ina_commit(struct pfr_table *trs, int ticket, int *nadd, int *nchange,
416 int flags)
418 struct pfioc_table io;
420 bzero(&io, sizeof io);
421 if (trs != NULL)
422 io.pfrio_table = *trs;
423 io.pfrio_flags = flags;
424 io.pfrio_ticket = ticket;
425 if (ioctl(dev_fd, DIOCRINACOMMIT, &io))
426 return (-1);
427 if (nadd != NULL)
428 *nadd = io.pfrio_nadd;
429 if (nchange != NULL)
430 *nchange = io.pfrio_nchange;
431 return (0);
435 pfr_ina_define(struct pfr_table *tbl, struct pfr_addr *addr, int size,
436 int *nadd, int *naddr, int ticket, int flags)
438 struct pfioc_table io;
440 if (tbl == NULL || size < 0 || (size && addr == NULL)) {
441 errno = EINVAL;
442 return (-1);
444 bzero(&io, sizeof io);
445 io.pfrio_flags = flags;
446 io.pfrio_table = *tbl;
447 io.pfrio_buffer = addr;
448 io.pfrio_esize = sizeof(*addr);
449 io.pfrio_size = size;
450 io.pfrio_ticket = ticket;
451 if (ioctl(dev_fd, DIOCRINADEFINE, &io))
452 return (-1);
453 if (nadd != NULL)
454 *nadd = io.pfrio_nadd;
455 if (naddr != NULL)
456 *naddr = io.pfrio_naddr;
457 return (0);
460 /* interface management code */
463 pfi_get_ifaces(const char *filter, struct pfi_if *buf, int *size, int flags)
465 struct pfioc_iface io;
467 if (size == NULL || *size < 0 || (*size && buf == NULL)) {
468 errno = EINVAL;
469 return (-1);
471 bzero(&io, sizeof io);
472 io.pfiio_flags = flags;
473 if (filter != NULL)
474 if (strlcpy(io.pfiio_name, filter, sizeof(io.pfiio_name)) >=
475 sizeof(io.pfiio_name)) {
476 errno = EINVAL;
477 return (-1);
479 io.pfiio_buffer = buf;
480 io.pfiio_esize = sizeof(*buf);
481 io.pfiio_size = *size;
482 if (ioctl(dev_fd, DIOCIGETIFACES, &io))
483 return (-1);
484 *size = io.pfiio_size;
485 return (0);
488 /* buffer management code */
490 size_t buf_esize[PFRB_MAX] = { 0,
491 sizeof(struct pfr_table), sizeof(struct pfr_tstats),
492 sizeof(struct pfr_addr), sizeof(struct pfr_astats),
493 sizeof(struct pfi_if), sizeof(struct pfioc_trans_e)
497 * add one element to the buffer
500 pfr_buf_add(struct pfr_buffer *b, const void *e)
502 size_t bs;
504 if (b == NULL || b->pfrb_type <= 0 || b->pfrb_type >= PFRB_MAX ||
505 e == NULL) {
506 errno = EINVAL;
507 return (-1);
509 bs = buf_esize[b->pfrb_type];
510 if (b->pfrb_size == b->pfrb_msize)
511 if (pfr_buf_grow(b, 0))
512 return (-1);
513 memcpy(((caddr_t)b->pfrb_caddr) + bs * b->pfrb_size, e, bs);
514 b->pfrb_size++;
515 return (0);
519 * return next element of the buffer (or first one if prev is NULL)
520 * see PFRB_FOREACH macro
522 const void *
523 pfr_buf_next(struct pfr_buffer *b, const void *prev)
525 size_t bs;
527 if (b == NULL || b->pfrb_type <= 0 || b->pfrb_type >= PFRB_MAX)
528 return (NULL);
529 if (b->pfrb_size == 0)
530 return (NULL);
531 if (prev == NULL)
532 return (b->pfrb_caddr);
533 bs = buf_esize[b->pfrb_type];
534 if ((((c_caddr_t)prev)-((c_caddr_t)b->pfrb_caddr)) / bs + 1 >=
535 (size_t)b->pfrb_size)
536 return (NULL);
537 return (((c_caddr_t)prev) + bs);
541 * minsize:
542 * 0: make the buffer somewhat bigger
543 * n: make room for "n" entries in the buffer
546 pfr_buf_grow(struct pfr_buffer *b, int minsize)
548 caddr_t p;
549 size_t bs;
551 if (b == NULL || b->pfrb_type <= 0 || b->pfrb_type >= PFRB_MAX) {
552 errno = EINVAL;
553 return (-1);
555 if (minsize != 0 && minsize <= b->pfrb_msize)
556 return (0);
557 bs = buf_esize[b->pfrb_type];
558 if (!b->pfrb_msize) {
559 if (minsize < 64)
560 minsize = 64;
561 b->pfrb_caddr = calloc(bs, minsize);
562 if (b->pfrb_caddr == NULL)
563 return (-1);
564 b->pfrb_msize = minsize;
565 } else {
566 if (minsize == 0)
567 minsize = b->pfrb_msize * 2;
568 if (minsize < 0 || (size_t)minsize >= SIZE_T_MAX / bs) {
569 /* msize overflow */
570 errno = ENOMEM;
571 return (-1);
573 p = realloc(b->pfrb_caddr, minsize * bs);
574 if (p == NULL)
575 return (-1);
576 bzero(p + b->pfrb_msize * bs, (minsize - b->pfrb_msize) * bs);
577 b->pfrb_caddr = p;
578 b->pfrb_msize = minsize;
580 return (0);
584 * reset buffer and free memory.
586 void
587 pfr_buf_clear(struct pfr_buffer *b)
589 if (b == NULL)
590 return;
591 if (b->pfrb_caddr != NULL)
592 free(b->pfrb_caddr);
593 b->pfrb_caddr = NULL;
594 b->pfrb_size = b->pfrb_msize = 0;
598 pfr_buf_load(struct pfr_buffer *b, char *file, int nonetwork,
599 int (*append_addr)(struct pfr_buffer *, char *, int))
601 FILE *fp;
602 char buf[BUF_SIZE];
603 int rv;
605 if (file == NULL)
606 return (0);
607 if (!strcmp(file, "-"))
608 fp = stdin;
609 else {
610 fp = fopen(file, "r");
611 if (fp == NULL)
612 return (-1);
614 while ((rv = pfr_next_token(buf, fp)) == 1)
615 if (append_addr(b, buf, nonetwork)) {
616 rv = -1;
617 break;
619 if (fp != stdin)
620 fclose(fp);
621 return (rv);
625 pfr_next_token(char buf[BUF_SIZE], FILE *fp)
627 static char next_ch = ' ';
628 int i = 0;
630 for (;;) {
631 /* skip spaces */
632 while (isspace(next_ch) && !feof(fp))
633 next_ch = fgetc(fp);
634 /* remove from '#' until end of line */
635 if (next_ch == '#')
636 while (!feof(fp)) {
637 next_ch = fgetc(fp);
638 if (next_ch == '\n')
639 break;
641 else
642 break;
644 if (feof(fp)) {
645 next_ch = ' ';
646 return (0);
648 do {
649 if (i < BUF_SIZE)
650 buf[i++] = next_ch;
651 next_ch = fgetc(fp);
652 } while (!feof(fp) && !isspace(next_ch));
653 if (i >= BUF_SIZE) {
654 errno = EINVAL;
655 return (-1);
657 buf[i] = '\0';
658 return (1);
661 const char *
662 pfr_strerror(int errnum)
664 switch (errnum) {
665 case ESRCH:
666 return "Table does not exist";
667 case ENOENT:
668 return "Anchor or Ruleset does not exist";
669 default:
670 return strerror(errnum);