Loading...
1/*
2 * (C) 2012 Pablo Neira Ayuso <pablo@netfilter.org>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation (or any later at your option).
7 *
8 * This software has been sponsored by Vyatta Inc. <http://www.vyatta.com>
9 */
10#include <linux/init.h>
11#include <linux/module.h>
12#include <linux/kernel.h>
13#include <linux/skbuff.h>
14#include <linux/netlink.h>
15#include <linux/rculist.h>
16#include <linux/slab.h>
17#include <linux/types.h>
18#include <linux/list.h>
19#include <linux/errno.h>
20#include <net/netlink.h>
21#include <net/sock.h>
22
23#include <net/netfilter/nf_conntrack_helper.h>
24#include <net/netfilter/nf_conntrack_expect.h>
25#include <net/netfilter/nf_conntrack_ecache.h>
26
27#include <linux/netfilter/nfnetlink.h>
28#include <linux/netfilter/nfnetlink_conntrack.h>
29#include <linux/netfilter/nfnetlink_cthelper.h>
30
31MODULE_LICENSE("GPL");
32MODULE_AUTHOR("Pablo Neira Ayuso <pablo@netfilter.org>");
33MODULE_DESCRIPTION("nfnl_cthelper: User-space connection tracking helpers");
34
35static int
36nfnl_userspace_cthelper(struct sk_buff *skb, unsigned int protoff,
37 struct nf_conn *ct, enum ip_conntrack_info ctinfo)
38{
39 const struct nf_conn_help *help;
40 struct nf_conntrack_helper *helper;
41
42 help = nfct_help(ct);
43 if (help == NULL)
44 return NF_DROP;
45
46 /* rcu_read_lock()ed by nf_hook_thresh */
47 helper = rcu_dereference(help->helper);
48 if (helper == NULL)
49 return NF_DROP;
50
51 /* This is an user-space helper not yet configured, skip. */
52 if ((helper->flags &
53 (NF_CT_HELPER_F_USERSPACE | NF_CT_HELPER_F_CONFIGURED)) ==
54 NF_CT_HELPER_F_USERSPACE)
55 return NF_ACCEPT;
56
57 /* If the user-space helper is not available, don't block traffic. */
58 return NF_QUEUE_NR(helper->queue_num) | NF_VERDICT_FLAG_QUEUE_BYPASS;
59}
60
61static const struct nla_policy nfnl_cthelper_tuple_pol[NFCTH_TUPLE_MAX+1] = {
62 [NFCTH_TUPLE_L3PROTONUM] = { .type = NLA_U16, },
63 [NFCTH_TUPLE_L4PROTONUM] = { .type = NLA_U8, },
64};
65
66static int
67nfnl_cthelper_parse_tuple(struct nf_conntrack_tuple *tuple,
68 const struct nlattr *attr)
69{
70 int err;
71 struct nlattr *tb[NFCTH_TUPLE_MAX+1];
72
73 err = nla_parse_nested(tb, NFCTH_TUPLE_MAX, attr, nfnl_cthelper_tuple_pol);
74 if (err < 0)
75 return err;
76
77 if (!tb[NFCTH_TUPLE_L3PROTONUM] || !tb[NFCTH_TUPLE_L4PROTONUM])
78 return -EINVAL;
79
80 /* Not all fields are initialized so first zero the tuple */
81 memset(tuple, 0, sizeof(struct nf_conntrack_tuple));
82
83 tuple->src.l3num = ntohs(nla_get_be16(tb[NFCTH_TUPLE_L3PROTONUM]));
84 tuple->dst.protonum = nla_get_u8(tb[NFCTH_TUPLE_L4PROTONUM]);
85
86 return 0;
87}
88
89static int
90nfnl_cthelper_from_nlattr(struct nlattr *attr, struct nf_conn *ct)
91{
92 struct nf_conn_help *help = nfct_help(ct);
93
94 if (attr == NULL)
95 return -EINVAL;
96
97 if (help->helper->data_len == 0)
98 return -EINVAL;
99
100 memcpy(help->data, nla_data(attr), help->helper->data_len);
101 return 0;
102}
103
104static int
105nfnl_cthelper_to_nlattr(struct sk_buff *skb, const struct nf_conn *ct)
106{
107 const struct nf_conn_help *help = nfct_help(ct);
108
109 if (help->helper->data_len &&
110 nla_put(skb, CTA_HELP_INFO, help->helper->data_len, &help->data))
111 goto nla_put_failure;
112
113 return 0;
114
115nla_put_failure:
116 return -ENOSPC;
117}
118
119static const struct nla_policy nfnl_cthelper_expect_pol[NFCTH_POLICY_MAX+1] = {
120 [NFCTH_POLICY_NAME] = { .type = NLA_NUL_STRING,
121 .len = NF_CT_HELPER_NAME_LEN-1 },
122 [NFCTH_POLICY_EXPECT_MAX] = { .type = NLA_U32, },
123 [NFCTH_POLICY_EXPECT_TIMEOUT] = { .type = NLA_U32, },
124};
125
126static int
127nfnl_cthelper_expect_policy(struct nf_conntrack_expect_policy *expect_policy,
128 const struct nlattr *attr)
129{
130 int err;
131 struct nlattr *tb[NFCTH_POLICY_MAX+1];
132
133 err = nla_parse_nested(tb, NFCTH_POLICY_MAX, attr, nfnl_cthelper_expect_pol);
134 if (err < 0)
135 return err;
136
137 if (!tb[NFCTH_POLICY_NAME] ||
138 !tb[NFCTH_POLICY_EXPECT_MAX] ||
139 !tb[NFCTH_POLICY_EXPECT_TIMEOUT])
140 return -EINVAL;
141
142 strncpy(expect_policy->name,
143 nla_data(tb[NFCTH_POLICY_NAME]), NF_CT_HELPER_NAME_LEN);
144 expect_policy->max_expected =
145 ntohl(nla_get_be32(tb[NFCTH_POLICY_EXPECT_MAX]));
146 expect_policy->timeout =
147 ntohl(nla_get_be32(tb[NFCTH_POLICY_EXPECT_TIMEOUT]));
148
149 return 0;
150}
151
152static const struct nla_policy
153nfnl_cthelper_expect_policy_set[NFCTH_POLICY_SET_MAX+1] = {
154 [NFCTH_POLICY_SET_NUM] = { .type = NLA_U32, },
155};
156
157static int
158nfnl_cthelper_parse_expect_policy(struct nf_conntrack_helper *helper,
159 const struct nlattr *attr)
160{
161 int i, ret;
162 struct nf_conntrack_expect_policy *expect_policy;
163 struct nlattr *tb[NFCTH_POLICY_SET_MAX+1];
164
165 ret = nla_parse_nested(tb, NFCTH_POLICY_SET_MAX, attr,
166 nfnl_cthelper_expect_policy_set);
167 if (ret < 0)
168 return ret;
169
170 if (!tb[NFCTH_POLICY_SET_NUM])
171 return -EINVAL;
172
173 helper->expect_class_max =
174 ntohl(nla_get_be32(tb[NFCTH_POLICY_SET_NUM]));
175
176 if (helper->expect_class_max != 0 &&
177 helper->expect_class_max > NF_CT_MAX_EXPECT_CLASSES)
178 return -EOVERFLOW;
179
180 expect_policy = kzalloc(sizeof(struct nf_conntrack_expect_policy) *
181 helper->expect_class_max, GFP_KERNEL);
182 if (expect_policy == NULL)
183 return -ENOMEM;
184
185 for (i=0; i<helper->expect_class_max; i++) {
186 if (!tb[NFCTH_POLICY_SET+i])
187 goto err;
188
189 ret = nfnl_cthelper_expect_policy(&expect_policy[i],
190 tb[NFCTH_POLICY_SET+i]);
191 if (ret < 0)
192 goto err;
193 }
194 helper->expect_policy = expect_policy;
195 return 0;
196err:
197 kfree(expect_policy);
198 return -EINVAL;
199}
200
201static int
202nfnl_cthelper_create(const struct nlattr * const tb[],
203 struct nf_conntrack_tuple *tuple)
204{
205 struct nf_conntrack_helper *helper;
206 int ret;
207
208 if (!tb[NFCTH_TUPLE] || !tb[NFCTH_POLICY] || !tb[NFCTH_PRIV_DATA_LEN])
209 return -EINVAL;
210
211 helper = kzalloc(sizeof(struct nf_conntrack_helper), GFP_KERNEL);
212 if (helper == NULL)
213 return -ENOMEM;
214
215 ret = nfnl_cthelper_parse_expect_policy(helper, tb[NFCTH_POLICY]);
216 if (ret < 0)
217 goto err;
218
219 strncpy(helper->name, nla_data(tb[NFCTH_NAME]), NF_CT_HELPER_NAME_LEN);
220 helper->data_len = ntohl(nla_get_be32(tb[NFCTH_PRIV_DATA_LEN]));
221 helper->flags |= NF_CT_HELPER_F_USERSPACE;
222 memcpy(&helper->tuple, tuple, sizeof(struct nf_conntrack_tuple));
223
224 helper->me = THIS_MODULE;
225 helper->help = nfnl_userspace_cthelper;
226 helper->from_nlattr = nfnl_cthelper_from_nlattr;
227 helper->to_nlattr = nfnl_cthelper_to_nlattr;
228
229 /* Default to queue number zero, this can be updated at any time. */
230 if (tb[NFCTH_QUEUE_NUM])
231 helper->queue_num = ntohl(nla_get_be32(tb[NFCTH_QUEUE_NUM]));
232
233 if (tb[NFCTH_STATUS]) {
234 int status = ntohl(nla_get_be32(tb[NFCTH_STATUS]));
235
236 switch(status) {
237 case NFCT_HELPER_STATUS_ENABLED:
238 helper->flags |= NF_CT_HELPER_F_CONFIGURED;
239 break;
240 case NFCT_HELPER_STATUS_DISABLED:
241 helper->flags &= ~NF_CT_HELPER_F_CONFIGURED;
242 break;
243 }
244 }
245
246 ret = nf_conntrack_helper_register(helper);
247 if (ret < 0)
248 goto err;
249
250 return 0;
251err:
252 kfree(helper);
253 return ret;
254}
255
256static int
257nfnl_cthelper_update(const struct nlattr * const tb[],
258 struct nf_conntrack_helper *helper)
259{
260 int ret;
261
262 if (tb[NFCTH_PRIV_DATA_LEN])
263 return -EBUSY;
264
265 if (tb[NFCTH_POLICY]) {
266 ret = nfnl_cthelper_parse_expect_policy(helper,
267 tb[NFCTH_POLICY]);
268 if (ret < 0)
269 return ret;
270 }
271 if (tb[NFCTH_QUEUE_NUM])
272 helper->queue_num = ntohl(nla_get_be32(tb[NFCTH_QUEUE_NUM]));
273
274 if (tb[NFCTH_STATUS]) {
275 int status = ntohl(nla_get_be32(tb[NFCTH_STATUS]));
276
277 switch(status) {
278 case NFCT_HELPER_STATUS_ENABLED:
279 helper->flags |= NF_CT_HELPER_F_CONFIGURED;
280 break;
281 case NFCT_HELPER_STATUS_DISABLED:
282 helper->flags &= ~NF_CT_HELPER_F_CONFIGURED;
283 break;
284 }
285 }
286 return 0;
287}
288
289static int nfnl_cthelper_new(struct net *net, struct sock *nfnl,
290 struct sk_buff *skb, const struct nlmsghdr *nlh,
291 const struct nlattr * const tb[])
292{
293 const char *helper_name;
294 struct nf_conntrack_helper *cur, *helper = NULL;
295 struct nf_conntrack_tuple tuple;
296 int ret = 0, i;
297
298 if (!tb[NFCTH_NAME] || !tb[NFCTH_TUPLE])
299 return -EINVAL;
300
301 helper_name = nla_data(tb[NFCTH_NAME]);
302
303 ret = nfnl_cthelper_parse_tuple(&tuple, tb[NFCTH_TUPLE]);
304 if (ret < 0)
305 return ret;
306
307 rcu_read_lock();
308 for (i = 0; i < nf_ct_helper_hsize && !helper; i++) {
309 hlist_for_each_entry_rcu(cur, &nf_ct_helper_hash[i], hnode) {
310
311 /* skip non-userspace conntrack helpers. */
312 if (!(cur->flags & NF_CT_HELPER_F_USERSPACE))
313 continue;
314
315 if (strncmp(cur->name, helper_name,
316 NF_CT_HELPER_NAME_LEN) != 0)
317 continue;
318
319 if ((tuple.src.l3num != cur->tuple.src.l3num ||
320 tuple.dst.protonum != cur->tuple.dst.protonum))
321 continue;
322
323 if (nlh->nlmsg_flags & NLM_F_EXCL) {
324 ret = -EEXIST;
325 goto err;
326 }
327 helper = cur;
328 break;
329 }
330 }
331 rcu_read_unlock();
332
333 if (helper == NULL)
334 ret = nfnl_cthelper_create(tb, &tuple);
335 else
336 ret = nfnl_cthelper_update(tb, helper);
337
338 return ret;
339err:
340 rcu_read_unlock();
341 return ret;
342}
343
344static int
345nfnl_cthelper_dump_tuple(struct sk_buff *skb,
346 struct nf_conntrack_helper *helper)
347{
348 struct nlattr *nest_parms;
349
350 nest_parms = nla_nest_start(skb, NFCTH_TUPLE | NLA_F_NESTED);
351 if (nest_parms == NULL)
352 goto nla_put_failure;
353
354 if (nla_put_be16(skb, NFCTH_TUPLE_L3PROTONUM,
355 htons(helper->tuple.src.l3num)))
356 goto nla_put_failure;
357
358 if (nla_put_u8(skb, NFCTH_TUPLE_L4PROTONUM, helper->tuple.dst.protonum))
359 goto nla_put_failure;
360
361 nla_nest_end(skb, nest_parms);
362 return 0;
363
364nla_put_failure:
365 return -1;
366}
367
368static int
369nfnl_cthelper_dump_policy(struct sk_buff *skb,
370 struct nf_conntrack_helper *helper)
371{
372 int i;
373 struct nlattr *nest_parms1, *nest_parms2;
374
375 nest_parms1 = nla_nest_start(skb, NFCTH_POLICY | NLA_F_NESTED);
376 if (nest_parms1 == NULL)
377 goto nla_put_failure;
378
379 if (nla_put_be32(skb, NFCTH_POLICY_SET_NUM,
380 htonl(helper->expect_class_max)))
381 goto nla_put_failure;
382
383 for (i=0; i<helper->expect_class_max; i++) {
384 nest_parms2 = nla_nest_start(skb,
385 (NFCTH_POLICY_SET+i) | NLA_F_NESTED);
386 if (nest_parms2 == NULL)
387 goto nla_put_failure;
388
389 if (nla_put_string(skb, NFCTH_POLICY_NAME,
390 helper->expect_policy[i].name))
391 goto nla_put_failure;
392
393 if (nla_put_be32(skb, NFCTH_POLICY_EXPECT_MAX,
394 htonl(helper->expect_policy[i].max_expected)))
395 goto nla_put_failure;
396
397 if (nla_put_be32(skb, NFCTH_POLICY_EXPECT_TIMEOUT,
398 htonl(helper->expect_policy[i].timeout)))
399 goto nla_put_failure;
400
401 nla_nest_end(skb, nest_parms2);
402 }
403 nla_nest_end(skb, nest_parms1);
404 return 0;
405
406nla_put_failure:
407 return -1;
408}
409
410static int
411nfnl_cthelper_fill_info(struct sk_buff *skb, u32 portid, u32 seq, u32 type,
412 int event, struct nf_conntrack_helper *helper)
413{
414 struct nlmsghdr *nlh;
415 struct nfgenmsg *nfmsg;
416 unsigned int flags = portid ? NLM_F_MULTI : 0;
417 int status;
418
419 event |= NFNL_SUBSYS_CTHELPER << 8;
420 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*nfmsg), flags);
421 if (nlh == NULL)
422 goto nlmsg_failure;
423
424 nfmsg = nlmsg_data(nlh);
425 nfmsg->nfgen_family = AF_UNSPEC;
426 nfmsg->version = NFNETLINK_V0;
427 nfmsg->res_id = 0;
428
429 if (nla_put_string(skb, NFCTH_NAME, helper->name))
430 goto nla_put_failure;
431
432 if (nla_put_be32(skb, NFCTH_QUEUE_NUM, htonl(helper->queue_num)))
433 goto nla_put_failure;
434
435 if (nfnl_cthelper_dump_tuple(skb, helper) < 0)
436 goto nla_put_failure;
437
438 if (nfnl_cthelper_dump_policy(skb, helper) < 0)
439 goto nla_put_failure;
440
441 if (nla_put_be32(skb, NFCTH_PRIV_DATA_LEN, htonl(helper->data_len)))
442 goto nla_put_failure;
443
444 if (helper->flags & NF_CT_HELPER_F_CONFIGURED)
445 status = NFCT_HELPER_STATUS_ENABLED;
446 else
447 status = NFCT_HELPER_STATUS_DISABLED;
448
449 if (nla_put_be32(skb, NFCTH_STATUS, htonl(status)))
450 goto nla_put_failure;
451
452 nlmsg_end(skb, nlh);
453 return skb->len;
454
455nlmsg_failure:
456nla_put_failure:
457 nlmsg_cancel(skb, nlh);
458 return -1;
459}
460
461static int
462nfnl_cthelper_dump_table(struct sk_buff *skb, struct netlink_callback *cb)
463{
464 struct nf_conntrack_helper *cur, *last;
465
466 rcu_read_lock();
467 last = (struct nf_conntrack_helper *)cb->args[1];
468 for (; cb->args[0] < nf_ct_helper_hsize; cb->args[0]++) {
469restart:
470 hlist_for_each_entry_rcu(cur,
471 &nf_ct_helper_hash[cb->args[0]], hnode) {
472
473 /* skip non-userspace conntrack helpers. */
474 if (!(cur->flags & NF_CT_HELPER_F_USERSPACE))
475 continue;
476
477 if (cb->args[1]) {
478 if (cur != last)
479 continue;
480 cb->args[1] = 0;
481 }
482 if (nfnl_cthelper_fill_info(skb,
483 NETLINK_CB(cb->skb).portid,
484 cb->nlh->nlmsg_seq,
485 NFNL_MSG_TYPE(cb->nlh->nlmsg_type),
486 NFNL_MSG_CTHELPER_NEW, cur) < 0) {
487 cb->args[1] = (unsigned long)cur;
488 goto out;
489 }
490 }
491 }
492 if (cb->args[1]) {
493 cb->args[1] = 0;
494 goto restart;
495 }
496out:
497 rcu_read_unlock();
498 return skb->len;
499}
500
501static int nfnl_cthelper_get(struct net *net, struct sock *nfnl,
502 struct sk_buff *skb, const struct nlmsghdr *nlh,
503 const struct nlattr * const tb[])
504{
505 int ret = -ENOENT, i;
506 struct nf_conntrack_helper *cur;
507 struct sk_buff *skb2;
508 char *helper_name = NULL;
509 struct nf_conntrack_tuple tuple;
510 bool tuple_set = false;
511
512 if (nlh->nlmsg_flags & NLM_F_DUMP) {
513 struct netlink_dump_control c = {
514 .dump = nfnl_cthelper_dump_table,
515 };
516 return netlink_dump_start(nfnl, skb, nlh, &c);
517 }
518
519 if (tb[NFCTH_NAME])
520 helper_name = nla_data(tb[NFCTH_NAME]);
521
522 if (tb[NFCTH_TUPLE]) {
523 ret = nfnl_cthelper_parse_tuple(&tuple, tb[NFCTH_TUPLE]);
524 if (ret < 0)
525 return ret;
526
527 tuple_set = true;
528 }
529
530 for (i = 0; i < nf_ct_helper_hsize; i++) {
531 hlist_for_each_entry_rcu(cur, &nf_ct_helper_hash[i], hnode) {
532
533 /* skip non-userspace conntrack helpers. */
534 if (!(cur->flags & NF_CT_HELPER_F_USERSPACE))
535 continue;
536
537 if (helper_name && strncmp(cur->name, helper_name,
538 NF_CT_HELPER_NAME_LEN) != 0) {
539 continue;
540 }
541 if (tuple_set &&
542 (tuple.src.l3num != cur->tuple.src.l3num ||
543 tuple.dst.protonum != cur->tuple.dst.protonum))
544 continue;
545
546 skb2 = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
547 if (skb2 == NULL) {
548 ret = -ENOMEM;
549 break;
550 }
551
552 ret = nfnl_cthelper_fill_info(skb2, NETLINK_CB(skb).portid,
553 nlh->nlmsg_seq,
554 NFNL_MSG_TYPE(nlh->nlmsg_type),
555 NFNL_MSG_CTHELPER_NEW, cur);
556 if (ret <= 0) {
557 kfree_skb(skb2);
558 break;
559 }
560
561 ret = netlink_unicast(nfnl, skb2, NETLINK_CB(skb).portid,
562 MSG_DONTWAIT);
563 if (ret > 0)
564 ret = 0;
565
566 /* this avoids a loop in nfnetlink. */
567 return ret == -EAGAIN ? -ENOBUFS : ret;
568 }
569 }
570 return ret;
571}
572
573static int nfnl_cthelper_del(struct net *net, struct sock *nfnl,
574 struct sk_buff *skb, const struct nlmsghdr *nlh,
575 const struct nlattr * const tb[])
576{
577 char *helper_name = NULL;
578 struct nf_conntrack_helper *cur;
579 struct hlist_node *tmp;
580 struct nf_conntrack_tuple tuple;
581 bool tuple_set = false, found = false;
582 int i, j = 0, ret;
583
584 if (tb[NFCTH_NAME])
585 helper_name = nla_data(tb[NFCTH_NAME]);
586
587 if (tb[NFCTH_TUPLE]) {
588 ret = nfnl_cthelper_parse_tuple(&tuple, tb[NFCTH_TUPLE]);
589 if (ret < 0)
590 return ret;
591
592 tuple_set = true;
593 }
594
595 for (i = 0; i < nf_ct_helper_hsize; i++) {
596 hlist_for_each_entry_safe(cur, tmp, &nf_ct_helper_hash[i],
597 hnode) {
598 /* skip non-userspace conntrack helpers. */
599 if (!(cur->flags & NF_CT_HELPER_F_USERSPACE))
600 continue;
601
602 j++;
603
604 if (helper_name && strncmp(cur->name, helper_name,
605 NF_CT_HELPER_NAME_LEN) != 0) {
606 continue;
607 }
608 if (tuple_set &&
609 (tuple.src.l3num != cur->tuple.src.l3num ||
610 tuple.dst.protonum != cur->tuple.dst.protonum))
611 continue;
612
613 found = true;
614 nf_conntrack_helper_unregister(cur);
615 }
616 }
617 /* Make sure we return success if we flush and there is no helpers */
618 return (found || j == 0) ? 0 : -ENOENT;
619}
620
621static const struct nla_policy nfnl_cthelper_policy[NFCTH_MAX+1] = {
622 [NFCTH_NAME] = { .type = NLA_NUL_STRING,
623 .len = NF_CT_HELPER_NAME_LEN-1 },
624 [NFCTH_QUEUE_NUM] = { .type = NLA_U32, },
625};
626
627static const struct nfnl_callback nfnl_cthelper_cb[NFNL_MSG_CTHELPER_MAX] = {
628 [NFNL_MSG_CTHELPER_NEW] = { .call = nfnl_cthelper_new,
629 .attr_count = NFCTH_MAX,
630 .policy = nfnl_cthelper_policy },
631 [NFNL_MSG_CTHELPER_GET] = { .call = nfnl_cthelper_get,
632 .attr_count = NFCTH_MAX,
633 .policy = nfnl_cthelper_policy },
634 [NFNL_MSG_CTHELPER_DEL] = { .call = nfnl_cthelper_del,
635 .attr_count = NFCTH_MAX,
636 .policy = nfnl_cthelper_policy },
637};
638
639static const struct nfnetlink_subsystem nfnl_cthelper_subsys = {
640 .name = "cthelper",
641 .subsys_id = NFNL_SUBSYS_CTHELPER,
642 .cb_count = NFNL_MSG_CTHELPER_MAX,
643 .cb = nfnl_cthelper_cb,
644};
645
646MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_CTHELPER);
647
648static int __init nfnl_cthelper_init(void)
649{
650 int ret;
651
652 ret = nfnetlink_subsys_register(&nfnl_cthelper_subsys);
653 if (ret < 0) {
654 pr_err("nfnl_cthelper: cannot register with nfnetlink.\n");
655 goto err_out;
656 }
657 return 0;
658err_out:
659 return ret;
660}
661
662static void __exit nfnl_cthelper_exit(void)
663{
664 struct nf_conntrack_helper *cur;
665 struct hlist_node *tmp;
666 int i;
667
668 nfnetlink_subsys_unregister(&nfnl_cthelper_subsys);
669
670 for (i=0; i<nf_ct_helper_hsize; i++) {
671 hlist_for_each_entry_safe(cur, tmp, &nf_ct_helper_hash[i],
672 hnode) {
673 /* skip non-userspace conntrack helpers. */
674 if (!(cur->flags & NF_CT_HELPER_F_USERSPACE))
675 continue;
676
677 nf_conntrack_helper_unregister(cur);
678 }
679 }
680}
681
682module_init(nfnl_cthelper_init);
683module_exit(nfnl_cthelper_exit);
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * (C) 2012 Pablo Neira Ayuso <pablo@netfilter.org>
4 *
5 * This software has been sponsored by Vyatta Inc. <http://www.vyatta.com>
6 */
7#include <linux/init.h>
8#include <linux/module.h>
9#include <linux/kernel.h>
10#include <linux/skbuff.h>
11#include <linux/netlink.h>
12#include <linux/rculist.h>
13#include <linux/slab.h>
14#include <linux/types.h>
15#include <linux/list.h>
16#include <linux/errno.h>
17#include <linux/capability.h>
18#include <net/netlink.h>
19#include <net/sock.h>
20
21#include <net/netfilter/nf_conntrack_helper.h>
22#include <net/netfilter/nf_conntrack_expect.h>
23#include <net/netfilter/nf_conntrack_ecache.h>
24
25#include <linux/netfilter/nfnetlink.h>
26#include <linux/netfilter/nfnetlink_conntrack.h>
27#include <linux/netfilter/nfnetlink_cthelper.h>
28
29MODULE_LICENSE("GPL");
30MODULE_AUTHOR("Pablo Neira Ayuso <pablo@netfilter.org>");
31MODULE_DESCRIPTION("nfnl_cthelper: User-space connection tracking helpers");
32
33struct nfnl_cthelper {
34 struct list_head list;
35 struct nf_conntrack_helper helper;
36};
37
38static LIST_HEAD(nfnl_cthelper_list);
39
40static int
41nfnl_userspace_cthelper(struct sk_buff *skb, unsigned int protoff,
42 struct nf_conn *ct, enum ip_conntrack_info ctinfo)
43{
44 const struct nf_conn_help *help;
45 struct nf_conntrack_helper *helper;
46
47 help = nfct_help(ct);
48 if (help == NULL)
49 return NF_DROP;
50
51 /* rcu_read_lock()ed by nf_hook_thresh */
52 helper = rcu_dereference(help->helper);
53 if (helper == NULL)
54 return NF_DROP;
55
56 /* This is a user-space helper not yet configured, skip. */
57 if ((helper->flags &
58 (NF_CT_HELPER_F_USERSPACE | NF_CT_HELPER_F_CONFIGURED)) ==
59 NF_CT_HELPER_F_USERSPACE)
60 return NF_ACCEPT;
61
62 /* If the user-space helper is not available, don't block traffic. */
63 return NF_QUEUE_NR(helper->queue_num) | NF_VERDICT_FLAG_QUEUE_BYPASS;
64}
65
66static const struct nla_policy nfnl_cthelper_tuple_pol[NFCTH_TUPLE_MAX+1] = {
67 [NFCTH_TUPLE_L3PROTONUM] = { .type = NLA_U16, },
68 [NFCTH_TUPLE_L4PROTONUM] = { .type = NLA_U8, },
69};
70
71static int
72nfnl_cthelper_parse_tuple(struct nf_conntrack_tuple *tuple,
73 const struct nlattr *attr)
74{
75 int err;
76 struct nlattr *tb[NFCTH_TUPLE_MAX+1];
77
78 err = nla_parse_nested_deprecated(tb, NFCTH_TUPLE_MAX, attr,
79 nfnl_cthelper_tuple_pol, NULL);
80 if (err < 0)
81 return err;
82
83 if (!tb[NFCTH_TUPLE_L3PROTONUM] || !tb[NFCTH_TUPLE_L4PROTONUM])
84 return -EINVAL;
85
86 /* Not all fields are initialized so first zero the tuple */
87 memset(tuple, 0, sizeof(struct nf_conntrack_tuple));
88
89 tuple->src.l3num = ntohs(nla_get_be16(tb[NFCTH_TUPLE_L3PROTONUM]));
90 tuple->dst.protonum = nla_get_u8(tb[NFCTH_TUPLE_L4PROTONUM]);
91
92 return 0;
93}
94
95static int
96nfnl_cthelper_from_nlattr(struct nlattr *attr, struct nf_conn *ct)
97{
98 struct nf_conn_help *help = nfct_help(ct);
99
100 if (attr == NULL)
101 return -EINVAL;
102
103 if (help->helper->data_len == 0)
104 return -EINVAL;
105
106 nla_memcpy(help->data, nla_data(attr), sizeof(help->data));
107 return 0;
108}
109
110static int
111nfnl_cthelper_to_nlattr(struct sk_buff *skb, const struct nf_conn *ct)
112{
113 const struct nf_conn_help *help = nfct_help(ct);
114
115 if (help->helper->data_len &&
116 nla_put(skb, CTA_HELP_INFO, help->helper->data_len, &help->data))
117 goto nla_put_failure;
118
119 return 0;
120
121nla_put_failure:
122 return -ENOSPC;
123}
124
125static const struct nla_policy nfnl_cthelper_expect_pol[NFCTH_POLICY_MAX+1] = {
126 [NFCTH_POLICY_NAME] = { .type = NLA_NUL_STRING,
127 .len = NF_CT_HELPER_NAME_LEN-1 },
128 [NFCTH_POLICY_EXPECT_MAX] = { .type = NLA_U32, },
129 [NFCTH_POLICY_EXPECT_TIMEOUT] = { .type = NLA_U32, },
130};
131
132static int
133nfnl_cthelper_expect_policy(struct nf_conntrack_expect_policy *expect_policy,
134 const struct nlattr *attr)
135{
136 int err;
137 struct nlattr *tb[NFCTH_POLICY_MAX+1];
138
139 err = nla_parse_nested_deprecated(tb, NFCTH_POLICY_MAX, attr,
140 nfnl_cthelper_expect_pol, NULL);
141 if (err < 0)
142 return err;
143
144 if (!tb[NFCTH_POLICY_NAME] ||
145 !tb[NFCTH_POLICY_EXPECT_MAX] ||
146 !tb[NFCTH_POLICY_EXPECT_TIMEOUT])
147 return -EINVAL;
148
149 nla_strlcpy(expect_policy->name,
150 tb[NFCTH_POLICY_NAME], NF_CT_HELPER_NAME_LEN);
151 expect_policy->max_expected =
152 ntohl(nla_get_be32(tb[NFCTH_POLICY_EXPECT_MAX]));
153 if (expect_policy->max_expected > NF_CT_EXPECT_MAX_CNT)
154 return -EINVAL;
155
156 expect_policy->timeout =
157 ntohl(nla_get_be32(tb[NFCTH_POLICY_EXPECT_TIMEOUT]));
158
159 return 0;
160}
161
162static const struct nla_policy
163nfnl_cthelper_expect_policy_set[NFCTH_POLICY_SET_MAX+1] = {
164 [NFCTH_POLICY_SET_NUM] = { .type = NLA_U32, },
165};
166
167static int
168nfnl_cthelper_parse_expect_policy(struct nf_conntrack_helper *helper,
169 const struct nlattr *attr)
170{
171 int i, ret;
172 struct nf_conntrack_expect_policy *expect_policy;
173 struct nlattr *tb[NFCTH_POLICY_SET_MAX+1];
174 unsigned int class_max;
175
176 ret = nla_parse_nested_deprecated(tb, NFCTH_POLICY_SET_MAX, attr,
177 nfnl_cthelper_expect_policy_set,
178 NULL);
179 if (ret < 0)
180 return ret;
181
182 if (!tb[NFCTH_POLICY_SET_NUM])
183 return -EINVAL;
184
185 class_max = ntohl(nla_get_be32(tb[NFCTH_POLICY_SET_NUM]));
186 if (class_max == 0)
187 return -EINVAL;
188 if (class_max > NF_CT_MAX_EXPECT_CLASSES)
189 return -EOVERFLOW;
190
191 expect_policy = kcalloc(class_max,
192 sizeof(struct nf_conntrack_expect_policy),
193 GFP_KERNEL);
194 if (expect_policy == NULL)
195 return -ENOMEM;
196
197 for (i = 0; i < class_max; i++) {
198 if (!tb[NFCTH_POLICY_SET+i])
199 goto err;
200
201 ret = nfnl_cthelper_expect_policy(&expect_policy[i],
202 tb[NFCTH_POLICY_SET+i]);
203 if (ret < 0)
204 goto err;
205 }
206
207 helper->expect_class_max = class_max - 1;
208 helper->expect_policy = expect_policy;
209 return 0;
210err:
211 kfree(expect_policy);
212 return -EINVAL;
213}
214
215static int
216nfnl_cthelper_create(const struct nlattr * const tb[],
217 struct nf_conntrack_tuple *tuple)
218{
219 struct nf_conntrack_helper *helper;
220 struct nfnl_cthelper *nfcth;
221 unsigned int size;
222 int ret;
223
224 if (!tb[NFCTH_TUPLE] || !tb[NFCTH_POLICY] || !tb[NFCTH_PRIV_DATA_LEN])
225 return -EINVAL;
226
227 nfcth = kzalloc(sizeof(*nfcth), GFP_KERNEL);
228 if (nfcth == NULL)
229 return -ENOMEM;
230 helper = &nfcth->helper;
231
232 ret = nfnl_cthelper_parse_expect_policy(helper, tb[NFCTH_POLICY]);
233 if (ret < 0)
234 goto err1;
235
236 nla_strlcpy(helper->name,
237 tb[NFCTH_NAME], NF_CT_HELPER_NAME_LEN);
238 size = ntohl(nla_get_be32(tb[NFCTH_PRIV_DATA_LEN]));
239 if (size > FIELD_SIZEOF(struct nf_conn_help, data)) {
240 ret = -ENOMEM;
241 goto err2;
242 }
243
244 helper->flags |= NF_CT_HELPER_F_USERSPACE;
245 memcpy(&helper->tuple, tuple, sizeof(struct nf_conntrack_tuple));
246
247 helper->me = THIS_MODULE;
248 helper->help = nfnl_userspace_cthelper;
249 helper->from_nlattr = nfnl_cthelper_from_nlattr;
250 helper->to_nlattr = nfnl_cthelper_to_nlattr;
251
252 /* Default to queue number zero, this can be updated at any time. */
253 if (tb[NFCTH_QUEUE_NUM])
254 helper->queue_num = ntohl(nla_get_be32(tb[NFCTH_QUEUE_NUM]));
255
256 if (tb[NFCTH_STATUS]) {
257 int status = ntohl(nla_get_be32(tb[NFCTH_STATUS]));
258
259 switch(status) {
260 case NFCT_HELPER_STATUS_ENABLED:
261 helper->flags |= NF_CT_HELPER_F_CONFIGURED;
262 break;
263 case NFCT_HELPER_STATUS_DISABLED:
264 helper->flags &= ~NF_CT_HELPER_F_CONFIGURED;
265 break;
266 }
267 }
268
269 ret = nf_conntrack_helper_register(helper);
270 if (ret < 0)
271 goto err2;
272
273 list_add_tail(&nfcth->list, &nfnl_cthelper_list);
274 return 0;
275err2:
276 kfree(helper->expect_policy);
277err1:
278 kfree(nfcth);
279 return ret;
280}
281
282static int
283nfnl_cthelper_update_policy_one(const struct nf_conntrack_expect_policy *policy,
284 struct nf_conntrack_expect_policy *new_policy,
285 const struct nlattr *attr)
286{
287 struct nlattr *tb[NFCTH_POLICY_MAX + 1];
288 int err;
289
290 err = nla_parse_nested_deprecated(tb, NFCTH_POLICY_MAX, attr,
291 nfnl_cthelper_expect_pol, NULL);
292 if (err < 0)
293 return err;
294
295 if (!tb[NFCTH_POLICY_NAME] ||
296 !tb[NFCTH_POLICY_EXPECT_MAX] ||
297 !tb[NFCTH_POLICY_EXPECT_TIMEOUT])
298 return -EINVAL;
299
300 if (nla_strcmp(tb[NFCTH_POLICY_NAME], policy->name))
301 return -EBUSY;
302
303 new_policy->max_expected =
304 ntohl(nla_get_be32(tb[NFCTH_POLICY_EXPECT_MAX]));
305 if (new_policy->max_expected > NF_CT_EXPECT_MAX_CNT)
306 return -EINVAL;
307
308 new_policy->timeout =
309 ntohl(nla_get_be32(tb[NFCTH_POLICY_EXPECT_TIMEOUT]));
310
311 return 0;
312}
313
314static int nfnl_cthelper_update_policy_all(struct nlattr *tb[],
315 struct nf_conntrack_helper *helper)
316{
317 struct nf_conntrack_expect_policy *new_policy;
318 struct nf_conntrack_expect_policy *policy;
319 int i, ret = 0;
320
321 new_policy = kmalloc_array(helper->expect_class_max + 1,
322 sizeof(*new_policy), GFP_KERNEL);
323 if (!new_policy)
324 return -ENOMEM;
325
326 /* Check first that all policy attributes are well-formed, so we don't
327 * leave things in inconsistent state on errors.
328 */
329 for (i = 0; i < helper->expect_class_max + 1; i++) {
330
331 if (!tb[NFCTH_POLICY_SET + i]) {
332 ret = -EINVAL;
333 goto err;
334 }
335
336 ret = nfnl_cthelper_update_policy_one(&helper->expect_policy[i],
337 &new_policy[i],
338 tb[NFCTH_POLICY_SET + i]);
339 if (ret < 0)
340 goto err;
341 }
342 /* Now we can safely update them. */
343 for (i = 0; i < helper->expect_class_max + 1; i++) {
344 policy = (struct nf_conntrack_expect_policy *)
345 &helper->expect_policy[i];
346 policy->max_expected = new_policy->max_expected;
347 policy->timeout = new_policy->timeout;
348 }
349
350err:
351 kfree(new_policy);
352 return ret;
353}
354
355static int nfnl_cthelper_update_policy(struct nf_conntrack_helper *helper,
356 const struct nlattr *attr)
357{
358 struct nlattr *tb[NFCTH_POLICY_SET_MAX + 1];
359 unsigned int class_max;
360 int err;
361
362 err = nla_parse_nested_deprecated(tb, NFCTH_POLICY_SET_MAX, attr,
363 nfnl_cthelper_expect_policy_set,
364 NULL);
365 if (err < 0)
366 return err;
367
368 if (!tb[NFCTH_POLICY_SET_NUM])
369 return -EINVAL;
370
371 class_max = ntohl(nla_get_be32(tb[NFCTH_POLICY_SET_NUM]));
372 if (helper->expect_class_max + 1 != class_max)
373 return -EBUSY;
374
375 return nfnl_cthelper_update_policy_all(tb, helper);
376}
377
378static int
379nfnl_cthelper_update(const struct nlattr * const tb[],
380 struct nf_conntrack_helper *helper)
381{
382 int ret;
383
384 if (tb[NFCTH_PRIV_DATA_LEN])
385 return -EBUSY;
386
387 if (tb[NFCTH_POLICY]) {
388 ret = nfnl_cthelper_update_policy(helper, tb[NFCTH_POLICY]);
389 if (ret < 0)
390 return ret;
391 }
392 if (tb[NFCTH_QUEUE_NUM])
393 helper->queue_num = ntohl(nla_get_be32(tb[NFCTH_QUEUE_NUM]));
394
395 if (tb[NFCTH_STATUS]) {
396 int status = ntohl(nla_get_be32(tb[NFCTH_STATUS]));
397
398 switch(status) {
399 case NFCT_HELPER_STATUS_ENABLED:
400 helper->flags |= NF_CT_HELPER_F_CONFIGURED;
401 break;
402 case NFCT_HELPER_STATUS_DISABLED:
403 helper->flags &= ~NF_CT_HELPER_F_CONFIGURED;
404 break;
405 }
406 }
407 return 0;
408}
409
410static int nfnl_cthelper_new(struct net *net, struct sock *nfnl,
411 struct sk_buff *skb, const struct nlmsghdr *nlh,
412 const struct nlattr * const tb[],
413 struct netlink_ext_ack *extack)
414{
415 const char *helper_name;
416 struct nf_conntrack_helper *cur, *helper = NULL;
417 struct nf_conntrack_tuple tuple;
418 struct nfnl_cthelper *nlcth;
419 int ret = 0;
420
421 if (!capable(CAP_NET_ADMIN))
422 return -EPERM;
423
424 if (!tb[NFCTH_NAME] || !tb[NFCTH_TUPLE])
425 return -EINVAL;
426
427 helper_name = nla_data(tb[NFCTH_NAME]);
428
429 ret = nfnl_cthelper_parse_tuple(&tuple, tb[NFCTH_TUPLE]);
430 if (ret < 0)
431 return ret;
432
433 list_for_each_entry(nlcth, &nfnl_cthelper_list, list) {
434 cur = &nlcth->helper;
435
436 if (strncmp(cur->name, helper_name, NF_CT_HELPER_NAME_LEN))
437 continue;
438
439 if ((tuple.src.l3num != cur->tuple.src.l3num ||
440 tuple.dst.protonum != cur->tuple.dst.protonum))
441 continue;
442
443 if (nlh->nlmsg_flags & NLM_F_EXCL)
444 return -EEXIST;
445
446 helper = cur;
447 break;
448 }
449
450 if (helper == NULL)
451 ret = nfnl_cthelper_create(tb, &tuple);
452 else
453 ret = nfnl_cthelper_update(tb, helper);
454
455 return ret;
456}
457
458static int
459nfnl_cthelper_dump_tuple(struct sk_buff *skb,
460 struct nf_conntrack_helper *helper)
461{
462 struct nlattr *nest_parms;
463
464 nest_parms = nla_nest_start(skb, NFCTH_TUPLE);
465 if (nest_parms == NULL)
466 goto nla_put_failure;
467
468 if (nla_put_be16(skb, NFCTH_TUPLE_L3PROTONUM,
469 htons(helper->tuple.src.l3num)))
470 goto nla_put_failure;
471
472 if (nla_put_u8(skb, NFCTH_TUPLE_L4PROTONUM, helper->tuple.dst.protonum))
473 goto nla_put_failure;
474
475 nla_nest_end(skb, nest_parms);
476 return 0;
477
478nla_put_failure:
479 return -1;
480}
481
482static int
483nfnl_cthelper_dump_policy(struct sk_buff *skb,
484 struct nf_conntrack_helper *helper)
485{
486 int i;
487 struct nlattr *nest_parms1, *nest_parms2;
488
489 nest_parms1 = nla_nest_start(skb, NFCTH_POLICY);
490 if (nest_parms1 == NULL)
491 goto nla_put_failure;
492
493 if (nla_put_be32(skb, NFCTH_POLICY_SET_NUM,
494 htonl(helper->expect_class_max + 1)))
495 goto nla_put_failure;
496
497 for (i = 0; i < helper->expect_class_max + 1; i++) {
498 nest_parms2 = nla_nest_start(skb, (NFCTH_POLICY_SET + i));
499 if (nest_parms2 == NULL)
500 goto nla_put_failure;
501
502 if (nla_put_string(skb, NFCTH_POLICY_NAME,
503 helper->expect_policy[i].name))
504 goto nla_put_failure;
505
506 if (nla_put_be32(skb, NFCTH_POLICY_EXPECT_MAX,
507 htonl(helper->expect_policy[i].max_expected)))
508 goto nla_put_failure;
509
510 if (nla_put_be32(skb, NFCTH_POLICY_EXPECT_TIMEOUT,
511 htonl(helper->expect_policy[i].timeout)))
512 goto nla_put_failure;
513
514 nla_nest_end(skb, nest_parms2);
515 }
516 nla_nest_end(skb, nest_parms1);
517 return 0;
518
519nla_put_failure:
520 return -1;
521}
522
523static int
524nfnl_cthelper_fill_info(struct sk_buff *skb, u32 portid, u32 seq, u32 type,
525 int event, struct nf_conntrack_helper *helper)
526{
527 struct nlmsghdr *nlh;
528 struct nfgenmsg *nfmsg;
529 unsigned int flags = portid ? NLM_F_MULTI : 0;
530 int status;
531
532 event = nfnl_msg_type(NFNL_SUBSYS_CTHELPER, event);
533 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*nfmsg), flags);
534 if (nlh == NULL)
535 goto nlmsg_failure;
536
537 nfmsg = nlmsg_data(nlh);
538 nfmsg->nfgen_family = AF_UNSPEC;
539 nfmsg->version = NFNETLINK_V0;
540 nfmsg->res_id = 0;
541
542 if (nla_put_string(skb, NFCTH_NAME, helper->name))
543 goto nla_put_failure;
544
545 if (nla_put_be32(skb, NFCTH_QUEUE_NUM, htonl(helper->queue_num)))
546 goto nla_put_failure;
547
548 if (nfnl_cthelper_dump_tuple(skb, helper) < 0)
549 goto nla_put_failure;
550
551 if (nfnl_cthelper_dump_policy(skb, helper) < 0)
552 goto nla_put_failure;
553
554 if (nla_put_be32(skb, NFCTH_PRIV_DATA_LEN, htonl(helper->data_len)))
555 goto nla_put_failure;
556
557 if (helper->flags & NF_CT_HELPER_F_CONFIGURED)
558 status = NFCT_HELPER_STATUS_ENABLED;
559 else
560 status = NFCT_HELPER_STATUS_DISABLED;
561
562 if (nla_put_be32(skb, NFCTH_STATUS, htonl(status)))
563 goto nla_put_failure;
564
565 nlmsg_end(skb, nlh);
566 return skb->len;
567
568nlmsg_failure:
569nla_put_failure:
570 nlmsg_cancel(skb, nlh);
571 return -1;
572}
573
574static int
575nfnl_cthelper_dump_table(struct sk_buff *skb, struct netlink_callback *cb)
576{
577 struct nf_conntrack_helper *cur, *last;
578
579 rcu_read_lock();
580 last = (struct nf_conntrack_helper *)cb->args[1];
581 for (; cb->args[0] < nf_ct_helper_hsize; cb->args[0]++) {
582restart:
583 hlist_for_each_entry_rcu(cur,
584 &nf_ct_helper_hash[cb->args[0]], hnode) {
585
586 /* skip non-userspace conntrack helpers. */
587 if (!(cur->flags & NF_CT_HELPER_F_USERSPACE))
588 continue;
589
590 if (cb->args[1]) {
591 if (cur != last)
592 continue;
593 cb->args[1] = 0;
594 }
595 if (nfnl_cthelper_fill_info(skb,
596 NETLINK_CB(cb->skb).portid,
597 cb->nlh->nlmsg_seq,
598 NFNL_MSG_TYPE(cb->nlh->nlmsg_type),
599 NFNL_MSG_CTHELPER_NEW, cur) < 0) {
600 cb->args[1] = (unsigned long)cur;
601 goto out;
602 }
603 }
604 }
605 if (cb->args[1]) {
606 cb->args[1] = 0;
607 goto restart;
608 }
609out:
610 rcu_read_unlock();
611 return skb->len;
612}
613
614static int nfnl_cthelper_get(struct net *net, struct sock *nfnl,
615 struct sk_buff *skb, const struct nlmsghdr *nlh,
616 const struct nlattr * const tb[],
617 struct netlink_ext_ack *extack)
618{
619 int ret = -ENOENT;
620 struct nf_conntrack_helper *cur;
621 struct sk_buff *skb2;
622 char *helper_name = NULL;
623 struct nf_conntrack_tuple tuple;
624 struct nfnl_cthelper *nlcth;
625 bool tuple_set = false;
626
627 if (!capable(CAP_NET_ADMIN))
628 return -EPERM;
629
630 if (nlh->nlmsg_flags & NLM_F_DUMP) {
631 struct netlink_dump_control c = {
632 .dump = nfnl_cthelper_dump_table,
633 };
634 return netlink_dump_start(nfnl, skb, nlh, &c);
635 }
636
637 if (tb[NFCTH_NAME])
638 helper_name = nla_data(tb[NFCTH_NAME]);
639
640 if (tb[NFCTH_TUPLE]) {
641 ret = nfnl_cthelper_parse_tuple(&tuple, tb[NFCTH_TUPLE]);
642 if (ret < 0)
643 return ret;
644
645 tuple_set = true;
646 }
647
648 list_for_each_entry(nlcth, &nfnl_cthelper_list, list) {
649 cur = &nlcth->helper;
650 if (helper_name &&
651 strncmp(cur->name, helper_name, NF_CT_HELPER_NAME_LEN))
652 continue;
653
654 if (tuple_set &&
655 (tuple.src.l3num != cur->tuple.src.l3num ||
656 tuple.dst.protonum != cur->tuple.dst.protonum))
657 continue;
658
659 skb2 = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
660 if (skb2 == NULL) {
661 ret = -ENOMEM;
662 break;
663 }
664
665 ret = nfnl_cthelper_fill_info(skb2, NETLINK_CB(skb).portid,
666 nlh->nlmsg_seq,
667 NFNL_MSG_TYPE(nlh->nlmsg_type),
668 NFNL_MSG_CTHELPER_NEW, cur);
669 if (ret <= 0) {
670 kfree_skb(skb2);
671 break;
672 }
673
674 ret = netlink_unicast(nfnl, skb2, NETLINK_CB(skb).portid,
675 MSG_DONTWAIT);
676 if (ret > 0)
677 ret = 0;
678
679 /* this avoids a loop in nfnetlink. */
680 return ret == -EAGAIN ? -ENOBUFS : ret;
681 }
682 return ret;
683}
684
685static int nfnl_cthelper_del(struct net *net, struct sock *nfnl,
686 struct sk_buff *skb, const struct nlmsghdr *nlh,
687 const struct nlattr * const tb[],
688 struct netlink_ext_ack *extack)
689{
690 char *helper_name = NULL;
691 struct nf_conntrack_helper *cur;
692 struct nf_conntrack_tuple tuple;
693 bool tuple_set = false, found = false;
694 struct nfnl_cthelper *nlcth, *n;
695 int j = 0, ret;
696
697 if (!capable(CAP_NET_ADMIN))
698 return -EPERM;
699
700 if (tb[NFCTH_NAME])
701 helper_name = nla_data(tb[NFCTH_NAME]);
702
703 if (tb[NFCTH_TUPLE]) {
704 ret = nfnl_cthelper_parse_tuple(&tuple, tb[NFCTH_TUPLE]);
705 if (ret < 0)
706 return ret;
707
708 tuple_set = true;
709 }
710
711 ret = -ENOENT;
712 list_for_each_entry_safe(nlcth, n, &nfnl_cthelper_list, list) {
713 cur = &nlcth->helper;
714 j++;
715
716 if (helper_name &&
717 strncmp(cur->name, helper_name, NF_CT_HELPER_NAME_LEN))
718 continue;
719
720 if (tuple_set &&
721 (tuple.src.l3num != cur->tuple.src.l3num ||
722 tuple.dst.protonum != cur->tuple.dst.protonum))
723 continue;
724
725 if (refcount_dec_if_one(&cur->refcnt)) {
726 found = true;
727 nf_conntrack_helper_unregister(cur);
728 kfree(cur->expect_policy);
729
730 list_del(&nlcth->list);
731 kfree(nlcth);
732 } else {
733 ret = -EBUSY;
734 }
735 }
736
737 /* Make sure we return success if we flush and there is no helpers */
738 return (found || j == 0) ? 0 : ret;
739}
740
741static const struct nla_policy nfnl_cthelper_policy[NFCTH_MAX+1] = {
742 [NFCTH_NAME] = { .type = NLA_NUL_STRING,
743 .len = NF_CT_HELPER_NAME_LEN-1 },
744 [NFCTH_QUEUE_NUM] = { .type = NLA_U32, },
745};
746
747static const struct nfnl_callback nfnl_cthelper_cb[NFNL_MSG_CTHELPER_MAX] = {
748 [NFNL_MSG_CTHELPER_NEW] = { .call = nfnl_cthelper_new,
749 .attr_count = NFCTH_MAX,
750 .policy = nfnl_cthelper_policy },
751 [NFNL_MSG_CTHELPER_GET] = { .call = nfnl_cthelper_get,
752 .attr_count = NFCTH_MAX,
753 .policy = nfnl_cthelper_policy },
754 [NFNL_MSG_CTHELPER_DEL] = { .call = nfnl_cthelper_del,
755 .attr_count = NFCTH_MAX,
756 .policy = nfnl_cthelper_policy },
757};
758
759static const struct nfnetlink_subsystem nfnl_cthelper_subsys = {
760 .name = "cthelper",
761 .subsys_id = NFNL_SUBSYS_CTHELPER,
762 .cb_count = NFNL_MSG_CTHELPER_MAX,
763 .cb = nfnl_cthelper_cb,
764};
765
766MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_CTHELPER);
767
768static int __init nfnl_cthelper_init(void)
769{
770 int ret;
771
772 ret = nfnetlink_subsys_register(&nfnl_cthelper_subsys);
773 if (ret < 0) {
774 pr_err("nfnl_cthelper: cannot register with nfnetlink.\n");
775 goto err_out;
776 }
777 return 0;
778err_out:
779 return ret;
780}
781
782static void __exit nfnl_cthelper_exit(void)
783{
784 struct nf_conntrack_helper *cur;
785 struct nfnl_cthelper *nlcth, *n;
786
787 nfnetlink_subsys_unregister(&nfnl_cthelper_subsys);
788
789 list_for_each_entry_safe(nlcth, n, &nfnl_cthelper_list, list) {
790 cur = &nlcth->helper;
791
792 nf_conntrack_helper_unregister(cur);
793 kfree(cur->expect_policy);
794 kfree(nlcth);
795 }
796}
797
798module_init(nfnl_cthelper_init);
799module_exit(nfnl_cthelper_exit);