4e503ada572857442faa754aab3e528a07d26ae6
[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 & IPCT_DESTROY) {
472                 type = IPCTNL_MSG_CT_DELETE;
473                 group = NFNLGRP_CONNTRACK_DESTROY;
474         } else  if (events & (IPCT_NEW | 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 & 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 & IPCT_PROTOINFO
531                     && ctnetlink_dump_protoinfo(skb, ct) < 0)
532                         goto nla_put_failure;
533
534                 if ((events & 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 & IPCT_SECMARK || ct->secmark)
540                     && ctnetlink_dump_secmark(skb, ct) < 0)
541                         goto nla_put_failure;
542 #endif
543
544                 if (events & IPCT_RELATED &&
545                     ctnetlink_dump_master(skb, ct) < 0)
546                         goto nla_put_failure;
547
548                 if (events & 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 & 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
1257 #if defined(CONFIG_NF_CONNTRACK_MARK)
1258         if (cda[CTA_MARK])
1259                 ct->mark = ntohl(nla_get_be32(cda[CTA_MARK]));
1260 #endif
1261
1262         /* setup master conntrack: this is a confirmed expectation */
1263         if (cda[CTA_TUPLE_MASTER]) {
1264                 struct nf_conntrack_tuple master;
1265                 struct nf_conntrack_tuple_hash *master_h;
1266                 struct nf_conn *master_ct;
1267
1268                 err = ctnetlink_parse_tuple(cda, &master, CTA_TUPLE_MASTER, u3);
1269                 if (err < 0)
1270                         goto err2;
1271
1272                 master_h = nf_conntrack_find_get(&init_net, &master);
1273                 if (master_h == NULL) {
1274                         err = -ENOENT;
1275                         goto err2;
1276                 }
1277                 master_ct = nf_ct_tuplehash_to_ctrack(master_h);
1278                 __set_bit(IPS_EXPECTED_BIT, &ct->status);
1279                 ct->master = master_ct;
1280         }
1281
1282         add_timer(&ct->timeout);
1283         nf_conntrack_hash_insert(ct);
1284         rcu_read_unlock();
1285
1286         return ct;
1287
1288 err2:
1289         rcu_read_unlock();
1290 err1:
1291         nf_conntrack_free(ct);
1292         return ERR_PTR(err);
1293 }
1294
1295 static int
1296 ctnetlink_new_conntrack(struct sock *ctnl, struct sk_buff *skb,
1297                         struct nlmsghdr *nlh, struct nlattr *cda[])
1298 {
1299         struct nf_conntrack_tuple otuple, rtuple;
1300         struct nf_conntrack_tuple_hash *h = NULL;
1301         struct nfgenmsg *nfmsg = nlmsg_data(nlh);
1302         u_int8_t u3 = nfmsg->nfgen_family;
1303         int err = 0;
1304
1305         if (cda[CTA_TUPLE_ORIG]) {
1306                 err = ctnetlink_parse_tuple(cda, &otuple, CTA_TUPLE_ORIG, u3);
1307                 if (err < 0)
1308                         return err;
1309         }
1310
1311         if (cda[CTA_TUPLE_REPLY]) {
1312                 err = ctnetlink_parse_tuple(cda, &rtuple, CTA_TUPLE_REPLY, u3);
1313                 if (err < 0)
1314                         return err;
1315         }
1316
1317         spin_lock_bh(&nf_conntrack_lock);
1318         if (cda[CTA_TUPLE_ORIG])
1319                 h = __nf_conntrack_find(&init_net, &otuple);
1320         else if (cda[CTA_TUPLE_REPLY])
1321                 h = __nf_conntrack_find(&init_net, &rtuple);
1322
1323         if (h == NULL) {
1324                 err = -ENOENT;
1325                 if (nlh->nlmsg_flags & NLM_F_CREATE) {
1326                         struct nf_conn *ct;
1327                         enum ip_conntrack_events events;
1328
1329                         ct = ctnetlink_create_conntrack(cda, &otuple,
1330                                                         &rtuple, u3);
1331                         if (IS_ERR(ct)) {
1332                                 err = PTR_ERR(ct);
1333                                 goto out_unlock;
1334                         }
1335                         err = 0;
1336                         nf_conntrack_get(&ct->ct_general);
1337                         spin_unlock_bh(&nf_conntrack_lock);
1338                         if (test_bit(IPS_EXPECTED_BIT, &ct->status))
1339                                 events = IPCT_RELATED;
1340                         else
1341                                 events = IPCT_NEW;
1342
1343                         nf_conntrack_event_report(IPCT_STATUS |
1344                                                   IPCT_HELPER |
1345                                                   IPCT_PROTOINFO |
1346                                                   IPCT_NATSEQADJ |
1347                                                   IPCT_MARK | events,
1348                                                   ct, NETLINK_CB(skb).pid,
1349                                                   nlmsg_report(nlh));
1350                         nf_ct_put(ct);
1351                 } else
1352                         spin_unlock_bh(&nf_conntrack_lock);
1353
1354                 return err;
1355         }
1356         /* implicit 'else' */
1357
1358         /* We manipulate the conntrack inside the global conntrack table lock,
1359          * so there's no need to increase the refcount */
1360         err = -EEXIST;
1361         if (!(nlh->nlmsg_flags & NLM_F_EXCL)) {
1362                 struct nf_conn *ct = nf_ct_tuplehash_to_ctrack(h);
1363
1364                 err = ctnetlink_change_conntrack(ct, cda);
1365                 if (err == 0) {
1366                         nf_conntrack_get(&ct->ct_general);
1367                         spin_unlock_bh(&nf_conntrack_lock);
1368                         nf_conntrack_event_report(IPCT_STATUS |
1369                                                   IPCT_HELPER |
1370                                                   IPCT_PROTOINFO |
1371                                                   IPCT_NATSEQADJ |
1372                                                   IPCT_MARK,
1373                                                   ct, NETLINK_CB(skb).pid,
1374                                                   nlmsg_report(nlh));
1375                         nf_ct_put(ct);
1376                 } else
1377                         spin_unlock_bh(&nf_conntrack_lock);
1378
1379                 return err;
1380         }
1381
1382 out_unlock:
1383         spin_unlock_bh(&nf_conntrack_lock);
1384         return err;
1385 }
1386
1387 /***********************************************************************
1388  * EXPECT
1389  ***********************************************************************/
1390
1391 static inline int
1392 ctnetlink_exp_dump_tuple(struct sk_buff *skb,
1393                          const struct nf_conntrack_tuple *tuple,
1394                          enum ctattr_expect type)
1395 {
1396         struct nlattr *nest_parms;
1397
1398         nest_parms = nla_nest_start(skb, type | NLA_F_NESTED);
1399         if (!nest_parms)
1400                 goto nla_put_failure;
1401         if (ctnetlink_dump_tuples(skb, tuple) < 0)
1402                 goto nla_put_failure;
1403         nla_nest_end(skb, nest_parms);
1404
1405         return 0;
1406
1407 nla_put_failure:
1408         return -1;
1409 }
1410
1411 static inline int
1412 ctnetlink_exp_dump_mask(struct sk_buff *skb,
1413                         const struct nf_conntrack_tuple *tuple,
1414                         const struct nf_conntrack_tuple_mask *mask)
1415 {
1416         int ret;
1417         struct nf_conntrack_l3proto *l3proto;
1418         struct nf_conntrack_l4proto *l4proto;
1419         struct nf_conntrack_tuple m;
1420         struct nlattr *nest_parms;
1421
1422         memset(&m, 0xFF, sizeof(m));
1423         m.src.u.all = mask->src.u.all;
1424         memcpy(&m.src.u3, &mask->src.u3, sizeof(m.src.u3));
1425
1426         nest_parms = nla_nest_start(skb, CTA_EXPECT_MASK | NLA_F_NESTED);
1427         if (!nest_parms)
1428                 goto nla_put_failure;
1429
1430         l3proto = __nf_ct_l3proto_find(tuple->src.l3num);
1431         ret = ctnetlink_dump_tuples_ip(skb, &m, l3proto);
1432
1433         if (unlikely(ret < 0))
1434                 goto nla_put_failure;
1435
1436         l4proto = __nf_ct_l4proto_find(tuple->src.l3num, tuple->dst.protonum);
1437         ret = ctnetlink_dump_tuples_proto(skb, &m, l4proto);
1438         if (unlikely(ret < 0))
1439                 goto nla_put_failure;
1440
1441         nla_nest_end(skb, nest_parms);
1442
1443         return 0;
1444
1445 nla_put_failure:
1446         return -1;
1447 }
1448
1449 static int
1450 ctnetlink_exp_dump_expect(struct sk_buff *skb,
1451                           const struct nf_conntrack_expect *exp)
1452 {
1453         struct nf_conn *master = exp->master;
1454         long timeout = (exp->timeout.expires - jiffies) / HZ;
1455
1456         if (timeout < 0)
1457                 timeout = 0;
1458
1459         if (ctnetlink_exp_dump_tuple(skb, &exp->tuple, CTA_EXPECT_TUPLE) < 0)
1460                 goto nla_put_failure;
1461         if (ctnetlink_exp_dump_mask(skb, &exp->tuple, &exp->mask) < 0)
1462                 goto nla_put_failure;
1463         if (ctnetlink_exp_dump_tuple(skb,
1464                                  &master->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
1465                                  CTA_EXPECT_MASTER) < 0)
1466                 goto nla_put_failure;
1467
1468         NLA_PUT_BE32(skb, CTA_EXPECT_TIMEOUT, htonl(timeout));
1469         NLA_PUT_BE32(skb, CTA_EXPECT_ID, htonl((unsigned long)exp));
1470
1471         return 0;
1472
1473 nla_put_failure:
1474         return -1;
1475 }
1476
1477 static int
1478 ctnetlink_exp_fill_info(struct sk_buff *skb, u32 pid, u32 seq,
1479                         int event, const struct nf_conntrack_expect *exp)
1480 {
1481         struct nlmsghdr *nlh;
1482         struct nfgenmsg *nfmsg;
1483         unsigned int flags = pid ? NLM_F_MULTI : 0;
1484
1485         event |= NFNL_SUBSYS_CTNETLINK_EXP << 8;
1486         nlh = nlmsg_put(skb, pid, seq, event, sizeof(*nfmsg), flags);
1487         if (nlh == NULL)
1488                 goto nlmsg_failure;
1489
1490         nfmsg = nlmsg_data(nlh);
1491         nfmsg->nfgen_family = exp->tuple.src.l3num;
1492         nfmsg->version      = NFNETLINK_V0;
1493         nfmsg->res_id       = 0;
1494
1495         if (ctnetlink_exp_dump_expect(skb, exp) < 0)
1496                 goto nla_put_failure;
1497
1498         nlmsg_end(skb, nlh);
1499         return skb->len;
1500
1501 nlmsg_failure:
1502 nla_put_failure:
1503         nlmsg_cancel(skb, nlh);
1504         return -1;
1505 }
1506
1507 #ifdef CONFIG_NF_CONNTRACK_EVENTS
1508 static int
1509 ctnetlink_expect_event(unsigned int events, struct nf_exp_event *item)
1510 {
1511         struct nlmsghdr *nlh;
1512         struct nfgenmsg *nfmsg;
1513         struct nf_conntrack_expect *exp = item->exp;
1514         struct sk_buff *skb;
1515         unsigned int type;
1516         int flags = 0;
1517
1518         if (events & IPEXP_NEW) {
1519                 type = IPCTNL_MSG_EXP_NEW;
1520                 flags = NLM_F_CREATE|NLM_F_EXCL;
1521         } else
1522                 return 0;
1523
1524         if (!item->report &&
1525             !nfnetlink_has_listeners(NFNLGRP_CONNTRACK_EXP_NEW))
1526                 return 0;
1527
1528         skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
1529         if (skb == NULL)
1530                 goto errout;
1531
1532         type |= NFNL_SUBSYS_CTNETLINK_EXP << 8;
1533         nlh = nlmsg_put(skb, item->pid, 0, type, sizeof(*nfmsg), flags);
1534         if (nlh == NULL)
1535                 goto nlmsg_failure;
1536
1537         nfmsg = nlmsg_data(nlh);
1538         nfmsg->nfgen_family = exp->tuple.src.l3num;
1539         nfmsg->version      = NFNETLINK_V0;
1540         nfmsg->res_id       = 0;
1541
1542         rcu_read_lock();
1543         if (ctnetlink_exp_dump_expect(skb, exp) < 0)
1544                 goto nla_put_failure;
1545         rcu_read_unlock();
1546
1547         nlmsg_end(skb, nlh);
1548         nfnetlink_send(skb, item->pid, NFNLGRP_CONNTRACK_EXP_NEW,
1549                        item->report, GFP_ATOMIC);
1550         return 0;
1551
1552 nla_put_failure:
1553         rcu_read_unlock();
1554         nlmsg_cancel(skb, nlh);
1555 nlmsg_failure:
1556         kfree_skb(skb);
1557 errout:
1558         nfnetlink_set_err(0, 0, -ENOBUFS);
1559         return 0;
1560 }
1561 #endif
1562 static int ctnetlink_exp_done(struct netlink_callback *cb)
1563 {
1564         if (cb->args[1])
1565                 nf_ct_expect_put((struct nf_conntrack_expect *)cb->args[1]);
1566         return 0;
1567 }
1568
1569 static int
1570 ctnetlink_exp_dump_table(struct sk_buff *skb, struct netlink_callback *cb)
1571 {
1572         struct net *net = &init_net;
1573         struct nf_conntrack_expect *exp, *last;
1574         struct nfgenmsg *nfmsg = nlmsg_data(cb->nlh);
1575         struct hlist_node *n;
1576         u_int8_t l3proto = nfmsg->nfgen_family;
1577
1578         rcu_read_lock();
1579         last = (struct nf_conntrack_expect *)cb->args[1];
1580         for (; cb->args[0] < nf_ct_expect_hsize; cb->args[0]++) {
1581 restart:
1582                 hlist_for_each_entry(exp, n, &net->ct.expect_hash[cb->args[0]],
1583                                      hnode) {
1584                         if (l3proto && exp->tuple.src.l3num != l3proto)
1585                                 continue;
1586                         if (cb->args[1]) {
1587                                 if (exp != last)
1588                                         continue;
1589                                 cb->args[1] = 0;
1590                         }
1591                         if (ctnetlink_exp_fill_info(skb,
1592                                                     NETLINK_CB(cb->skb).pid,
1593                                                     cb->nlh->nlmsg_seq,
1594                                                     IPCTNL_MSG_EXP_NEW,
1595                                                     exp) < 0) {
1596                                 if (!atomic_inc_not_zero(&exp->use))
1597                                         continue;
1598                                 cb->args[1] = (unsigned long)exp;
1599                                 goto out;
1600                         }
1601                 }
1602                 if (cb->args[1]) {
1603                         cb->args[1] = 0;
1604                         goto restart;
1605                 }
1606         }
1607 out:
1608         rcu_read_unlock();
1609         if (last)
1610                 nf_ct_expect_put(last);
1611
1612         return skb->len;
1613 }
1614
1615 static const struct nla_policy exp_nla_policy[CTA_EXPECT_MAX+1] = {
1616         [CTA_EXPECT_TIMEOUT]    = { .type = NLA_U32 },
1617         [CTA_EXPECT_ID]         = { .type = NLA_U32 },
1618 };
1619
1620 static int
1621 ctnetlink_get_expect(struct sock *ctnl, struct sk_buff *skb,
1622                      struct nlmsghdr *nlh, struct nlattr *cda[])
1623 {
1624         struct nf_conntrack_tuple tuple;
1625         struct nf_conntrack_expect *exp;
1626         struct sk_buff *skb2;
1627         struct nfgenmsg *nfmsg = nlmsg_data(nlh);
1628         u_int8_t u3 = nfmsg->nfgen_family;
1629         int err = 0;
1630
1631         if (nlh->nlmsg_flags & NLM_F_DUMP) {
1632                 return netlink_dump_start(ctnl, skb, nlh,
1633                                           ctnetlink_exp_dump_table,
1634                                           ctnetlink_exp_done);
1635         }
1636
1637         if (cda[CTA_EXPECT_MASTER])
1638                 err = ctnetlink_parse_tuple(cda, &tuple, CTA_EXPECT_MASTER, u3);
1639         else
1640                 return -EINVAL;
1641
1642         if (err < 0)
1643                 return err;
1644
1645         exp = nf_ct_expect_find_get(&init_net, &tuple);
1646         if (!exp)
1647                 return -ENOENT;
1648
1649         if (cda[CTA_EXPECT_ID]) {
1650                 __be32 id = nla_get_be32(cda[CTA_EXPECT_ID]);
1651                 if (ntohl(id) != (u32)(unsigned long)exp) {
1652                         nf_ct_expect_put(exp);
1653                         return -ENOENT;
1654                 }
1655         }
1656
1657         err = -ENOMEM;
1658         skb2 = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
1659         if (skb2 == NULL)
1660                 goto out;
1661
1662         rcu_read_lock();
1663         err = ctnetlink_exp_fill_info(skb2, NETLINK_CB(skb).pid,
1664                                       nlh->nlmsg_seq, IPCTNL_MSG_EXP_NEW, exp);
1665         rcu_read_unlock();
1666         if (err <= 0)
1667                 goto free;
1668
1669         nf_ct_expect_put(exp);
1670
1671         return netlink_unicast(ctnl, skb2, NETLINK_CB(skb).pid, MSG_DONTWAIT);
1672
1673 free:
1674         kfree_skb(skb2);
1675 out:
1676         nf_ct_expect_put(exp);
1677         return err;
1678 }
1679
1680 static int
1681 ctnetlink_del_expect(struct sock *ctnl, struct sk_buff *skb,
1682                      struct nlmsghdr *nlh, struct nlattr *cda[])
1683 {
1684         struct nf_conntrack_expect *exp;
1685         struct nf_conntrack_tuple tuple;
1686         struct nf_conntrack_helper *h;
1687         struct nfgenmsg *nfmsg = nlmsg_data(nlh);
1688         struct hlist_node *n, *next;
1689         u_int8_t u3 = nfmsg->nfgen_family;
1690         unsigned int i;
1691         int err;
1692
1693         if (cda[CTA_EXPECT_TUPLE]) {
1694                 /* delete a single expect by tuple */
1695                 err = ctnetlink_parse_tuple(cda, &tuple, CTA_EXPECT_TUPLE, u3);
1696                 if (err < 0)
1697                         return err;
1698
1699                 /* bump usage count to 2 */
1700                 exp = nf_ct_expect_find_get(&init_net, &tuple);
1701                 if (!exp)
1702                         return -ENOENT;
1703
1704                 if (cda[CTA_EXPECT_ID]) {
1705                         __be32 id = nla_get_be32(cda[CTA_EXPECT_ID]);
1706                         if (ntohl(id) != (u32)(unsigned long)exp) {
1707                                 nf_ct_expect_put(exp);
1708                                 return -ENOENT;
1709                         }
1710                 }
1711
1712                 /* after list removal, usage count == 1 */
1713                 nf_ct_unexpect_related(exp);
1714                 /* have to put what we 'get' above.
1715                  * after this line usage count == 0 */
1716                 nf_ct_expect_put(exp);
1717         } else if (cda[CTA_EXPECT_HELP_NAME]) {
1718                 char *name = nla_data(cda[CTA_EXPECT_HELP_NAME]);
1719                 struct nf_conn_help *m_help;
1720
1721                 /* delete all expectations for this helper */
1722                 spin_lock_bh(&nf_conntrack_lock);
1723                 h = __nf_conntrack_helper_find_byname(name);
1724                 if (!h) {
1725                         spin_unlock_bh(&nf_conntrack_lock);
1726                         return -EOPNOTSUPP;
1727                 }
1728                 for (i = 0; i < nf_ct_expect_hsize; i++) {
1729                         hlist_for_each_entry_safe(exp, n, next,
1730                                                   &init_net.ct.expect_hash[i],
1731                                                   hnode) {
1732                                 m_help = nfct_help(exp->master);
1733                                 if (m_help->helper == h
1734                                     && del_timer(&exp->timeout)) {
1735                                         nf_ct_unlink_expect(exp);
1736                                         nf_ct_expect_put(exp);
1737                                 }
1738                         }
1739                 }
1740                 spin_unlock_bh(&nf_conntrack_lock);
1741         } else {
1742                 /* This basically means we have to flush everything*/
1743                 spin_lock_bh(&nf_conntrack_lock);
1744                 for (i = 0; i < nf_ct_expect_hsize; i++) {
1745                         hlist_for_each_entry_safe(exp, n, next,
1746                                                   &init_net.ct.expect_hash[i],
1747                                                   hnode) {
1748                                 if (del_timer(&exp->timeout)) {
1749                                         nf_ct_unlink_expect(exp);
1750                                         nf_ct_expect_put(exp);
1751                                 }
1752                         }
1753                 }
1754                 spin_unlock_bh(&nf_conntrack_lock);
1755         }
1756
1757         return 0;
1758 }
1759 static int
1760 ctnetlink_change_expect(struct nf_conntrack_expect *x, struct nlattr *cda[])
1761 {
1762         return -EOPNOTSUPP;
1763 }
1764
1765 static int
1766 ctnetlink_create_expect(struct nlattr *cda[], u_int8_t u3, u32 pid, int report)
1767 {
1768         struct nf_conntrack_tuple tuple, mask, master_tuple;
1769         struct nf_conntrack_tuple_hash *h = NULL;
1770         struct nf_conntrack_expect *exp;
1771         struct nf_conn *ct;
1772         struct nf_conn_help *help;
1773         int err = 0;
1774
1775         /* caller guarantees that those three CTA_EXPECT_* exist */
1776         err = ctnetlink_parse_tuple(cda, &tuple, CTA_EXPECT_TUPLE, u3);
1777         if (err < 0)
1778                 return err;
1779         err = ctnetlink_parse_tuple(cda, &mask, CTA_EXPECT_MASK, u3);
1780         if (err < 0)
1781                 return err;
1782         err = ctnetlink_parse_tuple(cda, &master_tuple, CTA_EXPECT_MASTER, u3);
1783         if (err < 0)
1784                 return err;
1785
1786         /* Look for master conntrack of this expectation */
1787         h = nf_conntrack_find_get(&init_net, &master_tuple);
1788         if (!h)
1789                 return -ENOENT;
1790         ct = nf_ct_tuplehash_to_ctrack(h);
1791         help = nfct_help(ct);
1792
1793         if (!help || !help->helper) {
1794                 /* such conntrack hasn't got any helper, abort */
1795                 err = -EOPNOTSUPP;
1796                 goto out;
1797         }
1798
1799         exp = nf_ct_expect_alloc(ct);
1800         if (!exp) {
1801                 err = -ENOMEM;
1802                 goto out;
1803         }
1804
1805         exp->class = 0;
1806         exp->expectfn = NULL;
1807         exp->flags = 0;
1808         exp->master = ct;
1809         exp->helper = NULL;
1810         memcpy(&exp->tuple, &tuple, sizeof(struct nf_conntrack_tuple));
1811         memcpy(&exp->mask.src.u3, &mask.src.u3, sizeof(exp->mask.src.u3));
1812         exp->mask.src.u.all = mask.src.u.all;
1813
1814         err = nf_ct_expect_related_report(exp, pid, report);
1815         nf_ct_expect_put(exp);
1816
1817 out:
1818         nf_ct_put(nf_ct_tuplehash_to_ctrack(h));
1819         return err;
1820 }
1821
1822 static int
1823 ctnetlink_new_expect(struct sock *ctnl, struct sk_buff *skb,
1824                      struct nlmsghdr *nlh, struct nlattr *cda[])
1825 {
1826         struct nf_conntrack_tuple tuple;
1827         struct nf_conntrack_expect *exp;
1828         struct nfgenmsg *nfmsg = nlmsg_data(nlh);
1829         u_int8_t u3 = nfmsg->nfgen_family;
1830         int err = 0;
1831
1832         if (!cda[CTA_EXPECT_TUPLE]
1833             || !cda[CTA_EXPECT_MASK]
1834             || !cda[CTA_EXPECT_MASTER])
1835                 return -EINVAL;
1836
1837         err = ctnetlink_parse_tuple(cda, &tuple, CTA_EXPECT_TUPLE, u3);
1838         if (err < 0)
1839                 return err;
1840
1841         spin_lock_bh(&nf_conntrack_lock);
1842         exp = __nf_ct_expect_find(&init_net, &tuple);
1843
1844         if (!exp) {
1845                 spin_unlock_bh(&nf_conntrack_lock);
1846                 err = -ENOENT;
1847                 if (nlh->nlmsg_flags & NLM_F_CREATE) {
1848                         err = ctnetlink_create_expect(cda,
1849                                                       u3,
1850                                                       NETLINK_CB(skb).pid,
1851                                                       nlmsg_report(nlh));
1852                 }
1853                 return err;
1854         }
1855
1856         err = -EEXIST;
1857         if (!(nlh->nlmsg_flags & NLM_F_EXCL))
1858                 err = ctnetlink_change_expect(exp, cda);
1859         spin_unlock_bh(&nf_conntrack_lock);
1860
1861         return err;
1862 }
1863
1864 #ifdef CONFIG_NF_CONNTRACK_EVENTS
1865 static struct nf_ct_event_notifier ctnl_notifier = {
1866         .fcn = ctnetlink_conntrack_event,
1867 };
1868
1869 static struct nf_exp_event_notifier ctnl_notifier_exp = {
1870         .fcn = ctnetlink_expect_event,
1871 };
1872 #endif
1873
1874 static const struct nfnl_callback ctnl_cb[IPCTNL_MSG_MAX] = {
1875         [IPCTNL_MSG_CT_NEW]             = { .call = ctnetlink_new_conntrack,
1876                                             .attr_count = CTA_MAX,
1877                                             .policy = ct_nla_policy },
1878         [IPCTNL_MSG_CT_GET]             = { .call = ctnetlink_get_conntrack,
1879                                             .attr_count = CTA_MAX,
1880                                             .policy = ct_nla_policy },
1881         [IPCTNL_MSG_CT_DELETE]          = { .call = ctnetlink_del_conntrack,
1882                                             .attr_count = CTA_MAX,
1883                                             .policy = ct_nla_policy },
1884         [IPCTNL_MSG_CT_GET_CTRZERO]     = { .call = ctnetlink_get_conntrack,
1885                                             .attr_count = CTA_MAX,
1886                                             .policy = ct_nla_policy },
1887 };
1888
1889 static const struct nfnl_callback ctnl_exp_cb[IPCTNL_MSG_EXP_MAX] = {
1890         [IPCTNL_MSG_EXP_GET]            = { .call = ctnetlink_get_expect,
1891                                             .attr_count = CTA_EXPECT_MAX,
1892                                             .policy = exp_nla_policy },
1893         [IPCTNL_MSG_EXP_NEW]            = { .call = ctnetlink_new_expect,
1894                                             .attr_count = CTA_EXPECT_MAX,
1895                                             .policy = exp_nla_policy },
1896         [IPCTNL_MSG_EXP_DELETE]         = { .call = ctnetlink_del_expect,
1897                                             .attr_count = CTA_EXPECT_MAX,
1898                                             .policy = exp_nla_policy },
1899 };
1900
1901 static const struct nfnetlink_subsystem ctnl_subsys = {
1902         .name                           = "conntrack",
1903         .subsys_id                      = NFNL_SUBSYS_CTNETLINK,
1904         .cb_count                       = IPCTNL_MSG_MAX,
1905         .cb                             = ctnl_cb,
1906 };
1907
1908 static const struct nfnetlink_subsystem ctnl_exp_subsys = {
1909         .name                           = "conntrack_expect",
1910         .subsys_id                      = NFNL_SUBSYS_CTNETLINK_EXP,
1911         .cb_count                       = IPCTNL_MSG_EXP_MAX,
1912         .cb                             = ctnl_exp_cb,
1913 };
1914
1915 MODULE_ALIAS("ip_conntrack_netlink");
1916 MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_CTNETLINK);
1917 MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_CTNETLINK_EXP);
1918
1919 static int __init ctnetlink_init(void)
1920 {
1921         int ret;
1922
1923         printk("ctnetlink v%s: registering with nfnetlink.\n", version);
1924         ret = nfnetlink_subsys_register(&ctnl_subsys);
1925         if (ret < 0) {
1926                 printk("ctnetlink_init: cannot register with nfnetlink.\n");
1927                 goto err_out;
1928         }
1929
1930         ret = nfnetlink_subsys_register(&ctnl_exp_subsys);
1931         if (ret < 0) {
1932                 printk("ctnetlink_init: cannot register exp with nfnetlink.\n");
1933                 goto err_unreg_subsys;
1934         }
1935
1936 #ifdef CONFIG_NF_CONNTRACK_EVENTS
1937         ret = nf_conntrack_register_notifier(&ctnl_notifier);
1938         if (ret < 0) {
1939                 printk("ctnetlink_init: cannot register notifier.\n");
1940                 goto err_unreg_exp_subsys;
1941         }
1942
1943         ret = nf_ct_expect_register_notifier(&ctnl_notifier_exp);
1944         if (ret < 0) {
1945                 printk("ctnetlink_init: cannot expect register notifier.\n");
1946                 goto err_unreg_notifier;
1947         }
1948 #endif
1949
1950         return 0;
1951
1952 #ifdef CONFIG_NF_CONNTRACK_EVENTS
1953 err_unreg_notifier:
1954         nf_conntrack_unregister_notifier(&ctnl_notifier);
1955 err_unreg_exp_subsys:
1956         nfnetlink_subsys_unregister(&ctnl_exp_subsys);
1957 #endif
1958 err_unreg_subsys:
1959         nfnetlink_subsys_unregister(&ctnl_subsys);
1960 err_out:
1961         return ret;
1962 }
1963
1964 static void __exit ctnetlink_exit(void)
1965 {
1966         printk("ctnetlink: unregistering from nfnetlink.\n");
1967
1968 #ifdef CONFIG_NF_CONNTRACK_EVENTS
1969         nf_ct_expect_unregister_notifier(&ctnl_notifier_exp);
1970         nf_conntrack_unregister_notifier(&ctnl_notifier);
1971 #endif
1972
1973         nfnetlink_subsys_unregister(&ctnl_exp_subsys);
1974         nfnetlink_subsys_unregister(&ctnl_subsys);
1975         return;
1976 }
1977
1978 module_init(ctnetlink_init);
1979 module_exit(ctnetlink_exit);