]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - net/netfilter/nf_conntrack_netlink.c
netfilter: ctnetlink: drop the incorrect cthelper module request
[mirror_ubuntu-bionic-kernel.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
ae243bee 1481 err = ctnetlink_parse_help(cda[CTA_HELP], &helpname, &helpinfo);
c1d10adb
PNA
1482 if (err < 0)
1483 return err;
1484
f95d7a46
KC
1485 /* don't change helper of sibling connections */
1486 if (ct->master) {
1487 /* If we try to change the helper to the same thing twice,
1488 * treat the second attempt as a no-op instead of returning
1489 * an error.
1490 */
3173d5b8
LZ
1491 err = -EBUSY;
1492 if (help) {
1493 rcu_read_lock();
1494 helper = rcu_dereference(help->helper);
1495 if (helper && !strcmp(helper->name, helpname))
1496 err = 0;
1497 rcu_read_unlock();
1498 }
1499
1500 return err;
f95d7a46
KC
1501 }
1502
df293bbb
YK
1503 if (!strcmp(helpname, "")) {
1504 if (help && help->helper) {
c1d10adb
PNA
1505 /* we had a helper before ... */
1506 nf_ct_remove_expectations(ct);
a9b3cd7f 1507 RCU_INIT_POINTER(help->helper, NULL);
c1d10adb 1508 }
df293bbb
YK
1509
1510 return 0;
c1d10adb 1511 }
601e68e1 1512
794e6871
PM
1513 helper = __nf_conntrack_helper_find(helpname, nf_ct_l3num(ct),
1514 nf_ct_protonum(ct));
14e56761 1515 if (helper == NULL)
0adf9d67 1516 return -EOPNOTSUPP;
df293bbb 1517
ceceae1b 1518 if (help) {
ae243bee
PNA
1519 if (help->helper == helper) {
1520 /* update private helper data if allowed. */
7be54ca4 1521 if (helper->from_nlattr)
ae243bee 1522 helper->from_nlattr(helpinfo, ct);
ceceae1b 1523 return 0;
fd7462de 1524 } else
ceceae1b 1525 return -EBUSY;
ceceae1b 1526 }
df293bbb 1527
fd7462de
PNA
1528 /* we cannot set a helper for an existing conntrack */
1529 return -EOPNOTSUPP;
c1d10adb
PNA
1530}
1531
4054ff45
PNA
1532static int ctnetlink_change_timeout(struct nf_conn *ct,
1533 const struct nlattr * const cda[])
c1d10adb 1534{
77236b6e 1535 u_int32_t timeout = ntohl(nla_get_be32(cda[CTA_TIMEOUT]));
601e68e1 1536
f330a7fd 1537 ct->timeout = nfct_time_stamp + timeout * HZ;
c1d10adb 1538
f330a7fd
FW
1539 if (test_bit(IPS_DYING_BIT, &ct->status))
1540 return -ETIME;
c1d10adb
PNA
1541
1542 return 0;
1543}
1544
d0b0268f
PM
1545static const struct nla_policy protoinfo_policy[CTA_PROTOINFO_MAX+1] = {
1546 [CTA_PROTOINFO_TCP] = { .type = NLA_NESTED },
1547 [CTA_PROTOINFO_DCCP] = { .type = NLA_NESTED },
1548 [CTA_PROTOINFO_SCTP] = { .type = NLA_NESTED },
1549};
1550
4054ff45
PNA
1551static int ctnetlink_change_protoinfo(struct nf_conn *ct,
1552 const struct nlattr * const cda[])
c1d10adb 1553{
39938324
PM
1554 const struct nlattr *attr = cda[CTA_PROTOINFO];
1555 struct nlattr *tb[CTA_PROTOINFO_MAX+1];
605dcad6 1556 struct nf_conntrack_l4proto *l4proto;
c1d10adb
PNA
1557 int err = 0;
1558
130ffbc2
DB
1559 err = nla_parse_nested(tb, CTA_PROTOINFO_MAX, attr, protoinfo_policy);
1560 if (err < 0)
1561 return err;
c1d10adb 1562
cd91566e
FW
1563 rcu_read_lock();
1564 l4proto = __nf_ct_l4proto_find(nf_ct_l3num(ct), nf_ct_protonum(ct));
fdf70832
PM
1565 if (l4proto->from_nlattr)
1566 err = l4proto->from_nlattr(tb, ct);
cd91566e 1567 rcu_read_unlock();
c1d10adb
PNA
1568
1569 return err;
1570}
1571
41d73ec0
PM
1572static const struct nla_policy seqadj_policy[CTA_SEQADJ_MAX+1] = {
1573 [CTA_SEQADJ_CORRECTION_POS] = { .type = NLA_U32 },
1574 [CTA_SEQADJ_OFFSET_BEFORE] = { .type = NLA_U32 },
1575 [CTA_SEQADJ_OFFSET_AFTER] = { .type = NLA_U32 },
d0b0268f
PM
1576};
1577
4054ff45
PNA
1578static int change_seq_adj(struct nf_ct_seqadj *seq,
1579 const struct nlattr * const attr)
13eae15a 1580{
130ffbc2 1581 int err;
41d73ec0 1582 struct nlattr *cda[CTA_SEQADJ_MAX+1];
13eae15a 1583
41d73ec0 1584 err = nla_parse_nested(cda, CTA_SEQADJ_MAX, attr, seqadj_policy);
130ffbc2
DB
1585 if (err < 0)
1586 return err;
13eae15a 1587
41d73ec0 1588 if (!cda[CTA_SEQADJ_CORRECTION_POS])
13eae15a
PNA
1589 return -EINVAL;
1590
41d73ec0
PM
1591 seq->correction_pos =
1592 ntohl(nla_get_be32(cda[CTA_SEQADJ_CORRECTION_POS]));
13eae15a 1593
41d73ec0 1594 if (!cda[CTA_SEQADJ_OFFSET_BEFORE])
13eae15a
PNA
1595 return -EINVAL;
1596
41d73ec0
PM
1597 seq->offset_before =
1598 ntohl(nla_get_be32(cda[CTA_SEQADJ_OFFSET_BEFORE]));
13eae15a 1599
41d73ec0 1600 if (!cda[CTA_SEQADJ_OFFSET_AFTER])
13eae15a
PNA
1601 return -EINVAL;
1602
41d73ec0
PM
1603 seq->offset_after =
1604 ntohl(nla_get_be32(cda[CTA_SEQADJ_OFFSET_AFTER]));
13eae15a
PNA
1605
1606 return 0;
1607}
1608
1609static int
41d73ec0
PM
1610ctnetlink_change_seq_adj(struct nf_conn *ct,
1611 const struct nlattr * const cda[])
13eae15a 1612{
41d73ec0 1613 struct nf_conn_seqadj *seqadj = nfct_seqadj(ct);
13eae15a 1614 int ret = 0;
13eae15a 1615
41d73ec0 1616 if (!seqadj)
13eae15a
PNA
1617 return 0;
1618
41d73ec0
PM
1619 if (cda[CTA_SEQ_ADJ_ORIG]) {
1620 ret = change_seq_adj(&seqadj->seq[IP_CT_DIR_ORIGINAL],
1621 cda[CTA_SEQ_ADJ_ORIG]);
13eae15a
PNA
1622 if (ret < 0)
1623 return ret;
1624
1625 ct->status |= IPS_SEQ_ADJUST;
1626 }
1627
41d73ec0
PM
1628 if (cda[CTA_SEQ_ADJ_REPLY]) {
1629 ret = change_seq_adj(&seqadj->seq[IP_CT_DIR_REPLY],
1630 cda[CTA_SEQ_ADJ_REPLY]);
13eae15a
PNA
1631 if (ret < 0)
1632 return ret;
1633
1634 ct->status |= IPS_SEQ_ADJUST;
1635 }
1636
1637 return 0;
1638}
13eae15a 1639
9b21f6a9
FW
1640static int
1641ctnetlink_attach_labels(struct nf_conn *ct, const struct nlattr * const cda[])
1642{
1643#ifdef CONFIG_NF_CONNTRACK_LABELS
1644 size_t len = nla_len(cda[CTA_LABELS]);
1645 const void *mask = cda[CTA_LABELS_MASK];
1646
1647 if (len & (sizeof(u32)-1)) /* must be multiple of u32 */
1648 return -EINVAL;
1649
1650 if (mask) {
1651 if (nla_len(cda[CTA_LABELS_MASK]) == 0 ||
1652 nla_len(cda[CTA_LABELS_MASK]) != len)
1653 return -EINVAL;
1654 mask = nla_data(cda[CTA_LABELS_MASK]);
1655 }
1656
1657 len /= sizeof(u32);
1658
1659 return nf_connlabels_replace(ct, nla_data(cda[CTA_LABELS]), mask, len);
1660#else
1661 return -EOPNOTSUPP;
1662#endif
1663}
1664
c1d10adb 1665static int
39938324
PM
1666ctnetlink_change_conntrack(struct nf_conn *ct,
1667 const struct nlattr * const cda[])
c1d10adb
PNA
1668{
1669 int err;
1670
e098360f
PNA
1671 /* only allow NAT changes and master assignation for new conntracks */
1672 if (cda[CTA_NAT_SRC] || cda[CTA_NAT_DST] || cda[CTA_TUPLE_MASTER])
1673 return -EOPNOTSUPP;
1674
df6fb868 1675 if (cda[CTA_HELP]) {
c1d10adb
PNA
1676 err = ctnetlink_change_helper(ct, cda);
1677 if (err < 0)
1678 return err;
1679 }
1680
df6fb868 1681 if (cda[CTA_TIMEOUT]) {
c1d10adb
PNA
1682 err = ctnetlink_change_timeout(ct, cda);
1683 if (err < 0)
1684 return err;
1685 }
1686
df6fb868 1687 if (cda[CTA_STATUS]) {
c1d10adb
PNA
1688 err = ctnetlink_change_status(ct, cda);
1689 if (err < 0)
1690 return err;
1691 }
1692
df6fb868 1693 if (cda[CTA_PROTOINFO]) {
c1d10adb
PNA
1694 err = ctnetlink_change_protoinfo(ct, cda);
1695 if (err < 0)
1696 return err;
1697 }
1698
bcd1e830 1699#if defined(CONFIG_NF_CONNTRACK_MARK)
df6fb868 1700 if (cda[CTA_MARK])
77236b6e 1701 ct->mark = ntohl(nla_get_be32(cda[CTA_MARK]));
c1d10adb
PNA
1702#endif
1703
41d73ec0
PM
1704 if (cda[CTA_SEQ_ADJ_ORIG] || cda[CTA_SEQ_ADJ_REPLY]) {
1705 err = ctnetlink_change_seq_adj(ct, cda);
13eae15a
PNA
1706 if (err < 0)
1707 return err;
1708 }
41d73ec0 1709
9b21f6a9
FW
1710 if (cda[CTA_LABELS]) {
1711 err = ctnetlink_attach_labels(ct, cda);
1712 if (err < 0)
1713 return err;
1714 }
13eae15a 1715
c1d10adb
PNA
1716 return 0;
1717}
1718
f0a3c086 1719static struct nf_conn *
308ac914
DB
1720ctnetlink_create_conntrack(struct net *net,
1721 const struct nf_conntrack_zone *zone,
9592a5c0 1722 const struct nlattr * const cda[],
c1d10adb 1723 struct nf_conntrack_tuple *otuple,
5faa1f4c 1724 struct nf_conntrack_tuple *rtuple,
7ec47496 1725 u8 u3)
c1d10adb
PNA
1726{
1727 struct nf_conn *ct;
1728 int err = -EINVAL;
ceceae1b 1729 struct nf_conntrack_helper *helper;
315c34da 1730 struct nf_conn_tstamp *tstamp;
c1d10adb 1731
ef00f89f 1732 ct = nf_conntrack_alloc(net, zone, otuple, rtuple, GFP_ATOMIC);
cd7fcbf1 1733 if (IS_ERR(ct))
f0a3c086 1734 return ERR_PTR(-ENOMEM);
c1d10adb 1735
df6fb868 1736 if (!cda[CTA_TIMEOUT])
0f5b3e85 1737 goto err1;
c1d10adb 1738
f330a7fd 1739 ct->timeout = nfct_time_stamp + ntohl(nla_get_be32(cda[CTA_TIMEOUT])) * HZ;
c1d10adb 1740
1575e7ea 1741 rcu_read_lock();
226c0c0e 1742 if (cda[CTA_HELP]) {
29fe1b48 1743 char *helpname = NULL;
ae243bee
PNA
1744 struct nlattr *helpinfo = NULL;
1745
1746 err = ctnetlink_parse_help(cda[CTA_HELP], &helpname, &helpinfo);
0f5b3e85
PM
1747 if (err < 0)
1748 goto err2;
226c0c0e 1749
794e6871
PM
1750 helper = __nf_conntrack_helper_find(helpname, nf_ct_l3num(ct),
1751 nf_ct_protonum(ct));
226c0c0e
PNA
1752 if (helper == NULL) {
1753 rcu_read_unlock();
1754#ifdef CONFIG_MODULES
1755 if (request_module("nfct-helper-%s", helpname) < 0) {
1756 err = -EOPNOTSUPP;
0f5b3e85 1757 goto err1;
226c0c0e
PNA
1758 }
1759
1760 rcu_read_lock();
794e6871
PM
1761 helper = __nf_conntrack_helper_find(helpname,
1762 nf_ct_l3num(ct),
1763 nf_ct_protonum(ct));
226c0c0e 1764 if (helper) {
226c0c0e 1765 err = -EAGAIN;
0f5b3e85 1766 goto err2;
226c0c0e
PNA
1767 }
1768 rcu_read_unlock();
1769#endif
1770 err = -EOPNOTSUPP;
0f5b3e85 1771 goto err1;
226c0c0e
PNA
1772 } else {
1773 struct nf_conn_help *help;
1774
1afc5679 1775 help = nf_ct_helper_ext_add(ct, helper, GFP_ATOMIC);
226c0c0e 1776 if (help == NULL) {
226c0c0e 1777 err = -ENOMEM;
0f5b3e85 1778 goto err2;
226c0c0e 1779 }
ae243bee 1780 /* set private helper data if allowed. */
7be54ca4 1781 if (helper->from_nlattr)
ae243bee 1782 helper->from_nlattr(helpinfo, ct);
226c0c0e
PNA
1783
1784 /* not in hash table yet so not strictly necessary */
a9b3cd7f 1785 RCU_INIT_POINTER(help->helper, helper);
226c0c0e
PNA
1786 }
1787 } else {
1788 /* try an implicit helper assignation */
b2a15a60 1789 err = __nf_ct_try_assign_helper(ct, NULL, GFP_ATOMIC);
0f5b3e85
PM
1790 if (err < 0)
1791 goto err2;
1575e7ea
PNA
1792 }
1793
0eba801b
PNA
1794 err = ctnetlink_setup_nat(ct, cda);
1795 if (err < 0)
1796 goto err2;
e6a7d3c0 1797
a88e22ad 1798 nf_ct_acct_ext_add(ct, GFP_ATOMIC);
a992ca2a 1799 nf_ct_tstamp_ext_add(ct, GFP_ATOMIC);
a88e22ad 1800 nf_ct_ecache_ext_add(ct, 0, 0, GFP_ATOMIC);
c539f017
FW
1801 nf_ct_labels_ext_add(ct);
1802
a88e22ad
PNA
1803 /* we must add conntrack extensions before confirmation. */
1804 ct->status |= IPS_CONFIRMED;
1805
1806 if (cda[CTA_STATUS]) {
1807 err = ctnetlink_change_status(ct, cda);
0f5b3e85
PM
1808 if (err < 0)
1809 goto err2;
bbb3357d 1810 }
c1d10adb 1811
41d73ec0
PM
1812 if (cda[CTA_SEQ_ADJ_ORIG] || cda[CTA_SEQ_ADJ_REPLY]) {
1813 err = ctnetlink_change_seq_adj(ct, cda);
0f5b3e85
PM
1814 if (err < 0)
1815 goto err2;
c969aa7d 1816 }
c969aa7d 1817
e5fc9e7a 1818 memset(&ct->proto, 0, sizeof(ct->proto));
df6fb868 1819 if (cda[CTA_PROTOINFO]) {
c1d10adb 1820 err = ctnetlink_change_protoinfo(ct, cda);
0f5b3e85
PM
1821 if (err < 0)
1822 goto err2;
c1d10adb
PNA
1823 }
1824
bcd1e830 1825#if defined(CONFIG_NF_CONNTRACK_MARK)
df6fb868 1826 if (cda[CTA_MARK])
77236b6e 1827 ct->mark = ntohl(nla_get_be32(cda[CTA_MARK]));
c1d10adb
PNA
1828#endif
1829
5faa1f4c 1830 /* setup master conntrack: this is a confirmed expectation */
7ec47496
PNA
1831 if (cda[CTA_TUPLE_MASTER]) {
1832 struct nf_conntrack_tuple master;
1833 struct nf_conntrack_tuple_hash *master_h;
1834 struct nf_conn *master_ct;
1835
deedb590
DB
1836 err = ctnetlink_parse_tuple(cda, &master, CTA_TUPLE_MASTER,
1837 u3, NULL);
7ec47496 1838 if (err < 0)
0f5b3e85 1839 goto err2;
7ec47496 1840
ef00f89f 1841 master_h = nf_conntrack_find_get(net, zone, &master);
7ec47496
PNA
1842 if (master_h == NULL) {
1843 err = -ENOENT;
0f5b3e85 1844 goto err2;
7ec47496
PNA
1845 }
1846 master_ct = nf_ct_tuplehash_to_ctrack(master_h);
f2a89004 1847 __set_bit(IPS_EXPECTED_BIT, &ct->status);
5faa1f4c 1848 ct->master = master_ct;
f2a89004 1849 }
315c34da
PNA
1850 tstamp = nf_conn_tstamp_find(ct);
1851 if (tstamp)
d2de875c 1852 tstamp->start = ktime_get_real_ns();
5faa1f4c 1853
7d367e06
JK
1854 err = nf_conntrack_hash_check_insert(ct);
1855 if (err < 0)
1856 goto err2;
1857
58a3c9bb 1858 rcu_read_unlock();
dafc741c 1859
f0a3c086 1860 return ct;
c1d10adb 1861
0f5b3e85
PM
1862err2:
1863 rcu_read_unlock();
1864err1:
c1d10adb 1865 nf_conntrack_free(ct);
f0a3c086 1866 return ERR_PTR(err);
c1d10adb
PNA
1867}
1868
7b8002a1
PNA
1869static int ctnetlink_new_conntrack(struct net *net, struct sock *ctnl,
1870 struct sk_buff *skb,
1871 const struct nlmsghdr *nlh,
1872 const struct nlattr * const cda[])
c1d10adb
PNA
1873{
1874 struct nf_conntrack_tuple otuple, rtuple;
1875 struct nf_conntrack_tuple_hash *h = NULL;
96bcf938 1876 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
7d367e06 1877 struct nf_conn *ct;
c1d10adb 1878 u_int8_t u3 = nfmsg->nfgen_family;
308ac914 1879 struct nf_conntrack_zone zone;
ef00f89f
PM
1880 int err;
1881
1882 err = ctnetlink_parse_zone(cda[CTA_ZONE], &zone);
1883 if (err < 0)
1884 return err;
c1d10adb 1885
df6fb868 1886 if (cda[CTA_TUPLE_ORIG]) {
deedb590
DB
1887 err = ctnetlink_parse_tuple(cda, &otuple, CTA_TUPLE_ORIG,
1888 u3, &zone);
c1d10adb
PNA
1889 if (err < 0)
1890 return err;
1891 }
1892
df6fb868 1893 if (cda[CTA_TUPLE_REPLY]) {
deedb590
DB
1894 err = ctnetlink_parse_tuple(cda, &rtuple, CTA_TUPLE_REPLY,
1895 u3, &zone);
c1d10adb
PNA
1896 if (err < 0)
1897 return err;
1898 }
1899
df6fb868 1900 if (cda[CTA_TUPLE_ORIG])
308ac914 1901 h = nf_conntrack_find_get(net, &zone, &otuple);
df6fb868 1902 else if (cda[CTA_TUPLE_REPLY])
308ac914 1903 h = nf_conntrack_find_get(net, &zone, &rtuple);
c1d10adb
PNA
1904
1905 if (h == NULL) {
c1d10adb 1906 err = -ENOENT;
f0a3c086 1907 if (nlh->nlmsg_flags & NLM_F_CREATE) {
fecc1133 1908 enum ip_conntrack_events events;
5faa1f4c 1909
442fad94
FW
1910 if (!cda[CTA_TUPLE_ORIG] || !cda[CTA_TUPLE_REPLY])
1911 return -EINVAL;
aa0c2c68
LZ
1912 if (otuple.dst.protonum != rtuple.dst.protonum)
1913 return -EINVAL;
442fad94 1914
308ac914 1915 ct = ctnetlink_create_conntrack(net, &zone, cda, &otuple,
f0a3c086 1916 &rtuple, u3);
7d367e06
JK
1917 if (IS_ERR(ct))
1918 return PTR_ERR(ct);
1919
f0a3c086 1920 err = 0;
fecc1133 1921 if (test_bit(IPS_EXPECTED_BIT, &ct->status))
97aae0df 1922 events = 1 << IPCT_RELATED;
fecc1133 1923 else
97aae0df 1924 events = 1 << IPCT_NEW;
fecc1133 1925
9b21f6a9
FW
1926 if (cda[CTA_LABELS] &&
1927 ctnetlink_attach_labels(ct, cda) == 0)
1928 events |= (1 << IPCT_LABEL);
1929
858b3133
PM
1930 nf_conntrack_eventmask_report((1 << IPCT_REPLY) |
1931 (1 << IPCT_ASSURED) |
a0891aa6
PNA
1932 (1 << IPCT_HELPER) |
1933 (1 << IPCT_PROTOINFO) |
41d73ec0 1934 (1 << IPCT_SEQADJ) |
a0891aa6 1935 (1 << IPCT_MARK) | events,
15e47304 1936 ct, NETLINK_CB(skb).portid,
a0891aa6 1937 nlmsg_report(nlh));
f0a3c086 1938 nf_ct_put(ct);
7d367e06 1939 }
5faa1f4c 1940
c1d10adb
PNA
1941 return err;
1942 }
1943 /* implicit 'else' */
1944
c1d10adb 1945 err = -EEXIST;
7d367e06 1946 ct = nf_ct_tuplehash_to_ctrack(h);
ff4ca827 1947 if (!(nlh->nlmsg_flags & NLM_F_EXCL)) {
ca7433df 1948 spin_lock_bh(&nf_conntrack_expect_lock);
19abb7b0 1949 err = ctnetlink_change_conntrack(ct, cda);
ca7433df 1950 spin_unlock_bh(&nf_conntrack_expect_lock);
19abb7b0 1951 if (err == 0) {
858b3133
PM
1952 nf_conntrack_eventmask_report((1 << IPCT_REPLY) |
1953 (1 << IPCT_ASSURED) |
a0891aa6 1954 (1 << IPCT_HELPER) |
797a7d66 1955 (1 << IPCT_LABEL) |
a0891aa6 1956 (1 << IPCT_PROTOINFO) |
41d73ec0 1957 (1 << IPCT_SEQADJ) |
a0891aa6 1958 (1 << IPCT_MARK),
15e47304 1959 ct, NETLINK_CB(skb).portid,
a0891aa6 1960 nlmsg_report(nlh));
7d367e06 1961 }
ff4ca827 1962 }
c1d10adb 1963
7d367e06 1964 nf_ct_put(ct);
c1d10adb
PNA
1965 return err;
1966}
1967
392025f8 1968static int
15e47304 1969ctnetlink_ct_stat_cpu_fill_info(struct sk_buff *skb, u32 portid, u32 seq,
392025f8
PNA
1970 __u16 cpu, const struct ip_conntrack_stat *st)
1971{
1972 struct nlmsghdr *nlh;
1973 struct nfgenmsg *nfmsg;
15e47304 1974 unsigned int flags = portid ? NLM_F_MULTI : 0, event;
392025f8
PNA
1975
1976 event = (NFNL_SUBSYS_CTNETLINK << 8 | IPCTNL_MSG_CT_GET_STATS_CPU);
15e47304 1977 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*nfmsg), flags);
392025f8
PNA
1978 if (nlh == NULL)
1979 goto nlmsg_failure;
1980
1981 nfmsg = nlmsg_data(nlh);
1982 nfmsg->nfgen_family = AF_UNSPEC;
1983 nfmsg->version = NFNETLINK_V0;
1984 nfmsg->res_id = htons(cpu);
1985
8e8118f8 1986 if (nla_put_be32(skb, CTA_STATS_FOUND, htonl(st->found)) ||
392025f8
PNA
1987 nla_put_be32(skb, CTA_STATS_INVALID, htonl(st->invalid)) ||
1988 nla_put_be32(skb, CTA_STATS_IGNORE, htonl(st->ignore)) ||
392025f8
PNA
1989 nla_put_be32(skb, CTA_STATS_INSERT, htonl(st->insert)) ||
1990 nla_put_be32(skb, CTA_STATS_INSERT_FAILED,
1991 htonl(st->insert_failed)) ||
1992 nla_put_be32(skb, CTA_STATS_DROP, htonl(st->drop)) ||
1993 nla_put_be32(skb, CTA_STATS_EARLY_DROP, htonl(st->early_drop)) ||
1994 nla_put_be32(skb, CTA_STATS_ERROR, htonl(st->error)) ||
1995 nla_put_be32(skb, CTA_STATS_SEARCH_RESTART,
1996 htonl(st->search_restart)))
1997 goto nla_put_failure;
1998
1999 nlmsg_end(skb, nlh);
2000 return skb->len;
2001
2002nla_put_failure:
2003nlmsg_failure:
2004 nlmsg_cancel(skb, nlh);
2005 return -1;
2006}
2007
2008static int
2009ctnetlink_ct_stat_cpu_dump(struct sk_buff *skb, struct netlink_callback *cb)
2010{
2011 int cpu;
2012 struct net *net = sock_net(skb->sk);
2013
2014 if (cb->args[0] == nr_cpu_ids)
2015 return 0;
2016
2017 for (cpu = cb->args[0]; cpu < nr_cpu_ids; cpu++) {
2018 const struct ip_conntrack_stat *st;
2019
2020 if (!cpu_possible(cpu))
2021 continue;
2022
2023 st = per_cpu_ptr(net->ct.stat, cpu);
2024 if (ctnetlink_ct_stat_cpu_fill_info(skb,
15e47304 2025 NETLINK_CB(cb->skb).portid,
392025f8
PNA
2026 cb->nlh->nlmsg_seq,
2027 cpu, st) < 0)
2028 break;
2029 }
2030 cb->args[0] = cpu;
2031
2032 return skb->len;
2033}
2034
7b8002a1
PNA
2035static int ctnetlink_stat_ct_cpu(struct net *net, struct sock *ctnl,
2036 struct sk_buff *skb,
2037 const struct nlmsghdr *nlh,
2038 const struct nlattr * const cda[])
392025f8
PNA
2039{
2040 if (nlh->nlmsg_flags & NLM_F_DUMP) {
2041 struct netlink_dump_control c = {
2042 .dump = ctnetlink_ct_stat_cpu_dump,
2043 };
2044 return netlink_dump_start(ctnl, skb, nlh, &c);
2045 }
2046
2047 return 0;
2048}
2049
2050static int
15e47304 2051ctnetlink_stat_ct_fill_info(struct sk_buff *skb, u32 portid, u32 seq, u32 type,
392025f8
PNA
2052 struct net *net)
2053{
2054 struct nlmsghdr *nlh;
2055 struct nfgenmsg *nfmsg;
15e47304 2056 unsigned int flags = portid ? NLM_F_MULTI : 0, event;
392025f8
PNA
2057 unsigned int nr_conntracks = atomic_read(&net->ct.count);
2058
2059 event = (NFNL_SUBSYS_CTNETLINK << 8 | IPCTNL_MSG_CT_GET_STATS);
15e47304 2060 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*nfmsg), flags);
392025f8
PNA
2061 if (nlh == NULL)
2062 goto nlmsg_failure;
2063
2064 nfmsg = nlmsg_data(nlh);
2065 nfmsg->nfgen_family = AF_UNSPEC;
2066 nfmsg->version = NFNETLINK_V0;
2067 nfmsg->res_id = 0;
2068
2069 if (nla_put_be32(skb, CTA_STATS_GLOBAL_ENTRIES, htonl(nr_conntracks)))
2070 goto nla_put_failure;
2071
2072 nlmsg_end(skb, nlh);
2073 return skb->len;
2074
2075nla_put_failure:
2076nlmsg_failure:
2077 nlmsg_cancel(skb, nlh);
2078 return -1;
2079}
2080
7b8002a1
PNA
2081static int ctnetlink_stat_ct(struct net *net, struct sock *ctnl,
2082 struct sk_buff *skb, const struct nlmsghdr *nlh,
2083 const struct nlattr * const cda[])
392025f8
PNA
2084{
2085 struct sk_buff *skb2;
2086 int err;
2087
2088 skb2 = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
2089 if (skb2 == NULL)
2090 return -ENOMEM;
2091
15e47304 2092 err = ctnetlink_stat_ct_fill_info(skb2, NETLINK_CB(skb).portid,
392025f8
PNA
2093 nlh->nlmsg_seq,
2094 NFNL_MSG_TYPE(nlh->nlmsg_type),
2095 sock_net(skb->sk));
2096 if (err <= 0)
2097 goto free;
2098
15e47304 2099 err = netlink_unicast(ctnl, skb2, NETLINK_CB(skb).portid, MSG_DONTWAIT);
392025f8
PNA
2100 if (err < 0)
2101 goto out;
2102
2103 return 0;
2104
2105free:
2106 kfree_skb(skb2);
2107out:
2108 /* this avoids a loop in nfnetlink. */
2109 return err == -EAGAIN ? -ENOBUFS : err;
2110}
2111
bd077937
PNA
2112static const struct nla_policy exp_nla_policy[CTA_EXPECT_MAX+1] = {
2113 [CTA_EXPECT_MASTER] = { .type = NLA_NESTED },
2114 [CTA_EXPECT_TUPLE] = { .type = NLA_NESTED },
2115 [CTA_EXPECT_MASK] = { .type = NLA_NESTED },
2116 [CTA_EXPECT_TIMEOUT] = { .type = NLA_U32 },
2117 [CTA_EXPECT_ID] = { .type = NLA_U32 },
2118 [CTA_EXPECT_HELP_NAME] = { .type = NLA_NUL_STRING,
2119 .len = NF_CT_HELPER_NAME_LEN - 1 },
2120 [CTA_EXPECT_ZONE] = { .type = NLA_U16 },
2121 [CTA_EXPECT_FLAGS] = { .type = NLA_U32 },
2122 [CTA_EXPECT_CLASS] = { .type = NLA_U32 },
2123 [CTA_EXPECT_NAT] = { .type = NLA_NESTED },
2124 [CTA_EXPECT_FN] = { .type = NLA_NUL_STRING },
2125};
2126
2127static struct nf_conntrack_expect *
2128ctnetlink_alloc_expect(const struct nlattr *const cda[], struct nf_conn *ct,
2129 struct nf_conntrack_helper *helper,
2130 struct nf_conntrack_tuple *tuple,
2131 struct nf_conntrack_tuple *mask);
2132
83f3e94d 2133#ifdef CONFIG_NETFILTER_NETLINK_GLUE_CT
9cb01766 2134static size_t
a4b4766c 2135ctnetlink_glue_build_size(const struct nf_conn *ct)
9cb01766
PNA
2136{
2137 return 3 * nla_total_size(0) /* CTA_TUPLE_ORIG|REPL|MASTER */
2138 + 3 * nla_total_size(0) /* CTA_TUPLE_IP */
2139 + 3 * nla_total_size(0) /* CTA_TUPLE_PROTO */
2140 + 3 * nla_total_size(sizeof(u_int8_t)) /* CTA_PROTO_NUM */
2141 + nla_total_size(sizeof(u_int32_t)) /* CTA_ID */
2142 + nla_total_size(sizeof(u_int32_t)) /* CTA_STATUS */
2143 + nla_total_size(sizeof(u_int32_t)) /* CTA_TIMEOUT */
2144 + nla_total_size(0) /* CTA_PROTOINFO */
2145 + nla_total_size(0) /* CTA_HELP */
2146 + nla_total_size(NF_CT_HELPER_NAME_LEN) /* CTA_HELP_NAME */
2147 + ctnetlink_secctx_size(ct)
2148#ifdef CONFIG_NF_NAT_NEEDED
2149 + 2 * nla_total_size(0) /* CTA_NAT_SEQ_ADJ_ORIG|REPL */
2150 + 6 * nla_total_size(sizeof(u_int32_t)) /* CTA_NAT_SEQ_OFFSET */
2151#endif
2152#ifdef CONFIG_NF_CONNTRACK_MARK
2153 + nla_total_size(sizeof(u_int32_t)) /* CTA_MARK */
4a001068
KM
2154#endif
2155#ifdef CONFIG_NF_CONNTRACK_ZONES
deedb590 2156 + nla_total_size(sizeof(u_int16_t)) /* CTA_ZONE|CTA_TUPLE_ZONE */
9cb01766
PNA
2157#endif
2158 + ctnetlink_proto_size(ct)
2159 ;
2160}
2161
224a0597 2162static struct nf_conn *ctnetlink_glue_get_ct(const struct sk_buff *skb,
a4b4766c 2163 enum ip_conntrack_info *ctinfo)
b7bd1809
PNA
2164{
2165 struct nf_conn *ct;
2166
2167 ct = nf_ct_get(skb, ctinfo);
2168 if (ct && nf_ct_is_untracked(ct))
2169 ct = NULL;
2170
2171 return ct;
2172}
2173
a4b4766c 2174static int __ctnetlink_glue_build(struct sk_buff *skb, struct nf_conn *ct)
9cb01766 2175{
308ac914 2176 const struct nf_conntrack_zone *zone;
9cb01766
PNA
2177 struct nlattr *nest_parms;
2178
2179 rcu_read_lock();
deedb590
DB
2180 zone = nf_ct_zone(ct);
2181
9cb01766
PNA
2182 nest_parms = nla_nest_start(skb, CTA_TUPLE_ORIG | NLA_F_NESTED);
2183 if (!nest_parms)
2184 goto nla_put_failure;
2185 if (ctnetlink_dump_tuples(skb, nf_ct_tuple(ct, IP_CT_DIR_ORIGINAL)) < 0)
2186 goto nla_put_failure;
deedb590
DB
2187 if (ctnetlink_dump_zone_id(skb, CTA_TUPLE_ZONE, zone,
2188 NF_CT_ZONE_DIR_ORIG) < 0)
2189 goto nla_put_failure;
9cb01766
PNA
2190 nla_nest_end(skb, nest_parms);
2191
2192 nest_parms = nla_nest_start(skb, CTA_TUPLE_REPLY | NLA_F_NESTED);
2193 if (!nest_parms)
2194 goto nla_put_failure;
2195 if (ctnetlink_dump_tuples(skb, nf_ct_tuple(ct, IP_CT_DIR_REPLY)) < 0)
2196 goto nla_put_failure;
deedb590
DB
2197 if (ctnetlink_dump_zone_id(skb, CTA_TUPLE_ZONE, zone,
2198 NF_CT_ZONE_DIR_REPL) < 0)
2199 goto nla_put_failure;
9cb01766
PNA
2200 nla_nest_end(skb, nest_parms);
2201
deedb590
DB
2202 if (ctnetlink_dump_zone_id(skb, CTA_ZONE, zone,
2203 NF_CT_DEFAULT_ZONE_DIR) < 0)
308ac914 2204 goto nla_put_failure;
9cb01766
PNA
2205
2206 if (ctnetlink_dump_id(skb, ct) < 0)
2207 goto nla_put_failure;
2208
2209 if (ctnetlink_dump_status(skb, ct) < 0)
2210 goto nla_put_failure;
2211
2212 if (ctnetlink_dump_timeout(skb, ct) < 0)
2213 goto nla_put_failure;
2214
2215 if (ctnetlink_dump_protoinfo(skb, ct) < 0)
2216 goto nla_put_failure;
2217
2218 if (ctnetlink_dump_helpinfo(skb, ct) < 0)
2219 goto nla_put_failure;
2220
2221#ifdef CONFIG_NF_CONNTRACK_SECMARK
2222 if (ct->secmark && ctnetlink_dump_secctx(skb, ct) < 0)
2223 goto nla_put_failure;
2224#endif
2225 if (ct->master && ctnetlink_dump_master(skb, ct) < 0)
2226 goto nla_put_failure;
2227
2228 if ((ct->status & IPS_SEQ_ADJUST) &&
41d73ec0 2229 ctnetlink_dump_ct_seq_adj(skb, ct) < 0)
9cb01766
PNA
2230 goto nla_put_failure;
2231
2232#ifdef CONFIG_NF_CONNTRACK_MARK
2233 if (ct->mark && ctnetlink_dump_mark(skb, ct) < 0)
2234 goto nla_put_failure;
2235#endif
0ceabd83
FW
2236 if (ctnetlink_dump_labels(skb, ct) < 0)
2237 goto nla_put_failure;
9cb01766
PNA
2238 rcu_read_unlock();
2239 return 0;
2240
2241nla_put_failure:
2242 rcu_read_unlock();
2243 return -ENOSPC;
2244}
2245
b7bd1809 2246static int
a4b4766c
KM
2247ctnetlink_glue_build(struct sk_buff *skb, struct nf_conn *ct,
2248 enum ip_conntrack_info ctinfo,
2249 u_int16_t ct_attr, u_int16_t ct_info_attr)
b7bd1809
PNA
2250{
2251 struct nlattr *nest_parms;
2252
2253 nest_parms = nla_nest_start(skb, ct_attr | NLA_F_NESTED);
2254 if (!nest_parms)
2255 goto nla_put_failure;
2256
a4b4766c 2257 if (__ctnetlink_glue_build(skb, ct) < 0)
b7bd1809
PNA
2258 goto nla_put_failure;
2259
2260 nla_nest_end(skb, nest_parms);
2261
2262 if (nla_put_be32(skb, ct_info_attr, htonl(ctinfo)))
2263 goto nla_put_failure;
2264
2265 return 0;
2266
2267nla_put_failure:
2268 return -ENOSPC;
2269}
2270
a963d710
KC
2271static int
2272ctnetlink_update_status(struct nf_conn *ct, const struct nlattr * const cda[])
2273{
2274 unsigned int status = ntohl(nla_get_be32(cda[CTA_STATUS]));
2275 unsigned long d = ct->status ^ status;
2276
2277 if (d & IPS_SEEN_REPLY && !(status & IPS_SEEN_REPLY))
2278 /* SEEN_REPLY bit can only be set */
2279 return -EBUSY;
2280
2281 if (d & IPS_ASSURED && !(status & IPS_ASSURED))
2282 /* ASSURED bit can only be set */
2283 return -EBUSY;
2284
2285 /* This check is less strict than ctnetlink_change_status()
2286 * because callers often flip IPS_EXPECTED bits when sending
2287 * an NFQA_CT attribute to the kernel. So ignore the
2288 * unchangeable bits but do not error out.
2289 */
2290 ct->status = (status & ~IPS_UNCHANGEABLE_MASK) |
2291 (ct->status & IPS_UNCHANGEABLE_MASK);
2292 return 0;
2293}
2294
9cb01766 2295static int
a4b4766c 2296ctnetlink_glue_parse_ct(const struct nlattr *cda[], struct nf_conn *ct)
9cb01766
PNA
2297{
2298 int err;
2299
2300 if (cda[CTA_TIMEOUT]) {
2301 err = ctnetlink_change_timeout(ct, cda);
2302 if (err < 0)
2303 return err;
2304 }
2305 if (cda[CTA_STATUS]) {
a963d710 2306 err = ctnetlink_update_status(ct, cda);
9cb01766
PNA
2307 if (err < 0)
2308 return err;
2309 }
2310 if (cda[CTA_HELP]) {
2311 err = ctnetlink_change_helper(ct, cda);
2312 if (err < 0)
2313 return err;
2314 }
9b21f6a9
FW
2315 if (cda[CTA_LABELS]) {
2316 err = ctnetlink_attach_labels(ct, cda);
2317 if (err < 0)
2318 return err;
2319 }
9cb01766 2320#if defined(CONFIG_NF_CONNTRACK_MARK)
534473c6
FW
2321 if (cda[CTA_MARK]) {
2322 u32 mask = 0, mark, newmark;
2323 if (cda[CTA_MARK_MASK])
2324 mask = ~ntohl(nla_get_be32(cda[CTA_MARK_MASK]));
2325
2326 mark = ntohl(nla_get_be32(cda[CTA_MARK]));
2327 newmark = (ct->mark & mask) ^ mark;
2328 if (newmark != ct->mark)
2329 ct->mark = newmark;
2330 }
9cb01766
PNA
2331#endif
2332 return 0;
2333}
2334
2335static int
a4b4766c 2336ctnetlink_glue_parse(const struct nlattr *attr, struct nf_conn *ct)
9cb01766
PNA
2337{
2338 struct nlattr *cda[CTA_MAX+1];
68e035c9 2339 int ret;
9cb01766 2340
130ffbc2
DB
2341 ret = nla_parse_nested(cda, CTA_MAX, attr, ct_nla_policy);
2342 if (ret < 0)
2343 return ret;
9cb01766 2344
ca7433df 2345 spin_lock_bh(&nf_conntrack_expect_lock);
a4b4766c 2346 ret = ctnetlink_glue_parse_ct((const struct nlattr **)cda, ct);
ca7433df 2347 spin_unlock_bh(&nf_conntrack_expect_lock);
68e035c9
PNA
2348
2349 return ret;
9cb01766
PNA
2350}
2351
a4b4766c
KM
2352static int ctnetlink_glue_exp_parse(const struct nlattr * const *cda,
2353 const struct nf_conn *ct,
2354 struct nf_conntrack_tuple *tuple,
2355 struct nf_conntrack_tuple *mask)
bd077937
PNA
2356{
2357 int err;
2358
2359 err = ctnetlink_parse_tuple(cda, tuple, CTA_EXPECT_TUPLE,
deedb590 2360 nf_ct_l3num(ct), NULL);
bd077937
PNA
2361 if (err < 0)
2362 return err;
2363
2364 return ctnetlink_parse_tuple(cda, mask, CTA_EXPECT_MASK,
deedb590 2365 nf_ct_l3num(ct), NULL);
bd077937
PNA
2366}
2367
2368static int
a4b4766c
KM
2369ctnetlink_glue_attach_expect(const struct nlattr *attr, struct nf_conn *ct,
2370 u32 portid, u32 report)
bd077937
PNA
2371{
2372 struct nlattr *cda[CTA_EXPECT_MAX+1];
2373 struct nf_conntrack_tuple tuple, mask;
b7e092c0 2374 struct nf_conntrack_helper *helper = NULL;
bd077937
PNA
2375 struct nf_conntrack_expect *exp;
2376 int err;
2377
2378 err = nla_parse_nested(cda, CTA_EXPECT_MAX, attr, exp_nla_policy);
2379 if (err < 0)
2380 return err;
2381
a4b4766c
KM
2382 err = ctnetlink_glue_exp_parse((const struct nlattr * const *)cda,
2383 ct, &tuple, &mask);
bd077937
PNA
2384 if (err < 0)
2385 return err;
2386
2387 if (cda[CTA_EXPECT_HELP_NAME]) {
2388 const char *helpname = nla_data(cda[CTA_EXPECT_HELP_NAME]);
2389
2390 helper = __nf_conntrack_helper_find(helpname, nf_ct_l3num(ct),
2391 nf_ct_protonum(ct));
2392 if (helper == NULL)
2393 return -EOPNOTSUPP;
2394 }
2395
2396 exp = ctnetlink_alloc_expect((const struct nlattr * const *)cda, ct,
2397 helper, &tuple, &mask);
2398 if (IS_ERR(exp))
2399 return PTR_ERR(exp);
2400
2401 err = nf_ct_expect_related_report(exp, portid, report);
b18bcb00
LZ
2402 nf_ct_expect_put(exp);
2403 return err;
bd077937
PNA
2404}
2405
a4b4766c
KM
2406static void ctnetlink_glue_seqadj(struct sk_buff *skb, struct nf_conn *ct,
2407 enum ip_conntrack_info ctinfo, int diff)
b7bd1809
PNA
2408{
2409 if (!(ct->status & IPS_NAT_MASK))
2410 return;
2411
2412 nf_ct_tcp_seqadj_set(skb, ct, ctinfo, diff);
2413}
2414
a4b4766c
KM
2415static struct nfnl_ct_hook ctnetlink_glue_hook = {
2416 .get_ct = ctnetlink_glue_get_ct,
2417 .build_size = ctnetlink_glue_build_size,
2418 .build = ctnetlink_glue_build,
2419 .parse = ctnetlink_glue_parse,
2420 .attach_expect = ctnetlink_glue_attach_expect,
2421 .seq_adjust = ctnetlink_glue_seqadj,
9cb01766 2422};
83f3e94d 2423#endif /* CONFIG_NETFILTER_NETLINK_GLUE_CT */
9cb01766 2424
601e68e1
YH
2425/***********************************************************************
2426 * EXPECT
2427 ***********************************************************************/
c1d10adb 2428
4054ff45
PNA
2429static int ctnetlink_exp_dump_tuple(struct sk_buff *skb,
2430 const struct nf_conntrack_tuple *tuple,
2431 enum ctattr_expect type)
c1d10adb 2432{
df6fb868 2433 struct nlattr *nest_parms;
601e68e1 2434
df6fb868
PM
2435 nest_parms = nla_nest_start(skb, type | NLA_F_NESTED);
2436 if (!nest_parms)
2437 goto nla_put_failure;
c1d10adb 2438 if (ctnetlink_dump_tuples(skb, tuple) < 0)
df6fb868
PM
2439 goto nla_put_failure;
2440 nla_nest_end(skb, nest_parms);
c1d10adb
PNA
2441
2442 return 0;
2443
df6fb868 2444nla_put_failure:
c1d10adb 2445 return -1;
601e68e1 2446}
c1d10adb 2447
4054ff45
PNA
2448static int ctnetlink_exp_dump_mask(struct sk_buff *skb,
2449 const struct nf_conntrack_tuple *tuple,
2450 const struct nf_conntrack_tuple_mask *mask)
1cde6436
PNA
2451{
2452 int ret;
2453 struct nf_conntrack_l3proto *l3proto;
605dcad6 2454 struct nf_conntrack_l4proto *l4proto;
d4156e8c 2455 struct nf_conntrack_tuple m;
df6fb868 2456 struct nlattr *nest_parms;
d4156e8c
PM
2457
2458 memset(&m, 0xFF, sizeof(m));
d4156e8c 2459 memcpy(&m.src.u3, &mask->src.u3, sizeof(m.src.u3));
e578756c
PM
2460 m.src.u.all = mask->src.u.all;
2461 m.dst.protonum = tuple->dst.protonum;
d4156e8c 2462
df6fb868
PM
2463 nest_parms = nla_nest_start(skb, CTA_EXPECT_MASK | NLA_F_NESTED);
2464 if (!nest_parms)
2465 goto nla_put_failure;
1cde6436 2466
3b988ece 2467 rcu_read_lock();
528a3a6f 2468 l3proto = __nf_ct_l3proto_find(tuple->src.l3num);
d4156e8c 2469 ret = ctnetlink_dump_tuples_ip(skb, &m, l3proto);
3b988ece
HS
2470 if (ret >= 0) {
2471 l4proto = __nf_ct_l4proto_find(tuple->src.l3num,
2472 tuple->dst.protonum);
d4156e8c 2473 ret = ctnetlink_dump_tuples_proto(skb, &m, l4proto);
3b988ece
HS
2474 }
2475 rcu_read_unlock();
2476
1cde6436 2477 if (unlikely(ret < 0))
df6fb868 2478 goto nla_put_failure;
1cde6436 2479
df6fb868 2480 nla_nest_end(skb, nest_parms);
1cde6436
PNA
2481
2482 return 0;
2483
df6fb868 2484nla_put_failure:
1cde6436
PNA
2485 return -1;
2486}
2487
c7232c99
PM
2488static const union nf_inet_addr any_addr;
2489
bb5cf80e 2490static int
c1d10adb 2491ctnetlink_exp_dump_expect(struct sk_buff *skb,
601e68e1 2492 const struct nf_conntrack_expect *exp)
c1d10adb
PNA
2493{
2494 struct nf_conn *master = exp->master;
c1216382 2495 long timeout = ((long)exp->timeout.expires - (long)jiffies) / HZ;
bc01befd 2496 struct nf_conn_help *help;
076a0ca0
PNA
2497#ifdef CONFIG_NF_NAT_NEEDED
2498 struct nlattr *nest_parms;
2499 struct nf_conntrack_tuple nat_tuple = {};
2500#endif
544d5c7d
PNA
2501 struct nf_ct_helper_expectfn *expfn;
2502
d978e5da
PM
2503 if (timeout < 0)
2504 timeout = 0;
c1d10adb
PNA
2505
2506 if (ctnetlink_exp_dump_tuple(skb, &exp->tuple, CTA_EXPECT_TUPLE) < 0)
df6fb868 2507 goto nla_put_failure;
1cde6436 2508 if (ctnetlink_exp_dump_mask(skb, &exp->tuple, &exp->mask) < 0)
df6fb868 2509 goto nla_put_failure;
c1d10adb
PNA
2510 if (ctnetlink_exp_dump_tuple(skb,
2511 &master->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
2512 CTA_EXPECT_MASTER) < 0)
df6fb868 2513 goto nla_put_failure;
601e68e1 2514
076a0ca0 2515#ifdef CONFIG_NF_NAT_NEEDED
c7232c99
PM
2516 if (!nf_inet_addr_cmp(&exp->saved_addr, &any_addr) ||
2517 exp->saved_proto.all) {
076a0ca0
PNA
2518 nest_parms = nla_nest_start(skb, CTA_EXPECT_NAT | NLA_F_NESTED);
2519 if (!nest_parms)
2520 goto nla_put_failure;
2521
cc1eb431
DM
2522 if (nla_put_be32(skb, CTA_EXPECT_NAT_DIR, htonl(exp->dir)))
2523 goto nla_put_failure;
076a0ca0
PNA
2524
2525 nat_tuple.src.l3num = nf_ct_l3num(master);
c7232c99 2526 nat_tuple.src.u3 = exp->saved_addr;
076a0ca0
PNA
2527 nat_tuple.dst.protonum = nf_ct_protonum(master);
2528 nat_tuple.src.u = exp->saved_proto;
2529
2530 if (ctnetlink_exp_dump_tuple(skb, &nat_tuple,
2531 CTA_EXPECT_NAT_TUPLE) < 0)
2532 goto nla_put_failure;
2533 nla_nest_end(skb, nest_parms);
2534 }
2535#endif
cc1eb431
DM
2536 if (nla_put_be32(skb, CTA_EXPECT_TIMEOUT, htonl(timeout)) ||
2537 nla_put_be32(skb, CTA_EXPECT_ID, htonl((unsigned long)exp)) ||
2538 nla_put_be32(skb, CTA_EXPECT_FLAGS, htonl(exp->flags)) ||
2539 nla_put_be32(skb, CTA_EXPECT_CLASS, htonl(exp->class)))
2540 goto nla_put_failure;
bc01befd
PNA
2541 help = nfct_help(master);
2542 if (help) {
2543 struct nf_conntrack_helper *helper;
2544
2545 helper = rcu_dereference(help->helper);
cc1eb431
DM
2546 if (helper &&
2547 nla_put_string(skb, CTA_EXPECT_HELP_NAME, helper->name))
2548 goto nla_put_failure;
bc01befd 2549 }
544d5c7d 2550 expfn = nf_ct_helper_expectfn_find_by_symbol(exp->expectfn);
cc1eb431
DM
2551 if (expfn != NULL &&
2552 nla_put_string(skb, CTA_EXPECT_FN, expfn->name))
2553 goto nla_put_failure;
c1d10adb
PNA
2554
2555 return 0;
601e68e1 2556
df6fb868 2557nla_put_failure:
c1d10adb
PNA
2558 return -1;
2559}
2560
2561static int
15e47304 2562ctnetlink_exp_fill_info(struct sk_buff *skb, u32 portid, u32 seq,
8b0a231d 2563 int event, const struct nf_conntrack_expect *exp)
c1d10adb
PNA
2564{
2565 struct nlmsghdr *nlh;
2566 struct nfgenmsg *nfmsg;
15e47304 2567 unsigned int flags = portid ? NLM_F_MULTI : 0;
c1d10adb
PNA
2568
2569 event |= NFNL_SUBSYS_CTNETLINK_EXP << 8;
15e47304 2570 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*nfmsg), flags);
96bcf938
PNA
2571 if (nlh == NULL)
2572 goto nlmsg_failure;
c1d10adb 2573
96bcf938 2574 nfmsg = nlmsg_data(nlh);
c1d10adb
PNA
2575 nfmsg->nfgen_family = exp->tuple.src.l3num;
2576 nfmsg->version = NFNETLINK_V0;
2577 nfmsg->res_id = 0;
2578
2579 if (ctnetlink_exp_dump_expect(skb, exp) < 0)
df6fb868 2580 goto nla_put_failure;
c1d10adb 2581
96bcf938 2582 nlmsg_end(skb, nlh);
c1d10adb
PNA
2583 return skb->len;
2584
2585nlmsg_failure:
df6fb868 2586nla_put_failure:
96bcf938 2587 nlmsg_cancel(skb, nlh);
c1d10adb
PNA
2588 return -1;
2589}
2590
2591#ifdef CONFIG_NF_CONNTRACK_EVENTS
e34d5c1a
PNA
2592static int
2593ctnetlink_expect_event(unsigned int events, struct nf_exp_event *item)
c1d10adb 2594{
9592a5c0
AD
2595 struct nf_conntrack_expect *exp = item->exp;
2596 struct net *net = nf_ct_exp_net(exp);
c1d10adb
PNA
2597 struct nlmsghdr *nlh;
2598 struct nfgenmsg *nfmsg;
c1d10adb 2599 struct sk_buff *skb;
ebbf41df 2600 unsigned int type, group;
c1d10adb
PNA
2601 int flags = 0;
2602
ebbf41df
PNA
2603 if (events & (1 << IPEXP_DESTROY)) {
2604 type = IPCTNL_MSG_EXP_DELETE;
2605 group = NFNLGRP_CONNTRACK_EXP_DESTROY;
2606 } else if (events & (1 << IPEXP_NEW)) {
c1d10adb
PNA
2607 type = IPCTNL_MSG_EXP_NEW;
2608 flags = NLM_F_CREATE|NLM_F_EXCL;
ebbf41df 2609 group = NFNLGRP_CONNTRACK_EXP_NEW;
c1d10adb 2610 } else
e34d5c1a 2611 return 0;
c1d10adb 2612
ebbf41df 2613 if (!item->report && !nfnetlink_has_listeners(net, group))
e34d5c1a 2614 return 0;
b3a27bfb 2615
96bcf938
PNA
2616 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
2617 if (skb == NULL)
150ace0d 2618 goto errout;
c1d10adb 2619
b633ad5f 2620 type |= NFNL_SUBSYS_CTNETLINK_EXP << 8;
15e47304 2621 nlh = nlmsg_put(skb, item->portid, 0, type, sizeof(*nfmsg), flags);
96bcf938
PNA
2622 if (nlh == NULL)
2623 goto nlmsg_failure;
c1d10adb 2624
96bcf938 2625 nfmsg = nlmsg_data(nlh);
c1d10adb
PNA
2626 nfmsg->nfgen_family = exp->tuple.src.l3num;
2627 nfmsg->version = NFNETLINK_V0;
2628 nfmsg->res_id = 0;
2629
528a3a6f 2630 rcu_read_lock();
c1d10adb 2631 if (ctnetlink_exp_dump_expect(skb, exp) < 0)
df6fb868 2632 goto nla_put_failure;
528a3a6f 2633 rcu_read_unlock();
c1d10adb 2634
96bcf938 2635 nlmsg_end(skb, nlh);
15e47304 2636 nfnetlink_send(skb, net, item->portid, group, item->report, GFP_ATOMIC);
e34d5c1a 2637 return 0;
c1d10adb 2638
df6fb868 2639nla_put_failure:
528a3a6f 2640 rcu_read_unlock();
96bcf938 2641 nlmsg_cancel(skb, nlh);
528a3a6f 2642nlmsg_failure:
c1d10adb 2643 kfree_skb(skb);
150ace0d 2644errout:
9592a5c0 2645 nfnetlink_set_err(net, 0, 0, -ENOBUFS);
e34d5c1a 2646 return 0;
c1d10adb
PNA
2647}
2648#endif
cf6994c2
PM
2649static int ctnetlink_exp_done(struct netlink_callback *cb)
2650{
31f15875
PM
2651 if (cb->args[1])
2652 nf_ct_expect_put((struct nf_conntrack_expect *)cb->args[1]);
cf6994c2
PM
2653 return 0;
2654}
c1d10adb
PNA
2655
2656static int
2657ctnetlink_exp_dump_table(struct sk_buff *skb, struct netlink_callback *cb)
2658{
9592a5c0 2659 struct net *net = sock_net(skb->sk);
cf6994c2 2660 struct nf_conntrack_expect *exp, *last;
96bcf938 2661 struct nfgenmsg *nfmsg = nlmsg_data(cb->nlh);
87711cb8 2662 u_int8_t l3proto = nfmsg->nfgen_family;
c1d10adb 2663
7d0742da 2664 rcu_read_lock();
31f15875
PM
2665 last = (struct nf_conntrack_expect *)cb->args[1];
2666 for (; cb->args[0] < nf_ct_expect_hsize; cb->args[0]++) {
cf6994c2 2667restart:
7cddd967
LZ
2668 hlist_for_each_entry_rcu(exp, &nf_ct_expect_hash[cb->args[0]],
2669 hnode) {
31f15875 2670 if (l3proto && exp->tuple.src.l3num != l3proto)
cf6994c2 2671 continue;
03d7dc5c
FW
2672
2673 if (!net_eq(nf_ct_net(exp->master), net))
2674 continue;
2675
31f15875
PM
2676 if (cb->args[1]) {
2677 if (exp != last)
2678 continue;
2679 cb->args[1] = 0;
2680 }
8b0a231d 2681 if (ctnetlink_exp_fill_info(skb,
15e47304 2682 NETLINK_CB(cb->skb).portid,
31f15875
PM
2683 cb->nlh->nlmsg_seq,
2684 IPCTNL_MSG_EXP_NEW,
8b0a231d 2685 exp) < 0) {
7d0742da
PM
2686 if (!atomic_inc_not_zero(&exp->use))
2687 continue;
31f15875
PM
2688 cb->args[1] = (unsigned long)exp;
2689 goto out;
2690 }
cf6994c2 2691 }
31f15875
PM
2692 if (cb->args[1]) {
2693 cb->args[1] = 0;
2694 goto restart;
cf6994c2
PM
2695 }
2696 }
601e68e1 2697out:
7d0742da 2698 rcu_read_unlock();
cf6994c2
PM
2699 if (last)
2700 nf_ct_expect_put(last);
c1d10adb 2701
c1d10adb
PNA
2702 return skb->len;
2703}
2704
e844a928
PNA
2705static int
2706ctnetlink_exp_ct_dump_table(struct sk_buff *skb, struct netlink_callback *cb)
2707{
2708 struct nf_conntrack_expect *exp, *last;
2709 struct nfgenmsg *nfmsg = nlmsg_data(cb->nlh);
2710 struct nf_conn *ct = cb->data;
2711 struct nf_conn_help *help = nfct_help(ct);
2712 u_int8_t l3proto = nfmsg->nfgen_family;
2713
2714 if (cb->args[0])
2715 return 0;
2716
2717 rcu_read_lock();
2718 last = (struct nf_conntrack_expect *)cb->args[1];
2719restart:
7cddd967 2720 hlist_for_each_entry_rcu(exp, &help->expectations, lnode) {
e844a928
PNA
2721 if (l3proto && exp->tuple.src.l3num != l3proto)
2722 continue;
2723 if (cb->args[1]) {
2724 if (exp != last)
2725 continue;
2726 cb->args[1] = 0;
2727 }
2728 if (ctnetlink_exp_fill_info(skb, NETLINK_CB(cb->skb).portid,
2729 cb->nlh->nlmsg_seq,
2730 IPCTNL_MSG_EXP_NEW,
2731 exp) < 0) {
2732 if (!atomic_inc_not_zero(&exp->use))
2733 continue;
2734 cb->args[1] = (unsigned long)exp;
2735 goto out;
2736 }
2737 }
2738 if (cb->args[1]) {
2739 cb->args[1] = 0;
2740 goto restart;
2741 }
2742 cb->args[0] = 1;
2743out:
2744 rcu_read_unlock();
2745 if (last)
2746 nf_ct_expect_put(last);
2747
2748 return skb->len;
2749}
2750
7b8002a1
PNA
2751static int ctnetlink_dump_exp_ct(struct net *net, struct sock *ctnl,
2752 struct sk_buff *skb,
e844a928
PNA
2753 const struct nlmsghdr *nlh,
2754 const struct nlattr * const cda[])
2755{
2756 int err;
e844a928
PNA
2757 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
2758 u_int8_t u3 = nfmsg->nfgen_family;
2759 struct nf_conntrack_tuple tuple;
2760 struct nf_conntrack_tuple_hash *h;
2761 struct nf_conn *ct;
308ac914 2762 struct nf_conntrack_zone zone;
e844a928
PNA
2763 struct netlink_dump_control c = {
2764 .dump = ctnetlink_exp_ct_dump_table,
2765 .done = ctnetlink_exp_done,
2766 };
2767
deedb590
DB
2768 err = ctnetlink_parse_tuple(cda, &tuple, CTA_EXPECT_MASTER,
2769 u3, NULL);
e844a928
PNA
2770 if (err < 0)
2771 return err;
2772
308ac914
DB
2773 err = ctnetlink_parse_zone(cda[CTA_EXPECT_ZONE], &zone);
2774 if (err < 0)
2775 return err;
e844a928 2776
308ac914 2777 h = nf_conntrack_find_get(net, &zone, &tuple);
e844a928
PNA
2778 if (!h)
2779 return -ENOENT;
2780
2781 ct = nf_ct_tuplehash_to_ctrack(h);
207df815
LZ
2782 /* No expectation linked to this connection tracking. */
2783 if (!nfct_help(ct)) {
2784 nf_ct_put(ct);
2785 return 0;
2786 }
2787
e844a928
PNA
2788 c.data = ct;
2789
2790 err = netlink_dump_start(ctnl, skb, nlh, &c);
2791 nf_ct_put(ct);
2792
2793 return err;
2794}
2795
7b8002a1
PNA
2796static int ctnetlink_get_expect(struct net *net, struct sock *ctnl,
2797 struct sk_buff *skb, const struct nlmsghdr *nlh,
2798 const struct nlattr * const cda[])
c1d10adb
PNA
2799{
2800 struct nf_conntrack_tuple tuple;
2801 struct nf_conntrack_expect *exp;
2802 struct sk_buff *skb2;
96bcf938 2803 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
c1d10adb 2804 u_int8_t u3 = nfmsg->nfgen_family;
308ac914 2805 struct nf_conntrack_zone zone;
ef00f89f 2806 int err;
c1d10adb 2807
b8f3ab42 2808 if (nlh->nlmsg_flags & NLM_F_DUMP) {
e844a928 2809 if (cda[CTA_EXPECT_MASTER])
7b8002a1 2810 return ctnetlink_dump_exp_ct(net, ctnl, skb, nlh, cda);
e844a928
PNA
2811 else {
2812 struct netlink_dump_control c = {
2813 .dump = ctnetlink_exp_dump_table,
2814 .done = ctnetlink_exp_done,
2815 };
2816 return netlink_dump_start(ctnl, skb, nlh, &c);
2817 }
c1d10adb
PNA
2818 }
2819
ef00f89f
PM
2820 err = ctnetlink_parse_zone(cda[CTA_EXPECT_ZONE], &zone);
2821 if (err < 0)
2822 return err;
2823
35dba1d7 2824 if (cda[CTA_EXPECT_TUPLE])
deedb590
DB
2825 err = ctnetlink_parse_tuple(cda, &tuple, CTA_EXPECT_TUPLE,
2826 u3, NULL);
35dba1d7 2827 else if (cda[CTA_EXPECT_MASTER])
deedb590
DB
2828 err = ctnetlink_parse_tuple(cda, &tuple, CTA_EXPECT_MASTER,
2829 u3, NULL);
c1d10adb
PNA
2830 else
2831 return -EINVAL;
2832
2833 if (err < 0)
2834 return err;
2835
308ac914 2836 exp = nf_ct_expect_find_get(net, &zone, &tuple);
c1d10adb
PNA
2837 if (!exp)
2838 return -ENOENT;
2839
df6fb868 2840 if (cda[CTA_EXPECT_ID]) {
77236b6e 2841 __be32 id = nla_get_be32(cda[CTA_EXPECT_ID]);
35832402 2842 if (ntohl(id) != (u32)(unsigned long)exp) {
6823645d 2843 nf_ct_expect_put(exp);
c1d10adb
PNA
2844 return -ENOENT;
2845 }
601e68e1 2846 }
c1d10adb
PNA
2847
2848 err = -ENOMEM;
96bcf938 2849 skb2 = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
81378f72
PNA
2850 if (skb2 == NULL) {
2851 nf_ct_expect_put(exp);
c1d10adb 2852 goto out;
81378f72 2853 }
4e9b8269 2854
528a3a6f 2855 rcu_read_lock();
15e47304 2856 err = ctnetlink_exp_fill_info(skb2, NETLINK_CB(skb).portid,
8b0a231d 2857 nlh->nlmsg_seq, IPCTNL_MSG_EXP_NEW, exp);
528a3a6f 2858 rcu_read_unlock();
81378f72 2859 nf_ct_expect_put(exp);
c1d10adb
PNA
2860 if (err <= 0)
2861 goto free;
2862
15e47304 2863 err = netlink_unicast(ctnl, skb2, NETLINK_CB(skb).portid, MSG_DONTWAIT);
81378f72
PNA
2864 if (err < 0)
2865 goto out;
c1d10adb 2866
81378f72 2867 return 0;
c1d10adb
PNA
2868
2869free:
2870 kfree_skb(skb2);
2871out:
81378f72
PNA
2872 /* this avoids a loop in nfnetlink. */
2873 return err == -EAGAIN ? -ENOBUFS : err;
c1d10adb
PNA
2874}
2875
7b8002a1
PNA
2876static int ctnetlink_del_expect(struct net *net, struct sock *ctnl,
2877 struct sk_buff *skb, const struct nlmsghdr *nlh,
2878 const struct nlattr * const cda[])
c1d10adb 2879{
31f15875 2880 struct nf_conntrack_expect *exp;
c1d10adb 2881 struct nf_conntrack_tuple tuple;
96bcf938 2882 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
b67bfe0d 2883 struct hlist_node *next;
c1d10adb 2884 u_int8_t u3 = nfmsg->nfgen_family;
308ac914 2885 struct nf_conntrack_zone zone;
31f15875 2886 unsigned int i;
c1d10adb
PNA
2887 int err;
2888
df6fb868 2889 if (cda[CTA_EXPECT_TUPLE]) {
c1d10adb 2890 /* delete a single expect by tuple */
ef00f89f
PM
2891 err = ctnetlink_parse_zone(cda[CTA_EXPECT_ZONE], &zone);
2892 if (err < 0)
2893 return err;
2894
deedb590
DB
2895 err = ctnetlink_parse_tuple(cda, &tuple, CTA_EXPECT_TUPLE,
2896 u3, NULL);
c1d10adb
PNA
2897 if (err < 0)
2898 return err;
2899
2900 /* bump usage count to 2 */
308ac914 2901 exp = nf_ct_expect_find_get(net, &zone, &tuple);
c1d10adb
PNA
2902 if (!exp)
2903 return -ENOENT;
2904
df6fb868 2905 if (cda[CTA_EXPECT_ID]) {
77236b6e 2906 __be32 id = nla_get_be32(cda[CTA_EXPECT_ID]);
35832402 2907 if (ntohl(id) != (u32)(unsigned long)exp) {
6823645d 2908 nf_ct_expect_put(exp);
c1d10adb
PNA
2909 return -ENOENT;
2910 }
2911 }
2912
2913 /* after list removal, usage count == 1 */
ca7433df 2914 spin_lock_bh(&nf_conntrack_expect_lock);
ebbf41df 2915 if (del_timer(&exp->timeout)) {
15e47304 2916 nf_ct_unlink_expect_report(exp, NETLINK_CB(skb).portid,
ebbf41df
PNA
2917 nlmsg_report(nlh));
2918 nf_ct_expect_put(exp);
2919 }
ca7433df 2920 spin_unlock_bh(&nf_conntrack_expect_lock);
601e68e1 2921 /* have to put what we 'get' above.
c1d10adb 2922 * after this line usage count == 0 */
6823645d 2923 nf_ct_expect_put(exp);
df6fb868
PM
2924 } else if (cda[CTA_EXPECT_HELP_NAME]) {
2925 char *name = nla_data(cda[CTA_EXPECT_HELP_NAME]);
31f15875 2926 struct nf_conn_help *m_help;
c1d10adb
PNA
2927
2928 /* delete all expectations for this helper */
ca7433df 2929 spin_lock_bh(&nf_conntrack_expect_lock);
31f15875 2930 for (i = 0; i < nf_ct_expect_hsize; i++) {
b67bfe0d 2931 hlist_for_each_entry_safe(exp, next,
0a93aaed 2932 &nf_ct_expect_hash[i],
31f15875 2933 hnode) {
03d7dc5c
FW
2934
2935 if (!net_eq(nf_ct_exp_net(exp), net))
2936 continue;
2937
31f15875 2938 m_help = nfct_help(exp->master);
794e6871
PM
2939 if (!strcmp(m_help->helper->name, name) &&
2940 del_timer(&exp->timeout)) {
ebbf41df 2941 nf_ct_unlink_expect_report(exp,
15e47304 2942 NETLINK_CB(skb).portid,
ebbf41df 2943 nlmsg_report(nlh));
31f15875
PM
2944 nf_ct_expect_put(exp);
2945 }
c1d10adb
PNA
2946 }
2947 }
ca7433df 2948 spin_unlock_bh(&nf_conntrack_expect_lock);
c1d10adb
PNA
2949 } else {
2950 /* This basically means we have to flush everything*/
ca7433df 2951 spin_lock_bh(&nf_conntrack_expect_lock);
31f15875 2952 for (i = 0; i < nf_ct_expect_hsize; i++) {
b67bfe0d 2953 hlist_for_each_entry_safe(exp, next,
0a93aaed 2954 &nf_ct_expect_hash[i],
31f15875 2955 hnode) {
03d7dc5c
FW
2956
2957 if (!net_eq(nf_ct_exp_net(exp), net))
2958 continue;
2959
31f15875 2960 if (del_timer(&exp->timeout)) {
ebbf41df 2961 nf_ct_unlink_expect_report(exp,
15e47304 2962 NETLINK_CB(skb).portid,
ebbf41df 2963 nlmsg_report(nlh));
31f15875
PM
2964 nf_ct_expect_put(exp);
2965 }
c1d10adb
PNA
2966 }
2967 }
ca7433df 2968 spin_unlock_bh(&nf_conntrack_expect_lock);
c1d10adb
PNA
2969 }
2970
2971 return 0;
2972}
2973static int
39938324
PM
2974ctnetlink_change_expect(struct nf_conntrack_expect *x,
2975 const struct nlattr * const cda[])
c1d10adb 2976{
9768e1ac
KW
2977 if (cda[CTA_EXPECT_TIMEOUT]) {
2978 if (!del_timer(&x->timeout))
2979 return -ETIME;
2980
2981 x->timeout.expires = jiffies +
2982 ntohl(nla_get_be32(cda[CTA_EXPECT_TIMEOUT])) * HZ;
2983 add_timer(&x->timeout);
2984 }
2985 return 0;
c1d10adb
PNA
2986}
2987
076a0ca0
PNA
2988static const struct nla_policy exp_nat_nla_policy[CTA_EXPECT_NAT_MAX+1] = {
2989 [CTA_EXPECT_NAT_DIR] = { .type = NLA_U32 },
2990 [CTA_EXPECT_NAT_TUPLE] = { .type = NLA_NESTED },
2991};
2992
2993static int
2994ctnetlink_parse_expect_nat(const struct nlattr *attr,
2995 struct nf_conntrack_expect *exp,
2996 u_int8_t u3)
2997{
2998#ifdef CONFIG_NF_NAT_NEEDED
2999 struct nlattr *tb[CTA_EXPECT_NAT_MAX+1];
3000 struct nf_conntrack_tuple nat_tuple = {};
3001 int err;
3002
130ffbc2
DB
3003 err = nla_parse_nested(tb, CTA_EXPECT_NAT_MAX, attr, exp_nat_nla_policy);
3004 if (err < 0)
3005 return err;
076a0ca0
PNA
3006
3007 if (!tb[CTA_EXPECT_NAT_DIR] || !tb[CTA_EXPECT_NAT_TUPLE])
3008 return -EINVAL;
3009
3010 err = ctnetlink_parse_tuple((const struct nlattr * const *)tb,
deedb590
DB
3011 &nat_tuple, CTA_EXPECT_NAT_TUPLE,
3012 u3, NULL);
076a0ca0
PNA
3013 if (err < 0)
3014 return err;
3015
c7232c99 3016 exp->saved_addr = nat_tuple.src.u3;
076a0ca0
PNA
3017 exp->saved_proto = nat_tuple.src.u;
3018 exp->dir = ntohl(nla_get_be32(tb[CTA_EXPECT_NAT_DIR]));
3019
3020 return 0;
3021#else
3022 return -EOPNOTSUPP;
3023#endif
3024}
3025
0ef71ee1
PNA
3026static struct nf_conntrack_expect *
3027ctnetlink_alloc_expect(const struct nlattr * const cda[], struct nf_conn *ct,
3028 struct nf_conntrack_helper *helper,
3029 struct nf_conntrack_tuple *tuple,
3030 struct nf_conntrack_tuple *mask)
c1d10adb 3031{
0ef71ee1 3032 u_int32_t class = 0;
c1d10adb 3033 struct nf_conntrack_expect *exp;
dc808fe2 3034 struct nf_conn_help *help;
0ef71ee1 3035 int err;
660fdb2a 3036
b8c5e52c
PNA
3037 if (cda[CTA_EXPECT_CLASS] && helper) {
3038 class = ntohl(nla_get_be32(cda[CTA_EXPECT_CLASS]));
0ef71ee1
PNA
3039 if (class > helper->expect_class_max)
3040 return ERR_PTR(-EINVAL);
b8c5e52c 3041 }
6823645d 3042 exp = nf_ct_expect_alloc(ct);
0ef71ee1
PNA
3043 if (!exp)
3044 return ERR_PTR(-ENOMEM);
3045
bc01befd
PNA
3046 help = nfct_help(ct);
3047 if (!help) {
3048 if (!cda[CTA_EXPECT_TIMEOUT]) {
3049 err = -EINVAL;
1310b955 3050 goto err_out;
bc01befd
PNA
3051 }
3052 exp->timeout.expires =
3053 jiffies + ntohl(nla_get_be32(cda[CTA_EXPECT_TIMEOUT])) * HZ;
601e68e1 3054
bc01befd
PNA
3055 exp->flags = NF_CT_EXPECT_USERSPACE;
3056 if (cda[CTA_EXPECT_FLAGS]) {
3057 exp->flags |=
3058 ntohl(nla_get_be32(cda[CTA_EXPECT_FLAGS]));
3059 }
3060 } else {
3061 if (cda[CTA_EXPECT_FLAGS]) {
3062 exp->flags = ntohl(nla_get_be32(cda[CTA_EXPECT_FLAGS]));
3063 exp->flags &= ~NF_CT_EXPECT_USERSPACE;
3064 } else
3065 exp->flags = 0;
3066 }
544d5c7d
PNA
3067 if (cda[CTA_EXPECT_FN]) {
3068 const char *name = nla_data(cda[CTA_EXPECT_FN]);
3069 struct nf_ct_helper_expectfn *expfn;
3070
3071 expfn = nf_ct_helper_expectfn_find_by_name(name);
3072 if (expfn == NULL) {
3073 err = -EINVAL;
3074 goto err_out;
3075 }
3076 exp->expectfn = expfn->expectfn;
3077 } else
3078 exp->expectfn = NULL;
601e68e1 3079
b8c5e52c 3080 exp->class = class;
c1d10adb 3081 exp->master = ct;
660fdb2a 3082 exp->helper = helper;
0ef71ee1
PNA
3083 exp->tuple = *tuple;
3084 exp->mask.src.u3 = mask->src.u3;
3085 exp->mask.src.u.all = mask->src.u.all;
c1d10adb 3086
076a0ca0
PNA
3087 if (cda[CTA_EXPECT_NAT]) {
3088 err = ctnetlink_parse_expect_nat(cda[CTA_EXPECT_NAT],
0ef71ee1 3089 exp, nf_ct_l3num(ct));
076a0ca0
PNA
3090 if (err < 0)
3091 goto err_out;
3092 }
0ef71ee1 3093 return exp;
076a0ca0 3094err_out:
6823645d 3095 nf_ct_expect_put(exp);
0ef71ee1
PNA
3096 return ERR_PTR(err);
3097}
3098
3099static int
308ac914
DB
3100ctnetlink_create_expect(struct net *net,
3101 const struct nf_conntrack_zone *zone,
0ef71ee1
PNA
3102 const struct nlattr * const cda[],
3103 u_int8_t u3, u32 portid, int report)
3104{
3105 struct nf_conntrack_tuple tuple, mask, master_tuple;
3106 struct nf_conntrack_tuple_hash *h = NULL;
3107 struct nf_conntrack_helper *helper = NULL;
3108 struct nf_conntrack_expect *exp;
3109 struct nf_conn *ct;
3110 int err;
3111
3112 /* caller guarantees that those three CTA_EXPECT_* exist */
deedb590
DB
3113 err = ctnetlink_parse_tuple(cda, &tuple, CTA_EXPECT_TUPLE,
3114 u3, NULL);
0ef71ee1
PNA
3115 if (err < 0)
3116 return err;
deedb590
DB
3117 err = ctnetlink_parse_tuple(cda, &mask, CTA_EXPECT_MASK,
3118 u3, NULL);
0ef71ee1
PNA
3119 if (err < 0)
3120 return err;
deedb590
DB
3121 err = ctnetlink_parse_tuple(cda, &master_tuple, CTA_EXPECT_MASTER,
3122 u3, NULL);
0ef71ee1
PNA
3123 if (err < 0)
3124 return err;
3125
3126 /* Look for master conntrack of this expectation */
3127 h = nf_conntrack_find_get(net, zone, &master_tuple);
3128 if (!h)
3129 return -ENOENT;
3130 ct = nf_ct_tuplehash_to_ctrack(h);
3131
8b5995d0 3132 rcu_read_lock();
0ef71ee1
PNA
3133 if (cda[CTA_EXPECT_HELP_NAME]) {
3134 const char *helpname = nla_data(cda[CTA_EXPECT_HELP_NAME]);
3135
3136 helper = __nf_conntrack_helper_find(helpname, u3,
3137 nf_ct_protonum(ct));
3138 if (helper == NULL) {
8b5995d0 3139 rcu_read_unlock();
0ef71ee1
PNA
3140#ifdef CONFIG_MODULES
3141 if (request_module("nfct-helper-%s", helpname) < 0) {
3142 err = -EOPNOTSUPP;
3143 goto err_ct;
3144 }
8b5995d0 3145 rcu_read_lock();
0ef71ee1
PNA
3146 helper = __nf_conntrack_helper_find(helpname, u3,
3147 nf_ct_protonum(ct));
3148 if (helper) {
3149 err = -EAGAIN;
8b5995d0 3150 goto err_rcu;
0ef71ee1 3151 }
8b5995d0 3152 rcu_read_unlock();
0ef71ee1
PNA
3153#endif
3154 err = -EOPNOTSUPP;
3155 goto err_ct;
3156 }
3157 }
3158
3159 exp = ctnetlink_alloc_expect(cda, ct, helper, &tuple, &mask);
3160 if (IS_ERR(exp)) {
3161 err = PTR_ERR(exp);
8b5995d0 3162 goto err_rcu;
0ef71ee1
PNA
3163 }
3164
3165 err = nf_ct_expect_related_report(exp, portid, report);
0ef71ee1 3166 nf_ct_expect_put(exp);
8b5995d0
GF
3167err_rcu:
3168 rcu_read_unlock();
0ef71ee1
PNA
3169err_ct:
3170 nf_ct_put(ct);
c1d10adb
PNA
3171 return err;
3172}
3173
7b8002a1
PNA
3174static int ctnetlink_new_expect(struct net *net, struct sock *ctnl,
3175 struct sk_buff *skb, const struct nlmsghdr *nlh,
3176 const struct nlattr * const cda[])
c1d10adb
PNA
3177{
3178 struct nf_conntrack_tuple tuple;
3179 struct nf_conntrack_expect *exp;
96bcf938 3180 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
c1d10adb 3181 u_int8_t u3 = nfmsg->nfgen_family;
308ac914 3182 struct nf_conntrack_zone zone;
ef00f89f 3183 int err;
c1d10adb 3184
df6fb868
PM
3185 if (!cda[CTA_EXPECT_TUPLE]
3186 || !cda[CTA_EXPECT_MASK]
3187 || !cda[CTA_EXPECT_MASTER])
c1d10adb
PNA
3188 return -EINVAL;
3189
ef00f89f
PM
3190 err = ctnetlink_parse_zone(cda[CTA_EXPECT_ZONE], &zone);
3191 if (err < 0)
3192 return err;
3193
deedb590
DB
3194 err = ctnetlink_parse_tuple(cda, &tuple, CTA_EXPECT_TUPLE,
3195 u3, NULL);
c1d10adb
PNA
3196 if (err < 0)
3197 return err;
3198
ca7433df 3199 spin_lock_bh(&nf_conntrack_expect_lock);
308ac914 3200 exp = __nf_ct_expect_find(net, &zone, &tuple);
c1d10adb 3201 if (!exp) {
ca7433df 3202 spin_unlock_bh(&nf_conntrack_expect_lock);
c1d10adb 3203 err = -ENOENT;
19abb7b0 3204 if (nlh->nlmsg_flags & NLM_F_CREATE) {
308ac914 3205 err = ctnetlink_create_expect(net, &zone, cda, u3,
15e47304 3206 NETLINK_CB(skb).portid,
19abb7b0
PNA
3207 nlmsg_report(nlh));
3208 }
c1d10adb
PNA
3209 return err;
3210 }
3211
3212 err = -EEXIST;
3213 if (!(nlh->nlmsg_flags & NLM_F_EXCL))
3214 err = ctnetlink_change_expect(exp, cda);
ca7433df 3215 spin_unlock_bh(&nf_conntrack_expect_lock);
c1d10adb 3216
c1d10adb
PNA
3217 return err;
3218}
3219
392025f8 3220static int
15e47304 3221ctnetlink_exp_stat_fill_info(struct sk_buff *skb, u32 portid, u32 seq, int cpu,
392025f8
PNA
3222 const struct ip_conntrack_stat *st)
3223{
3224 struct nlmsghdr *nlh;
3225 struct nfgenmsg *nfmsg;
15e47304 3226 unsigned int flags = portid ? NLM_F_MULTI : 0, event;
392025f8
PNA
3227
3228 event = (NFNL_SUBSYS_CTNETLINK << 8 | IPCTNL_MSG_EXP_GET_STATS_CPU);
15e47304 3229 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*nfmsg), flags);
392025f8
PNA
3230 if (nlh == NULL)
3231 goto nlmsg_failure;
3232
3233 nfmsg = nlmsg_data(nlh);
3234 nfmsg->nfgen_family = AF_UNSPEC;
3235 nfmsg->version = NFNETLINK_V0;
3236 nfmsg->res_id = htons(cpu);
3237
3238 if (nla_put_be32(skb, CTA_STATS_EXP_NEW, htonl(st->expect_new)) ||
3239 nla_put_be32(skb, CTA_STATS_EXP_CREATE, htonl(st->expect_create)) ||
3240 nla_put_be32(skb, CTA_STATS_EXP_DELETE, htonl(st->expect_delete)))
3241 goto nla_put_failure;
3242
3243 nlmsg_end(skb, nlh);
3244 return skb->len;
3245
3246nla_put_failure:
3247nlmsg_failure:
3248 nlmsg_cancel(skb, nlh);
3249 return -1;
3250}
3251
3252static int
3253ctnetlink_exp_stat_cpu_dump(struct sk_buff *skb, struct netlink_callback *cb)
3254{
3255 int cpu;
3256 struct net *net = sock_net(skb->sk);
3257
3258 if (cb->args[0] == nr_cpu_ids)
3259 return 0;
3260
3261 for (cpu = cb->args[0]; cpu < nr_cpu_ids; cpu++) {
3262 const struct ip_conntrack_stat *st;
3263
3264 if (!cpu_possible(cpu))
3265 continue;
3266
3267 st = per_cpu_ptr(net->ct.stat, cpu);
15e47304 3268 if (ctnetlink_exp_stat_fill_info(skb, NETLINK_CB(cb->skb).portid,
392025f8
PNA
3269 cb->nlh->nlmsg_seq,
3270 cpu, st) < 0)
3271 break;
3272 }
3273 cb->args[0] = cpu;
3274
3275 return skb->len;
3276}
3277
7b8002a1
PNA
3278static int ctnetlink_stat_exp_cpu(struct net *net, struct sock *ctnl,
3279 struct sk_buff *skb,
3280 const struct nlmsghdr *nlh,
3281 const struct nlattr * const cda[])
392025f8
PNA
3282{
3283 if (nlh->nlmsg_flags & NLM_F_DUMP) {
3284 struct netlink_dump_control c = {
3285 .dump = ctnetlink_exp_stat_cpu_dump,
3286 };
3287 return netlink_dump_start(ctnl, skb, nlh, &c);
3288 }
3289
3290 return 0;
3291}
3292
c1d10adb 3293#ifdef CONFIG_NF_CONNTRACK_EVENTS
e34d5c1a
PNA
3294static struct nf_ct_event_notifier ctnl_notifier = {
3295 .fcn = ctnetlink_conntrack_event,
c1d10adb
PNA
3296};
3297
e34d5c1a
PNA
3298static struct nf_exp_event_notifier ctnl_notifier_exp = {
3299 .fcn = ctnetlink_expect_event,
c1d10adb
PNA
3300};
3301#endif
3302
7c8d4cb4 3303static const struct nfnl_callback ctnl_cb[IPCTNL_MSG_MAX] = {
c1d10adb 3304 [IPCTNL_MSG_CT_NEW] = { .call = ctnetlink_new_conntrack,
f73e924c
PM
3305 .attr_count = CTA_MAX,
3306 .policy = ct_nla_policy },
c1d10adb 3307 [IPCTNL_MSG_CT_GET] = { .call = ctnetlink_get_conntrack,
f73e924c
PM
3308 .attr_count = CTA_MAX,
3309 .policy = ct_nla_policy },
c1d10adb 3310 [IPCTNL_MSG_CT_DELETE] = { .call = ctnetlink_del_conntrack,
f73e924c
PM
3311 .attr_count = CTA_MAX,
3312 .policy = ct_nla_policy },
c1d10adb 3313 [IPCTNL_MSG_CT_GET_CTRZERO] = { .call = ctnetlink_get_conntrack,
f73e924c
PM
3314 .attr_count = CTA_MAX,
3315 .policy = ct_nla_policy },
392025f8
PNA
3316 [IPCTNL_MSG_CT_GET_STATS_CPU] = { .call = ctnetlink_stat_ct_cpu },
3317 [IPCTNL_MSG_CT_GET_STATS] = { .call = ctnetlink_stat_ct },
d871befe
PNA
3318 [IPCTNL_MSG_CT_GET_DYING] = { .call = ctnetlink_get_ct_dying },
3319 [IPCTNL_MSG_CT_GET_UNCONFIRMED] = { .call = ctnetlink_get_ct_unconfirmed },
c1d10adb
PNA
3320};
3321
7c8d4cb4 3322static const struct nfnl_callback ctnl_exp_cb[IPCTNL_MSG_EXP_MAX] = {
c1d10adb 3323 [IPCTNL_MSG_EXP_GET] = { .call = ctnetlink_get_expect,
f73e924c
PM
3324 .attr_count = CTA_EXPECT_MAX,
3325 .policy = exp_nla_policy },
c1d10adb 3326 [IPCTNL_MSG_EXP_NEW] = { .call = ctnetlink_new_expect,
f73e924c
PM
3327 .attr_count = CTA_EXPECT_MAX,
3328 .policy = exp_nla_policy },
c1d10adb 3329 [IPCTNL_MSG_EXP_DELETE] = { .call = ctnetlink_del_expect,
f73e924c
PM
3330 .attr_count = CTA_EXPECT_MAX,
3331 .policy = exp_nla_policy },
392025f8 3332 [IPCTNL_MSG_EXP_GET_STATS_CPU] = { .call = ctnetlink_stat_exp_cpu },
c1d10adb
PNA
3333};
3334
7c8d4cb4 3335static const struct nfnetlink_subsystem ctnl_subsys = {
c1d10adb
PNA
3336 .name = "conntrack",
3337 .subsys_id = NFNL_SUBSYS_CTNETLINK,
3338 .cb_count = IPCTNL_MSG_MAX,
3339 .cb = ctnl_cb,
3340};
3341
7c8d4cb4 3342static const struct nfnetlink_subsystem ctnl_exp_subsys = {
c1d10adb
PNA
3343 .name = "conntrack_expect",
3344 .subsys_id = NFNL_SUBSYS_CTNETLINK_EXP,
3345 .cb_count = IPCTNL_MSG_EXP_MAX,
3346 .cb = ctnl_exp_cb,
3347};
3348
d2483dde 3349MODULE_ALIAS("ip_conntrack_netlink");
c1d10adb 3350MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_CTNETLINK);
34f9a2e4 3351MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_CTNETLINK_EXP);
c1d10adb 3352
70e9942f
PNA
3353static int __net_init ctnetlink_net_init(struct net *net)
3354{
3355#ifdef CONFIG_NF_CONNTRACK_EVENTS
3356 int ret;
3357
3358 ret = nf_conntrack_register_notifier(net, &ctnl_notifier);
3359 if (ret < 0) {
3360 pr_err("ctnetlink_init: cannot register notifier.\n");
3361 goto err_out;
3362 }
3363
3364 ret = nf_ct_expect_register_notifier(net, &ctnl_notifier_exp);
3365 if (ret < 0) {
3366 pr_err("ctnetlink_init: cannot expect register notifier.\n");
3367 goto err_unreg_notifier;
3368 }
3369#endif
3370 return 0;
3371
3372#ifdef CONFIG_NF_CONNTRACK_EVENTS
3373err_unreg_notifier:
3374 nf_conntrack_unregister_notifier(net, &ctnl_notifier);
3375err_out:
3376 return ret;
3377#endif
3378}
3379
3380static void ctnetlink_net_exit(struct net *net)
3381{
3382#ifdef CONFIG_NF_CONNTRACK_EVENTS
3383 nf_ct_expect_unregister_notifier(net, &ctnl_notifier_exp);
3384 nf_conntrack_unregister_notifier(net, &ctnl_notifier);
3385#endif
3386}
3387
3388static void __net_exit ctnetlink_net_exit_batch(struct list_head *net_exit_list)
3389{
3390 struct net *net;
3391
3392 list_for_each_entry(net, net_exit_list, exit_list)
3393 ctnetlink_net_exit(net);
3394}
3395
3396static struct pernet_operations ctnetlink_net_ops = {
3397 .init = ctnetlink_net_init,
3398 .exit_batch = ctnetlink_net_exit_batch,
3399};
3400
c1d10adb
PNA
3401static int __init ctnetlink_init(void)
3402{
3403 int ret;
3404
654d0fbd 3405 pr_info("ctnetlink v%s: registering with nfnetlink.\n", version);
c1d10adb
PNA
3406 ret = nfnetlink_subsys_register(&ctnl_subsys);
3407 if (ret < 0) {
654d0fbd 3408 pr_err("ctnetlink_init: cannot register with nfnetlink.\n");
c1d10adb
PNA
3409 goto err_out;
3410 }
3411
3412 ret = nfnetlink_subsys_register(&ctnl_exp_subsys);
3413 if (ret < 0) {
654d0fbd 3414 pr_err("ctnetlink_init: cannot register exp with nfnetlink.\n");
c1d10adb
PNA
3415 goto err_unreg_subsys;
3416 }
3417
ef6acf68
JL
3418 ret = register_pernet_subsys(&ctnetlink_net_ops);
3419 if (ret < 0) {
70e9942f 3420 pr_err("ctnetlink_init: cannot register pernet operations\n");
c1d10adb
PNA
3421 goto err_unreg_exp_subsys;
3422 }
83f3e94d 3423#ifdef CONFIG_NETFILTER_NETLINK_GLUE_CT
9cb01766 3424 /* setup interaction between nf_queue and nf_conntrack_netlink. */
a4b4766c 3425 RCU_INIT_POINTER(nfnl_ct_hook, &ctnetlink_glue_hook);
9cb01766 3426#endif
c1d10adb
PNA
3427 return 0;
3428
c1d10adb
PNA
3429err_unreg_exp_subsys:
3430 nfnetlink_subsys_unregister(&ctnl_exp_subsys);
c1d10adb
PNA
3431err_unreg_subsys:
3432 nfnetlink_subsys_unregister(&ctnl_subsys);
3433err_out:
3434 return ret;
3435}
3436
3437static void __exit ctnetlink_exit(void)
3438{
654d0fbd 3439 pr_info("ctnetlink: unregistering from nfnetlink.\n");
c1d10adb 3440
70e9942f 3441 unregister_pernet_subsys(&ctnetlink_net_ops);
c1d10adb
PNA
3442 nfnetlink_subsys_unregister(&ctnl_exp_subsys);
3443 nfnetlink_subsys_unregister(&ctnl_subsys);
83f3e94d 3444#ifdef CONFIG_NETFILTER_NETLINK_GLUE_CT
a4b4766c 3445 RCU_INIT_POINTER(nfnl_ct_hook, NULL);
9cb01766 3446#endif
3b7dabf0 3447 synchronize_rcu();
c1d10adb
PNA
3448}
3449
3450module_init(ctnetlink_init);
3451module_exit(ctnetlink_exit);