xref: /freebsd/sys/netpfil/ipfw/ip_fw_eaction.c (revision a907c6914c5879870b2597a63253cea0a5b7bdb8)
1 /*-
2  * Copyright (c) 2016 Yandex LLC
3  * Copyright (c) 2016 Andrey V. Elsukov <ae@FreeBSD.org>
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  */
26 
27 #include <sys/cdefs.h>
28 __FBSDID("$FreeBSD$");
29 
30 #include <sys/param.h>
31 #include <sys/systm.h>
32 #include <sys/malloc.h>
33 #include <sys/kernel.h>
34 #include <sys/hash.h>
35 #include <sys/lock.h>
36 #include <sys/rwlock.h>
37 #include <sys/rmlock.h>
38 #include <sys/socket.h>
39 #include <sys/socketvar.h>
40 #include <sys/queue.h>
41 #include <net/pfil.h>
42 
43 #include <net/if.h>	/* ip_fw.h requires IFNAMSIZ */
44 #include <netinet/in.h>
45 #include <netinet/ip_var.h>	/* struct ipfw_rule_ref */
46 #include <netinet/ip_fw.h>
47 
48 #include <netpfil/ipfw/ip_fw_private.h>
49 
50 #include "opt_ipfw.h"
51 
52 /*
53  * External actions support for ipfw.
54  *
55  * This code provides KPI for implementing loadable modules, that
56  * can provide handlers for external action opcodes in the ipfw's
57  * rules.
58  * Module should implement opcode handler with type ipfw_eaction_t.
59  * This handler will be called by ipfw_chk() function when
60  * O_EXTERNAL_ACTION opcode will be matched. The handler must return
61  * value used as return value in ipfw_chk(), i.e. IP_FW_PASS,
62  * IP_FW_DENY (see ip_fw_private.h).
63  * Also the last argument must be set by handler. If it is zero,
64  * the search continues to the next rule. If it has non zero value,
65  * the search terminates.
66  *
67  * The module that implements external action should register its
68  * handler and name with ipfw_add_eaction() function.
69  * This function will return eaction_id, that can be used by module.
70  *
71  * It is possible to pass some additional information to external
72  * action handler via the O_EXTERNAL_INSTANCE opcode. This opcode
73  * will be next after the O_EXTERNAL_ACTION opcode. cmd->arg1 will
74  * contain index of named object related to instance of external action.
75  *
76  * In case when eaction module uses named instances, it should register
77  * opcode rewriting routines for O_EXTERNAL_INSTANCE opcode. The
78  * classifier callback can look back into O_EXTERNAL_ACTION opcode (it
79  * must be in the (ipfw_insn *)(cmd - 1)). By arg1 from O_EXTERNAL_ACTION
80  * it can deteremine eaction_id and compare it with its own.
81  * The macro IPFW_TLV_EACTION_NAME(eaction_id) can be used to deteremine
82  * the type of named_object related to external action instance.
83  *
84  * On module unload handler should be deregistered with ipfw_del_eaction()
85  * function using known eaction_id.
86  */
87 
88 struct eaction_obj {
89 	struct named_object	no;
90 	ipfw_eaction_t		*handler;
91 	char			name[64];
92 };
93 
94 #define	EACTION_OBJ(ch, cmd)			\
95     ((struct eaction_obj *)SRV_OBJECT((ch), (cmd)->arg1))
96 
97 #if 0
98 #define	EACTION_DEBUG(fmt, ...)	do {			\
99 	printf("%s: " fmt "\n", __func__, ## __VA_ARGS__);	\
100 } while (0)
101 #else
102 #define	EACTION_DEBUG(fmt, ...)
103 #endif
104 
105 const char *default_eaction_typename = "drop";
106 static int
107 default_eaction(struct ip_fw_chain *ch, struct ip_fw_args *args,
108     ipfw_insn *cmd, int *done)
109 {
110 
111 	*done = 1; /* terminate the search */
112 	return (IP_FW_DENY);
113 }
114 
115 /*
116  * Opcode rewriting callbacks.
117  */
118 static int
119 eaction_classify(ipfw_insn *cmd, uint16_t *puidx, uint8_t *ptype)
120 {
121 
122 	EACTION_DEBUG("opcode %d, arg1 %d", cmd->opcode, cmd->arg1);
123 	*puidx = cmd->arg1;
124 	*ptype = 0;
125 	return (0);
126 }
127 
128 static void
129 eaction_update(ipfw_insn *cmd, uint16_t idx)
130 {
131 
132 	cmd->arg1 = idx;
133 	EACTION_DEBUG("opcode %d, arg1 -> %d", cmd->opcode, cmd->arg1);
134 }
135 
136 static int
137 eaction_findbyname(struct ip_fw_chain *ch, struct tid_info *ti,
138     struct named_object **pno)
139 {
140 
141 	EACTION_DEBUG("uidx %u, type %u", ti->uidx, ti->type);
142 	return (ipfw_objhash_find_type(CHAIN_TO_SRV(ch), ti,
143 	    IPFW_TLV_EACTION, pno));
144 }
145 
146 static struct named_object *
147 eaction_findbykidx(struct ip_fw_chain *ch, uint16_t idx)
148 {
149 
150 	EACTION_DEBUG("kidx %u", idx);
151 	return (ipfw_objhash_lookup_kidx(CHAIN_TO_SRV(ch), idx));
152 }
153 
154 static struct opcode_obj_rewrite eaction_opcodes[] = {
155 	{
156 		.opcode = O_EXTERNAL_ACTION,
157 		.etlv = IPFW_TLV_EACTION,
158 		.classifier = eaction_classify,
159 		.update = eaction_update,
160 		.find_byname = eaction_findbyname,
161 		.find_bykidx = eaction_findbykidx,
162 	},
163 };
164 
165 static int
166 create_eaction_obj(struct ip_fw_chain *ch, ipfw_eaction_t handler,
167     const char *name, uint16_t *eaction_id)
168 {
169 	struct namedobj_instance *ni;
170 	struct eaction_obj *obj;
171 
172 	IPFW_UH_UNLOCK_ASSERT(ch);
173 
174 	ni = CHAIN_TO_SRV(ch);
175 	obj = malloc(sizeof(*obj), M_IPFW, M_WAITOK | M_ZERO);
176 	obj->no.name = obj->name;
177 	obj->no.etlv = IPFW_TLV_EACTION;
178 	obj->handler = handler;
179 	strlcpy(obj->name, name, sizeof(obj->name));
180 
181 	IPFW_UH_WLOCK(ch);
182 	if (ipfw_objhash_lookup_name_type(ni, 0, IPFW_TLV_EACTION,
183 	    name) != NULL) {
184 		/*
185 		 * Object is already created.
186 		 * We don't allow eactions with the same name.
187 		 */
188 		IPFW_UH_WUNLOCK(ch);
189 		free(obj, M_IPFW);
190 		EACTION_DEBUG("External action with typename "
191 		    "'%s' already exists", name);
192 		return (EEXIST);
193 	}
194 	if (ipfw_objhash_alloc_idx(ni, &obj->no.kidx) != 0) {
195 		IPFW_UH_WUNLOCK(ch);
196 		free(obj, M_IPFW);
197 		EACTION_DEBUG("alloc_idx failed");
198 		return (ENOSPC);
199 	}
200 	ipfw_objhash_add(ni, &obj->no);
201 	IPFW_WLOCK(ch);
202 	SRV_OBJECT(ch, obj->no.kidx) = obj;
203 	IPFW_WUNLOCK(ch);
204 	obj->no.refcnt++;
205 	IPFW_UH_WUNLOCK(ch);
206 
207 	if (eaction_id != NULL)
208 		*eaction_id = obj->no.kidx;
209 	return (0);
210 }
211 
212 static void
213 destroy_eaction_obj(struct ip_fw_chain *ch, struct named_object *no)
214 {
215 	struct namedobj_instance *ni;
216 	struct eaction_obj *obj;
217 
218 	IPFW_UH_WLOCK_ASSERT(ch);
219 
220 	ni = CHAIN_TO_SRV(ch);
221 	IPFW_WLOCK(ch);
222 	obj = SRV_OBJECT(ch, no->kidx);
223 	SRV_OBJECT(ch, no->kidx) = NULL;
224 	IPFW_WUNLOCK(ch);
225 	ipfw_objhash_del(ni, no);
226 	ipfw_objhash_free_idx(ni, no->kidx);
227 	free(obj, M_IPFW);
228 }
229 
230 /*
231  * Resets all eaction opcodes to default handlers.
232  */
233 static void
234 reset_eaction_obj(struct ip_fw_chain *ch, uint16_t eaction_id)
235 {
236 	struct named_object *no;
237 	struct ip_fw *rule;
238 	ipfw_insn *cmd;
239 	int i;
240 
241 	IPFW_UH_WLOCK_ASSERT(ch);
242 
243 	no = ipfw_objhash_lookup_name_type(CHAIN_TO_SRV(ch), 0,
244 	    IPFW_TLV_EACTION, default_eaction_typename);
245 	if (no == NULL)
246 		panic("Default external action handler is not found");
247 	if (eaction_id == no->kidx)
248 		panic("Wrong eaction_id");
249 	EACTION_DEBUG("replace id %u with %u", eaction_id, no->kidx);
250 	IPFW_WLOCK(ch);
251 	for (i = 0; i < ch->n_rules; i++) {
252 		rule = ch->map[i];
253 		cmd = ACTION_PTR(rule);
254 		if (cmd->opcode != O_EXTERNAL_ACTION)
255 			continue;
256 		if (cmd->arg1 != eaction_id)
257 			continue;
258 		cmd->arg1 = no->kidx; /* Set to default id */
259 		/*
260 		 * XXX: we only bump refcount on default_eaction.
261 		 * Refcount on the original object will be just
262 		 * ignored on destroy. But on default_eaction it
263 		 * will be decremented on rule deletion.
264 		 */
265 		no->refcnt++;
266 		/*
267 		 * Since named_object related to this instance will be
268 		 * also destroyed, truncate the chain of opcodes to
269 		 * remove O_EXTERNAL_INSTANCE opcode.
270 		 */
271 		if (rule->act_ofs < rule->cmd_len - 1) {
272 			EACTION_DEBUG("truncate rule %d", rule->rulenum);
273 			rule->cmd_len--;
274 		}
275 	}
276 	IPFW_WUNLOCK(ch);
277 }
278 
279 /*
280  * Initialize external actions framework.
281  * Create object with default eaction handler "drop".
282  */
283 int
284 ipfw_eaction_init(struct ip_fw_chain *ch, int first)
285 {
286 	int error;
287 
288 	error = create_eaction_obj(ch, default_eaction,
289 	    default_eaction_typename, NULL);
290 	if (error != 0)
291 		return (error);
292 	IPFW_ADD_OBJ_REWRITER(first, eaction_opcodes);
293 	EACTION_DEBUG("External actions support initialized");
294 	return (0);
295 }
296 
297 void
298 ipfw_eaction_uninit(struct ip_fw_chain *ch, int last)
299 {
300 	struct namedobj_instance *ni;
301 	struct named_object *no;
302 
303 	ni = CHAIN_TO_SRV(ch);
304 
305 	IPFW_UH_WLOCK(ch);
306 	no = ipfw_objhash_lookup_name_type(ni, 0, IPFW_TLV_EACTION,
307 	    default_eaction_typename);
308 	if (no != NULL)
309 		destroy_eaction_obj(ch, no);
310 	IPFW_UH_WUNLOCK(ch);
311 	IPFW_DEL_OBJ_REWRITER(last, eaction_opcodes);
312 	EACTION_DEBUG("External actions support uninitialized");
313 }
314 
315 /*
316  * Registers external action handler to the global array.
317  * On success it returns eaction id, otherwise - zero.
318  */
319 uint16_t
320 ipfw_add_eaction(struct ip_fw_chain *ch, ipfw_eaction_t handler,
321     const char *name)
322 {
323 	uint16_t eaction_id;
324 
325 	eaction_id = 0;
326 	if (ipfw_check_object_name_generic(name) == 0) {
327 		create_eaction_obj(ch, handler, name, &eaction_id);
328 		EACTION_DEBUG("Registered external action '%s' with id %u",
329 		    name, eaction_id);
330 	}
331 	return (eaction_id);
332 }
333 
334 /*
335  * Deregisters external action handler with id eaction_id.
336  */
337 int
338 ipfw_del_eaction(struct ip_fw_chain *ch, uint16_t eaction_id)
339 {
340 	struct named_object *no;
341 
342 	IPFW_UH_WLOCK(ch);
343 	no = ipfw_objhash_lookup_kidx(CHAIN_TO_SRV(ch), eaction_id);
344 	if (no == NULL || no->etlv != IPFW_TLV_EACTION) {
345 		IPFW_UH_WUNLOCK(ch);
346 		return (EINVAL);
347 	}
348 	if (no->refcnt > 1)
349 		reset_eaction_obj(ch, eaction_id);
350 	EACTION_DEBUG("External action '%s' with id %u unregistered",
351 	    no->name, eaction_id);
352 	destroy_eaction_obj(ch, no);
353 	IPFW_UH_WUNLOCK(ch);
354 	return (0);
355 }
356 
357 int
358 ipfw_run_eaction(struct ip_fw_chain *ch, struct ip_fw_args *args,
359     ipfw_insn *cmd, int *done)
360 {
361 
362 	return (EACTION_OBJ(ch, cmd)->handler(ch, args, cmd, done));
363 }
364