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