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