npf_ctl.c revision 1.17 1 1.17 rmind /* $NetBSD: npf_ctl.c,v 1.17 2012/08/15 18:44:56 rmind Exp $ */
2 1.1 rmind
3 1.1 rmind /*-
4 1.13 rmind * Copyright (c) 2009-2012 The NetBSD Foundation, Inc.
5 1.1 rmind * All rights reserved.
6 1.1 rmind *
7 1.1 rmind * This material is based upon work partially supported by The
8 1.1 rmind * NetBSD Foundation under a contract with Mindaugas Rasiukevicius.
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 /*
33 1.1 rmind * NPF device control.
34 1.1 rmind *
35 1.1 rmind * Implementation of (re)loading, construction of tables and rules.
36 1.1 rmind * NPF proplib(9) dictionary consumer.
37 1.1 rmind */
38 1.1 rmind
39 1.1 rmind #include <sys/cdefs.h>
40 1.17 rmind __KERNEL_RCSID(0, "$NetBSD: npf_ctl.c,v 1.17 2012/08/15 18:44:56 rmind Exp $");
41 1.1 rmind
42 1.1 rmind #include <sys/param.h>
43 1.1 rmind #include <sys/conf.h>
44 1.1 rmind
45 1.1 rmind #include <prop/proplib.h>
46 1.1 rmind
47 1.1 rmind #include "npf_ncode.h"
48 1.1 rmind #include "npf_impl.h"
49 1.1 rmind
50 1.12 rmind #if defined(DEBUG) || defined(DIAGNOSTIC)
51 1.12 rmind #define NPF_ERR_DEBUG(e) \
52 1.12 rmind prop_dictionary_set_cstring_nocopy((e), "source-file", __FILE__); \
53 1.12 rmind prop_dictionary_set_uint32((e), "source-line", __LINE__);
54 1.12 rmind #else
55 1.12 rmind #define NPF_ERR_DEBUG(e)
56 1.12 rmind #endif
57 1.12 rmind
58 1.1 rmind /*
59 1.1 rmind * npfctl_switch: enable or disable packet inspection.
60 1.1 rmind */
61 1.1 rmind int
62 1.1 rmind npfctl_switch(void *data)
63 1.1 rmind {
64 1.1 rmind const bool onoff = *(int *)data ? true : false;
65 1.1 rmind int error;
66 1.1 rmind
67 1.1 rmind if (onoff) {
68 1.1 rmind /* Enable: add pfil hooks. */
69 1.14 rmind error = npf_pfil_register();
70 1.1 rmind } else {
71 1.1 rmind /* Disable: remove pfil hooks. */
72 1.14 rmind npf_pfil_unregister();
73 1.1 rmind error = 0;
74 1.1 rmind }
75 1.1 rmind return error;
76 1.1 rmind }
77 1.1 rmind
78 1.6 rmind static int __noinline
79 1.12 rmind npf_mk_tables(npf_tableset_t *tblset, prop_array_t tables,
80 1.12 rmind prop_dictionary_t errdict)
81 1.1 rmind {
82 1.1 rmind prop_object_iterator_t it;
83 1.1 rmind prop_dictionary_t tbldict;
84 1.1 rmind int error = 0;
85 1.1 rmind
86 1.1 rmind /* Tables - array. */
87 1.12 rmind if (prop_object_type(tables) != PROP_TYPE_ARRAY) {
88 1.12 rmind NPF_ERR_DEBUG(errdict);
89 1.1 rmind return EINVAL;
90 1.12 rmind }
91 1.1 rmind
92 1.1 rmind it = prop_array_iterator(tables);
93 1.1 rmind while ((tbldict = prop_object_iterator_next(it)) != NULL) {
94 1.1 rmind prop_dictionary_t ent;
95 1.1 rmind prop_object_iterator_t eit;
96 1.1 rmind prop_array_t entries;
97 1.1 rmind npf_table_t *t;
98 1.1 rmind u_int tid;
99 1.1 rmind int type;
100 1.1 rmind
101 1.1 rmind /* Table - dictionary. */
102 1.1 rmind if (prop_object_type(tbldict) != PROP_TYPE_DICTIONARY) {
103 1.12 rmind NPF_ERR_DEBUG(errdict);
104 1.1 rmind error = EINVAL;
105 1.1 rmind break;
106 1.1 rmind }
107 1.1 rmind
108 1.1 rmind /* Table ID and type. */
109 1.6 rmind prop_dictionary_get_uint32(tbldict, "id", &tid);
110 1.6 rmind prop_dictionary_get_int32(tbldict, "type", &type);
111 1.6 rmind
112 1.12 rmind /* Validate them, check for duplicate IDs. */
113 1.1 rmind error = npf_table_check(tblset, tid, type);
114 1.1 rmind if (error)
115 1.1 rmind break;
116 1.1 rmind
117 1.1 rmind /* Create and insert the table. */
118 1.1 rmind t = npf_table_create(tid, type, 1024); /* XXX */
119 1.1 rmind if (t == NULL) {
120 1.12 rmind NPF_ERR_DEBUG(errdict);
121 1.1 rmind error = ENOMEM;
122 1.1 rmind break;
123 1.1 rmind }
124 1.1 rmind error = npf_tableset_insert(tblset, t);
125 1.1 rmind KASSERT(error == 0);
126 1.1 rmind
127 1.1 rmind /* Entries. */
128 1.1 rmind entries = prop_dictionary_get(tbldict, "entries");
129 1.1 rmind if (prop_object_type(entries) != PROP_TYPE_ARRAY) {
130 1.12 rmind NPF_ERR_DEBUG(errdict);
131 1.1 rmind error = EINVAL;
132 1.1 rmind break;
133 1.1 rmind }
134 1.1 rmind eit = prop_array_iterator(entries);
135 1.1 rmind while ((ent = prop_object_iterator_next(eit)) != NULL) {
136 1.7 zoltan const npf_addr_t *addr;
137 1.9 rmind npf_netmask_t mask;
138 1.16 rmind int alen;
139 1.1 rmind
140 1.6 rmind /* Get address and mask. Add a table entry. */
141 1.16 rmind prop_object_t obj = prop_dictionary_get(ent, "addr");
142 1.16 rmind addr = (const npf_addr_t *)prop_data_data_nocopy(obj);
143 1.7 zoltan prop_dictionary_get_uint8(ent, "mask", &mask);
144 1.16 rmind alen = prop_data_size(obj);
145 1.16 rmind
146 1.16 rmind error = npf_table_insert(tblset, tid, alen, addr, mask);
147 1.1 rmind if (error)
148 1.1 rmind break;
149 1.1 rmind }
150 1.1 rmind prop_object_iterator_release(eit);
151 1.1 rmind if (error)
152 1.1 rmind break;
153 1.1 rmind }
154 1.1 rmind prop_object_iterator_release(it);
155 1.1 rmind /*
156 1.4 rmind * Note: in a case of error, caller will free the tableset.
157 1.1 rmind */
158 1.1 rmind return error;
159 1.1 rmind }
160 1.1 rmind
161 1.5 rmind static npf_rproc_t *
162 1.6 rmind npf_mk_rproc(prop_array_t rprocs, const char *rpname)
163 1.5 rmind {
164 1.5 rmind prop_object_iterator_t it;
165 1.5 rmind prop_dictionary_t rpdict;
166 1.5 rmind npf_rproc_t *rp;
167 1.17 rmind uint64_t rpval;
168 1.5 rmind
169 1.5 rmind it = prop_array_iterator(rprocs);
170 1.5 rmind while ((rpdict = prop_object_iterator_next(it)) != NULL) {
171 1.6 rmind const char *iname;
172 1.6 rmind prop_dictionary_get_cstring_nocopy(rpdict, "name", &iname);
173 1.12 rmind KASSERT(iname != NULL);
174 1.6 rmind if (strcmp(rpname, iname) == 0)
175 1.5 rmind break;
176 1.5 rmind }
177 1.6 rmind prop_object_iterator_release(it);
178 1.5 rmind if (rpdict == NULL) {
179 1.5 rmind return NULL;
180 1.5 rmind }
181 1.5 rmind CTASSERT(sizeof(uintptr_t) <= sizeof(uint64_t));
182 1.17 rmind if (!prop_dictionary_get_uint64(rpdict, "rproc-ptr", &rpval)) {
183 1.5 rmind rp = npf_rproc_create(rpdict);
184 1.17 rmind rpval = (uint64_t)(uintptr_t)rp;
185 1.17 rmind prop_dictionary_set_uint64(rpdict, "rproc-ptr", rpval);
186 1.17 rmind } else {
187 1.17 rmind rp = (npf_rproc_t *)(uintptr_t)rpval;
188 1.5 rmind }
189 1.5 rmind return rp;
190 1.5 rmind }
191 1.5 rmind
192 1.6 rmind static int __noinline
193 1.12 rmind npf_mk_ncode(prop_object_t obj, void **code, size_t *csize,
194 1.12 rmind prop_dictionary_t errdict)
195 1.12 rmind {
196 1.12 rmind const void *ncptr;
197 1.12 rmind int nc_err, errat;
198 1.12 rmind size_t nc_size;
199 1.12 rmind void *nc;
200 1.12 rmind
201 1.12 rmind /*
202 1.12 rmind * Allocate, copy and validate n-code. XXX: Inefficient.
203 1.12 rmind */
204 1.12 rmind ncptr = prop_data_data_nocopy(obj);
205 1.12 rmind nc_size = prop_data_size(obj);
206 1.12 rmind if (ncptr == NULL || nc_size > NPF_NCODE_LIMIT) {
207 1.12 rmind NPF_ERR_DEBUG(errdict);
208 1.12 rmind return ERANGE;
209 1.12 rmind }
210 1.12 rmind nc = npf_ncode_alloc(nc_size);
211 1.12 rmind if (nc == NULL) {
212 1.12 rmind NPF_ERR_DEBUG(errdict);
213 1.12 rmind return ENOMEM;
214 1.12 rmind }
215 1.12 rmind memcpy(nc, ncptr, nc_size);
216 1.12 rmind nc_err = npf_ncode_validate(nc, nc_size, &errat);
217 1.12 rmind if (nc_err) {
218 1.12 rmind npf_ncode_free(nc, nc_size);
219 1.12 rmind prop_dictionary_set_int32(errdict, "ncode-error", nc_err);
220 1.12 rmind prop_dictionary_set_int32(errdict, "ncode-errat", errat);
221 1.12 rmind return EINVAL;
222 1.12 rmind }
223 1.12 rmind *code = nc;
224 1.12 rmind *csize = nc_size;
225 1.12 rmind return 0;
226 1.12 rmind }
227 1.12 rmind
228 1.12 rmind static int __noinline
229 1.12 rmind npf_mk_singlerule(prop_dictionary_t rldict, prop_array_t rps, npf_rule_t **rl,
230 1.12 rmind prop_dictionary_t errdict)
231 1.1 rmind {
232 1.6 rmind const char *rnm;
233 1.5 rmind npf_rproc_t *rp;
234 1.1 rmind prop_object_t obj;
235 1.1 rmind size_t nc_size;
236 1.1 rmind void *nc;
237 1.12 rmind int p, error;
238 1.1 rmind
239 1.1 rmind /* Rule - dictionary. */
240 1.12 rmind if (prop_object_type(rldict) != PROP_TYPE_DICTIONARY) {
241 1.12 rmind NPF_ERR_DEBUG(errdict);
242 1.1 rmind return EINVAL;
243 1.12 rmind }
244 1.1 rmind
245 1.12 rmind error = 0;
246 1.1 rmind obj = prop_dictionary_get(rldict, "ncode");
247 1.1 rmind if (obj) {
248 1.12 rmind /* N-code (binary data). */
249 1.12 rmind error = npf_mk_ncode(obj, &nc, &nc_size, errdict);
250 1.12 rmind if (error) {
251 1.12 rmind goto err;
252 1.4 rmind }
253 1.1 rmind } else {
254 1.1 rmind /* No n-code. */
255 1.1 rmind nc = NULL;
256 1.1 rmind nc_size = 0;
257 1.1 rmind }
258 1.1 rmind
259 1.5 rmind /* Check for rule procedure. */
260 1.6 rmind if (rps && prop_dictionary_get_cstring_nocopy(rldict, "rproc", &rnm)) {
261 1.6 rmind rp = npf_mk_rproc(rps, rnm);
262 1.5 rmind if (rp == NULL) {
263 1.5 rmind if (nc) {
264 1.5 rmind npf_ncode_free(nc, nc_size); /* XXX */
265 1.5 rmind }
266 1.12 rmind NPF_ERR_DEBUG(errdict);
267 1.12 rmind error = EINVAL;
268 1.12 rmind goto err;
269 1.1 rmind }
270 1.5 rmind } else {
271 1.5 rmind rp = NULL;
272 1.1 rmind }
273 1.5 rmind
274 1.6 rmind /* Finally, allocate and return the rule. */
275 1.6 rmind *rl = npf_rule_alloc(rldict, rp, nc, nc_size);
276 1.12 rmind KASSERT(*rl != NULL);
277 1.6 rmind return 0;
278 1.12 rmind err:
279 1.12 rmind prop_dictionary_get_int32(rldict, "priority", &p); /* XXX */
280 1.12 rmind prop_dictionary_set_int32(errdict, "id", p);
281 1.12 rmind return error;
282 1.6 rmind }
283 1.6 rmind
284 1.6 rmind static int __noinline
285 1.12 rmind npf_mk_subrules(npf_ruleset_t *rlset, prop_array_t rules, prop_array_t rprocs,
286 1.12 rmind prop_dictionary_t errdict)
287 1.6 rmind {
288 1.6 rmind prop_object_iterator_t it;
289 1.6 rmind prop_dictionary_t rldict;
290 1.6 rmind int error = 0;
291 1.6 rmind
292 1.6 rmind if (prop_object_type(rules) != PROP_TYPE_ARRAY) {
293 1.12 rmind NPF_ERR_DEBUG(errdict);
294 1.6 rmind return EINVAL;
295 1.6 rmind }
296 1.6 rmind it = prop_array_iterator(rules);
297 1.6 rmind while ((rldict = prop_object_iterator_next(it)) != NULL) {
298 1.6 rmind npf_rule_t *rl;
299 1.12 rmind error = npf_mk_singlerule(rldict, rprocs, &rl, errdict);
300 1.6 rmind if (error) {
301 1.6 rmind break;
302 1.6 rmind }
303 1.6 rmind npf_ruleset_insert(rlset, rl);
304 1.1 rmind }
305 1.6 rmind prop_object_iterator_release(it);
306 1.6 rmind return error;
307 1.1 rmind }
308 1.1 rmind
309 1.6 rmind static int __noinline
310 1.12 rmind npf_mk_rules(npf_ruleset_t *rlset, prop_array_t rules, prop_array_t rprocs,
311 1.12 rmind prop_dictionary_t errdict)
312 1.1 rmind {
313 1.1 rmind prop_object_iterator_t it;
314 1.5 rmind prop_dictionary_t rldict, rpdict;
315 1.1 rmind int error;
316 1.1 rmind
317 1.5 rmind /* Rule procedures and the ruleset - arrays. */
318 1.5 rmind if (prop_object_type(rprocs) != PROP_TYPE_ARRAY ||
319 1.12 rmind prop_object_type(rules) != PROP_TYPE_ARRAY) {
320 1.12 rmind NPF_ERR_DEBUG(errdict);
321 1.1 rmind return EINVAL;
322 1.12 rmind }
323 1.1 rmind
324 1.5 rmind it = prop_array_iterator(rprocs);
325 1.5 rmind while ((rpdict = prop_object_iterator_next(it)) != NULL) {
326 1.6 rmind if (prop_dictionary_get(rpdict, "rproc-ptr")) {
327 1.6 rmind prop_object_iterator_release(it);
328 1.12 rmind NPF_ERR_DEBUG(errdict);
329 1.5 rmind return EINVAL;
330 1.6 rmind }
331 1.5 rmind }
332 1.5 rmind prop_object_iterator_release(it);
333 1.5 rmind
334 1.4 rmind error = 0;
335 1.1 rmind it = prop_array_iterator(rules);
336 1.1 rmind while ((rldict = prop_object_iterator_next(it)) != NULL) {
337 1.1 rmind prop_array_t subrules;
338 1.6 rmind npf_ruleset_t *rlsetsub;
339 1.6 rmind npf_rule_t *rl;
340 1.1 rmind
341 1.1 rmind /* Generate a single rule. */
342 1.12 rmind error = npf_mk_singlerule(rldict, rprocs, &rl, errdict);
343 1.6 rmind if (error) {
344 1.1 rmind break;
345 1.6 rmind }
346 1.6 rmind npf_ruleset_insert(rlset, rl);
347 1.1 rmind
348 1.6 rmind /* Check for sub-rules and generate, if any. */
349 1.1 rmind subrules = prop_dictionary_get(rldict, "subrules");
350 1.1 rmind if (subrules == NULL) {
351 1.1 rmind /* No subrules, next.. */
352 1.1 rmind continue;
353 1.1 rmind }
354 1.6 rmind rlsetsub = npf_rule_subset(rl);
355 1.12 rmind error = npf_mk_subrules(rlsetsub, subrules, rprocs, errdict);
356 1.1 rmind if (error)
357 1.1 rmind break;
358 1.1 rmind }
359 1.1 rmind prop_object_iterator_release(it);
360 1.1 rmind /*
361 1.4 rmind * Note: in a case of error, caller will free the ruleset.
362 1.1 rmind */
363 1.1 rmind return error;
364 1.1 rmind }
365 1.1 rmind
366 1.6 rmind static int __noinline
367 1.12 rmind npf_mk_natlist(npf_ruleset_t *nset, prop_array_t natlist,
368 1.12 rmind prop_dictionary_t errdict)
369 1.1 rmind {
370 1.1 rmind prop_object_iterator_t it;
371 1.1 rmind prop_dictionary_t natdict;
372 1.1 rmind int error;
373 1.1 rmind
374 1.1 rmind /* NAT policies - array. */
375 1.12 rmind if (prop_object_type(natlist) != PROP_TYPE_ARRAY) {
376 1.12 rmind NPF_ERR_DEBUG(errdict);
377 1.1 rmind return EINVAL;
378 1.12 rmind }
379 1.1 rmind
380 1.4 rmind error = 0;
381 1.1 rmind it = prop_array_iterator(natlist);
382 1.1 rmind while ((natdict = prop_object_iterator_next(it)) != NULL) {
383 1.1 rmind npf_natpolicy_t *np;
384 1.1 rmind npf_rule_t *rl;
385 1.1 rmind
386 1.1 rmind /* NAT policy - dictionary. */
387 1.1 rmind if (prop_object_type(natdict) != PROP_TYPE_DICTIONARY) {
388 1.12 rmind NPF_ERR_DEBUG(errdict);
389 1.1 rmind error = EINVAL;
390 1.1 rmind break;
391 1.1 rmind }
392 1.1 rmind
393 1.1 rmind /*
394 1.1 rmind * NAT policies are standard rules, plus additional
395 1.1 rmind * information for translation. Make a rule.
396 1.1 rmind */
397 1.12 rmind error = npf_mk_singlerule(natdict, NULL, &rl, errdict);
398 1.6 rmind if (error) {
399 1.1 rmind break;
400 1.6 rmind }
401 1.6 rmind npf_ruleset_insert(nset, rl);
402 1.6 rmind
403 1.6 rmind /* If rule is named, it is a group with NAT policies. */
404 1.6 rmind if (prop_dictionary_get(natdict, "name") &&
405 1.6 rmind prop_dictionary_get(natdict, "subrules")) {
406 1.6 rmind continue;
407 1.6 rmind }
408 1.1 rmind
409 1.1 rmind /* Allocate a new NAT policy and assign to the rule. */
410 1.5 rmind np = npf_nat_newpolicy(natdict, nset);
411 1.1 rmind if (np == NULL) {
412 1.12 rmind NPF_ERR_DEBUG(errdict);
413 1.1 rmind error = ENOMEM;
414 1.1 rmind break;
415 1.1 rmind }
416 1.1 rmind npf_rule_setnat(rl, np);
417 1.1 rmind }
418 1.1 rmind prop_object_iterator_release(it);
419 1.1 rmind /*
420 1.1 rmind * Note: in a case of error, caller will free entire NAT ruleset
421 1.1 rmind * with assigned NAT policies.
422 1.1 rmind */
423 1.1 rmind return error;
424 1.1 rmind }
425 1.1 rmind
426 1.1 rmind /*
427 1.1 rmind * npfctl_reload: store passed data i.e. update settings, create passed
428 1.1 rmind * tables, rules and atomically activate all them.
429 1.1 rmind */
430 1.1 rmind int
431 1.1 rmind npfctl_reload(u_long cmd, void *data)
432 1.1 rmind {
433 1.12 rmind struct plistref *pref = data;
434 1.14 rmind prop_dictionary_t npf_dict, errdict;
435 1.5 rmind prop_array_t natlist, tables, rprocs, rules;
436 1.1 rmind npf_tableset_t *tblset = NULL;
437 1.1 rmind npf_ruleset_t *rlset = NULL;
438 1.1 rmind npf_ruleset_t *nset = NULL;
439 1.11 rmind bool flush;
440 1.1 rmind int error;
441 1.1 rmind
442 1.1 rmind /* Retrieve the dictionary. */
443 1.15 rmind #ifndef _NPF_TESTING
444 1.14 rmind error = prop_dictionary_copyin_ioctl(pref, cmd, &npf_dict);
445 1.1 rmind if (error)
446 1.1 rmind return error;
447 1.1 rmind #else
448 1.15 rmind npf_dict = (prop_dictionary_t)pref;
449 1.1 rmind #endif
450 1.15 rmind
451 1.12 rmind /* Dictionary for error reporting. */
452 1.12 rmind errdict = prop_dictionary_create();
453 1.12 rmind
454 1.1 rmind /* NAT policies. */
455 1.1 rmind nset = npf_ruleset_create();
456 1.14 rmind natlist = prop_dictionary_get(npf_dict, "translation");
457 1.12 rmind error = npf_mk_natlist(nset, natlist, errdict);
458 1.10 rmind if (error) {
459 1.1 rmind goto fail;
460 1.10 rmind }
461 1.1 rmind
462 1.1 rmind /* Tables. */
463 1.1 rmind tblset = npf_tableset_create();
464 1.14 rmind tables = prop_dictionary_get(npf_dict, "tables");
465 1.12 rmind error = npf_mk_tables(tblset, tables, errdict);
466 1.10 rmind if (error) {
467 1.1 rmind goto fail;
468 1.10 rmind }
469 1.1 rmind
470 1.5 rmind /* Rules and rule procedures. */
471 1.1 rmind rlset = npf_ruleset_create();
472 1.14 rmind rprocs = prop_dictionary_get(npf_dict, "rprocs");
473 1.14 rmind rules = prop_dictionary_get(npf_dict, "rules");
474 1.12 rmind error = npf_mk_rules(rlset, rules, rprocs, errdict);
475 1.10 rmind if (error) {
476 1.1 rmind goto fail;
477 1.10 rmind }
478 1.1 rmind
479 1.11 rmind flush = false;
480 1.14 rmind prop_dictionary_get_bool(npf_dict, "flush", &flush);
481 1.11 rmind
482 1.1 rmind /*
483 1.4 rmind * Finally - reload ruleset, tableset and NAT policies.
484 1.1 rmind * Operation will be performed as a single transaction.
485 1.1 rmind */
486 1.14 rmind npf_reload(npf_dict, rlset, tblset, nset, flush);
487 1.1 rmind
488 1.11 rmind /* Turn on/off session tracking accordingly. */
489 1.11 rmind npf_session_tracking(!flush);
490 1.11 rmind
491 1.1 rmind /* Done. Since data is consumed now, we shall not destroy it. */
492 1.1 rmind tblset = NULL;
493 1.1 rmind rlset = NULL;
494 1.1 rmind nset = NULL;
495 1.1 rmind fail:
496 1.1 rmind /*
497 1.1 rmind * Note: destroy rulesets first, to drop references to the tableset.
498 1.1 rmind */
499 1.1 rmind KASSERT(error == 0 || (nset || rlset || tblset));
500 1.1 rmind if (nset) {
501 1.1 rmind npf_ruleset_destroy(nset);
502 1.1 rmind }
503 1.1 rmind if (rlset) {
504 1.1 rmind npf_ruleset_destroy(rlset);
505 1.1 rmind }
506 1.1 rmind if (tblset) {
507 1.1 rmind npf_tableset_destroy(tblset);
508 1.1 rmind }
509 1.14 rmind if (error) {
510 1.14 rmind prop_object_release(npf_dict);
511 1.14 rmind }
512 1.12 rmind
513 1.12 rmind /* Error report. */
514 1.12 rmind prop_dictionary_set_int32(errdict, "errno", error);
515 1.15 rmind #ifndef _NPF_TESTING
516 1.12 rmind prop_dictionary_copyout_ioctl(pref, cmd, errdict);
517 1.13 rmind #endif
518 1.12 rmind prop_object_release(errdict);
519 1.12 rmind return 0;
520 1.6 rmind }
521 1.6 rmind
522 1.14 rmind int
523 1.14 rmind npfctl_getconf(u_long cmd, void *data)
524 1.14 rmind {
525 1.14 rmind struct plistref *pref = data;
526 1.14 rmind prop_dictionary_t npf_dict;
527 1.14 rmind int error;
528 1.14 rmind
529 1.14 rmind npf_core_enter();
530 1.14 rmind npf_dict = npf_core_dict();
531 1.14 rmind prop_dictionary_set_bool(npf_dict, "active", npf_pfil_registered_p());
532 1.14 rmind error = prop_dictionary_copyout_ioctl(pref, cmd, npf_dict);
533 1.14 rmind npf_core_exit();
534 1.14 rmind
535 1.14 rmind return error;
536 1.14 rmind }
537 1.14 rmind
538 1.6 rmind /*
539 1.6 rmind * npfctl_update_rule: reload a specific rule identified by the name.
540 1.6 rmind */
541 1.6 rmind int
542 1.6 rmind npfctl_update_rule(u_long cmd, void *data)
543 1.6 rmind {
544 1.12 rmind struct plistref *pref = data;
545 1.12 rmind prop_dictionary_t dict, errdict;
546 1.6 rmind prop_array_t subrules;
547 1.6 rmind prop_object_t obj;
548 1.6 rmind npf_ruleset_t *rlset;
549 1.6 rmind const char *name;
550 1.6 rmind int error;
551 1.6 rmind
552 1.6 rmind /* Retrieve and construct the rule. */
553 1.6 rmind error = prop_dictionary_copyin_ioctl(pref, cmd, &dict);
554 1.6 rmind if (error) {
555 1.6 rmind return error;
556 1.6 rmind }
557 1.12 rmind
558 1.12 rmind /* Dictionary for error reporting. */
559 1.12 rmind errdict = prop_dictionary_create();
560 1.12 rmind
561 1.6 rmind /* Create the ruleset and construct sub-rules. */
562 1.6 rmind rlset = npf_ruleset_create();
563 1.6 rmind subrules = prop_dictionary_get(dict, "subrules");
564 1.12 rmind error = npf_mk_subrules(rlset, subrules, NULL, errdict);
565 1.6 rmind if (error) {
566 1.6 rmind goto out;
567 1.6 rmind }
568 1.6 rmind
569 1.6 rmind /* Lookup the rule by name, and replace its subset (sub-rules). */
570 1.6 rmind obj = prop_dictionary_get(dict, "name");
571 1.6 rmind name = prop_string_cstring_nocopy(obj);
572 1.6 rmind if (npf_ruleset_replace(name, rlset) == NULL) {
573 1.6 rmind /* Not found. */
574 1.6 rmind error = ENOENT;
575 1.6 rmind out: /* Error path. */
576 1.6 rmind npf_ruleset_destroy(rlset);
577 1.6 rmind }
578 1.6 rmind prop_object_release(dict);
579 1.12 rmind
580 1.12 rmind /* Error report. */
581 1.12 rmind prop_dictionary_set_int32(errdict, "errno", error);
582 1.12 rmind prop_dictionary_copyout_ioctl(pref, cmd, errdict);
583 1.12 rmind prop_object_release(errdict);
584 1.1 rmind return error;
585 1.1 rmind }
586 1.1 rmind
587 1.1 rmind /*
588 1.4 rmind * npfctl_sessions_save: construct a list of sessions and export for saving.
589 1.4 rmind */
590 1.4 rmind int
591 1.4 rmind npfctl_sessions_save(u_long cmd, void *data)
592 1.4 rmind {
593 1.4 rmind struct plistref *pref = data;
594 1.4 rmind prop_dictionary_t sesdict;
595 1.4 rmind prop_array_t selist, nplist;
596 1.4 rmind int error;
597 1.4 rmind
598 1.4 rmind /* Create a dictionary and two lists. */
599 1.4 rmind sesdict = prop_dictionary_create();
600 1.4 rmind selist = prop_array_create();
601 1.4 rmind nplist = prop_array_create();
602 1.4 rmind
603 1.4 rmind /* Save the sessions. */
604 1.4 rmind error = npf_session_save(selist, nplist);
605 1.4 rmind if (error) {
606 1.4 rmind goto fail;
607 1.4 rmind }
608 1.4 rmind
609 1.4 rmind /* Set the session list, NAT policy list and export the dictionary. */
610 1.4 rmind prop_dictionary_set(sesdict, "session-list", selist);
611 1.4 rmind prop_dictionary_set(sesdict, "nat-policy-list", nplist);
612 1.4 rmind error = prop_dictionary_copyout_ioctl(pref, cmd, sesdict);
613 1.4 rmind fail:
614 1.4 rmind prop_object_release(sesdict);
615 1.4 rmind return error;
616 1.4 rmind }
617 1.4 rmind
618 1.4 rmind /*
619 1.4 rmind * npfctl_sessions_load: import a list of sessions, reconstruct them and load.
620 1.4 rmind */
621 1.4 rmind int
622 1.4 rmind npfctl_sessions_load(u_long cmd, void *data)
623 1.4 rmind {
624 1.4 rmind const struct plistref *pref = data;
625 1.4 rmind npf_sehash_t *sehasht = NULL;
626 1.4 rmind prop_dictionary_t sesdict, sedict;
627 1.4 rmind prop_object_iterator_t it;
628 1.4 rmind prop_array_t selist;
629 1.4 rmind int error;
630 1.4 rmind
631 1.4 rmind /* Retrieve the dictionary containing session and NAT policy lists. */
632 1.4 rmind error = prop_dictionary_copyin_ioctl(pref, cmd, &sesdict);
633 1.4 rmind if (error)
634 1.4 rmind return error;
635 1.15 rmind
636 1.4 rmind /*
637 1.4 rmind * Note: session objects contain the references to the NAT policy
638 1.4 rmind * entries. Therefore, no need to directly access it.
639 1.4 rmind */
640 1.4 rmind selist = prop_dictionary_get(sesdict, "session-list");
641 1.4 rmind if (prop_object_type(selist) != PROP_TYPE_ARRAY) {
642 1.4 rmind error = EINVAL;
643 1.4 rmind goto fail;
644 1.4 rmind }
645 1.4 rmind
646 1.4 rmind /* Create a session hash table. */
647 1.4 rmind sehasht = sess_htable_create();
648 1.4 rmind if (sehasht == NULL) {
649 1.4 rmind error = ENOMEM;
650 1.4 rmind goto fail;
651 1.4 rmind }
652 1.4 rmind
653 1.4 rmind /*
654 1.4 rmind * Iterate through and construct each session.
655 1.4 rmind */
656 1.4 rmind error = 0;
657 1.4 rmind it = prop_array_iterator(selist);
658 1.4 rmind npf_core_enter();
659 1.4 rmind while ((sedict = prop_object_iterator_next(it)) != NULL) {
660 1.4 rmind /* Session - dictionary. */
661 1.4 rmind if (prop_object_type(sedict) != PROP_TYPE_DICTIONARY) {
662 1.4 rmind error = EINVAL;
663 1.4 rmind goto fail;
664 1.4 rmind }
665 1.4 rmind /* Construct and insert real session structure. */
666 1.4 rmind error = npf_session_restore(sehasht, sedict);
667 1.4 rmind if (error) {
668 1.4 rmind goto fail;
669 1.4 rmind }
670 1.4 rmind }
671 1.4 rmind npf_core_exit();
672 1.4 rmind sess_htable_reload(sehasht);
673 1.4 rmind fail:
674 1.4 rmind prop_object_release(selist);
675 1.4 rmind if (error && sehasht) {
676 1.4 rmind /* Destroy session table. */
677 1.4 rmind sess_htable_destroy(sehasht);
678 1.4 rmind }
679 1.4 rmind return error;
680 1.4 rmind }
681 1.4 rmind
682 1.4 rmind /*
683 1.2 rmind * npfctl_table: add, remove or query entries in the specified table.
684 1.1 rmind *
685 1.1 rmind * For maximum performance, interface is avoiding proplib(3)'s overhead.
686 1.1 rmind */
687 1.1 rmind int
688 1.1 rmind npfctl_table(void *data)
689 1.1 rmind {
690 1.1 rmind npf_ioctl_table_t *nct = data;
691 1.10 rmind npf_tableset_t *tblset;
692 1.1 rmind int error;
693 1.1 rmind
694 1.6 rmind npf_core_enter(); /* XXXSMP */
695 1.10 rmind tblset = npf_core_tableset();
696 1.1 rmind switch (nct->nct_action) {
697 1.1 rmind case NPF_IOCTL_TBLENT_ADD:
698 1.16 rmind error = npf_table_insert(tblset, nct->nct_tid,
699 1.16 rmind nct->nct_alen, &nct->nct_addr, nct->nct_mask);
700 1.1 rmind break;
701 1.1 rmind case NPF_IOCTL_TBLENT_REM:
702 1.16 rmind error = npf_table_remove(tblset, nct->nct_tid,
703 1.16 rmind nct->nct_alen, &nct->nct_addr, nct->nct_mask);
704 1.1 rmind break;
705 1.1 rmind default:
706 1.16 rmind error = npf_table_lookup(tblset, nct->nct_tid,
707 1.16 rmind nct->nct_alen, &nct->nct_addr);
708 1.1 rmind }
709 1.6 rmind npf_core_exit(); /* XXXSMP */
710 1.1 rmind return error;
711 1.1 rmind }
712