Merge remote-tracking branch 'netfilter-next/master'
[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>
392025f8 7 * (C) 2005-2012 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 39#include <net/netfilter/nf_conntrack_helper.h>
41d73ec0 40#include <net/netfilter/nf_conntrack_seqadj.h>
c1d10adb 41#include <net/netfilter/nf_conntrack_l3proto.h>
605dcad6 42#include <net/netfilter/nf_conntrack_l4proto.h>
5b1158e9 43#include <net/netfilter/nf_conntrack_tuple.h>
58401572 44#include <net/netfilter/nf_conntrack_acct.h>
ef00f89f 45#include <net/netfilter/nf_conntrack_zones.h>
a992ca2a 46#include <net/netfilter/nf_conntrack_timestamp.h>
c539f017 47#include <net/netfilter/nf_conntrack_labels.h>
5b1158e9
JK
48#ifdef CONFIG_NF_NAT_NEEDED
49#include <net/netfilter/nf_nat_core.h>
c7232c99 50#include <net/netfilter/nf_nat_l4proto.h>
8c88f87c 51#include <net/netfilter/nf_nat_helper.h>
5b1158e9 52#endif
c1d10adb
PNA
53
54#include <linux/netfilter/nfnetlink.h>
55#include <linux/netfilter/nfnetlink_conntrack.h>
56
57MODULE_LICENSE("GPL");
58
dc808fe2 59static char __initdata version[] = "0.93";
c1d10adb 60
4054ff45
PNA
61static int ctnetlink_dump_tuples_proto(struct sk_buff *skb,
62 const struct nf_conntrack_tuple *tuple,
63 struct nf_conntrack_l4proto *l4proto)
c1d10adb 64{
c1d10adb 65 int ret = 0;
df6fb868 66 struct nlattr *nest_parms;
c1d10adb 67
df6fb868
PM
68 nest_parms = nla_nest_start(skb, CTA_TUPLE_PROTO | NLA_F_NESTED);
69 if (!nest_parms)
70 goto nla_put_failure;
cc1eb431
DM
71 if (nla_put_u8(skb, CTA_PROTO_NUM, tuple->dst.protonum))
72 goto nla_put_failure;
c1d10adb 73
fdf70832
PM
74 if (likely(l4proto->tuple_to_nlattr))
75 ret = l4proto->tuple_to_nlattr(skb, tuple);
601e68e1 76
df6fb868 77 nla_nest_end(skb, nest_parms);
c1d10adb
PNA
78
79 return ret;
80
df6fb868 81nla_put_failure:
c1d10adb
PNA
82 return -1;
83}
84
4054ff45
PNA
85static int ctnetlink_dump_tuples_ip(struct sk_buff *skb,
86 const struct nf_conntrack_tuple *tuple,
87 struct nf_conntrack_l3proto *l3proto)
c1d10adb 88{
c1d10adb 89 int ret = 0;
df6fb868
PM
90 struct nlattr *nest_parms;
91
92 nest_parms = nla_nest_start(skb, CTA_TUPLE_IP | NLA_F_NESTED);
93 if (!nest_parms)
94 goto nla_put_failure;
1cde6436 95
fdf70832
PM
96 if (likely(l3proto->tuple_to_nlattr))
97 ret = l3proto->tuple_to_nlattr(skb, tuple);
1cde6436 98
df6fb868 99 nla_nest_end(skb, nest_parms);
c1d10adb 100
1cde6436
PNA
101 return ret;
102
df6fb868 103nla_put_failure:
1cde6436
PNA
104 return -1;
105}
106
4054ff45
PNA
107static int ctnetlink_dump_tuples(struct sk_buff *skb,
108 const struct nf_conntrack_tuple *tuple)
1cde6436
PNA
109{
110 int ret;
111 struct nf_conntrack_l3proto *l3proto;
605dcad6 112 struct nf_conntrack_l4proto *l4proto;
1cde6436 113
3b988ece 114 rcu_read_lock();
528a3a6f 115 l3proto = __nf_ct_l3proto_find(tuple->src.l3num);
1cde6436 116 ret = ctnetlink_dump_tuples_ip(skb, tuple, l3proto);
c1d10adb 117
3b988ece
HS
118 if (ret >= 0) {
119 l4proto = __nf_ct_l4proto_find(tuple->src.l3num,
120 tuple->dst.protonum);
121 ret = ctnetlink_dump_tuples_proto(skb, tuple, l4proto);
122 }
123 rcu_read_unlock();
c1d10adb 124 return ret;
c1d10adb
PNA
125}
126
4054ff45
PNA
127static int ctnetlink_dump_zone_id(struct sk_buff *skb, int attrtype,
128 const struct nf_conntrack_zone *zone, int dir)
deedb590
DB
129{
130 if (zone->id == NF_CT_DEFAULT_ZONE_ID || zone->dir != dir)
131 return 0;
132 if (nla_put_be16(skb, attrtype, htons(zone->id)))
133 goto nla_put_failure;
134 return 0;
135
136nla_put_failure:
137 return -1;
138}
139
4054ff45 140static int ctnetlink_dump_status(struct sk_buff *skb, const struct nf_conn *ct)
c1d10adb 141{
cc1eb431
DM
142 if (nla_put_be32(skb, CTA_STATUS, htonl(ct->status)))
143 goto nla_put_failure;
c1d10adb
PNA
144 return 0;
145
df6fb868 146nla_put_failure:
c1d10adb
PNA
147 return -1;
148}
149
4054ff45 150static int ctnetlink_dump_timeout(struct sk_buff *skb, const struct nf_conn *ct)
c1d10adb 151{
d0b35b93 152 long timeout = nf_ct_expires(ct) / HZ;
601e68e1 153
cc1eb431
DM
154 if (nla_put_be32(skb, CTA_TIMEOUT, htonl(timeout)))
155 goto nla_put_failure;
c1d10adb
PNA
156 return 0;
157
df6fb868 158nla_put_failure:
c1d10adb
PNA
159 return -1;
160}
161
4054ff45 162static int ctnetlink_dump_protoinfo(struct sk_buff *skb, struct nf_conn *ct)
c1d10adb 163{
5e8fbe2a 164 struct nf_conntrack_l4proto *l4proto;
df6fb868 165 struct nlattr *nest_proto;
c1d10adb
PNA
166 int ret;
167
528a3a6f
PNA
168 l4proto = __nf_ct_l4proto_find(nf_ct_l3num(ct), nf_ct_protonum(ct));
169 if (!l4proto->to_nlattr)
c1d10adb 170 return 0;
601e68e1 171
df6fb868
PM
172 nest_proto = nla_nest_start(skb, CTA_PROTOINFO | NLA_F_NESTED);
173 if (!nest_proto)
174 goto nla_put_failure;
c1d10adb 175
fdf70832 176 ret = l4proto->to_nlattr(skb, nest_proto, ct);
c1d10adb 177
df6fb868 178 nla_nest_end(skb, nest_proto);
c1d10adb
PNA
179
180 return ret;
181
df6fb868 182nla_put_failure:
c1d10adb
PNA
183 return -1;
184}
185
4054ff45
PNA
186static int ctnetlink_dump_helpinfo(struct sk_buff *skb,
187 const struct nf_conn *ct)
c1d10adb 188{
df6fb868 189 struct nlattr *nest_helper;
dc808fe2 190 const struct nf_conn_help *help = nfct_help(ct);
3c158f7f 191 struct nf_conntrack_helper *helper;
c1d10adb 192
3c158f7f 193 if (!help)
c1d10adb 194 return 0;
601e68e1 195
3c158f7f
PM
196 helper = rcu_dereference(help->helper);
197 if (!helper)
198 goto out;
199
df6fb868
PM
200 nest_helper = nla_nest_start(skb, CTA_HELP | NLA_F_NESTED);
201 if (!nest_helper)
202 goto nla_put_failure;
cc1eb431
DM
203 if (nla_put_string(skb, CTA_HELP_NAME, helper->name))
204 goto nla_put_failure;
c1d10adb 205
fdf70832
PM
206 if (helper->to_nlattr)
207 helper->to_nlattr(skb, ct);
c1d10adb 208
df6fb868 209 nla_nest_end(skb, nest_helper);
3c158f7f 210out:
c1d10adb
PNA
211 return 0;
212
df6fb868 213nla_put_failure:
c1d10adb
PNA
214 return -1;
215}
216
bb5cf80e 217static int
4542fa47
HE
218dump_counters(struct sk_buff *skb, struct nf_conn_acct *acct,
219 enum ip_conntrack_dir dir, int type)
c1d10adb 220{
4542fa47
HE
221 enum ctattr_type attr = dir ? CTA_COUNTERS_REPLY: CTA_COUNTERS_ORIG;
222 struct nf_conn_counter *counter = acct->counter;
df6fb868 223 struct nlattr *nest_count;
4542fa47 224 u64 pkts, bytes;
c1d10adb 225
4542fa47
HE
226 if (type == IPCTNL_MSG_CT_GET_CTRZERO) {
227 pkts = atomic64_xchg(&counter[dir].packets, 0);
228 bytes = atomic64_xchg(&counter[dir].bytes, 0);
229 } else {
230 pkts = atomic64_read(&counter[dir].packets);
231 bytes = atomic64_read(&counter[dir].bytes);
232 }
233
234 nest_count = nla_nest_start(skb, attr | NLA_F_NESTED);
df6fb868
PM
235 if (!nest_count)
236 goto nla_put_failure;
237
b46f6ded
ND
238 if (nla_put_be64(skb, CTA_COUNTERS_PACKETS, cpu_to_be64(pkts),
239 CTA_COUNTERS_PAD) ||
240 nla_put_be64(skb, CTA_COUNTERS_BYTES, cpu_to_be64(bytes),
241 CTA_COUNTERS_PAD))
cc1eb431 242 goto nla_put_failure;
c1d10adb 243
df6fb868 244 nla_nest_end(skb, nest_count);
c1d10adb
PNA
245
246 return 0;
247
df6fb868 248nla_put_failure:
c1d10adb
PNA
249 return -1;
250}
c1d10adb 251
80e60e67 252static int
4542fa47 253ctnetlink_dump_acct(struct sk_buff *skb, const struct nf_conn *ct, int type)
80e60e67 254{
4542fa47 255 struct nf_conn_acct *acct = nf_conn_acct_find(ct);
80e60e67 256
80e60e67
PNA
257 if (!acct)
258 return 0;
259
4542fa47
HE
260 if (dump_counters(skb, acct, IP_CT_DIR_ORIGINAL, type) < 0)
261 return -1;
262 if (dump_counters(skb, acct, IP_CT_DIR_REPLY, type) < 0)
263 return -1;
264
265 return 0;
80e60e67
PNA
266}
267
a992ca2a
PNA
268static int
269ctnetlink_dump_timestamp(struct sk_buff *skb, const struct nf_conn *ct)
270{
271 struct nlattr *nest_count;
272 const struct nf_conn_tstamp *tstamp;
273
274 tstamp = nf_conn_tstamp_find(ct);
275 if (!tstamp)
276 return 0;
277
278 nest_count = nla_nest_start(skb, CTA_TIMESTAMP | NLA_F_NESTED);
279 if (!nest_count)
280 goto nla_put_failure;
281
b46f6ded
ND
282 if (nla_put_be64(skb, CTA_TIMESTAMP_START, cpu_to_be64(tstamp->start),
283 CTA_TIMESTAMP_PAD) ||
cc1eb431 284 (tstamp->stop != 0 && nla_put_be64(skb, CTA_TIMESTAMP_STOP,
b46f6ded
ND
285 cpu_to_be64(tstamp->stop),
286 CTA_TIMESTAMP_PAD)))
cc1eb431 287 goto nla_put_failure;
a992ca2a
PNA
288 nla_nest_end(skb, nest_count);
289
290 return 0;
291
292nla_put_failure:
293 return -1;
294}
295
c1d10adb 296#ifdef CONFIG_NF_CONNTRACK_MARK
4054ff45 297static int ctnetlink_dump_mark(struct sk_buff *skb, const struct nf_conn *ct)
c1d10adb 298{
cc1eb431
DM
299 if (nla_put_be32(skb, CTA_MARK, htonl(ct->mark)))
300 goto nla_put_failure;
c1d10adb
PNA
301 return 0;
302
df6fb868 303nla_put_failure:
c1d10adb
PNA
304 return -1;
305}
306#else
307#define ctnetlink_dump_mark(a, b) (0)
308#endif
309
37fccd85 310#ifdef CONFIG_NF_CONNTRACK_SECMARK
4054ff45 311static int ctnetlink_dump_secctx(struct sk_buff *skb, const struct nf_conn *ct)
37fccd85 312{
1cc63249
EP
313 struct nlattr *nest_secctx;
314 int len, ret;
315 char *secctx;
316
317 ret = security_secid_to_secctx(ct->secmark, &secctx, &len);
318 if (ret)
cba85b53 319 return 0;
1cc63249
EP
320
321 ret = -1;
322 nest_secctx = nla_nest_start(skb, CTA_SECCTX | NLA_F_NESTED);
323 if (!nest_secctx)
324 goto nla_put_failure;
37fccd85 325
cc1eb431
DM
326 if (nla_put_string(skb, CTA_SECCTX_NAME, secctx))
327 goto nla_put_failure;
1cc63249
EP
328 nla_nest_end(skb, nest_secctx);
329
330 ret = 0;
37fccd85 331nla_put_failure:
1cc63249
EP
332 security_release_secctx(secctx, len);
333 return ret;
37fccd85
PNA
334}
335#else
1cc63249 336#define ctnetlink_dump_secctx(a, b) (0)
37fccd85
PNA
337#endif
338
0ceabd83 339#ifdef CONFIG_NF_CONNTRACK_LABELS
4a96300c 340static inline int ctnetlink_label_size(const struct nf_conn *ct)
0ceabd83
FW
341{
342 struct nf_conn_labels *labels = nf_ct_labels_find(ct);
343
344 if (!labels)
345 return 0;
23014011 346 return nla_total_size(sizeof(labels->bits));
0ceabd83
FW
347}
348
349static int
350ctnetlink_dump_labels(struct sk_buff *skb, const struct nf_conn *ct)
351{
352 struct nf_conn_labels *labels = nf_ct_labels_find(ct);
23014011 353 unsigned int i;
0ceabd83
FW
354
355 if (!labels)
356 return 0;
357
0ceabd83
FW
358 i = 0;
359 do {
360 if (labels->bits[i] != 0)
23014011
FW
361 return nla_put(skb, CTA_LABELS, sizeof(labels->bits),
362 labels->bits);
0ceabd83 363 i++;
23014011 364 } while (i < ARRAY_SIZE(labels->bits));
0ceabd83
FW
365
366 return 0;
367}
368#else
369#define ctnetlink_dump_labels(a, b) (0)
370#define ctnetlink_label_size(a) (0)
371#endif
372
0f417ce9
PNA
373#define master_tuple(ct) &(ct->master->tuplehash[IP_CT_DIR_ORIGINAL].tuple)
374
4054ff45 375static int ctnetlink_dump_master(struct sk_buff *skb, const struct nf_conn *ct)
0f417ce9
PNA
376{
377 struct nlattr *nest_parms;
378
379 if (!(ct->status & IPS_EXPECTED))
380 return 0;
381
382 nest_parms = nla_nest_start(skb, CTA_TUPLE_MASTER | NLA_F_NESTED);
383 if (!nest_parms)
384 goto nla_put_failure;
385 if (ctnetlink_dump_tuples(skb, master_tuple(ct)) < 0)
386 goto nla_put_failure;
387 nla_nest_end(skb, nest_parms);
388
389 return 0;
390
391nla_put_failure:
392 return -1;
393}
394
bb5cf80e 395static int
41d73ec0 396dump_ct_seq_adj(struct sk_buff *skb, const struct nf_ct_seqadj *seq, int type)
13eae15a 397{
13eae15a
PNA
398 struct nlattr *nest_parms;
399
400 nest_parms = nla_nest_start(skb, type | NLA_F_NESTED);
401 if (!nest_parms)
402 goto nla_put_failure;
403
41d73ec0
PM
404 if (nla_put_be32(skb, CTA_SEQADJ_CORRECTION_POS,
405 htonl(seq->correction_pos)) ||
406 nla_put_be32(skb, CTA_SEQADJ_OFFSET_BEFORE,
407 htonl(seq->offset_before)) ||
408 nla_put_be32(skb, CTA_SEQADJ_OFFSET_AFTER,
409 htonl(seq->offset_after)))
cc1eb431 410 goto nla_put_failure;
13eae15a
PNA
411
412 nla_nest_end(skb, nest_parms);
413
414 return 0;
415
416nla_put_failure:
417 return -1;
418}
419
4054ff45
PNA
420static int ctnetlink_dump_ct_seq_adj(struct sk_buff *skb,
421 const struct nf_conn *ct)
13eae15a 422{
41d73ec0
PM
423 struct nf_conn_seqadj *seqadj = nfct_seqadj(ct);
424 struct nf_ct_seqadj *seq;
13eae15a 425
41d73ec0 426 if (!(ct->status & IPS_SEQ_ADJUST) || !seqadj)
13eae15a
PNA
427 return 0;
428
41d73ec0
PM
429 seq = &seqadj->seq[IP_CT_DIR_ORIGINAL];
430 if (dump_ct_seq_adj(skb, seq, CTA_SEQ_ADJ_ORIG) == -1)
13eae15a
PNA
431 return -1;
432
41d73ec0
PM
433 seq = &seqadj->seq[IP_CT_DIR_REPLY];
434 if (dump_ct_seq_adj(skb, seq, CTA_SEQ_ADJ_REPLY) == -1)
13eae15a
PNA
435 return -1;
436
437 return 0;
438}
13eae15a 439
4054ff45 440static int ctnetlink_dump_id(struct sk_buff *skb, const struct nf_conn *ct)
c1d10adb 441{
cc1eb431
DM
442 if (nla_put_be32(skb, CTA_ID, htonl((unsigned long)ct)))
443 goto nla_put_failure;
c1d10adb
PNA
444 return 0;
445
df6fb868 446nla_put_failure:
c1d10adb
PNA
447 return -1;
448}
449
4054ff45 450static int ctnetlink_dump_use(struct sk_buff *skb, const struct nf_conn *ct)
c1d10adb 451{
cc1eb431
DM
452 if (nla_put_be32(skb, CTA_USE, htonl(atomic_read(&ct->ct_general.use))))
453 goto nla_put_failure;
c1d10adb
PNA
454 return 0;
455
df6fb868 456nla_put_failure:
c1d10adb
PNA
457 return -1;
458}
459
c1d10adb 460static int
15e47304 461ctnetlink_fill_info(struct sk_buff *skb, u32 portid, u32 seq, u32 type,
80e60e67 462 struct nf_conn *ct)
c1d10adb 463{
308ac914 464 const struct nf_conntrack_zone *zone;
c1d10adb
PNA
465 struct nlmsghdr *nlh;
466 struct nfgenmsg *nfmsg;
df6fb868 467 struct nlattr *nest_parms;
15e47304 468 unsigned int flags = portid ? NLM_F_MULTI : 0, event;
c1d10adb 469
80e60e67 470 event = (NFNL_SUBSYS_CTNETLINK << 8 | IPCTNL_MSG_CT_NEW);
15e47304 471 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*nfmsg), flags);
96bcf938
PNA
472 if (nlh == NULL)
473 goto nlmsg_failure;
c1d10adb 474
96bcf938 475 nfmsg = nlmsg_data(nlh);
5e8fbe2a 476 nfmsg->nfgen_family = nf_ct_l3num(ct);
c1d10adb
PNA
477 nfmsg->version = NFNETLINK_V0;
478 nfmsg->res_id = 0;
479
deedb590
DB
480 zone = nf_ct_zone(ct);
481
df6fb868
PM
482 nest_parms = nla_nest_start(skb, CTA_TUPLE_ORIG | NLA_F_NESTED);
483 if (!nest_parms)
484 goto nla_put_failure;
f2f3e38c 485 if (ctnetlink_dump_tuples(skb, nf_ct_tuple(ct, IP_CT_DIR_ORIGINAL)) < 0)
df6fb868 486 goto nla_put_failure;
deedb590
DB
487 if (ctnetlink_dump_zone_id(skb, CTA_TUPLE_ZONE, zone,
488 NF_CT_ZONE_DIR_ORIG) < 0)
489 goto nla_put_failure;
df6fb868 490 nla_nest_end(skb, nest_parms);
601e68e1 491
df6fb868
PM
492 nest_parms = nla_nest_start(skb, CTA_TUPLE_REPLY | NLA_F_NESTED);
493 if (!nest_parms)
494 goto nla_put_failure;
f2f3e38c 495 if (ctnetlink_dump_tuples(skb, nf_ct_tuple(ct, IP_CT_DIR_REPLY)) < 0)
df6fb868 496 goto nla_put_failure;
deedb590
DB
497 if (ctnetlink_dump_zone_id(skb, CTA_TUPLE_ZONE, zone,
498 NF_CT_ZONE_DIR_REPL) < 0)
499 goto nla_put_failure;
df6fb868 500 nla_nest_end(skb, nest_parms);
c1d10adb 501
deedb590
DB
502 if (ctnetlink_dump_zone_id(skb, CTA_ZONE, zone,
503 NF_CT_DEFAULT_ZONE_DIR) < 0)
cc1eb431 504 goto nla_put_failure;
ef00f89f 505
c1d10adb
PNA
506 if (ctnetlink_dump_status(skb, ct) < 0 ||
507 ctnetlink_dump_timeout(skb, ct) < 0 ||
4542fa47 508 ctnetlink_dump_acct(skb, ct, type) < 0 ||
a992ca2a 509 ctnetlink_dump_timestamp(skb, ct) < 0 ||
c1d10adb
PNA
510 ctnetlink_dump_protoinfo(skb, ct) < 0 ||
511 ctnetlink_dump_helpinfo(skb, ct) < 0 ||
512 ctnetlink_dump_mark(skb, ct) < 0 ||
1cc63249 513 ctnetlink_dump_secctx(skb, ct) < 0 ||
0ceabd83 514 ctnetlink_dump_labels(skb, ct) < 0 ||
c1d10adb 515 ctnetlink_dump_id(skb, ct) < 0 ||
13eae15a 516 ctnetlink_dump_use(skb, ct) < 0 ||
0f417ce9 517 ctnetlink_dump_master(skb, ct) < 0 ||
41d73ec0 518 ctnetlink_dump_ct_seq_adj(skb, ct) < 0)
df6fb868 519 goto nla_put_failure;
c1d10adb 520
96bcf938 521 nlmsg_end(skb, nlh);
c1d10adb
PNA
522 return skb->len;
523
524nlmsg_failure:
df6fb868 525nla_put_failure:
96bcf938 526 nlmsg_cancel(skb, nlh);
c1d10adb
PNA
527 return -1;
528}
529
4a96300c 530static inline size_t ctnetlink_proto_size(const struct nf_conn *ct)
2732c4e4
HE
531{
532 struct nf_conntrack_l3proto *l3proto;
533 struct nf_conntrack_l4proto *l4proto;
03b64f51
PNA
534 size_t len = 0;
535
536 rcu_read_lock();
537 l3proto = __nf_ct_l3proto_find(nf_ct_l3num(ct));
538 len += l3proto->nla_size;
539
540 l4proto = __nf_ct_l4proto_find(nf_ct_l3num(ct), nf_ct_protonum(ct));
541 len += l4proto->nla_size;
542 rcu_read_unlock();
543
544 return len;
545}
546
4a96300c 547static inline size_t ctnetlink_acct_size(const struct nf_conn *ct)
d26e6a02
JP
548{
549 if (!nf_ct_ext_exist(ct, NF_CT_EXT_ACCT))
550 return 0;
551 return 2 * nla_total_size(0) /* CTA_COUNTERS_ORIG|REPL */
b46f6ded
ND
552 + 2 * nla_total_size_64bit(sizeof(uint64_t)) /* CTA_COUNTERS_PACKETS */
553 + 2 * nla_total_size_64bit(sizeof(uint64_t)) /* CTA_COUNTERS_BYTES */
d26e6a02
JP
554 ;
555}
556
4a96300c 557static inline int ctnetlink_secctx_size(const struct nf_conn *ct)
1cc63249 558{
cba85b53
PNA
559#ifdef CONFIG_NF_CONNTRACK_SECMARK
560 int len, ret;
1cc63249 561
cba85b53
PNA
562 ret = security_secid_to_secctx(ct->secmark, NULL, &len);
563 if (ret)
564 return 0;
1cc63249 565
cba85b53
PNA
566 return nla_total_size(0) /* CTA_SECCTX */
567 + nla_total_size(sizeof(char) * len); /* CTA_SECCTX_NAME */
568#else
569 return 0;
1cc63249 570#endif
cba85b53 571}
1cc63249 572
4a96300c 573static inline size_t ctnetlink_timestamp_size(const struct nf_conn *ct)
a992ca2a
PNA
574{
575#ifdef CONFIG_NF_CONNTRACK_TIMESTAMP
576 if (!nf_ct_ext_exist(ct, NF_CT_EXT_TSTAMP))
577 return 0;
b46f6ded 578 return nla_total_size(0) + 2 * nla_total_size_64bit(sizeof(uint64_t));
a992ca2a
PNA
579#else
580 return 0;
581#endif
582}
583
4054ff45
PNA
584#ifdef CONFIG_NF_CONNTRACK_EVENTS
585static size_t ctnetlink_nlmsg_size(const struct nf_conn *ct)
03b64f51
PNA
586{
587 return NLMSG_ALIGN(sizeof(struct nfgenmsg))
588 + 3 * nla_total_size(0) /* CTA_TUPLE_ORIG|REPL|MASTER */
589 + 3 * nla_total_size(0) /* CTA_TUPLE_IP */
590 + 3 * nla_total_size(0) /* CTA_TUPLE_PROTO */
591 + 3 * nla_total_size(sizeof(u_int8_t)) /* CTA_PROTO_NUM */
592 + nla_total_size(sizeof(u_int32_t)) /* CTA_ID */
593 + nla_total_size(sizeof(u_int32_t)) /* CTA_STATUS */
f7b13e43 594 + ctnetlink_acct_size(ct)
a992ca2a 595 + ctnetlink_timestamp_size(ct)
03b64f51
PNA
596 + nla_total_size(sizeof(u_int32_t)) /* CTA_TIMEOUT */
597 + nla_total_size(0) /* CTA_PROTOINFO */
598 + nla_total_size(0) /* CTA_HELP */
599 + nla_total_size(NF_CT_HELPER_NAME_LEN) /* CTA_HELP_NAME */
cba85b53 600 + ctnetlink_secctx_size(ct)
d271e8bd 601#ifdef CONFIG_NF_NAT_NEEDED
03b64f51
PNA
602 + 2 * nla_total_size(0) /* CTA_NAT_SEQ_ADJ_ORIG|REPL */
603 + 6 * nla_total_size(sizeof(u_int32_t)) /* CTA_NAT_SEQ_OFFSET */
d271e8bd
HE
604#endif
605#ifdef CONFIG_NF_CONNTRACK_MARK
03b64f51 606 + nla_total_size(sizeof(u_int32_t)) /* CTA_MARK */
4a001068
KM
607#endif
608#ifdef CONFIG_NF_CONNTRACK_ZONES
deedb590 609 + nla_total_size(sizeof(u_int16_t)) /* CTA_ZONE|CTA_TUPLE_ZONE */
d271e8bd 610#endif
03b64f51 611 + ctnetlink_proto_size(ct)
0ceabd83 612 + ctnetlink_label_size(ct)
03b64f51 613 ;
2732c4e4
HE
614}
615
e34d5c1a
PNA
616static int
617ctnetlink_conntrack_event(unsigned int events, struct nf_ct_event *item)
c1d10adb 618{
308ac914 619 const struct nf_conntrack_zone *zone;
9592a5c0 620 struct net *net;
c1d10adb
PNA
621 struct nlmsghdr *nlh;
622 struct nfgenmsg *nfmsg;
df6fb868 623 struct nlattr *nest_parms;
19abb7b0 624 struct nf_conn *ct = item->ct;
c1d10adb
PNA
625 struct sk_buff *skb;
626 unsigned int type;
c1d10adb 627 unsigned int flags = 0, group;
dd7669a9 628 int err;
c1d10adb
PNA
629
630 /* ignore our fake conntrack entry */
5bfddbd4 631 if (nf_ct_is_untracked(ct))
e34d5c1a 632 return 0;
c1d10adb 633
a0891aa6 634 if (events & (1 << IPCT_DESTROY)) {
c1d10adb
PNA
635 type = IPCTNL_MSG_CT_DELETE;
636 group = NFNLGRP_CONNTRACK_DESTROY;
a0891aa6 637 } else if (events & ((1 << IPCT_NEW) | (1 << IPCT_RELATED))) {
c1d10adb
PNA
638 type = IPCTNL_MSG_CT_NEW;
639 flags = NLM_F_CREATE|NLM_F_EXCL;
c1d10adb 640 group = NFNLGRP_CONNTRACK_NEW;
17e6e4ea 641 } else if (events) {
c1d10adb
PNA
642 type = IPCTNL_MSG_CT_NEW;
643 group = NFNLGRP_CONNTRACK_UPDATE;
644 } else
e34d5c1a 645 return 0;
a2427692 646
9592a5c0
AD
647 net = nf_ct_net(ct);
648 if (!item->report && !nfnetlink_has_listeners(net, group))
e34d5c1a 649 return 0;
a2427692 650
03b64f51
PNA
651 skb = nlmsg_new(ctnetlink_nlmsg_size(ct), GFP_ATOMIC);
652 if (skb == NULL)
150ace0d 653 goto errout;
c1d10adb 654
c1d10adb 655 type |= NFNL_SUBSYS_CTNETLINK << 8;
15e47304 656 nlh = nlmsg_put(skb, item->portid, 0, type, sizeof(*nfmsg), flags);
96bcf938
PNA
657 if (nlh == NULL)
658 goto nlmsg_failure;
c1d10adb 659
96bcf938 660 nfmsg = nlmsg_data(nlh);
5e8fbe2a 661 nfmsg->nfgen_family = nf_ct_l3num(ct);
c1d10adb
PNA
662 nfmsg->version = NFNETLINK_V0;
663 nfmsg->res_id = 0;
664
528a3a6f 665 rcu_read_lock();
deedb590
DB
666 zone = nf_ct_zone(ct);
667
df6fb868
PM
668 nest_parms = nla_nest_start(skb, CTA_TUPLE_ORIG | NLA_F_NESTED);
669 if (!nest_parms)
670 goto nla_put_failure;
f2f3e38c 671 if (ctnetlink_dump_tuples(skb, nf_ct_tuple(ct, IP_CT_DIR_ORIGINAL)) < 0)
df6fb868 672 goto nla_put_failure;
deedb590
DB
673 if (ctnetlink_dump_zone_id(skb, CTA_TUPLE_ZONE, zone,
674 NF_CT_ZONE_DIR_ORIG) < 0)
675 goto nla_put_failure;
df6fb868 676 nla_nest_end(skb, nest_parms);
601e68e1 677
df6fb868
PM
678 nest_parms = nla_nest_start(skb, CTA_TUPLE_REPLY | NLA_F_NESTED);
679 if (!nest_parms)
680 goto nla_put_failure;
f2f3e38c 681 if (ctnetlink_dump_tuples(skb, nf_ct_tuple(ct, IP_CT_DIR_REPLY)) < 0)
df6fb868 682 goto nla_put_failure;
deedb590
DB
683 if (ctnetlink_dump_zone_id(skb, CTA_TUPLE_ZONE, zone,
684 NF_CT_ZONE_DIR_REPL) < 0)
685 goto nla_put_failure;
df6fb868 686 nla_nest_end(skb, nest_parms);
c1d10adb 687
deedb590
DB
688 if (ctnetlink_dump_zone_id(skb, CTA_ZONE, zone,
689 NF_CT_DEFAULT_ZONE_DIR) < 0)
cc1eb431 690 goto nla_put_failure;
ef00f89f 691
1eedf699
EL
692 if (ctnetlink_dump_id(skb, ct) < 0)
693 goto nla_put_failure;
694
e57dce60
FH
695 if (ctnetlink_dump_status(skb, ct) < 0)
696 goto nla_put_failure;
697
a0891aa6 698 if (events & (1 << IPCT_DESTROY)) {
4542fa47 699 if (ctnetlink_dump_acct(skb, ct, type) < 0 ||
a992ca2a 700 ctnetlink_dump_timestamp(skb, ct) < 0)
df6fb868 701 goto nla_put_failure;
7b621c1e 702 } else {
7b621c1e 703 if (ctnetlink_dump_timeout(skb, ct) < 0)
df6fb868 704 goto nla_put_failure;
7b621c1e 705
a0891aa6 706 if (events & (1 << IPCT_PROTOINFO)
7b621c1e 707 && ctnetlink_dump_protoinfo(skb, ct) < 0)
df6fb868 708 goto nla_put_failure;
7b621c1e 709
a0891aa6 710 if ((events & (1 << IPCT_HELPER) || nfct_help(ct))
7b621c1e 711 && ctnetlink_dump_helpinfo(skb, ct) < 0)
df6fb868 712 goto nla_put_failure;
7b621c1e 713
ff660c80 714#ifdef CONFIG_NF_CONNTRACK_SECMARK
a0891aa6 715 if ((events & (1 << IPCT_SECMARK) || ct->secmark)
1cc63249 716 && ctnetlink_dump_secctx(skb, ct) < 0)
37fccd85 717 goto nla_put_failure;
ff660c80 718#endif
0ceabd83
FW
719 if (events & (1 << IPCT_LABEL) &&
720 ctnetlink_dump_labels(skb, ct) < 0)
721 goto nla_put_failure;
7b621c1e 722
a0891aa6 723 if (events & (1 << IPCT_RELATED) &&
0f417ce9
PNA
724 ctnetlink_dump_master(skb, ct) < 0)
725 goto nla_put_failure;
726
41d73ec0
PM
727 if (events & (1 << IPCT_SEQADJ) &&
728 ctnetlink_dump_ct_seq_adj(skb, ct) < 0)
13eae15a 729 goto nla_put_failure;
7b621c1e 730 }
b9a37e0c 731
a83099a6 732#ifdef CONFIG_NF_CONNTRACK_MARK
a0891aa6 733 if ((events & (1 << IPCT_MARK) || ct->mark)
a83099a6
EL
734 && ctnetlink_dump_mark(skb, ct) < 0)
735 goto nla_put_failure;
736#endif
528a3a6f 737 rcu_read_unlock();
a83099a6 738
96bcf938 739 nlmsg_end(skb, nlh);
15e47304 740 err = nfnetlink_send(skb, net, item->portid, group, item->report,
cd8c20b6 741 GFP_ATOMIC);
dd7669a9
PNA
742 if (err == -ENOBUFS || err == -EAGAIN)
743 return -ENOBUFS;
744
e34d5c1a 745 return 0;
c1d10adb 746
df6fb868 747nla_put_failure:
528a3a6f 748 rcu_read_unlock();
96bcf938 749 nlmsg_cancel(skb, nlh);
528a3a6f 750nlmsg_failure:
c1d10adb 751 kfree_skb(skb);
150ace0d 752errout:
37b7ef72
PNA
753 if (nfnetlink_set_err(net, 0, group, -ENOBUFS) > 0)
754 return -ENOBUFS;
755
e34d5c1a 756 return 0;
c1d10adb
PNA
757}
758#endif /* CONFIG_NF_CONNTRACK_EVENTS */
759
760static int ctnetlink_done(struct netlink_callback *cb)
761{
89f2e218
PM
762 if (cb->args[1])
763 nf_ct_put((struct nf_conn *)cb->args[1]);
397304b5 764 kfree(cb->data);
c1d10adb
PNA
765 return 0;
766}
767
866476f3 768struct ctnetlink_filter {
0f298a28
PNA
769 struct {
770 u_int32_t val;
771 u_int32_t mask;
772 } mark;
773};
774
866476f3
KE
775static struct ctnetlink_filter *
776ctnetlink_alloc_filter(const struct nlattr * const cda[])
777{
778#ifdef CONFIG_NF_CONNTRACK_MARK
779 struct ctnetlink_filter *filter;
780
781 filter = kzalloc(sizeof(*filter), GFP_KERNEL);
782 if (filter == NULL)
783 return ERR_PTR(-ENOMEM);
784
785 filter->mark.val = ntohl(nla_get_be32(cda[CTA_MARK]));
786 filter->mark.mask = ntohl(nla_get_be32(cda[CTA_MARK_MASK]));
787
788 return filter;
789#else
790 return ERR_PTR(-EOPNOTSUPP);
791#endif
792}
793
794static int ctnetlink_filter_match(struct nf_conn *ct, void *data)
795{
796 struct ctnetlink_filter *filter = data;
797
798 if (filter == NULL)
799 return 1;
800
801#ifdef CONFIG_NF_CONNTRACK_MARK
802 if ((ct->mark & filter->mark.mask) == filter->mark.val)
803 return 1;
804#endif
805
806 return 0;
807}
808
c1d10adb
PNA
809static int
810ctnetlink_dump_table(struct sk_buff *skb, struct netlink_callback *cb)
811{
9592a5c0 812 struct net *net = sock_net(skb->sk);
89f2e218 813 struct nf_conn *ct, *last;
c1d10adb 814 struct nf_conntrack_tuple_hash *h;
ea781f19 815 struct hlist_nulls_node *n;
96bcf938 816 struct nfgenmsg *nfmsg = nlmsg_data(cb->nlh);
87711cb8 817 u_int8_t l3proto = nfmsg->nfgen_family;
2344d64e
FW
818 struct nf_conn *nf_ct_evict[8];
819 int res, i;
93bb0ceb
JDB
820 spinlock_t *lockp;
821
d205dc40 822 last = (struct nf_conn *)cb->args[1];
2344d64e 823 i = 0;
93bb0ceb
JDB
824
825 local_bh_disable();
56d52d48 826 for (; cb->args[0] < nf_conntrack_htable_size; cb->args[0]++) {
89f2e218 827restart:
2344d64e
FW
828 while (i) {
829 i--;
830 if (nf_ct_should_gc(nf_ct_evict[i]))
831 nf_ct_kill(nf_ct_evict[i]);
832 nf_ct_put(nf_ct_evict[i]);
833 }
834
93bb0ceb 835 lockp = &nf_conntrack_locks[cb->args[0] % CONNTRACK_LOCKS];
b16c2919 836 nf_conntrack_lock(lockp);
56d52d48 837 if (cb->args[0] >= nf_conntrack_htable_size) {
93bb0ceb
JDB
838 spin_unlock(lockp);
839 goto out;
840 }
56d52d48
FW
841 hlist_nulls_for_each_entry(h, n, &nf_conntrack_hash[cb->args[0]],
842 hnnode) {
5b1158e9 843 if (NF_CT_DIRECTION(h) != IP_CT_DIR_ORIGINAL)
c1d10adb
PNA
844 continue;
845 ct = nf_ct_tuplehash_to_ctrack(h);
2344d64e
FW
846 if (nf_ct_is_expired(ct)) {
847 if (i < ARRAY_SIZE(nf_ct_evict) &&
848 atomic_inc_not_zero(&ct->ct_general.use))
849 nf_ct_evict[i++] = ct;
850 continue;
851 }
852
e0c7d472
FW
853 if (!net_eq(net, nf_ct_net(ct)))
854 continue;
855
87711cb8
PNA
856 /* Dump entries of a given L3 protocol number.
857 * If it is not specified, ie. l3proto == 0,
858 * then dump everything. */
5e8fbe2a 859 if (l3proto && nf_ct_l3num(ct) != l3proto)
13ee6ac5 860 continue;
d205dc40
PM
861 if (cb->args[1]) {
862 if (ct != last)
13ee6ac5 863 continue;
d205dc40 864 cb->args[1] = 0;
89f2e218 865 }
866476f3 866 if (!ctnetlink_filter_match(ct, cb->data))
0f298a28 867 continue;
866476f3 868
3b988ece
HS
869 rcu_read_lock();
870 res =
15e47304 871 ctnetlink_fill_info(skb, NETLINK_CB(cb->skb).portid,
3b988ece
HS
872 cb->nlh->nlmsg_seq,
873 NFNL_MSG_TYPE(cb->nlh->nlmsg_type),
874 ct);
875 rcu_read_unlock();
876 if (res < 0) {
c71caf41 877 nf_conntrack_get(&ct->ct_general);
89f2e218 878 cb->args[1] = (unsigned long)ct;
93bb0ceb 879 spin_unlock(lockp);
c1d10adb 880 goto out;
89f2e218
PM
881 }
882 }
93bb0ceb 883 spin_unlock(lockp);
d205dc40 884 if (cb->args[1]) {
89f2e218
PM
885 cb->args[1] = 0;
886 goto restart;
c1d10adb
PNA
887 }
888 }
89f2e218 889out:
93bb0ceb 890 local_bh_enable();
d205dc40
PM
891 if (last)
892 nf_ct_put(last);
c1d10adb 893
2344d64e
FW
894 while (i) {
895 i--;
896 if (nf_ct_should_gc(nf_ct_evict[i]))
897 nf_ct_kill(nf_ct_evict[i]);
898 nf_ct_put(nf_ct_evict[i]);
899 }
900
c1d10adb
PNA
901 return skb->len;
902}
903
4054ff45
PNA
904static int ctnetlink_parse_tuple_ip(struct nlattr *attr,
905 struct nf_conntrack_tuple *tuple)
c1d10adb 906{
df6fb868 907 struct nlattr *tb[CTA_IP_MAX+1];
c1d10adb
PNA
908 struct nf_conntrack_l3proto *l3proto;
909 int ret = 0;
910
130ffbc2
DB
911 ret = nla_parse_nested(tb, CTA_IP_MAX, attr, NULL);
912 if (ret < 0)
913 return ret;
c1d10adb 914
cd91566e
FW
915 rcu_read_lock();
916 l3proto = __nf_ct_l3proto_find(tuple->src.l3num);
c1d10adb 917
f73e924c
PM
918 if (likely(l3proto->nlattr_to_tuple)) {
919 ret = nla_validate_nested(attr, CTA_IP_MAX,
920 l3proto->nla_policy);
921 if (ret == 0)
922 ret = l3proto->nlattr_to_tuple(tb, tuple);
923 }
c1d10adb 924
cd91566e 925 rcu_read_unlock();
c1d10adb 926
c1d10adb
PNA
927 return ret;
928}
929
f73e924c
PM
930static const struct nla_policy proto_nla_policy[CTA_PROTO_MAX+1] = {
931 [CTA_PROTO_NUM] = { .type = NLA_U8 },
c1d10adb
PNA
932};
933
4054ff45
PNA
934static int ctnetlink_parse_tuple_proto(struct nlattr *attr,
935 struct nf_conntrack_tuple *tuple)
c1d10adb 936{
df6fb868 937 struct nlattr *tb[CTA_PROTO_MAX+1];
605dcad6 938 struct nf_conntrack_l4proto *l4proto;
c1d10adb
PNA
939 int ret = 0;
940
f73e924c
PM
941 ret = nla_parse_nested(tb, CTA_PROTO_MAX, attr, proto_nla_policy);
942 if (ret < 0)
943 return ret;
c1d10adb 944
df6fb868 945 if (!tb[CTA_PROTO_NUM])
c1d10adb 946 return -EINVAL;
77236b6e 947 tuple->dst.protonum = nla_get_u8(tb[CTA_PROTO_NUM]);
c1d10adb 948
cd91566e
FW
949 rcu_read_lock();
950 l4proto = __nf_ct_l4proto_find(tuple->src.l3num, tuple->dst.protonum);
c1d10adb 951
f73e924c
PM
952 if (likely(l4proto->nlattr_to_tuple)) {
953 ret = nla_validate_nested(attr, CTA_PROTO_MAX,
954 l4proto->nla_policy);
955 if (ret == 0)
956 ret = l4proto->nlattr_to_tuple(tb, tuple);
957 }
c1d10adb 958
cd91566e 959 rcu_read_unlock();
601e68e1 960
c1d10adb
PNA
961 return ret;
962}
963
deedb590
DB
964static int
965ctnetlink_parse_zone(const struct nlattr *attr,
966 struct nf_conntrack_zone *zone)
967{
5e8018fc
DB
968 nf_ct_zone_init(zone, NF_CT_DEFAULT_ZONE_ID,
969 NF_CT_DEFAULT_ZONE_DIR, 0);
deedb590
DB
970#ifdef CONFIG_NF_CONNTRACK_ZONES
971 if (attr)
972 zone->id = ntohs(nla_get_be16(attr));
973#else
974 if (attr)
975 return -EOPNOTSUPP;
976#endif
977 return 0;
978}
979
980static int
981ctnetlink_parse_tuple_zone(struct nlattr *attr, enum ctattr_type type,
982 struct nf_conntrack_zone *zone)
983{
984 int ret;
985
986 if (zone->id != NF_CT_DEFAULT_ZONE_ID)
987 return -EINVAL;
988
989 ret = ctnetlink_parse_zone(attr, zone);
990 if (ret < 0)
991 return ret;
992
993 if (type == CTA_TUPLE_REPLY)
994 zone->dir = NF_CT_ZONE_DIR_REPL;
995 else
996 zone->dir = NF_CT_ZONE_DIR_ORIG;
997
998 return 0;
999}
1000
d0b0268f
PM
1001static const struct nla_policy tuple_nla_policy[CTA_TUPLE_MAX+1] = {
1002 [CTA_TUPLE_IP] = { .type = NLA_NESTED },
1003 [CTA_TUPLE_PROTO] = { .type = NLA_NESTED },
deedb590 1004 [CTA_TUPLE_ZONE] = { .type = NLA_U16 },
d0b0268f
PM
1005};
1006
bb5cf80e 1007static int
39938324
PM
1008ctnetlink_parse_tuple(const struct nlattr * const cda[],
1009 struct nf_conntrack_tuple *tuple,
deedb590
DB
1010 enum ctattr_type type, u_int8_t l3num,
1011 struct nf_conntrack_zone *zone)
c1d10adb 1012{
df6fb868 1013 struct nlattr *tb[CTA_TUPLE_MAX+1];
c1d10adb
PNA
1014 int err;
1015
c1d10adb
PNA
1016 memset(tuple, 0, sizeof(*tuple));
1017
130ffbc2
DB
1018 err = nla_parse_nested(tb, CTA_TUPLE_MAX, cda[type], tuple_nla_policy);
1019 if (err < 0)
1020 return err;
c1d10adb 1021
df6fb868 1022 if (!tb[CTA_TUPLE_IP])
c1d10adb
PNA
1023 return -EINVAL;
1024
1025 tuple->src.l3num = l3num;
1026
df6fb868 1027 err = ctnetlink_parse_tuple_ip(tb[CTA_TUPLE_IP], tuple);
c1d10adb
PNA
1028 if (err < 0)
1029 return err;
1030
df6fb868 1031 if (!tb[CTA_TUPLE_PROTO])
c1d10adb
PNA
1032 return -EINVAL;
1033
df6fb868 1034 err = ctnetlink_parse_tuple_proto(tb[CTA_TUPLE_PROTO], tuple);
c1d10adb
PNA
1035 if (err < 0)
1036 return err;
1037
deedb590
DB
1038 if (tb[CTA_TUPLE_ZONE]) {
1039 if (!zone)
1040 return -EINVAL;
1041
1042 err = ctnetlink_parse_tuple_zone(tb[CTA_TUPLE_ZONE],
1043 type, zone);
1044 if (err < 0)
1045 return err;
1046 }
1047
c1d10adb
PNA
1048 /* orig and expect tuples get DIR_ORIGINAL */
1049 if (type == CTA_TUPLE_REPLY)
1050 tuple->dst.dir = IP_CT_DIR_REPLY;
1051 else
1052 tuple->dst.dir = IP_CT_DIR_ORIGINAL;
1053
c1d10adb
PNA
1054 return 0;
1055}
1056
d0b0268f 1057static const struct nla_policy help_nla_policy[CTA_HELP_MAX+1] = {
6d1fafca
FW
1058 [CTA_HELP_NAME] = { .type = NLA_NUL_STRING,
1059 .len = NF_CT_HELPER_NAME_LEN - 1 },
d0b0268f
PM
1060};
1061
4054ff45
PNA
1062static int ctnetlink_parse_help(const struct nlattr *attr, char **helper_name,
1063 struct nlattr **helpinfo)
c1d10adb 1064{
130ffbc2 1065 int err;
df6fb868 1066 struct nlattr *tb[CTA_HELP_MAX+1];
c1d10adb 1067
130ffbc2
DB
1068 err = nla_parse_nested(tb, CTA_HELP_MAX, attr, help_nla_policy);
1069 if (err < 0)
1070 return err;
c1d10adb 1071
df6fb868 1072 if (!tb[CTA_HELP_NAME])
c1d10adb
PNA
1073 return -EINVAL;
1074
df6fb868 1075 *helper_name = nla_data(tb[CTA_HELP_NAME]);
c1d10adb 1076
ae243bee
PNA
1077 if (tb[CTA_HELP_INFO])
1078 *helpinfo = tb[CTA_HELP_INFO];
1079
c1d10adb
PNA
1080 return 0;
1081}
1082
f73e924c 1083static const struct nla_policy ct_nla_policy[CTA_MAX+1] = {
d0b0268f
PM
1084 [CTA_TUPLE_ORIG] = { .type = NLA_NESTED },
1085 [CTA_TUPLE_REPLY] = { .type = NLA_NESTED },
f73e924c 1086 [CTA_STATUS] = { .type = NLA_U32 },
d0b0268f
PM
1087 [CTA_PROTOINFO] = { .type = NLA_NESTED },
1088 [CTA_HELP] = { .type = NLA_NESTED },
1089 [CTA_NAT_SRC] = { .type = NLA_NESTED },
f73e924c
PM
1090 [CTA_TIMEOUT] = { .type = NLA_U32 },
1091 [CTA_MARK] = { .type = NLA_U32 },
f73e924c 1092 [CTA_ID] = { .type = NLA_U32 },
d0b0268f
PM
1093 [CTA_NAT_DST] = { .type = NLA_NESTED },
1094 [CTA_TUPLE_MASTER] = { .type = NLA_NESTED },
6d1fafca
FW
1095 [CTA_NAT_SEQ_ADJ_ORIG] = { .type = NLA_NESTED },
1096 [CTA_NAT_SEQ_ADJ_REPLY] = { .type = NLA_NESTED },
ef00f89f 1097 [CTA_ZONE] = { .type = NLA_U16 },
0f298a28 1098 [CTA_MARK_MASK] = { .type = NLA_U32 },
9b21f6a9 1099 [CTA_LABELS] = { .type = NLA_BINARY,
d2bf2f34 1100 .len = NF_CT_LABELS_MAX_SIZE },
9b21f6a9 1101 [CTA_LABELS_MASK] = { .type = NLA_BINARY,
d2bf2f34 1102 .len = NF_CT_LABELS_MAX_SIZE },
c1d10adb
PNA
1103};
1104
866476f3
KE
1105static int ctnetlink_flush_conntrack(struct net *net,
1106 const struct nlattr * const cda[],
1107 u32 portid, int report)
1108{
1109 struct ctnetlink_filter *filter = NULL;
1110
1111 if (cda[CTA_MARK] && cda[CTA_MARK_MASK]) {
1112 filter = ctnetlink_alloc_filter(cda);
1113 if (IS_ERR(filter))
1114 return PTR_ERR(filter);
1115 }
1116
1117 nf_ct_iterate_cleanup(net, ctnetlink_filter_match, filter,
1118 portid, report);
1119 kfree(filter);
1120
1121 return 0;
1122}
1123
7b8002a1
PNA
1124static int ctnetlink_del_conntrack(struct net *net, struct sock *ctnl,
1125 struct sk_buff *skb,
1126 const struct nlmsghdr *nlh,
1127 const struct nlattr * const cda[])
c1d10adb
PNA
1128{
1129 struct nf_conntrack_tuple_hash *h;
1130 struct nf_conntrack_tuple tuple;
1131 struct nf_conn *ct;
96bcf938 1132 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
c1d10adb 1133 u_int8_t u3 = nfmsg->nfgen_family;
308ac914 1134 struct nf_conntrack_zone zone;
ef00f89f
PM
1135 int err;
1136
1137 err = ctnetlink_parse_zone(cda[CTA_ZONE], &zone);
1138 if (err < 0)
1139 return err;
c1d10adb 1140
df6fb868 1141 if (cda[CTA_TUPLE_ORIG])
deedb590
DB
1142 err = ctnetlink_parse_tuple(cda, &tuple, CTA_TUPLE_ORIG,
1143 u3, &zone);
df6fb868 1144 else if (cda[CTA_TUPLE_REPLY])
deedb590
DB
1145 err = ctnetlink_parse_tuple(cda, &tuple, CTA_TUPLE_REPLY,
1146 u3, &zone);
c1d10adb 1147 else {
866476f3
KE
1148 return ctnetlink_flush_conntrack(net, cda,
1149 NETLINK_CB(skb).portid,
1150 nlmsg_report(nlh));
c1d10adb
PNA
1151 }
1152
1153 if (err < 0)
1154 return err;
1155
308ac914 1156 h = nf_conntrack_find_get(net, &zone, &tuple);
9ea8cfd6 1157 if (!h)
c1d10adb 1158 return -ENOENT;
c1d10adb
PNA
1159
1160 ct = nf_ct_tuplehash_to_ctrack(h);
601e68e1 1161
df6fb868 1162 if (cda[CTA_ID]) {
77236b6e 1163 u_int32_t id = ntohl(nla_get_be32(cda[CTA_ID]));
7f85f914 1164 if (id != (u32)(unsigned long)ct) {
c1d10adb
PNA
1165 nf_ct_put(ct);
1166 return -ENOENT;
1167 }
601e68e1 1168 }
c1d10adb 1169
f330a7fd 1170 nf_ct_delete(ct, NETLINK_CB(skb).portid, nlmsg_report(nlh));
c1d10adb 1171 nf_ct_put(ct);
c1d10adb
PNA
1172
1173 return 0;
1174}
1175
7b8002a1
PNA
1176static int ctnetlink_get_conntrack(struct net *net, struct sock *ctnl,
1177 struct sk_buff *skb,
1178 const struct nlmsghdr *nlh,
1179 const struct nlattr * const cda[])
c1d10adb
PNA
1180{
1181 struct nf_conntrack_tuple_hash *h;
1182 struct nf_conntrack_tuple tuple;
1183 struct nf_conn *ct;
1184 struct sk_buff *skb2 = NULL;
96bcf938 1185 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
c1d10adb 1186 u_int8_t u3 = nfmsg->nfgen_family;
308ac914 1187 struct nf_conntrack_zone zone;
ef00f89f 1188 int err;
c1d10adb 1189
80d326fa
PNA
1190 if (nlh->nlmsg_flags & NLM_F_DUMP) {
1191 struct netlink_dump_control c = {
1192 .dump = ctnetlink_dump_table,
1193 .done = ctnetlink_done,
1194 };
866476f3 1195
0f298a28 1196 if (cda[CTA_MARK] && cda[CTA_MARK_MASK]) {
866476f3 1197 struct ctnetlink_filter *filter;
0f298a28 1198
866476f3
KE
1199 filter = ctnetlink_alloc_filter(cda);
1200 if (IS_ERR(filter))
1201 return PTR_ERR(filter);
0f298a28 1202
0f298a28
PNA
1203 c.data = filter;
1204 }
80d326fa
PNA
1205 return netlink_dump_start(ctnl, skb, nlh, &c);
1206 }
c1d10adb 1207
ef00f89f
PM
1208 err = ctnetlink_parse_zone(cda[CTA_ZONE], &zone);
1209 if (err < 0)
1210 return err;
1211
df6fb868 1212 if (cda[CTA_TUPLE_ORIG])
deedb590
DB
1213 err = ctnetlink_parse_tuple(cda, &tuple, CTA_TUPLE_ORIG,
1214 u3, &zone);
df6fb868 1215 else if (cda[CTA_TUPLE_REPLY])
deedb590
DB
1216 err = ctnetlink_parse_tuple(cda, &tuple, CTA_TUPLE_REPLY,
1217 u3, &zone);
c1d10adb
PNA
1218 else
1219 return -EINVAL;
1220
1221 if (err < 0)
1222 return err;
1223
308ac914 1224 h = nf_conntrack_find_get(net, &zone, &tuple);
9ea8cfd6 1225 if (!h)
c1d10adb 1226 return -ENOENT;
9ea8cfd6 1227
c1d10adb
PNA
1228 ct = nf_ct_tuplehash_to_ctrack(h);
1229
1230 err = -ENOMEM;
96bcf938
PNA
1231 skb2 = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
1232 if (skb2 == NULL) {
c1d10adb
PNA
1233 nf_ct_put(ct);
1234 return -ENOMEM;
1235 }
c1d10adb 1236
528a3a6f 1237 rcu_read_lock();
15e47304 1238 err = ctnetlink_fill_info(skb2, NETLINK_CB(skb).portid, nlh->nlmsg_seq,
80e60e67 1239 NFNL_MSG_TYPE(nlh->nlmsg_type), ct);
528a3a6f 1240 rcu_read_unlock();
c1d10adb
PNA
1241 nf_ct_put(ct);
1242 if (err <= 0)
1243 goto free;
1244
15e47304 1245 err = netlink_unicast(ctnl, skb2, NETLINK_CB(skb).portid, MSG_DONTWAIT);
c1d10adb
PNA
1246 if (err < 0)
1247 goto out;
1248
c1d10adb
PNA
1249 return 0;
1250
1251free:
1252 kfree_skb(skb2);
1253out:
f31e8d49
PNA
1254 /* this avoids a loop in nfnetlink. */
1255 return err == -EAGAIN ? -ENOBUFS : err;
c1d10adb
PNA
1256}
1257
d871befe
PNA
1258static int ctnetlink_done_list(struct netlink_callback *cb)
1259{
1260 if (cb->args[1])
1261 nf_ct_put((struct nf_conn *)cb->args[1]);
1262 return 0;
1263}
1264
1265static int
b7779d06 1266ctnetlink_dump_list(struct sk_buff *skb, struct netlink_callback *cb, bool dying)
d871befe 1267{
cd5f336f 1268 struct nf_conn *ct, *last;
d871befe
PNA
1269 struct nf_conntrack_tuple_hash *h;
1270 struct hlist_nulls_node *n;
1271 struct nfgenmsg *nfmsg = nlmsg_data(cb->nlh);
1272 u_int8_t l3proto = nfmsg->nfgen_family;
1273 int res;
b7779d06
JDB
1274 int cpu;
1275 struct hlist_nulls_head *list;
1276 struct net *net = sock_net(skb->sk);
d871befe
PNA
1277
1278 if (cb->args[2])
1279 return 0;
1280
cd5f336f
FW
1281 last = (struct nf_conn *)cb->args[1];
1282
b7779d06
JDB
1283 for (cpu = cb->args[0]; cpu < nr_cpu_ids; cpu++) {
1284 struct ct_pcpu *pcpu;
1285
1286 if (!cpu_possible(cpu))
d871befe 1287 continue;
b7779d06
JDB
1288
1289 pcpu = per_cpu_ptr(net->ct.pcpu_lists, cpu);
1290 spin_lock_bh(&pcpu->lock);
b7779d06
JDB
1291 list = dying ? &pcpu->dying : &pcpu->unconfirmed;
1292restart:
1293 hlist_nulls_for_each_entry(h, n, list, hnnode) {
1294 ct = nf_ct_tuplehash_to_ctrack(h);
1295 if (l3proto && nf_ct_l3num(ct) != l3proto)
d871befe 1296 continue;
b7779d06
JDB
1297 if (cb->args[1]) {
1298 if (ct != last)
1299 continue;
1300 cb->args[1] = 0;
1301 }
1302 rcu_read_lock();
1303 res = ctnetlink_fill_info(skb, NETLINK_CB(cb->skb).portid,
1304 cb->nlh->nlmsg_seq,
1305 NFNL_MSG_TYPE(cb->nlh->nlmsg_type),
1306 ct);
1307 rcu_read_unlock();
1308 if (res < 0) {
cd5f336f
FW
1309 if (!atomic_inc_not_zero(&ct->ct_general.use))
1310 continue;
266155b2 1311 cb->args[0] = cpu;
b7779d06
JDB
1312 cb->args[1] = (unsigned long)ct;
1313 spin_unlock_bh(&pcpu->lock);
1314 goto out;
1315 }
d871befe 1316 }
b7779d06
JDB
1317 if (cb->args[1]) {
1318 cb->args[1] = 0;
1319 goto restart;
266155b2 1320 }
b7779d06 1321 spin_unlock_bh(&pcpu->lock);
d871befe 1322 }
266155b2 1323 cb->args[2] = 1;
d871befe 1324out:
d871befe
PNA
1325 if (last)
1326 nf_ct_put(last);
1327
1328 return skb->len;
1329}
1330
1331static int
1332ctnetlink_dump_dying(struct sk_buff *skb, struct netlink_callback *cb)
1333{
b7779d06 1334 return ctnetlink_dump_list(skb, cb, true);
d871befe
PNA
1335}
1336
7b8002a1
PNA
1337static int ctnetlink_get_ct_dying(struct net *net, struct sock *ctnl,
1338 struct sk_buff *skb,
1339 const struct nlmsghdr *nlh,
1340 const struct nlattr * const cda[])
d871befe
PNA
1341{
1342 if (nlh->nlmsg_flags & NLM_F_DUMP) {
1343 struct netlink_dump_control c = {
1344 .dump = ctnetlink_dump_dying,
1345 .done = ctnetlink_done_list,
1346 };
1347 return netlink_dump_start(ctnl, skb, nlh, &c);
1348 }
1349
1350 return -EOPNOTSUPP;
1351}
1352
1353static int
1354ctnetlink_dump_unconfirmed(struct sk_buff *skb, struct netlink_callback *cb)
1355{
b7779d06 1356 return ctnetlink_dump_list(skb, cb, false);
d871befe
PNA
1357}
1358
7b8002a1
PNA
1359static int ctnetlink_get_ct_unconfirmed(struct net *net, struct sock *ctnl,
1360 struct sk_buff *skb,
1361 const struct nlmsghdr *nlh,
1362 const struct nlattr * const cda[])
d871befe
PNA
1363{
1364 if (nlh->nlmsg_flags & NLM_F_DUMP) {
1365 struct netlink_dump_control c = {
1366 .dump = ctnetlink_dump_unconfirmed,
1367 .done = ctnetlink_done_list,
1368 };
1369 return netlink_dump_start(ctnl, skb, nlh, &c);
1370 }
1371
1372 return -EOPNOTSUPP;
1373}
1374
67671841 1375#ifdef CONFIG_NF_NAT_NEEDED
e6a7d3c0
PNA
1376static int
1377ctnetlink_parse_nat_setup(struct nf_conn *ct,
1378 enum nf_nat_manip_type manip,
39938324 1379 const struct nlattr *attr)
e6a7d3c0
PNA
1380{
1381 typeof(nfnetlink_parse_nat_setup_hook) parse_nat_setup;
c7232c99 1382 int err;
e6a7d3c0
PNA
1383
1384 parse_nat_setup = rcu_dereference(nfnetlink_parse_nat_setup_hook);
1385 if (!parse_nat_setup) {
95a5afca 1386#ifdef CONFIG_MODULES
e6a7d3c0 1387 rcu_read_unlock();
c14b78e7 1388 nfnl_unlock(NFNL_SUBSYS_CTNETLINK);
c7232c99 1389 if (request_module("nf-nat") < 0) {
c14b78e7 1390 nfnl_lock(NFNL_SUBSYS_CTNETLINK);
e6a7d3c0
PNA
1391 rcu_read_lock();
1392 return -EOPNOTSUPP;
1393 }
c14b78e7 1394 nfnl_lock(NFNL_SUBSYS_CTNETLINK);
e6a7d3c0
PNA
1395 rcu_read_lock();
1396 if (nfnetlink_parse_nat_setup_hook)
1397 return -EAGAIN;
1398#endif
1399 return -EOPNOTSUPP;
1400 }
1401
c7232c99
PM
1402 err = parse_nat_setup(ct, manip, attr);
1403 if (err == -EAGAIN) {
1404#ifdef CONFIG_MODULES
1405 rcu_read_unlock();
c14b78e7 1406 nfnl_unlock(NFNL_SUBSYS_CTNETLINK);
c7232c99 1407 if (request_module("nf-nat-%u", nf_ct_l3num(ct)) < 0) {
c14b78e7 1408 nfnl_lock(NFNL_SUBSYS_CTNETLINK);
c7232c99
PM
1409 rcu_read_lock();
1410 return -EOPNOTSUPP;
1411 }
c14b78e7 1412 nfnl_lock(NFNL_SUBSYS_CTNETLINK);
c7232c99
PM
1413 rcu_read_lock();
1414#else
1415 err = -EOPNOTSUPP;
1416#endif
1417 }
1418 return err;
e6a7d3c0 1419}
67671841 1420#endif
e6a7d3c0 1421
bb5cf80e 1422static int
39938324 1423ctnetlink_change_status(struct nf_conn *ct, const struct nlattr * const cda[])
c1d10adb
PNA
1424{
1425 unsigned long d;
77236b6e 1426 unsigned int status = ntohl(nla_get_be32(cda[CTA_STATUS]));
c1d10adb
PNA
1427 d = ct->status ^ status;
1428
1429 if (d & (IPS_EXPECTED|IPS_CONFIRMED|IPS_DYING))
1430 /* unchangeable */
0adf9d67 1431 return -EBUSY;
601e68e1 1432
c1d10adb
PNA
1433 if (d & IPS_SEEN_REPLY && !(status & IPS_SEEN_REPLY))
1434 /* SEEN_REPLY bit can only be set */
0adf9d67 1435 return -EBUSY;
601e68e1 1436
c1d10adb
PNA
1437 if (d & IPS_ASSURED && !(status & IPS_ASSURED))
1438 /* ASSURED bit can only be set */
0adf9d67 1439 return -EBUSY;
c1d10adb 1440
c1d10adb
PNA
1441 /* Be careful here, modifying NAT bits can screw up things,
1442 * so don't let users modify them directly if they don't pass
5b1158e9 1443 * nf_nat_range. */
c1d10adb
PNA
1444 ct->status |= status & ~(IPS_NAT_DONE_MASK | IPS_NAT_MASK);
1445 return 0;
1446}
1447
e6a7d3c0 1448static int
0eba801b 1449ctnetlink_setup_nat(struct nf_conn *ct, const struct nlattr * const cda[])
e6a7d3c0
PNA
1450{
1451#ifdef CONFIG_NF_NAT_NEEDED
1452 int ret;
1453
fe337ac2
FW
1454 if (!cda[CTA_NAT_DST] && !cda[CTA_NAT_SRC])
1455 return 0;
1456
0eba801b
PNA
1457 ret = ctnetlink_parse_nat_setup(ct, NF_NAT_MANIP_DST,
1458 cda[CTA_NAT_DST]);
1459 if (ret < 0)
1460 return ret;
1461
1462 ret = ctnetlink_parse_nat_setup(ct, NF_NAT_MANIP_SRC,
1463 cda[CTA_NAT_SRC]);
1464 return ret;
e6a7d3c0 1465#else
0eba801b
PNA
1466 if (!cda[CTA_NAT_DST] && !cda[CTA_NAT_SRC])
1467 return 0;
e6a7d3c0
PNA
1468 return -EOPNOTSUPP;
1469#endif
1470}
c1d10adb 1471
4054ff45
PNA
1472static int ctnetlink_change_helper(struct nf_conn *ct,
1473 const struct nlattr * const cda[])
c1d10adb
PNA
1474{
1475 struct nf_conntrack_helper *helper;
dc808fe2 1476 struct nf_conn_help *help = nfct_help(ct);
29fe1b48 1477 char *helpname = NULL;
ae243bee 1478 struct nlattr *helpinfo = NULL;
c1d10adb
PNA
1479 int err;
1480
c1d10adb
PNA
1481 /* don't change helper of sibling connections */
1482 if (ct->master)
0adf9d67 1483 return -EBUSY;
c1d10adb 1484
ae243bee 1485 err = ctnetlink_parse_help(cda[CTA_HELP], &helpname, &helpinfo);
c1d10adb
PNA
1486 if (err < 0)
1487 return err;
1488
df293bbb
YK
1489 if (!strcmp(helpname, "")) {
1490 if (help && help->helper) {
c1d10adb
PNA
1491 /* we had a helper before ... */
1492 nf_ct_remove_expectations(ct);
a9b3cd7f 1493 RCU_INIT_POINTER(help->helper, NULL);
c1d10adb 1494 }
df293bbb
YK
1495
1496 return 0;
c1d10adb 1497 }
601e68e1 1498
794e6871
PM
1499 helper = __nf_conntrack_helper_find(helpname, nf_ct_l3num(ct),
1500 nf_ct_protonum(ct));
226c0c0e
PNA
1501 if (helper == NULL) {
1502#ifdef CONFIG_MODULES
ca7433df 1503 spin_unlock_bh(&nf_conntrack_expect_lock);
226c0c0e
PNA
1504
1505 if (request_module("nfct-helper-%s", helpname) < 0) {
ca7433df 1506 spin_lock_bh(&nf_conntrack_expect_lock);
226c0c0e
PNA
1507 return -EOPNOTSUPP;
1508 }
1509
ca7433df 1510 spin_lock_bh(&nf_conntrack_expect_lock);
794e6871
PM
1511 helper = __nf_conntrack_helper_find(helpname, nf_ct_l3num(ct),
1512 nf_ct_protonum(ct));
226c0c0e
PNA
1513 if (helper)
1514 return -EAGAIN;
1515#endif
0adf9d67 1516 return -EOPNOTSUPP;
226c0c0e 1517 }
df293bbb 1518
ceceae1b 1519 if (help) {
ae243bee
PNA
1520 if (help->helper == helper) {
1521 /* update private helper data if allowed. */
7be54ca4 1522 if (helper->from_nlattr)
ae243bee 1523 helper->from_nlattr(helpinfo, ct);
ceceae1b 1524 return 0;
fd7462de 1525 } else
ceceae1b 1526 return -EBUSY;
ceceae1b 1527 }
df293bbb 1528
fd7462de
PNA
1529 /* we cannot set a helper for an existing conntrack */
1530 return -EOPNOTSUPP;
c1d10adb
PNA
1531}
1532
4054ff45
PNA
1533static int ctnetlink_change_timeout(struct nf_conn *ct,
1534 const struct nlattr * const cda[])
c1d10adb 1535{
77236b6e 1536 u_int32_t timeout = ntohl(nla_get_be32(cda[CTA_TIMEOUT]));
601e68e1 1537
f330a7fd 1538 ct->timeout = nfct_time_stamp + timeout * HZ;
c1d10adb 1539
f330a7fd
FW
1540 if (test_bit(IPS_DYING_BIT, &ct->status))
1541 return -ETIME;
c1d10adb
PNA
1542
1543 return 0;
1544}
1545
d0b0268f
PM
1546static const struct nla_policy protoinfo_policy[CTA_PROTOINFO_MAX+1] = {
1547 [CTA_PROTOINFO_TCP] = { .type = NLA_NESTED },
1548 [CTA_PROTOINFO_DCCP] = { .type = NLA_NESTED },
1549 [CTA_PROTOINFO_SCTP] = { .type = NLA_NESTED },
1550};
1551
4054ff45
PNA
1552static int ctnetlink_change_protoinfo(struct nf_conn *ct,
1553 const struct nlattr * const cda[])
c1d10adb 1554{
39938324
PM
1555 const struct nlattr *attr = cda[CTA_PROTOINFO];
1556 struct nlattr *tb[CTA_PROTOINFO_MAX+1];
605dcad6 1557 struct nf_conntrack_l4proto *l4proto;
c1d10adb
PNA
1558 int err = 0;
1559
130ffbc2
DB
1560 err = nla_parse_nested(tb, CTA_PROTOINFO_MAX, attr, protoinfo_policy);
1561 if (err < 0)
1562 return err;
c1d10adb 1563
cd91566e
FW
1564 rcu_read_lock();
1565 l4proto = __nf_ct_l4proto_find(nf_ct_l3num(ct), nf_ct_protonum(ct));
fdf70832
PM
1566 if (l4proto->from_nlattr)
1567 err = l4proto->from_nlattr(tb, ct);
cd91566e 1568 rcu_read_unlock();
c1d10adb
PNA
1569
1570 return err;
1571}
1572
41d73ec0
PM
1573static const struct nla_policy seqadj_policy[CTA_SEQADJ_MAX+1] = {
1574 [CTA_SEQADJ_CORRECTION_POS] = { .type = NLA_U32 },
1575 [CTA_SEQADJ_OFFSET_BEFORE] = { .type = NLA_U32 },
1576 [CTA_SEQADJ_OFFSET_AFTER] = { .type = NLA_U32 },
d0b0268f
PM
1577};
1578
4054ff45
PNA
1579static int change_seq_adj(struct nf_ct_seqadj *seq,
1580 const struct nlattr * const attr)
13eae15a 1581{
130ffbc2 1582 int err;
41d73ec0 1583 struct nlattr *cda[CTA_SEQADJ_MAX+1];
13eae15a 1584
41d73ec0 1585 err = nla_parse_nested(cda, CTA_SEQADJ_MAX, attr, seqadj_policy);
130ffbc2
DB
1586 if (err < 0)
1587 return err;
13eae15a 1588
41d73ec0 1589 if (!cda[CTA_SEQADJ_CORRECTION_POS])
13eae15a
PNA
1590 return -EINVAL;
1591
41d73ec0
PM
1592 seq->correction_pos =
1593 ntohl(nla_get_be32(cda[CTA_SEQADJ_CORRECTION_POS]));
13eae15a 1594
41d73ec0 1595 if (!cda[CTA_SEQADJ_OFFSET_BEFORE])
13eae15a
PNA
1596 return -EINVAL;
1597
41d73ec0
PM
1598 seq->offset_before =
1599 ntohl(nla_get_be32(cda[CTA_SEQADJ_OFFSET_BEFORE]));
13eae15a 1600
41d73ec0 1601 if (!cda[CTA_SEQADJ_OFFSET_AFTER])
13eae15a
PNA
1602 return -EINVAL;
1603
41d73ec0
PM
1604 seq->offset_after =
1605 ntohl(nla_get_be32(cda[CTA_SEQADJ_OFFSET_AFTER]));
13eae15a
PNA
1606
1607 return 0;
1608}
1609
1610static int
41d73ec0
PM
1611ctnetlink_change_seq_adj(struct nf_conn *ct,
1612 const struct nlattr * const cda[])
13eae15a 1613{
41d73ec0 1614 struct nf_conn_seqadj *seqadj = nfct_seqadj(ct);
13eae15a 1615 int ret = 0;
13eae15a 1616
41d73ec0 1617 if (!seqadj)
13eae15a
PNA
1618 return 0;
1619
41d73ec0
PM
1620 if (cda[CTA_SEQ_ADJ_ORIG]) {
1621 ret = change_seq_adj(&seqadj->seq[IP_CT_DIR_ORIGINAL],
1622 cda[CTA_SEQ_ADJ_ORIG]);
13eae15a
PNA
1623 if (ret < 0)
1624 return ret;
1625
1626 ct->status |= IPS_SEQ_ADJUST;
1627 }
1628
41d73ec0
PM
1629 if (cda[CTA_SEQ_ADJ_REPLY]) {
1630 ret = change_seq_adj(&seqadj->seq[IP_CT_DIR_REPLY],
1631 cda[CTA_SEQ_ADJ_REPLY]);
13eae15a
PNA
1632 if (ret < 0)
1633 return ret;
1634
1635 ct->status |= IPS_SEQ_ADJUST;
1636 }
1637
1638 return 0;
1639}
13eae15a 1640
9b21f6a9
FW
1641static int
1642ctnetlink_attach_labels(struct nf_conn *ct, const struct nlattr * const cda[])
1643{
1644#ifdef CONFIG_NF_CONNTRACK_LABELS
1645 size_t len = nla_len(cda[CTA_LABELS]);
1646 const void *mask = cda[CTA_LABELS_MASK];
1647
1648 if (len & (sizeof(u32)-1)) /* must be multiple of u32 */
1649 return -EINVAL;
1650
1651 if (mask) {
1652 if (nla_len(cda[CTA_LABELS_MASK]) == 0 ||
1653 nla_len(cda[CTA_LABELS_MASK]) != len)
1654 return -EINVAL;
1655 mask = nla_data(cda[CTA_LABELS_MASK]);
1656 }
1657
1658 len /= sizeof(u32);
1659
1660 return nf_connlabels_replace(ct, nla_data(cda[CTA_LABELS]), mask, len);
1661#else
1662 return -EOPNOTSUPP;
1663#endif
1664}
1665
c1d10adb 1666static int
39938324
PM
1667ctnetlink_change_conntrack(struct nf_conn *ct,
1668 const struct nlattr * const cda[])
c1d10adb
PNA
1669{
1670 int err;
1671
e098360f
PNA
1672 /* only allow NAT changes and master assignation for new conntracks */
1673 if (cda[CTA_NAT_SRC] || cda[CTA_NAT_DST] || cda[CTA_TUPLE_MASTER])
1674 return -EOPNOTSUPP;
1675
df6fb868 1676 if (cda[CTA_HELP]) {
c1d10adb
PNA
1677 err = ctnetlink_change_helper(ct, cda);
1678 if (err < 0)
1679 return err;
1680 }
1681
df6fb868 1682 if (cda[CTA_TIMEOUT]) {
c1d10adb
PNA
1683 err = ctnetlink_change_timeout(ct, cda);
1684 if (err < 0)
1685 return err;
1686 }
1687
df6fb868 1688 if (cda[CTA_STATUS]) {
c1d10adb
PNA
1689 err = ctnetlink_change_status(ct, cda);
1690 if (err < 0)
1691 return err;
1692 }
1693
df6fb868 1694 if (cda[CTA_PROTOINFO]) {
c1d10adb
PNA
1695 err = ctnetlink_change_protoinfo(ct, cda);
1696 if (err < 0)
1697 return err;
1698 }
1699
bcd1e830 1700#if defined(CONFIG_NF_CONNTRACK_MARK)
df6fb868 1701 if (cda[CTA_MARK])
77236b6e 1702 ct->mark = ntohl(nla_get_be32(cda[CTA_MARK]));
c1d10adb
PNA
1703#endif
1704
41d73ec0
PM
1705 if (cda[CTA_SEQ_ADJ_ORIG] || cda[CTA_SEQ_ADJ_REPLY]) {
1706 err = ctnetlink_change_seq_adj(ct, cda);
13eae15a
PNA
1707 if (err < 0)
1708 return err;
1709 }
41d73ec0 1710
9b21f6a9
FW
1711 if (cda[CTA_LABELS]) {
1712 err = ctnetlink_attach_labels(ct, cda);
1713 if (err < 0)
1714 return err;
1715 }
13eae15a 1716
c1d10adb
PNA
1717 return 0;
1718}
1719
f0a3c086 1720static struct nf_conn *
308ac914
DB
1721ctnetlink_create_conntrack(struct net *net,
1722 const struct nf_conntrack_zone *zone,
9592a5c0 1723 const struct nlattr * const cda[],
c1d10adb 1724 struct nf_conntrack_tuple *otuple,
5faa1f4c 1725 struct nf_conntrack_tuple *rtuple,
7ec47496 1726 u8 u3)
c1d10adb
PNA
1727{
1728 struct nf_conn *ct;
1729 int err = -EINVAL;
ceceae1b 1730 struct nf_conntrack_helper *helper;
315c34da 1731 struct nf_conn_tstamp *tstamp;
c1d10adb 1732
ef00f89f 1733 ct = nf_conntrack_alloc(net, zone, otuple, rtuple, GFP_ATOMIC);
cd7fcbf1 1734 if (IS_ERR(ct))
f0a3c086 1735 return ERR_PTR(-ENOMEM);
c1d10adb 1736
df6fb868 1737 if (!cda[CTA_TIMEOUT])
0f5b3e85 1738 goto err1;
c1d10adb 1739
f330a7fd 1740 ct->timeout = nfct_time_stamp + ntohl(nla_get_be32(cda[CTA_TIMEOUT])) * HZ;
c1d10adb 1741
1575e7ea 1742 rcu_read_lock();
226c0c0e 1743 if (cda[CTA_HELP]) {
29fe1b48 1744 char *helpname = NULL;
ae243bee
PNA
1745 struct nlattr *helpinfo = NULL;
1746
1747 err = ctnetlink_parse_help(cda[CTA_HELP], &helpname, &helpinfo);
0f5b3e85
PM
1748 if (err < 0)
1749 goto err2;
226c0c0e 1750
794e6871
PM
1751 helper = __nf_conntrack_helper_find(helpname, nf_ct_l3num(ct),
1752 nf_ct_protonum(ct));
226c0c0e
PNA
1753 if (helper == NULL) {
1754 rcu_read_unlock();
1755#ifdef CONFIG_MODULES
1756 if (request_module("nfct-helper-%s", helpname) < 0) {
1757 err = -EOPNOTSUPP;
0f5b3e85 1758 goto err1;
226c0c0e
PNA
1759 }
1760
1761 rcu_read_lock();
794e6871
PM
1762 helper = __nf_conntrack_helper_find(helpname,
1763 nf_ct_l3num(ct),
1764 nf_ct_protonum(ct));
226c0c0e 1765 if (helper) {
226c0c0e 1766 err = -EAGAIN;
0f5b3e85 1767 goto err2;
226c0c0e
PNA
1768 }
1769 rcu_read_unlock();
1770#endif
1771 err = -EOPNOTSUPP;
0f5b3e85 1772 goto err1;
226c0c0e
PNA
1773 } else {
1774 struct nf_conn_help *help;
1775
1afc5679 1776 help = nf_ct_helper_ext_add(ct, helper, GFP_ATOMIC);
226c0c0e 1777 if (help == NULL) {
226c0c0e 1778 err = -ENOMEM;
0f5b3e85 1779 goto err2;
226c0c0e 1780 }
ae243bee 1781 /* set private helper data if allowed. */
7be54ca4 1782 if (helper->from_nlattr)
ae243bee 1783 helper->from_nlattr(helpinfo, ct);
226c0c0e
PNA
1784
1785 /* not in hash table yet so not strictly necessary */
a9b3cd7f 1786 RCU_INIT_POINTER(help->helper, helper);
226c0c0e
PNA
1787 }
1788 } else {
1789 /* try an implicit helper assignation */
b2a15a60 1790 err = __nf_ct_try_assign_helper(ct, NULL, GFP_ATOMIC);
0f5b3e85
PM
1791 if (err < 0)
1792 goto err2;
1575e7ea
PNA
1793 }
1794
0eba801b
PNA
1795 err = ctnetlink_setup_nat(ct, cda);
1796 if (err < 0)
1797 goto err2;
e6a7d3c0 1798
a88e22ad 1799 nf_ct_acct_ext_add(ct, GFP_ATOMIC);
a992ca2a 1800 nf_ct_tstamp_ext_add(ct, GFP_ATOMIC);
a88e22ad 1801 nf_ct_ecache_ext_add(ct, 0, 0, GFP_ATOMIC);
c539f017
FW
1802 nf_ct_labels_ext_add(ct);
1803
a88e22ad
PNA
1804 /* we must add conntrack extensions before confirmation. */
1805 ct->status |= IPS_CONFIRMED;
1806
1807 if (cda[CTA_STATUS]) {
1808 err = ctnetlink_change_status(ct, cda);
0f5b3e85
PM
1809 if (err < 0)
1810 goto err2;
bbb3357d 1811 }
c1d10adb 1812
41d73ec0
PM
1813 if (cda[CTA_SEQ_ADJ_ORIG] || cda[CTA_SEQ_ADJ_REPLY]) {
1814 err = ctnetlink_change_seq_adj(ct, cda);
0f5b3e85
PM
1815 if (err < 0)
1816 goto err2;
c969aa7d 1817 }
c969aa7d 1818
e5fc9e7a 1819 memset(&ct->proto, 0, sizeof(ct->proto));
df6fb868 1820 if (cda[CTA_PROTOINFO]) {
c1d10adb 1821 err = ctnetlink_change_protoinfo(ct, cda);
0f5b3e85
PM
1822 if (err < 0)
1823 goto err2;
c1d10adb
PNA
1824 }
1825
bcd1e830 1826#if defined(CONFIG_NF_CONNTRACK_MARK)
df6fb868 1827 if (cda[CTA_MARK])
77236b6e 1828 ct->mark = ntohl(nla_get_be32(cda[CTA_MARK]));
c1d10adb
PNA
1829#endif
1830
5faa1f4c 1831 /* setup master conntrack: this is a confirmed expectation */
7ec47496
PNA
1832 if (cda[CTA_TUPLE_MASTER]) {
1833 struct nf_conntrack_tuple master;
1834 struct nf_conntrack_tuple_hash *master_h;
1835 struct nf_conn *master_ct;
1836
deedb590
DB
1837 err = ctnetlink_parse_tuple(cda, &master, CTA_TUPLE_MASTER,
1838 u3, NULL);
7ec47496 1839 if (err < 0)
0f5b3e85 1840 goto err2;
7ec47496 1841
ef00f89f 1842 master_h = nf_conntrack_find_get(net, zone, &master);
7ec47496
PNA
1843 if (master_h == NULL) {
1844 err = -ENOENT;
0f5b3e85 1845 goto err2;
7ec47496
PNA
1846 }
1847 master_ct = nf_ct_tuplehash_to_ctrack(master_h);
f2a89004 1848 __set_bit(IPS_EXPECTED_BIT, &ct->status);
5faa1f4c 1849 ct->master = master_ct;
f2a89004 1850 }
315c34da
PNA
1851 tstamp = nf_conn_tstamp_find(ct);
1852 if (tstamp)
d2de875c 1853 tstamp->start = ktime_get_real_ns();
5faa1f4c 1854
7d367e06
JK
1855 err = nf_conntrack_hash_check_insert(ct);
1856 if (err < 0)
1857 goto err2;
1858
58a3c9bb 1859 rcu_read_unlock();
dafc741c 1860
f0a3c086 1861 return ct;
c1d10adb 1862
0f5b3e85
PM
1863err2:
1864 rcu_read_unlock();
1865err1:
c1d10adb 1866 nf_conntrack_free(ct);
f0a3c086 1867 return ERR_PTR(err);
c1d10adb
PNA
1868}
1869
7b8002a1
PNA
1870static int ctnetlink_new_conntrack(struct net *net, struct sock *ctnl,
1871 struct sk_buff *skb,
1872 const struct nlmsghdr *nlh,
1873 const struct nlattr * const cda[])
c1d10adb
PNA
1874{
1875 struct nf_conntrack_tuple otuple, rtuple;
1876 struct nf_conntrack_tuple_hash *h = NULL;
96bcf938 1877 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
7d367e06 1878 struct nf_conn *ct;
c1d10adb 1879 u_int8_t u3 = nfmsg->nfgen_family;
308ac914 1880 struct nf_conntrack_zone zone;
ef00f89f
PM
1881 int err;
1882
1883 err = ctnetlink_parse_zone(cda[CTA_ZONE], &zone);
1884 if (err < 0)
1885 return err;
c1d10adb 1886
df6fb868 1887 if (cda[CTA_TUPLE_ORIG]) {
deedb590
DB
1888 err = ctnetlink_parse_tuple(cda, &otuple, CTA_TUPLE_ORIG,
1889 u3, &zone);
c1d10adb
PNA
1890 if (err < 0)
1891 return err;
1892 }
1893
df6fb868 1894 if (cda[CTA_TUPLE_REPLY]) {
deedb590
DB
1895 err = ctnetlink_parse_tuple(cda, &rtuple, CTA_TUPLE_REPLY,
1896 u3, &zone);
c1d10adb
PNA
1897 if (err < 0)
1898 return err;
1899 }
1900
df6fb868 1901 if (cda[CTA_TUPLE_ORIG])
308ac914 1902 h = nf_conntrack_find_get(net, &zone, &otuple);
df6fb868 1903 else if (cda[CTA_TUPLE_REPLY])
308ac914 1904 h = nf_conntrack_find_get(net, &zone, &rtuple);
c1d10adb
PNA
1905
1906 if (h == NULL) {
c1d10adb 1907 err = -ENOENT;
f0a3c086 1908 if (nlh->nlmsg_flags & NLM_F_CREATE) {
fecc1133 1909 enum ip_conntrack_events events;
5faa1f4c 1910
442fad94
FW
1911 if (!cda[CTA_TUPLE_ORIG] || !cda[CTA_TUPLE_REPLY])
1912 return -EINVAL;
aa0c2c68
LZ
1913 if (otuple.dst.protonum != rtuple.dst.protonum)
1914 return -EINVAL;
442fad94 1915
308ac914 1916 ct = ctnetlink_create_conntrack(net, &zone, cda, &otuple,
f0a3c086 1917 &rtuple, u3);
7d367e06
JK
1918 if (IS_ERR(ct))
1919 return PTR_ERR(ct);
1920
f0a3c086 1921 err = 0;
fecc1133
PNA
1922 if (test_bit(IPS_EXPECTED_BIT, &ct->status))
1923 events = IPCT_RELATED;
1924 else
1925 events = IPCT_NEW;
1926
9b21f6a9
FW
1927 if (cda[CTA_LABELS] &&
1928 ctnetlink_attach_labels(ct, cda) == 0)
1929 events |= (1 << IPCT_LABEL);
1930
858b3133
PM
1931 nf_conntrack_eventmask_report((1 << IPCT_REPLY) |
1932 (1 << IPCT_ASSURED) |
a0891aa6
PNA
1933 (1 << IPCT_HELPER) |
1934 (1 << IPCT_PROTOINFO) |
41d73ec0 1935 (1 << IPCT_SEQADJ) |
a0891aa6 1936 (1 << IPCT_MARK) | events,
15e47304 1937 ct, NETLINK_CB(skb).portid,
a0891aa6 1938 nlmsg_report(nlh));
f0a3c086 1939 nf_ct_put(ct);
7d367e06 1940 }
5faa1f4c 1941
c1d10adb
PNA
1942 return err;
1943 }
1944 /* implicit 'else' */
1945
c1d10adb 1946 err = -EEXIST;
7d367e06 1947 ct = nf_ct_tuplehash_to_ctrack(h);
ff4ca827 1948 if (!(nlh->nlmsg_flags & NLM_F_EXCL)) {
ca7433df 1949 spin_lock_bh(&nf_conntrack_expect_lock);
19abb7b0 1950 err = ctnetlink_change_conntrack(ct, cda);
ca7433df 1951 spin_unlock_bh(&nf_conntrack_expect_lock);
19abb7b0 1952 if (err == 0) {
858b3133
PM
1953 nf_conntrack_eventmask_report((1 << IPCT_REPLY) |
1954 (1 << IPCT_ASSURED) |
a0891aa6 1955 (1 << IPCT_HELPER) |
797a7d66 1956 (1 << IPCT_LABEL) |
a0891aa6 1957 (1 << IPCT_PROTOINFO) |
41d73ec0 1958 (1 << IPCT_SEQADJ) |
a0891aa6 1959 (1 << IPCT_MARK),
15e47304 1960 ct, NETLINK_CB(skb).portid,
a0891aa6 1961 nlmsg_report(nlh));
7d367e06 1962 }
ff4ca827 1963 }
c1d10adb 1964
7d367e06 1965 nf_ct_put(ct);
c1d10adb
PNA
1966 return err;
1967}
1968
392025f8 1969static int
15e47304 1970ctnetlink_ct_stat_cpu_fill_info(struct sk_buff *skb, u32 portid, u32 seq,
392025f8
PNA
1971 __u16 cpu, const struct ip_conntrack_stat *st)
1972{
1973 struct nlmsghdr *nlh;
1974 struct nfgenmsg *nfmsg;
15e47304 1975 unsigned int flags = portid ? NLM_F_MULTI : 0, event;
392025f8
PNA
1976
1977 event = (NFNL_SUBSYS_CTNETLINK << 8 | IPCTNL_MSG_CT_GET_STATS_CPU);
15e47304 1978 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*nfmsg), flags);
392025f8
PNA
1979 if (nlh == NULL)
1980 goto nlmsg_failure;
1981
1982 nfmsg = nlmsg_data(nlh);
1983 nfmsg->nfgen_family = AF_UNSPEC;
1984 nfmsg->version = NFNETLINK_V0;
1985 nfmsg->res_id = htons(cpu);
1986
8e8118f8 1987 if (nla_put_be32(skb, CTA_STATS_FOUND, htonl(st->found)) ||
392025f8
PNA
1988 nla_put_be32(skb, CTA_STATS_INVALID, htonl(st->invalid)) ||
1989 nla_put_be32(skb, CTA_STATS_IGNORE, htonl(st->ignore)) ||
392025f8
PNA
1990 nla_put_be32(skb, CTA_STATS_INSERT, htonl(st->insert)) ||
1991 nla_put_be32(skb, CTA_STATS_INSERT_FAILED,
1992 htonl(st->insert_failed)) ||
1993 nla_put_be32(skb, CTA_STATS_DROP, htonl(st->drop)) ||
1994 nla_put_be32(skb, CTA_STATS_EARLY_DROP, htonl(st->early_drop)) ||
1995 nla_put_be32(skb, CTA_STATS_ERROR, htonl(st->error)) ||
1996 nla_put_be32(skb, CTA_STATS_SEARCH_RESTART,
1997 htonl(st->search_restart)))
1998 goto nla_put_failure;
1999
2000 nlmsg_end(skb, nlh);
2001 return skb->len;
2002
2003nla_put_failure:
2004nlmsg_failure:
2005 nlmsg_cancel(skb, nlh);
2006 return -1;
2007}
2008
2009static int
2010ctnetlink_ct_stat_cpu_dump(struct sk_buff *skb, struct netlink_callback *cb)
2011{
2012 int cpu;
2013 struct net *net = sock_net(skb->sk);
2014
2015 if (cb->args[0] == nr_cpu_ids)
2016 return 0;
2017
2018 for (cpu = cb->args[0]; cpu < nr_cpu_ids; cpu++) {
2019 const struct ip_conntrack_stat *st;
2020
2021 if (!cpu_possible(cpu))
2022 continue;
2023
2024 st = per_cpu_ptr(net->ct.stat, cpu);
2025 if (ctnetlink_ct_stat_cpu_fill_info(skb,
15e47304 2026 NETLINK_CB(cb->skb).portid,
392025f8
PNA
2027 cb->nlh->nlmsg_seq,
2028 cpu, st) < 0)
2029 break;
2030 }
2031 cb->args[0] = cpu;
2032
2033 return skb->len;
2034}
2035
7b8002a1
PNA
2036static int ctnetlink_stat_ct_cpu(struct net *net, struct sock *ctnl,
2037 struct sk_buff *skb,
2038 const struct nlmsghdr *nlh,
2039 const struct nlattr * const cda[])
392025f8
PNA
2040{
2041 if (nlh->nlmsg_flags & NLM_F_DUMP) {
2042 struct netlink_dump_control c = {
2043 .dump = ctnetlink_ct_stat_cpu_dump,
2044 };
2045 return netlink_dump_start(ctnl, skb, nlh, &c);
2046 }
2047
2048 return 0;
2049}
2050
2051static int
15e47304 2052ctnetlink_stat_ct_fill_info(struct sk_buff *skb, u32 portid, u32 seq, u32 type,
392025f8
PNA
2053 struct net *net)
2054{
2055 struct nlmsghdr *nlh;
2056 struct nfgenmsg *nfmsg;
15e47304 2057 unsigned int flags = portid ? NLM_F_MULTI : 0, event;
392025f8
PNA
2058 unsigned int nr_conntracks = atomic_read(&net->ct.count);
2059
2060 event = (NFNL_SUBSYS_CTNETLINK << 8 | IPCTNL_MSG_CT_GET_STATS);
15e47304 2061 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*nfmsg), flags);
392025f8
PNA
2062 if (nlh == NULL)
2063 goto nlmsg_failure;
2064
2065 nfmsg = nlmsg_data(nlh);
2066 nfmsg->nfgen_family = AF_UNSPEC;
2067 nfmsg->version = NFNETLINK_V0;
2068 nfmsg->res_id = 0;
2069
2070 if (nla_put_be32(skb, CTA_STATS_GLOBAL_ENTRIES, htonl(nr_conntracks)))
2071 goto nla_put_failure;
2072
2073 nlmsg_end(skb, nlh);
2074 return skb->len;
2075
2076nla_put_failure:
2077nlmsg_failure:
2078 nlmsg_cancel(skb, nlh);
2079 return -1;
2080}
2081
7b8002a1
PNA
2082static int ctnetlink_stat_ct(struct net *net, struct sock *ctnl,
2083 struct sk_buff *skb, const struct nlmsghdr *nlh,
2084 const struct nlattr * const cda[])
392025f8
PNA
2085{
2086 struct sk_buff *skb2;
2087 int err;
2088
2089 skb2 = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
2090 if (skb2 == NULL)
2091 return -ENOMEM;
2092
15e47304 2093 err = ctnetlink_stat_ct_fill_info(skb2, NETLINK_CB(skb).portid,
392025f8
PNA
2094 nlh->nlmsg_seq,
2095 NFNL_MSG_TYPE(nlh->nlmsg_type),
2096 sock_net(skb->sk));
2097 if (err <= 0)
2098 goto free;
2099
15e47304 2100 err = netlink_unicast(ctnl, skb2, NETLINK_CB(skb).portid, MSG_DONTWAIT);
392025f8
PNA
2101 if (err < 0)
2102 goto out;
2103
2104 return 0;
2105
2106free:
2107 kfree_skb(skb2);
2108out:
2109 /* this avoids a loop in nfnetlink. */
2110 return err == -EAGAIN ? -ENOBUFS : err;
2111}
2112
bd077937
PNA
2113static const struct nla_policy exp_nla_policy[CTA_EXPECT_MAX+1] = {
2114 [CTA_EXPECT_MASTER] = { .type = NLA_NESTED },
2115 [CTA_EXPECT_TUPLE] = { .type = NLA_NESTED },
2116 [CTA_EXPECT_MASK] = { .type = NLA_NESTED },
2117 [CTA_EXPECT_TIMEOUT] = { .type = NLA_U32 },
2118 [CTA_EXPECT_ID] = { .type = NLA_U32 },
2119 [CTA_EXPECT_HELP_NAME] = { .type = NLA_NUL_STRING,
2120 .len = NF_CT_HELPER_NAME_LEN - 1 },
2121 [CTA_EXPECT_ZONE] = { .type = NLA_U16 },
2122 [CTA_EXPECT_FLAGS] = { .type = NLA_U32 },
2123 [CTA_EXPECT_CLASS] = { .type = NLA_U32 },
2124 [CTA_EXPECT_NAT] = { .type = NLA_NESTED },
2125 [CTA_EXPECT_FN] = { .type = NLA_NUL_STRING },
2126};
2127
2128static struct nf_conntrack_expect *
2129ctnetlink_alloc_expect(const struct nlattr *const cda[], struct nf_conn *ct,
2130 struct nf_conntrack_helper *helper,
2131 struct nf_conntrack_tuple *tuple,
2132 struct nf_conntrack_tuple *mask);
2133
83f3e94d 2134#ifdef CONFIG_NETFILTER_NETLINK_GLUE_CT
9cb01766 2135static size_t
a4b4766c 2136ctnetlink_glue_build_size(const struct nf_conn *ct)
9cb01766
PNA
2137{
2138 return 3 * nla_total_size(0) /* CTA_TUPLE_ORIG|REPL|MASTER */
2139 + 3 * nla_total_size(0) /* CTA_TUPLE_IP */
2140 + 3 * nla_total_size(0) /* CTA_TUPLE_PROTO */
2141 + 3 * nla_total_size(sizeof(u_int8_t)) /* CTA_PROTO_NUM */
2142 + nla_total_size(sizeof(u_int32_t)) /* CTA_ID */
2143 + nla_total_size(sizeof(u_int32_t)) /* CTA_STATUS */
2144 + nla_total_size(sizeof(u_int32_t)) /* CTA_TIMEOUT */
2145 + nla_total_size(0) /* CTA_PROTOINFO */
2146 + nla_total_size(0) /* CTA_HELP */
2147 + nla_total_size(NF_CT_HELPER_NAME_LEN) /* CTA_HELP_NAME */
2148 + ctnetlink_secctx_size(ct)
2149#ifdef CONFIG_NF_NAT_NEEDED
2150 + 2 * nla_total_size(0) /* CTA_NAT_SEQ_ADJ_ORIG|REPL */
2151 + 6 * nla_total_size(sizeof(u_int32_t)) /* CTA_NAT_SEQ_OFFSET */
2152#endif
2153#ifdef CONFIG_NF_CONNTRACK_MARK
2154 + nla_total_size(sizeof(u_int32_t)) /* CTA_MARK */
4a001068
KM
2155#endif
2156#ifdef CONFIG_NF_CONNTRACK_ZONES
deedb590 2157 + nla_total_size(sizeof(u_int16_t)) /* CTA_ZONE|CTA_TUPLE_ZONE */
9cb01766
PNA
2158#endif
2159 + ctnetlink_proto_size(ct)
2160 ;
2161}
2162
224a0597 2163static struct nf_conn *ctnetlink_glue_get_ct(const struct sk_buff *skb,
a4b4766c 2164 enum ip_conntrack_info *ctinfo)
b7bd1809
PNA
2165{
2166 struct nf_conn *ct;
2167
2168 ct = nf_ct_get(skb, ctinfo);
2169 if (ct && nf_ct_is_untracked(ct))
2170 ct = NULL;
2171
2172 return ct;
2173}
2174
a4b4766c 2175static int __ctnetlink_glue_build(struct sk_buff *skb, struct nf_conn *ct)
9cb01766 2176{
308ac914 2177 const struct nf_conntrack_zone *zone;
9cb01766
PNA
2178 struct nlattr *nest_parms;
2179
2180 rcu_read_lock();
deedb590
DB
2181 zone = nf_ct_zone(ct);
2182
9cb01766
PNA
2183 nest_parms = nla_nest_start(skb, CTA_TUPLE_ORIG | NLA_F_NESTED);
2184 if (!nest_parms)
2185 goto nla_put_failure;
2186 if (ctnetlink_dump_tuples(skb, nf_ct_tuple(ct, IP_CT_DIR_ORIGINAL)) < 0)
2187 goto nla_put_failure;
deedb590
DB
2188 if (ctnetlink_dump_zone_id(skb, CTA_TUPLE_ZONE, zone,
2189 NF_CT_ZONE_DIR_ORIG) < 0)
2190 goto nla_put_failure;
9cb01766
PNA
2191 nla_nest_end(skb, nest_parms);
2192
2193 nest_parms = nla_nest_start(skb, CTA_TUPLE_REPLY | NLA_F_NESTED);
2194 if (!nest_parms)
2195 goto nla_put_failure;
2196 if (ctnetlink_dump_tuples(skb, nf_ct_tuple(ct, IP_CT_DIR_REPLY)) < 0)
2197 goto nla_put_failure;
deedb590
DB
2198 if (ctnetlink_dump_zone_id(skb, CTA_TUPLE_ZONE, zone,
2199 NF_CT_ZONE_DIR_REPL) < 0)
2200 goto nla_put_failure;
9cb01766
PNA
2201 nla_nest_end(skb, nest_parms);
2202
deedb590
DB
2203 if (ctnetlink_dump_zone_id(skb, CTA_ZONE, zone,
2204 NF_CT_DEFAULT_ZONE_DIR) < 0)
308ac914 2205 goto nla_put_failure;
9cb01766
PNA
2206
2207 if (ctnetlink_dump_id(skb, ct) < 0)
2208 goto nla_put_failure;
2209
2210 if (ctnetlink_dump_status(skb, ct) < 0)
2211 goto nla_put_failure;
2212
2213 if (ctnetlink_dump_timeout(skb, ct) < 0)
2214 goto nla_put_failure;
2215
2216 if (ctnetlink_dump_protoinfo(skb, ct) < 0)
2217 goto nla_put_failure;
2218
2219 if (ctnetlink_dump_helpinfo(skb, ct) < 0)
2220 goto nla_put_failure;
2221
2222#ifdef CONFIG_NF_CONNTRACK_SECMARK
2223 if (ct->secmark && ctnetlink_dump_secctx(skb, ct) < 0)
2224 goto nla_put_failure;
2225#endif
2226 if (ct->master && ctnetlink_dump_master(skb, ct) < 0)
2227 goto nla_put_failure;
2228
2229 if ((ct->status & IPS_SEQ_ADJUST) &&
41d73ec0 2230 ctnetlink_dump_ct_seq_adj(skb, ct) < 0)
9cb01766
PNA
2231 goto nla_put_failure;
2232
2233#ifdef CONFIG_NF_CONNTRACK_MARK
2234 if (ct->mark && ctnetlink_dump_mark(skb, ct) < 0)
2235 goto nla_put_failure;
2236#endif
0ceabd83
FW
2237 if (ctnetlink_dump_labels(skb, ct) < 0)
2238 goto nla_put_failure;
9cb01766
PNA
2239 rcu_read_unlock();
2240 return 0;
2241
2242nla_put_failure:
2243 rcu_read_unlock();
2244 return -ENOSPC;
2245}
2246
b7bd1809 2247static int
a4b4766c
KM
2248ctnetlink_glue_build(struct sk_buff *skb, struct nf_conn *ct,
2249 enum ip_conntrack_info ctinfo,
2250 u_int16_t ct_attr, u_int16_t ct_info_attr)
b7bd1809
PNA
2251{
2252 struct nlattr *nest_parms;
2253
2254 nest_parms = nla_nest_start(skb, ct_attr | NLA_F_NESTED);
2255 if (!nest_parms)
2256 goto nla_put_failure;
2257
a4b4766c 2258 if (__ctnetlink_glue_build(skb, ct) < 0)
b7bd1809
PNA
2259 goto nla_put_failure;
2260
2261 nla_nest_end(skb, nest_parms);
2262
2263 if (nla_put_be32(skb, ct_info_attr, htonl(ctinfo)))
2264 goto nla_put_failure;
2265
2266 return 0;
2267
2268nla_put_failure:
2269 return -ENOSPC;
2270}
2271
9cb01766 2272static int
a4b4766c 2273ctnetlink_glue_parse_ct(const struct nlattr *cda[], struct nf_conn *ct)
9cb01766
PNA
2274{
2275 int err;
2276
2277 if (cda[CTA_TIMEOUT]) {
2278 err = ctnetlink_change_timeout(ct, cda);
2279 if (err < 0)
2280 return err;
2281 }
2282 if (cda[CTA_STATUS]) {
2283 err = ctnetlink_change_status(ct, cda);
2284 if (err < 0)
2285 return err;
2286 }
2287 if (cda[CTA_HELP]) {
2288 err = ctnetlink_change_helper(ct, cda);
2289 if (err < 0)
2290 return err;
2291 }
9b21f6a9
FW
2292 if (cda[CTA_LABELS]) {
2293 err = ctnetlink_attach_labels(ct, cda);
2294 if (err < 0)
2295 return err;
2296 }
9cb01766 2297#if defined(CONFIG_NF_CONNTRACK_MARK)
534473c6
FW
2298 if (cda[CTA_MARK]) {
2299 u32 mask = 0, mark, newmark;
2300 if (cda[CTA_MARK_MASK])
2301 mask = ~ntohl(nla_get_be32(cda[CTA_MARK_MASK]));
2302
2303 mark = ntohl(nla_get_be32(cda[CTA_MARK]));
2304 newmark = (ct->mark & mask) ^ mark;
2305 if (newmark != ct->mark)
2306 ct->mark = newmark;
2307 }
9cb01766
PNA
2308#endif
2309 return 0;
2310}
2311
2312static int
a4b4766c 2313ctnetlink_glue_parse(const struct nlattr *attr, struct nf_conn *ct)
9cb01766
PNA
2314{
2315 struct nlattr *cda[CTA_MAX+1];
68e035c9 2316 int ret;
9cb01766 2317
130ffbc2
DB
2318 ret = nla_parse_nested(cda, CTA_MAX, attr, ct_nla_policy);
2319 if (ret < 0)
2320 return ret;
9cb01766 2321
ca7433df 2322 spin_lock_bh(&nf_conntrack_expect_lock);
a4b4766c 2323 ret = ctnetlink_glue_parse_ct((const struct nlattr **)cda, ct);
ca7433df 2324 spin_unlock_bh(&nf_conntrack_expect_lock);
68e035c9
PNA
2325
2326 return ret;
9cb01766
PNA
2327}
2328
a4b4766c
KM
2329static int ctnetlink_glue_exp_parse(const struct nlattr * const *cda,
2330 const struct nf_conn *ct,
2331 struct nf_conntrack_tuple *tuple,
2332 struct nf_conntrack_tuple *mask)
bd077937
PNA
2333{
2334 int err;
2335
2336 err = ctnetlink_parse_tuple(cda, tuple, CTA_EXPECT_TUPLE,
deedb590 2337 nf_ct_l3num(ct), NULL);
bd077937
PNA
2338 if (err < 0)
2339 return err;
2340
2341 return ctnetlink_parse_tuple(cda, mask, CTA_EXPECT_MASK,
deedb590 2342 nf_ct_l3num(ct), NULL);
bd077937
PNA
2343}
2344
2345static int
a4b4766c
KM
2346ctnetlink_glue_attach_expect(const struct nlattr *attr, struct nf_conn *ct,
2347 u32 portid, u32 report)
bd077937
PNA
2348{
2349 struct nlattr *cda[CTA_EXPECT_MAX+1];
2350 struct nf_conntrack_tuple tuple, mask;
b7e092c0 2351 struct nf_conntrack_helper *helper = NULL;
bd077937
PNA
2352 struct nf_conntrack_expect *exp;
2353 int err;
2354
2355 err = nla_parse_nested(cda, CTA_EXPECT_MAX, attr, exp_nla_policy);
2356 if (err < 0)
2357 return err;
2358
a4b4766c
KM
2359 err = ctnetlink_glue_exp_parse((const struct nlattr * const *)cda,
2360 ct, &tuple, &mask);
bd077937
PNA
2361 if (err < 0)
2362 return err;
2363
2364 if (cda[CTA_EXPECT_HELP_NAME]) {
2365 const char *helpname = nla_data(cda[CTA_EXPECT_HELP_NAME]);
2366
2367 helper = __nf_conntrack_helper_find(helpname, nf_ct_l3num(ct),
2368 nf_ct_protonum(ct));
2369 if (helper == NULL)
2370 return -EOPNOTSUPP;
2371 }
2372
2373 exp = ctnetlink_alloc_expect((const struct nlattr * const *)cda, ct,
2374 helper, &tuple, &mask);
2375 if (IS_ERR(exp))
2376 return PTR_ERR(exp);
2377
2378 err = nf_ct_expect_related_report(exp, portid, report);
b18bcb00
LZ
2379 nf_ct_expect_put(exp);
2380 return err;
bd077937
PNA
2381}
2382
a4b4766c
KM
2383static void ctnetlink_glue_seqadj(struct sk_buff *skb, struct nf_conn *ct,
2384 enum ip_conntrack_info ctinfo, int diff)
b7bd1809
PNA
2385{
2386 if (!(ct->status & IPS_NAT_MASK))
2387 return;
2388
2389 nf_ct_tcp_seqadj_set(skb, ct, ctinfo, diff);
2390}
2391
a4b4766c
KM
2392static struct nfnl_ct_hook ctnetlink_glue_hook = {
2393 .get_ct = ctnetlink_glue_get_ct,
2394 .build_size = ctnetlink_glue_build_size,
2395 .build = ctnetlink_glue_build,
2396 .parse = ctnetlink_glue_parse,
2397 .attach_expect = ctnetlink_glue_attach_expect,
2398 .seq_adjust = ctnetlink_glue_seqadj,
9cb01766 2399};
83f3e94d 2400#endif /* CONFIG_NETFILTER_NETLINK_GLUE_CT */
9cb01766 2401
601e68e1
YH
2402/***********************************************************************
2403 * EXPECT
2404 ***********************************************************************/
c1d10adb 2405
4054ff45
PNA
2406static int ctnetlink_exp_dump_tuple(struct sk_buff *skb,
2407 const struct nf_conntrack_tuple *tuple,
2408 enum ctattr_expect type)
c1d10adb 2409{
df6fb868 2410 struct nlattr *nest_parms;
601e68e1 2411
df6fb868
PM
2412 nest_parms = nla_nest_start(skb, type | NLA_F_NESTED);
2413 if (!nest_parms)
2414 goto nla_put_failure;
c1d10adb 2415 if (ctnetlink_dump_tuples(skb, tuple) < 0)
df6fb868
PM
2416 goto nla_put_failure;
2417 nla_nest_end(skb, nest_parms);
c1d10adb
PNA
2418
2419 return 0;
2420
df6fb868 2421nla_put_failure:
c1d10adb 2422 return -1;
601e68e1 2423}
c1d10adb 2424
4054ff45
PNA
2425static int ctnetlink_exp_dump_mask(struct sk_buff *skb,
2426 const struct nf_conntrack_tuple *tuple,
2427 const struct nf_conntrack_tuple_mask *mask)
1cde6436
PNA
2428{
2429 int ret;
2430 struct nf_conntrack_l3proto *l3proto;
605dcad6 2431 struct nf_conntrack_l4proto *l4proto;
d4156e8c 2432 struct nf_conntrack_tuple m;
df6fb868 2433 struct nlattr *nest_parms;
d4156e8c
PM
2434
2435 memset(&m, 0xFF, sizeof(m));
d4156e8c 2436 memcpy(&m.src.u3, &mask->src.u3, sizeof(m.src.u3));
e578756c
PM
2437 m.src.u.all = mask->src.u.all;
2438 m.dst.protonum = tuple->dst.protonum;
d4156e8c 2439
df6fb868
PM
2440 nest_parms = nla_nest_start(skb, CTA_EXPECT_MASK | NLA_F_NESTED);
2441 if (!nest_parms)
2442 goto nla_put_failure;
1cde6436 2443
3b988ece 2444 rcu_read_lock();
528a3a6f 2445 l3proto = __nf_ct_l3proto_find(tuple->src.l3num);
d4156e8c 2446 ret = ctnetlink_dump_tuples_ip(skb, &m, l3proto);
3b988ece
HS
2447 if (ret >= 0) {
2448 l4proto = __nf_ct_l4proto_find(tuple->src.l3num,
2449 tuple->dst.protonum);
d4156e8c 2450 ret = ctnetlink_dump_tuples_proto(skb, &m, l4proto);
3b988ece
HS
2451 }
2452 rcu_read_unlock();
2453
1cde6436 2454 if (unlikely(ret < 0))
df6fb868 2455 goto nla_put_failure;
1cde6436 2456
df6fb868 2457 nla_nest_end(skb, nest_parms);
1cde6436
PNA
2458
2459 return 0;
2460
df6fb868 2461nla_put_failure:
1cde6436
PNA
2462 return -1;
2463}
2464
c7232c99
PM
2465static const union nf_inet_addr any_addr;
2466
bb5cf80e 2467static int
c1d10adb 2468ctnetlink_exp_dump_expect(struct sk_buff *skb,
601e68e1 2469 const struct nf_conntrack_expect *exp)
c1d10adb
PNA
2470{
2471 struct nf_conn *master = exp->master;
c1216382 2472 long timeout = ((long)exp->timeout.expires - (long)jiffies) / HZ;
bc01befd 2473 struct nf_conn_help *help;
076a0ca0
PNA
2474#ifdef CONFIG_NF_NAT_NEEDED
2475 struct nlattr *nest_parms;
2476 struct nf_conntrack_tuple nat_tuple = {};
2477#endif
544d5c7d
PNA
2478 struct nf_ct_helper_expectfn *expfn;
2479
d978e5da
PM
2480 if (timeout < 0)
2481 timeout = 0;
c1d10adb
PNA
2482
2483 if (ctnetlink_exp_dump_tuple(skb, &exp->tuple, CTA_EXPECT_TUPLE) < 0)
df6fb868 2484 goto nla_put_failure;
1cde6436 2485 if (ctnetlink_exp_dump_mask(skb, &exp->tuple, &exp->mask) < 0)
df6fb868 2486 goto nla_put_failure;
c1d10adb
PNA
2487 if (ctnetlink_exp_dump_tuple(skb,
2488 &master->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
2489 CTA_EXPECT_MASTER) < 0)
df6fb868 2490 goto nla_put_failure;
601e68e1 2491
076a0ca0 2492#ifdef CONFIG_NF_NAT_NEEDED
c7232c99
PM
2493 if (!nf_inet_addr_cmp(&exp->saved_addr, &any_addr) ||
2494 exp->saved_proto.all) {
076a0ca0
PNA
2495 nest_parms = nla_nest_start(skb, CTA_EXPECT_NAT | NLA_F_NESTED);
2496 if (!nest_parms)
2497 goto nla_put_failure;
2498
cc1eb431
DM
2499 if (nla_put_be32(skb, CTA_EXPECT_NAT_DIR, htonl(exp->dir)))
2500 goto nla_put_failure;
076a0ca0
PNA
2501
2502 nat_tuple.src.l3num = nf_ct_l3num(master);
c7232c99 2503 nat_tuple.src.u3 = exp->saved_addr;
076a0ca0
PNA
2504 nat_tuple.dst.protonum = nf_ct_protonum(master);
2505 nat_tuple.src.u = exp->saved_proto;
2506
2507 if (ctnetlink_exp_dump_tuple(skb, &nat_tuple,
2508 CTA_EXPECT_NAT_TUPLE) < 0)
2509 goto nla_put_failure;
2510 nla_nest_end(skb, nest_parms);
2511 }
2512#endif
cc1eb431
DM
2513 if (nla_put_be32(skb, CTA_EXPECT_TIMEOUT, htonl(timeout)) ||
2514 nla_put_be32(skb, CTA_EXPECT_ID, htonl((unsigned long)exp)) ||
2515 nla_put_be32(skb, CTA_EXPECT_FLAGS, htonl(exp->flags)) ||
2516 nla_put_be32(skb, CTA_EXPECT_CLASS, htonl(exp->class)))
2517 goto nla_put_failure;
bc01befd
PNA
2518 help = nfct_help(master);
2519 if (help) {
2520 struct nf_conntrack_helper *helper;
2521
2522 helper = rcu_dereference(help->helper);
cc1eb431
DM
2523 if (helper &&
2524 nla_put_string(skb, CTA_EXPECT_HELP_NAME, helper->name))
2525 goto nla_put_failure;
bc01befd 2526 }
544d5c7d 2527 expfn = nf_ct_helper_expectfn_find_by_symbol(exp->expectfn);
cc1eb431
DM
2528 if (expfn != NULL &&
2529 nla_put_string(skb, CTA_EXPECT_FN, expfn->name))
2530 goto nla_put_failure;
c1d10adb
PNA
2531
2532 return 0;
601e68e1 2533
df6fb868 2534nla_put_failure:
c1d10adb
PNA
2535 return -1;
2536}
2537
2538static int
15e47304 2539ctnetlink_exp_fill_info(struct sk_buff *skb, u32 portid, u32 seq,
8b0a231d 2540 int event, const struct nf_conntrack_expect *exp)
c1d10adb
PNA
2541{
2542 struct nlmsghdr *nlh;
2543 struct nfgenmsg *nfmsg;
15e47304 2544 unsigned int flags = portid ? NLM_F_MULTI : 0;
c1d10adb
PNA
2545
2546 event |= NFNL_SUBSYS_CTNETLINK_EXP << 8;
15e47304 2547 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*nfmsg), flags);
96bcf938
PNA
2548 if (nlh == NULL)
2549 goto nlmsg_failure;
c1d10adb 2550
96bcf938 2551 nfmsg = nlmsg_data(nlh);
c1d10adb
PNA
2552 nfmsg->nfgen_family = exp->tuple.src.l3num;
2553 nfmsg->version = NFNETLINK_V0;
2554 nfmsg->res_id = 0;
2555
2556 if (ctnetlink_exp_dump_expect(skb, exp) < 0)
df6fb868 2557 goto nla_put_failure;
c1d10adb 2558
96bcf938 2559 nlmsg_end(skb, nlh);
c1d10adb
PNA
2560 return skb->len;
2561
2562nlmsg_failure:
df6fb868 2563nla_put_failure:
96bcf938 2564 nlmsg_cancel(skb, nlh);
c1d10adb
PNA
2565 return -1;
2566}
2567
2568#ifdef CONFIG_NF_CONNTRACK_EVENTS
e34d5c1a
PNA
2569static int
2570ctnetlink_expect_event(unsigned int events, struct nf_exp_event *item)
c1d10adb 2571{
9592a5c0
AD
2572 struct nf_conntrack_expect *exp = item->exp;
2573 struct net *net = nf_ct_exp_net(exp);
c1d10adb
PNA
2574 struct nlmsghdr *nlh;
2575 struct nfgenmsg *nfmsg;
c1d10adb 2576 struct sk_buff *skb;
ebbf41df 2577 unsigned int type, group;
c1d10adb
PNA
2578 int flags = 0;
2579
ebbf41df
PNA
2580 if (events & (1 << IPEXP_DESTROY)) {
2581 type = IPCTNL_MSG_EXP_DELETE;
2582 group = NFNLGRP_CONNTRACK_EXP_DESTROY;
2583 } else if (events & (1 << IPEXP_NEW)) {
c1d10adb
PNA
2584 type = IPCTNL_MSG_EXP_NEW;
2585 flags = NLM_F_CREATE|NLM_F_EXCL;
ebbf41df 2586 group = NFNLGRP_CONNTRACK_EXP_NEW;
c1d10adb 2587 } else
e34d5c1a 2588 return 0;
c1d10adb 2589
ebbf41df 2590 if (!item->report && !nfnetlink_has_listeners(net, group))
e34d5c1a 2591 return 0;
b3a27bfb 2592
96bcf938
PNA
2593 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
2594 if (skb == NULL)
150ace0d 2595 goto errout;
c1d10adb 2596
b633ad5f 2597 type |= NFNL_SUBSYS_CTNETLINK_EXP << 8;
15e47304 2598 nlh = nlmsg_put(skb, item->portid, 0, type, sizeof(*nfmsg), flags);
96bcf938
PNA
2599 if (nlh == NULL)
2600 goto nlmsg_failure;
c1d10adb 2601
96bcf938 2602 nfmsg = nlmsg_data(nlh);
c1d10adb
PNA
2603 nfmsg->nfgen_family = exp->tuple.src.l3num;
2604 nfmsg->version = NFNETLINK_V0;
2605 nfmsg->res_id = 0;
2606
528a3a6f 2607 rcu_read_lock();
c1d10adb 2608 if (ctnetlink_exp_dump_expect(skb, exp) < 0)
df6fb868 2609 goto nla_put_failure;
528a3a6f 2610 rcu_read_unlock();
c1d10adb 2611
96bcf938 2612 nlmsg_end(skb, nlh);
15e47304 2613 nfnetlink_send(skb, net, item->portid, group, item->report, GFP_ATOMIC);
e34d5c1a 2614 return 0;
c1d10adb 2615
df6fb868 2616nla_put_failure:
528a3a6f 2617 rcu_read_unlock();
96bcf938 2618 nlmsg_cancel(skb, nlh);
528a3a6f 2619nlmsg_failure:
c1d10adb 2620 kfree_skb(skb);
150ace0d 2621errout:
9592a5c0 2622 nfnetlink_set_err(net, 0, 0, -ENOBUFS);
e34d5c1a 2623 return 0;
c1d10adb
PNA
2624}
2625#endif
cf6994c2
PM
2626static int ctnetlink_exp_done(struct netlink_callback *cb)
2627{
31f15875
PM
2628 if (cb->args[1])
2629 nf_ct_expect_put((struct nf_conntrack_expect *)cb->args[1]);
cf6994c2
PM
2630 return 0;
2631}
c1d10adb
PNA
2632
2633static int
2634ctnetlink_exp_dump_table(struct sk_buff *skb, struct netlink_callback *cb)
2635{
9592a5c0 2636 struct net *net = sock_net(skb->sk);
cf6994c2 2637 struct nf_conntrack_expect *exp, *last;
96bcf938 2638 struct nfgenmsg *nfmsg = nlmsg_data(cb->nlh);
87711cb8 2639 u_int8_t l3proto = nfmsg->nfgen_family;
c1d10adb 2640
7d0742da 2641 rcu_read_lock();
31f15875
PM
2642 last = (struct nf_conntrack_expect *)cb->args[1];
2643 for (; cb->args[0] < nf_ct_expect_hsize; cb->args[0]++) {
cf6994c2 2644restart:
0a93aaed 2645 hlist_for_each_entry(exp, &nf_ct_expect_hash[cb->args[0]],
31f15875
PM
2646 hnode) {
2647 if (l3proto && exp->tuple.src.l3num != l3proto)
cf6994c2 2648 continue;
03d7dc5c
FW
2649
2650 if (!net_eq(nf_ct_net(exp->master), net))
2651 continue;
2652
31f15875
PM
2653 if (cb->args[1]) {
2654 if (exp != last)
2655 continue;
2656 cb->args[1] = 0;
2657 }
8b0a231d 2658 if (ctnetlink_exp_fill_info(skb,
15e47304 2659 NETLINK_CB(cb->skb).portid,
31f15875
PM
2660 cb->nlh->nlmsg_seq,
2661 IPCTNL_MSG_EXP_NEW,
8b0a231d 2662 exp) < 0) {
7d0742da
PM
2663 if (!atomic_inc_not_zero(&exp->use))
2664 continue;
31f15875
PM
2665 cb->args[1] = (unsigned long)exp;
2666 goto out;
2667 }
cf6994c2 2668 }
31f15875
PM
2669 if (cb->args[1]) {
2670 cb->args[1] = 0;
2671 goto restart;
cf6994c2
PM
2672 }
2673 }
601e68e1 2674out:
7d0742da 2675 rcu_read_unlock();
cf6994c2
PM
2676 if (last)
2677 nf_ct_expect_put(last);
c1d10adb 2678
c1d10adb
PNA
2679 return skb->len;
2680}
2681
e844a928
PNA
2682static int
2683ctnetlink_exp_ct_dump_table(struct sk_buff *skb, struct netlink_callback *cb)
2684{
2685 struct nf_conntrack_expect *exp, *last;
2686 struct nfgenmsg *nfmsg = nlmsg_data(cb->nlh);
2687 struct nf_conn *ct = cb->data;
2688 struct nf_conn_help *help = nfct_help(ct);
2689 u_int8_t l3proto = nfmsg->nfgen_family;
2690
2691 if (cb->args[0])
2692 return 0;
2693
2694 rcu_read_lock();
2695 last = (struct nf_conntrack_expect *)cb->args[1];
2696restart:
2697 hlist_for_each_entry(exp, &help->expectations, lnode) {
2698 if (l3proto && exp->tuple.src.l3num != l3proto)
2699 continue;
2700 if (cb->args[1]) {
2701 if (exp != last)
2702 continue;
2703 cb->args[1] = 0;
2704 }
2705 if (ctnetlink_exp_fill_info(skb, NETLINK_CB(cb->skb).portid,
2706 cb->nlh->nlmsg_seq,
2707 IPCTNL_MSG_EXP_NEW,
2708 exp) < 0) {
2709 if (!atomic_inc_not_zero(&exp->use))
2710 continue;
2711 cb->args[1] = (unsigned long)exp;
2712 goto out;
2713 }
2714 }
2715 if (cb->args[1]) {
2716 cb->args[1] = 0;
2717 goto restart;
2718 }
2719 cb->args[0] = 1;
2720out:
2721 rcu_read_unlock();
2722 if (last)
2723 nf_ct_expect_put(last);
2724
2725 return skb->len;
2726}
2727
7b8002a1
PNA
2728static int ctnetlink_dump_exp_ct(struct net *net, struct sock *ctnl,
2729 struct sk_buff *skb,
e844a928
PNA
2730 const struct nlmsghdr *nlh,
2731 const struct nlattr * const cda[])
2732{
2733 int err;
e844a928
PNA
2734 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
2735 u_int8_t u3 = nfmsg->nfgen_family;
2736 struct nf_conntrack_tuple tuple;
2737 struct nf_conntrack_tuple_hash *h;
2738 struct nf_conn *ct;
308ac914 2739 struct nf_conntrack_zone zone;
e844a928
PNA
2740 struct netlink_dump_control c = {
2741 .dump = ctnetlink_exp_ct_dump_table,
2742 .done = ctnetlink_exp_done,
2743 };
2744
deedb590
DB
2745 err = ctnetlink_parse_tuple(cda, &tuple, CTA_EXPECT_MASTER,
2746 u3, NULL);
e844a928
PNA
2747 if (err < 0)
2748 return err;
2749
308ac914
DB
2750 err = ctnetlink_parse_zone(cda[CTA_EXPECT_ZONE], &zone);
2751 if (err < 0)
2752 return err;
e844a928 2753
308ac914 2754 h = nf_conntrack_find_get(net, &zone, &tuple);
e844a928
PNA
2755 if (!h)
2756 return -ENOENT;
2757
2758 ct = nf_ct_tuplehash_to_ctrack(h);
2759 c.data = ct;
2760
2761 err = netlink_dump_start(ctnl, skb, nlh, &c);
2762 nf_ct_put(ct);
2763
2764 return err;
2765}
2766
7b8002a1
PNA
2767static int ctnetlink_get_expect(struct net *net, struct sock *ctnl,
2768 struct sk_buff *skb, const struct nlmsghdr *nlh,
2769 const struct nlattr * const cda[])
c1d10adb
PNA
2770{
2771 struct nf_conntrack_tuple tuple;
2772 struct nf_conntrack_expect *exp;
2773 struct sk_buff *skb2;
96bcf938 2774 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
c1d10adb 2775 u_int8_t u3 = nfmsg->nfgen_family;
308ac914 2776 struct nf_conntrack_zone zone;
ef00f89f 2777 int err;
c1d10adb 2778
b8f3ab42 2779 if (nlh->nlmsg_flags & NLM_F_DUMP) {
e844a928 2780 if (cda[CTA_EXPECT_MASTER])
7b8002a1 2781 return ctnetlink_dump_exp_ct(net, ctnl, skb, nlh, cda);
e844a928
PNA
2782 else {
2783 struct netlink_dump_control c = {
2784 .dump = ctnetlink_exp_dump_table,
2785 .done = ctnetlink_exp_done,
2786 };
2787 return netlink_dump_start(ctnl, skb, nlh, &c);
2788 }
c1d10adb
PNA
2789 }
2790
ef00f89f
PM
2791 err = ctnetlink_parse_zone(cda[CTA_EXPECT_ZONE], &zone);
2792 if (err < 0)
2793 return err;
2794
35dba1d7 2795 if (cda[CTA_EXPECT_TUPLE])
deedb590
DB
2796 err = ctnetlink_parse_tuple(cda, &tuple, CTA_EXPECT_TUPLE,
2797 u3, NULL);
35dba1d7 2798 else if (cda[CTA_EXPECT_MASTER])
deedb590
DB
2799 err = ctnetlink_parse_tuple(cda, &tuple, CTA_EXPECT_MASTER,
2800 u3, NULL);
c1d10adb
PNA
2801 else
2802 return -EINVAL;
2803
2804 if (err < 0)
2805 return err;
2806
308ac914 2807 exp = nf_ct_expect_find_get(net, &zone, &tuple);
c1d10adb
PNA
2808 if (!exp)
2809 return -ENOENT;
2810
df6fb868 2811 if (cda[CTA_EXPECT_ID]) {
77236b6e 2812 __be32 id = nla_get_be32(cda[CTA_EXPECT_ID]);
35832402 2813 if (ntohl(id) != (u32)(unsigned long)exp) {
6823645d 2814 nf_ct_expect_put(exp);
c1d10adb
PNA
2815 return -ENOENT;
2816 }
601e68e1 2817 }
c1d10adb
PNA
2818
2819 err = -ENOMEM;
96bcf938 2820 skb2 = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
81378f72
PNA
2821 if (skb2 == NULL) {
2822 nf_ct_expect_put(exp);
c1d10adb 2823 goto out;
81378f72 2824 }
4e9b8269 2825
528a3a6f 2826 rcu_read_lock();
15e47304 2827 err = ctnetlink_exp_fill_info(skb2, NETLINK_CB(skb).portid,
8b0a231d 2828 nlh->nlmsg_seq, IPCTNL_MSG_EXP_NEW, exp);
528a3a6f 2829 rcu_read_unlock();
81378f72 2830 nf_ct_expect_put(exp);
c1d10adb
PNA
2831 if (err <= 0)
2832 goto free;
2833
15e47304 2834 err = netlink_unicast(ctnl, skb2, NETLINK_CB(skb).portid, MSG_DONTWAIT);
81378f72
PNA
2835 if (err < 0)
2836 goto out;
c1d10adb 2837
81378f72 2838 return 0;
c1d10adb
PNA
2839
2840free:
2841 kfree_skb(skb2);
2842out:
81378f72
PNA
2843 /* this avoids a loop in nfnetlink. */
2844 return err == -EAGAIN ? -ENOBUFS : err;
c1d10adb
PNA
2845}
2846
7b8002a1
PNA
2847static int ctnetlink_del_expect(struct net *net, struct sock *ctnl,
2848 struct sk_buff *skb, const struct nlmsghdr *nlh,
2849 const struct nlattr * const cda[])
c1d10adb 2850{
31f15875 2851 struct nf_conntrack_expect *exp;
c1d10adb 2852 struct nf_conntrack_tuple tuple;
96bcf938 2853 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
b67bfe0d 2854 struct hlist_node *next;
c1d10adb 2855 u_int8_t u3 = nfmsg->nfgen_family;
308ac914 2856 struct nf_conntrack_zone zone;
31f15875 2857 unsigned int i;
c1d10adb
PNA
2858 int err;
2859
df6fb868 2860 if (cda[CTA_EXPECT_TUPLE]) {
c1d10adb 2861 /* delete a single expect by tuple */
ef00f89f
PM
2862 err = ctnetlink_parse_zone(cda[CTA_EXPECT_ZONE], &zone);
2863 if (err < 0)
2864 return err;
2865
deedb590
DB
2866 err = ctnetlink_parse_tuple(cda, &tuple, CTA_EXPECT_TUPLE,
2867 u3, NULL);
c1d10adb
PNA
2868 if (err < 0)
2869 return err;
2870
2871 /* bump usage count to 2 */
308ac914 2872 exp = nf_ct_expect_find_get(net, &zone, &tuple);
c1d10adb
PNA
2873 if (!exp)
2874 return -ENOENT;
2875
df6fb868 2876 if (cda[CTA_EXPECT_ID]) {
77236b6e 2877 __be32 id = nla_get_be32(cda[CTA_EXPECT_ID]);
35832402 2878 if (ntohl(id) != (u32)(unsigned long)exp) {
6823645d 2879 nf_ct_expect_put(exp);
c1d10adb
PNA
2880 return -ENOENT;
2881 }
2882 }
2883
2884 /* after list removal, usage count == 1 */
ca7433df 2885 spin_lock_bh(&nf_conntrack_expect_lock);
ebbf41df 2886 if (del_timer(&exp->timeout)) {
15e47304 2887 nf_ct_unlink_expect_report(exp, NETLINK_CB(skb).portid,
ebbf41df
PNA
2888 nlmsg_report(nlh));
2889 nf_ct_expect_put(exp);
2890 }
ca7433df 2891 spin_unlock_bh(&nf_conntrack_expect_lock);
601e68e1 2892 /* have to put what we 'get' above.
c1d10adb 2893 * after this line usage count == 0 */
6823645d 2894 nf_ct_expect_put(exp);
df6fb868
PM
2895 } else if (cda[CTA_EXPECT_HELP_NAME]) {
2896 char *name = nla_data(cda[CTA_EXPECT_HELP_NAME]);
31f15875 2897 struct nf_conn_help *m_help;
c1d10adb
PNA
2898
2899 /* delete all expectations for this helper */
ca7433df 2900 spin_lock_bh(&nf_conntrack_expect_lock);
31f15875 2901 for (i = 0; i < nf_ct_expect_hsize; i++) {
b67bfe0d 2902 hlist_for_each_entry_safe(exp, next,
0a93aaed 2903 &nf_ct_expect_hash[i],
31f15875 2904 hnode) {
03d7dc5c
FW
2905
2906 if (!net_eq(nf_ct_exp_net(exp), net))
2907 continue;
2908
31f15875 2909 m_help = nfct_help(exp->master);
794e6871
PM
2910 if (!strcmp(m_help->helper->name, name) &&
2911 del_timer(&exp->timeout)) {
ebbf41df 2912 nf_ct_unlink_expect_report(exp,
15e47304 2913 NETLINK_CB(skb).portid,
ebbf41df 2914 nlmsg_report(nlh));
31f15875
PM
2915 nf_ct_expect_put(exp);
2916 }
c1d10adb
PNA
2917 }
2918 }
ca7433df 2919 spin_unlock_bh(&nf_conntrack_expect_lock);
c1d10adb
PNA
2920 } else {
2921 /* This basically means we have to flush everything*/
ca7433df 2922 spin_lock_bh(&nf_conntrack_expect_lock);
31f15875 2923 for (i = 0; i < nf_ct_expect_hsize; i++) {
b67bfe0d 2924 hlist_for_each_entry_safe(exp, next,
0a93aaed 2925 &nf_ct_expect_hash[i],
31f15875 2926 hnode) {
03d7dc5c
FW
2927
2928 if (!net_eq(nf_ct_exp_net(exp), net))
2929 continue;
2930
31f15875 2931 if (del_timer(&exp->timeout)) {
ebbf41df 2932 nf_ct_unlink_expect_report(exp,
15e47304 2933 NETLINK_CB(skb).portid,
ebbf41df 2934 nlmsg_report(nlh));
31f15875
PM
2935 nf_ct_expect_put(exp);
2936 }
c1d10adb
PNA
2937 }
2938 }
ca7433df 2939 spin_unlock_bh(&nf_conntrack_expect_lock);
c1d10adb
PNA
2940 }
2941
2942 return 0;
2943}
2944static int
39938324
PM
2945ctnetlink_change_expect(struct nf_conntrack_expect *x,
2946 const struct nlattr * const cda[])
c1d10adb 2947{
9768e1ac
KW
2948 if (cda[CTA_EXPECT_TIMEOUT]) {
2949 if (!del_timer(&x->timeout))
2950 return -ETIME;
2951
2952 x->timeout.expires = jiffies +
2953 ntohl(nla_get_be32(cda[CTA_EXPECT_TIMEOUT])) * HZ;
2954 add_timer(&x->timeout);
2955 }
2956 return 0;
c1d10adb
PNA
2957}
2958
076a0ca0
PNA
2959static const struct nla_policy exp_nat_nla_policy[CTA_EXPECT_NAT_MAX+1] = {
2960 [CTA_EXPECT_NAT_DIR] = { .type = NLA_U32 },
2961 [CTA_EXPECT_NAT_TUPLE] = { .type = NLA_NESTED },
2962};
2963
2964static int
2965ctnetlink_parse_expect_nat(const struct nlattr *attr,
2966 struct nf_conntrack_expect *exp,
2967 u_int8_t u3)
2968{
2969#ifdef CONFIG_NF_NAT_NEEDED
2970 struct nlattr *tb[CTA_EXPECT_NAT_MAX+1];
2971 struct nf_conntrack_tuple nat_tuple = {};
2972 int err;
2973
130ffbc2
DB
2974 err = nla_parse_nested(tb, CTA_EXPECT_NAT_MAX, attr, exp_nat_nla_policy);
2975 if (err < 0)
2976 return err;
076a0ca0
PNA
2977
2978 if (!tb[CTA_EXPECT_NAT_DIR] || !tb[CTA_EXPECT_NAT_TUPLE])
2979 return -EINVAL;
2980
2981 err = ctnetlink_parse_tuple((const struct nlattr * const *)tb,
deedb590
DB
2982 &nat_tuple, CTA_EXPECT_NAT_TUPLE,
2983 u3, NULL);
076a0ca0
PNA
2984 if (err < 0)
2985 return err;
2986
c7232c99 2987 exp->saved_addr = nat_tuple.src.u3;
076a0ca0
PNA
2988 exp->saved_proto = nat_tuple.src.u;
2989 exp->dir = ntohl(nla_get_be32(tb[CTA_EXPECT_NAT_DIR]));
2990
2991 return 0;
2992#else
2993 return -EOPNOTSUPP;
2994#endif
2995}
2996
0ef71ee1
PNA
2997static struct nf_conntrack_expect *
2998ctnetlink_alloc_expect(const struct nlattr * const cda[], struct nf_conn *ct,
2999 struct nf_conntrack_helper *helper,
3000 struct nf_conntrack_tuple *tuple,
3001 struct nf_conntrack_tuple *mask)
c1d10adb 3002{
0ef71ee1 3003 u_int32_t class = 0;
c1d10adb 3004 struct nf_conntrack_expect *exp;
dc808fe2 3005 struct nf_conn_help *help;
0ef71ee1 3006 int err;
660fdb2a 3007
b8c5e52c
PNA
3008 if (cda[CTA_EXPECT_CLASS] && helper) {
3009 class = ntohl(nla_get_be32(cda[CTA_EXPECT_CLASS]));
0ef71ee1
PNA
3010 if (class > helper->expect_class_max)
3011 return ERR_PTR(-EINVAL);
b8c5e52c 3012 }
6823645d 3013 exp = nf_ct_expect_alloc(ct);
0ef71ee1
PNA
3014 if (!exp)
3015 return ERR_PTR(-ENOMEM);
3016
bc01befd
PNA
3017 help = nfct_help(ct);
3018 if (!help) {
3019 if (!cda[CTA_EXPECT_TIMEOUT]) {
3020 err = -EINVAL;
1310b955 3021 goto err_out;
bc01befd
PNA
3022 }
3023 exp->timeout.expires =
3024 jiffies + ntohl(nla_get_be32(cda[CTA_EXPECT_TIMEOUT])) * HZ;
601e68e1 3025
bc01befd
PNA
3026 exp->flags = NF_CT_EXPECT_USERSPACE;
3027 if (cda[CTA_EXPECT_FLAGS]) {
3028 exp->flags |=
3029 ntohl(nla_get_be32(cda[CTA_EXPECT_FLAGS]));
3030 }
3031 } else {
3032 if (cda[CTA_EXPECT_FLAGS]) {
3033 exp->flags = ntohl(nla_get_be32(cda[CTA_EXPECT_FLAGS]));
3034 exp->flags &= ~NF_CT_EXPECT_USERSPACE;
3035 } else
3036 exp->flags = 0;
3037 }
544d5c7d
PNA
3038 if (cda[CTA_EXPECT_FN]) {
3039 const char *name = nla_data(cda[CTA_EXPECT_FN]);
3040 struct nf_ct_helper_expectfn *expfn;
3041
3042 expfn = nf_ct_helper_expectfn_find_by_name(name);
3043 if (expfn == NULL) {
3044 err = -EINVAL;
3045 goto err_out;
3046 }
3047 exp->expectfn = expfn->expectfn;
3048 } else
3049 exp->expectfn = NULL;
601e68e1 3050
b8c5e52c 3051 exp->class = class;
c1d10adb 3052 exp->master = ct;
660fdb2a 3053 exp->helper = helper;
0ef71ee1
PNA
3054 exp->tuple = *tuple;
3055 exp->mask.src.u3 = mask->src.u3;
3056 exp->mask.src.u.all = mask->src.u.all;
c1d10adb 3057
076a0ca0
PNA
3058 if (cda[CTA_EXPECT_NAT]) {
3059 err = ctnetlink_parse_expect_nat(cda[CTA_EXPECT_NAT],
0ef71ee1 3060 exp, nf_ct_l3num(ct));
076a0ca0
PNA
3061 if (err < 0)
3062 goto err_out;
3063 }
0ef71ee1 3064 return exp;
076a0ca0 3065err_out:
6823645d 3066 nf_ct_expect_put(exp);
0ef71ee1
PNA
3067 return ERR_PTR(err);
3068}
3069
3070static int
308ac914
DB
3071ctnetlink_create_expect(struct net *net,
3072 const struct nf_conntrack_zone *zone,
0ef71ee1
PNA
3073 const struct nlattr * const cda[],
3074 u_int8_t u3, u32 portid, int report)
3075{
3076 struct nf_conntrack_tuple tuple, mask, master_tuple;
3077 struct nf_conntrack_tuple_hash *h = NULL;
3078 struct nf_conntrack_helper *helper = NULL;
3079 struct nf_conntrack_expect *exp;
3080 struct nf_conn *ct;
3081 int err;
3082
3083 /* caller guarantees that those three CTA_EXPECT_* exist */
deedb590
DB
3084 err = ctnetlink_parse_tuple(cda, &tuple, CTA_EXPECT_TUPLE,
3085 u3, NULL);
0ef71ee1
PNA
3086 if (err < 0)
3087 return err;
deedb590
DB
3088 err = ctnetlink_parse_tuple(cda, &mask, CTA_EXPECT_MASK,
3089 u3, NULL);
0ef71ee1
PNA
3090 if (err < 0)
3091 return err;
deedb590
DB
3092 err = ctnetlink_parse_tuple(cda, &master_tuple, CTA_EXPECT_MASTER,
3093 u3, NULL);
0ef71ee1
PNA
3094 if (err < 0)
3095 return err;
3096
3097 /* Look for master conntrack of this expectation */
3098 h = nf_conntrack_find_get(net, zone, &master_tuple);
3099 if (!h)
3100 return -ENOENT;
3101 ct = nf_ct_tuplehash_to_ctrack(h);
3102
3103 if (cda[CTA_EXPECT_HELP_NAME]) {
3104 const char *helpname = nla_data(cda[CTA_EXPECT_HELP_NAME]);
3105
3106 helper = __nf_conntrack_helper_find(helpname, u3,
3107 nf_ct_protonum(ct));
3108 if (helper == NULL) {
3109#ifdef CONFIG_MODULES
3110 if (request_module("nfct-helper-%s", helpname) < 0) {
3111 err = -EOPNOTSUPP;
3112 goto err_ct;
3113 }
3114 helper = __nf_conntrack_helper_find(helpname, u3,
3115 nf_ct_protonum(ct));
3116 if (helper) {
3117 err = -EAGAIN;
3118 goto err_ct;
3119 }
3120#endif
3121 err = -EOPNOTSUPP;
3122 goto err_ct;
3123 }
3124 }
3125
3126 exp = ctnetlink_alloc_expect(cda, ct, helper, &tuple, &mask);
3127 if (IS_ERR(exp)) {
3128 err = PTR_ERR(exp);
3129 goto err_ct;
3130 }
3131
3132 err = nf_ct_expect_related_report(exp, portid, report);
0ef71ee1
PNA
3133 nf_ct_expect_put(exp);
3134err_ct:
3135 nf_ct_put(ct);
c1d10adb
PNA
3136 return err;
3137}
3138
7b8002a1
PNA
3139static int ctnetlink_new_expect(struct net *net, struct sock *ctnl,
3140 struct sk_buff *skb, const struct nlmsghdr *nlh,
3141 const struct nlattr * const cda[])
c1d10adb
PNA
3142{
3143 struct nf_conntrack_tuple tuple;
3144 struct nf_conntrack_expect *exp;
96bcf938 3145 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
c1d10adb 3146 u_int8_t u3 = nfmsg->nfgen_family;
308ac914 3147 struct nf_conntrack_zone zone;
ef00f89f 3148 int err;
c1d10adb 3149
df6fb868
PM
3150 if (!cda[CTA_EXPECT_TUPLE]
3151 || !cda[CTA_EXPECT_MASK]
3152 || !cda[CTA_EXPECT_MASTER])
c1d10adb
PNA
3153 return -EINVAL;
3154
ef00f89f
PM
3155 err = ctnetlink_parse_zone(cda[CTA_EXPECT_ZONE], &zone);
3156 if (err < 0)
3157 return err;
3158
deedb590
DB
3159 err = ctnetlink_parse_tuple(cda, &tuple, CTA_EXPECT_TUPLE,
3160 u3, NULL);
c1d10adb
PNA
3161 if (err < 0)
3162 return err;
3163
ca7433df 3164 spin_lock_bh(&nf_conntrack_expect_lock);
308ac914 3165 exp = __nf_ct_expect_find(net, &zone, &tuple);
c1d10adb 3166 if (!exp) {
ca7433df 3167 spin_unlock_bh(&nf_conntrack_expect_lock);
c1d10adb 3168 err = -ENOENT;
19abb7b0 3169 if (nlh->nlmsg_flags & NLM_F_CREATE) {
308ac914 3170 err = ctnetlink_create_expect(net, &zone, cda, u3,
15e47304 3171 NETLINK_CB(skb).portid,
19abb7b0
PNA
3172 nlmsg_report(nlh));
3173 }
c1d10adb
PNA
3174 return err;
3175 }
3176
3177 err = -EEXIST;
3178 if (!(nlh->nlmsg_flags & NLM_F_EXCL))
3179 err = ctnetlink_change_expect(exp, cda);
ca7433df 3180 spin_unlock_bh(&nf_conntrack_expect_lock);
c1d10adb 3181
c1d10adb
PNA
3182 return err;
3183}
3184
392025f8 3185static int
15e47304 3186ctnetlink_exp_stat_fill_info(struct sk_buff *skb, u32 portid, u32 seq, int cpu,
392025f8
PNA
3187 const struct ip_conntrack_stat *st)
3188{
3189 struct nlmsghdr *nlh;
3190 struct nfgenmsg *nfmsg;
15e47304 3191 unsigned int flags = portid ? NLM_F_MULTI : 0, event;
392025f8
PNA
3192
3193 event = (NFNL_SUBSYS_CTNETLINK << 8 | IPCTNL_MSG_EXP_GET_STATS_CPU);
15e47304 3194 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*nfmsg), flags);
392025f8
PNA
3195 if (nlh == NULL)
3196 goto nlmsg_failure;
3197
3198 nfmsg = nlmsg_data(nlh);
3199 nfmsg->nfgen_family = AF_UNSPEC;
3200 nfmsg->version = NFNETLINK_V0;
3201 nfmsg->res_id = htons(cpu);
3202
3203 if (nla_put_be32(skb, CTA_STATS_EXP_NEW, htonl(st->expect_new)) ||
3204 nla_put_be32(skb, CTA_STATS_EXP_CREATE, htonl(st->expect_create)) ||
3205 nla_put_be32(skb, CTA_STATS_EXP_DELETE, htonl(st->expect_delete)))
3206 goto nla_put_failure;
3207
3208 nlmsg_end(skb, nlh);
3209 return skb->len;
3210
3211nla_put_failure:
3212nlmsg_failure:
3213 nlmsg_cancel(skb, nlh);
3214 return -1;
3215}
3216
3217static int
3218ctnetlink_exp_stat_cpu_dump(struct sk_buff *skb, struct netlink_callback *cb)
3219{
3220 int cpu;
3221 struct net *net = sock_net(skb->sk);
3222
3223 if (cb->args[0] == nr_cpu_ids)
3224 return 0;
3225
3226 for (cpu = cb->args[0]; cpu < nr_cpu_ids; cpu++) {
3227 const struct ip_conntrack_stat *st;
3228
3229 if (!cpu_possible(cpu))
3230 continue;
3231
3232 st = per_cpu_ptr(net->ct.stat, cpu);
15e47304 3233 if (ctnetlink_exp_stat_fill_info(skb, NETLINK_CB(cb->skb).portid,
392025f8
PNA
3234 cb->nlh->nlmsg_seq,
3235 cpu, st) < 0)
3236 break;
3237 }
3238 cb->args[0] = cpu;
3239
3240 return skb->len;
3241}
3242
7b8002a1
PNA
3243static int ctnetlink_stat_exp_cpu(struct net *net, struct sock *ctnl,
3244 struct sk_buff *skb,
3245 const struct nlmsghdr *nlh,
3246 const struct nlattr * const cda[])
392025f8
PNA
3247{
3248 if (nlh->nlmsg_flags & NLM_F_DUMP) {
3249 struct netlink_dump_control c = {
3250 .dump = ctnetlink_exp_stat_cpu_dump,
3251 };
3252 return netlink_dump_start(ctnl, skb, nlh, &c);
3253 }
3254
3255 return 0;
3256}
3257
c1d10adb 3258#ifdef CONFIG_NF_CONNTRACK_EVENTS
e34d5c1a
PNA
3259static struct nf_ct_event_notifier ctnl_notifier = {
3260 .fcn = ctnetlink_conntrack_event,
c1d10adb
PNA
3261};
3262
e34d5c1a
PNA
3263static struct nf_exp_event_notifier ctnl_notifier_exp = {
3264 .fcn = ctnetlink_expect_event,
c1d10adb
PNA
3265};
3266#endif
3267
7c8d4cb4 3268static const struct nfnl_callback ctnl_cb[IPCTNL_MSG_MAX] = {
c1d10adb 3269 [IPCTNL_MSG_CT_NEW] = { .call = ctnetlink_new_conntrack,
f73e924c
PM
3270 .attr_count = CTA_MAX,
3271 .policy = ct_nla_policy },
c1d10adb 3272 [IPCTNL_MSG_CT_GET] = { .call = ctnetlink_get_conntrack,
f73e924c
PM
3273 .attr_count = CTA_MAX,
3274 .policy = ct_nla_policy },
c1d10adb 3275 [IPCTNL_MSG_CT_DELETE] = { .call = ctnetlink_del_conntrack,
f73e924c
PM
3276 .attr_count = CTA_MAX,
3277 .policy = ct_nla_policy },
c1d10adb 3278 [IPCTNL_MSG_CT_GET_CTRZERO] = { .call = ctnetlink_get_conntrack,
f73e924c
PM
3279 .attr_count = CTA_MAX,
3280 .policy = ct_nla_policy },
392025f8
PNA
3281 [IPCTNL_MSG_CT_GET_STATS_CPU] = { .call = ctnetlink_stat_ct_cpu },
3282 [IPCTNL_MSG_CT_GET_STATS] = { .call = ctnetlink_stat_ct },
d871befe
PNA
3283 [IPCTNL_MSG_CT_GET_DYING] = { .call = ctnetlink_get_ct_dying },
3284 [IPCTNL_MSG_CT_GET_UNCONFIRMED] = { .call = ctnetlink_get_ct_unconfirmed },
c1d10adb
PNA
3285};
3286
7c8d4cb4 3287static const struct nfnl_callback ctnl_exp_cb[IPCTNL_MSG_EXP_MAX] = {
c1d10adb 3288 [IPCTNL_MSG_EXP_GET] = { .call = ctnetlink_get_expect,
f73e924c
PM
3289 .attr_count = CTA_EXPECT_MAX,
3290 .policy = exp_nla_policy },
c1d10adb 3291 [IPCTNL_MSG_EXP_NEW] = { .call = ctnetlink_new_expect,
f73e924c
PM
3292 .attr_count = CTA_EXPECT_MAX,
3293 .policy = exp_nla_policy },
c1d10adb 3294 [IPCTNL_MSG_EXP_DELETE] = { .call = ctnetlink_del_expect,
f73e924c
PM
3295 .attr_count = CTA_EXPECT_MAX,
3296 .policy = exp_nla_policy },
392025f8 3297 [IPCTNL_MSG_EXP_GET_STATS_CPU] = { .call = ctnetlink_stat_exp_cpu },
c1d10adb
PNA
3298};
3299
7c8d4cb4 3300static const struct nfnetlink_subsystem ctnl_subsys = {
c1d10adb
PNA
3301 .name = "conntrack",
3302 .subsys_id = NFNL_SUBSYS_CTNETLINK,
3303 .cb_count = IPCTNL_MSG_MAX,
3304 .cb = ctnl_cb,
3305};
3306
7c8d4cb4 3307static const struct nfnetlink_subsystem ctnl_exp_subsys = {
c1d10adb
PNA
3308 .name = "conntrack_expect",
3309 .subsys_id = NFNL_SUBSYS_CTNETLINK_EXP,
3310 .cb_count = IPCTNL_MSG_EXP_MAX,
3311 .cb = ctnl_exp_cb,
3312};
3313
d2483dde 3314MODULE_ALIAS("ip_conntrack_netlink");
c1d10adb 3315MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_CTNETLINK);
34f9a2e4 3316MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_CTNETLINK_EXP);
c1d10adb 3317
70e9942f
PNA
3318static int __net_init ctnetlink_net_init(struct net *net)
3319{
3320#ifdef CONFIG_NF_CONNTRACK_EVENTS
3321 int ret;
3322
3323 ret = nf_conntrack_register_notifier(net, &ctnl_notifier);
3324 if (ret < 0) {
3325 pr_err("ctnetlink_init: cannot register notifier.\n");
3326 goto err_out;
3327 }
3328
3329 ret = nf_ct_expect_register_notifier(net, &ctnl_notifier_exp);
3330 if (ret < 0) {
3331 pr_err("ctnetlink_init: cannot expect register notifier.\n");
3332 goto err_unreg_notifier;
3333 }
3334#endif
3335 return 0;
3336
3337#ifdef CONFIG_NF_CONNTRACK_EVENTS
3338err_unreg_notifier:
3339 nf_conntrack_unregister_notifier(net, &ctnl_notifier);
3340err_out:
3341 return ret;
3342#endif
3343}
3344
3345static void ctnetlink_net_exit(struct net *net)
3346{
3347#ifdef CONFIG_NF_CONNTRACK_EVENTS
3348 nf_ct_expect_unregister_notifier(net, &ctnl_notifier_exp);
3349 nf_conntrack_unregister_notifier(net, &ctnl_notifier);
3350#endif
3351}
3352
3353static void __net_exit ctnetlink_net_exit_batch(struct list_head *net_exit_list)
3354{
3355 struct net *net;
3356
3357 list_for_each_entry(net, net_exit_list, exit_list)
3358 ctnetlink_net_exit(net);
3359}
3360
3361static struct pernet_operations ctnetlink_net_ops = {
3362 .init = ctnetlink_net_init,
3363 .exit_batch = ctnetlink_net_exit_batch,
3364};
3365
c1d10adb
PNA
3366static int __init ctnetlink_init(void)
3367{
3368 int ret;
3369
654d0fbd 3370 pr_info("ctnetlink v%s: registering with nfnetlink.\n", version);
c1d10adb
PNA
3371 ret = nfnetlink_subsys_register(&ctnl_subsys);
3372 if (ret < 0) {
654d0fbd 3373 pr_err("ctnetlink_init: cannot register with nfnetlink.\n");
c1d10adb
PNA
3374 goto err_out;
3375 }
3376
3377 ret = nfnetlink_subsys_register(&ctnl_exp_subsys);
3378 if (ret < 0) {
654d0fbd 3379 pr_err("ctnetlink_init: cannot register exp with nfnetlink.\n");
c1d10adb
PNA
3380 goto err_unreg_subsys;
3381 }
3382
ef6acf68
JL
3383 ret = register_pernet_subsys(&ctnetlink_net_ops);
3384 if (ret < 0) {
70e9942f 3385 pr_err("ctnetlink_init: cannot register pernet operations\n");
c1d10adb
PNA
3386 goto err_unreg_exp_subsys;
3387 }
83f3e94d 3388#ifdef CONFIG_NETFILTER_NETLINK_GLUE_CT
9cb01766 3389 /* setup interaction between nf_queue and nf_conntrack_netlink. */
a4b4766c 3390 RCU_INIT_POINTER(nfnl_ct_hook, &ctnetlink_glue_hook);
9cb01766 3391#endif
c1d10adb
PNA
3392 return 0;
3393
c1d10adb
PNA
3394err_unreg_exp_subsys:
3395 nfnetlink_subsys_unregister(&ctnl_exp_subsys);
c1d10adb
PNA
3396err_unreg_subsys:
3397 nfnetlink_subsys_unregister(&ctnl_subsys);
3398err_out:
3399 return ret;
3400}
3401
3402static void __exit ctnetlink_exit(void)
3403{
654d0fbd 3404 pr_info("ctnetlink: unregistering from nfnetlink.\n");
c1d10adb 3405
70e9942f 3406 unregister_pernet_subsys(&ctnetlink_net_ops);
c1d10adb
PNA
3407 nfnetlink_subsys_unregister(&ctnl_exp_subsys);
3408 nfnetlink_subsys_unregister(&ctnl_subsys);
83f3e94d 3409#ifdef CONFIG_NETFILTER_NETLINK_GLUE_CT
a4b4766c 3410 RCU_INIT_POINTER(nfnl_ct_hook, NULL);
9cb01766 3411#endif
c1d10adb
PNA
3412}
3413
3414module_init(ctnetlink_init);
3415module_exit(ctnetlink_exit);
This page took 1.173955 seconds and 5 git commands to generate.