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