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