netfilter: conntrack: move event caching to conntrack extension infrastructure
[safe/jmp/linux-2.6] / net / netfilter / nf_conntrack_netlink.c
1 /* Connection tracking via netlink socket. Allows for user space
2  * protocol helpers and general trouble making from userspace.
3  *
4  * (C) 2001 by Jay Schulist <jschlst@samba.org>
5  * (C) 2002-2006 by Harald Welte <laforge@gnumonks.org>
6  * (C) 2003 by Patrick Mchardy <kaber@trash.net>
7  * (C) 2005-2008 by Pablo Neira Ayuso <pablo@netfilter.org>
8  *
9  * Initial connection tracking via netlink development funded and
10  * generally made possible by Network Robots, Inc. (www.networkrobots.com)
11  *
12  * Further development of this code funded by Astaro AG (http://www.astaro.com)
13  *
14  * This software may be used and distributed according to the terms
15  * of the GNU General Public License, incorporated herein by reference.
16  */
17
18 #include <linux/init.h>
19 #include <linux/module.h>
20 #include <linux/kernel.h>
21 #include <linux/rculist.h>
22 #include <linux/rculist_nulls.h>
23 #include <linux/types.h>
24 #include <linux/timer.h>
25 #include <linux/skbuff.h>
26 #include <linux/errno.h>
27 #include <linux/netlink.h>
28 #include <linux/spinlock.h>
29 #include <linux/interrupt.h>
30
31 #include <linux/netfilter.h>
32 #include <net/netlink.h>
33 #include <net/netfilter/nf_conntrack.h>
34 #include <net/netfilter/nf_conntrack_core.h>
35 #include <net/netfilter/nf_conntrack_expect.h>
36 #include <net/netfilter/nf_conntrack_helper.h>
37 #include <net/netfilter/nf_conntrack_l3proto.h>
38 #include <net/netfilter/nf_conntrack_l4proto.h>
39 #include <net/netfilter/nf_conntrack_tuple.h>
40 #include <net/netfilter/nf_conntrack_acct.h>
41 #ifdef CONFIG_NF_NAT_NEEDED
42 #include <net/netfilter/nf_nat_core.h>
43 #include <net/netfilter/nf_nat_protocol.h>
44 #endif
45
46 #include <linux/netfilter/nfnetlink.h>
47 #include <linux/netfilter/nfnetlink_conntrack.h>
48
49 MODULE_LICENSE("GPL");
50
51 static char __initdata version[] = "0.93";
52
53 static inline int
54 ctnetlink_dump_tuples_proto(struct sk_buff *skb,
55                             const struct nf_conntrack_tuple *tuple,
56                             struct nf_conntrack_l4proto *l4proto)
57 {
58         int ret = 0;
59         struct nlattr *nest_parms;
60
61         nest_parms = nla_nest_start(skb, CTA_TUPLE_PROTO | NLA_F_NESTED);
62         if (!nest_parms)
63                 goto nla_put_failure;
64         NLA_PUT_U8(skb, CTA_PROTO_NUM, tuple->dst.protonum);
65
66         if (likely(l4proto->tuple_to_nlattr))
67                 ret = l4proto->tuple_to_nlattr(skb, tuple);
68
69         nla_nest_end(skb, nest_parms);
70
71         return ret;
72
73 nla_put_failure:
74         return -1;
75 }
76
77 static inline int
78 ctnetlink_dump_tuples_ip(struct sk_buff *skb,
79                          const struct nf_conntrack_tuple *tuple,
80                          struct nf_conntrack_l3proto *l3proto)
81 {
82         int ret = 0;
83         struct nlattr *nest_parms;
84
85         nest_parms = nla_nest_start(skb, CTA_TUPLE_IP | NLA_F_NESTED);
86         if (!nest_parms)
87                 goto nla_put_failure;
88
89         if (likely(l3proto->tuple_to_nlattr))
90                 ret = l3proto->tuple_to_nlattr(skb, tuple);
91
92         nla_nest_end(skb, nest_parms);
93
94         return ret;
95
96 nla_put_failure:
97         return -1;
98 }
99
100 static int
101 ctnetlink_dump_tuples(struct sk_buff *skb,
102                       const struct nf_conntrack_tuple *tuple)
103 {
104         int ret;
105         struct nf_conntrack_l3proto *l3proto;
106         struct nf_conntrack_l4proto *l4proto;
107
108         l3proto = __nf_ct_l3proto_find(tuple->src.l3num);
109         ret = ctnetlink_dump_tuples_ip(skb, tuple, l3proto);
110
111         if (unlikely(ret < 0))
112                 return ret;
113
114         l4proto = __nf_ct_l4proto_find(tuple->src.l3num, tuple->dst.protonum);
115         ret = ctnetlink_dump_tuples_proto(skb, tuple, l4proto);
116
117         return ret;
118 }
119
120 static inline int
121 ctnetlink_dump_status(struct sk_buff *skb, const struct nf_conn *ct)
122 {
123         NLA_PUT_BE32(skb, CTA_STATUS, htonl(ct->status));
124         return 0;
125
126 nla_put_failure:
127         return -1;
128 }
129
130 static inline int
131 ctnetlink_dump_timeout(struct sk_buff *skb, const struct nf_conn *ct)
132 {
133         long timeout = (ct->timeout.expires - jiffies) / HZ;
134
135         if (timeout < 0)
136                 timeout = 0;
137
138         NLA_PUT_BE32(skb, CTA_TIMEOUT, htonl(timeout));
139         return 0;
140
141 nla_put_failure:
142         return -1;
143 }
144
145 static inline int
146 ctnetlink_dump_protoinfo(struct sk_buff *skb, struct nf_conn *ct)
147 {
148         struct nf_conntrack_l4proto *l4proto;
149         struct nlattr *nest_proto;
150         int ret;
151
152         l4proto = __nf_ct_l4proto_find(nf_ct_l3num(ct), nf_ct_protonum(ct));
153         if (!l4proto->to_nlattr)
154                 return 0;
155
156         nest_proto = nla_nest_start(skb, CTA_PROTOINFO | NLA_F_NESTED);
157         if (!nest_proto)
158                 goto nla_put_failure;
159
160         ret = l4proto->to_nlattr(skb, nest_proto, ct);
161
162         nla_nest_end(skb, nest_proto);
163
164         return ret;
165
166 nla_put_failure:
167         return -1;
168 }
169
170 static inline int
171 ctnetlink_dump_helpinfo(struct sk_buff *skb, const struct nf_conn *ct)
172 {
173         struct nlattr *nest_helper;
174         const struct nf_conn_help *help = nfct_help(ct);
175         struct nf_conntrack_helper *helper;
176
177         if (!help)
178                 return 0;
179
180         helper = rcu_dereference(help->helper);
181         if (!helper)
182                 goto out;
183
184         nest_helper = nla_nest_start(skb, CTA_HELP | NLA_F_NESTED);
185         if (!nest_helper)
186                 goto nla_put_failure;
187         NLA_PUT_STRING(skb, CTA_HELP_NAME, helper->name);
188
189         if (helper->to_nlattr)
190                 helper->to_nlattr(skb, ct);
191
192         nla_nest_end(skb, nest_helper);
193 out:
194         return 0;
195
196 nla_put_failure:
197         return -1;
198 }
199
200 static int
201 ctnetlink_dump_counters(struct sk_buff *skb, const struct nf_conn *ct,
202                         enum ip_conntrack_dir dir)
203 {
204         enum ctattr_type type = dir ? CTA_COUNTERS_REPLY: CTA_COUNTERS_ORIG;
205         struct nlattr *nest_count;
206         const struct nf_conn_counter *acct;
207
208         acct = nf_conn_acct_find(ct);
209         if (!acct)
210                 return 0;
211
212         nest_count = nla_nest_start(skb, type | NLA_F_NESTED);
213         if (!nest_count)
214                 goto nla_put_failure;
215
216         NLA_PUT_BE64(skb, CTA_COUNTERS_PACKETS,
217                      cpu_to_be64(acct[dir].packets));
218         NLA_PUT_BE64(skb, CTA_COUNTERS_BYTES,
219                      cpu_to_be64(acct[dir].bytes));
220
221         nla_nest_end(skb, nest_count);
222
223         return 0;
224
225 nla_put_failure:
226         return -1;
227 }
228
229 #ifdef CONFIG_NF_CONNTRACK_MARK
230 static inline int
231 ctnetlink_dump_mark(struct sk_buff *skb, const struct nf_conn *ct)
232 {
233         NLA_PUT_BE32(skb, CTA_MARK, htonl(ct->mark));
234         return 0;
235
236 nla_put_failure:
237         return -1;
238 }
239 #else
240 #define ctnetlink_dump_mark(a, b) (0)
241 #endif
242
243 #ifdef CONFIG_NF_CONNTRACK_SECMARK
244 static inline int
245 ctnetlink_dump_secmark(struct sk_buff *skb, const struct nf_conn *ct)
246 {
247         NLA_PUT_BE32(skb, CTA_SECMARK, htonl(ct->secmark));
248         return 0;
249
250 nla_put_failure:
251         return -1;
252 }
253 #else
254 #define ctnetlink_dump_secmark(a, b) (0)
255 #endif
256
257 #define master_tuple(ct) &(ct->master->tuplehash[IP_CT_DIR_ORIGINAL].tuple)
258
259 static inline int
260 ctnetlink_dump_master(struct sk_buff *skb, const struct nf_conn *ct)
261 {
262         struct nlattr *nest_parms;
263
264         if (!(ct->status & IPS_EXPECTED))
265                 return 0;
266
267         nest_parms = nla_nest_start(skb, CTA_TUPLE_MASTER | NLA_F_NESTED);
268         if (!nest_parms)
269                 goto nla_put_failure;
270         if (ctnetlink_dump_tuples(skb, master_tuple(ct)) < 0)
271                 goto nla_put_failure;
272         nla_nest_end(skb, nest_parms);
273
274         return 0;
275
276 nla_put_failure:
277         return -1;
278 }
279
280 #ifdef CONFIG_NF_NAT_NEEDED
281 static int
282 dump_nat_seq_adj(struct sk_buff *skb, const struct nf_nat_seq *natseq, int type)
283 {
284         struct nlattr *nest_parms;
285
286         nest_parms = nla_nest_start(skb, type | NLA_F_NESTED);
287         if (!nest_parms)
288                 goto nla_put_failure;
289
290         NLA_PUT_BE32(skb, CTA_NAT_SEQ_CORRECTION_POS,
291                      htonl(natseq->correction_pos));
292         NLA_PUT_BE32(skb, CTA_NAT_SEQ_OFFSET_BEFORE,
293                      htonl(natseq->offset_before));
294         NLA_PUT_BE32(skb, CTA_NAT_SEQ_OFFSET_AFTER,
295                      htonl(natseq->offset_after));
296
297         nla_nest_end(skb, nest_parms);
298
299         return 0;
300
301 nla_put_failure:
302         return -1;
303 }
304
305 static inline int
306 ctnetlink_dump_nat_seq_adj(struct sk_buff *skb, const struct nf_conn *ct)
307 {
308         struct nf_nat_seq *natseq;
309         struct nf_conn_nat *nat = nfct_nat(ct);
310
311         if (!(ct->status & IPS_SEQ_ADJUST) || !nat)
312                 return 0;
313
314         natseq = &nat->seq[IP_CT_DIR_ORIGINAL];
315         if (dump_nat_seq_adj(skb, natseq, CTA_NAT_SEQ_ADJ_ORIG) == -1)
316                 return -1;
317
318         natseq = &nat->seq[IP_CT_DIR_REPLY];
319         if (dump_nat_seq_adj(skb, natseq, CTA_NAT_SEQ_ADJ_REPLY) == -1)
320                 return -1;
321
322         return 0;
323 }
324 #else
325 #define ctnetlink_dump_nat_seq_adj(a, b) (0)
326 #endif
327
328 static inline int
329 ctnetlink_dump_id(struct sk_buff *skb, const struct nf_conn *ct)
330 {
331         NLA_PUT_BE32(skb, CTA_ID, htonl((unsigned long)ct));
332         return 0;
333
334 nla_put_failure:
335         return -1;
336 }
337
338 static inline int
339 ctnetlink_dump_use(struct sk_buff *skb, const struct nf_conn *ct)
340 {
341         NLA_PUT_BE32(skb, CTA_USE, htonl(atomic_read(&ct->ct_general.use)));
342         return 0;
343
344 nla_put_failure:
345         return -1;
346 }
347
348 static int
349 ctnetlink_fill_info(struct sk_buff *skb, u32 pid, u32 seq,
350                     int event, struct nf_conn *ct)
351 {
352         struct nlmsghdr *nlh;
353         struct nfgenmsg *nfmsg;
354         struct nlattr *nest_parms;
355         unsigned int flags = pid ? NLM_F_MULTI : 0;
356
357         event |= NFNL_SUBSYS_CTNETLINK << 8;
358         nlh = nlmsg_put(skb, pid, seq, event, sizeof(*nfmsg), flags);
359         if (nlh == NULL)
360                 goto nlmsg_failure;
361
362         nfmsg = nlmsg_data(nlh);
363         nfmsg->nfgen_family = nf_ct_l3num(ct);
364         nfmsg->version      = NFNETLINK_V0;
365         nfmsg->res_id       = 0;
366
367         nest_parms = nla_nest_start(skb, CTA_TUPLE_ORIG | NLA_F_NESTED);
368         if (!nest_parms)
369                 goto nla_put_failure;
370         if (ctnetlink_dump_tuples(skb, nf_ct_tuple(ct, IP_CT_DIR_ORIGINAL)) < 0)
371                 goto nla_put_failure;
372         nla_nest_end(skb, nest_parms);
373
374         nest_parms = nla_nest_start(skb, CTA_TUPLE_REPLY | NLA_F_NESTED);
375         if (!nest_parms)
376                 goto nla_put_failure;
377         if (ctnetlink_dump_tuples(skb, nf_ct_tuple(ct, IP_CT_DIR_REPLY)) < 0)
378                 goto nla_put_failure;
379         nla_nest_end(skb, nest_parms);
380
381         if (ctnetlink_dump_status(skb, ct) < 0 ||
382             ctnetlink_dump_timeout(skb, ct) < 0 ||
383             ctnetlink_dump_counters(skb, ct, IP_CT_DIR_ORIGINAL) < 0 ||
384             ctnetlink_dump_counters(skb, ct, IP_CT_DIR_REPLY) < 0 ||
385             ctnetlink_dump_protoinfo(skb, ct) < 0 ||
386             ctnetlink_dump_helpinfo(skb, ct) < 0 ||
387             ctnetlink_dump_mark(skb, ct) < 0 ||
388             ctnetlink_dump_secmark(skb, ct) < 0 ||
389             ctnetlink_dump_id(skb, ct) < 0 ||
390             ctnetlink_dump_use(skb, ct) < 0 ||
391             ctnetlink_dump_master(skb, ct) < 0 ||
392             ctnetlink_dump_nat_seq_adj(skb, ct) < 0)
393                 goto nla_put_failure;
394
395         nlmsg_end(skb, nlh);
396         return skb->len;
397
398 nlmsg_failure:
399 nla_put_failure:
400         nlmsg_cancel(skb, nlh);
401         return -1;
402 }
403
404 #ifdef CONFIG_NF_CONNTRACK_EVENTS
405 static inline size_t
406 ctnetlink_proto_size(const struct nf_conn *ct)
407 {
408         struct nf_conntrack_l3proto *l3proto;
409         struct nf_conntrack_l4proto *l4proto;
410         size_t len = 0;
411
412         rcu_read_lock();
413         l3proto = __nf_ct_l3proto_find(nf_ct_l3num(ct));
414         len += l3proto->nla_size;
415
416         l4proto = __nf_ct_l4proto_find(nf_ct_l3num(ct), nf_ct_protonum(ct));
417         len += l4proto->nla_size;
418         rcu_read_unlock();
419
420         return len;
421 }
422
423 static inline size_t
424 ctnetlink_nlmsg_size(const struct nf_conn *ct)
425 {
426         return NLMSG_ALIGN(sizeof(struct nfgenmsg))
427                + 3 * nla_total_size(0) /* CTA_TUPLE_ORIG|REPL|MASTER */
428                + 3 * nla_total_size(0) /* CTA_TUPLE_IP */
429                + 3 * nla_total_size(0) /* CTA_TUPLE_PROTO */
430                + 3 * nla_total_size(sizeof(u_int8_t)) /* CTA_PROTO_NUM */
431                + nla_total_size(sizeof(u_int32_t)) /* CTA_ID */
432                + nla_total_size(sizeof(u_int32_t)) /* CTA_STATUS */
433 #ifdef CONFIG_NF_CT_ACCT
434                + 2 * nla_total_size(0) /* CTA_COUNTERS_ORIG|REPL */
435                + 2 * nla_total_size(sizeof(uint64_t)) /* CTA_COUNTERS_PACKETS */
436                + 2 * nla_total_size(sizeof(uint64_t)) /* CTA_COUNTERS_BYTES */
437 #endif
438                + nla_total_size(sizeof(u_int32_t)) /* CTA_TIMEOUT */
439                + nla_total_size(0) /* CTA_PROTOINFO */
440                + nla_total_size(0) /* CTA_HELP */
441                + nla_total_size(NF_CT_HELPER_NAME_LEN) /* CTA_HELP_NAME */
442 #ifdef CONFIG_NF_CONNTRACK_SECMARK
443                + nla_total_size(sizeof(u_int32_t)) /* CTA_SECMARK */
444 #endif
445 #ifdef CONFIG_NF_NAT_NEEDED
446                + 2 * nla_total_size(0) /* CTA_NAT_SEQ_ADJ_ORIG|REPL */
447                + 6 * nla_total_size(sizeof(u_int32_t)) /* CTA_NAT_SEQ_OFFSET */
448 #endif
449 #ifdef CONFIG_NF_CONNTRACK_MARK
450                + nla_total_size(sizeof(u_int32_t)) /* CTA_MARK */
451 #endif
452                + ctnetlink_proto_size(ct)
453                ;
454 }
455
456 static int
457 ctnetlink_conntrack_event(unsigned int events, struct nf_ct_event *item)
458 {
459         struct nlmsghdr *nlh;
460         struct nfgenmsg *nfmsg;
461         struct nlattr *nest_parms;
462         struct nf_conn *ct = item->ct;
463         struct sk_buff *skb;
464         unsigned int type;
465         unsigned int flags = 0, group;
466
467         /* ignore our fake conntrack entry */
468         if (ct == &nf_conntrack_untracked)
469                 return 0;
470
471         if (events & (1 << IPCT_DESTROY)) {
472                 type = IPCTNL_MSG_CT_DELETE;
473                 group = NFNLGRP_CONNTRACK_DESTROY;
474         } else  if (events & ((1 << IPCT_NEW) | (1 << IPCT_RELATED))) {
475                 type = IPCTNL_MSG_CT_NEW;
476                 flags = NLM_F_CREATE|NLM_F_EXCL;
477                 group = NFNLGRP_CONNTRACK_NEW;
478         } else  if (events) {
479                 type = IPCTNL_MSG_CT_NEW;
480                 group = NFNLGRP_CONNTRACK_UPDATE;
481         } else
482                 return 0;
483
484         if (!item->report && !nfnetlink_has_listeners(group))
485                 return 0;
486
487         skb = nlmsg_new(ctnetlink_nlmsg_size(ct), GFP_ATOMIC);
488         if (skb == NULL)
489                 goto errout;
490
491         type |= NFNL_SUBSYS_CTNETLINK << 8;
492         nlh = nlmsg_put(skb, item->pid, 0, type, sizeof(*nfmsg), flags);
493         if (nlh == NULL)
494                 goto nlmsg_failure;
495
496         nfmsg = nlmsg_data(nlh);
497         nfmsg->nfgen_family = nf_ct_l3num(ct);
498         nfmsg->version  = NFNETLINK_V0;
499         nfmsg->res_id   = 0;
500
501         rcu_read_lock();
502         nest_parms = nla_nest_start(skb, CTA_TUPLE_ORIG | NLA_F_NESTED);
503         if (!nest_parms)
504                 goto nla_put_failure;
505         if (ctnetlink_dump_tuples(skb, nf_ct_tuple(ct, IP_CT_DIR_ORIGINAL)) < 0)
506                 goto nla_put_failure;
507         nla_nest_end(skb, nest_parms);
508
509         nest_parms = nla_nest_start(skb, CTA_TUPLE_REPLY | NLA_F_NESTED);
510         if (!nest_parms)
511                 goto nla_put_failure;
512         if (ctnetlink_dump_tuples(skb, nf_ct_tuple(ct, IP_CT_DIR_REPLY)) < 0)
513                 goto nla_put_failure;
514         nla_nest_end(skb, nest_parms);
515
516         if (ctnetlink_dump_id(skb, ct) < 0)
517                 goto nla_put_failure;
518
519         if (ctnetlink_dump_status(skb, ct) < 0)
520                 goto nla_put_failure;
521
522         if (events & (1 << IPCT_DESTROY)) {
523                 if (ctnetlink_dump_counters(skb, ct, IP_CT_DIR_ORIGINAL) < 0 ||
524                     ctnetlink_dump_counters(skb, ct, IP_CT_DIR_REPLY) < 0)
525                         goto nla_put_failure;
526         } else {
527                 if (ctnetlink_dump_timeout(skb, ct) < 0)
528                         goto nla_put_failure;
529
530                 if (events & (1 << IPCT_PROTOINFO)
531                     && ctnetlink_dump_protoinfo(skb, ct) < 0)
532                         goto nla_put_failure;
533
534                 if ((events & (1 << IPCT_HELPER) || nfct_help(ct))
535                     && ctnetlink_dump_helpinfo(skb, ct) < 0)
536                         goto nla_put_failure;
537
538 #ifdef CONFIG_NF_CONNTRACK_SECMARK
539                 if ((events & (1 << IPCT_SECMARK) || ct->secmark)
540                     && ctnetlink_dump_secmark(skb, ct) < 0)
541                         goto nla_put_failure;
542 #endif
543
544                 if (events & (1 << IPCT_RELATED) &&
545                     ctnetlink_dump_master(skb, ct) < 0)
546                         goto nla_put_failure;
547
548                 if (events & (1 << IPCT_NATSEQADJ) &&
549                     ctnetlink_dump_nat_seq_adj(skb, ct) < 0)
550                         goto nla_put_failure;
551         }
552
553 #ifdef CONFIG_NF_CONNTRACK_MARK
554         if ((events & (1 << IPCT_MARK) || ct->mark)
555             && ctnetlink_dump_mark(skb, ct) < 0)
556                 goto nla_put_failure;
557 #endif
558         rcu_read_unlock();
559
560         nlmsg_end(skb, nlh);
561         nfnetlink_send(skb, item->pid, group, item->report, GFP_ATOMIC);
562         return 0;
563
564 nla_put_failure:
565         rcu_read_unlock();
566         nlmsg_cancel(skb, nlh);
567 nlmsg_failure:
568         kfree_skb(skb);
569 errout:
570         nfnetlink_set_err(0, group, -ENOBUFS);
571         return 0;
572 }
573 #endif /* CONFIG_NF_CONNTRACK_EVENTS */
574
575 static int ctnetlink_done(struct netlink_callback *cb)
576 {
577         if (cb->args[1])
578                 nf_ct_put((struct nf_conn *)cb->args[1]);
579         return 0;
580 }
581
582 static int
583 ctnetlink_dump_table(struct sk_buff *skb, struct netlink_callback *cb)
584 {
585         struct nf_conn *ct, *last;
586         struct nf_conntrack_tuple_hash *h;
587         struct hlist_nulls_node *n;
588         struct nfgenmsg *nfmsg = nlmsg_data(cb->nlh);
589         u_int8_t l3proto = nfmsg->nfgen_family;
590
591         rcu_read_lock();
592         last = (struct nf_conn *)cb->args[1];
593         for (; cb->args[0] < nf_conntrack_htable_size; cb->args[0]++) {
594 restart:
595                 hlist_nulls_for_each_entry_rcu(h, n, &init_net.ct.hash[cb->args[0]],
596                                          hnnode) {
597                         if (NF_CT_DIRECTION(h) != IP_CT_DIR_ORIGINAL)
598                                 continue;
599                         ct = nf_ct_tuplehash_to_ctrack(h);
600                         if (!atomic_inc_not_zero(&ct->ct_general.use))
601                                 continue;
602                         /* Dump entries of a given L3 protocol number.
603                          * If it is not specified, ie. l3proto == 0,
604                          * then dump everything. */
605                         if (l3proto && nf_ct_l3num(ct) != l3proto)
606                                 goto releasect;
607                         if (cb->args[1]) {
608                                 if (ct != last)
609                                         goto releasect;
610                                 cb->args[1] = 0;
611                         }
612                         if (ctnetlink_fill_info(skb, NETLINK_CB(cb->skb).pid,
613                                                 cb->nlh->nlmsg_seq,
614                                                 IPCTNL_MSG_CT_NEW, ct) < 0) {
615                                 cb->args[1] = (unsigned long)ct;
616                                 goto out;
617                         }
618
619                         if (NFNL_MSG_TYPE(cb->nlh->nlmsg_type) ==
620                                                 IPCTNL_MSG_CT_GET_CTRZERO) {
621                                 struct nf_conn_counter *acct;
622
623                                 acct = nf_conn_acct_find(ct);
624                                 if (acct)
625                                         memset(acct, 0, sizeof(struct nf_conn_counter[IP_CT_DIR_MAX]));
626                         }
627 releasect:
628                 nf_ct_put(ct);
629                 }
630                 if (cb->args[1]) {
631                         cb->args[1] = 0;
632                         goto restart;
633                 }
634         }
635 out:
636         rcu_read_unlock();
637         if (last)
638                 nf_ct_put(last);
639
640         return skb->len;
641 }
642
643 static inline int
644 ctnetlink_parse_tuple_ip(struct nlattr *attr, struct nf_conntrack_tuple *tuple)
645 {
646         struct nlattr *tb[CTA_IP_MAX+1];
647         struct nf_conntrack_l3proto *l3proto;
648         int ret = 0;
649
650         nla_parse_nested(tb, CTA_IP_MAX, attr, NULL);
651
652         rcu_read_lock();
653         l3proto = __nf_ct_l3proto_find(tuple->src.l3num);
654
655         if (likely(l3proto->nlattr_to_tuple)) {
656                 ret = nla_validate_nested(attr, CTA_IP_MAX,
657                                           l3proto->nla_policy);
658                 if (ret == 0)
659                         ret = l3proto->nlattr_to_tuple(tb, tuple);
660         }
661
662         rcu_read_unlock();
663
664         return ret;
665 }
666
667 static const struct nla_policy proto_nla_policy[CTA_PROTO_MAX+1] = {
668         [CTA_PROTO_NUM] = { .type = NLA_U8 },
669 };
670
671 static inline int
672 ctnetlink_parse_tuple_proto(struct nlattr *attr,
673                             struct nf_conntrack_tuple *tuple)
674 {
675         struct nlattr *tb[CTA_PROTO_MAX+1];
676         struct nf_conntrack_l4proto *l4proto;
677         int ret = 0;
678
679         ret = nla_parse_nested(tb, CTA_PROTO_MAX, attr, proto_nla_policy);
680         if (ret < 0)
681                 return ret;
682
683         if (!tb[CTA_PROTO_NUM])
684                 return -EINVAL;
685         tuple->dst.protonum = nla_get_u8(tb[CTA_PROTO_NUM]);
686
687         rcu_read_lock();
688         l4proto = __nf_ct_l4proto_find(tuple->src.l3num, tuple->dst.protonum);
689
690         if (likely(l4proto->nlattr_to_tuple)) {
691                 ret = nla_validate_nested(attr, CTA_PROTO_MAX,
692                                           l4proto->nla_policy);
693                 if (ret == 0)
694                         ret = l4proto->nlattr_to_tuple(tb, tuple);
695         }
696
697         rcu_read_unlock();
698
699         return ret;
700 }
701
702 static int
703 ctnetlink_parse_tuple(struct nlattr *cda[], struct nf_conntrack_tuple *tuple,
704                       enum ctattr_tuple type, u_int8_t l3num)
705 {
706         struct nlattr *tb[CTA_TUPLE_MAX+1];
707         int err;
708
709         memset(tuple, 0, sizeof(*tuple));
710
711         nla_parse_nested(tb, CTA_TUPLE_MAX, cda[type], NULL);
712
713         if (!tb[CTA_TUPLE_IP])
714                 return -EINVAL;
715
716         tuple->src.l3num = l3num;
717
718         err = ctnetlink_parse_tuple_ip(tb[CTA_TUPLE_IP], tuple);
719         if (err < 0)
720                 return err;
721
722         if (!tb[CTA_TUPLE_PROTO])
723                 return -EINVAL;
724
725         err = ctnetlink_parse_tuple_proto(tb[CTA_TUPLE_PROTO], tuple);
726         if (err < 0)
727                 return err;
728
729         /* orig and expect tuples get DIR_ORIGINAL */
730         if (type == CTA_TUPLE_REPLY)
731                 tuple->dst.dir = IP_CT_DIR_REPLY;
732         else
733                 tuple->dst.dir = IP_CT_DIR_ORIGINAL;
734
735         return 0;
736 }
737
738 static inline int
739 ctnetlink_parse_help(struct nlattr *attr, char **helper_name)
740 {
741         struct nlattr *tb[CTA_HELP_MAX+1];
742
743         nla_parse_nested(tb, CTA_HELP_MAX, attr, NULL);
744
745         if (!tb[CTA_HELP_NAME])
746                 return -EINVAL;
747
748         *helper_name = nla_data(tb[CTA_HELP_NAME]);
749
750         return 0;
751 }
752
753 static const struct nla_policy ct_nla_policy[CTA_MAX+1] = {
754         [CTA_STATUS]            = { .type = NLA_U32 },
755         [CTA_TIMEOUT]           = { .type = NLA_U32 },
756         [CTA_MARK]              = { .type = NLA_U32 },
757         [CTA_USE]               = { .type = NLA_U32 },
758         [CTA_ID]                = { .type = NLA_U32 },
759 };
760
761 static int
762 ctnetlink_del_conntrack(struct sock *ctnl, struct sk_buff *skb,
763                         struct nlmsghdr *nlh, struct nlattr *cda[])
764 {
765         struct nf_conntrack_tuple_hash *h;
766         struct nf_conntrack_tuple tuple;
767         struct nf_conn *ct;
768         struct nfgenmsg *nfmsg = nlmsg_data(nlh);
769         u_int8_t u3 = nfmsg->nfgen_family;
770         int err = 0;
771
772         if (cda[CTA_TUPLE_ORIG])
773                 err = ctnetlink_parse_tuple(cda, &tuple, CTA_TUPLE_ORIG, u3);
774         else if (cda[CTA_TUPLE_REPLY])
775                 err = ctnetlink_parse_tuple(cda, &tuple, CTA_TUPLE_REPLY, u3);
776         else {
777                 /* Flush the whole table */
778                 nf_conntrack_flush_report(&init_net,
779                                          NETLINK_CB(skb).pid,
780                                          nlmsg_report(nlh));
781                 return 0;
782         }
783
784         if (err < 0)
785                 return err;
786
787         h = nf_conntrack_find_get(&init_net, &tuple);
788         if (!h)
789                 return -ENOENT;
790
791         ct = nf_ct_tuplehash_to_ctrack(h);
792
793         if (cda[CTA_ID]) {
794                 u_int32_t id = ntohl(nla_get_be32(cda[CTA_ID]));
795                 if (id != (u32)(unsigned long)ct) {
796                         nf_ct_put(ct);
797                         return -ENOENT;
798                 }
799         }
800
801         nf_conntrack_event_report(IPCT_DESTROY,
802                                   ct,
803                                   NETLINK_CB(skb).pid,
804                                   nlmsg_report(nlh));
805
806         /* death_by_timeout would report the event again */
807         set_bit(IPS_DYING_BIT, &ct->status);
808
809         nf_ct_kill(ct);
810         nf_ct_put(ct);
811
812         return 0;
813 }
814
815 static int
816 ctnetlink_get_conntrack(struct sock *ctnl, struct sk_buff *skb,
817                         struct nlmsghdr *nlh, struct nlattr *cda[])
818 {
819         struct nf_conntrack_tuple_hash *h;
820         struct nf_conntrack_tuple tuple;
821         struct nf_conn *ct;
822         struct sk_buff *skb2 = NULL;
823         struct nfgenmsg *nfmsg = nlmsg_data(nlh);
824         u_int8_t u3 = nfmsg->nfgen_family;
825         int err = 0;
826
827         if (nlh->nlmsg_flags & NLM_F_DUMP)
828                 return netlink_dump_start(ctnl, skb, nlh, ctnetlink_dump_table,
829                                           ctnetlink_done);
830
831         if (cda[CTA_TUPLE_ORIG])
832                 err = ctnetlink_parse_tuple(cda, &tuple, CTA_TUPLE_ORIG, u3);
833         else if (cda[CTA_TUPLE_REPLY])
834                 err = ctnetlink_parse_tuple(cda, &tuple, CTA_TUPLE_REPLY, u3);
835         else
836                 return -EINVAL;
837
838         if (err < 0)
839                 return err;
840
841         h = nf_conntrack_find_get(&init_net, &tuple);
842         if (!h)
843                 return -ENOENT;
844
845         ct = nf_ct_tuplehash_to_ctrack(h);
846
847         err = -ENOMEM;
848         skb2 = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
849         if (skb2 == NULL) {
850                 nf_ct_put(ct);
851                 return -ENOMEM;
852         }
853
854         rcu_read_lock();
855         err = ctnetlink_fill_info(skb2, NETLINK_CB(skb).pid, nlh->nlmsg_seq,
856                                   IPCTNL_MSG_CT_NEW, ct);
857         rcu_read_unlock();
858         nf_ct_put(ct);
859         if (err <= 0)
860                 goto free;
861
862         err = netlink_unicast(ctnl, skb2, NETLINK_CB(skb).pid, MSG_DONTWAIT);
863         if (err < 0)
864                 goto out;
865
866         return 0;
867
868 free:
869         kfree_skb(skb2);
870 out:
871         return err;
872 }
873
874 #ifdef CONFIG_NF_NAT_NEEDED
875 static int
876 ctnetlink_parse_nat_setup(struct nf_conn *ct,
877                           enum nf_nat_manip_type manip,
878                           struct nlattr *attr)
879 {
880         typeof(nfnetlink_parse_nat_setup_hook) parse_nat_setup;
881
882         parse_nat_setup = rcu_dereference(nfnetlink_parse_nat_setup_hook);
883         if (!parse_nat_setup) {
884 #ifdef CONFIG_MODULES
885                 rcu_read_unlock();
886                 spin_unlock_bh(&nf_conntrack_lock);
887                 nfnl_unlock();
888                 if (request_module("nf-nat-ipv4") < 0) {
889                         nfnl_lock();
890                         spin_lock_bh(&nf_conntrack_lock);
891                         rcu_read_lock();
892                         return -EOPNOTSUPP;
893                 }
894                 nfnl_lock();
895                 spin_lock_bh(&nf_conntrack_lock);
896                 rcu_read_lock();
897                 if (nfnetlink_parse_nat_setup_hook)
898                         return -EAGAIN;
899 #endif
900                 return -EOPNOTSUPP;
901         }
902
903         return parse_nat_setup(ct, manip, attr);
904 }
905 #endif
906
907 static int
908 ctnetlink_change_status(struct nf_conn *ct, struct nlattr *cda[])
909 {
910         unsigned long d;
911         unsigned int status = ntohl(nla_get_be32(cda[CTA_STATUS]));
912         d = ct->status ^ status;
913
914         if (d & (IPS_EXPECTED|IPS_CONFIRMED|IPS_DYING))
915                 /* unchangeable */
916                 return -EBUSY;
917
918         if (d & IPS_SEEN_REPLY && !(status & IPS_SEEN_REPLY))
919                 /* SEEN_REPLY bit can only be set */
920                 return -EBUSY;
921
922         if (d & IPS_ASSURED && !(status & IPS_ASSURED))
923                 /* ASSURED bit can only be set */
924                 return -EBUSY;
925
926         /* Be careful here, modifying NAT bits can screw up things,
927          * so don't let users modify them directly if they don't pass
928          * nf_nat_range. */
929         ct->status |= status & ~(IPS_NAT_DONE_MASK | IPS_NAT_MASK);
930         return 0;
931 }
932
933 static int
934 ctnetlink_change_nat(struct nf_conn *ct, struct nlattr *cda[])
935 {
936 #ifdef CONFIG_NF_NAT_NEEDED
937         int ret;
938
939         if (cda[CTA_NAT_DST]) {
940                 ret = ctnetlink_parse_nat_setup(ct,
941                                                 IP_NAT_MANIP_DST,
942                                                 cda[CTA_NAT_DST]);
943                 if (ret < 0)
944                         return ret;
945         }
946         if (cda[CTA_NAT_SRC]) {
947                 ret = ctnetlink_parse_nat_setup(ct,
948                                                 IP_NAT_MANIP_SRC,
949                                                 cda[CTA_NAT_SRC]);
950                 if (ret < 0)
951                         return ret;
952         }
953         return 0;
954 #else
955         return -EOPNOTSUPP;
956 #endif
957 }
958
959 static inline int
960 ctnetlink_change_helper(struct nf_conn *ct, struct nlattr *cda[])
961 {
962         struct nf_conntrack_helper *helper;
963         struct nf_conn_help *help = nfct_help(ct);
964         char *helpname = NULL;
965         int err;
966
967         /* don't change helper of sibling connections */
968         if (ct->master)
969                 return -EBUSY;
970
971         err = ctnetlink_parse_help(cda[CTA_HELP], &helpname);
972         if (err < 0)
973                 return err;
974
975         if (!strcmp(helpname, "")) {
976                 if (help && help->helper) {
977                         /* we had a helper before ... */
978                         nf_ct_remove_expectations(ct);
979                         rcu_assign_pointer(help->helper, NULL);
980                 }
981
982                 return 0;
983         }
984
985         helper = __nf_conntrack_helper_find_byname(helpname);
986         if (helper == NULL) {
987 #ifdef CONFIG_MODULES
988                 spin_unlock_bh(&nf_conntrack_lock);
989
990                 if (request_module("nfct-helper-%s", helpname) < 0) {
991                         spin_lock_bh(&nf_conntrack_lock);
992                         return -EOPNOTSUPP;
993                 }
994
995                 spin_lock_bh(&nf_conntrack_lock);
996                 helper = __nf_conntrack_helper_find_byname(helpname);
997                 if (helper)
998                         return -EAGAIN;
999 #endif
1000                 return -EOPNOTSUPP;
1001         }
1002
1003         if (help) {
1004                 if (help->helper == helper)
1005                         return 0;
1006                 if (help->helper)
1007                         return -EBUSY;
1008                 /* need to zero data of old helper */
1009                 memset(&help->help, 0, sizeof(help->help));
1010         } else {
1011                 help = nf_ct_helper_ext_add(ct, GFP_ATOMIC);
1012                 if (help == NULL)
1013                         return -ENOMEM;
1014         }
1015
1016         rcu_assign_pointer(help->helper, helper);
1017
1018         return 0;
1019 }
1020
1021 static inline int
1022 ctnetlink_change_timeout(struct nf_conn *ct, struct nlattr *cda[])
1023 {
1024         u_int32_t timeout = ntohl(nla_get_be32(cda[CTA_TIMEOUT]));
1025
1026         if (!del_timer(&ct->timeout))
1027                 return -ETIME;
1028
1029         ct->timeout.expires = jiffies + timeout * HZ;
1030         add_timer(&ct->timeout);
1031
1032         return 0;
1033 }
1034
1035 static inline int
1036 ctnetlink_change_protoinfo(struct nf_conn *ct, struct nlattr *cda[])
1037 {
1038         struct nlattr *tb[CTA_PROTOINFO_MAX+1], *attr = cda[CTA_PROTOINFO];
1039         struct nf_conntrack_l4proto *l4proto;
1040         int err = 0;
1041
1042         nla_parse_nested(tb, CTA_PROTOINFO_MAX, attr, NULL);
1043
1044         rcu_read_lock();
1045         l4proto = __nf_ct_l4proto_find(nf_ct_l3num(ct), nf_ct_protonum(ct));
1046         if (l4proto->from_nlattr)
1047                 err = l4proto->from_nlattr(tb, ct);
1048         rcu_read_unlock();
1049
1050         return err;
1051 }
1052
1053 #ifdef CONFIG_NF_NAT_NEEDED
1054 static inline int
1055 change_nat_seq_adj(struct nf_nat_seq *natseq, struct nlattr *attr)
1056 {
1057         struct nlattr *cda[CTA_NAT_SEQ_MAX+1];
1058
1059         nla_parse_nested(cda, CTA_NAT_SEQ_MAX, attr, NULL);
1060
1061         if (!cda[CTA_NAT_SEQ_CORRECTION_POS])
1062                 return -EINVAL;
1063
1064         natseq->correction_pos =
1065                 ntohl(nla_get_be32(cda[CTA_NAT_SEQ_CORRECTION_POS]));
1066
1067         if (!cda[CTA_NAT_SEQ_OFFSET_BEFORE])
1068                 return -EINVAL;
1069
1070         natseq->offset_before =
1071                 ntohl(nla_get_be32(cda[CTA_NAT_SEQ_OFFSET_BEFORE]));
1072
1073         if (!cda[CTA_NAT_SEQ_OFFSET_AFTER])
1074                 return -EINVAL;
1075
1076         natseq->offset_after =
1077                 ntohl(nla_get_be32(cda[CTA_NAT_SEQ_OFFSET_AFTER]));
1078
1079         return 0;
1080 }
1081
1082 static int
1083 ctnetlink_change_nat_seq_adj(struct nf_conn *ct, struct nlattr *cda[])
1084 {
1085         int ret = 0;
1086         struct nf_conn_nat *nat = nfct_nat(ct);
1087
1088         if (!nat)
1089                 return 0;
1090
1091         if (cda[CTA_NAT_SEQ_ADJ_ORIG]) {
1092                 ret = change_nat_seq_adj(&nat->seq[IP_CT_DIR_ORIGINAL],
1093                                          cda[CTA_NAT_SEQ_ADJ_ORIG]);
1094                 if (ret < 0)
1095                         return ret;
1096
1097                 ct->status |= IPS_SEQ_ADJUST;
1098         }
1099
1100         if (cda[CTA_NAT_SEQ_ADJ_REPLY]) {
1101                 ret = change_nat_seq_adj(&nat->seq[IP_CT_DIR_REPLY],
1102                                          cda[CTA_NAT_SEQ_ADJ_REPLY]);
1103                 if (ret < 0)
1104                         return ret;
1105
1106                 ct->status |= IPS_SEQ_ADJUST;
1107         }
1108
1109         return 0;
1110 }
1111 #endif
1112
1113 static int
1114 ctnetlink_change_conntrack(struct nf_conn *ct, struct nlattr *cda[])
1115 {
1116         int err;
1117
1118         /* only allow NAT changes and master assignation for new conntracks */
1119         if (cda[CTA_NAT_SRC] || cda[CTA_NAT_DST] || cda[CTA_TUPLE_MASTER])
1120                 return -EOPNOTSUPP;
1121
1122         if (cda[CTA_HELP]) {
1123                 err = ctnetlink_change_helper(ct, cda);
1124                 if (err < 0)
1125                         return err;
1126         }
1127
1128         if (cda[CTA_TIMEOUT]) {
1129                 err = ctnetlink_change_timeout(ct, cda);
1130                 if (err < 0)
1131                         return err;
1132         }
1133
1134         if (cda[CTA_STATUS]) {
1135                 err = ctnetlink_change_status(ct, cda);
1136                 if (err < 0)
1137                         return err;
1138         }
1139
1140         if (cda[CTA_PROTOINFO]) {
1141                 err = ctnetlink_change_protoinfo(ct, cda);
1142                 if (err < 0)
1143                         return err;
1144         }
1145
1146 #if defined(CONFIG_NF_CONNTRACK_MARK)
1147         if (cda[CTA_MARK])
1148                 ct->mark = ntohl(nla_get_be32(cda[CTA_MARK]));
1149 #endif
1150
1151 #ifdef CONFIG_NF_NAT_NEEDED
1152         if (cda[CTA_NAT_SEQ_ADJ_ORIG] || cda[CTA_NAT_SEQ_ADJ_REPLY]) {
1153                 err = ctnetlink_change_nat_seq_adj(ct, cda);
1154                 if (err < 0)
1155                         return err;
1156         }
1157 #endif
1158
1159         return 0;
1160 }
1161
1162 static struct nf_conn *
1163 ctnetlink_create_conntrack(struct nlattr *cda[],
1164                            struct nf_conntrack_tuple *otuple,
1165                            struct nf_conntrack_tuple *rtuple,
1166                            u8 u3)
1167 {
1168         struct nf_conn *ct;
1169         int err = -EINVAL;
1170         struct nf_conntrack_helper *helper;
1171
1172         ct = nf_conntrack_alloc(&init_net, otuple, rtuple, GFP_ATOMIC);
1173         if (IS_ERR(ct))
1174                 return ERR_PTR(-ENOMEM);
1175
1176         if (!cda[CTA_TIMEOUT])
1177                 goto err1;
1178         ct->timeout.expires = ntohl(nla_get_be32(cda[CTA_TIMEOUT]));
1179
1180         ct->timeout.expires = jiffies + ct->timeout.expires * HZ;
1181         ct->status |= IPS_CONFIRMED;
1182
1183         rcu_read_lock();
1184         if (cda[CTA_HELP]) {
1185                 char *helpname = NULL;
1186  
1187                 err = ctnetlink_parse_help(cda[CTA_HELP], &helpname);
1188                 if (err < 0)
1189                         goto err2;
1190
1191                 helper = __nf_conntrack_helper_find_byname(helpname);
1192                 if (helper == NULL) {
1193                         rcu_read_unlock();
1194 #ifdef CONFIG_MODULES
1195                         if (request_module("nfct-helper-%s", helpname) < 0) {
1196                                 err = -EOPNOTSUPP;
1197                                 goto err1;
1198                         }
1199
1200                         rcu_read_lock();
1201                         helper = __nf_conntrack_helper_find_byname(helpname);
1202                         if (helper) {
1203                                 err = -EAGAIN;
1204                                 goto err2;
1205                         }
1206                         rcu_read_unlock();
1207 #endif
1208                         err = -EOPNOTSUPP;
1209                         goto err1;
1210                 } else {
1211                         struct nf_conn_help *help;
1212
1213                         help = nf_ct_helper_ext_add(ct, GFP_ATOMIC);
1214                         if (help == NULL) {
1215                                 err = -ENOMEM;
1216                                 goto err2;
1217                         }
1218
1219                         /* not in hash table yet so not strictly necessary */
1220                         rcu_assign_pointer(help->helper, helper);
1221                 }
1222         } else {
1223                 /* try an implicit helper assignation */
1224                 err = __nf_ct_try_assign_helper(ct, GFP_ATOMIC);
1225                 if (err < 0)
1226                         goto err2;
1227         }
1228
1229         if (cda[CTA_STATUS]) {
1230                 err = ctnetlink_change_status(ct, cda);
1231                 if (err < 0)
1232                         goto err2;
1233         }
1234
1235         if (cda[CTA_NAT_SRC] || cda[CTA_NAT_DST]) {
1236                 err = ctnetlink_change_nat(ct, cda);
1237                 if (err < 0)
1238                         goto err2;
1239         }
1240
1241 #ifdef CONFIG_NF_NAT_NEEDED
1242         if (cda[CTA_NAT_SEQ_ADJ_ORIG] || cda[CTA_NAT_SEQ_ADJ_REPLY]) {
1243                 err = ctnetlink_change_nat_seq_adj(ct, cda);
1244                 if (err < 0)
1245                         goto err2;
1246         }
1247 #endif
1248
1249         if (cda[CTA_PROTOINFO]) {
1250                 err = ctnetlink_change_protoinfo(ct, cda);
1251                 if (err < 0)
1252                         goto err2;
1253         }
1254
1255         nf_ct_acct_ext_add(ct, GFP_ATOMIC);
1256         nf_ct_ecache_ext_add(ct, GFP_ATOMIC);
1257
1258 #if defined(CONFIG_NF_CONNTRACK_MARK)
1259         if (cda[CTA_MARK])
1260                 ct->mark = ntohl(nla_get_be32(cda[CTA_MARK]));
1261 #endif
1262
1263         /* setup master conntrack: this is a confirmed expectation */
1264         if (cda[CTA_TUPLE_MASTER]) {
1265                 struct nf_conntrack_tuple master;
1266                 struct nf_conntrack_tuple_hash *master_h;
1267                 struct nf_conn *master_ct;
1268
1269                 err = ctnetlink_parse_tuple(cda, &master, CTA_TUPLE_MASTER, u3);
1270                 if (err < 0)
1271                         goto err2;
1272
1273                 master_h = nf_conntrack_find_get(&init_net, &master);
1274                 if (master_h == NULL) {
1275                         err = -ENOENT;
1276                         goto err2;
1277                 }
1278                 master_ct = nf_ct_tuplehash_to_ctrack(master_h);
1279                 __set_bit(IPS_EXPECTED_BIT, &ct->status);
1280                 ct->master = master_ct;
1281         }
1282
1283         add_timer(&ct->timeout);
1284         nf_conntrack_hash_insert(ct);
1285         rcu_read_unlock();
1286
1287         return ct;
1288
1289 err2:
1290         rcu_read_unlock();
1291 err1:
1292         nf_conntrack_free(ct);
1293         return ERR_PTR(err);
1294 }
1295
1296 static int
1297 ctnetlink_new_conntrack(struct sock *ctnl, struct sk_buff *skb,
1298                         struct nlmsghdr *nlh, struct nlattr *cda[])
1299 {
1300         struct nf_conntrack_tuple otuple, rtuple;
1301         struct nf_conntrack_tuple_hash *h = NULL;
1302         struct nfgenmsg *nfmsg = nlmsg_data(nlh);
1303         u_int8_t u3 = nfmsg->nfgen_family;
1304         int err = 0;
1305
1306         if (cda[CTA_TUPLE_ORIG]) {
1307                 err = ctnetlink_parse_tuple(cda, &otuple, CTA_TUPLE_ORIG, u3);
1308                 if (err < 0)
1309                         return err;
1310         }
1311
1312         if (cda[CTA_TUPLE_REPLY]) {
1313                 err = ctnetlink_parse_tuple(cda, &rtuple, CTA_TUPLE_REPLY, u3);
1314                 if (err < 0)
1315                         return err;
1316         }
1317
1318         spin_lock_bh(&nf_conntrack_lock);
1319         if (cda[CTA_TUPLE_ORIG])
1320                 h = __nf_conntrack_find(&init_net, &otuple);
1321         else if (cda[CTA_TUPLE_REPLY])
1322                 h = __nf_conntrack_find(&init_net, &rtuple);
1323
1324         if (h == NULL) {
1325                 err = -ENOENT;
1326                 if (nlh->nlmsg_flags & NLM_F_CREATE) {
1327                         struct nf_conn *ct;
1328                         enum ip_conntrack_events events;
1329
1330                         ct = ctnetlink_create_conntrack(cda, &otuple,
1331                                                         &rtuple, u3);
1332                         if (IS_ERR(ct)) {
1333                                 err = PTR_ERR(ct);
1334                                 goto out_unlock;
1335                         }
1336                         err = 0;
1337                         nf_conntrack_get(&ct->ct_general);
1338                         spin_unlock_bh(&nf_conntrack_lock);
1339                         if (test_bit(IPS_EXPECTED_BIT, &ct->status))
1340                                 events = IPCT_RELATED;
1341                         else
1342                                 events = IPCT_NEW;
1343
1344                         nf_conntrack_eventmask_report((1 << IPCT_STATUS) |
1345                                                       (1 << IPCT_HELPER) |
1346                                                       (1 << IPCT_PROTOINFO) |
1347                                                       (1 << IPCT_NATSEQADJ) |
1348                                                       (1 << IPCT_MARK) | events,
1349                                                       ct, NETLINK_CB(skb).pid,
1350                                                       nlmsg_report(nlh));
1351                         nf_ct_put(ct);
1352                 } else
1353                         spin_unlock_bh(&nf_conntrack_lock);
1354
1355                 return err;
1356         }
1357         /* implicit 'else' */
1358
1359         /* We manipulate the conntrack inside the global conntrack table lock,
1360          * so there's no need to increase the refcount */
1361         err = -EEXIST;
1362         if (!(nlh->nlmsg_flags & NLM_F_EXCL)) {
1363                 struct nf_conn *ct = nf_ct_tuplehash_to_ctrack(h);
1364
1365                 err = ctnetlink_change_conntrack(ct, cda);
1366                 if (err == 0) {
1367                         nf_conntrack_get(&ct->ct_general);
1368                         spin_unlock_bh(&nf_conntrack_lock);
1369                         nf_conntrack_eventmask_report((1 << IPCT_STATUS) |
1370                                                       (1 << IPCT_HELPER) |
1371                                                       (1 << IPCT_PROTOINFO) |
1372                                                       (1 << IPCT_NATSEQADJ) |
1373                                                       (1 << IPCT_MARK),
1374                                                       ct, NETLINK_CB(skb).pid,
1375                                                       nlmsg_report(nlh));
1376                         nf_ct_put(ct);
1377                 } else
1378                         spin_unlock_bh(&nf_conntrack_lock);
1379
1380                 return err;
1381         }
1382
1383 out_unlock:
1384         spin_unlock_bh(&nf_conntrack_lock);
1385         return err;
1386 }
1387
1388 /***********************************************************************
1389  * EXPECT
1390  ***********************************************************************/
1391
1392 static inline int
1393 ctnetlink_exp_dump_tuple(struct sk_buff *skb,
1394                          const struct nf_conntrack_tuple *tuple,
1395                          enum ctattr_expect type)
1396 {
1397         struct nlattr *nest_parms;
1398
1399         nest_parms = nla_nest_start(skb, type | NLA_F_NESTED);
1400         if (!nest_parms)
1401                 goto nla_put_failure;
1402         if (ctnetlink_dump_tuples(skb, tuple) < 0)
1403                 goto nla_put_failure;
1404         nla_nest_end(skb, nest_parms);
1405
1406         return 0;
1407
1408 nla_put_failure:
1409         return -1;
1410 }
1411
1412 static inline int
1413 ctnetlink_exp_dump_mask(struct sk_buff *skb,
1414                         const struct nf_conntrack_tuple *tuple,
1415                         const struct nf_conntrack_tuple_mask *mask)
1416 {
1417         int ret;
1418         struct nf_conntrack_l3proto *l3proto;
1419         struct nf_conntrack_l4proto *l4proto;
1420         struct nf_conntrack_tuple m;
1421         struct nlattr *nest_parms;
1422
1423         memset(&m, 0xFF, sizeof(m));
1424         m.src.u.all = mask->src.u.all;
1425         memcpy(&m.src.u3, &mask->src.u3, sizeof(m.src.u3));
1426
1427         nest_parms = nla_nest_start(skb, CTA_EXPECT_MASK | NLA_F_NESTED);
1428         if (!nest_parms)
1429                 goto nla_put_failure;
1430
1431         l3proto = __nf_ct_l3proto_find(tuple->src.l3num);
1432         ret = ctnetlink_dump_tuples_ip(skb, &m, l3proto);
1433
1434         if (unlikely(ret < 0))
1435                 goto nla_put_failure;
1436
1437         l4proto = __nf_ct_l4proto_find(tuple->src.l3num, tuple->dst.protonum);
1438         ret = ctnetlink_dump_tuples_proto(skb, &m, l4proto);
1439         if (unlikely(ret < 0))
1440                 goto nla_put_failure;
1441
1442         nla_nest_end(skb, nest_parms);
1443
1444         return 0;
1445
1446 nla_put_failure:
1447         return -1;
1448 }
1449
1450 static int
1451 ctnetlink_exp_dump_expect(struct sk_buff *skb,
1452                           const struct nf_conntrack_expect *exp)
1453 {
1454         struct nf_conn *master = exp->master;
1455         long timeout = (exp->timeout.expires - jiffies) / HZ;
1456
1457         if (timeout < 0)
1458                 timeout = 0;
1459
1460         if (ctnetlink_exp_dump_tuple(skb, &exp->tuple, CTA_EXPECT_TUPLE) < 0)
1461                 goto nla_put_failure;
1462         if (ctnetlink_exp_dump_mask(skb, &exp->tuple, &exp->mask) < 0)
1463                 goto nla_put_failure;
1464         if (ctnetlink_exp_dump_tuple(skb,
1465                                  &master->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
1466                                  CTA_EXPECT_MASTER) < 0)
1467                 goto nla_put_failure;
1468
1469         NLA_PUT_BE32(skb, CTA_EXPECT_TIMEOUT, htonl(timeout));
1470         NLA_PUT_BE32(skb, CTA_EXPECT_ID, htonl((unsigned long)exp));
1471
1472         return 0;
1473
1474 nla_put_failure:
1475         return -1;
1476 }
1477
1478 static int
1479 ctnetlink_exp_fill_info(struct sk_buff *skb, u32 pid, u32 seq,
1480                         int event, const struct nf_conntrack_expect *exp)
1481 {
1482         struct nlmsghdr *nlh;
1483         struct nfgenmsg *nfmsg;
1484         unsigned int flags = pid ? NLM_F_MULTI : 0;
1485
1486         event |= NFNL_SUBSYS_CTNETLINK_EXP << 8;
1487         nlh = nlmsg_put(skb, pid, seq, event, sizeof(*nfmsg), flags);
1488         if (nlh == NULL)
1489                 goto nlmsg_failure;
1490
1491         nfmsg = nlmsg_data(nlh);
1492         nfmsg->nfgen_family = exp->tuple.src.l3num;
1493         nfmsg->version      = NFNETLINK_V0;
1494         nfmsg->res_id       = 0;
1495
1496         if (ctnetlink_exp_dump_expect(skb, exp) < 0)
1497                 goto nla_put_failure;
1498
1499         nlmsg_end(skb, nlh);
1500         return skb->len;
1501
1502 nlmsg_failure:
1503 nla_put_failure:
1504         nlmsg_cancel(skb, nlh);
1505         return -1;
1506 }
1507
1508 #ifdef CONFIG_NF_CONNTRACK_EVENTS
1509 static int
1510 ctnetlink_expect_event(unsigned int events, struct nf_exp_event *item)
1511 {
1512         struct nlmsghdr *nlh;
1513         struct nfgenmsg *nfmsg;
1514         struct nf_conntrack_expect *exp = item->exp;
1515         struct sk_buff *skb;
1516         unsigned int type;
1517         int flags = 0;
1518
1519         if (events & (1 << IPEXP_NEW)) {
1520                 type = IPCTNL_MSG_EXP_NEW;
1521                 flags = NLM_F_CREATE|NLM_F_EXCL;
1522         } else
1523                 return 0;
1524
1525         if (!item->report &&
1526             !nfnetlink_has_listeners(NFNLGRP_CONNTRACK_EXP_NEW))
1527                 return 0;
1528
1529         skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
1530         if (skb == NULL)
1531                 goto errout;
1532
1533         type |= NFNL_SUBSYS_CTNETLINK_EXP << 8;
1534         nlh = nlmsg_put(skb, item->pid, 0, type, sizeof(*nfmsg), flags);
1535         if (nlh == NULL)
1536                 goto nlmsg_failure;
1537
1538         nfmsg = nlmsg_data(nlh);
1539         nfmsg->nfgen_family = exp->tuple.src.l3num;
1540         nfmsg->version      = NFNETLINK_V0;
1541         nfmsg->res_id       = 0;
1542
1543         rcu_read_lock();
1544         if (ctnetlink_exp_dump_expect(skb, exp) < 0)
1545                 goto nla_put_failure;
1546         rcu_read_unlock();
1547
1548         nlmsg_end(skb, nlh);
1549         nfnetlink_send(skb, item->pid, NFNLGRP_CONNTRACK_EXP_NEW,
1550                        item->report, GFP_ATOMIC);
1551         return 0;
1552
1553 nla_put_failure:
1554         rcu_read_unlock();
1555         nlmsg_cancel(skb, nlh);
1556 nlmsg_failure:
1557         kfree_skb(skb);
1558 errout:
1559         nfnetlink_set_err(0, 0, -ENOBUFS);
1560         return 0;
1561 }
1562 #endif
1563 static int ctnetlink_exp_done(struct netlink_callback *cb)
1564 {
1565         if (cb->args[1])
1566                 nf_ct_expect_put((struct nf_conntrack_expect *)cb->args[1]);
1567         return 0;
1568 }
1569
1570 static int
1571 ctnetlink_exp_dump_table(struct sk_buff *skb, struct netlink_callback *cb)
1572 {
1573         struct net *net = &init_net;
1574         struct nf_conntrack_expect *exp, *last;
1575         struct nfgenmsg *nfmsg = nlmsg_data(cb->nlh);
1576         struct hlist_node *n;
1577         u_int8_t l3proto = nfmsg->nfgen_family;
1578
1579         rcu_read_lock();
1580         last = (struct nf_conntrack_expect *)cb->args[1];
1581         for (; cb->args[0] < nf_ct_expect_hsize; cb->args[0]++) {
1582 restart:
1583                 hlist_for_each_entry(exp, n, &net->ct.expect_hash[cb->args[0]],
1584                                      hnode) {
1585                         if (l3proto && exp->tuple.src.l3num != l3proto)
1586                                 continue;
1587                         if (cb->args[1]) {
1588                                 if (exp != last)
1589                                         continue;
1590                                 cb->args[1] = 0;
1591                         }
1592                         if (ctnetlink_exp_fill_info(skb,
1593                                                     NETLINK_CB(cb->skb).pid,
1594                                                     cb->nlh->nlmsg_seq,
1595                                                     IPCTNL_MSG_EXP_NEW,
1596                                                     exp) < 0) {
1597                                 if (!atomic_inc_not_zero(&exp->use))
1598                                         continue;
1599                                 cb->args[1] = (unsigned long)exp;
1600                                 goto out;
1601                         }
1602                 }
1603                 if (cb->args[1]) {
1604                         cb->args[1] = 0;
1605                         goto restart;
1606                 }
1607         }
1608 out:
1609         rcu_read_unlock();
1610         if (last)
1611                 nf_ct_expect_put(last);
1612
1613         return skb->len;
1614 }
1615
1616 static const struct nla_policy exp_nla_policy[CTA_EXPECT_MAX+1] = {
1617         [CTA_EXPECT_TIMEOUT]    = { .type = NLA_U32 },
1618         [CTA_EXPECT_ID]         = { .type = NLA_U32 },
1619 };
1620
1621 static int
1622 ctnetlink_get_expect(struct sock *ctnl, struct sk_buff *skb,
1623                      struct nlmsghdr *nlh, struct nlattr *cda[])
1624 {
1625         struct nf_conntrack_tuple tuple;
1626         struct nf_conntrack_expect *exp;
1627         struct sk_buff *skb2;
1628         struct nfgenmsg *nfmsg = nlmsg_data(nlh);
1629         u_int8_t u3 = nfmsg->nfgen_family;
1630         int err = 0;
1631
1632         if (nlh->nlmsg_flags & NLM_F_DUMP) {
1633                 return netlink_dump_start(ctnl, skb, nlh,
1634                                           ctnetlink_exp_dump_table,
1635                                           ctnetlink_exp_done);
1636         }
1637
1638         if (cda[CTA_EXPECT_MASTER])
1639                 err = ctnetlink_parse_tuple(cda, &tuple, CTA_EXPECT_MASTER, u3);
1640         else
1641                 return -EINVAL;
1642
1643         if (err < 0)
1644                 return err;
1645
1646         exp = nf_ct_expect_find_get(&init_net, &tuple);
1647         if (!exp)
1648                 return -ENOENT;
1649
1650         if (cda[CTA_EXPECT_ID]) {
1651                 __be32 id = nla_get_be32(cda[CTA_EXPECT_ID]);
1652                 if (ntohl(id) != (u32)(unsigned long)exp) {
1653                         nf_ct_expect_put(exp);
1654                         return -ENOENT;
1655                 }
1656         }
1657
1658         err = -ENOMEM;
1659         skb2 = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
1660         if (skb2 == NULL)
1661                 goto out;
1662
1663         rcu_read_lock();
1664         err = ctnetlink_exp_fill_info(skb2, NETLINK_CB(skb).pid,
1665                                       nlh->nlmsg_seq, IPCTNL_MSG_EXP_NEW, exp);
1666         rcu_read_unlock();
1667         if (err <= 0)
1668                 goto free;
1669
1670         nf_ct_expect_put(exp);
1671
1672         return netlink_unicast(ctnl, skb2, NETLINK_CB(skb).pid, MSG_DONTWAIT);
1673
1674 free:
1675         kfree_skb(skb2);
1676 out:
1677         nf_ct_expect_put(exp);
1678         return err;
1679 }
1680
1681 static int
1682 ctnetlink_del_expect(struct sock *ctnl, struct sk_buff *skb,
1683                      struct nlmsghdr *nlh, struct nlattr *cda[])
1684 {
1685         struct nf_conntrack_expect *exp;
1686         struct nf_conntrack_tuple tuple;
1687         struct nf_conntrack_helper *h;
1688         struct nfgenmsg *nfmsg = nlmsg_data(nlh);
1689         struct hlist_node *n, *next;
1690         u_int8_t u3 = nfmsg->nfgen_family;
1691         unsigned int i;
1692         int err;
1693
1694         if (cda[CTA_EXPECT_TUPLE]) {
1695                 /* delete a single expect by tuple */
1696                 err = ctnetlink_parse_tuple(cda, &tuple, CTA_EXPECT_TUPLE, u3);
1697                 if (err < 0)
1698                         return err;
1699
1700                 /* bump usage count to 2 */
1701                 exp = nf_ct_expect_find_get(&init_net, &tuple);
1702                 if (!exp)
1703                         return -ENOENT;
1704
1705                 if (cda[CTA_EXPECT_ID]) {
1706                         __be32 id = nla_get_be32(cda[CTA_EXPECT_ID]);
1707                         if (ntohl(id) != (u32)(unsigned long)exp) {
1708                                 nf_ct_expect_put(exp);
1709                                 return -ENOENT;
1710                         }
1711                 }
1712
1713                 /* after list removal, usage count == 1 */
1714                 nf_ct_unexpect_related(exp);
1715                 /* have to put what we 'get' above.
1716                  * after this line usage count == 0 */
1717                 nf_ct_expect_put(exp);
1718         } else if (cda[CTA_EXPECT_HELP_NAME]) {
1719                 char *name = nla_data(cda[CTA_EXPECT_HELP_NAME]);
1720                 struct nf_conn_help *m_help;
1721
1722                 /* delete all expectations for this helper */
1723                 spin_lock_bh(&nf_conntrack_lock);
1724                 h = __nf_conntrack_helper_find_byname(name);
1725                 if (!h) {
1726                         spin_unlock_bh(&nf_conntrack_lock);
1727                         return -EOPNOTSUPP;
1728                 }
1729                 for (i = 0; i < nf_ct_expect_hsize; i++) {
1730                         hlist_for_each_entry_safe(exp, n, next,
1731                                                   &init_net.ct.expect_hash[i],
1732                                                   hnode) {
1733                                 m_help = nfct_help(exp->master);
1734                                 if (m_help->helper == h
1735                                     && del_timer(&exp->timeout)) {
1736                                         nf_ct_unlink_expect(exp);
1737                                         nf_ct_expect_put(exp);
1738                                 }
1739                         }
1740                 }
1741                 spin_unlock_bh(&nf_conntrack_lock);
1742         } else {
1743                 /* This basically means we have to flush everything*/
1744                 spin_lock_bh(&nf_conntrack_lock);
1745                 for (i = 0; i < nf_ct_expect_hsize; i++) {
1746                         hlist_for_each_entry_safe(exp, n, next,
1747                                                   &init_net.ct.expect_hash[i],
1748                                                   hnode) {
1749                                 if (del_timer(&exp->timeout)) {
1750                                         nf_ct_unlink_expect(exp);
1751                                         nf_ct_expect_put(exp);
1752                                 }
1753                         }
1754                 }
1755                 spin_unlock_bh(&nf_conntrack_lock);
1756         }
1757
1758         return 0;
1759 }
1760 static int
1761 ctnetlink_change_expect(struct nf_conntrack_expect *x, struct nlattr *cda[])
1762 {
1763         return -EOPNOTSUPP;
1764 }
1765
1766 static int
1767 ctnetlink_create_expect(struct nlattr *cda[], u_int8_t u3, u32 pid, int report)
1768 {
1769         struct nf_conntrack_tuple tuple, mask, master_tuple;
1770         struct nf_conntrack_tuple_hash *h = NULL;
1771         struct nf_conntrack_expect *exp;
1772         struct nf_conn *ct;
1773         struct nf_conn_help *help;
1774         int err = 0;
1775
1776         /* caller guarantees that those three CTA_EXPECT_* exist */
1777         err = ctnetlink_parse_tuple(cda, &tuple, CTA_EXPECT_TUPLE, u3);
1778         if (err < 0)
1779                 return err;
1780         err = ctnetlink_parse_tuple(cda, &mask, CTA_EXPECT_MASK, u3);
1781         if (err < 0)
1782                 return err;
1783         err = ctnetlink_parse_tuple(cda, &master_tuple, CTA_EXPECT_MASTER, u3);
1784         if (err < 0)
1785                 return err;
1786
1787         /* Look for master conntrack of this expectation */
1788         h = nf_conntrack_find_get(&init_net, &master_tuple);
1789         if (!h)
1790                 return -ENOENT;
1791         ct = nf_ct_tuplehash_to_ctrack(h);
1792         help = nfct_help(ct);
1793
1794         if (!help || !help->helper) {
1795                 /* such conntrack hasn't got any helper, abort */
1796                 err = -EOPNOTSUPP;
1797                 goto out;
1798         }
1799
1800         exp = nf_ct_expect_alloc(ct);
1801         if (!exp) {
1802                 err = -ENOMEM;
1803                 goto out;
1804         }
1805
1806         exp->class = 0;
1807         exp->expectfn = NULL;
1808         exp->flags = 0;
1809         exp->master = ct;
1810         exp->helper = NULL;
1811         memcpy(&exp->tuple, &tuple, sizeof(struct nf_conntrack_tuple));
1812         memcpy(&exp->mask.src.u3, &mask.src.u3, sizeof(exp->mask.src.u3));
1813         exp->mask.src.u.all = mask.src.u.all;
1814
1815         err = nf_ct_expect_related_report(exp, pid, report);
1816         nf_ct_expect_put(exp);
1817
1818 out:
1819         nf_ct_put(nf_ct_tuplehash_to_ctrack(h));
1820         return err;
1821 }
1822
1823 static int
1824 ctnetlink_new_expect(struct sock *ctnl, struct sk_buff *skb,
1825                      struct nlmsghdr *nlh, struct nlattr *cda[])
1826 {
1827         struct nf_conntrack_tuple tuple;
1828         struct nf_conntrack_expect *exp;
1829         struct nfgenmsg *nfmsg = nlmsg_data(nlh);
1830         u_int8_t u3 = nfmsg->nfgen_family;
1831         int err = 0;
1832
1833         if (!cda[CTA_EXPECT_TUPLE]
1834             || !cda[CTA_EXPECT_MASK]
1835             || !cda[CTA_EXPECT_MASTER])
1836                 return -EINVAL;
1837
1838         err = ctnetlink_parse_tuple(cda, &tuple, CTA_EXPECT_TUPLE, u3);
1839         if (err < 0)
1840                 return err;
1841
1842         spin_lock_bh(&nf_conntrack_lock);
1843         exp = __nf_ct_expect_find(&init_net, &tuple);
1844
1845         if (!exp) {
1846                 spin_unlock_bh(&nf_conntrack_lock);
1847                 err = -ENOENT;
1848                 if (nlh->nlmsg_flags & NLM_F_CREATE) {
1849                         err = ctnetlink_create_expect(cda,
1850                                                       u3,
1851                                                       NETLINK_CB(skb).pid,
1852                                                       nlmsg_report(nlh));
1853                 }
1854                 return err;
1855         }
1856
1857         err = -EEXIST;
1858         if (!(nlh->nlmsg_flags & NLM_F_EXCL))
1859                 err = ctnetlink_change_expect(exp, cda);
1860         spin_unlock_bh(&nf_conntrack_lock);
1861
1862         return err;
1863 }
1864
1865 #ifdef CONFIG_NF_CONNTRACK_EVENTS
1866 static struct nf_ct_event_notifier ctnl_notifier = {
1867         .fcn = ctnetlink_conntrack_event,
1868 };
1869
1870 static struct nf_exp_event_notifier ctnl_notifier_exp = {
1871         .fcn = ctnetlink_expect_event,
1872 };
1873 #endif
1874
1875 static const struct nfnl_callback ctnl_cb[IPCTNL_MSG_MAX] = {
1876         [IPCTNL_MSG_CT_NEW]             = { .call = ctnetlink_new_conntrack,
1877                                             .attr_count = CTA_MAX,
1878                                             .policy = ct_nla_policy },
1879         [IPCTNL_MSG_CT_GET]             = { .call = ctnetlink_get_conntrack,
1880                                             .attr_count = CTA_MAX,
1881                                             .policy = ct_nla_policy },
1882         [IPCTNL_MSG_CT_DELETE]          = { .call = ctnetlink_del_conntrack,
1883                                             .attr_count = CTA_MAX,
1884                                             .policy = ct_nla_policy },
1885         [IPCTNL_MSG_CT_GET_CTRZERO]     = { .call = ctnetlink_get_conntrack,
1886                                             .attr_count = CTA_MAX,
1887                                             .policy = ct_nla_policy },
1888 };
1889
1890 static const struct nfnl_callback ctnl_exp_cb[IPCTNL_MSG_EXP_MAX] = {
1891         [IPCTNL_MSG_EXP_GET]            = { .call = ctnetlink_get_expect,
1892                                             .attr_count = CTA_EXPECT_MAX,
1893                                             .policy = exp_nla_policy },
1894         [IPCTNL_MSG_EXP_NEW]            = { .call = ctnetlink_new_expect,
1895                                             .attr_count = CTA_EXPECT_MAX,
1896                                             .policy = exp_nla_policy },
1897         [IPCTNL_MSG_EXP_DELETE]         = { .call = ctnetlink_del_expect,
1898                                             .attr_count = CTA_EXPECT_MAX,
1899                                             .policy = exp_nla_policy },
1900 };
1901
1902 static const struct nfnetlink_subsystem ctnl_subsys = {
1903         .name                           = "conntrack",
1904         .subsys_id                      = NFNL_SUBSYS_CTNETLINK,
1905         .cb_count                       = IPCTNL_MSG_MAX,
1906         .cb                             = ctnl_cb,
1907 };
1908
1909 static const struct nfnetlink_subsystem ctnl_exp_subsys = {
1910         .name                           = "conntrack_expect",
1911         .subsys_id                      = NFNL_SUBSYS_CTNETLINK_EXP,
1912         .cb_count                       = IPCTNL_MSG_EXP_MAX,
1913         .cb                             = ctnl_exp_cb,
1914 };
1915
1916 MODULE_ALIAS("ip_conntrack_netlink");
1917 MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_CTNETLINK);
1918 MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_CTNETLINK_EXP);
1919
1920 static int __init ctnetlink_init(void)
1921 {
1922         int ret;
1923
1924         printk("ctnetlink v%s: registering with nfnetlink.\n", version);
1925         ret = nfnetlink_subsys_register(&ctnl_subsys);
1926         if (ret < 0) {
1927                 printk("ctnetlink_init: cannot register with nfnetlink.\n");
1928                 goto err_out;
1929         }
1930
1931         ret = nfnetlink_subsys_register(&ctnl_exp_subsys);
1932         if (ret < 0) {
1933                 printk("ctnetlink_init: cannot register exp with nfnetlink.\n");
1934                 goto err_unreg_subsys;
1935         }
1936
1937 #ifdef CONFIG_NF_CONNTRACK_EVENTS
1938         ret = nf_conntrack_register_notifier(&ctnl_notifier);
1939         if (ret < 0) {
1940                 printk("ctnetlink_init: cannot register notifier.\n");
1941                 goto err_unreg_exp_subsys;
1942         }
1943
1944         ret = nf_ct_expect_register_notifier(&ctnl_notifier_exp);
1945         if (ret < 0) {
1946                 printk("ctnetlink_init: cannot expect register notifier.\n");
1947                 goto err_unreg_notifier;
1948         }
1949 #endif
1950
1951         return 0;
1952
1953 #ifdef CONFIG_NF_CONNTRACK_EVENTS
1954 err_unreg_notifier:
1955         nf_conntrack_unregister_notifier(&ctnl_notifier);
1956 err_unreg_exp_subsys:
1957         nfnetlink_subsys_unregister(&ctnl_exp_subsys);
1958 #endif
1959 err_unreg_subsys:
1960         nfnetlink_subsys_unregister(&ctnl_subsys);
1961 err_out:
1962         return ret;
1963 }
1964
1965 static void __exit ctnetlink_exit(void)
1966 {
1967         printk("ctnetlink: unregistering from nfnetlink.\n");
1968
1969 #ifdef CONFIG_NF_CONNTRACK_EVENTS
1970         nf_ct_expect_unregister_notifier(&ctnl_notifier_exp);
1971         nf_conntrack_unregister_notifier(&ctnl_notifier);
1972 #endif
1973
1974         nfnetlink_subsys_unregister(&ctnl_exp_subsys);
1975         nfnetlink_subsys_unregister(&ctnl_subsys);
1976         return;
1977 }
1978
1979 module_init(ctnetlink_init);
1980 module_exit(ctnetlink_exit);