Home | History | Annotate | Line # | Download | only in npfctl
npf_data.c revision 1.10.2.1
      1  1.10.2.1     riz /*	$NetBSD: npf_data.c,v 1.10.2.1 2012/06/26 00:07:19 riz Exp $	*/
      2       1.1   rmind 
      3       1.1   rmind /*-
      4      1.10   rmind  * Copyright (c) 2009-2012 The NetBSD Foundation, Inc.
      5       1.1   rmind  * All rights reserved.
      6       1.1   rmind  *
      7       1.1   rmind  * Redistribution and use in source and binary forms, with or without
      8       1.1   rmind  * modification, are permitted provided that the following conditions
      9       1.1   rmind  * are met:
     10       1.1   rmind  * 1. Redistributions of source code must retain the above copyright
     11       1.1   rmind  *    notice, this list of conditions and the following disclaimer.
     12       1.1   rmind  * 2. Redistributions in binary form must reproduce the above copyright
     13       1.1   rmind  *    notice, this list of conditions and the following disclaimer in the
     14       1.1   rmind  *    documentation and/or other materials provided with the distribution.
     15       1.1   rmind  *
     16       1.1   rmind  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     17       1.1   rmind  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     18       1.1   rmind  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     19       1.1   rmind  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     20       1.1   rmind  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     21       1.1   rmind  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     22       1.1   rmind  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     23       1.1   rmind  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     24       1.1   rmind  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     25       1.1   rmind  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     26       1.1   rmind  * POSSIBILITY OF SUCH DAMAGE.
     27       1.1   rmind  */
     28       1.1   rmind 
     29       1.1   rmind /*
     30      1.10   rmind  * npfctl(8) data manipulation and helper routines.
     31       1.1   rmind  */
     32       1.1   rmind 
     33       1.4   rmind #include <sys/cdefs.h>
     34  1.10.2.1     riz __RCSID("$NetBSD: npf_data.c,v 1.10.2.1 2012/06/26 00:07:19 riz Exp $");
     35       1.4   rmind 
     36       1.1   rmind #include <sys/types.h>
     37      1.10   rmind #include <sys/null.h>
     38      1.10   rmind 
     39      1.10   rmind #include <netinet/in.h>
     40      1.10   rmind #include <netinet/in_systm.h>
     41      1.10   rmind #include <netinet/ip.h>
     42      1.10   rmind #define ICMP_STRINGS
     43      1.10   rmind #include <netinet/ip_icmp.h>
     44      1.10   rmind #include <netinet/tcp.h>
     45       1.1   rmind #include <net/if.h>
     46       1.1   rmind 
     47       1.1   rmind #include <stdlib.h>
     48       1.1   rmind #include <string.h>
     49       1.1   rmind #include <err.h>
     50      1.10   rmind #include <errno.h>
     51       1.1   rmind #include <ifaddrs.h>
     52       1.1   rmind #include <netdb.h>
     53       1.1   rmind 
     54       1.1   rmind #include "npfctl.h"
     55       1.1   rmind 
     56       1.1   rmind static struct ifaddrs *		ifs_list = NULL;
     57       1.1   rmind 
     58      1.10   rmind unsigned long
     59      1.10   rmind npfctl_find_ifindex(const char *ifname)
     60       1.1   rmind {
     61      1.10   rmind 	return if_nametoindex(ifname);
     62       1.1   rmind }
     63       1.1   rmind 
     64      1.10   rmind static bool
     65      1.10   rmind npfctl_copy_address(sa_family_t fam, npf_addr_t *addr, const void *ptr)
     66       1.1   rmind {
     67      1.10   rmind 	switch (fam) {
     68      1.10   rmind 	case AF_INET: {
     69      1.10   rmind 		const struct sockaddr_in *sin = ptr;
     70      1.10   rmind 		memcpy(addr, &sin->sin_addr, sizeof(sin->sin_addr));
     71      1.10   rmind 		return true;
     72      1.10   rmind 	}
     73      1.10   rmind 	case AF_INET6: {
     74      1.10   rmind 		const struct sockaddr_in6 *sin6 = ptr;
     75      1.10   rmind 		memcpy(addr, &sin6->sin6_addr, sizeof(sin6->sin6_addr));
     76      1.10   rmind 		return true;
     77      1.10   rmind 	}
     78      1.10   rmind 	default:
     79      1.10   rmind 		yyerror("unknown address family %u", fam);
     80      1.10   rmind 		return false;
     81      1.10   rmind 	}
     82       1.5   rmind }
     83       1.5   rmind 
     84      1.10   rmind static bool
     85      1.10   rmind npfctl_parse_fam_addr(const char *name, sa_family_t *fam, npf_addr_t *addr)
     86       1.1   rmind {
     87      1.10   rmind 	static const struct addrinfo hint = {
     88      1.10   rmind 		.ai_family = AF_UNSPEC,
     89      1.10   rmind 		.ai_flags = AI_NUMERICHOST
     90      1.10   rmind 	};
     91      1.10   rmind 	struct addrinfo *ai;
     92      1.10   rmind 	int ret;
     93       1.1   rmind 
     94      1.10   rmind 	ret = getaddrinfo(name, NULL, &hint, &ai);
     95      1.10   rmind 	if (ret) {
     96      1.10   rmind 		yyerror("cannot parse '%s' (%s)", name, gai_strerror(ret));
     97      1.10   rmind 		return false;
     98      1.10   rmind 	}
     99      1.10   rmind 	if (fam) {
    100      1.10   rmind 		*fam = ai->ai_family;
    101       1.1   rmind 	}
    102      1.10   rmind 	if (!npfctl_copy_address(*fam, addr, ai->ai_addr)) {
    103      1.10   rmind 		return false;
    104       1.1   rmind 	}
    105      1.10   rmind 	freeaddrinfo(ai);
    106      1.10   rmind 	return true;
    107       1.1   rmind }
    108       1.1   rmind 
    109      1.10   rmind static bool
    110      1.10   rmind npfctl_parse_mask(const char *s, sa_family_t fam, npf_netmask_t *mask)
    111       1.3   rmind {
    112      1.10   rmind 	char *ep = NULL;
    113      1.10   rmind 	npf_addr_t addr;
    114      1.10   rmind 	uint8_t *ap;
    115      1.10   rmind 
    116      1.10   rmind 	if (s) {
    117      1.10   rmind 		errno = 0;
    118      1.10   rmind 		*mask = (npf_netmask_t)strtol(s, &ep, 0);
    119      1.10   rmind 		if (*ep == '\0' && s != ep && errno != ERANGE)
    120      1.10   rmind 			return true;
    121      1.10   rmind 		if (!npfctl_parse_fam_addr(s, &fam, &addr))
    122      1.10   rmind 			return false;
    123      1.10   rmind 	}
    124       1.3   rmind 
    125      1.10   rmind 	switch (fam) {
    126      1.10   rmind 	case AF_INET:
    127      1.10   rmind 		*mask = 32;
    128      1.10   rmind 		break;
    129      1.10   rmind 	case AF_INET6:
    130      1.10   rmind 		*mask = 128;
    131      1.10   rmind 		break;
    132      1.10   rmind 	default:
    133      1.10   rmind 		yyerror("unknown address family %u", fam);
    134      1.10   rmind 		return false;
    135      1.10   rmind 	}
    136      1.10   rmind 
    137      1.10   rmind 	if (ep == NULL) {
    138      1.10   rmind 		return true;
    139      1.10   rmind 	}
    140      1.10   rmind 	ap = addr.s6_addr + (*mask / 8) - 1;
    141      1.10   rmind 	while (ap >= addr.s6_addr) {
    142      1.10   rmind 		for (int j = 8; j > 0; j--) {
    143      1.10   rmind 			if (*ap & 1)
    144      1.10   rmind 				return true;
    145      1.10   rmind 			*ap >>= 1;
    146      1.10   rmind 			(*mask)--;
    147      1.10   rmind 			if (*mask == 0)
    148      1.10   rmind 				return true;
    149       1.3   rmind 		}
    150      1.10   rmind 		ap--;
    151       1.3   rmind 	}
    152       1.3   rmind 	return true;
    153       1.1   rmind }
    154       1.1   rmind 
    155      1.10   rmind /*
    156      1.10   rmind  * npfctl_parse_fam_addr_mask: return address family, address and mask.
    157      1.10   rmind  *
    158      1.10   rmind  * => Mask is optional and can be NULL.
    159      1.10   rmind  * => Returns true on success or false if unable to parse.
    160      1.10   rmind  */
    161      1.10   rmind npfvar_t *
    162      1.10   rmind npfctl_parse_fam_addr_mask(const char *addr, const char *mask,
    163      1.10   rmind     unsigned long *nummask)
    164       1.8  zoltan {
    165      1.10   rmind 	npfvar_t *vp = npfvar_create(".addr");
    166      1.10   rmind 	fam_addr_mask_t fam;
    167      1.10   rmind 
    168      1.10   rmind 	memset(&fam, 0, sizeof(fam));
    169       1.8  zoltan 
    170      1.10   rmind 	if (!npfctl_parse_fam_addr(addr, &fam.fam_family, &fam.fam_addr))
    171      1.10   rmind 		goto out;
    172      1.10   rmind 
    173      1.10   rmind 	/*
    174      1.10   rmind 	 * Note: both mask and nummask may be NULL.  In such case,
    175      1.10   rmind 	 * npfctl_parse_mask() will handle and will set full mask.
    176      1.10   rmind 	 */
    177      1.10   rmind 	if (nummask) {
    178      1.10   rmind 		fam.fam_mask = *nummask;
    179      1.10   rmind 	} else if (!npfctl_parse_mask(mask, fam.fam_family, &fam.fam_mask)) {
    180      1.10   rmind 		goto out;
    181       1.8  zoltan 	}
    182       1.8  zoltan 
    183      1.10   rmind 	if (!npfvar_add_element(vp, NPFVAR_FAM, &fam, sizeof(fam)))
    184      1.10   rmind 		goto out;
    185       1.1   rmind 
    186      1.10   rmind 	return vp;
    187      1.10   rmind out:
    188      1.10   rmind 	npfvar_destroy(vp);
    189      1.10   rmind 	return NULL;
    190       1.1   rmind }
    191       1.1   rmind 
    192      1.10   rmind npfvar_t *
    193      1.10   rmind npfctl_parse_table_id(const char *id)
    194       1.3   rmind {
    195      1.10   rmind 	npfvar_t *vp;
    196       1.3   rmind 
    197      1.10   rmind 	if (!npfctl_table_exists_p(id)) {
    198      1.10   rmind 		yyerror("table '%s' is not defined", id);
    199      1.10   rmind 		return NULL;
    200       1.3   rmind 	}
    201      1.10   rmind 	vp = npfvar_create(".table");
    202      1.10   rmind 
    203      1.10   rmind 	if (!npfvar_add_element(vp, NPFVAR_TABLE, id, strlen(id) + 1))
    204      1.10   rmind 		goto out;
    205      1.10   rmind 
    206      1.10   rmind 	return vp;
    207      1.10   rmind out:
    208      1.10   rmind 	npfvar_destroy(vp);
    209      1.10   rmind 	return NULL;
    210       1.3   rmind }
    211       1.3   rmind 
    212      1.10   rmind /*
    213      1.10   rmind  * npfctl_parse_port_range: create a port-range variable.  Note that the
    214  1.10.2.1     riz  * passed port numbers should be in host byte order.
    215      1.10   rmind  */
    216      1.10   rmind npfvar_t *
    217      1.10   rmind npfctl_parse_port_range(in_port_t s, in_port_t e)
    218       1.1   rmind {
    219      1.10   rmind 	npfvar_t *vp = npfvar_create(".port_range");
    220      1.10   rmind 	port_range_t pr;
    221       1.1   rmind 
    222  1.10.2.1     riz 	pr.pr_start = htons(s);
    223  1.10.2.1     riz 	pr.pr_end = htons(e);
    224       1.1   rmind 
    225      1.10   rmind 	if (!npfvar_add_element(vp, NPFVAR_PORT_RANGE, &pr, sizeof(pr)))
    226      1.10   rmind 		goto out;
    227       1.1   rmind 
    228      1.10   rmind 	return vp;
    229      1.10   rmind out:
    230      1.10   rmind 	npfvar_destroy(vp);
    231      1.10   rmind 	return NULL;
    232       1.1   rmind }
    233       1.1   rmind 
    234      1.10   rmind npfvar_t *
    235  1.10.2.1     riz npfctl_parse_port_range_variable(const char *v)
    236  1.10.2.1     riz {
    237  1.10.2.1     riz 	npfvar_t *vp = npfvar_lookup(v);
    238  1.10.2.1     riz 	size_t count = npfvar_get_count(vp);
    239  1.10.2.1     riz 	npfvar_t *pvp = npfvar_create(".port_range");
    240  1.10.2.1     riz 	port_range_t *pr;
    241  1.10.2.1     riz 	in_port_t p;
    242  1.10.2.1     riz 
    243  1.10.2.1     riz 	for (size_t i = 0; i < count; i++) {
    244  1.10.2.1     riz 		int type = npfvar_get_type(vp, i);
    245  1.10.2.1     riz 		void *data = npfvar_get_data(vp, type, i);
    246  1.10.2.1     riz 
    247  1.10.2.1     riz 		switch (type) {
    248  1.10.2.1     riz 		case NPFVAR_IDENTIFIER:
    249  1.10.2.1     riz 		case NPFVAR_STRING:
    250  1.10.2.1     riz 			p = npfctl_portno(data);
    251  1.10.2.1     riz 			npfvar_add_elements(pvp, npfctl_parse_port_range(p, p));
    252  1.10.2.1     riz 			break;
    253  1.10.2.1     riz 		case NPFVAR_PORT_RANGE:
    254  1.10.2.1     riz 			pr = data;
    255  1.10.2.1     riz 			npfvar_add_element(pvp, NPFVAR_PORT_RANGE, pr,
    256  1.10.2.1     riz 			    sizeof(*pr));
    257  1.10.2.1     riz 			break;
    258  1.10.2.1     riz 		case NPFVAR_NUM:
    259  1.10.2.1     riz 			p = *(unsigned long *)data;
    260  1.10.2.1     riz 			npfvar_add_elements(pvp, npfctl_parse_port_range(p, p));
    261  1.10.2.1     riz 			break;
    262  1.10.2.1     riz 		default:
    263  1.10.2.1     riz 			yyerror("wrong variable '%s' type '%s' for port range",
    264  1.10.2.1     riz 			    v, npfvar_type(type));
    265  1.10.2.1     riz 			npfvar_destroy(pvp);
    266  1.10.2.1     riz 			return NULL;
    267  1.10.2.1     riz 		}
    268  1.10.2.1     riz 	}
    269  1.10.2.1     riz 	return pvp;
    270  1.10.2.1     riz }
    271  1.10.2.1     riz 
    272  1.10.2.1     riz npfvar_t *
    273      1.10   rmind npfctl_parse_iface(const char *ifname)
    274      1.10   rmind {
    275      1.10   rmind 	npfvar_t *vp = npfvar_create(".iface");
    276      1.10   rmind 	struct ifaddrs *ifa;
    277      1.10   rmind 	fam_addr_mask_t fam;
    278      1.10   rmind 	bool gotif = false;
    279       1.1   rmind 
    280      1.10   rmind 	if (ifs_list == NULL && getifaddrs(&ifs_list) == -1) {
    281      1.10   rmind 		err(EXIT_FAILURE, "getifaddrs");
    282      1.10   rmind 	}
    283      1.10   rmind 	memset(&fam, 0, sizeof(fam));
    284       1.1   rmind 
    285      1.10   rmind 	npfvar_t *ip = npfvar_create(".ifname");
    286      1.10   rmind 	if (!npfvar_add_element(ip, NPFVAR_STRING, ifname, strlen(ifname) + 1))
    287      1.10   rmind 		goto out;
    288       1.1   rmind 
    289      1.10   rmind 	for (ifa = ifs_list; ifa != NULL; ifa = ifa->ifa_next) {
    290      1.10   rmind 		struct sockaddr *sa;
    291      1.10   rmind 		sa_family_t family;
    292       1.1   rmind 
    293      1.10   rmind 		if (strcmp(ifa->ifa_name, ifname) != 0)
    294      1.10   rmind 			continue;
    295       1.1   rmind 
    296      1.10   rmind 		gotif = true;
    297      1.10   rmind 		if ((ifa->ifa_flags & IFF_UP) == 0)
    298      1.10   rmind 			warnx("interface '%s' is down", ifname);
    299      1.10   rmind 
    300      1.10   rmind 		sa = ifa->ifa_addr;
    301      1.10   rmind 		family = sa->sa_family;
    302      1.10   rmind 		if (family != AF_INET && family != AF_INET6)
    303      1.10   rmind 			continue;
    304       1.1   rmind 
    305      1.10   rmind 		fam.fam_family = family;
    306      1.10   rmind 		fam.fam_interface = ip;
    307       1.1   rmind 
    308      1.10   rmind 		if (!npfctl_copy_address(family, &fam.fam_addr, sa))
    309      1.10   rmind 			goto out;
    310       1.1   rmind 
    311      1.10   rmind 		if (!npfctl_parse_mask(NULL, fam.fam_family, &fam.fam_mask))
    312      1.10   rmind 			goto out;
    313       1.1   rmind 
    314      1.10   rmind 		if (!npfvar_add_element(vp, NPFVAR_FAM, &fam, sizeof(fam)))
    315      1.10   rmind 			goto out;
    316      1.10   rmind 	}
    317      1.10   rmind 	if (!gotif) {
    318      1.10   rmind 		yyerror("interface '%s' not found", ifname);
    319      1.10   rmind 		goto out;
    320      1.10   rmind 	}
    321      1.10   rmind 	if (npfvar_get_count(vp) == 0) {
    322      1.10   rmind 		yyerror("no addresses matched for interface '%s'", ifname);
    323      1.10   rmind 		goto out;
    324       1.1   rmind 	}
    325      1.10   rmind 	return vp;
    326      1.10   rmind out:
    327      1.10   rmind 	npfvar_destroy(vp);
    328      1.10   rmind 	npfvar_destroy(ip);
    329      1.10   rmind 	return NULL;
    330       1.1   rmind }
    331       1.1   rmind 
    332      1.10   rmind fam_addr_mask_t *
    333      1.10   rmind npfctl_parse_cidr(char *cidr)
    334       1.1   rmind {
    335      1.10   rmind 	npfvar_t *vp;
    336      1.10   rmind 	char *p;
    337       1.1   rmind 
    338      1.10   rmind 	p = strchr(cidr, '/');
    339      1.10   rmind 	if (p) {
    340      1.10   rmind 		*p++ = '\0';
    341       1.1   rmind 	}
    342      1.10   rmind 	vp = npfctl_parse_fam_addr_mask(cidr, p, NULL);
    343      1.10   rmind 	if (vp == NULL) {
    344      1.10   rmind 		return NULL;
    345       1.1   rmind 	}
    346      1.10   rmind 	return npfvar_get_data(vp, NPFVAR_FAM, 0);
    347       1.1   rmind }
    348       1.1   rmind 
    349      1.10   rmind /*
    350      1.10   rmind  * npfctl_portno: convert port identifier (string) to a number.
    351      1.10   rmind  *
    352  1.10.2.1     riz  * => Returns port number in host byte order.
    353      1.10   rmind  */
    354      1.10   rmind in_port_t
    355      1.10   rmind npfctl_portno(const char *port)
    356       1.1   rmind {
    357      1.10   rmind 	struct addrinfo *ai, *rai;
    358      1.10   rmind 	in_port_t p = 0;
    359      1.10   rmind 	int e;
    360      1.10   rmind 
    361      1.10   rmind 	e = getaddrinfo(NULL, port, NULL, &rai);
    362      1.10   rmind 	if (e != 0) {
    363      1.10   rmind 		yyerror("invalid port name: '%s' (%s)", port, gai_strerror(e));
    364      1.10   rmind 		return 0;
    365      1.10   rmind 	}
    366      1.10   rmind 
    367      1.10   rmind 	for (ai = rai; ai; ai = ai->ai_next) {
    368      1.10   rmind 		switch (ai->ai_family) {
    369      1.10   rmind 		case AF_INET: {
    370      1.10   rmind 			struct sockaddr_in *sin = (void *)ai->ai_addr;
    371      1.10   rmind 			p = sin->sin_port;
    372      1.10   rmind 			goto out;
    373      1.10   rmind 		}
    374      1.10   rmind 		case AF_INET6: {
    375      1.10   rmind 			struct sockaddr_in6 *sin6 = (void *)ai->ai_addr;
    376      1.10   rmind 			p = sin6->sin6_port;
    377      1.10   rmind 			goto out;
    378       1.8  zoltan 		}
    379      1.10   rmind 		default:
    380      1.10   rmind 			break;
    381       1.8  zoltan 		}
    382       1.1   rmind 	}
    383      1.10   rmind out:
    384      1.10   rmind 	freeaddrinfo(rai);
    385  1.10.2.1     riz 	return ntohs(p);
    386      1.10   rmind }
    387       1.1   rmind 
    388      1.10   rmind npfvar_t *
    389      1.10   rmind npfctl_parse_tcpflag(const char *s)
    390      1.10   rmind {
    391      1.10   rmind 	uint8_t tfl = 0;
    392       1.3   rmind 
    393      1.10   rmind 	while (*s) {
    394      1.10   rmind 		switch (*s) {
    395      1.10   rmind 		case 'F': tfl |= TH_FIN; break;
    396      1.10   rmind 		case 'S': tfl |= TH_SYN; break;
    397      1.10   rmind 		case 'R': tfl |= TH_RST; break;
    398      1.10   rmind 		case 'P': tfl |= TH_PUSH; break;
    399      1.10   rmind 		case 'A': tfl |= TH_ACK; break;
    400      1.10   rmind 		case 'U': tfl |= TH_URG; break;
    401      1.10   rmind 		case 'E': tfl |= TH_ECE; break;
    402      1.10   rmind 		case 'W': tfl |= TH_CWR; break;
    403      1.10   rmind 		default:
    404      1.10   rmind 			yyerror("invalid flag '%c'", *s);
    405      1.10   rmind 			return NULL;
    406       1.3   rmind 		}
    407      1.10   rmind 		s++;
    408       1.1   rmind 	}
    409       1.1   rmind 
    410      1.10   rmind 	npfvar_t *vp = npfvar_create(".tcp_flag");
    411      1.10   rmind 	if (!npfvar_add_element(vp, NPFVAR_TCPFLAG, &tfl, sizeof(tfl))) {
    412      1.10   rmind 		npfvar_destroy(vp);
    413      1.10   rmind 		return NULL;
    414      1.10   rmind 	}
    415      1.10   rmind 
    416      1.10   rmind 	return vp;
    417      1.10   rmind }
    418      1.10   rmind 
    419      1.10   rmind uint8_t
    420      1.10   rmind npfctl_icmptype(const char *type)
    421      1.10   rmind {
    422      1.10   rmind 	for (uint8_t ul = 0; icmp_type[ul]; ul++)
    423      1.10   rmind 		if (strcmp(icmp_type[ul], type) == 0)
    424      1.10   rmind 			return ul;
    425      1.10   rmind 	return ~0;
    426      1.10   rmind }
    427      1.10   rmind 
    428      1.10   rmind uint8_t
    429      1.10   rmind npfctl_icmpcode(uint8_t type, const char *code)
    430      1.10   rmind {
    431      1.10   rmind 	const char **arr;
    432      1.10   rmind 
    433      1.10   rmind 	switch (type) {
    434      1.10   rmind 	case ICMP_ECHOREPLY:
    435      1.10   rmind 	case ICMP_SOURCEQUENCH:
    436      1.10   rmind 	case ICMP_ALTHOSTADDR:
    437      1.10   rmind 	case ICMP_ECHO:
    438      1.10   rmind 	case ICMP_ROUTERSOLICIT:
    439      1.10   rmind 	case ICMP_TSTAMP:
    440      1.10   rmind 	case ICMP_TSTAMPREPLY:
    441      1.10   rmind 	case ICMP_IREQ:
    442      1.10   rmind 	case ICMP_IREQREPLY:
    443      1.10   rmind 	case ICMP_MASKREQ:
    444      1.10   rmind 	case ICMP_MASKREPLY:
    445      1.10   rmind 		arr = icmp_code_none;
    446      1.10   rmind 		break;
    447      1.10   rmind 	case ICMP_ROUTERADVERT:
    448      1.10   rmind 		arr = icmp_code_routeradvert;
    449      1.10   rmind 		break;
    450      1.10   rmind 	case ICMP_UNREACH:
    451      1.10   rmind 		arr = icmp_code_unreach;
    452      1.10   rmind 		break;
    453      1.10   rmind 	case ICMP_REDIRECT:
    454      1.10   rmind 		arr = icmp_code_redirect;
    455      1.10   rmind 		break;
    456      1.10   rmind 	case ICMP_TIMXCEED:
    457      1.10   rmind 		arr = icmp_code_timxceed;
    458      1.10   rmind 		break;
    459      1.10   rmind 	case ICMP_PARAMPROB:
    460      1.10   rmind 		arr = icmp_code_paramprob;
    461      1.10   rmind 		break;
    462      1.10   rmind 	case ICMP_PHOTURIS:
    463      1.10   rmind 		arr = icmp_code_photuris;
    464      1.10   rmind 		break;
    465      1.10   rmind 	default:
    466      1.10   rmind 		return ~0;
    467      1.10   rmind 	}
    468      1.10   rmind 
    469      1.10   rmind 	for (uint8_t ul = 0; arr[ul]; ul++) {
    470      1.10   rmind 		if (strcmp(arr[ul], code) == 0)
    471      1.10   rmind 			return ul;
    472      1.10   rmind 	}
    473      1.10   rmind 	return ~0;
    474      1.10   rmind }
    475      1.10   rmind 
    476      1.10   rmind npfvar_t *
    477  1.10.2.1     riz npfctl_parse_icmp(int type, int code)
    478      1.10   rmind {
    479      1.10   rmind 	npfvar_t *vp = npfvar_create(".icmp");
    480      1.10   rmind 
    481      1.10   rmind 	if (!npfvar_add_element(vp, NPFVAR_ICMP, &type, sizeof(type)))
    482      1.10   rmind 		goto out;
    483      1.10   rmind 
    484      1.10   rmind 	if (!npfvar_add_element(vp, NPFVAR_ICMP, &code, sizeof(code)))
    485      1.10   rmind 		goto out;
    486      1.10   rmind 
    487      1.10   rmind 	return vp;
    488      1.10   rmind out:
    489      1.10   rmind 	npfvar_destroy(vp);
    490      1.10   rmind 	return NULL;
    491       1.1   rmind }
    492