netfilter: ip6_queue: rwlock to spinlock conversion
[deliverable/linux.git] / net / netfilter / nfnetlink_queue.c
CommitLineData
7af4cc3f
HW
1/*
2 * This is a module which is used for queueing packets and communicating with
67137f3c 3 * userspace via nfnetlink.
7af4cc3f
HW
4 *
5 * (C) 2005 by Harald Welte <laforge@netfilter.org>
4ad9d4fa 6 * (C) 2007 by Patrick McHardy <kaber@trash.net>
7af4cc3f
HW
7 *
8 * Based on the old ipv4-only ip_queue.c:
9 * (C) 2000-2002 James Morris <jmorris@intercode.com.au>
10 * (C) 2003-2005 Netfilter Core Team <coreteam@netfilter.org>
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
15 *
16 */
17#include <linux/module.h>
18#include <linux/skbuff.h>
19#include <linux/init.h>
20#include <linux/spinlock.h>
5a0e3ad6 21#include <linux/slab.h>
7af4cc3f
HW
22#include <linux/notifier.h>
23#include <linux/netdevice.h>
24#include <linux/netfilter.h>
838ab636 25#include <linux/proc_fs.h>
7af4cc3f
HW
26#include <linux/netfilter_ipv4.h>
27#include <linux/netfilter_ipv6.h>
28#include <linux/netfilter/nfnetlink.h>
29#include <linux/netfilter/nfnetlink_queue.h>
30#include <linux/list.h>
31#include <net/sock.h>
c01cd429 32#include <net/netfilter/nf_queue.h>
7af4cc3f
HW
33
34#include <asm/atomic.h>
35
fbcd923c
HW
36#ifdef CONFIG_BRIDGE_NETFILTER
37#include "../bridge/br_private.h"
38#endif
39
7af4cc3f
HW
40#define NFQNL_QMAX_DEFAULT 1024
41
7af4cc3f
HW
42struct nfqnl_instance {
43 struct hlist_node hlist; /* global list of queues */
9872bec7 44 struct rcu_head rcu;
7af4cc3f
HW
45
46 int peer_pid;
47 unsigned int queue_maxlen;
48 unsigned int copy_range;
49 unsigned int queue_total;
50 unsigned int queue_dropped;
51 unsigned int queue_user_dropped;
52
e48b9b2f 53 unsigned int id_sequence; /* 'sequence' of pkt ids */
7af4cc3f
HW
54
55 u_int16_t queue_num; /* number of this queue */
56 u_int8_t copy_mode;
57
58 spinlock_t lock;
59
60 struct list_head queue_list; /* packets in queue */
61};
62
02f014d8 63typedef int (*nfqnl_cmpfn)(struct nf_queue_entry *, unsigned long);
7af4cc3f 64
9872bec7 65static DEFINE_SPINLOCK(instances_lock);
7af4cc3f 66
7af4cc3f 67#define INSTANCE_BUCKETS 16
9d6023ab 68static struct hlist_head instance_table[INSTANCE_BUCKETS] __read_mostly;
7af4cc3f
HW
69
70static inline u_int8_t instance_hashfn(u_int16_t queue_num)
71{
72 return ((queue_num >> 8) | queue_num) % INSTANCE_BUCKETS;
73}
74
75static struct nfqnl_instance *
9872bec7 76instance_lookup(u_int16_t queue_num)
7af4cc3f
HW
77{
78 struct hlist_head *head;
79 struct hlist_node *pos;
80 struct nfqnl_instance *inst;
81
82 head = &instance_table[instance_hashfn(queue_num)];
9872bec7 83 hlist_for_each_entry_rcu(inst, pos, head, hlist) {
7af4cc3f
HW
84 if (inst->queue_num == queue_num)
85 return inst;
86 }
87 return NULL;
88}
89
7af4cc3f
HW
90static struct nfqnl_instance *
91instance_create(u_int16_t queue_num, int pid)
92{
baab2ce7 93 struct nfqnl_instance *inst;
9872bec7 94 unsigned int h;
baab2ce7 95 int err;
7af4cc3f 96
9872bec7 97 spin_lock(&instances_lock);
baab2ce7
PM
98 if (instance_lookup(queue_num)) {
99 err = -EEXIST;
7af4cc3f 100 goto out_unlock;
baab2ce7 101 }
7af4cc3f 102
10dfdc69 103 inst = kzalloc(sizeof(*inst), GFP_ATOMIC);
baab2ce7
PM
104 if (!inst) {
105 err = -ENOMEM;
7af4cc3f 106 goto out_unlock;
baab2ce7 107 }
7af4cc3f 108
7af4cc3f
HW
109 inst->queue_num = queue_num;
110 inst->peer_pid = pid;
111 inst->queue_maxlen = NFQNL_QMAX_DEFAULT;
112 inst->copy_range = 0xfffff;
113 inst->copy_mode = NFQNL_COPY_NONE;
181a46a5 114 spin_lock_init(&inst->lock);
7af4cc3f
HW
115 INIT_LIST_HEAD(&inst->queue_list);
116
baab2ce7
PM
117 if (!try_module_get(THIS_MODULE)) {
118 err = -EAGAIN;
7af4cc3f 119 goto out_free;
baab2ce7 120 }
7af4cc3f 121
9872bec7
PM
122 h = instance_hashfn(queue_num);
123 hlist_add_head_rcu(&inst->hlist, &instance_table[h]);
7af4cc3f 124
9872bec7 125 spin_unlock(&instances_lock);
7af4cc3f 126
7af4cc3f
HW
127 return inst;
128
129out_free:
130 kfree(inst);
131out_unlock:
9872bec7 132 spin_unlock(&instances_lock);
baab2ce7 133 return ERR_PTR(err);
7af4cc3f
HW
134}
135
b43d8d85
PM
136static void nfqnl_flush(struct nfqnl_instance *queue, nfqnl_cmpfn cmpfn,
137 unsigned long data);
7af4cc3f
HW
138
139static void
9872bec7 140instance_destroy_rcu(struct rcu_head *head)
7af4cc3f 141{
9872bec7
PM
142 struct nfqnl_instance *inst = container_of(head, struct nfqnl_instance,
143 rcu);
7af4cc3f 144
b43d8d85 145 nfqnl_flush(inst, NULL, 0);
9872bec7 146 kfree(inst);
7af4cc3f
HW
147 module_put(THIS_MODULE);
148}
149
9872bec7 150static void
7af4cc3f
HW
151__instance_destroy(struct nfqnl_instance *inst)
152{
9872bec7
PM
153 hlist_del_rcu(&inst->hlist);
154 call_rcu(&inst->rcu, instance_destroy_rcu);
7af4cc3f
HW
155}
156
9872bec7 157static void
7af4cc3f
HW
158instance_destroy(struct nfqnl_instance *inst)
159{
9872bec7
PM
160 spin_lock(&instances_lock);
161 __instance_destroy(inst);
162 spin_unlock(&instances_lock);
7af4cc3f
HW
163}
164
7af4cc3f 165static inline void
02f014d8 166__enqueue_entry(struct nfqnl_instance *queue, struct nf_queue_entry *entry)
7af4cc3f 167{
0ac41e81 168 list_add_tail(&entry->list, &queue->queue_list);
7af4cc3f
HW
169 queue->queue_total++;
170}
171
02f014d8 172static struct nf_queue_entry *
b43d8d85 173find_dequeue_entry(struct nfqnl_instance *queue, unsigned int id)
7af4cc3f 174{
02f014d8 175 struct nf_queue_entry *entry = NULL, *i;
601e68e1 176
7af4cc3f 177 spin_lock_bh(&queue->lock);
b43d8d85
PM
178
179 list_for_each_entry(i, &queue->queue_list, list) {
180 if (i->id == id) {
181 entry = i;
182 break;
183 }
184 }
185
186 if (entry) {
187 list_del(&entry->list);
188 queue->queue_total--;
189 }
190
7af4cc3f
HW
191 spin_unlock_bh(&queue->lock);
192
193 return entry;
194}
195
196static void
b43d8d85 197nfqnl_flush(struct nfqnl_instance *queue, nfqnl_cmpfn cmpfn, unsigned long data)
7af4cc3f 198{
02f014d8 199 struct nf_queue_entry *entry, *next;
b43d8d85 200
7af4cc3f 201 spin_lock_bh(&queue->lock);
b43d8d85
PM
202 list_for_each_entry_safe(entry, next, &queue->queue_list, list) {
203 if (!cmpfn || cmpfn(entry, data)) {
204 list_del(&entry->list);
205 queue->queue_total--;
4b3d15ef 206 nf_reinject(entry, NF_DROP);
b43d8d85
PM
207 }
208 }
7af4cc3f
HW
209 spin_unlock_bh(&queue->lock);
210}
211
212static struct sk_buff *
213nfqnl_build_packet_message(struct nfqnl_instance *queue,
0ef0f465 214 struct nf_queue_entry *entry)
7af4cc3f 215{
27a884dc 216 sk_buff_data_t old_tail;
7af4cc3f
HW
217 size_t size;
218 size_t data_len = 0;
219 struct sk_buff *skb;
220 struct nfqnl_msg_packet_hdr pmsg;
221 struct nlmsghdr *nlh;
222 struct nfgenmsg *nfmsg;
3e4ead4f
JJ
223 struct sk_buff *entskb = entry->skb;
224 struct net_device *indev;
225 struct net_device *outdev;
7af4cc3f 226
cabaa9bf 227 size = NLMSG_SPACE(sizeof(struct nfgenmsg))
df6fb868
PM
228 + nla_total_size(sizeof(struct nfqnl_msg_packet_hdr))
229 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
230 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
fbcd923c 231#ifdef CONFIG_BRIDGE_NETFILTER
df6fb868
PM
232 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
233 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
fbcd923c 234#endif
df6fb868
PM
235 + nla_total_size(sizeof(u_int32_t)) /* mark */
236 + nla_total_size(sizeof(struct nfqnl_msg_packet_hw))
237 + nla_total_size(sizeof(struct nfqnl_msg_packet_timestamp));
7af4cc3f 238
02f014d8 239 outdev = entry->outdev;
3e4ead4f 240
7af4cc3f 241 spin_lock_bh(&queue->lock);
601e68e1 242
861934c7 243 switch ((enum nfqnl_config_mode)queue->copy_mode) {
7af4cc3f
HW
244 case NFQNL_COPY_META:
245 case NFQNL_COPY_NONE:
7af4cc3f 246 break;
601e68e1 247
7af4cc3f 248 case NFQNL_COPY_PACKET:
e9f13cab 249 if (entskb->ip_summed == CHECKSUM_PARTIAL &&
0ef0f465 250 skb_checksum_help(entskb)) {
e7dfb09a
PM
251 spin_unlock_bh(&queue->lock);
252 return NULL;
253 }
601e68e1 254 if (queue->copy_range == 0
3e4ead4f
JJ
255 || queue->copy_range > entskb->len)
256 data_len = entskb->len;
7af4cc3f
HW
257 else
258 data_len = queue->copy_range;
601e68e1 259
df6fb868 260 size += nla_total_size(data_len);
7af4cc3f 261 break;
7af4cc3f
HW
262 }
263
e48b9b2f
PM
264 entry->id = queue->id_sequence++;
265
7af4cc3f
HW
266 spin_unlock_bh(&queue->lock);
267
268 skb = alloc_skb(size, GFP_ATOMIC);
269 if (!skb)
270 goto nlmsg_failure;
601e68e1 271
27a884dc 272 old_tail = skb->tail;
601e68e1 273 nlh = NLMSG_PUT(skb, 0, 0,
7af4cc3f
HW
274 NFNL_SUBSYS_QUEUE << 8 | NFQNL_MSG_PACKET,
275 sizeof(struct nfgenmsg));
276 nfmsg = NLMSG_DATA(nlh);
02f014d8 277 nfmsg->nfgen_family = entry->pf;
7af4cc3f
HW
278 nfmsg->version = NFNETLINK_V0;
279 nfmsg->res_id = htons(queue->queue_num);
280
281 pmsg.packet_id = htonl(entry->id);
febf0a43 282 pmsg.hw_protocol = entskb->protocol;
02f014d8 283 pmsg.hook = entry->hook;
7af4cc3f 284
df6fb868 285 NLA_PUT(skb, NFQA_PACKET_HDR, sizeof(pmsg), &pmsg);
7af4cc3f 286
02f014d8 287 indev = entry->indev;
3e4ead4f 288 if (indev) {
fbcd923c 289#ifndef CONFIG_BRIDGE_NETFILTER
ea3a66ff 290 NLA_PUT_BE32(skb, NFQA_IFINDEX_INDEV, htonl(indev->ifindex));
fbcd923c 291#else
02f014d8 292 if (entry->pf == PF_BRIDGE) {
fbcd923c 293 /* Case 1: indev is physical input device, we need to
601e68e1 294 * look for bridge group (when called from
fbcd923c 295 * netfilter_bridge) */
ea3a66ff
PM
296 NLA_PUT_BE32(skb, NFQA_IFINDEX_PHYSINDEV,
297 htonl(indev->ifindex));
fbcd923c 298 /* this is the bridge group "brX" */
ea3a66ff
PM
299 NLA_PUT_BE32(skb, NFQA_IFINDEX_INDEV,
300 htonl(indev->br_port->br->dev->ifindex));
fbcd923c
HW
301 } else {
302 /* Case 2: indev is bridge group, we need to look for
303 * physical device (when called from ipv4) */
ea3a66ff
PM
304 NLA_PUT_BE32(skb, NFQA_IFINDEX_INDEV,
305 htonl(indev->ifindex));
306 if (entskb->nf_bridge && entskb->nf_bridge->physindev)
307 NLA_PUT_BE32(skb, NFQA_IFINDEX_PHYSINDEV,
308 htonl(entskb->nf_bridge->physindev->ifindex));
fbcd923c
HW
309 }
310#endif
7af4cc3f
HW
311 }
312
3e4ead4f 313 if (outdev) {
fbcd923c 314#ifndef CONFIG_BRIDGE_NETFILTER
ea3a66ff 315 NLA_PUT_BE32(skb, NFQA_IFINDEX_OUTDEV, htonl(outdev->ifindex));
fbcd923c 316#else
02f014d8 317 if (entry->pf == PF_BRIDGE) {
fbcd923c 318 /* Case 1: outdev is physical output device, we need to
601e68e1 319 * look for bridge group (when called from
fbcd923c 320 * netfilter_bridge) */
ea3a66ff
PM
321 NLA_PUT_BE32(skb, NFQA_IFINDEX_PHYSOUTDEV,
322 htonl(outdev->ifindex));
fbcd923c 323 /* this is the bridge group "brX" */
ea3a66ff
PM
324 NLA_PUT_BE32(skb, NFQA_IFINDEX_OUTDEV,
325 htonl(outdev->br_port->br->dev->ifindex));
fbcd923c
HW
326 } else {
327 /* Case 2: outdev is bridge group, we need to look for
328 * physical output device (when called from ipv4) */
ea3a66ff
PM
329 NLA_PUT_BE32(skb, NFQA_IFINDEX_OUTDEV,
330 htonl(outdev->ifindex));
331 if (entskb->nf_bridge && entskb->nf_bridge->physoutdev)
332 NLA_PUT_BE32(skb, NFQA_IFINDEX_PHYSOUTDEV,
333 htonl(entskb->nf_bridge->physoutdev->ifindex));
fbcd923c
HW
334 }
335#endif
7af4cc3f
HW
336 }
337
ea3a66ff
PM
338 if (entskb->mark)
339 NLA_PUT_BE32(skb, NFQA_MARK, htonl(entskb->mark));
7af4cc3f 340
b95cce35 341 if (indev && entskb->dev) {
7af4cc3f 342 struct nfqnl_msg_packet_hw phw;
b95cce35
SH
343 int len = dev_parse_header(entskb, phw.hw_addr);
344 if (len) {
345 phw.hw_addrlen = htons(len);
df6fb868 346 NLA_PUT(skb, NFQA_HWADDR, sizeof(phw), &phw);
b95cce35 347 }
7af4cc3f
HW
348 }
349
b7aa0bf7 350 if (entskb->tstamp.tv64) {
7af4cc3f 351 struct nfqnl_msg_packet_timestamp ts;
b7aa0bf7
ED
352 struct timeval tv = ktime_to_timeval(entskb->tstamp);
353 ts.sec = cpu_to_be64(tv.tv_sec);
354 ts.usec = cpu_to_be64(tv.tv_usec);
7af4cc3f 355
df6fb868 356 NLA_PUT(skb, NFQA_TIMESTAMP, sizeof(ts), &ts);
7af4cc3f
HW
357 }
358
359 if (data_len) {
df6fb868 360 struct nlattr *nla;
ca7c48ca 361 int sz = nla_attr_size(data_len);
7af4cc3f 362
df6fb868 363 if (skb_tailroom(skb) < nla_total_size(data_len)) {
7af4cc3f
HW
364 printk(KERN_WARNING "nf_queue: no tailroom!\n");
365 goto nlmsg_failure;
366 }
367
df6fb868
PM
368 nla = (struct nlattr *)skb_put(skb, nla_total_size(data_len));
369 nla->nla_type = NFQA_PAYLOAD;
ca7c48ca 370 nla->nla_len = sz;
7af4cc3f 371
df6fb868 372 if (skb_copy_bits(entskb, 0, nla_data(nla), data_len))
7af4cc3f
HW
373 BUG();
374 }
601e68e1 375
7af4cc3f
HW
376 nlh->nlmsg_len = skb->tail - old_tail;
377 return skb;
378
379nlmsg_failure:
df6fb868 380nla_put_failure:
7af4cc3f
HW
381 if (skb)
382 kfree_skb(skb);
7af4cc3f
HW
383 if (net_ratelimit())
384 printk(KERN_ERR "nf_queue: error creating packet message\n");
385 return NULL;
386}
387
388static int
02f014d8 389nfqnl_enqueue_packet(struct nf_queue_entry *entry, unsigned int queuenum)
7af4cc3f 390{
7af4cc3f
HW
391 struct sk_buff *nskb;
392 struct nfqnl_instance *queue;
0ef0f465 393 int err;
7af4cc3f 394
9872bec7
PM
395 /* rcu_read_lock()ed by nf_hook_slow() */
396 queue = instance_lookup(queuenum);
2bd01197 397 if (!queue)
0ef0f465 398 goto err_out;
7af4cc3f 399
2bd01197 400 if (queue->copy_mode == NFQNL_COPY_NONE)
0ef0f465 401 goto err_out;
7af4cc3f 402
0ef0f465 403 nskb = nfqnl_build_packet_message(queue, entry);
7af4cc3f 404 if (nskb == NULL)
0ef0f465 405 goto err_out;
601e68e1 406
7af4cc3f 407 spin_lock_bh(&queue->lock);
601e68e1 408
7af4cc3f 409 if (!queue->peer_pid)
601e68e1 410 goto err_out_free_nskb;
7af4cc3f
HW
411
412 if (queue->queue_total >= queue->queue_maxlen) {
601e68e1 413 queue->queue_dropped++;
7af4cc3f 414 if (net_ratelimit())
601e68e1 415 printk(KERN_WARNING "nf_queue: full at %d entries, "
a5d896ad
EL
416 "dropping packets(s).\n",
417 queue->queue_total);
7af4cc3f
HW
418 goto err_out_free_nskb;
419 }
420
421 /* nfnetlink_unicast will either free the nskb or add it to a socket */
cd8c20b6 422 err = nfnetlink_unicast(nskb, &init_net, queue->peer_pid, MSG_DONTWAIT);
0ef0f465 423 if (err < 0) {
601e68e1 424 queue->queue_user_dropped++;
7af4cc3f
HW
425 goto err_out_unlock;
426 }
427
428 __enqueue_entry(queue, entry);
429
430 spin_unlock_bh(&queue->lock);
0ef0f465 431 return 0;
7af4cc3f
HW
432
433err_out_free_nskb:
601e68e1 434 kfree_skb(nskb);
7af4cc3f
HW
435err_out_unlock:
436 spin_unlock_bh(&queue->lock);
0ef0f465
PM
437err_out:
438 return -1;
7af4cc3f
HW
439}
440
441static int
02f014d8 442nfqnl_mangle(void *data, int data_len, struct nf_queue_entry *e)
7af4cc3f 443{
e2b58a67 444 struct sk_buff *nskb;
7af4cc3f
HW
445 int diff;
446
447 diff = data_len - e->skb->len;
d8a585d7
PM
448 if (diff < 0) {
449 if (pskb_trim(e->skb, data_len))
450 return -ENOMEM;
451 } else if (diff > 0) {
7af4cc3f
HW
452 if (data_len > 0xFFFF)
453 return -EINVAL;
454 if (diff > skb_tailroom(e->skb)) {
9a732ed6
AE
455 nskb = skb_copy_expand(e->skb, skb_headroom(e->skb),
456 diff, GFP_ATOMIC);
e2b58a67 457 if (!nskb) {
1158ba27 458 printk(KERN_WARNING "nf_queue: OOM "
7af4cc3f 459 "in mangle, dropping packet\n");
e2b58a67 460 return -ENOMEM;
7af4cc3f 461 }
e2b58a67
PM
462 kfree_skb(e->skb);
463 e->skb = nskb;
7af4cc3f
HW
464 }
465 skb_put(e->skb, diff);
466 }
37d41879 467 if (!skb_make_writable(e->skb, data_len))
7af4cc3f 468 return -ENOMEM;
27d7ff46 469 skb_copy_to_linear_data(e->skb, data, data_len);
e7dfb09a 470 e->skb->ip_summed = CHECKSUM_NONE;
7af4cc3f
HW
471 return 0;
472}
473
7af4cc3f
HW
474static int
475nfqnl_set_mode(struct nfqnl_instance *queue,
476 unsigned char mode, unsigned int range)
477{
c5de0dfd 478 int status = 0;
7af4cc3f
HW
479
480 spin_lock_bh(&queue->lock);
c5de0dfd
PM
481 switch (mode) {
482 case NFQNL_COPY_NONE:
483 case NFQNL_COPY_META:
484 queue->copy_mode = mode;
485 queue->copy_range = 0;
486 break;
487
488 case NFQNL_COPY_PACKET:
489 queue->copy_mode = mode;
490 /* we're using struct nlattr which has 16bit nla_len */
491 if (range > 0xffff)
492 queue->copy_range = 0xffff;
493 else
494 queue->copy_range = range;
495 break;
496
497 default:
498 status = -EINVAL;
499
500 }
7af4cc3f
HW
501 spin_unlock_bh(&queue->lock);
502
503 return status;
504}
505
506static int
02f014d8 507dev_cmp(struct nf_queue_entry *entry, unsigned long ifindex)
7af4cc3f 508{
02f014d8
PM
509 if (entry->indev)
510 if (entry->indev->ifindex == ifindex)
7af4cc3f 511 return 1;
02f014d8
PM
512 if (entry->outdev)
513 if (entry->outdev->ifindex == ifindex)
7af4cc3f 514 return 1;
ef47c6a7
PM
515#ifdef CONFIG_BRIDGE_NETFILTER
516 if (entry->skb->nf_bridge) {
517 if (entry->skb->nf_bridge->physindev &&
518 entry->skb->nf_bridge->physindev->ifindex == ifindex)
519 return 1;
520 if (entry->skb->nf_bridge->physoutdev &&
521 entry->skb->nf_bridge->physoutdev->ifindex == ifindex)
522 return 1;
523 }
524#endif
7af4cc3f
HW
525 return 0;
526}
527
528/* drop all packets with either indev or outdev == ifindex from all queue
529 * instances */
530static void
531nfqnl_dev_drop(int ifindex)
532{
533 int i;
601e68e1 534
9872bec7 535 rcu_read_lock();
7af4cc3f 536
9872bec7 537 for (i = 0; i < INSTANCE_BUCKETS; i++) {
7af4cc3f
HW
538 struct hlist_node *tmp;
539 struct nfqnl_instance *inst;
540 struct hlist_head *head = &instance_table[i];
541
9872bec7 542 hlist_for_each_entry_rcu(inst, tmp, head, hlist)
b43d8d85 543 nfqnl_flush(inst, dev_cmp, ifindex);
7af4cc3f
HW
544 }
545
9872bec7 546 rcu_read_unlock();
7af4cc3f
HW
547}
548
549#define RCV_SKB_FAIL(err) do { netlink_ack(skb, nlh, (err)); return; } while (0)
550
551static int
552nfqnl_rcv_dev_event(struct notifier_block *this,
553 unsigned long event, void *ptr)
554{
555 struct net_device *dev = ptr;
556
721499e8 557 if (!net_eq(dev_net(dev), &init_net))
e9dc8653
EB
558 return NOTIFY_DONE;
559
7af4cc3f
HW
560 /* Drop any packets associated with the downed device */
561 if (event == NETDEV_DOWN)
562 nfqnl_dev_drop(dev->ifindex);
563 return NOTIFY_DONE;
564}
565
566static struct notifier_block nfqnl_dev_notifier = {
567 .notifier_call = nfqnl_rcv_dev_event,
568};
569
570static int
571nfqnl_rcv_nl_event(struct notifier_block *this,
572 unsigned long event, void *ptr)
573{
574 struct netlink_notify *n = ptr;
575
dee5817e 576 if (event == NETLINK_URELEASE && n->protocol == NETLINK_NETFILTER) {
7af4cc3f
HW
577 int i;
578
579 /* destroy all instances for this pid */
9872bec7
PM
580 spin_lock(&instances_lock);
581 for (i = 0; i < INSTANCE_BUCKETS; i++) {
7af4cc3f
HW
582 struct hlist_node *tmp, *t2;
583 struct nfqnl_instance *inst;
584 struct hlist_head *head = &instance_table[i];
585
586 hlist_for_each_entry_safe(inst, tmp, t2, head, hlist) {
b4b51029
EB
587 if ((n->net == &init_net) &&
588 (n->pid == inst->peer_pid))
7af4cc3f
HW
589 __instance_destroy(inst);
590 }
591 }
9872bec7 592 spin_unlock(&instances_lock);
7af4cc3f
HW
593 }
594 return NOTIFY_DONE;
595}
596
597static struct notifier_block nfqnl_rtnl_notifier = {
598 .notifier_call = nfqnl_rcv_nl_event,
599};
600
5bf75853
PM
601static const struct nla_policy nfqa_verdict_policy[NFQA_MAX+1] = {
602 [NFQA_VERDICT_HDR] = { .len = sizeof(struct nfqnl_msg_verdict_hdr) },
603 [NFQA_MARK] = { .type = NLA_U32 },
604 [NFQA_PAYLOAD] = { .type = NLA_UNSPEC },
838ab636
HW
605};
606
7af4cc3f
HW
607static int
608nfqnl_recv_verdict(struct sock *ctnl, struct sk_buff *skb,
39938324
PM
609 const struct nlmsghdr *nlh,
610 const struct nlattr * const nfqa[])
7af4cc3f
HW
611{
612 struct nfgenmsg *nfmsg = NLMSG_DATA(nlh);
613 u_int16_t queue_num = ntohs(nfmsg->res_id);
614
615 struct nfqnl_msg_verdict_hdr *vhdr;
616 struct nfqnl_instance *queue;
617 unsigned int verdict;
02f014d8 618 struct nf_queue_entry *entry;
838ab636 619 int err;
7af4cc3f 620
9872bec7
PM
621 rcu_read_lock();
622 queue = instance_lookup(queue_num);
623 if (!queue) {
624 err = -ENODEV;
625 goto err_out_unlock;
626 }
7af4cc3f 627
838ab636
HW
628 if (queue->peer_pid != NETLINK_CB(skb).pid) {
629 err = -EPERM;
9872bec7 630 goto err_out_unlock;
838ab636 631 }
7af4cc3f 632
df6fb868 633 if (!nfqa[NFQA_VERDICT_HDR]) {
838ab636 634 err = -EINVAL;
9872bec7 635 goto err_out_unlock;
838ab636 636 }
7af4cc3f 637
df6fb868 638 vhdr = nla_data(nfqa[NFQA_VERDICT_HDR]);
7af4cc3f
HW
639 verdict = ntohl(vhdr->verdict);
640
838ab636
HW
641 if ((verdict & NF_VERDICT_MASK) > NF_MAX_VERDICT) {
642 err = -EINVAL;
9872bec7 643 goto err_out_unlock;
838ab636 644 }
7af4cc3f 645
b43d8d85 646 entry = find_dequeue_entry(queue, ntohl(vhdr->id));
838ab636
HW
647 if (entry == NULL) {
648 err = -ENOENT;
9872bec7 649 goto err_out_unlock;
838ab636 650 }
9872bec7 651 rcu_read_unlock();
7af4cc3f 652
df6fb868
PM
653 if (nfqa[NFQA_PAYLOAD]) {
654 if (nfqnl_mangle(nla_data(nfqa[NFQA_PAYLOAD]),
655 nla_len(nfqa[NFQA_PAYLOAD]), entry) < 0)
7af4cc3f
HW
656 verdict = NF_DROP;
657 }
658
df6fb868 659 if (nfqa[NFQA_MARK])
ea3a66ff 660 entry->skb->mark = ntohl(nla_get_be32(nfqa[NFQA_MARK]));
601e68e1 661
4b3d15ef 662 nf_reinject(entry, verdict);
7af4cc3f 663 return 0;
838ab636 664
9872bec7
PM
665err_out_unlock:
666 rcu_read_unlock();
838ab636 667 return err;
7af4cc3f
HW
668}
669
670static int
671nfqnl_recv_unsupp(struct sock *ctnl, struct sk_buff *skb,
39938324
PM
672 const struct nlmsghdr *nlh,
673 const struct nlattr * const nfqa[])
7af4cc3f
HW
674{
675 return -ENOTSUPP;
676}
677
5bf75853
PM
678static const struct nla_policy nfqa_cfg_policy[NFQA_CFG_MAX+1] = {
679 [NFQA_CFG_CMD] = { .len = sizeof(struct nfqnl_msg_config_cmd) },
680 [NFQA_CFG_PARAMS] = { .len = sizeof(struct nfqnl_msg_config_params) },
838ab636
HW
681};
682
e3ac5298 683static const struct nf_queue_handler nfqh = {
bbd86b9f
HW
684 .name = "nf_queue",
685 .outfn = &nfqnl_enqueue_packet,
686};
687
7af4cc3f
HW
688static int
689nfqnl_recv_config(struct sock *ctnl, struct sk_buff *skb,
39938324
PM
690 const struct nlmsghdr *nlh,
691 const struct nlattr * const nfqa[])
7af4cc3f
HW
692{
693 struct nfgenmsg *nfmsg = NLMSG_DATA(nlh);
694 u_int16_t queue_num = ntohs(nfmsg->res_id);
695 struct nfqnl_instance *queue;
9872bec7 696 struct nfqnl_msg_config_cmd *cmd = NULL;
838ab636 697 int ret = 0;
7af4cc3f 698
9872bec7
PM
699 if (nfqa[NFQA_CFG_CMD]) {
700 cmd = nla_data(nfqa[NFQA_CFG_CMD]);
701
702 /* Commands without queue context - might sleep */
703 switch (cmd->command) {
704 case NFQNL_CFG_CMD_PF_BIND:
914afea8
PM
705 return nf_register_queue_handler(ntohs(cmd->pf),
706 &nfqh);
9872bec7 707 case NFQNL_CFG_CMD_PF_UNBIND:
914afea8
PM
708 return nf_unregister_queue_handler(ntohs(cmd->pf),
709 &nfqh);
9872bec7 710 }
9872bec7
PM
711 }
712
713 rcu_read_lock();
714 queue = instance_lookup(queue_num);
a3c8e7fd
PM
715 if (queue && queue->peer_pid != NETLINK_CB(skb).pid) {
716 ret = -EPERM;
9872bec7 717 goto err_out_unlock;
a3c8e7fd
PM
718 }
719
9872bec7 720 if (cmd != NULL) {
7af4cc3f
HW
721 switch (cmd->command) {
722 case NFQNL_CFG_CMD_BIND:
9872bec7
PM
723 if (queue) {
724 ret = -EBUSY;
725 goto err_out_unlock;
726 }
7af4cc3f 727 queue = instance_create(queue_num, NETLINK_CB(skb).pid);
baab2ce7
PM
728 if (IS_ERR(queue)) {
729 ret = PTR_ERR(queue);
9872bec7
PM
730 goto err_out_unlock;
731 }
7af4cc3f
HW
732 break;
733 case NFQNL_CFG_CMD_UNBIND:
9872bec7
PM
734 if (!queue) {
735 ret = -ENODEV;
736 goto err_out_unlock;
737 }
7af4cc3f
HW
738 instance_destroy(queue);
739 break;
740 case NFQNL_CFG_CMD_PF_BIND:
7af4cc3f 741 case NFQNL_CFG_CMD_PF_UNBIND:
7af4cc3f
HW
742 break;
743 default:
cd21f0ac 744 ret = -ENOTSUPP;
838ab636 745 break;
7af4cc3f 746 }
7af4cc3f
HW
747 }
748
df6fb868 749 if (nfqa[NFQA_CFG_PARAMS]) {
7af4cc3f 750 struct nfqnl_msg_config_params *params;
7af4cc3f 751
406dbfc9 752 if (!queue) {
a3c8e7fd 753 ret = -ENODEV;
9872bec7 754 goto err_out_unlock;
406dbfc9 755 }
df6fb868 756 params = nla_data(nfqa[NFQA_CFG_PARAMS]);
7af4cc3f
HW
757 nfqnl_set_mode(queue, params->copy_mode,
758 ntohl(params->copy_range));
759 }
760
df6fb868 761 if (nfqa[NFQA_CFG_QUEUE_MAXLEN]) {
829e17a1 762 __be32 *queue_maxlen;
a3c8e7fd
PM
763
764 if (!queue) {
765 ret = -ENODEV;
9872bec7 766 goto err_out_unlock;
a3c8e7fd 767 }
df6fb868 768 queue_maxlen = nla_data(nfqa[NFQA_CFG_QUEUE_MAXLEN]);
829e17a1
EL
769 spin_lock_bh(&queue->lock);
770 queue->queue_maxlen = ntohl(*queue_maxlen);
771 spin_unlock_bh(&queue->lock);
772 }
773
9872bec7
PM
774err_out_unlock:
775 rcu_read_unlock();
838ab636 776 return ret;
7af4cc3f
HW
777}
778
7c8d4cb4 779static const struct nfnl_callback nfqnl_cb[NFQNL_MSG_MAX] = {
7af4cc3f 780 [NFQNL_MSG_PACKET] = { .call = nfqnl_recv_unsupp,
37d2e7a2 781 .attr_count = NFQA_MAX, },
7af4cc3f 782 [NFQNL_MSG_VERDICT] = { .call = nfqnl_recv_verdict,
5bf75853
PM
783 .attr_count = NFQA_MAX,
784 .policy = nfqa_verdict_policy },
7af4cc3f 785 [NFQNL_MSG_CONFIG] = { .call = nfqnl_recv_config,
5bf75853
PM
786 .attr_count = NFQA_CFG_MAX,
787 .policy = nfqa_cfg_policy },
7af4cc3f
HW
788};
789
7c8d4cb4 790static const struct nfnetlink_subsystem nfqnl_subsys = {
7af4cc3f
HW
791 .name = "nf_queue",
792 .subsys_id = NFNL_SUBSYS_QUEUE,
793 .cb_count = NFQNL_MSG_MAX,
7af4cc3f
HW
794 .cb = nfqnl_cb,
795};
796
838ab636
HW
797#ifdef CONFIG_PROC_FS
798struct iter_state {
799 unsigned int bucket;
800};
801
802static struct hlist_node *get_first(struct seq_file *seq)
803{
804 struct iter_state *st = seq->private;
805
806 if (!st)
807 return NULL;
808
809 for (st->bucket = 0; st->bucket < INSTANCE_BUCKETS; st->bucket++) {
810 if (!hlist_empty(&instance_table[st->bucket]))
811 return instance_table[st->bucket].first;
812 }
813 return NULL;
814}
815
816static struct hlist_node *get_next(struct seq_file *seq, struct hlist_node *h)
817{
818 struct iter_state *st = seq->private;
819
820 h = h->next;
821 while (!h) {
822 if (++st->bucket >= INSTANCE_BUCKETS)
823 return NULL;
824
825 h = instance_table[st->bucket].first;
826 }
827 return h;
828}
829
830static struct hlist_node *get_idx(struct seq_file *seq, loff_t pos)
831{
832 struct hlist_node *head;
833 head = get_first(seq);
834
835 if (head)
836 while (pos && (head = get_next(seq, head)))
837 pos--;
838 return pos ? NULL : head;
839}
840
841static void *seq_start(struct seq_file *seq, loff_t *pos)
ca7c48ca 842 __acquires(instances_lock)
838ab636 843{
9872bec7 844 spin_lock(&instances_lock);
838ab636
HW
845 return get_idx(seq, *pos);
846}
847
848static void *seq_next(struct seq_file *s, void *v, loff_t *pos)
849{
850 (*pos)++;
851 return get_next(s, v);
852}
853
854static void seq_stop(struct seq_file *s, void *v)
ca7c48ca 855 __releases(instances_lock)
838ab636 856{
9872bec7 857 spin_unlock(&instances_lock);
838ab636
HW
858}
859
860static int seq_show(struct seq_file *s, void *v)
861{
862 const struct nfqnl_instance *inst = v;
863
864 return seq_printf(s, "%5d %6d %5d %1d %5d %5d %5d %8d %2d\n",
865 inst->queue_num,
866 inst->peer_pid, inst->queue_total,
867 inst->copy_mode, inst->copy_range,
868 inst->queue_dropped, inst->queue_user_dropped,
9872bec7 869 inst->id_sequence, 1);
838ab636
HW
870}
871
56b3d975 872static const struct seq_operations nfqnl_seq_ops = {
838ab636
HW
873 .start = seq_start,
874 .next = seq_next,
875 .stop = seq_stop,
876 .show = seq_show,
877};
878
879static int nfqnl_open(struct inode *inode, struct file *file)
880{
e2da5913
PE
881 return seq_open_private(file, &nfqnl_seq_ops,
882 sizeof(struct iter_state));
838ab636
HW
883}
884
da7071d7 885static const struct file_operations nfqnl_file_ops = {
838ab636
HW
886 .owner = THIS_MODULE,
887 .open = nfqnl_open,
888 .read = seq_read,
889 .llseek = seq_lseek,
890 .release = seq_release_private,
891};
892
893#endif /* PROC_FS */
894
32292a7f 895static int __init nfnetlink_queue_init(void)
7af4cc3f 896{
838ab636 897 int i, status = -ENOMEM;
601e68e1 898
838ab636
HW
899 for (i = 0; i < INSTANCE_BUCKETS; i++)
900 INIT_HLIST_HEAD(&instance_table[i]);
901
7af4cc3f
HW
902 netlink_register_notifier(&nfqnl_rtnl_notifier);
903 status = nfnetlink_subsys_register(&nfqnl_subsys);
904 if (status < 0) {
905 printk(KERN_ERR "nf_queue: failed to create netlink socket\n");
906 goto cleanup_netlink_notifier;
907 }
908
838ab636 909#ifdef CONFIG_PROC_FS
8eeee8b1
DL
910 if (!proc_create("nfnetlink_queue", 0440,
911 proc_net_netfilter, &nfqnl_file_ops))
838ab636 912 goto cleanup_subsys;
838ab636
HW
913#endif
914
7af4cc3f
HW
915 register_netdevice_notifier(&nfqnl_dev_notifier);
916 return status;
917
838ab636
HW
918#ifdef CONFIG_PROC_FS
919cleanup_subsys:
7af4cc3f 920 nfnetlink_subsys_unregister(&nfqnl_subsys);
32292a7f 921#endif
7af4cc3f
HW
922cleanup_netlink_notifier:
923 netlink_unregister_notifier(&nfqnl_rtnl_notifier);
924 return status;
925}
926
65b4b4e8 927static void __exit nfnetlink_queue_fini(void)
7af4cc3f 928{
32292a7f
PM
929 nf_unregister_queue_handlers(&nfqh);
930 unregister_netdevice_notifier(&nfqnl_dev_notifier);
931#ifdef CONFIG_PROC_FS
932 remove_proc_entry("nfnetlink_queue", proc_net_netfilter);
933#endif
934 nfnetlink_subsys_unregister(&nfqnl_subsys);
935 netlink_unregister_notifier(&nfqnl_rtnl_notifier);
67137f3c
JDB
936
937 rcu_barrier(); /* Wait for completion of call_rcu()'s */
7af4cc3f
HW
938}
939
940MODULE_DESCRIPTION("netfilter packet queue handler");
941MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
942MODULE_LICENSE("GPL");
943MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_QUEUE);
944
65b4b4e8
AM
945module_init(nfnetlink_queue_init);
946module_exit(nfnetlink_queue_fini);
This page took 0.763931 seconds and 5 git commands to generate.