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