npfctl.h revision 1.11.2.13 1 1.11.2.13 riz /* $NetBSD: npfctl.h,v 1.11.2.13 2013/02/18 18:26:14 riz Exp $ */
2 1.1 rmind
3 1.1 rmind /*-
4 1.11.2.12 riz * Copyright (c) 2009-2013 The NetBSD Foundation, Inc.
5 1.1 rmind * All rights reserved.
6 1.1 rmind *
7 1.11.2.12 riz * This material is based upon work partially supported by The
8 1.11.2.12 riz * NetBSD Foundation under a contract with Mindaugas Rasiukevicius.
9 1.11.2.12 riz *
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 _NPFCTL_H_
33 1.1 rmind #define _NPFCTL_H_
34 1.1 rmind
35 1.1 rmind #include <stdio.h>
36 1.1 rmind #include <stdbool.h>
37 1.8 rmind #include <inttypes.h>
38 1.11.2.4 riz #include <assert.h>
39 1.11.2.9 riz #include <util.h>
40 1.11.2.9 riz #undef ECHO /* XXX util.h */
41 1.1 rmind
42 1.6 rmind #include <net/npf_ncode.h>
43 1.1 rmind #include <net/npf.h>
44 1.6 rmind
45 1.6 rmind #define _NPF_PRIVATE
46 1.6 rmind #include <npf.h>
47 1.1 rmind
48 1.8 rmind #include "npf_var.h"
49 1.1 rmind
50 1.1 rmind #define NPF_DEV_PATH "/dev/npf"
51 1.1 rmind #define NPF_CONF_PATH "/etc/npf.conf"
52 1.4 rmind #define NPF_SESSDB_PATH "/var/db/npf_sessions.db"
53 1.1 rmind
54 1.8 rmind typedef struct fam_addr_mask {
55 1.8 rmind sa_family_t fam_family;
56 1.8 rmind npf_addr_t fam_addr;
57 1.8 rmind npf_netmask_t fam_mask;
58 1.11.2.10 riz unsigned long fam_ifindex;
59 1.8 rmind } fam_addr_mask_t;
60 1.8 rmind
61 1.11.2.10 riz typedef struct ifnet_addr {
62 1.11.2.10 riz unsigned long ifna_index;
63 1.11.2.10 riz sa_family_t ifna_family;
64 1.11.2.10 riz npfvar_t * ifna_filter;
65 1.11.2.10 riz npfvar_t * ifna_addrs;
66 1.11.2.10 riz } ifnet_addr_t;
67 1.11.2.10 riz
68 1.8 rmind typedef struct port_range {
69 1.8 rmind in_port_t pr_start;
70 1.8 rmind in_port_t pr_end;
71 1.8 rmind } port_range_t;
72 1.8 rmind
73 1.11.2.2 riz typedef struct addr_port {
74 1.11.2.2 riz npfvar_t * ap_netaddr;
75 1.11.2.2 riz npfvar_t * ap_portrange;
76 1.11.2.2 riz } addr_port_t;
77 1.11.2.2 riz
78 1.8 rmind typedef struct filt_opts {
79 1.11.2.2 riz addr_port_t fo_from;
80 1.11.2.2 riz addr_port_t fo_to;
81 1.8 rmind } filt_opts_t;
82 1.8 rmind
83 1.8 rmind typedef struct opt_proto {
84 1.8 rmind int op_proto;
85 1.8 rmind npfvar_t * op_opts;
86 1.8 rmind } opt_proto_t;
87 1.8 rmind
88 1.8 rmind typedef struct rule_group {
89 1.8 rmind const char * rg_name;
90 1.11.2.2 riz uint32_t rg_attr;
91 1.8 rmind u_int rg_ifnum;
92 1.11.2.12 riz bool rg_default;
93 1.8 rmind } rule_group_t;
94 1.8 rmind
95 1.11.2.7 riz typedef struct proc_call {
96 1.11.2.7 riz const char * pc_name;
97 1.11.2.7 riz npfvar_t * pc_opts;
98 1.11.2.7 riz } proc_call_t;
99 1.11.2.7 riz
100 1.11.2.7 riz typedef struct proc_param {
101 1.11.2.7 riz const char * pp_param;
102 1.11.2.7 riz const char * pp_value;
103 1.11.2.7 riz } proc_param_t;
104 1.6 rmind
105 1.11.2.12 riz enum { NPFCTL_PARSE_FILE, NPFCTL_PARSE_STRING };
106 1.11.2.12 riz
107 1.9 joerg void yyerror(const char *, ...) __printflike(1, 2) __dead;
108 1.11.2.12 riz void npfctl_parse_file(const char *);
109 1.11.2.12 riz void npfctl_parse_string(const char *);
110 1.8 rmind
111 1.11 rmind void npfctl_print_error(const nl_error_t *);
112 1.11.2.8 riz char * npfctl_print_addrmask(int, npf_addr_t *, npf_netmask_t);
113 1.8 rmind bool npfctl_table_exists_p(const char *);
114 1.11.2.3 riz int npfctl_protono(const char *);
115 1.8 rmind in_port_t npfctl_portno(const char *);
116 1.11.2.5 jdc uint8_t npfctl_icmpcode(int, uint8_t, const char *);
117 1.11.2.5 jdc uint8_t npfctl_icmptype(int, const char *);
118 1.8 rmind unsigned long npfctl_find_ifindex(const char *);
119 1.11.2.10 riz npfvar_t * npfctl_parse_ifnet(const char *, const int);
120 1.8 rmind npfvar_t * npfctl_parse_tcpflag(const char *);
121 1.8 rmind npfvar_t * npfctl_parse_table_id(const char *);
122 1.11.2.5 jdc npfvar_t * npfctl_parse_icmp(int, int, int);
123 1.8 rmind npfvar_t * npfctl_parse_port_range(in_port_t, in_port_t);
124 1.11.2.2 riz npfvar_t * npfctl_parse_port_range_variable(const char *);
125 1.8 rmind npfvar_t * npfctl_parse_fam_addr_mask(const char *, const char *,
126 1.8 rmind unsigned long *);
127 1.11.2.4 riz bool npfctl_parse_cidr(char *, fam_addr_mask_t *, int *);
128 1.8 rmind
129 1.8 rmind /*
130 1.11.2.7 riz * NPF extension loading.
131 1.11.2.7 riz */
132 1.11.2.7 riz
133 1.11.2.7 riz typedef struct npf_extmod npf_extmod_t;
134 1.11.2.7 riz
135 1.11.2.7 riz npf_extmod_t * npf_extmod_get(const char *, nl_ext_t **);
136 1.11.2.7 riz int npf_extmod_param(npf_extmod_t *, nl_ext_t *,
137 1.11.2.7 riz const char *, const char *);
138 1.11.2.7 riz
139 1.11.2.7 riz /*
140 1.8 rmind * N-code generation interface.
141 1.8 rmind */
142 1.1 rmind
143 1.8 rmind typedef struct nc_ctx nc_ctx_t;
144 1.1 rmind
145 1.8 rmind #define NC_MATCH_DST 0x01
146 1.8 rmind #define NC_MATCH_SRC 0x02
147 1.8 rmind
148 1.8 rmind #define NC_MATCH_TCP 0x04
149 1.8 rmind #define NC_MATCH_UDP 0x08
150 1.11.2.2 riz #define NC_MATCH_ICMP 0x10
151 1.11.2.5 jdc #define NC_MATCH_ICMP6 0x20
152 1.8 rmind
153 1.8 rmind nc_ctx_t * npfctl_ncgen_create(void);
154 1.8 rmind void * npfctl_ncgen_complete(nc_ctx_t *, size_t *);
155 1.8 rmind void npfctl_ncgen_print(const void *, size_t);
156 1.8 rmind
157 1.8 rmind void npfctl_ncgen_group(nc_ctx_t *);
158 1.8 rmind void npfctl_ncgen_endgroup(nc_ctx_t *);
159 1.8 rmind
160 1.8 rmind void npfctl_gennc_v4cidr(nc_ctx_t *, int, const npf_addr_t *,
161 1.8 rmind const npf_netmask_t);
162 1.8 rmind void npfctl_gennc_v6cidr(nc_ctx_t *, int, const npf_addr_t *,
163 1.8 rmind const npf_netmask_t);
164 1.8 rmind void npfctl_gennc_ports(nc_ctx_t *, int, in_port_t, in_port_t);
165 1.8 rmind void npfctl_gennc_icmp(nc_ctx_t *, int, int);
166 1.11.2.5 jdc void npfctl_gennc_icmp6(nc_ctx_t *, int, int);
167 1.8 rmind void npfctl_gennc_tbl(nc_ctx_t *, int, u_int);
168 1.8 rmind void npfctl_gennc_tcpfl(nc_ctx_t *, uint8_t, uint8_t);
169 1.11.2.3 riz void npfctl_gennc_proto(nc_ctx_t *ctx, uint8_t, uint8_t);
170 1.8 rmind
171 1.8 rmind /*
172 1.11.2.2 riz * N-code disassembler.
173 1.11.2.2 riz */
174 1.11.2.2 riz
175 1.11.2.2 riz typedef struct nc_inf nc_inf_t;
176 1.11.2.2 riz
177 1.11.2.2 riz nc_inf_t * npfctl_ncode_disinf(FILE *);
178 1.11.2.2 riz int npfctl_ncode_disassemble(nc_inf_t *, const void *, size_t);
179 1.11.2.2 riz
180 1.11.2.2 riz /*
181 1.8 rmind * Configuration building interface.
182 1.8 rmind */
183 1.1 rmind
184 1.11.2.2 riz #define NPFCTL_NAT_DYNAMIC 1
185 1.11.2.2 riz #define NPFCTL_NAT_STATIC 2
186 1.8 rmind
187 1.8 rmind void npfctl_config_init(bool);
188 1.11.2.6 riz int npfctl_config_send(int, const char *);
189 1.11.2.11 riz nl_config_t * npfctl_config_ref(void);
190 1.11.2.2 riz int npfctl_config_show(int);
191 1.11.2.12 riz int npfctl_ruleset_show(int, const char *);
192 1.11.2.12 riz
193 1.11.2.12 riz nl_rule_t * npfctl_rule_ref(void);
194 1.11.2.6 riz unsigned long npfctl_debug_addif(const char *);
195 1.8 rmind
196 1.8 rmind void npfctl_build_rproc(const char *, npfvar_t *);
197 1.11.2.12 riz void npfctl_build_group(const char *, int, u_int, bool);
198 1.11.2.12 riz void npfctl_build_group_end(void);
199 1.11.2.13 riz void npfctl_build_rule(uint32_t, u_int, sa_family_t,
200 1.8 rmind const opt_proto_t *, const filt_opts_t *, const char *);
201 1.11.2.6 riz void npfctl_build_natseg(int, int, u_int, const addr_port_t *,
202 1.11.2.2 riz const addr_port_t *, const filt_opts_t *);
203 1.8 rmind void npfctl_build_table(const char *, u_int, const char *);
204 1.1 rmind
205 1.1 rmind #endif
206