Home | History | Annotate | Line # | Download | only in pfctl
pfctl_parser.c revision 1.1.1.4
      1  1.1.1.4  martti /*	$NetBSD: pfctl_parser.c,v 1.1.1.4 2009/12/01 07:03:09 martti Exp $	*/
      2  1.1.1.4  martti /*	$OpenBSD: pfctl_parser.c,v 1.234 2006/10/31 23:46:24 mcbride Exp $ */
      3      1.1  itojun 
      4      1.1  itojun /*
      5      1.1  itojun  * Copyright (c) 2001 Daniel Hartmeier
      6      1.1  itojun  * Copyright (c) 2002,2003 Henning Brauer
      7      1.1  itojun  * All rights reserved.
      8      1.1  itojun  *
      9      1.1  itojun  * Redistribution and use in source and binary forms, with or without
     10      1.1  itojun  * modification, are permitted provided that the following conditions
     11      1.1  itojun  * are met:
     12      1.1  itojun  *
     13      1.1  itojun  *    - Redistributions of source code must retain the above copyright
     14      1.1  itojun  *      notice, this list of conditions and the following disclaimer.
     15      1.1  itojun  *    - Redistributions in binary form must reproduce the above
     16      1.1  itojun  *      copyright notice, this list of conditions and the following
     17      1.1  itojun  *      disclaimer in the documentation and/or other materials provided
     18      1.1  itojun  *      with the distribution.
     19      1.1  itojun  *
     20      1.1  itojun  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     21      1.1  itojun  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     22      1.1  itojun  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
     23      1.1  itojun  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
     24      1.1  itojun  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
     25      1.1  itojun  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
     26      1.1  itojun  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     27      1.1  itojun  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
     28      1.1  itojun  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     29      1.1  itojun  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
     30      1.1  itojun  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     31      1.1  itojun  * POSSIBILITY OF SUCH DAMAGE.
     32      1.1  itojun  *
     33      1.1  itojun  */
     34      1.1  itojun 
     35      1.1  itojun #include <sys/types.h>
     36      1.1  itojun #include <sys/ioctl.h>
     37      1.1  itojun #include <sys/socket.h>
     38  1.1.1.3   peter #include <sys/param.h>
     39  1.1.1.3   peter #include <sys/proc.h>
     40      1.1  itojun #include <net/if.h>
     41      1.1  itojun #include <netinet/in.h>
     42      1.1  itojun #include <netinet/in_systm.h>
     43      1.1  itojun #include <netinet/ip.h>
     44      1.1  itojun #include <netinet/ip_icmp.h>
     45      1.1  itojun #include <netinet/icmp6.h>
     46      1.1  itojun #include <net/pfvar.h>
     47      1.1  itojun #include <arpa/inet.h>
     48      1.1  itojun 
     49      1.1  itojun #include <stdio.h>
     50      1.1  itojun #include <stdlib.h>
     51      1.1  itojun #include <string.h>
     52      1.1  itojun #include <ctype.h>
     53      1.1  itojun #include <netdb.h>
     54      1.1  itojun #include <stdarg.h>
     55      1.1  itojun #include <errno.h>
     56      1.1  itojun #include <err.h>
     57      1.1  itojun #include <ifaddrs.h>
     58  1.1.1.4  martti #include <unistd.h>
     59      1.1  itojun 
     60      1.1  itojun #include "pfctl_parser.h"
     61      1.1  itojun #include "pfctl.h"
     62      1.1  itojun 
     63      1.1  itojun void		 print_op (u_int8_t, const char *, const char *);
     64      1.1  itojun void		 print_port (u_int8_t, u_int16_t, u_int16_t, const char *);
     65      1.1  itojun void		 print_ugid (u_int8_t, unsigned, unsigned, const char *, unsigned);
     66      1.1  itojun void		 print_flags (u_int8_t);
     67      1.1  itojun void		 print_fromto(struct pf_rule_addr *, pf_osfp_t,
     68      1.1  itojun 		    struct pf_rule_addr *, u_int8_t, u_int8_t, int);
     69      1.1  itojun int		 ifa_skip_if(const char *filter, struct node_host *p);
     70      1.1  itojun 
     71  1.1.1.4  martti struct node_host	*ifa_grouplookup(const char *, int);
     72      1.1  itojun struct node_host	*host_if(const char *, int);
     73      1.1  itojun struct node_host	*host_v4(const char *, int);
     74      1.1  itojun struct node_host	*host_v6(const char *, int);
     75      1.1  itojun struct node_host	*host_dns(const char *, int, int);
     76      1.1  itojun 
     77      1.1  itojun const char *tcpflags = "FSRPAUEW";
     78      1.1  itojun 
     79      1.1  itojun static const struct icmptypeent icmp_type[] = {
     80      1.1  itojun 	{ "echoreq",	ICMP_ECHO },
     81      1.1  itojun 	{ "echorep",	ICMP_ECHOREPLY },
     82      1.1  itojun 	{ "unreach",	ICMP_UNREACH },
     83      1.1  itojun 	{ "squench",	ICMP_SOURCEQUENCH },
     84      1.1  itojun 	{ "redir",	ICMP_REDIRECT },
     85      1.1  itojun 	{ "althost",	ICMP_ALTHOSTADDR },
     86      1.1  itojun 	{ "routeradv",	ICMP_ROUTERADVERT },
     87      1.1  itojun 	{ "routersol",	ICMP_ROUTERSOLICIT },
     88      1.1  itojun 	{ "timex",	ICMP_TIMXCEED },
     89      1.1  itojun 	{ "paramprob",	ICMP_PARAMPROB },
     90      1.1  itojun 	{ "timereq",	ICMP_TSTAMP },
     91      1.1  itojun 	{ "timerep",	ICMP_TSTAMPREPLY },
     92      1.1  itojun 	{ "inforeq",	ICMP_IREQ },
     93      1.1  itojun 	{ "inforep",	ICMP_IREQREPLY },
     94      1.1  itojun 	{ "maskreq",	ICMP_MASKREQ },
     95      1.1  itojun 	{ "maskrep",	ICMP_MASKREPLY },
     96      1.1  itojun 	{ "trace",	ICMP_TRACEROUTE },
     97      1.1  itojun 	{ "dataconv",	ICMP_DATACONVERR },
     98      1.1  itojun 	{ "mobredir",	ICMP_MOBILE_REDIRECT },
     99      1.1  itojun 	{ "ipv6-where",	ICMP_IPV6_WHEREAREYOU },
    100      1.1  itojun 	{ "ipv6-here",	ICMP_IPV6_IAMHERE },
    101      1.1  itojun 	{ "mobregreq",	ICMP_MOBILE_REGREQUEST },
    102      1.1  itojun 	{ "mobregrep",	ICMP_MOBILE_REGREPLY },
    103      1.1  itojun 	{ "skip",	ICMP_SKIP },
    104      1.1  itojun 	{ "photuris",	ICMP_PHOTURIS }
    105      1.1  itojun };
    106      1.1  itojun 
    107      1.1  itojun static const struct icmptypeent icmp6_type[] = {
    108      1.1  itojun 	{ "unreach",	ICMP6_DST_UNREACH },
    109      1.1  itojun 	{ "toobig",	ICMP6_PACKET_TOO_BIG },
    110      1.1  itojun 	{ "timex",	ICMP6_TIME_EXCEEDED },
    111      1.1  itojun 	{ "paramprob",	ICMP6_PARAM_PROB },
    112      1.1  itojun 	{ "echoreq",	ICMP6_ECHO_REQUEST },
    113      1.1  itojun 	{ "echorep",	ICMP6_ECHO_REPLY },
    114      1.1  itojun 	{ "groupqry",	ICMP6_MEMBERSHIP_QUERY },
    115      1.1  itojun 	{ "listqry",	MLD_LISTENER_QUERY },
    116      1.1  itojun 	{ "grouprep",	ICMP6_MEMBERSHIP_REPORT },
    117      1.1  itojun 	{ "listenrep",	MLD_LISTENER_REPORT },
    118      1.1  itojun 	{ "groupterm",	ICMP6_MEMBERSHIP_REDUCTION },
    119      1.1  itojun 	{ "listendone", MLD_LISTENER_DONE },
    120      1.1  itojun 	{ "routersol",	ND_ROUTER_SOLICIT },
    121      1.1  itojun 	{ "routeradv",	ND_ROUTER_ADVERT },
    122      1.1  itojun 	{ "neighbrsol", ND_NEIGHBOR_SOLICIT },
    123      1.1  itojun 	{ "neighbradv", ND_NEIGHBOR_ADVERT },
    124      1.1  itojun 	{ "redir",	ND_REDIRECT },
    125      1.1  itojun 	{ "routrrenum", ICMP6_ROUTER_RENUMBERING },
    126      1.1  itojun 	{ "wrureq",	ICMP6_WRUREQUEST },
    127      1.1  itojun 	{ "wrurep",	ICMP6_WRUREPLY },
    128      1.1  itojun 	{ "fqdnreq",	ICMP6_FQDN_QUERY },
    129      1.1  itojun 	{ "fqdnrep",	ICMP6_FQDN_REPLY },
    130      1.1  itojun 	{ "niqry",	ICMP6_NI_QUERY },
    131      1.1  itojun 	{ "nirep",	ICMP6_NI_REPLY },
    132      1.1  itojun 	{ "mtraceresp",	MLD_MTRACE_RESP },
    133      1.1  itojun 	{ "mtrace",	MLD_MTRACE }
    134      1.1  itojun };
    135      1.1  itojun 
    136      1.1  itojun static const struct icmpcodeent icmp_code[] = {
    137      1.1  itojun 	{ "net-unr",		ICMP_UNREACH,	ICMP_UNREACH_NET },
    138      1.1  itojun 	{ "host-unr",		ICMP_UNREACH,	ICMP_UNREACH_HOST },
    139      1.1  itojun 	{ "proto-unr",		ICMP_UNREACH,	ICMP_UNREACH_PROTOCOL },
    140      1.1  itojun 	{ "port-unr",		ICMP_UNREACH,	ICMP_UNREACH_PORT },
    141      1.1  itojun 	{ "needfrag",		ICMP_UNREACH,	ICMP_UNREACH_NEEDFRAG },
    142      1.1  itojun 	{ "srcfail",		ICMP_UNREACH,	ICMP_UNREACH_SRCFAIL },
    143      1.1  itojun 	{ "net-unk",		ICMP_UNREACH,	ICMP_UNREACH_NET_UNKNOWN },
    144      1.1  itojun 	{ "host-unk",		ICMP_UNREACH,	ICMP_UNREACH_HOST_UNKNOWN },
    145      1.1  itojun 	{ "isolate",		ICMP_UNREACH,	ICMP_UNREACH_ISOLATED },
    146      1.1  itojun 	{ "net-prohib",		ICMP_UNREACH,	ICMP_UNREACH_NET_PROHIB },
    147      1.1  itojun 	{ "host-prohib",	ICMP_UNREACH,	ICMP_UNREACH_HOST_PROHIB },
    148      1.1  itojun 	{ "net-tos",		ICMP_UNREACH,	ICMP_UNREACH_TOSNET },
    149      1.1  itojun 	{ "host-tos",		ICMP_UNREACH,	ICMP_UNREACH_TOSHOST },
    150      1.1  itojun 	{ "filter-prohib",	ICMP_UNREACH,	ICMP_UNREACH_FILTER_PROHIB },
    151      1.1  itojun 	{ "host-preced",	ICMP_UNREACH,	ICMP_UNREACH_HOST_PRECEDENCE },
    152      1.1  itojun 	{ "cutoff-preced",	ICMP_UNREACH,	ICMP_UNREACH_PRECEDENCE_CUTOFF },
    153      1.1  itojun 	{ "redir-net",		ICMP_REDIRECT,	ICMP_REDIRECT_NET },
    154      1.1  itojun 	{ "redir-host",		ICMP_REDIRECT,	ICMP_REDIRECT_HOST },
    155      1.1  itojun 	{ "redir-tos-net",	ICMP_REDIRECT,	ICMP_REDIRECT_TOSNET },
    156      1.1  itojun 	{ "redir-tos-host",	ICMP_REDIRECT,	ICMP_REDIRECT_TOSHOST },
    157      1.1  itojun 	{ "normal-adv",		ICMP_ROUTERADVERT, ICMP_ROUTERADVERT_NORMAL },
    158      1.1  itojun 	{ "common-adv",		ICMP_ROUTERADVERT, ICMP_ROUTERADVERT_NOROUTE_COMMON },
    159      1.1  itojun 	{ "transit",		ICMP_TIMXCEED,	ICMP_TIMXCEED_INTRANS },
    160      1.1  itojun 	{ "reassemb",		ICMP_TIMXCEED,	ICMP_TIMXCEED_REASS },
    161      1.1  itojun 	{ "badhead",		ICMP_PARAMPROB,	ICMP_PARAMPROB_ERRATPTR },
    162      1.1  itojun 	{ "optmiss",		ICMP_PARAMPROB,	ICMP_PARAMPROB_OPTABSENT },
    163      1.1  itojun 	{ "badlen",		ICMP_PARAMPROB,	ICMP_PARAMPROB_LENGTH },
    164      1.1  itojun 	{ "unknown-ind",	ICMP_PHOTURIS,	ICMP_PHOTURIS_UNKNOWN_INDEX },
    165      1.1  itojun 	{ "auth-fail",		ICMP_PHOTURIS,	ICMP_PHOTURIS_AUTH_FAILED },
    166      1.1  itojun 	{ "decrypt-fail",	ICMP_PHOTURIS,	ICMP_PHOTURIS_DECRYPT_FAILED }
    167      1.1  itojun };
    168      1.1  itojun 
    169      1.1  itojun static const struct icmpcodeent icmp6_code[] = {
    170      1.1  itojun 	{ "admin-unr", ICMP6_DST_UNREACH, ICMP6_DST_UNREACH_ADMIN },
    171      1.1  itojun 	{ "noroute-unr", ICMP6_DST_UNREACH, ICMP6_DST_UNREACH_NOROUTE },
    172      1.1  itojun 	{ "notnbr-unr",	ICMP6_DST_UNREACH, ICMP6_DST_UNREACH_NOTNEIGHBOR },
    173      1.1  itojun 	{ "beyond-unr", ICMP6_DST_UNREACH, ICMP6_DST_UNREACH_BEYONDSCOPE },
    174      1.1  itojun 	{ "addr-unr", ICMP6_DST_UNREACH, ICMP6_DST_UNREACH_ADDR },
    175      1.1  itojun 	{ "port-unr", ICMP6_DST_UNREACH, ICMP6_DST_UNREACH_NOPORT },
    176      1.1  itojun 	{ "transit", ICMP6_TIME_EXCEEDED, ICMP6_TIME_EXCEED_TRANSIT },
    177      1.1  itojun 	{ "reassemb", ICMP6_TIME_EXCEEDED, ICMP6_TIME_EXCEED_REASSEMBLY },
    178      1.1  itojun 	{ "badhead", ICMP6_PARAM_PROB, ICMP6_PARAMPROB_HEADER },
    179      1.1  itojun 	{ "nxthdr", ICMP6_PARAM_PROB, ICMP6_PARAMPROB_NEXTHEADER },
    180      1.1  itojun 	{ "redironlink", ND_REDIRECT, ND_REDIRECT_ONLINK },
    181      1.1  itojun 	{ "redirrouter", ND_REDIRECT, ND_REDIRECT_ROUTER }
    182      1.1  itojun };
    183      1.1  itojun 
    184      1.1  itojun const struct pf_timeout pf_timeouts[] = {
    185      1.1  itojun 	{ "tcp.first",		PFTM_TCP_FIRST_PACKET },
    186      1.1  itojun 	{ "tcp.opening",	PFTM_TCP_OPENING },
    187      1.1  itojun 	{ "tcp.established",	PFTM_TCP_ESTABLISHED },
    188      1.1  itojun 	{ "tcp.closing",	PFTM_TCP_CLOSING },
    189      1.1  itojun 	{ "tcp.finwait",	PFTM_TCP_FIN_WAIT },
    190      1.1  itojun 	{ "tcp.closed",		PFTM_TCP_CLOSED },
    191  1.1.1.2    yamt 	{ "tcp.tsdiff",		PFTM_TS_DIFF },
    192      1.1  itojun 	{ "udp.first",		PFTM_UDP_FIRST_PACKET },
    193      1.1  itojun 	{ "udp.single",		PFTM_UDP_SINGLE },
    194      1.1  itojun 	{ "udp.multiple",	PFTM_UDP_MULTIPLE },
    195      1.1  itojun 	{ "icmp.first",		PFTM_ICMP_FIRST_PACKET },
    196      1.1  itojun 	{ "icmp.error",		PFTM_ICMP_ERROR_REPLY },
    197      1.1  itojun 	{ "other.first",	PFTM_OTHER_FIRST_PACKET },
    198      1.1  itojun 	{ "other.single",	PFTM_OTHER_SINGLE },
    199      1.1  itojun 	{ "other.multiple",	PFTM_OTHER_MULTIPLE },
    200      1.1  itojun 	{ "frag",		PFTM_FRAG },
    201      1.1  itojun 	{ "interval",		PFTM_INTERVAL },
    202      1.1  itojun 	{ "adaptive.start",	PFTM_ADAPTIVE_START },
    203      1.1  itojun 	{ "adaptive.end",	PFTM_ADAPTIVE_END },
    204      1.1  itojun 	{ "src.track",		PFTM_SRC_NODE },
    205      1.1  itojun 	{ NULL,			0 }
    206      1.1  itojun };
    207      1.1  itojun 
    208      1.1  itojun const struct icmptypeent *
    209      1.1  itojun geticmptypebynumber(u_int8_t type, sa_family_t af)
    210      1.1  itojun {
    211      1.1  itojun 	unsigned int	i;
    212      1.1  itojun 
    213      1.1  itojun 	if (af != AF_INET6) {
    214      1.1  itojun 		for (i=0; i < (sizeof (icmp_type) / sizeof(icmp_type[0]));
    215      1.1  itojun 		    i++) {
    216      1.1  itojun 			if (type == icmp_type[i].type)
    217      1.1  itojun 				return (&icmp_type[i]);
    218      1.1  itojun 		}
    219      1.1  itojun 	} else {
    220      1.1  itojun 		for (i=0; i < (sizeof (icmp6_type) /
    221      1.1  itojun 		    sizeof(icmp6_type[0])); i++) {
    222      1.1  itojun 			if (type == icmp6_type[i].type)
    223      1.1  itojun 				 return (&icmp6_type[i]);
    224      1.1  itojun 		}
    225      1.1  itojun 	}
    226      1.1  itojun 	return (NULL);
    227      1.1  itojun }
    228      1.1  itojun 
    229      1.1  itojun const struct icmptypeent *
    230      1.1  itojun geticmptypebyname(char *w, sa_family_t af)
    231      1.1  itojun {
    232      1.1  itojun 	unsigned int	i;
    233      1.1  itojun 
    234      1.1  itojun 	if (af != AF_INET6) {
    235      1.1  itojun 		for (i=0; i < (sizeof (icmp_type) / sizeof(icmp_type[0]));
    236      1.1  itojun 		    i++) {
    237      1.1  itojun 			if (!strcmp(w, icmp_type[i].name))
    238      1.1  itojun 				return (&icmp_type[i]);
    239      1.1  itojun 		}
    240      1.1  itojun 	} else {
    241      1.1  itojun 		for (i=0; i < (sizeof (icmp6_type) /
    242      1.1  itojun 		    sizeof(icmp6_type[0])); i++) {
    243      1.1  itojun 			if (!strcmp(w, icmp6_type[i].name))
    244      1.1  itojun 				return (&icmp6_type[i]);
    245      1.1  itojun 		}
    246      1.1  itojun 	}
    247      1.1  itojun 	return (NULL);
    248      1.1  itojun }
    249      1.1  itojun 
    250      1.1  itojun const struct icmpcodeent *
    251      1.1  itojun geticmpcodebynumber(u_int8_t type, u_int8_t code, sa_family_t af)
    252      1.1  itojun {
    253      1.1  itojun 	unsigned int	i;
    254      1.1  itojun 
    255      1.1  itojun 	if (af != AF_INET6) {
    256      1.1  itojun 		for (i=0; i < (sizeof (icmp_code) / sizeof(icmp_code[0]));
    257      1.1  itojun 		    i++) {
    258      1.1  itojun 			if (type == icmp_code[i].type &&
    259      1.1  itojun 			    code == icmp_code[i].code)
    260      1.1  itojun 				return (&icmp_code[i]);
    261      1.1  itojun 		}
    262      1.1  itojun 	} else {
    263      1.1  itojun 		for (i=0; i < (sizeof (icmp6_code) /
    264      1.1  itojun 		    sizeof(icmp6_code[0])); i++) {
    265      1.1  itojun 			if (type == icmp6_code[i].type &&
    266      1.1  itojun 			    code == icmp6_code[i].code)
    267      1.1  itojun 				return (&icmp6_code[i]);
    268      1.1  itojun 		}
    269      1.1  itojun 	}
    270      1.1  itojun 	return (NULL);
    271      1.1  itojun }
    272      1.1  itojun 
    273      1.1  itojun const struct icmpcodeent *
    274      1.1  itojun geticmpcodebyname(u_long type, char *w, sa_family_t af)
    275      1.1  itojun {
    276      1.1  itojun 	unsigned int	i;
    277      1.1  itojun 
    278      1.1  itojun 	if (af != AF_INET6) {
    279      1.1  itojun 		for (i=0; i < (sizeof (icmp_code) / sizeof(icmp_code[0]));
    280      1.1  itojun 		    i++) {
    281      1.1  itojun 			if (type == icmp_code[i].type &&
    282      1.1  itojun 			    !strcmp(w, icmp_code[i].name))
    283      1.1  itojun 				return (&icmp_code[i]);
    284      1.1  itojun 		}
    285      1.1  itojun 	} else {
    286      1.1  itojun 		for (i=0; i < (sizeof (icmp6_code) /
    287      1.1  itojun 		    sizeof(icmp6_code[0])); i++) {
    288      1.1  itojun 			if (type == icmp6_code[i].type &&
    289      1.1  itojun 			    !strcmp(w, icmp6_code[i].name))
    290      1.1  itojun 				return (&icmp6_code[i]);
    291      1.1  itojun 		}
    292      1.1  itojun 	}
    293      1.1  itojun 	return (NULL);
    294      1.1  itojun }
    295      1.1  itojun 
    296      1.1  itojun void
    297      1.1  itojun print_op(u_int8_t op, const char *a1, const char *a2)
    298      1.1  itojun {
    299      1.1  itojun 	if (op == PF_OP_IRG)
    300      1.1  itojun 		printf(" %s >< %s", a1, a2);
    301      1.1  itojun 	else if (op == PF_OP_XRG)
    302      1.1  itojun 		printf(" %s <> %s", a1, a2);
    303      1.1  itojun 	else if (op == PF_OP_EQ)
    304      1.1  itojun 		printf(" = %s", a1);
    305      1.1  itojun 	else if (op == PF_OP_NE)
    306      1.1  itojun 		printf(" != %s", a1);
    307      1.1  itojun 	else if (op == PF_OP_LT)
    308      1.1  itojun 		printf(" < %s", a1);
    309      1.1  itojun 	else if (op == PF_OP_LE)
    310      1.1  itojun 		printf(" <= %s", a1);
    311      1.1  itojun 	else if (op == PF_OP_GT)
    312      1.1  itojun 		printf(" > %s", a1);
    313      1.1  itojun 	else if (op == PF_OP_GE)
    314      1.1  itojun 		printf(" >= %s", a1);
    315      1.1  itojun 	else if (op == PF_OP_RRG)
    316      1.1  itojun 		printf(" %s:%s", a1, a2);
    317      1.1  itojun }
    318      1.1  itojun 
    319      1.1  itojun void
    320      1.1  itojun print_port(u_int8_t op, u_int16_t p1, u_int16_t p2, const char *proto)
    321      1.1  itojun {
    322      1.1  itojun 	char		 a1[6], a2[6];
    323      1.1  itojun 	struct servent	*s;
    324      1.1  itojun 
    325      1.1  itojun 	s = getservbyport(p1, proto);
    326      1.1  itojun 	p1 = ntohs(p1);
    327      1.1  itojun 	p2 = ntohs(p2);
    328      1.1  itojun 	snprintf(a1, sizeof(a1), "%u", p1);
    329      1.1  itojun 	snprintf(a2, sizeof(a2), "%u", p2);
    330      1.1  itojun 	printf(" port");
    331      1.1  itojun 	if (s != NULL && (op == PF_OP_EQ || op == PF_OP_NE))
    332      1.1  itojun 		print_op(op, s->s_name, a2);
    333      1.1  itojun 	else
    334      1.1  itojun 		print_op(op, a1, a2);
    335      1.1  itojun }
    336      1.1  itojun 
    337      1.1  itojun void
    338      1.1  itojun print_ugid(u_int8_t op, unsigned u1, unsigned u2, const char *t, unsigned umax)
    339      1.1  itojun {
    340      1.1  itojun 	char	a1[11], a2[11];
    341      1.1  itojun 
    342      1.1  itojun 	snprintf(a1, sizeof(a1), "%u", u1);
    343      1.1  itojun 	snprintf(a2, sizeof(a2), "%u", u2);
    344      1.1  itojun 	printf(" %s", t);
    345      1.1  itojun 	if (u1 == umax && (op == PF_OP_EQ || op == PF_OP_NE))
    346      1.1  itojun 		print_op(op, "unknown", a2);
    347      1.1  itojun 	else
    348      1.1  itojun 		print_op(op, a1, a2);
    349      1.1  itojun }
    350      1.1  itojun 
    351      1.1  itojun void
    352      1.1  itojun print_flags(u_int8_t f)
    353      1.1  itojun {
    354      1.1  itojun 	int	i;
    355      1.1  itojun 
    356      1.1  itojun 	for (i = 0; tcpflags[i]; ++i)
    357      1.1  itojun 		if (f & (1 << i))
    358      1.1  itojun 			printf("%c", tcpflags[i]);
    359      1.1  itojun }
    360      1.1  itojun 
    361      1.1  itojun void
    362      1.1  itojun print_fromto(struct pf_rule_addr *src, pf_osfp_t osfp, struct pf_rule_addr *dst,
    363      1.1  itojun     sa_family_t af, u_int8_t proto, int verbose)
    364      1.1  itojun {
    365      1.1  itojun 	char buf[PF_OSFP_LEN*3];
    366      1.1  itojun 	if (src->addr.type == PF_ADDR_ADDRMASK &&
    367      1.1  itojun 	    dst->addr.type == PF_ADDR_ADDRMASK &&
    368      1.1  itojun 	    PF_AZERO(&src->addr.v.a.addr, AF_INET6) &&
    369      1.1  itojun 	    PF_AZERO(&src->addr.v.a.mask, AF_INET6) &&
    370      1.1  itojun 	    PF_AZERO(&dst->addr.v.a.addr, AF_INET6) &&
    371      1.1  itojun 	    PF_AZERO(&dst->addr.v.a.mask, AF_INET6) &&
    372  1.1.1.2    yamt 	    !src->neg && !dst->neg &&
    373      1.1  itojun 	    !src->port_op && !dst->port_op &&
    374      1.1  itojun 	    osfp == PF_OSFP_ANY)
    375      1.1  itojun 		printf(" all");
    376      1.1  itojun 	else {
    377      1.1  itojun 		printf(" from ");
    378  1.1.1.2    yamt 		if (src->neg)
    379      1.1  itojun 			printf("! ");
    380      1.1  itojun 		print_addr(&src->addr, af, verbose);
    381      1.1  itojun 		if (src->port_op)
    382      1.1  itojun 			print_port(src->port_op, src->port[0],
    383      1.1  itojun 			    src->port[1],
    384      1.1  itojun 			    proto == IPPROTO_TCP ? "tcp" : "udp");
    385      1.1  itojun 		if (osfp != PF_OSFP_ANY)
    386      1.1  itojun 			printf(" os \"%s\"", pfctl_lookup_fingerprint(osfp, buf,
    387      1.1  itojun 			    sizeof(buf)));
    388      1.1  itojun 
    389      1.1  itojun 		printf(" to ");
    390  1.1.1.2    yamt 		if (dst->neg)
    391      1.1  itojun 			printf("! ");
    392      1.1  itojun 		print_addr(&dst->addr, af, verbose);
    393      1.1  itojun 		if (dst->port_op)
    394      1.1  itojun 			print_port(dst->port_op, dst->port[0],
    395      1.1  itojun 			    dst->port[1],
    396      1.1  itojun 			    proto == IPPROTO_TCP ? "tcp" : "udp");
    397      1.1  itojun 	}
    398      1.1  itojun }
    399      1.1  itojun 
    400      1.1  itojun void
    401      1.1  itojun print_pool(struct pf_pool *pool, u_int16_t p1, u_int16_t p2,
    402      1.1  itojun     sa_family_t af, int id)
    403      1.1  itojun {
    404      1.1  itojun 	struct pf_pooladdr	*pooladdr;
    405      1.1  itojun 
    406      1.1  itojun 	if ((TAILQ_FIRST(&pool->list) != NULL) &&
    407      1.1  itojun 	    TAILQ_NEXT(TAILQ_FIRST(&pool->list), entries) != NULL)
    408      1.1  itojun 		printf("{ ");
    409      1.1  itojun 	TAILQ_FOREACH(pooladdr, &pool->list, entries){
    410      1.1  itojun 		switch (id) {
    411      1.1  itojun 		case PF_NAT:
    412      1.1  itojun 		case PF_RDR:
    413      1.1  itojun 		case PF_BINAT:
    414      1.1  itojun 			print_addr(&pooladdr->addr, af, 0);
    415      1.1  itojun 			break;
    416      1.1  itojun 		case PF_PASS:
    417      1.1  itojun 			if (PF_AZERO(&pooladdr->addr.v.a.addr, af))
    418      1.1  itojun 				printf("%s", pooladdr->ifname);
    419      1.1  itojun 			else {
    420      1.1  itojun 				printf("(%s ", pooladdr->ifname);
    421      1.1  itojun 				print_addr(&pooladdr->addr, af, 0);
    422      1.1  itojun 				printf(")");
    423      1.1  itojun 			}
    424      1.1  itojun 			break;
    425      1.1  itojun 		default:
    426      1.1  itojun 			break;
    427      1.1  itojun 		}
    428      1.1  itojun 		if (TAILQ_NEXT(pooladdr, entries) != NULL)
    429      1.1  itojun 			printf(", ");
    430      1.1  itojun 		else if (TAILQ_NEXT(TAILQ_FIRST(&pool->list), entries) != NULL)
    431      1.1  itojun 			printf(" }");
    432      1.1  itojun 	}
    433      1.1  itojun 	switch (id) {
    434      1.1  itojun 	case PF_NAT:
    435      1.1  itojun 		if ((p1 != PF_NAT_PROXY_PORT_LOW ||
    436      1.1  itojun 		    p2 != PF_NAT_PROXY_PORT_HIGH) && (p1 != 0 || p2 != 0)) {
    437      1.1  itojun 			if (p1 == p2)
    438      1.1  itojun 				printf(" port %u", p1);
    439      1.1  itojun 			else
    440      1.1  itojun 				printf(" port %u:%u", p1, p2);
    441      1.1  itojun 		}
    442      1.1  itojun 		break;
    443      1.1  itojun 	case PF_RDR:
    444      1.1  itojun 		if (p1) {
    445      1.1  itojun 			printf(" port %u", p1);
    446      1.1  itojun 			if (p2 && (p2 != p1))
    447      1.1  itojun 				printf(":%u", p2);
    448      1.1  itojun 		}
    449      1.1  itojun 		break;
    450      1.1  itojun 	default:
    451      1.1  itojun 		break;
    452      1.1  itojun 	}
    453      1.1  itojun 	switch (pool->opts & PF_POOL_TYPEMASK) {
    454      1.1  itojun 	case PF_POOL_NONE:
    455      1.1  itojun 		break;
    456      1.1  itojun 	case PF_POOL_BITMASK:
    457      1.1  itojun 		printf(" bitmask");
    458      1.1  itojun 		break;
    459      1.1  itojun 	case PF_POOL_RANDOM:
    460      1.1  itojun 		printf(" random");
    461      1.1  itojun 		break;
    462      1.1  itojun 	case PF_POOL_SRCHASH:
    463      1.1  itojun 		printf(" source-hash 0x%08x%08x%08x%08x",
    464      1.1  itojun 		    pool->key.key32[0], pool->key.key32[1],
    465      1.1  itojun 		    pool->key.key32[2], pool->key.key32[3]);
    466      1.1  itojun 		break;
    467      1.1  itojun 	case PF_POOL_ROUNDROBIN:
    468      1.1  itojun 		printf(" round-robin");
    469      1.1  itojun 		break;
    470      1.1  itojun 	}
    471      1.1  itojun 	if (pool->opts & PF_POOL_STICKYADDR)
    472      1.1  itojun 		printf(" sticky-address");
    473      1.1  itojun 	if (id == PF_NAT && p1 == 0 && p2 == 0)
    474      1.1  itojun 		printf(" static-port");
    475      1.1  itojun }
    476      1.1  itojun 
    477      1.1  itojun const char	*pf_reasons[PFRES_MAX+1] = PFRES_NAMES;
    478  1.1.1.3   peter const char	*pf_lcounters[LCNT_MAX+1] = LCNT_NAMES;
    479      1.1  itojun const char	*pf_fcounters[FCNT_MAX+1] = FCNT_NAMES;
    480      1.1  itojun const char	*pf_scounters[FCNT_MAX+1] = FCNT_NAMES;
    481      1.1  itojun 
    482      1.1  itojun void
    483      1.1  itojun print_status(struct pf_status *s, int opts)
    484      1.1  itojun {
    485  1.1.1.4  martti 	char			statline[80], *running;
    486  1.1.1.4  martti 	time_t			runtime;
    487  1.1.1.4  martti 	int			i;
    488  1.1.1.4  martti 	char			buf[PF_MD5_DIGEST_LENGTH * 2 + 1];
    489  1.1.1.4  martti 	static const char	hex[] = "0123456789abcdef";
    490      1.1  itojun 
    491      1.1  itojun 	runtime = time(NULL) - s->since;
    492      1.1  itojun 	running = s->running ? "Enabled" : "Disabled";
    493      1.1  itojun 
    494      1.1  itojun 	if (s->since) {
    495      1.1  itojun 		unsigned	sec, min, hrs, day = runtime;
    496      1.1  itojun 
    497      1.1  itojun 		sec = day % 60;
    498      1.1  itojun 		day /= 60;
    499      1.1  itojun 		min = day % 60;
    500      1.1  itojun 		day /= 60;
    501      1.1  itojun 		hrs = day % 24;
    502      1.1  itojun 		day /= 24;
    503      1.1  itojun 		snprintf(statline, sizeof(statline),
    504      1.1  itojun 		    "Status: %s for %u days %.2u:%.2u:%.2u",
    505      1.1  itojun 		    running, day, hrs, min, sec);
    506      1.1  itojun 	} else
    507      1.1  itojun 		snprintf(statline, sizeof(statline), "Status: %s", running);
    508      1.1  itojun 	printf("%-44s", statline);
    509      1.1  itojun 	switch (s->debug) {
    510      1.1  itojun 	case PF_DEBUG_NONE:
    511      1.1  itojun 		printf("%15s\n\n", "Debug: None");
    512      1.1  itojun 		break;
    513      1.1  itojun 	case PF_DEBUG_URGENT:
    514      1.1  itojun 		printf("%15s\n\n", "Debug: Urgent");
    515      1.1  itojun 		break;
    516      1.1  itojun 	case PF_DEBUG_MISC:
    517      1.1  itojun 		printf("%15s\n\n", "Debug: Misc");
    518      1.1  itojun 		break;
    519      1.1  itojun 	case PF_DEBUG_NOISY:
    520      1.1  itojun 		printf("%15s\n\n", "Debug: Loud");
    521      1.1  itojun 		break;
    522      1.1  itojun 	}
    523  1.1.1.4  martti 
    524  1.1.1.4  martti 	if (opts & PF_OPT_VERBOSE) {
    525  1.1.1.4  martti 		printf("Hostid:   0x%08x\n", ntohl(s->hostid));
    526  1.1.1.4  martti 
    527  1.1.1.4  martti 		for (i = 0; i < PF_MD5_DIGEST_LENGTH; i++) {
    528  1.1.1.4  martti 			buf[i + i] = hex[s->pf_chksum[i] >> 4];
    529  1.1.1.4  martti 			buf[i + i + 1] = hex[s->pf_chksum[i] & 0x0f];
    530  1.1.1.4  martti 		}
    531  1.1.1.4  martti 		buf[i + i] = '\0';
    532  1.1.1.4  martti 		printf("Checksum: 0x%s\n\n", buf);
    533  1.1.1.4  martti 	}
    534  1.1.1.4  martti 
    535      1.1  itojun 	if (s->ifname[0] != 0) {
    536      1.1  itojun 		printf("Interface Stats for %-16s %5s %16s\n",
    537      1.1  itojun 		    s->ifname, "IPv4", "IPv6");
    538      1.1  itojun 		printf("  %-25s %14llu %16llu\n", "Bytes In",
    539      1.1  itojun 		    (unsigned long long)s->bcounters[0][0],
    540      1.1  itojun 		    (unsigned long long)s->bcounters[1][0]);
    541      1.1  itojun 		printf("  %-25s %14llu %16llu\n", "Bytes Out",
    542      1.1  itojun 		    (unsigned long long)s->bcounters[0][1],
    543      1.1  itojun 		    (unsigned long long)s->bcounters[1][1]);
    544      1.1  itojun 		printf("  Packets In\n");
    545      1.1  itojun 		printf("    %-23s %14llu %16llu\n", "Passed",
    546      1.1  itojun 		    (unsigned long long)s->pcounters[0][0][PF_PASS],
    547      1.1  itojun 		    (unsigned long long)s->pcounters[1][0][PF_PASS]);
    548      1.1  itojun 		printf("    %-23s %14llu %16llu\n", "Blocked",
    549      1.1  itojun 		    (unsigned long long)s->pcounters[0][0][PF_DROP],
    550      1.1  itojun 		    (unsigned long long)s->pcounters[1][0][PF_DROP]);
    551      1.1  itojun 		printf("  Packets Out\n");
    552      1.1  itojun 		printf("    %-23s %14llu %16llu\n", "Passed",
    553      1.1  itojun 		    (unsigned long long)s->pcounters[0][1][PF_PASS],
    554      1.1  itojun 		    (unsigned long long)s->pcounters[1][1][PF_PASS]);
    555      1.1  itojun 		printf("    %-23s %14llu %16llu\n\n", "Blocked",
    556      1.1  itojun 		    (unsigned long long)s->pcounters[0][1][PF_DROP],
    557      1.1  itojun 		    (unsigned long long)s->pcounters[1][1][PF_DROP]);
    558      1.1  itojun 	}
    559      1.1  itojun 	printf("%-27s %14s %16s\n", "State Table", "Total", "Rate");
    560      1.1  itojun 	printf("  %-25s %14u %14s\n", "current entries", s->states, "");
    561      1.1  itojun 	for (i = 0; i < FCNT_MAX; i++) {
    562      1.1  itojun 		printf("  %-25s %14llu ", pf_fcounters[i],
    563      1.1  itojun 			    (unsigned long long)s->fcounters[i]);
    564      1.1  itojun 		if (runtime > 0)
    565      1.1  itojun 			printf("%14.1f/s\n",
    566      1.1  itojun 			    (double)s->fcounters[i] / (double)runtime);
    567      1.1  itojun 		else
    568      1.1  itojun 			printf("%14s\n", "");
    569      1.1  itojun 	}
    570      1.1  itojun 	if (opts & PF_OPT_VERBOSE) {
    571      1.1  itojun 		printf("Source Tracking Table\n");
    572      1.1  itojun 		printf("  %-25s %14u %14s\n", "current entries",
    573      1.1  itojun 		    s->src_nodes, "");
    574      1.1  itojun 		for (i = 0; i < SCNT_MAX; i++) {
    575      1.1  itojun 			printf("  %-25s %14lld ", pf_scounters[i],
    576      1.1  itojun 				    s->scounters[i]);
    577      1.1  itojun 			if (runtime > 0)
    578      1.1  itojun 				printf("%14.1f/s\n",
    579      1.1  itojun 				    (double)s->scounters[i] / (double)runtime);
    580      1.1  itojun 			else
    581      1.1  itojun 				printf("%14s\n", "");
    582      1.1  itojun 		}
    583      1.1  itojun 	}
    584      1.1  itojun 	printf("Counters\n");
    585      1.1  itojun 	for (i = 0; i < PFRES_MAX; i++) {
    586      1.1  itojun 		printf("  %-25s %14llu ", pf_reasons[i],
    587      1.1  itojun 		    (unsigned long long)s->counters[i]);
    588      1.1  itojun 		if (runtime > 0)
    589      1.1  itojun 			printf("%14.1f/s\n",
    590      1.1  itojun 			    (double)s->counters[i] / (double)runtime);
    591      1.1  itojun 		else
    592      1.1  itojun 			printf("%14s\n", "");
    593      1.1  itojun 	}
    594  1.1.1.3   peter 	if (opts & PF_OPT_VERBOSE) {
    595  1.1.1.3   peter 		printf("Limit Counters\n");
    596  1.1.1.3   peter 		for (i = 0; i < LCNT_MAX; i++) {
    597  1.1.1.3   peter 			printf("  %-25s %14lld ", pf_lcounters[i],
    598  1.1.1.3   peter 				    s->lcounters[i]);
    599  1.1.1.3   peter 			if (runtime > 0)
    600  1.1.1.3   peter 				printf("%14.1f/s\n",
    601  1.1.1.3   peter 				    (double)s->lcounters[i] / (double)runtime);
    602  1.1.1.3   peter 			else
    603  1.1.1.3   peter 				printf("%14s\n", "");
    604  1.1.1.3   peter 		}
    605  1.1.1.3   peter 	}
    606      1.1  itojun }
    607      1.1  itojun 
    608      1.1  itojun void
    609      1.1  itojun print_src_node(struct pf_src_node *sn, int opts)
    610      1.1  itojun {
    611      1.1  itojun 	struct pf_addr_wrap aw;
    612      1.1  itojun 	int min, sec;
    613      1.1  itojun 
    614      1.1  itojun 	memset(&aw, 0, sizeof(aw));
    615      1.1  itojun 	if (sn->af == AF_INET)
    616      1.1  itojun 		aw.v.a.mask.addr32[0] = 0xffffffff;
    617      1.1  itojun 	else
    618      1.1  itojun 		memset(&aw.v.a.mask, 0xff, sizeof(aw.v.a.mask));
    619      1.1  itojun 
    620      1.1  itojun 	aw.v.a.addr = sn->addr;
    621      1.1  itojun 	print_addr(&aw, sn->af, opts & PF_OPT_VERBOSE2);
    622      1.1  itojun 	printf(" -> ");
    623      1.1  itojun 	aw.v.a.addr = sn->raddr;
    624      1.1  itojun 	print_addr(&aw, sn->af, opts & PF_OPT_VERBOSE2);
    625  1.1.1.3   peter 	printf(" ( states %u, connections %u, rate %u.%u/%us )\n", sn->states,
    626  1.1.1.3   peter 	    sn->conn, sn->conn_rate.count / 1000,
    627  1.1.1.3   peter 	    (sn->conn_rate.count % 1000) / 100, sn->conn_rate.seconds);
    628      1.1  itojun 	if (opts & PF_OPT_VERBOSE) {
    629      1.1  itojun 		sec = sn->creation % 60;
    630      1.1  itojun 		sn->creation /= 60;
    631      1.1  itojun 		min = sn->creation % 60;
    632      1.1  itojun 		sn->creation /= 60;
    633      1.1  itojun 		printf("   age %.2u:%.2u:%.2u", sn->creation, min, sec);
    634      1.1  itojun 		if (sn->states == 0) {
    635      1.1  itojun 			sec = sn->expire % 60;
    636      1.1  itojun 			sn->expire /= 60;
    637      1.1  itojun 			min = sn->expire % 60;
    638      1.1  itojun 			sn->expire /= 60;
    639      1.1  itojun 			printf(", expires in %.2u:%.2u:%.2u",
    640      1.1  itojun 			    sn->expire, min, sec);
    641      1.1  itojun 		}
    642  1.1.1.4  martti 		printf(", %llu pkts, %llu bytes",
    643  1.1.1.4  martti 		    sn->packets[0] + sn->packets[1],
    644  1.1.1.4  martti 		    sn->bytes[0] + sn->bytes[1]);
    645      1.1  itojun 		switch (sn->ruletype) {
    646      1.1  itojun 		case PF_NAT:
    647      1.1  itojun 			if (sn->rule.nr != -1)
    648      1.1  itojun 				printf(", nat rule %u", sn->rule.nr);
    649      1.1  itojun 			break;
    650      1.1  itojun 		case PF_RDR:
    651      1.1  itojun 			if (sn->rule.nr != -1)
    652      1.1  itojun 				printf(", rdr rule %u", sn->rule.nr);
    653      1.1  itojun 			break;
    654      1.1  itojun 		case PF_PASS:
    655      1.1  itojun 			if (sn->rule.nr != -1)
    656      1.1  itojun 				printf(", filter rule %u", sn->rule.nr);
    657      1.1  itojun 			break;
    658      1.1  itojun 		}
    659      1.1  itojun 		printf("\n");
    660      1.1  itojun 	}
    661      1.1  itojun }
    662      1.1  itojun 
    663      1.1  itojun void
    664  1.1.1.2    yamt print_rule(struct pf_rule *r, const char *anchor_call, int verbose)
    665      1.1  itojun {
    666  1.1.1.3   peter 	static const char *actiontypes[] = { "pass", "block", "scrub",
    667  1.1.1.3   peter 	    "no scrub", "nat", "no nat", "binat", "no binat", "rdr", "no rdr" };
    668      1.1  itojun 	static const char *anchortypes[] = { "anchor", "anchor", "anchor",
    669  1.1.1.3   peter 	    "anchor", "nat-anchor", "nat-anchor", "binat-anchor",
    670  1.1.1.3   peter 	    "binat-anchor", "rdr-anchor", "rdr-anchor" };
    671      1.1  itojun 	int	i, opts;
    672      1.1  itojun 
    673      1.1  itojun 	if (verbose)
    674      1.1  itojun 		printf("@%d ", r->nr);
    675      1.1  itojun 	if (r->action > PF_NORDR)
    676      1.1  itojun 		printf("action(%d)", r->action);
    677  1.1.1.4  martti 	else if (anchor_call[0]) {
    678  1.1.1.4  martti 		if (anchor_call[0] == '_') {
    679  1.1.1.4  martti 			printf("%s", anchortypes[r->action]);
    680  1.1.1.4  martti 		} else
    681  1.1.1.4  martti 			printf("%s \"%s\"", anchortypes[r->action],
    682  1.1.1.4  martti 			    anchor_call);
    683  1.1.1.4  martti 	} else {
    684      1.1  itojun 		printf("%s", actiontypes[r->action]);
    685      1.1  itojun 		if (r->natpass)
    686      1.1  itojun 			printf(" pass");
    687      1.1  itojun 	}
    688      1.1  itojun 	if (r->action == PF_DROP) {
    689      1.1  itojun 		if (r->rule_flag & PFRULE_RETURN)
    690      1.1  itojun 			printf(" return");
    691      1.1  itojun 		else if (r->rule_flag & PFRULE_RETURNRST) {
    692      1.1  itojun 			if (!r->return_ttl)
    693      1.1  itojun 				printf(" return-rst");
    694      1.1  itojun 			else
    695      1.1  itojun 				printf(" return-rst(ttl %d)", r->return_ttl);
    696      1.1  itojun 		} else if (r->rule_flag & PFRULE_RETURNICMP) {
    697      1.1  itojun 			const struct icmpcodeent	*ic, *ic6;
    698      1.1  itojun 
    699      1.1  itojun 			ic = geticmpcodebynumber(r->return_icmp >> 8,
    700      1.1  itojun 			    r->return_icmp & 255, AF_INET);
    701      1.1  itojun 			ic6 = geticmpcodebynumber(r->return_icmp6 >> 8,
    702      1.1  itojun 			    r->return_icmp6 & 255, AF_INET6);
    703      1.1  itojun 
    704      1.1  itojun 			switch (r->af) {
    705      1.1  itojun 			case AF_INET:
    706      1.1  itojun 				printf(" return-icmp");
    707      1.1  itojun 				if (ic == NULL)
    708      1.1  itojun 					printf("(%u)", r->return_icmp & 255);
    709      1.1  itojun 				else
    710      1.1  itojun 					printf("(%s)", ic->name);
    711      1.1  itojun 				break;
    712      1.1  itojun 			case AF_INET6:
    713      1.1  itojun 				printf(" return-icmp6");
    714      1.1  itojun 				if (ic6 == NULL)
    715      1.1  itojun 					printf("(%u)", r->return_icmp6 & 255);
    716      1.1  itojun 				else
    717      1.1  itojun 					printf("(%s)", ic6->name);
    718      1.1  itojun 				break;
    719      1.1  itojun 			default:
    720      1.1  itojun 				printf(" return-icmp");
    721      1.1  itojun 				if (ic == NULL)
    722      1.1  itojun 					printf("(%u, ", r->return_icmp & 255);
    723      1.1  itojun 				else
    724      1.1  itojun 					printf("(%s, ", ic->name);
    725      1.1  itojun 				if (ic6 == NULL)
    726      1.1  itojun 					printf("%u)", r->return_icmp6 & 255);
    727      1.1  itojun 				else
    728      1.1  itojun 					printf("%s)", ic6->name);
    729      1.1  itojun 				break;
    730      1.1  itojun 			}
    731      1.1  itojun 		} else
    732      1.1  itojun 			printf(" drop");
    733      1.1  itojun 	}
    734      1.1  itojun 	if (r->direction == PF_IN)
    735      1.1  itojun 		printf(" in");
    736      1.1  itojun 	else if (r->direction == PF_OUT)
    737      1.1  itojun 		printf(" out");
    738  1.1.1.4  martti 	if (r->log) {
    739      1.1  itojun 		printf(" log");
    740  1.1.1.4  martti 		if (r->log & ~PF_LOG || r->logif) {
    741  1.1.1.4  martti 			int count = 0;
    742  1.1.1.4  martti 
    743  1.1.1.4  martti 			printf(" (");
    744  1.1.1.4  martti 			if (r->log & PF_LOG_ALL)
    745  1.1.1.4  martti 				printf("%sall", count++ ? ", " : "");
    746  1.1.1.4  martti 			if (r->log & PF_LOG_SOCKET_LOOKUP)
    747  1.1.1.4  martti 				printf("%suser", count++ ? ", " : "");
    748  1.1.1.4  martti 			if (r->logif)
    749  1.1.1.4  martti 				printf("%sto pflog%u", count++ ? ", " : "",
    750  1.1.1.4  martti 				    r->logif);
    751  1.1.1.4  martti 			printf(")");
    752  1.1.1.4  martti 		}
    753  1.1.1.4  martti 	}
    754      1.1  itojun 	if (r->quick)
    755      1.1  itojun 		printf(" quick");
    756      1.1  itojun 	if (r->ifname[0]) {
    757      1.1  itojun 		if (r->ifnot)
    758      1.1  itojun 			printf(" on ! %s", r->ifname);
    759      1.1  itojun 		else
    760      1.1  itojun 			printf(" on %s", r->ifname);
    761      1.1  itojun 	}
    762      1.1  itojun 	if (r->rt) {
    763      1.1  itojun 		if (r->rt == PF_ROUTETO)
    764      1.1  itojun 			printf(" route-to");
    765      1.1  itojun 		else if (r->rt == PF_REPLYTO)
    766      1.1  itojun 			printf(" reply-to");
    767      1.1  itojun 		else if (r->rt == PF_DUPTO)
    768      1.1  itojun 			printf(" dup-to");
    769      1.1  itojun 		else if (r->rt == PF_FASTROUTE)
    770      1.1  itojun 			printf(" fastroute");
    771      1.1  itojun 		if (r->rt != PF_FASTROUTE) {
    772      1.1  itojun 			printf(" ");
    773      1.1  itojun 			print_pool(&r->rpool, 0, 0, r->af, PF_PASS);
    774      1.1  itojun 		}
    775      1.1  itojun 	}
    776      1.1  itojun 	if (r->af) {
    777      1.1  itojun 		if (r->af == AF_INET)
    778      1.1  itojun 			printf(" inet");
    779      1.1  itojun 		else
    780      1.1  itojun 			printf(" inet6");
    781      1.1  itojun 	}
    782      1.1  itojun 	if (r->proto) {
    783      1.1  itojun 		struct protoent	*p;
    784      1.1  itojun 
    785      1.1  itojun 		if ((p = getprotobynumber(r->proto)) != NULL)
    786      1.1  itojun 			printf(" proto %s", p->p_name);
    787      1.1  itojun 		else
    788      1.1  itojun 			printf(" proto %u", r->proto);
    789      1.1  itojun 	}
    790      1.1  itojun 	print_fromto(&r->src, r->os_fingerprint, &r->dst, r->af, r->proto,
    791      1.1  itojun 	    verbose);
    792      1.1  itojun 	if (r->uid.op)
    793      1.1  itojun 		print_ugid(r->uid.op, r->uid.uid[0], r->uid.uid[1], "user",
    794      1.1  itojun 		    UID_MAX);
    795      1.1  itojun 	if (r->gid.op)
    796      1.1  itojun 		print_ugid(r->gid.op, r->gid.gid[0], r->gid.gid[1], "group",
    797      1.1  itojun 		    GID_MAX);
    798      1.1  itojun 	if (r->flags || r->flagset) {
    799      1.1  itojun 		printf(" flags ");
    800      1.1  itojun 		print_flags(r->flags);
    801      1.1  itojun 		printf("/");
    802      1.1  itojun 		print_flags(r->flagset);
    803  1.1.1.4  martti 	} else if (r->action == PF_PASS &&
    804  1.1.1.4  martti 	    (!r->proto || r->proto == IPPROTO_TCP) &&
    805  1.1.1.4  martti 	    !(r->rule_flag & PFRULE_FRAGMENT) &&
    806  1.1.1.4  martti 	    !anchor_call[0] && r->keep_state)
    807  1.1.1.4  martti 		printf(" flags any");
    808      1.1  itojun 	if (r->type) {
    809      1.1  itojun 		const struct icmptypeent	*it;
    810      1.1  itojun 
    811      1.1  itojun 		it = geticmptypebynumber(r->type-1, r->af);
    812      1.1  itojun 		if (r->af != AF_INET6)
    813      1.1  itojun 			printf(" icmp-type");
    814      1.1  itojun 		else
    815      1.1  itojun 			printf(" icmp6-type");
    816      1.1  itojun 		if (it != NULL)
    817      1.1  itojun 			printf(" %s", it->name);
    818      1.1  itojun 		else
    819      1.1  itojun 			printf(" %u", r->type-1);
    820      1.1  itojun 		if (r->code) {
    821      1.1  itojun 			const struct icmpcodeent	*ic;
    822      1.1  itojun 
    823      1.1  itojun 			ic = geticmpcodebynumber(r->type-1, r->code-1, r->af);
    824      1.1  itojun 			if (ic != NULL)
    825      1.1  itojun 				printf(" code %s", ic->name);
    826      1.1  itojun 			else
    827      1.1  itojun 				printf(" code %u", r->code-1);
    828      1.1  itojun 		}
    829      1.1  itojun 	}
    830      1.1  itojun 	if (r->tos)
    831      1.1  itojun 		printf(" tos 0x%2.2x", r->tos);
    832  1.1.1.4  martti 	if (!r->keep_state && r->action == PF_PASS && !anchor_call[0])
    833  1.1.1.4  martti 		printf(" no state");
    834  1.1.1.4  martti 	else if (r->keep_state == PF_STATE_NORMAL)
    835      1.1  itojun 		printf(" keep state");
    836      1.1  itojun 	else if (r->keep_state == PF_STATE_MODULATE)
    837      1.1  itojun 		printf(" modulate state");
    838      1.1  itojun 	else if (r->keep_state == PF_STATE_SYNPROXY)
    839      1.1  itojun 		printf(" synproxy state");
    840  1.1.1.2    yamt 	if (r->prob) {
    841  1.1.1.2    yamt 		char	buf[20];
    842  1.1.1.2    yamt 
    843  1.1.1.2    yamt 		snprintf(buf, sizeof(buf), "%f", r->prob*100.0/(UINT_MAX+1.0));
    844  1.1.1.2    yamt 		for (i = strlen(buf)-1; i > 0; i--) {
    845  1.1.1.2    yamt 			if (buf[i] == '0')
    846  1.1.1.2    yamt 				buf[i] = '\0';
    847  1.1.1.2    yamt 			else {
    848  1.1.1.2    yamt 				if (buf[i] == '.')
    849  1.1.1.2    yamt 					buf[i] = '\0';
    850  1.1.1.2    yamt 				break;
    851  1.1.1.2    yamt 			}
    852  1.1.1.2    yamt 		}
    853  1.1.1.2    yamt 		printf(" probability %s%%", buf);
    854  1.1.1.2    yamt 	}
    855      1.1  itojun 	opts = 0;
    856      1.1  itojun 	if (r->max_states || r->max_src_nodes || r->max_src_states)
    857      1.1  itojun 		opts = 1;
    858      1.1  itojun 	if (r->rule_flag & PFRULE_NOSYNC)
    859      1.1  itojun 		opts = 1;
    860      1.1  itojun 	if (r->rule_flag & PFRULE_SRCTRACK)
    861      1.1  itojun 		opts = 1;
    862  1.1.1.4  martti 	if (r->rule_flag & PFRULE_IFBOUND)
    863      1.1  itojun 		opts = 1;
    864      1.1  itojun 	for (i = 0; !opts && i < PFTM_MAX; ++i)
    865      1.1  itojun 		if (r->timeout[i])
    866      1.1  itojun 			opts = 1;
    867      1.1  itojun 	if (opts) {
    868      1.1  itojun 		printf(" (");
    869      1.1  itojun 		if (r->max_states) {
    870      1.1  itojun 			printf("max %u", r->max_states);
    871      1.1  itojun 			opts = 0;
    872      1.1  itojun 		}
    873      1.1  itojun 		if (r->rule_flag & PFRULE_NOSYNC) {
    874      1.1  itojun 			if (!opts)
    875      1.1  itojun 				printf(", ");
    876      1.1  itojun 			printf("no-sync");
    877      1.1  itojun 			opts = 0;
    878      1.1  itojun 		}
    879      1.1  itojun 		if (r->rule_flag & PFRULE_SRCTRACK) {
    880      1.1  itojun 			if (!opts)
    881      1.1  itojun 				printf(", ");
    882      1.1  itojun 			printf("source-track");
    883      1.1  itojun 			if (r->rule_flag & PFRULE_RULESRCTRACK)
    884      1.1  itojun 				printf(" rule");
    885      1.1  itojun 			else
    886      1.1  itojun 				printf(" global");
    887      1.1  itojun 			opts = 0;
    888      1.1  itojun 		}
    889      1.1  itojun 		if (r->max_src_states) {
    890      1.1  itojun 			if (!opts)
    891      1.1  itojun 				printf(", ");
    892      1.1  itojun 			printf("max-src-states %u", r->max_src_states);
    893      1.1  itojun 			opts = 0;
    894      1.1  itojun 		}
    895  1.1.1.3   peter 		if (r->max_src_conn) {
    896  1.1.1.3   peter 			if (!opts)
    897  1.1.1.3   peter 				printf(", ");
    898  1.1.1.3   peter 			printf("max-src-conn %u", r->max_src_conn);
    899  1.1.1.3   peter 			opts = 0;
    900  1.1.1.3   peter 		}
    901  1.1.1.3   peter 		if (r->max_src_conn_rate.limit) {
    902  1.1.1.3   peter 			if (!opts)
    903  1.1.1.3   peter 				printf(", ");
    904  1.1.1.3   peter 			printf("max-src-conn-rate %u/%u",
    905  1.1.1.3   peter 			    r->max_src_conn_rate.limit,
    906  1.1.1.3   peter 			    r->max_src_conn_rate.seconds);
    907  1.1.1.3   peter 			opts = 0;
    908  1.1.1.3   peter 		}
    909      1.1  itojun 		if (r->max_src_nodes) {
    910      1.1  itojun 			if (!opts)
    911      1.1  itojun 				printf(", ");
    912      1.1  itojun 			printf("max-src-nodes %u", r->max_src_nodes);
    913      1.1  itojun 			opts = 0;
    914      1.1  itojun 		}
    915  1.1.1.3   peter 		if (r->overload_tblname[0]) {
    916  1.1.1.3   peter 			if (!opts)
    917  1.1.1.3   peter 				printf(", ");
    918  1.1.1.3   peter 			printf("overload <%s>", r->overload_tblname);
    919  1.1.1.3   peter 			if (r->flush)
    920  1.1.1.3   peter 				printf(" flush");
    921  1.1.1.3   peter 			if (r->flush & PF_FLUSH_GLOBAL)
    922  1.1.1.3   peter 				printf(" global");
    923  1.1.1.3   peter 		}
    924      1.1  itojun 		if (r->rule_flag & PFRULE_IFBOUND) {
    925      1.1  itojun 			if (!opts)
    926      1.1  itojun 				printf(", ");
    927      1.1  itojun 			printf("if-bound");
    928      1.1  itojun 			opts = 0;
    929      1.1  itojun 		}
    930      1.1  itojun 		for (i = 0; i < PFTM_MAX; ++i)
    931      1.1  itojun 			if (r->timeout[i]) {
    932  1.1.1.3   peter 				int j;
    933  1.1.1.3   peter 
    934      1.1  itojun 				if (!opts)
    935      1.1  itojun 					printf(", ");
    936      1.1  itojun 				opts = 0;
    937  1.1.1.4  martti 				for (j = 0; pf_timeouts[j].name != NULL;
    938  1.1.1.4  martti 				    ++j)
    939  1.1.1.3   peter 					if (pf_timeouts[j].timeout == i)
    940  1.1.1.3   peter 						break;
    941  1.1.1.4  martti 				printf("%s %u", pf_timeouts[j].name == NULL ?
    942  1.1.1.4  martti 				    "inv.timeout" : pf_timeouts[j].name,
    943  1.1.1.4  martti 				    r->timeout[i]);
    944      1.1  itojun 			}
    945      1.1  itojun 		printf(")");
    946      1.1  itojun 	}
    947      1.1  itojun 	if (r->rule_flag & PFRULE_FRAGMENT)
    948      1.1  itojun 		printf(" fragment");
    949      1.1  itojun 	if (r->rule_flag & PFRULE_NODF)
    950      1.1  itojun 		printf(" no-df");
    951      1.1  itojun 	if (r->rule_flag & PFRULE_RANDOMID)
    952      1.1  itojun 		printf(" random-id");
    953      1.1  itojun 	if (r->min_ttl)
    954      1.1  itojun 		printf(" min-ttl %d", r->min_ttl);
    955      1.1  itojun 	if (r->max_mss)
    956      1.1  itojun 		printf(" max-mss %d", r->max_mss);
    957      1.1  itojun 	if (r->allow_opts)
    958      1.1  itojun 		printf(" allow-opts");
    959      1.1  itojun 	if (r->action == PF_SCRUB) {
    960      1.1  itojun 		if (r->rule_flag & PFRULE_REASSEMBLE_TCP)
    961      1.1  itojun 			printf(" reassemble tcp");
    962      1.1  itojun 
    963      1.1  itojun 		if (r->rule_flag & PFRULE_FRAGDROP)
    964      1.1  itojun 			printf(" fragment drop-ovl");
    965      1.1  itojun 		else if (r->rule_flag & PFRULE_FRAGCROP)
    966      1.1  itojun 			printf(" fragment crop");
    967      1.1  itojun 		else
    968      1.1  itojun 			printf(" fragment reassemble");
    969      1.1  itojun 	}
    970      1.1  itojun 	if (r->label[0])
    971      1.1  itojun 		printf(" label \"%s\"", r->label);
    972      1.1  itojun 	if (r->qname[0] && r->pqname[0])
    973      1.1  itojun 		printf(" queue(%s, %s)", r->qname, r->pqname);
    974      1.1  itojun 	else if (r->qname[0])
    975      1.1  itojun 		printf(" queue %s", r->qname);
    976      1.1  itojun 	if (r->tagname[0])
    977      1.1  itojun 		printf(" tag %s", r->tagname);
    978      1.1  itojun 	if (r->match_tagname[0]) {
    979      1.1  itojun 		if (r->match_tag_not)
    980      1.1  itojun 			printf(" !");
    981      1.1  itojun 		printf(" tagged %s", r->match_tagname);
    982      1.1  itojun 	}
    983  1.1.1.4  martti 	if (r->rtableid != -1)
    984  1.1.1.4  martti 		printf(" rtable %u", r->rtableid);
    985  1.1.1.2    yamt 	if (!anchor_call[0] && (r->action == PF_NAT ||
    986      1.1  itojun 	    r->action == PF_BINAT || r->action == PF_RDR)) {
    987      1.1  itojun 		printf(" -> ");
    988      1.1  itojun 		print_pool(&r->rpool, r->rpool.proxy_port[0],
    989      1.1  itojun 		    r->rpool.proxy_port[1], r->af, r->action);
    990      1.1  itojun 	}
    991      1.1  itojun }
    992      1.1  itojun 
    993      1.1  itojun void
    994      1.1  itojun print_tabledef(const char *name, int flags, int addrs,
    995      1.1  itojun     struct node_tinithead *nodes)
    996      1.1  itojun {
    997      1.1  itojun 	struct node_tinit	*ti, *nti;
    998      1.1  itojun 	struct node_host	*h;
    999      1.1  itojun 
   1000      1.1  itojun 	printf("table <%s>", name);
   1001      1.1  itojun 	if (flags & PFR_TFLAG_CONST)
   1002      1.1  itojun 		printf(" const");
   1003      1.1  itojun 	if (flags & PFR_TFLAG_PERSIST)
   1004      1.1  itojun 		printf(" persist");
   1005      1.1  itojun 	SIMPLEQ_FOREACH(ti, nodes, entries) {
   1006      1.1  itojun 		if (ti->file) {
   1007      1.1  itojun 			printf(" file \"%s\"", ti->file);
   1008      1.1  itojun 			continue;
   1009      1.1  itojun 		}
   1010      1.1  itojun 		printf(" {");
   1011      1.1  itojun 		for (;;) {
   1012      1.1  itojun 			for (h = ti->host; h != NULL; h = h->next) {
   1013      1.1  itojun 				printf(h->not ? " !" : " ");
   1014      1.1  itojun 				print_addr(&h->addr, h->af, 0);
   1015      1.1  itojun 			}
   1016      1.1  itojun 			nti = SIMPLEQ_NEXT(ti, entries);
   1017      1.1  itojun 			if (nti != NULL && nti->file == NULL)
   1018      1.1  itojun 				ti = nti;	/* merge lists */
   1019      1.1  itojun 			else
   1020      1.1  itojun 				break;
   1021      1.1  itojun 		}
   1022      1.1  itojun 		printf(" }");
   1023      1.1  itojun 	}
   1024      1.1  itojun 	if (addrs && SIMPLEQ_EMPTY(nodes))
   1025      1.1  itojun 		printf(" { }");
   1026      1.1  itojun 	printf("\n");
   1027      1.1  itojun }
   1028      1.1  itojun 
   1029      1.1  itojun int
   1030      1.1  itojun parse_flags(char *s)
   1031      1.1  itojun {
   1032      1.1  itojun 	char		*p, *q;
   1033      1.1  itojun 	u_int8_t	 f = 0;
   1034      1.1  itojun 
   1035      1.1  itojun 	for (p = s; *p; p++) {
   1036      1.1  itojun 		if ((q = strchr(tcpflags, *p)) == NULL)
   1037      1.1  itojun 			return -1;
   1038      1.1  itojun 		else
   1039      1.1  itojun 			f |= 1 << (q - tcpflags);
   1040      1.1  itojun 	}
   1041      1.1  itojun 	return (f ? f : PF_TH_ALL);
   1042      1.1  itojun }
   1043      1.1  itojun 
   1044      1.1  itojun void
   1045      1.1  itojun set_ipmask(struct node_host *h, u_int8_t b)
   1046      1.1  itojun {
   1047      1.1  itojun 	struct pf_addr	*m, *n;
   1048      1.1  itojun 	int		 i, j = 0;
   1049      1.1  itojun 
   1050      1.1  itojun 	m = &h->addr.v.a.mask;
   1051  1.1.1.2    yamt 	memset(m, 0, sizeof(*m));
   1052      1.1  itojun 
   1053      1.1  itojun 	while (b >= 32) {
   1054      1.1  itojun 		m->addr32[j++] = 0xffffffff;
   1055      1.1  itojun 		b -= 32;
   1056      1.1  itojun 	}
   1057      1.1  itojun 	for (i = 31; i > 31-b; --i)
   1058      1.1  itojun 		m->addr32[j] |= (1 << i);
   1059      1.1  itojun 	if (b)
   1060      1.1  itojun 		m->addr32[j] = htonl(m->addr32[j]);
   1061      1.1  itojun 
   1062      1.1  itojun 	/* Mask off bits of the address that will never be used. */
   1063      1.1  itojun 	n = &h->addr.v.a.addr;
   1064      1.1  itojun 	if (h->addr.type == PF_ADDR_ADDRMASK)
   1065      1.1  itojun 		for (i = 0; i < 4; i++)
   1066      1.1  itojun 			n->addr32[i] = n->addr32[i] & m->addr32[i];
   1067      1.1  itojun }
   1068      1.1  itojun 
   1069      1.1  itojun int
   1070      1.1  itojun check_netmask(struct node_host *h, sa_family_t af)
   1071      1.1  itojun {
   1072      1.1  itojun 	struct node_host	*n = NULL;
   1073      1.1  itojun 	struct pf_addr	*m;
   1074      1.1  itojun 
   1075      1.1  itojun 	for (n = h; n != NULL; n = n->next) {
   1076      1.1  itojun 		if (h->addr.type == PF_ADDR_TABLE)
   1077      1.1  itojun 			continue;
   1078      1.1  itojun 		m = &h->addr.v.a.mask;
   1079      1.1  itojun 		/* fix up netmask for dynaddr */
   1080      1.1  itojun 		if (af == AF_INET && h->addr.type == PF_ADDR_DYNIFTL &&
   1081      1.1  itojun 		    unmask(m, AF_INET6) > 32)
   1082      1.1  itojun 			set_ipmask(n, 32);
   1083      1.1  itojun 		/* netmasks > 32 bit are invalid on v4 */
   1084      1.1  itojun 		if (af == AF_INET &&
   1085      1.1  itojun 		    (m->addr32[1] || m->addr32[2] || m->addr32[3])) {
   1086      1.1  itojun 			fprintf(stderr, "netmask %u invalid for IPv4 address\n",
   1087      1.1  itojun 			    unmask(m, AF_INET6));
   1088      1.1  itojun 			return (1);
   1089      1.1  itojun 		}
   1090      1.1  itojun 	}
   1091      1.1  itojun 	return (0);
   1092      1.1  itojun }
   1093      1.1  itojun 
   1094      1.1  itojun /* interface lookup routines */
   1095      1.1  itojun 
   1096      1.1  itojun struct node_host	*iftab;
   1097      1.1  itojun 
   1098      1.1  itojun void
   1099      1.1  itojun ifa_load(void)
   1100      1.1  itojun {
   1101      1.1  itojun 	struct ifaddrs		*ifap, *ifa;
   1102      1.1  itojun 	struct node_host	*n = NULL, *h = NULL;
   1103      1.1  itojun 
   1104      1.1  itojun 	if (getifaddrs(&ifap) < 0)
   1105      1.1  itojun 		err(1, "getifaddrs");
   1106      1.1  itojun 
   1107      1.1  itojun 	for (ifa = ifap; ifa; ifa = ifa->ifa_next) {
   1108      1.1  itojun 		if (!(ifa->ifa_addr->sa_family == AF_INET ||
   1109      1.1  itojun 		    ifa->ifa_addr->sa_family == AF_INET6 ||
   1110      1.1  itojun 		    ifa->ifa_addr->sa_family == AF_LINK))
   1111      1.1  itojun 				continue;
   1112      1.1  itojun 		n = calloc(1, sizeof(struct node_host));
   1113      1.1  itojun 		if (n == NULL)
   1114      1.1  itojun 			err(1, "address: calloc");
   1115      1.1  itojun 		n->af = ifa->ifa_addr->sa_family;
   1116      1.1  itojun 		n->ifa_flags = ifa->ifa_flags;
   1117      1.1  itojun #ifdef __KAME__
   1118      1.1  itojun 		if (n->af == AF_INET6 &&
   1119      1.1  itojun 		    IN6_IS_ADDR_LINKLOCAL(&((struct sockaddr_in6 *)
   1120      1.1  itojun 		    ifa->ifa_addr)->sin6_addr) &&
   1121      1.1  itojun 		    ((struct sockaddr_in6 *)ifa->ifa_addr)->sin6_scope_id ==
   1122      1.1  itojun 		    0) {
   1123      1.1  itojun 			struct sockaddr_in6	*sin6;
   1124      1.1  itojun 
   1125      1.1  itojun 			sin6 = (struct sockaddr_in6 *)ifa->ifa_addr;
   1126      1.1  itojun 			sin6->sin6_scope_id = sin6->sin6_addr.s6_addr[2] << 8 |
   1127      1.1  itojun 			    sin6->sin6_addr.s6_addr[3];
   1128      1.1  itojun 			sin6->sin6_addr.s6_addr[2] = 0;
   1129      1.1  itojun 			sin6->sin6_addr.s6_addr[3] = 0;
   1130      1.1  itojun 		}
   1131      1.1  itojun #endif
   1132      1.1  itojun 		n->ifindex = 0;
   1133      1.1  itojun 		if (n->af == AF_INET) {
   1134      1.1  itojun 			memcpy(&n->addr.v.a.addr, &((struct sockaddr_in *)
   1135      1.1  itojun 			    ifa->ifa_addr)->sin_addr.s_addr,
   1136      1.1  itojun 			    sizeof(struct in_addr));
   1137      1.1  itojun 			memcpy(&n->addr.v.a.mask, &((struct sockaddr_in *)
   1138      1.1  itojun 			    ifa->ifa_netmask)->sin_addr.s_addr,
   1139      1.1  itojun 			    sizeof(struct in_addr));
   1140      1.1  itojun 			if (ifa->ifa_broadaddr != NULL)
   1141      1.1  itojun 				memcpy(&n->bcast, &((struct sockaddr_in *)
   1142      1.1  itojun 				    ifa->ifa_broadaddr)->sin_addr.s_addr,
   1143      1.1  itojun 				    sizeof(struct in_addr));
   1144      1.1  itojun 			if (ifa->ifa_dstaddr != NULL)
   1145      1.1  itojun 				memcpy(&n->peer, &((struct sockaddr_in *)
   1146      1.1  itojun 				    ifa->ifa_dstaddr)->sin_addr.s_addr,
   1147      1.1  itojun 				    sizeof(struct in_addr));
   1148      1.1  itojun 		} else if (n->af == AF_INET6) {
   1149      1.1  itojun 			memcpy(&n->addr.v.a.addr, &((struct sockaddr_in6 *)
   1150      1.1  itojun 			    ifa->ifa_addr)->sin6_addr.s6_addr,
   1151      1.1  itojun 			    sizeof(struct in6_addr));
   1152      1.1  itojun 			memcpy(&n->addr.v.a.mask, &((struct sockaddr_in6 *)
   1153      1.1  itojun 			    ifa->ifa_netmask)->sin6_addr.s6_addr,
   1154      1.1  itojun 			    sizeof(struct in6_addr));
   1155      1.1  itojun 			if (ifa->ifa_broadaddr != NULL)
   1156      1.1  itojun 				memcpy(&n->bcast, &((struct sockaddr_in6 *)
   1157      1.1  itojun 				    ifa->ifa_broadaddr)->sin6_addr.s6_addr,
   1158      1.1  itojun 				    sizeof(struct in6_addr));
   1159      1.1  itojun 			if (ifa->ifa_dstaddr != NULL)
   1160      1.1  itojun 				 memcpy(&n->peer, &((struct sockaddr_in6 *)
   1161      1.1  itojun 				    ifa->ifa_dstaddr)->sin6_addr.s6_addr,
   1162      1.1  itojun 				    sizeof(struct in6_addr));
   1163      1.1  itojun 			n->ifindex = ((struct sockaddr_in6 *)
   1164      1.1  itojun 			    ifa->ifa_addr)->sin6_scope_id;
   1165      1.1  itojun 		}
   1166      1.1  itojun 		if ((n->ifname = strdup(ifa->ifa_name)) == NULL)
   1167      1.1  itojun 			err(1, "ifa_load: strdup");
   1168      1.1  itojun 		n->next = NULL;
   1169      1.1  itojun 		n->tail = n;
   1170      1.1  itojun 		if (h == NULL)
   1171      1.1  itojun 			h = n;
   1172      1.1  itojun 		else {
   1173      1.1  itojun 			h->tail->next = n;
   1174      1.1  itojun 			h->tail = n;
   1175      1.1  itojun 		}
   1176      1.1  itojun 	}
   1177      1.1  itojun 
   1178      1.1  itojun 	iftab = h;
   1179      1.1  itojun 	freeifaddrs(ifap);
   1180      1.1  itojun }
   1181      1.1  itojun 
   1182      1.1  itojun struct node_host *
   1183  1.1.1.4  martti ifa_exists(const char *ifa_name)
   1184      1.1  itojun {
   1185      1.1  itojun 	struct node_host	*n;
   1186  1.1.1.4  martti 	struct ifgroupreq	ifgr;
   1187  1.1.1.4  martti 	int			s;
   1188      1.1  itojun 
   1189      1.1  itojun 	if (iftab == NULL)
   1190      1.1  itojun 		ifa_load();
   1191      1.1  itojun 
   1192  1.1.1.4  martti 	/* check wether this is a group */
   1193  1.1.1.4  martti 	if ((s = socket(AF_INET, SOCK_DGRAM, 0)) == -1)
   1194  1.1.1.4  martti 		err(1, "socket");
   1195  1.1.1.4  martti 	bzero(&ifgr, sizeof(ifgr));
   1196  1.1.1.4  martti 	strlcpy(ifgr.ifgr_name, ifa_name, sizeof(ifgr.ifgr_name));
   1197  1.1.1.4  martti 	if (ioctl(s, SIOCGIFGMEMB, (caddr_t)&ifgr) == 0) {
   1198  1.1.1.4  martti 		/* fake a node_host */
   1199  1.1.1.4  martti 		if ((n = calloc(1, sizeof(*n))) == NULL)
   1200  1.1.1.4  martti 			err(1, "calloc");
   1201  1.1.1.4  martti 		if ((n->ifname = strdup(ifa_name)) == NULL)
   1202  1.1.1.4  martti 			err(1, "strdup");
   1203  1.1.1.4  martti 		close(s);
   1204  1.1.1.4  martti 		return (n);
   1205  1.1.1.4  martti 	}
   1206  1.1.1.4  martti 	close(s);
   1207  1.1.1.4  martti 
   1208      1.1  itojun 	for (n = iftab; n; n = n->next) {
   1209      1.1  itojun 		if (n->af == AF_LINK && !strncmp(n->ifname, ifa_name, IFNAMSIZ))
   1210      1.1  itojun 			return (n);
   1211      1.1  itojun 	}
   1212  1.1.1.2    yamt 
   1213      1.1  itojun 	return (NULL);
   1214      1.1  itojun }
   1215      1.1  itojun 
   1216      1.1  itojun struct node_host *
   1217  1.1.1.4  martti ifa_grouplookup(const char *ifa_name, int flags)
   1218  1.1.1.4  martti {
   1219  1.1.1.4  martti 	struct ifg_req		*ifg;
   1220  1.1.1.4  martti 	struct ifgroupreq	 ifgr;
   1221  1.1.1.4  martti 	int			 s, len;
   1222  1.1.1.4  martti 	struct node_host	*n, *h = NULL;
   1223  1.1.1.4  martti 
   1224  1.1.1.4  martti 	if ((s = socket(AF_INET, SOCK_DGRAM, 0)) == -1)
   1225  1.1.1.4  martti 		err(1, "socket");
   1226  1.1.1.4  martti 	bzero(&ifgr, sizeof(ifgr));
   1227  1.1.1.4  martti 	strlcpy(ifgr.ifgr_name, ifa_name, sizeof(ifgr.ifgr_name));
   1228  1.1.1.4  martti 	if (ioctl(s, SIOCGIFGMEMB, (caddr_t)&ifgr) == -1) {
   1229  1.1.1.4  martti 		close(s);
   1230  1.1.1.4  martti 		return (NULL);
   1231  1.1.1.4  martti 	}
   1232  1.1.1.4  martti 
   1233  1.1.1.4  martti 	len = ifgr.ifgr_len;
   1234  1.1.1.4  martti 	if ((ifgr.ifgr_groups = calloc(1, len)) == NULL)
   1235  1.1.1.4  martti 		err(1, "calloc");
   1236  1.1.1.4  martti 	if (ioctl(s, SIOCGIFGMEMB, (caddr_t)&ifgr) == -1)
   1237  1.1.1.4  martti 		err(1, "SIOCGIFGMEMB");
   1238  1.1.1.4  martti 
   1239  1.1.1.4  martti 	for (ifg = ifgr.ifgr_groups; ifg && len >= sizeof(struct ifg_req);
   1240  1.1.1.4  martti 	    ifg++) {
   1241  1.1.1.4  martti 		len -= sizeof(struct ifg_req);
   1242  1.1.1.4  martti 		if ((n = ifa_lookup(ifg->ifgrq_member, flags)) == NULL)
   1243  1.1.1.4  martti 			continue;
   1244  1.1.1.4  martti 		if (h == NULL)
   1245  1.1.1.4  martti 			h = n;
   1246  1.1.1.4  martti 		else {
   1247  1.1.1.4  martti 			h->tail->next = n;
   1248  1.1.1.4  martti 			h->tail = n->tail;
   1249  1.1.1.4  martti 		}
   1250  1.1.1.4  martti 	}
   1251  1.1.1.4  martti 	free(ifgr.ifgr_groups);
   1252  1.1.1.4  martti 	close(s);
   1253  1.1.1.4  martti 
   1254  1.1.1.4  martti 	return (h);
   1255  1.1.1.4  martti }
   1256  1.1.1.4  martti 
   1257  1.1.1.4  martti struct node_host *
   1258      1.1  itojun ifa_lookup(const char *ifa_name, int flags)
   1259      1.1  itojun {
   1260      1.1  itojun 	struct node_host	*p = NULL, *h = NULL, *n = NULL;
   1261      1.1  itojun 	int			 got4 = 0, got6 = 0;
   1262      1.1  itojun 	const char		 *last_if = NULL;
   1263      1.1  itojun 
   1264  1.1.1.4  martti 	if ((h = ifa_grouplookup(ifa_name, flags)) != NULL)
   1265  1.1.1.4  martti 		return (h);
   1266  1.1.1.4  martti 
   1267      1.1  itojun 	if (!strncmp(ifa_name, "self", IFNAMSIZ))
   1268      1.1  itojun 		ifa_name = NULL;
   1269      1.1  itojun 
   1270      1.1  itojun 	if (iftab == NULL)
   1271      1.1  itojun 		ifa_load();
   1272      1.1  itojun 
   1273      1.1  itojun 	for (p = iftab; p; p = p->next) {
   1274      1.1  itojun 		if (ifa_skip_if(ifa_name, p))
   1275      1.1  itojun 			continue;
   1276      1.1  itojun 		if ((flags & PFI_AFLAG_BROADCAST) && p->af != AF_INET)
   1277      1.1  itojun 			continue;
   1278      1.1  itojun 		if ((flags & PFI_AFLAG_BROADCAST) &&
   1279      1.1  itojun 		    !(p->ifa_flags & IFF_BROADCAST))
   1280      1.1  itojun 			continue;
   1281      1.1  itojun 		if ((flags & PFI_AFLAG_PEER) &&
   1282      1.1  itojun 		    !(p->ifa_flags & IFF_POINTOPOINT))
   1283      1.1  itojun 			continue;
   1284      1.1  itojun 		if ((flags & PFI_AFLAG_NETWORK) && p->ifindex > 0)
   1285      1.1  itojun 			continue;
   1286      1.1  itojun 		if (last_if == NULL || strcmp(last_if, p->ifname))
   1287      1.1  itojun 			got4 = got6 = 0;
   1288      1.1  itojun 		last_if = p->ifname;
   1289      1.1  itojun 		if ((flags & PFI_AFLAG_NOALIAS) && p->af == AF_INET && got4)
   1290      1.1  itojun 			continue;
   1291      1.1  itojun 		if ((flags & PFI_AFLAG_NOALIAS) && p->af == AF_INET6 && got6)
   1292      1.1  itojun 			continue;
   1293      1.1  itojun 		if (p->af == AF_INET)
   1294      1.1  itojun 			got4 = 1;
   1295      1.1  itojun 		else
   1296      1.1  itojun 			got6 = 1;
   1297      1.1  itojun 		n = calloc(1, sizeof(struct node_host));
   1298      1.1  itojun 		if (n == NULL)
   1299      1.1  itojun 			err(1, "address: calloc");
   1300      1.1  itojun 		n->af = p->af;
   1301      1.1  itojun 		if (flags & PFI_AFLAG_BROADCAST)
   1302      1.1  itojun 			memcpy(&n->addr.v.a.addr, &p->bcast,
   1303      1.1  itojun 			    sizeof(struct pf_addr));
   1304      1.1  itojun 		else if (flags & PFI_AFLAG_PEER)
   1305      1.1  itojun 			memcpy(&n->addr.v.a.addr, &p->peer,
   1306      1.1  itojun 			    sizeof(struct pf_addr));
   1307      1.1  itojun 		else
   1308      1.1  itojun 			memcpy(&n->addr.v.a.addr, &p->addr.v.a.addr,
   1309      1.1  itojun 			    sizeof(struct pf_addr));
   1310      1.1  itojun 		if (flags & PFI_AFLAG_NETWORK)
   1311      1.1  itojun 			set_ipmask(n, unmask(&p->addr.v.a.mask, n->af));
   1312      1.1  itojun 		else {
   1313      1.1  itojun 			if (n->af == AF_INET) {
   1314      1.1  itojun 				if (p->ifa_flags & IFF_LOOPBACK &&
   1315      1.1  itojun 				    p->ifa_flags & IFF_LINK1)
   1316      1.1  itojun 					memcpy(&n->addr.v.a.mask,
   1317      1.1  itojun 					    &p->addr.v.a.mask,
   1318      1.1  itojun 					    sizeof(struct pf_addr));
   1319      1.1  itojun 				else
   1320      1.1  itojun 					set_ipmask(n, 32);
   1321      1.1  itojun 			} else
   1322      1.1  itojun 				set_ipmask(n, 128);
   1323      1.1  itojun 		}
   1324      1.1  itojun 		n->ifindex = p->ifindex;
   1325      1.1  itojun 
   1326      1.1  itojun 		n->next = NULL;
   1327      1.1  itojun 		n->tail = n;
   1328      1.1  itojun 		if (h == NULL)
   1329      1.1  itojun 			h = n;
   1330      1.1  itojun 		else {
   1331      1.1  itojun 			h->tail->next = n;
   1332      1.1  itojun 			h->tail = n;
   1333      1.1  itojun 		}
   1334      1.1  itojun 	}
   1335      1.1  itojun 	return (h);
   1336      1.1  itojun }
   1337      1.1  itojun 
   1338      1.1  itojun int
   1339      1.1  itojun ifa_skip_if(const char *filter, struct node_host *p)
   1340      1.1  itojun {
   1341      1.1  itojun 	int	n;
   1342      1.1  itojun 
   1343      1.1  itojun 	if (p->af != AF_INET && p->af != AF_INET6)
   1344      1.1  itojun 		return (1);
   1345      1.1  itojun 	if (filter == NULL || !*filter)
   1346      1.1  itojun 		return (0);
   1347      1.1  itojun 	if (!strcmp(p->ifname, filter))
   1348      1.1  itojun 		return (0);	/* exact match */
   1349      1.1  itojun 	n = strlen(filter);
   1350      1.1  itojun 	if (n < 1 || n >= IFNAMSIZ)
   1351      1.1  itojun 		return (1);	/* sanity check */
   1352      1.1  itojun 	if (filter[n-1] >= '0' && filter[n-1] <= '9')
   1353      1.1  itojun 		return (1);	/* only do exact match in that case */
   1354      1.1  itojun 	if (strncmp(p->ifname, filter, n))
   1355      1.1  itojun 		return (1);	/* prefix doesn't match */
   1356      1.1  itojun 	return (p->ifname[n] < '0' || p->ifname[n] > '9');
   1357      1.1  itojun }
   1358      1.1  itojun 
   1359      1.1  itojun 
   1360      1.1  itojun struct node_host *
   1361      1.1  itojun host(const char *s)
   1362      1.1  itojun {
   1363      1.1  itojun 	struct node_host	*h = NULL;
   1364      1.1  itojun 	int			 mask, v4mask, v6mask, cont = 1;
   1365      1.1  itojun 	char			*p, *q, *ps;
   1366      1.1  itojun 
   1367      1.1  itojun 	if ((p = strrchr(s, '/')) != NULL) {
   1368      1.1  itojun 		mask = strtol(p+1, &q, 0);
   1369      1.1  itojun 		if (!q || *q || mask > 128 || q == (p+1)) {
   1370  1.1.1.3   peter 			fprintf(stderr, "invalid netmask '%s'\n", p);
   1371      1.1  itojun 			return (NULL);
   1372      1.1  itojun 		}
   1373      1.1  itojun 		if ((ps = malloc(strlen(s) - strlen(p) + 1)) == NULL)
   1374      1.1  itojun 			err(1, "host: malloc");
   1375      1.1  itojun 		strlcpy(ps, s, strlen(s) - strlen(p) + 1);
   1376      1.1  itojun 		v4mask = v6mask = mask;
   1377      1.1  itojun 	} else {
   1378      1.1  itojun 		if ((ps = strdup(s)) == NULL)
   1379      1.1  itojun 			err(1, "host: strdup");
   1380      1.1  itojun 		v4mask = 32;
   1381      1.1  itojun 		v6mask = 128;
   1382      1.1  itojun 		mask = -1;
   1383      1.1  itojun 	}
   1384      1.1  itojun 
   1385      1.1  itojun 	/* interface with this name exists? */
   1386      1.1  itojun 	if (cont && (h = host_if(ps, mask)) != NULL)
   1387      1.1  itojun 		cont = 0;
   1388      1.1  itojun 
   1389      1.1  itojun 	/* IPv4 address? */
   1390      1.1  itojun 	if (cont && (h = host_v4(s, mask)) != NULL)
   1391      1.1  itojun 		cont = 0;
   1392      1.1  itojun 
   1393      1.1  itojun 	/* IPv6 address? */
   1394      1.1  itojun 	if (cont && (h = host_v6(ps, v6mask)) != NULL)
   1395      1.1  itojun 		cont = 0;
   1396      1.1  itojun 
   1397      1.1  itojun 	/* dns lookup */
   1398      1.1  itojun 	if (cont && (h = host_dns(ps, v4mask, v6mask)) != NULL)
   1399      1.1  itojun 		cont = 0;
   1400      1.1  itojun 	free(ps);
   1401      1.1  itojun 
   1402      1.1  itojun 	if (h == NULL || cont == 1) {
   1403      1.1  itojun 		fprintf(stderr, "no IP address found for %s\n", s);
   1404      1.1  itojun 		return (NULL);
   1405      1.1  itojun 	}
   1406      1.1  itojun 	return (h);
   1407      1.1  itojun }
   1408      1.1  itojun 
   1409      1.1  itojun struct node_host *
   1410      1.1  itojun host_if(const char *s, int mask)
   1411      1.1  itojun {
   1412      1.1  itojun 	struct node_host	*n, *h = NULL;
   1413      1.1  itojun 	char			*p, *ps;
   1414      1.1  itojun 	int			 flags = 0;
   1415      1.1  itojun 
   1416      1.1  itojun 	if ((ps = strdup(s)) == NULL)
   1417      1.1  itojun 		err(1, "host_if: strdup");
   1418      1.1  itojun 	while ((p = strrchr(ps, ':')) != NULL) {
   1419      1.1  itojun 		if (!strcmp(p+1, "network"))
   1420      1.1  itojun 			flags |= PFI_AFLAG_NETWORK;
   1421      1.1  itojun 		else if (!strcmp(p+1, "broadcast"))
   1422      1.1  itojun 			flags |= PFI_AFLAG_BROADCAST;
   1423      1.1  itojun 		else if (!strcmp(p+1, "peer"))
   1424      1.1  itojun 			flags |= PFI_AFLAG_PEER;
   1425      1.1  itojun 		else if (!strcmp(p+1, "0"))
   1426      1.1  itojun 			flags |= PFI_AFLAG_NOALIAS;
   1427      1.1  itojun 		else {
   1428      1.1  itojun 			free(ps);
   1429      1.1  itojun 			return (NULL);
   1430      1.1  itojun 		}
   1431      1.1  itojun 		*p = '\0';
   1432      1.1  itojun 	}
   1433      1.1  itojun 	if (flags & (flags - 1) & PFI_AFLAG_MODEMASK) { /* Yep! */
   1434      1.1  itojun 		fprintf(stderr, "illegal combination of interface modifiers\n");
   1435      1.1  itojun 		free(ps);
   1436      1.1  itojun 		return (NULL);
   1437      1.1  itojun 	}
   1438      1.1  itojun 	if ((flags & (PFI_AFLAG_NETWORK|PFI_AFLAG_BROADCAST)) && mask > -1) {
   1439      1.1  itojun 		fprintf(stderr, "network or broadcast lookup, but "
   1440      1.1  itojun 		    "extra netmask given\n");
   1441      1.1  itojun 		free(ps);
   1442      1.1  itojun 		return (NULL);
   1443      1.1  itojun 	}
   1444  1.1.1.4  martti 	if (ifa_exists(ps) || !strncmp(ps, "self", IFNAMSIZ)) {
   1445      1.1  itojun 		/* interface with this name exists */
   1446      1.1  itojun 		h = ifa_lookup(ps, flags);
   1447      1.1  itojun 		for (n = h; n != NULL && mask > -1; n = n->next)
   1448      1.1  itojun 			set_ipmask(n, mask);
   1449      1.1  itojun 	}
   1450      1.1  itojun 
   1451      1.1  itojun 	free(ps);
   1452      1.1  itojun 	return (h);
   1453      1.1  itojun }
   1454      1.1  itojun 
   1455      1.1  itojun struct node_host *
   1456      1.1  itojun host_v4(const char *s, int mask)
   1457      1.1  itojun {
   1458      1.1  itojun 	struct node_host	*h = NULL;
   1459      1.1  itojun 	struct in_addr		 ina;
   1460      1.1  itojun 	int			 bits = 32;
   1461      1.1  itojun 
   1462      1.1  itojun 	memset(&ina, 0, sizeof(struct in_addr));
   1463      1.1  itojun 	if (strrchr(s, '/') != NULL) {
   1464      1.1  itojun 		if ((bits = inet_net_pton(AF_INET, s, &ina, sizeof(ina))) == -1)
   1465      1.1  itojun 			return (NULL);
   1466      1.1  itojun 	} else {
   1467      1.1  itojun 		if (inet_pton(AF_INET, s, &ina) != 1)
   1468      1.1  itojun 			return (NULL);
   1469      1.1  itojun 	}
   1470      1.1  itojun 
   1471      1.1  itojun 	h = calloc(1, sizeof(struct node_host));
   1472      1.1  itojun 	if (h == NULL)
   1473      1.1  itojun 		err(1, "address: calloc");
   1474      1.1  itojun 	h->ifname = NULL;
   1475      1.1  itojun 	h->af = AF_INET;
   1476      1.1  itojun 	h->addr.v.a.addr.addr32[0] = ina.s_addr;
   1477      1.1  itojun 	set_ipmask(h, bits);
   1478      1.1  itojun 	h->next = NULL;
   1479      1.1  itojun 	h->tail = h;
   1480      1.1  itojun 
   1481      1.1  itojun 	return (h);
   1482      1.1  itojun }
   1483      1.1  itojun 
   1484      1.1  itojun struct node_host *
   1485      1.1  itojun host_v6(const char *s, int mask)
   1486      1.1  itojun {
   1487      1.1  itojun 	struct addrinfo		 hints, *res;
   1488      1.1  itojun 	struct node_host	*h = NULL;
   1489      1.1  itojun 
   1490      1.1  itojun 	memset(&hints, 0, sizeof(hints));
   1491      1.1  itojun 	hints.ai_family = AF_INET6;
   1492      1.1  itojun 	hints.ai_socktype = SOCK_DGRAM; /*dummy*/
   1493      1.1  itojun 	hints.ai_flags = AI_NUMERICHOST;
   1494      1.1  itojun 	if (getaddrinfo(s, "0", &hints, &res) == 0) {
   1495      1.1  itojun 		h = calloc(1, sizeof(struct node_host));
   1496      1.1  itojun 		if (h == NULL)
   1497      1.1  itojun 			err(1, "address: calloc");
   1498      1.1  itojun 		h->ifname = NULL;
   1499      1.1  itojun 		h->af = AF_INET6;
   1500      1.1  itojun 		memcpy(&h->addr.v.a.addr,
   1501      1.1  itojun 		    &((struct sockaddr_in6 *)res->ai_addr)->sin6_addr,
   1502      1.1  itojun 		    sizeof(h->addr.v.a.addr));
   1503      1.1  itojun 		h->ifindex =
   1504      1.1  itojun 		    ((struct sockaddr_in6 *)res->ai_addr)->sin6_scope_id;
   1505      1.1  itojun 		set_ipmask(h, mask);
   1506      1.1  itojun 		freeaddrinfo(res);
   1507      1.1  itojun 		h->next = NULL;
   1508      1.1  itojun 		h->tail = h;
   1509      1.1  itojun 	}
   1510      1.1  itojun 
   1511      1.1  itojun 	return (h);
   1512      1.1  itojun }
   1513      1.1  itojun 
   1514      1.1  itojun struct node_host *
   1515      1.1  itojun host_dns(const char *s, int v4mask, int v6mask)
   1516      1.1  itojun {
   1517      1.1  itojun 	struct addrinfo		 hints, *res0, *res;
   1518      1.1  itojun 	struct node_host	*n, *h = NULL;
   1519      1.1  itojun 	int			 error, noalias = 0;
   1520      1.1  itojun 	int			 got4 = 0, got6 = 0;
   1521      1.1  itojun 	char			*p, *ps;
   1522      1.1  itojun 
   1523      1.1  itojun 	if ((ps = strdup(s)) == NULL)
   1524  1.1.1.2    yamt 		err(1, "host_dns: strdup");
   1525      1.1  itojun 	if ((p = strrchr(ps, ':')) != NULL && !strcmp(p, ":0")) {
   1526      1.1  itojun 		noalias = 1;
   1527      1.1  itojun 		*p = '\0';
   1528      1.1  itojun 	}
   1529      1.1  itojun 	memset(&hints, 0, sizeof(hints));
   1530      1.1  itojun 	hints.ai_family = PF_UNSPEC;
   1531      1.1  itojun 	hints.ai_socktype = SOCK_STREAM; /* DUMMY */
   1532      1.1  itojun 	error = getaddrinfo(ps, NULL, &hints, &res0);
   1533  1.1.1.2    yamt 	if (error) {
   1534  1.1.1.2    yamt 		free(ps);
   1535      1.1  itojun 		return (h);
   1536  1.1.1.2    yamt 	}
   1537      1.1  itojun 
   1538      1.1  itojun 	for (res = res0; res; res = res->ai_next) {
   1539      1.1  itojun 		if (res->ai_family != AF_INET &&
   1540      1.1  itojun 		    res->ai_family != AF_INET6)
   1541      1.1  itojun 			continue;
   1542      1.1  itojun 		if (noalias) {
   1543      1.1  itojun 			if (res->ai_family == AF_INET) {
   1544      1.1  itojun 				if (got4)
   1545      1.1  itojun 					continue;
   1546      1.1  itojun 				got4 = 1;
   1547      1.1  itojun 			} else {
   1548      1.1  itojun 				if (got6)
   1549      1.1  itojun 					continue;
   1550      1.1  itojun 				got6 = 1;
   1551      1.1  itojun 			}
   1552      1.1  itojun 		}
   1553      1.1  itojun 		n = calloc(1, sizeof(struct node_host));
   1554      1.1  itojun 		if (n == NULL)
   1555      1.1  itojun 			err(1, "host_dns: calloc");
   1556      1.1  itojun 		n->ifname = NULL;
   1557      1.1  itojun 		n->af = res->ai_family;
   1558      1.1  itojun 		if (res->ai_family == AF_INET) {
   1559      1.1  itojun 			memcpy(&n->addr.v.a.addr,
   1560      1.1  itojun 			    &((struct sockaddr_in *)
   1561      1.1  itojun 			    res->ai_addr)->sin_addr.s_addr,
   1562      1.1  itojun 			    sizeof(struct in_addr));
   1563      1.1  itojun 			set_ipmask(n, v4mask);
   1564      1.1  itojun 		} else {
   1565      1.1  itojun 			memcpy(&n->addr.v.a.addr,
   1566      1.1  itojun 			    &((struct sockaddr_in6 *)
   1567      1.1  itojun 			    res->ai_addr)->sin6_addr.s6_addr,
   1568      1.1  itojun 			    sizeof(struct in6_addr));
   1569      1.1  itojun 			n->ifindex =
   1570      1.1  itojun 			    ((struct sockaddr_in6 *)
   1571      1.1  itojun 			    res->ai_addr)->sin6_scope_id;
   1572      1.1  itojun 			set_ipmask(n, v6mask);
   1573      1.1  itojun 		}
   1574      1.1  itojun 		n->next = NULL;
   1575      1.1  itojun 		n->tail = n;
   1576      1.1  itojun 		if (h == NULL)
   1577      1.1  itojun 			h = n;
   1578      1.1  itojun 		else {
   1579      1.1  itojun 			h->tail->next = n;
   1580      1.1  itojun 			h->tail = n;
   1581      1.1  itojun 		}
   1582      1.1  itojun 	}
   1583      1.1  itojun 	freeaddrinfo(res0);
   1584      1.1  itojun 	free(ps);
   1585      1.1  itojun 
   1586      1.1  itojun 	return (h);
   1587      1.1  itojun }
   1588      1.1  itojun 
   1589      1.1  itojun /*
   1590      1.1  itojun  * convert a hostname to a list of addresses and put them in the given buffer.
   1591      1.1  itojun  * test:
   1592      1.1  itojun  *	if set to 1, only simple addresses are accepted (no netblock, no "!").
   1593      1.1  itojun  */
   1594      1.1  itojun int
   1595      1.1  itojun append_addr(struct pfr_buffer *b, char *s, int test)
   1596      1.1  itojun {
   1597      1.1  itojun 	char			 *r;
   1598      1.1  itojun 	struct node_host	*h, *n;
   1599      1.1  itojun 	int			 rv, not = 0;
   1600      1.1  itojun 
   1601      1.1  itojun 	for (r = s; *r == '!'; r++)
   1602      1.1  itojun 		not = !not;
   1603      1.1  itojun 	if ((n = host(r)) == NULL) {
   1604      1.1  itojun 		errno = 0;
   1605      1.1  itojun 		return (-1);
   1606      1.1  itojun 	}
   1607      1.1  itojun 	rv = append_addr_host(b, n, test, not);
   1608      1.1  itojun 	do {
   1609      1.1  itojun 		h = n;
   1610      1.1  itojun 		n = n->next;
   1611      1.1  itojun 		free(h);
   1612      1.1  itojun 	} while (n != NULL);
   1613      1.1  itojun 	return (rv);
   1614      1.1  itojun }
   1615      1.1  itojun 
   1616      1.1  itojun /*
   1617      1.1  itojun  * same as previous function, but with a pre-parsed input and the ability
   1618      1.1  itojun  * to "negate" the result. Does not free the node_host list.
   1619      1.1  itojun  * not:
   1620      1.1  itojun  *      setting it to 1 is equivalent to adding "!" in front of parameter s.
   1621      1.1  itojun  */
   1622      1.1  itojun int
   1623      1.1  itojun append_addr_host(struct pfr_buffer *b, struct node_host *n, int test, int not)
   1624      1.1  itojun {
   1625      1.1  itojun 	int			 bits;
   1626      1.1  itojun 	struct pfr_addr		 addr;
   1627      1.1  itojun 
   1628      1.1  itojun 	do {
   1629      1.1  itojun 		bzero(&addr, sizeof(addr));
   1630      1.1  itojun 		addr.pfra_not = n->not ^ not;
   1631      1.1  itojun 		addr.pfra_af = n->af;
   1632      1.1  itojun 		addr.pfra_net = unmask(&n->addr.v.a.mask, n->af);
   1633      1.1  itojun 		switch (n->af) {
   1634      1.1  itojun 		case AF_INET:
   1635      1.1  itojun 			addr.pfra_ip4addr.s_addr = n->addr.v.a.addr.addr32[0];
   1636      1.1  itojun 			bits = 32;
   1637      1.1  itojun 			break;
   1638      1.1  itojun 		case AF_INET6:
   1639      1.1  itojun 			memcpy(&addr.pfra_ip6addr, &n->addr.v.a.addr.v6,
   1640      1.1  itojun 			    sizeof(struct in6_addr));
   1641      1.1  itojun 			bits = 128;
   1642      1.1  itojun 			break;
   1643      1.1  itojun 		default:
   1644      1.1  itojun 			errno = EINVAL;
   1645      1.1  itojun 			return (-1);
   1646      1.1  itojun 		}
   1647      1.1  itojun 		if ((test && (not || addr.pfra_net != bits)) ||
   1648      1.1  itojun 		    addr.pfra_net > bits) {
   1649      1.1  itojun 			errno = EINVAL;
   1650      1.1  itojun 			return (-1);
   1651      1.1  itojun 		}
   1652      1.1  itojun 		if (pfr_buf_add(b, &addr))
   1653      1.1  itojun 			return (-1);
   1654      1.1  itojun 	} while ((n = n->next) != NULL);
   1655      1.1  itojun 
   1656      1.1  itojun 	return (0);
   1657      1.1  itojun }
   1658      1.1  itojun 
   1659      1.1  itojun int
   1660  1.1.1.2    yamt pfctl_add_trans(struct pfr_buffer *buf, int rs_num, const char *anchor)
   1661      1.1  itojun {
   1662      1.1  itojun 	struct pfioc_trans_e trans;
   1663      1.1  itojun 
   1664      1.1  itojun 	bzero(&trans, sizeof(trans));
   1665      1.1  itojun 	trans.rs_num = rs_num;
   1666      1.1  itojun 	if (strlcpy(trans.anchor, anchor,
   1667  1.1.1.2    yamt 	    sizeof(trans.anchor)) >= sizeof(trans.anchor))
   1668      1.1  itojun 		errx(1, "pfctl_add_trans: strlcpy");
   1669      1.1  itojun 
   1670      1.1  itojun 	return pfr_buf_add(buf, &trans);
   1671      1.1  itojun }
   1672      1.1  itojun 
   1673      1.1  itojun u_int32_t
   1674  1.1.1.2    yamt pfctl_get_ticket(struct pfr_buffer *buf, int rs_num, const char *anchor)
   1675      1.1  itojun {
   1676      1.1  itojun 	struct pfioc_trans_e *p;
   1677      1.1  itojun 
   1678      1.1  itojun 	PFRB_FOREACH(p, buf)
   1679  1.1.1.2    yamt 		if (rs_num == p->rs_num && !strcmp(anchor, p->anchor))
   1680      1.1  itojun 			return (p->ticket);
   1681  1.1.1.2    yamt 	errx(1, "pfctl_get_ticket: assertion failed");
   1682      1.1  itojun }
   1683      1.1  itojun 
   1684      1.1  itojun int
   1685      1.1  itojun pfctl_trans(int dev, struct pfr_buffer *buf, u_long cmd, int from)
   1686      1.1  itojun {
   1687      1.1  itojun 	struct pfioc_trans trans;
   1688      1.1  itojun 
   1689      1.1  itojun 	bzero(&trans, sizeof(trans));
   1690      1.1  itojun 	trans.size = buf->pfrb_size - from;
   1691      1.1  itojun 	trans.esize = sizeof(struct pfioc_trans_e);
   1692      1.1  itojun 	trans.array = ((struct pfioc_trans_e *)buf->pfrb_caddr) + from;
   1693      1.1  itojun 	return ioctl(dev, cmd, &trans);
   1694      1.1  itojun }
   1695