tools headers UAPI: Sync linux/prctl.h with the kernel sources
[linux-2.6-microblaze.git] / net / netfilter / nfnetlink_cthelper.c
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
29 MODULE_LICENSE("GPL");
30 MODULE_AUTHOR("Pablo Neira Ayuso <pablo@netfilter.org>");
31 MODULE_DESCRIPTION("nfnl_cthelper: User-space connection tracking helpers");
32
33 struct nfnl_cthelper {
34         struct list_head                list;
35         struct nf_conntrack_helper      helper;
36 };
37
38 static LIST_HEAD(nfnl_cthelper_list);
39
40 static int
41 nfnl_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
66 static 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
71 static int
72 nfnl_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
95 static int
96 nfnl_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, attr, sizeof(help->data));
107         return 0;
108 }
109
110 static int
111 nfnl_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
121 nla_put_failure:
122         return -ENOSPC;
123 }
124
125 static 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
132 static int
133 nfnl_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_strscpy(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
162 static const struct nla_policy
163 nfnl_cthelper_expect_policy_set[NFCTH_POLICY_SET_MAX+1] = {
164         [NFCTH_POLICY_SET_NUM] = { .type = NLA_U32, },
165 };
166
167 static int
168 nfnl_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;
210 err:
211         kfree(expect_policy);
212         return -EINVAL;
213 }
214
215 static int
216 nfnl_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_strscpy(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 > sizeof_field(struct nf_conn_help, data)) {
240                 ret = -ENOMEM;
241                 goto err2;
242         }
243         helper->data_len = size;
244
245         helper->flags |= NF_CT_HELPER_F_USERSPACE;
246         memcpy(&helper->tuple, tuple, sizeof(struct nf_conntrack_tuple));
247
248         helper->me = THIS_MODULE;
249         helper->help = nfnl_userspace_cthelper;
250         helper->from_nlattr = nfnl_cthelper_from_nlattr;
251         helper->to_nlattr = nfnl_cthelper_to_nlattr;
252
253         /* Default to queue number zero, this can be updated at any time. */
254         if (tb[NFCTH_QUEUE_NUM])
255                 helper->queue_num = ntohl(nla_get_be32(tb[NFCTH_QUEUE_NUM]));
256
257         if (tb[NFCTH_STATUS]) {
258                 int status = ntohl(nla_get_be32(tb[NFCTH_STATUS]));
259
260                 switch(status) {
261                 case NFCT_HELPER_STATUS_ENABLED:
262                         helper->flags |= NF_CT_HELPER_F_CONFIGURED;
263                         break;
264                 case NFCT_HELPER_STATUS_DISABLED:
265                         helper->flags &= ~NF_CT_HELPER_F_CONFIGURED;
266                         break;
267                 }
268         }
269
270         ret = nf_conntrack_helper_register(helper);
271         if (ret < 0)
272                 goto err2;
273
274         list_add_tail(&nfcth->list, &nfnl_cthelper_list);
275         return 0;
276 err2:
277         kfree(helper->expect_policy);
278 err1:
279         kfree(nfcth);
280         return ret;
281 }
282
283 static int
284 nfnl_cthelper_update_policy_one(const struct nf_conntrack_expect_policy *policy,
285                                 struct nf_conntrack_expect_policy *new_policy,
286                                 const struct nlattr *attr)
287 {
288         struct nlattr *tb[NFCTH_POLICY_MAX + 1];
289         int err;
290
291         err = nla_parse_nested_deprecated(tb, NFCTH_POLICY_MAX, attr,
292                                           nfnl_cthelper_expect_pol, NULL);
293         if (err < 0)
294                 return err;
295
296         if (!tb[NFCTH_POLICY_NAME] ||
297             !tb[NFCTH_POLICY_EXPECT_MAX] ||
298             !tb[NFCTH_POLICY_EXPECT_TIMEOUT])
299                 return -EINVAL;
300
301         if (nla_strcmp(tb[NFCTH_POLICY_NAME], policy->name))
302                 return -EBUSY;
303
304         new_policy->max_expected =
305                 ntohl(nla_get_be32(tb[NFCTH_POLICY_EXPECT_MAX]));
306         if (new_policy->max_expected > NF_CT_EXPECT_MAX_CNT)
307                 return -EINVAL;
308
309         new_policy->timeout =
310                 ntohl(nla_get_be32(tb[NFCTH_POLICY_EXPECT_TIMEOUT]));
311
312         return 0;
313 }
314
315 static int nfnl_cthelper_update_policy_all(struct nlattr *tb[],
316                                            struct nf_conntrack_helper *helper)
317 {
318         struct nf_conntrack_expect_policy *new_policy;
319         struct nf_conntrack_expect_policy *policy;
320         int i, ret = 0;
321
322         new_policy = kmalloc_array(helper->expect_class_max + 1,
323                                    sizeof(*new_policy), GFP_KERNEL);
324         if (!new_policy)
325                 return -ENOMEM;
326
327         /* Check first that all policy attributes are well-formed, so we don't
328          * leave things in inconsistent state on errors.
329          */
330         for (i = 0; i < helper->expect_class_max + 1; i++) {
331
332                 if (!tb[NFCTH_POLICY_SET + i]) {
333                         ret = -EINVAL;
334                         goto err;
335                 }
336
337                 ret = nfnl_cthelper_update_policy_one(&helper->expect_policy[i],
338                                                       &new_policy[i],
339                                                       tb[NFCTH_POLICY_SET + i]);
340                 if (ret < 0)
341                         goto err;
342         }
343         /* Now we can safely update them. */
344         for (i = 0; i < helper->expect_class_max + 1; i++) {
345                 policy = (struct nf_conntrack_expect_policy *)
346                                 &helper->expect_policy[i];
347                 policy->max_expected = new_policy->max_expected;
348                 policy->timeout = new_policy->timeout;
349         }
350
351 err:
352         kfree(new_policy);
353         return ret;
354 }
355
356 static int nfnl_cthelper_update_policy(struct nf_conntrack_helper *helper,
357                                        const struct nlattr *attr)
358 {
359         struct nlattr *tb[NFCTH_POLICY_SET_MAX + 1];
360         unsigned int class_max;
361         int err;
362
363         err = nla_parse_nested_deprecated(tb, NFCTH_POLICY_SET_MAX, attr,
364                                           nfnl_cthelper_expect_policy_set,
365                                           NULL);
366         if (err < 0)
367                 return err;
368
369         if (!tb[NFCTH_POLICY_SET_NUM])
370                 return -EINVAL;
371
372         class_max = ntohl(nla_get_be32(tb[NFCTH_POLICY_SET_NUM]));
373         if (helper->expect_class_max + 1 != class_max)
374                 return -EBUSY;
375
376         return nfnl_cthelper_update_policy_all(tb, helper);
377 }
378
379 static int
380 nfnl_cthelper_update(const struct nlattr * const tb[],
381                      struct nf_conntrack_helper *helper)
382 {
383         int ret;
384
385         if (tb[NFCTH_PRIV_DATA_LEN])
386                 return -EBUSY;
387
388         if (tb[NFCTH_POLICY]) {
389                 ret = nfnl_cthelper_update_policy(helper, tb[NFCTH_POLICY]);
390                 if (ret < 0)
391                         return ret;
392         }
393         if (tb[NFCTH_QUEUE_NUM])
394                 helper->queue_num = ntohl(nla_get_be32(tb[NFCTH_QUEUE_NUM]));
395
396         if (tb[NFCTH_STATUS]) {
397                 int status = ntohl(nla_get_be32(tb[NFCTH_STATUS]));
398
399                 switch(status) {
400                 case NFCT_HELPER_STATUS_ENABLED:
401                         helper->flags |= NF_CT_HELPER_F_CONFIGURED;
402                         break;
403                 case NFCT_HELPER_STATUS_DISABLED:
404                         helper->flags &= ~NF_CT_HELPER_F_CONFIGURED;
405                         break;
406                 }
407         }
408         return 0;
409 }
410
411 static int nfnl_cthelper_new(struct sk_buff *skb, const struct nfnl_info *info,
412                              const struct nlattr * const tb[])
413 {
414         const char *helper_name;
415         struct nf_conntrack_helper *cur, *helper = NULL;
416         struct nf_conntrack_tuple tuple;
417         struct nfnl_cthelper *nlcth;
418         int ret = 0;
419
420         if (!capable(CAP_NET_ADMIN))
421                 return -EPERM;
422
423         if (!tb[NFCTH_NAME] || !tb[NFCTH_TUPLE])
424                 return -EINVAL;
425
426         helper_name = nla_data(tb[NFCTH_NAME]);
427
428         ret = nfnl_cthelper_parse_tuple(&tuple, tb[NFCTH_TUPLE]);
429         if (ret < 0)
430                 return ret;
431
432         list_for_each_entry(nlcth, &nfnl_cthelper_list, list) {
433                 cur = &nlcth->helper;
434
435                 if (strncmp(cur->name, helper_name, NF_CT_HELPER_NAME_LEN))
436                         continue;
437
438                 if ((tuple.src.l3num != cur->tuple.src.l3num ||
439                      tuple.dst.protonum != cur->tuple.dst.protonum))
440                         continue;
441
442                 if (info->nlh->nlmsg_flags & NLM_F_EXCL)
443                         return -EEXIST;
444
445                 helper = cur;
446                 break;
447         }
448
449         if (helper == NULL)
450                 ret = nfnl_cthelper_create(tb, &tuple);
451         else
452                 ret = nfnl_cthelper_update(tb, helper);
453
454         return ret;
455 }
456
457 static int
458 nfnl_cthelper_dump_tuple(struct sk_buff *skb,
459                          struct nf_conntrack_helper *helper)
460 {
461         struct nlattr *nest_parms;
462
463         nest_parms = nla_nest_start(skb, NFCTH_TUPLE);
464         if (nest_parms == NULL)
465                 goto nla_put_failure;
466
467         if (nla_put_be16(skb, NFCTH_TUPLE_L3PROTONUM,
468                          htons(helper->tuple.src.l3num)))
469                 goto nla_put_failure;
470
471         if (nla_put_u8(skb, NFCTH_TUPLE_L4PROTONUM, helper->tuple.dst.protonum))
472                 goto nla_put_failure;
473
474         nla_nest_end(skb, nest_parms);
475         return 0;
476
477 nla_put_failure:
478         return -1;
479 }
480
481 static int
482 nfnl_cthelper_dump_policy(struct sk_buff *skb,
483                         struct nf_conntrack_helper *helper)
484 {
485         int i;
486         struct nlattr *nest_parms1, *nest_parms2;
487
488         nest_parms1 = nla_nest_start(skb, NFCTH_POLICY);
489         if (nest_parms1 == NULL)
490                 goto nla_put_failure;
491
492         if (nla_put_be32(skb, NFCTH_POLICY_SET_NUM,
493                          htonl(helper->expect_class_max + 1)))
494                 goto nla_put_failure;
495
496         for (i = 0; i < helper->expect_class_max + 1; i++) {
497                 nest_parms2 = nla_nest_start(skb, (NFCTH_POLICY_SET + i));
498                 if (nest_parms2 == NULL)
499                         goto nla_put_failure;
500
501                 if (nla_put_string(skb, NFCTH_POLICY_NAME,
502                                    helper->expect_policy[i].name))
503                         goto nla_put_failure;
504
505                 if (nla_put_be32(skb, NFCTH_POLICY_EXPECT_MAX,
506                                  htonl(helper->expect_policy[i].max_expected)))
507                         goto nla_put_failure;
508
509                 if (nla_put_be32(skb, NFCTH_POLICY_EXPECT_TIMEOUT,
510                                  htonl(helper->expect_policy[i].timeout)))
511                         goto nla_put_failure;
512
513                 nla_nest_end(skb, nest_parms2);
514         }
515         nla_nest_end(skb, nest_parms1);
516         return 0;
517
518 nla_put_failure:
519         return -1;
520 }
521
522 static int
523 nfnl_cthelper_fill_info(struct sk_buff *skb, u32 portid, u32 seq, u32 type,
524                         int event, struct nf_conntrack_helper *helper)
525 {
526         struct nlmsghdr *nlh;
527         unsigned int flags = portid ? NLM_F_MULTI : 0;
528         int status;
529
530         event = nfnl_msg_type(NFNL_SUBSYS_CTHELPER, event);
531         nlh = nfnl_msg_put(skb, portid, seq, event, flags, AF_UNSPEC,
532                            NFNETLINK_V0, 0);
533         if (!nlh)
534                 goto nlmsg_failure;
535
536         if (nla_put_string(skb, NFCTH_NAME, helper->name))
537                 goto nla_put_failure;
538
539         if (nla_put_be32(skb, NFCTH_QUEUE_NUM, htonl(helper->queue_num)))
540                 goto nla_put_failure;
541
542         if (nfnl_cthelper_dump_tuple(skb, helper) < 0)
543                 goto nla_put_failure;
544
545         if (nfnl_cthelper_dump_policy(skb, helper) < 0)
546                 goto nla_put_failure;
547
548         if (nla_put_be32(skb, NFCTH_PRIV_DATA_LEN, htonl(helper->data_len)))
549                 goto nla_put_failure;
550
551         if (helper->flags & NF_CT_HELPER_F_CONFIGURED)
552                 status = NFCT_HELPER_STATUS_ENABLED;
553         else
554                 status = NFCT_HELPER_STATUS_DISABLED;
555
556         if (nla_put_be32(skb, NFCTH_STATUS, htonl(status)))
557                 goto nla_put_failure;
558
559         nlmsg_end(skb, nlh);
560         return skb->len;
561
562 nlmsg_failure:
563 nla_put_failure:
564         nlmsg_cancel(skb, nlh);
565         return -1;
566 }
567
568 static int
569 nfnl_cthelper_dump_table(struct sk_buff *skb, struct netlink_callback *cb)
570 {
571         struct nf_conntrack_helper *cur, *last;
572
573         rcu_read_lock();
574         last = (struct nf_conntrack_helper *)cb->args[1];
575         for (; cb->args[0] < nf_ct_helper_hsize; cb->args[0]++) {
576 restart:
577                 hlist_for_each_entry_rcu(cur,
578                                 &nf_ct_helper_hash[cb->args[0]], hnode) {
579
580                         /* skip non-userspace conntrack helpers. */
581                         if (!(cur->flags & NF_CT_HELPER_F_USERSPACE))
582                                 continue;
583
584                         if (cb->args[1]) {
585                                 if (cur != last)
586                                         continue;
587                                 cb->args[1] = 0;
588                         }
589                         if (nfnl_cthelper_fill_info(skb,
590                                             NETLINK_CB(cb->skb).portid,
591                                             cb->nlh->nlmsg_seq,
592                                             NFNL_MSG_TYPE(cb->nlh->nlmsg_type),
593                                             NFNL_MSG_CTHELPER_NEW, cur) < 0) {
594                                 cb->args[1] = (unsigned long)cur;
595                                 goto out;
596                         }
597                 }
598         }
599         if (cb->args[1]) {
600                 cb->args[1] = 0;
601                 goto restart;
602         }
603 out:
604         rcu_read_unlock();
605         return skb->len;
606 }
607
608 static int nfnl_cthelper_get(struct sk_buff *skb, const struct nfnl_info *info,
609                              const struct nlattr * const tb[])
610 {
611         int ret = -ENOENT;
612         struct nf_conntrack_helper *cur;
613         struct sk_buff *skb2;
614         char *helper_name = NULL;
615         struct nf_conntrack_tuple tuple;
616         struct nfnl_cthelper *nlcth;
617         bool tuple_set = false;
618
619         if (!capable(CAP_NET_ADMIN))
620                 return -EPERM;
621
622         if (info->nlh->nlmsg_flags & NLM_F_DUMP) {
623                 struct netlink_dump_control c = {
624                         .dump = nfnl_cthelper_dump_table,
625                 };
626                 return netlink_dump_start(info->sk, skb, info->nlh, &c);
627         }
628
629         if (tb[NFCTH_NAME])
630                 helper_name = nla_data(tb[NFCTH_NAME]);
631
632         if (tb[NFCTH_TUPLE]) {
633                 ret = nfnl_cthelper_parse_tuple(&tuple, tb[NFCTH_TUPLE]);
634                 if (ret < 0)
635                         return ret;
636
637                 tuple_set = true;
638         }
639
640         list_for_each_entry(nlcth, &nfnl_cthelper_list, list) {
641                 cur = &nlcth->helper;
642                 if (helper_name &&
643                     strncmp(cur->name, helper_name, NF_CT_HELPER_NAME_LEN))
644                         continue;
645
646                 if (tuple_set &&
647                     (tuple.src.l3num != cur->tuple.src.l3num ||
648                      tuple.dst.protonum != cur->tuple.dst.protonum))
649                         continue;
650
651                 skb2 = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
652                 if (skb2 == NULL) {
653                         ret = -ENOMEM;
654                         break;
655                 }
656
657                 ret = nfnl_cthelper_fill_info(skb2, NETLINK_CB(skb).portid,
658                                               info->nlh->nlmsg_seq,
659                                               NFNL_MSG_TYPE(info->nlh->nlmsg_type),
660                                               NFNL_MSG_CTHELPER_NEW, cur);
661                 if (ret <= 0) {
662                         kfree_skb(skb2);
663                         break;
664                 }
665
666                 ret = netlink_unicast(info->sk, skb2, NETLINK_CB(skb).portid,
667                                       MSG_DONTWAIT);
668                 if (ret > 0)
669                         ret = 0;
670
671                 /* this avoids a loop in nfnetlink. */
672                 return ret == -EAGAIN ? -ENOBUFS : ret;
673         }
674         return ret;
675 }
676
677 static int nfnl_cthelper_del(struct sk_buff *skb, const struct nfnl_info *info,
678                              const struct nlattr * const tb[])
679 {
680         char *helper_name = NULL;
681         struct nf_conntrack_helper *cur;
682         struct nf_conntrack_tuple tuple;
683         bool tuple_set = false, found = false;
684         struct nfnl_cthelper *nlcth, *n;
685         int j = 0, ret;
686
687         if (!capable(CAP_NET_ADMIN))
688                 return -EPERM;
689
690         if (tb[NFCTH_NAME])
691                 helper_name = nla_data(tb[NFCTH_NAME]);
692
693         if (tb[NFCTH_TUPLE]) {
694                 ret = nfnl_cthelper_parse_tuple(&tuple, tb[NFCTH_TUPLE]);
695                 if (ret < 0)
696                         return ret;
697
698                 tuple_set = true;
699         }
700
701         ret = -ENOENT;
702         list_for_each_entry_safe(nlcth, n, &nfnl_cthelper_list, list) {
703                 cur = &nlcth->helper;
704                 j++;
705
706                 if (helper_name &&
707                     strncmp(cur->name, helper_name, NF_CT_HELPER_NAME_LEN))
708                         continue;
709
710                 if (tuple_set &&
711                     (tuple.src.l3num != cur->tuple.src.l3num ||
712                      tuple.dst.protonum != cur->tuple.dst.protonum))
713                         continue;
714
715                 if (refcount_dec_if_one(&cur->refcnt)) {
716                         found = true;
717                         nf_conntrack_helper_unregister(cur);
718                         kfree(cur->expect_policy);
719
720                         list_del(&nlcth->list);
721                         kfree(nlcth);
722                 } else {
723                         ret = -EBUSY;
724                 }
725         }
726
727         /* Make sure we return success if we flush and there is no helpers */
728         return (found || j == 0) ? 0 : ret;
729 }
730
731 static const struct nla_policy nfnl_cthelper_policy[NFCTH_MAX+1] = {
732         [NFCTH_NAME] = { .type = NLA_NUL_STRING,
733                          .len = NF_CT_HELPER_NAME_LEN-1 },
734         [NFCTH_QUEUE_NUM] = { .type = NLA_U32, },
735         [NFCTH_PRIV_DATA_LEN] = { .type = NLA_U32, },
736         [NFCTH_STATUS] = { .type = NLA_U32, },
737 };
738
739 static const struct nfnl_callback nfnl_cthelper_cb[NFNL_MSG_CTHELPER_MAX] = {
740         [NFNL_MSG_CTHELPER_NEW] = {
741                 .call           = nfnl_cthelper_new,
742                 .type           = NFNL_CB_MUTEX,
743                 .attr_count     = NFCTH_MAX,
744                 .policy         = nfnl_cthelper_policy
745         },
746         [NFNL_MSG_CTHELPER_GET] = {
747                 .call           = nfnl_cthelper_get,
748                 .type           = NFNL_CB_MUTEX,
749                 .attr_count     = NFCTH_MAX,
750                 .policy         = nfnl_cthelper_policy
751         },
752         [NFNL_MSG_CTHELPER_DEL] = {
753                 .call           = nfnl_cthelper_del,
754                 .type           = NFNL_CB_MUTEX,
755                 .attr_count     = NFCTH_MAX,
756                 .policy         = nfnl_cthelper_policy
757         },
758 };
759
760 static const struct nfnetlink_subsystem nfnl_cthelper_subsys = {
761         .name                           = "cthelper",
762         .subsys_id                      = NFNL_SUBSYS_CTHELPER,
763         .cb_count                       = NFNL_MSG_CTHELPER_MAX,
764         .cb                             = nfnl_cthelper_cb,
765 };
766
767 MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_CTHELPER);
768
769 static int __init nfnl_cthelper_init(void)
770 {
771         int ret;
772
773         ret = nfnetlink_subsys_register(&nfnl_cthelper_subsys);
774         if (ret < 0) {
775                 pr_err("nfnl_cthelper: cannot register with nfnetlink.\n");
776                 goto err_out;
777         }
778         return 0;
779 err_out:
780         return ret;
781 }
782
783 static void __exit nfnl_cthelper_exit(void)
784 {
785         struct nf_conntrack_helper *cur;
786         struct nfnl_cthelper *nlcth, *n;
787
788         nfnetlink_subsys_unregister(&nfnl_cthelper_subsys);
789
790         list_for_each_entry_safe(nlcth, n, &nfnl_cthelper_list, list) {
791                 cur = &nlcth->helper;
792
793                 nf_conntrack_helper_unregister(cur);
794                 kfree(cur->expect_policy);
795                 kfree(nlcth);
796         }
797 }
798
799 module_init(nfnl_cthelper_init);
800 module_exit(nfnl_cthelper_exit);