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