Home | History | Annotate | Line # | Download | only in npfctl
npf_var.h revision 1.7
      1  1.7     rmind /*	$NetBSD: npf_var.h,v 1.7 2013/09/19 01:04:45 rmind Exp $	*/
      2  1.1     rmind 
      3  1.1     rmind /*-
      4  1.1     rmind  * Copyright (c) 2011-2012 The NetBSD Foundation, Inc.
      5  1.1     rmind  * All rights reserved.
      6  1.1     rmind  *
      7  1.1     rmind  * This code is derived from software contributed to The NetBSD Foundation
      8  1.1     rmind  * by Christos Zoulas.
      9  1.1     rmind  *
     10  1.1     rmind  * Redistribution and use in source and binary forms, with or without
     11  1.1     rmind  * modification, are permitted provided that the following conditions
     12  1.1     rmind  * are met:
     13  1.1     rmind  * 1. Redistributions of source code must retain the above copyright
     14  1.1     rmind  *    notice, this list of conditions and the following disclaimer.
     15  1.1     rmind  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.1     rmind  *    notice, this list of conditions and the following disclaimer in the
     17  1.1     rmind  *    documentation and/or other materials provided with the distribution.
     18  1.1     rmind  *
     19  1.1     rmind  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20  1.1     rmind  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21  1.1     rmind  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22  1.1     rmind  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23  1.1     rmind  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24  1.1     rmind  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25  1.1     rmind  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26  1.1     rmind  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27  1.1     rmind  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28  1.1     rmind  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29  1.1     rmind  * POSSIBILITY OF SUCH DAMAGE.
     30  1.1     rmind  */
     31  1.1     rmind 
     32  1.1     rmind #ifndef _NPF_VAR_H_
     33  1.1     rmind #define _NPF_VAR_H_
     34  1.1     rmind 
     35  1.1     rmind #define	NPFVAR_STRING		0
     36  1.1     rmind #define	NPFVAR_IDENTIFIER	1
     37  1.1     rmind #define	NPFVAR_VAR_ID		2
     38  1.4     rmind #define	NPFVAR_NUM		3
     39  1.4     rmind #define	NPFVAR_PORT_RANGE	4
     40  1.1     rmind 
     41  1.1     rmind /* Note: primitive types are equivalent. */
     42  1.4     rmind #define	NPFVAR_PRIM		NPFVAR_PORT_RANGE
     43  1.4     rmind #define	NPFVAR_TYPE(x)		(((x) > NPFVAR_PRIM) ? (x) : 0)
     44  1.1     rmind 
     45  1.2  christos #define	NPFVAR_TABLE		5
     46  1.2  christos #define	NPFVAR_FAM		6
     47  1.4     rmind #define	NPFVAR_PROC		7
     48  1.4     rmind #define	NPFVAR_PROC_PARAM	8
     49  1.4     rmind #define	NPFVAR_TCPFLAG		9
     50  1.4     rmind #define	NPFVAR_ICMP		10
     51  1.7     rmind #define	NPFVAR_INTERFACE	11
     52  1.1     rmind 
     53  1.1     rmind #ifdef _NPFVAR_PRIVATE
     54  1.1     rmind static const char *npfvar_types[ ] = {
     55  1.4     rmind 	[NPFVAR_STRING]		= "string",
     56  1.4     rmind 	[NPFVAR_IDENTIFIER]	= "identifier",
     57  1.5     rmind 	[NPFVAR_VAR_ID]		= "variable-id",
     58  1.5     rmind 	[NPFVAR_NUM]		= "number",
     59  1.4     rmind 	[NPFVAR_PORT_RANGE]	= "port-range",
     60  1.4     rmind 	[NPFVAR_TABLE]		= "table",
     61  1.5     rmind 	[NPFVAR_FAM]		= "family-address-mask",
     62  1.5     rmind 	[NPFVAR_PROC]		= "procedure",
     63  1.5     rmind 	[NPFVAR_PROC_PARAM]	= "procedure-parameter",
     64  1.5     rmind 	[NPFVAR_TCPFLAG]	= "tcp-flag",
     65  1.4     rmind 	[NPFVAR_ICMP]		= "icmp",
     66  1.6     rmind 	[NPFVAR_INTERFACE]	= "interface"
     67  1.1     rmind };
     68  1.1     rmind #endif
     69  1.1     rmind 
     70  1.1     rmind struct npfvar;
     71  1.1     rmind typedef struct npfvar npfvar_t;
     72  1.1     rmind 
     73  1.1     rmind npfvar_t *	npfvar_create(const char *);
     74  1.1     rmind npfvar_t *	npfvar_lookup(const char *);
     75  1.1     rmind const char *	npfvar_type(size_t);
     76  1.1     rmind void		npfvar_add(npfvar_t *);
     77  1.1     rmind npfvar_t *	npfvar_add_element(npfvar_t *, int, const void *, size_t);
     78  1.1     rmind npfvar_t *	npfvar_add_elements(npfvar_t *, npfvar_t *);
     79  1.1     rmind void		npfvar_destroy(npfvar_t *);
     80  1.1     rmind 
     81  1.1     rmind char *		npfvar_expand_string(const npfvar_t *);
     82  1.1     rmind size_t		npfvar_get_count(const npfvar_t *);
     83  1.2  christos int		npfvar_get_type(const npfvar_t *, size_t);
     84  1.1     rmind void *		npfvar_get_data(const npfvar_t *, int, size_t);
     85  1.1     rmind 
     86  1.1     rmind #endif
     87