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