netfilter: ipset: Add hash:net,port,net module to kernel.
[GitHub/exynos8895/android_kernel_samsung_universal8895.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>
e8179610 33#include <net/netns/generic.h>
7c622345 34#include <net/netfilter/nfnetlink_queue.h>
7af4cc3f 35
60063497 36#include <linux/atomic.h>
7af4cc3f 37
fbcd923c
HW
38#ifdef CONFIG_BRIDGE_NETFILTER
39#include "../bridge/br_private.h"
40#endif
41
7af4cc3f
HW
42#define NFQNL_QMAX_DEFAULT 1024
43
9cefbbc9
FW
44/* We're using struct nlattr which has 16bit nla_len. Note that nla_len
45 * includes the header length. Thus, the maximum packet length that we
46 * support is 65531 bytes. We send truncated packets if the specified length
47 * is larger than that. Userspace can check for presence of NFQA_CAP_LEN
48 * attribute to detect truncation.
49 */
50#define NFQNL_MAX_COPY_RANGE (0xffff - NLA_HDRLEN)
51
7af4cc3f
HW
52struct nfqnl_instance {
53 struct hlist_node hlist; /* global list of queues */
9872bec7 54 struct rcu_head rcu;
7af4cc3f 55
15e47304 56 int peer_portid;
7af4cc3f
HW
57 unsigned int queue_maxlen;
58 unsigned int copy_range;
7af4cc3f
HW
59 unsigned int queue_dropped;
60 unsigned int queue_user_dropped;
61
7af4cc3f
HW
62
63 u_int16_t queue_num; /* number of this queue */
64 u_int8_t copy_mode;
fdb694a0 65 u_int32_t flags; /* Set using NFQA_CFG_FLAGS */
c463ac97
ED
66/*
67 * Following fields are dirtied for each queued packet,
68 * keep them in same cache line if possible.
69 */
70 spinlock_t lock;
71 unsigned int queue_total;
5863702a 72 unsigned int id_sequence; /* 'sequence' of pkt ids */
7af4cc3f
HW
73 struct list_head queue_list; /* packets in queue */
74};
75
02f014d8 76typedef int (*nfqnl_cmpfn)(struct nf_queue_entry *, unsigned long);
7af4cc3f 77
e8179610 78static int nfnl_queue_net_id __read_mostly;
7af4cc3f 79
7af4cc3f 80#define INSTANCE_BUCKETS 16
e8179610
G
81struct nfnl_queue_net {
82 spinlock_t instances_lock;
83 struct hlist_head instance_table[INSTANCE_BUCKETS];
84};
85
86static struct nfnl_queue_net *nfnl_queue_pernet(struct net *net)
87{
88 return net_generic(net, nfnl_queue_net_id);
89}
7af4cc3f
HW
90
91static inline u_int8_t instance_hashfn(u_int16_t queue_num)
92{
1cdb0905 93 return ((queue_num >> 8) ^ queue_num) % INSTANCE_BUCKETS;
7af4cc3f
HW
94}
95
96static struct nfqnl_instance *
e8179610 97instance_lookup(struct nfnl_queue_net *q, u_int16_t queue_num)
7af4cc3f
HW
98{
99 struct hlist_head *head;
7af4cc3f
HW
100 struct nfqnl_instance *inst;
101
e8179610 102 head = &q->instance_table[instance_hashfn(queue_num)];
b67bfe0d 103 hlist_for_each_entry_rcu(inst, head, hlist) {
7af4cc3f
HW
104 if (inst->queue_num == queue_num)
105 return inst;
106 }
107 return NULL;
108}
109
7af4cc3f 110static struct nfqnl_instance *
e8179610
G
111instance_create(struct nfnl_queue_net *q, u_int16_t queue_num,
112 int portid)
7af4cc3f 113{
baab2ce7 114 struct nfqnl_instance *inst;
9872bec7 115 unsigned int h;
baab2ce7 116 int err;
7af4cc3f 117
e8179610
G
118 spin_lock(&q->instances_lock);
119 if (instance_lookup(q, queue_num)) {
baab2ce7 120 err = -EEXIST;
7af4cc3f 121 goto out_unlock;
baab2ce7 122 }
7af4cc3f 123
10dfdc69 124 inst = kzalloc(sizeof(*inst), GFP_ATOMIC);
baab2ce7
PM
125 if (!inst) {
126 err = -ENOMEM;
7af4cc3f 127 goto out_unlock;
baab2ce7 128 }
7af4cc3f 129
7af4cc3f 130 inst->queue_num = queue_num;
15e47304 131 inst->peer_portid = portid;
7af4cc3f 132 inst->queue_maxlen = NFQNL_QMAX_DEFAULT;
9cefbbc9 133 inst->copy_range = NFQNL_MAX_COPY_RANGE;
7af4cc3f 134 inst->copy_mode = NFQNL_COPY_NONE;
181a46a5 135 spin_lock_init(&inst->lock);
7af4cc3f
HW
136 INIT_LIST_HEAD(&inst->queue_list);
137
baab2ce7
PM
138 if (!try_module_get(THIS_MODULE)) {
139 err = -EAGAIN;
7af4cc3f 140 goto out_free;
baab2ce7 141 }
7af4cc3f 142
9872bec7 143 h = instance_hashfn(queue_num);
e8179610 144 hlist_add_head_rcu(&inst->hlist, &q->instance_table[h]);
7af4cc3f 145
e8179610 146 spin_unlock(&q->instances_lock);
7af4cc3f 147
7af4cc3f
HW
148 return inst;
149
150out_free:
151 kfree(inst);
152out_unlock:
e8179610 153 spin_unlock(&q->instances_lock);
baab2ce7 154 return ERR_PTR(err);
7af4cc3f
HW
155}
156
b43d8d85
PM
157static void nfqnl_flush(struct nfqnl_instance *queue, nfqnl_cmpfn cmpfn,
158 unsigned long data);
7af4cc3f
HW
159
160static void
9872bec7 161instance_destroy_rcu(struct rcu_head *head)
7af4cc3f 162{
9872bec7
PM
163 struct nfqnl_instance *inst = container_of(head, struct nfqnl_instance,
164 rcu);
7af4cc3f 165
b43d8d85 166 nfqnl_flush(inst, NULL, 0);
9872bec7 167 kfree(inst);
7af4cc3f
HW
168 module_put(THIS_MODULE);
169}
170
9872bec7 171static void
7af4cc3f
HW
172__instance_destroy(struct nfqnl_instance *inst)
173{
9872bec7
PM
174 hlist_del_rcu(&inst->hlist);
175 call_rcu(&inst->rcu, instance_destroy_rcu);
7af4cc3f
HW
176}
177
9872bec7 178static void
e8179610 179instance_destroy(struct nfnl_queue_net *q, struct nfqnl_instance *inst)
7af4cc3f 180{
e8179610 181 spin_lock(&q->instances_lock);
9872bec7 182 __instance_destroy(inst);
e8179610 183 spin_unlock(&q->instances_lock);
7af4cc3f
HW
184}
185
7af4cc3f 186static inline void
02f014d8 187__enqueue_entry(struct nfqnl_instance *queue, struct nf_queue_entry *entry)
7af4cc3f 188{
0ac41e81 189 list_add_tail(&entry->list, &queue->queue_list);
7af4cc3f
HW
190 queue->queue_total++;
191}
192
97d32cf9
FW
193static void
194__dequeue_entry(struct nfqnl_instance *queue, struct nf_queue_entry *entry)
195{
196 list_del(&entry->list);
197 queue->queue_total--;
198}
199
02f014d8 200static struct nf_queue_entry *
b43d8d85 201find_dequeue_entry(struct nfqnl_instance *queue, unsigned int id)
7af4cc3f 202{
02f014d8 203 struct nf_queue_entry *entry = NULL, *i;
601e68e1 204
7af4cc3f 205 spin_lock_bh(&queue->lock);
b43d8d85
PM
206
207 list_for_each_entry(i, &queue->queue_list, list) {
208 if (i->id == id) {
209 entry = i;
210 break;
211 }
212 }
213
97d32cf9
FW
214 if (entry)
215 __dequeue_entry(queue, entry);
b43d8d85 216
7af4cc3f
HW
217 spin_unlock_bh(&queue->lock);
218
219 return entry;
220}
221
222static void
b43d8d85 223nfqnl_flush(struct nfqnl_instance *queue, nfqnl_cmpfn cmpfn, unsigned long data)
7af4cc3f 224{
02f014d8 225 struct nf_queue_entry *entry, *next;
b43d8d85 226
7af4cc3f 227 spin_lock_bh(&queue->lock);
b43d8d85
PM
228 list_for_each_entry_safe(entry, next, &queue->queue_list, list) {
229 if (!cmpfn || cmpfn(entry, data)) {
230 list_del(&entry->list);
231 queue->queue_total--;
4b3d15ef 232 nf_reinject(entry, NF_DROP);
b43d8d85
PM
233 }
234 }
7af4cc3f
HW
235 spin_unlock_bh(&queue->lock);
236}
237
ae08ce00
ED
238static void
239nfqnl_zcopy(struct sk_buff *to, const struct sk_buff *from, int len, int hlen)
240{
241 int i, j = 0;
242 int plen = 0; /* length of skb->head fragment */
243 struct page *page;
244 unsigned int offset;
245
246 /* dont bother with small payloads */
247 if (len <= skb_tailroom(to)) {
248 skb_copy_bits(from, 0, skb_put(to, len), len);
249 return;
250 }
251
252 if (hlen) {
253 skb_copy_bits(from, 0, skb_put(to, hlen), hlen);
254 len -= hlen;
255 } else {
256 plen = min_t(int, skb_headlen(from), len);
257 if (plen) {
258 page = virt_to_head_page(from->head);
259 offset = from->data - (unsigned char *)page_address(page);
260 __skb_fill_page_desc(to, 0, page, offset, plen);
261 get_page(page);
262 j = 1;
263 len -= plen;
264 }
265 }
266
267 to->truesize += len + plen;
268 to->len += len + plen;
269 to->data_len += len + plen;
270
271 for (i = 0; i < skb_shinfo(from)->nr_frags; i++) {
272 if (!len)
273 break;
274 skb_shinfo(to)->frags[j] = skb_shinfo(from)->frags[i];
275 skb_shinfo(to)->frags[j].size = min_t(int, skb_shinfo(to)->frags[j].size, len);
276 len -= skb_shinfo(to)->frags[j].size;
277 skb_frag_ref(to, j);
278 j++;
279 }
280 skb_shinfo(to)->nr_frags = j;
281}
282
496e4ae7
FW
283static int
284nfqnl_put_packet_info(struct sk_buff *nlskb, struct sk_buff *packet,
285 bool csum_verify)
7237190d
FW
286{
287 __u32 flags = 0;
288
289 if (packet->ip_summed == CHECKSUM_PARTIAL)
290 flags = NFQA_SKB_CSUMNOTREADY;
496e4ae7
FW
291 else if (csum_verify)
292 flags = NFQA_SKB_CSUM_NOTVERIFIED;
293
7237190d
FW
294 if (skb_is_gso(packet))
295 flags |= NFQA_SKB_GSO;
296
297 return flags ? nla_put_be32(nlskb, NFQA_SKB_INFO, htonl(flags)) : 0;
298}
299
7af4cc3f
HW
300static struct sk_buff *
301nfqnl_build_packet_message(struct nfqnl_instance *queue,
5863702a
ED
302 struct nf_queue_entry *entry,
303 __be32 **packet_id_ptr)
7af4cc3f 304{
7af4cc3f 305 size_t size;
6ee584be 306 size_t data_len = 0, cap_len = 0;
ae08ce00 307 int hlen = 0;
7af4cc3f 308 struct sk_buff *skb;
5863702a
ED
309 struct nlattr *nla;
310 struct nfqnl_msg_packet_hdr *pmsg;
7af4cc3f
HW
311 struct nlmsghdr *nlh;
312 struct nfgenmsg *nfmsg;
3e4ead4f
JJ
313 struct sk_buff *entskb = entry->skb;
314 struct net_device *indev;
315 struct net_device *outdev;
9cb01766
PNA
316 struct nf_conn *ct = NULL;
317 enum ip_conntrack_info uninitialized_var(ctinfo);
496e4ae7 318 bool csum_verify;
7af4cc3f 319
573ce260 320 size = nlmsg_total_size(sizeof(struct nfgenmsg))
df6fb868
PM
321 + nla_total_size(sizeof(struct nfqnl_msg_packet_hdr))
322 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
323 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
fbcd923c 324#ifdef CONFIG_BRIDGE_NETFILTER
df6fb868
PM
325 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
326 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
fbcd923c 327#endif
df6fb868
PM
328 + nla_total_size(sizeof(u_int32_t)) /* mark */
329 + nla_total_size(sizeof(struct nfqnl_msg_packet_hw))
7237190d 330 + nla_total_size(sizeof(u_int32_t)) /* skbinfo */
ae08ce00
ED
331 + nla_total_size(sizeof(u_int32_t)); /* cap_len */
332
333 if (entskb->tstamp.tv64)
334 size += nla_total_size(sizeof(struct nfqnl_msg_packet_timestamp));
7af4cc3f 335
496e4ae7
FW
336 if (entry->hook <= NF_INET_FORWARD ||
337 (entry->hook == NF_INET_POST_ROUTING && entskb->sk == NULL))
338 csum_verify = !skb_csum_unnecessary(entskb);
339 else
340 csum_verify = false;
341
02f014d8 342 outdev = entry->outdev;
3e4ead4f 343
c463ac97 344 switch ((enum nfqnl_config_mode)ACCESS_ONCE(queue->copy_mode)) {
7af4cc3f
HW
345 case NFQNL_COPY_META:
346 case NFQNL_COPY_NONE:
7af4cc3f 347 break;
601e68e1 348
7af4cc3f 349 case NFQNL_COPY_PACKET:
00bd1cc2
FW
350 if (!(queue->flags & NFQA_CFG_F_GSO) &&
351 entskb->ip_summed == CHECKSUM_PARTIAL &&
c463ac97 352 skb_checksum_help(entskb))
e7dfb09a 353 return NULL;
c463ac97
ED
354
355 data_len = ACCESS_ONCE(queue->copy_range);
9cefbbc9 356 if (data_len > entskb->len)
3e4ead4f 357 data_len = entskb->len;
601e68e1 358
ae08ce00
ED
359 if (!entskb->head_frag ||
360 skb_headlen(entskb) < L1_CACHE_BYTES ||
361 skb_shinfo(entskb)->nr_frags >= MAX_SKB_FRAGS)
362 hlen = skb_headlen(entskb);
363
364 if (skb_has_frag_list(entskb))
365 hlen = entskb->len;
366 hlen = min_t(int, data_len, hlen);
367 size += sizeof(struct nlattr) + hlen;
6ee584be 368 cap_len = entskb->len;
7af4cc3f 369 break;
7af4cc3f
HW
370 }
371
7c622345
PNA
372 if (queue->flags & NFQA_CFG_F_CONNTRACK)
373 ct = nfqnl_ct_get(entskb, &size, &ctinfo);
7af4cc3f 374
3ab1f683
PM
375 skb = nfnetlink_alloc_skb(&init_net, size, queue->peer_portid,
376 GFP_ATOMIC);
7af4cc3f 377 if (!skb)
3da07c0c 378 return NULL;
601e68e1 379
3da07c0c 380 nlh = nlmsg_put(skb, 0, 0,
7af4cc3f 381 NFNL_SUBSYS_QUEUE << 8 | NFQNL_MSG_PACKET,
3da07c0c
DM
382 sizeof(struct nfgenmsg), 0);
383 if (!nlh) {
384 kfree_skb(skb);
385 return NULL;
386 }
387 nfmsg = nlmsg_data(nlh);
02f014d8 388 nfmsg->nfgen_family = entry->pf;
7af4cc3f
HW
389 nfmsg->version = NFNETLINK_V0;
390 nfmsg->res_id = htons(queue->queue_num);
391
5863702a
ED
392 nla = __nla_reserve(skb, NFQA_PACKET_HDR, sizeof(*pmsg));
393 pmsg = nla_data(nla);
394 pmsg->hw_protocol = entskb->protocol;
395 pmsg->hook = entry->hook;
396 *packet_id_ptr = &pmsg->packet_id;
7af4cc3f 397
02f014d8 398 indev = entry->indev;
3e4ead4f 399 if (indev) {
fbcd923c 400#ifndef CONFIG_BRIDGE_NETFILTER
a447189e
DM
401 if (nla_put_be32(skb, NFQA_IFINDEX_INDEV, htonl(indev->ifindex)))
402 goto nla_put_failure;
fbcd923c 403#else
02f014d8 404 if (entry->pf == PF_BRIDGE) {
fbcd923c 405 /* Case 1: indev is physical input device, we need to
601e68e1 406 * look for bridge group (when called from
fbcd923c 407 * netfilter_bridge) */
a447189e
DM
408 if (nla_put_be32(skb, NFQA_IFINDEX_PHYSINDEV,
409 htonl(indev->ifindex)) ||
fbcd923c 410 /* this is the bridge group "brX" */
f350a0a8 411 /* rcu_read_lock()ed by __nf_queue */
a447189e
DM
412 nla_put_be32(skb, NFQA_IFINDEX_INDEV,
413 htonl(br_port_get_rcu(indev)->br->dev->ifindex)))
414 goto nla_put_failure;
fbcd923c
HW
415 } else {
416 /* Case 2: indev is bridge group, we need to look for
417 * physical device (when called from ipv4) */
a447189e
DM
418 if (nla_put_be32(skb, NFQA_IFINDEX_INDEV,
419 htonl(indev->ifindex)))
420 goto nla_put_failure;
421 if (entskb->nf_bridge && entskb->nf_bridge->physindev &&
422 nla_put_be32(skb, NFQA_IFINDEX_PHYSINDEV,
423 htonl(entskb->nf_bridge->physindev->ifindex)))
424 goto nla_put_failure;
fbcd923c
HW
425 }
426#endif
7af4cc3f
HW
427 }
428
3e4ead4f 429 if (outdev) {
fbcd923c 430#ifndef CONFIG_BRIDGE_NETFILTER
a447189e
DM
431 if (nla_put_be32(skb, NFQA_IFINDEX_OUTDEV, htonl(outdev->ifindex)))
432 goto nla_put_failure;
fbcd923c 433#else
02f014d8 434 if (entry->pf == PF_BRIDGE) {
fbcd923c 435 /* Case 1: outdev is physical output device, we need to
601e68e1 436 * look for bridge group (when called from
fbcd923c 437 * netfilter_bridge) */
a447189e
DM
438 if (nla_put_be32(skb, NFQA_IFINDEX_PHYSOUTDEV,
439 htonl(outdev->ifindex)) ||
fbcd923c 440 /* this is the bridge group "brX" */
f350a0a8 441 /* rcu_read_lock()ed by __nf_queue */
a447189e
DM
442 nla_put_be32(skb, NFQA_IFINDEX_OUTDEV,
443 htonl(br_port_get_rcu(outdev)->br->dev->ifindex)))
444 goto nla_put_failure;
fbcd923c
HW
445 } else {
446 /* Case 2: outdev is bridge group, we need to look for
447 * physical output device (when called from ipv4) */
a447189e
DM
448 if (nla_put_be32(skb, NFQA_IFINDEX_OUTDEV,
449 htonl(outdev->ifindex)))
450 goto nla_put_failure;
451 if (entskb->nf_bridge && entskb->nf_bridge->physoutdev &&
452 nla_put_be32(skb, NFQA_IFINDEX_PHYSOUTDEV,
453 htonl(entskb->nf_bridge->physoutdev->ifindex)))
454 goto nla_put_failure;
fbcd923c
HW
455 }
456#endif
7af4cc3f
HW
457 }
458
a447189e
DM
459 if (entskb->mark &&
460 nla_put_be32(skb, NFQA_MARK, htonl(entskb->mark)))
461 goto nla_put_failure;
7af4cc3f 462
2c38de4c
NC
463 if (indev && entskb->dev &&
464 entskb->mac_header != entskb->network_header) {
7af4cc3f 465 struct nfqnl_msg_packet_hw phw;
e4d091d7
DC
466 int len;
467
468 memset(&phw, 0, sizeof(phw));
469 len = dev_parse_header(entskb, phw.hw_addr);
b95cce35
SH
470 if (len) {
471 phw.hw_addrlen = htons(len);
a447189e
DM
472 if (nla_put(skb, NFQA_HWADDR, sizeof(phw), &phw))
473 goto nla_put_failure;
b95cce35 474 }
7af4cc3f
HW
475 }
476
b7aa0bf7 477 if (entskb->tstamp.tv64) {
7af4cc3f 478 struct nfqnl_msg_packet_timestamp ts;
b7aa0bf7
ED
479 struct timeval tv = ktime_to_timeval(entskb->tstamp);
480 ts.sec = cpu_to_be64(tv.tv_sec);
481 ts.usec = cpu_to_be64(tv.tv_usec);
7af4cc3f 482
a447189e
DM
483 if (nla_put(skb, NFQA_TIMESTAMP, sizeof(ts), &ts))
484 goto nla_put_failure;
7af4cc3f
HW
485 }
486
ae08ce00
ED
487 if (ct && nfqnl_ct_put(skb, ct, ctinfo) < 0)
488 goto nla_put_failure;
489
7f87712c
FW
490 if (cap_len > data_len &&
491 nla_put_be32(skb, NFQA_CAP_LEN, htonl(cap_len)))
ae08ce00
ED
492 goto nla_put_failure;
493
496e4ae7 494 if (nfqnl_put_packet_info(skb, entskb, csum_verify))
7237190d
FW
495 goto nla_put_failure;
496
7af4cc3f 497 if (data_len) {
df6fb868 498 struct nlattr *nla;
7af4cc3f 499
ae08ce00
ED
500 if (skb_tailroom(skb) < sizeof(*nla) + hlen)
501 goto nla_put_failure;
7af4cc3f 502
ae08ce00 503 nla = (struct nlattr *)skb_put(skb, sizeof(*nla));
df6fb868 504 nla->nla_type = NFQA_PAYLOAD;
ae08ce00 505 nla->nla_len = nla_attr_size(data_len);
7af4cc3f 506
ae08ce00 507 nfqnl_zcopy(skb, entskb, data_len, hlen);
7af4cc3f 508 }
601e68e1 509
ae08ce00 510 nlh->nlmsg_len = skb->len;
7af4cc3f
HW
511 return skb;
512
df6fb868 513nla_put_failure:
a6729955 514 kfree_skb(skb);
e87cc472 515 net_err_ratelimited("nf_queue: error creating packet message\n");
7af4cc3f
HW
516 return NULL;
517}
518
519static int
a5fedd43
FW
520__nfqnl_enqueue_packet(struct net *net, struct nfqnl_instance *queue,
521 struct nf_queue_entry *entry)
7af4cc3f 522{
7af4cc3f 523 struct sk_buff *nskb;
f1585086 524 int err = -ENOBUFS;
5863702a 525 __be32 *packet_id_ptr;
fdb694a0 526 int failopen = 0;
7af4cc3f 527
5863702a 528 nskb = nfqnl_build_packet_message(queue, entry, &packet_id_ptr);
f1585086
FW
529 if (nskb == NULL) {
530 err = -ENOMEM;
0ef0f465 531 goto err_out;
f1585086 532 }
7af4cc3f 533 spin_lock_bh(&queue->lock);
601e68e1 534
7af4cc3f 535 if (queue->queue_total >= queue->queue_maxlen) {
fdb694a0
KK
536 if (queue->flags & NFQA_CFG_F_FAIL_OPEN) {
537 failopen = 1;
538 err = 0;
539 } else {
540 queue->queue_dropped++;
541 net_warn_ratelimited("nf_queue: full at %d entries, dropping packets(s)\n",
542 queue->queue_total);
543 }
7af4cc3f
HW
544 goto err_out_free_nskb;
545 }
5863702a
ED
546 entry->id = ++queue->id_sequence;
547 *packet_id_ptr = htonl(entry->id);
7af4cc3f
HW
548
549 /* nfnetlink_unicast will either free the nskb or add it to a socket */
e8179610 550 err = nfnetlink_unicast(nskb, net, queue->peer_portid, MSG_DONTWAIT);
0ef0f465 551 if (err < 0) {
601e68e1 552 queue->queue_user_dropped++;
7af4cc3f
HW
553 goto err_out_unlock;
554 }
555
556 __enqueue_entry(queue, entry);
557
558 spin_unlock_bh(&queue->lock);
0ef0f465 559 return 0;
7af4cc3f
HW
560
561err_out_free_nskb:
601e68e1 562 kfree_skb(nskb);
7af4cc3f
HW
563err_out_unlock:
564 spin_unlock_bh(&queue->lock);
fdb694a0
KK
565 if (failopen)
566 nf_reinject(entry, NF_ACCEPT);
0ef0f465 567err_out:
f1585086 568 return err;
7af4cc3f
HW
569}
570
a5fedd43
FW
571static struct nf_queue_entry *
572nf_queue_entry_dup(struct nf_queue_entry *e)
573{
574 struct nf_queue_entry *entry = kmemdup(e, e->size, GFP_ATOMIC);
575 if (entry) {
576 if (nf_queue_entry_get_refs(entry))
577 return entry;
578 kfree(entry);
579 }
580 return NULL;
581}
582
583#ifdef CONFIG_BRIDGE_NETFILTER
584/* When called from bridge netfilter, skb->data must point to MAC header
585 * before calling skb_gso_segment(). Else, original MAC header is lost
586 * and segmented skbs will be sent to wrong destination.
587 */
588static void nf_bridge_adjust_skb_data(struct sk_buff *skb)
589{
590 if (skb->nf_bridge)
591 __skb_push(skb, skb->network_header - skb->mac_header);
592}
593
594static void nf_bridge_adjust_segmented_data(struct sk_buff *skb)
595{
596 if (skb->nf_bridge)
597 __skb_pull(skb, skb->network_header - skb->mac_header);
598}
599#else
600#define nf_bridge_adjust_skb_data(s) do {} while (0)
601#define nf_bridge_adjust_segmented_data(s) do {} while (0)
602#endif
603
604static void free_entry(struct nf_queue_entry *entry)
605{
606 nf_queue_entry_release_refs(entry);
607 kfree(entry);
608}
609
610static int
611__nfqnl_enqueue_packet_gso(struct net *net, struct nfqnl_instance *queue,
612 struct sk_buff *skb, struct nf_queue_entry *entry)
613{
614 int ret = -ENOMEM;
615 struct nf_queue_entry *entry_seg;
616
617 nf_bridge_adjust_segmented_data(skb);
618
619 if (skb->next == NULL) { /* last packet, no need to copy entry */
620 struct sk_buff *gso_skb = entry->skb;
621 entry->skb = skb;
622 ret = __nfqnl_enqueue_packet(net, queue, entry);
623 if (ret)
624 entry->skb = gso_skb;
625 return ret;
626 }
627
628 skb->next = NULL;
629
630 entry_seg = nf_queue_entry_dup(entry);
631 if (entry_seg) {
632 entry_seg->skb = skb;
633 ret = __nfqnl_enqueue_packet(net, queue, entry_seg);
634 if (ret)
635 free_entry(entry_seg);
636 }
637 return ret;
638}
639
640static int
641nfqnl_enqueue_packet(struct nf_queue_entry *entry, unsigned int queuenum)
642{
643 unsigned int queued;
644 struct nfqnl_instance *queue;
645 struct sk_buff *skb, *segs;
646 int err = -ENOBUFS;
647 struct net *net = dev_net(entry->indev ?
648 entry->indev : entry->outdev);
649 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
650
651 /* rcu_read_lock()ed by nf_hook_slow() */
652 queue = instance_lookup(q, queuenum);
653 if (!queue)
654 return -ESRCH;
655
656 if (queue->copy_mode == NFQNL_COPY_NONE)
657 return -EINVAL;
658
a5fedd43
FW
659 skb = entry->skb;
660
661 switch (entry->pf) {
662 case NFPROTO_IPV4:
663 skb->protocol = htons(ETH_P_IP);
664 break;
665 case NFPROTO_IPV6:
666 skb->protocol = htons(ETH_P_IPV6);
667 break;
668 }
669
7b8dfe28
PNA
670 if ((queue->flags & NFQA_CFG_F_GSO) || !skb_is_gso(skb))
671 return __nfqnl_enqueue_packet(net, queue, entry);
672
a5fedd43
FW
673 nf_bridge_adjust_skb_data(skb);
674 segs = skb_gso_segment(skb, 0);
675 /* Does not use PTR_ERR to limit the number of error codes that can be
676 * returned by nf_queue. For instance, callers rely on -ECANCELED to
677 * mean 'ignore this hook'.
678 */
679 if (IS_ERR(segs))
680 goto out_err;
681 queued = 0;
682 err = 0;
683 do {
684 struct sk_buff *nskb = segs->next;
685 if (err == 0)
686 err = __nfqnl_enqueue_packet_gso(net, queue,
687 segs, entry);
688 if (err == 0)
689 queued++;
690 else
691 kfree_skb(segs);
692 segs = nskb;
693 } while (segs);
694
695 if (queued) {
696 if (err) /* some segments are already queued */
697 free_entry(entry);
698 kfree_skb(skb);
699 return 0;
700 }
701 out_err:
702 nf_bridge_adjust_segmented_data(skb);
703 return err;
704}
705
7af4cc3f 706static int
8c88f87c 707nfqnl_mangle(void *data, int data_len, struct nf_queue_entry *e, int diff)
7af4cc3f 708{
e2b58a67 709 struct sk_buff *nskb;
7af4cc3f 710
d8a585d7
PM
711 if (diff < 0) {
712 if (pskb_trim(e->skb, data_len))
713 return -ENOMEM;
714 } else if (diff > 0) {
7af4cc3f
HW
715 if (data_len > 0xFFFF)
716 return -EINVAL;
717 if (diff > skb_tailroom(e->skb)) {
9a732ed6
AE
718 nskb = skb_copy_expand(e->skb, skb_headroom(e->skb),
719 diff, GFP_ATOMIC);
e2b58a67 720 if (!nskb) {
1158ba27 721 printk(KERN_WARNING "nf_queue: OOM "
7af4cc3f 722 "in mangle, dropping packet\n");
e2b58a67 723 return -ENOMEM;
7af4cc3f 724 }
e2b58a67
PM
725 kfree_skb(e->skb);
726 e->skb = nskb;
7af4cc3f
HW
727 }
728 skb_put(e->skb, diff);
729 }
37d41879 730 if (!skb_make_writable(e->skb, data_len))
7af4cc3f 731 return -ENOMEM;
27d7ff46 732 skb_copy_to_linear_data(e->skb, data, data_len);
e7dfb09a 733 e->skb->ip_summed = CHECKSUM_NONE;
7af4cc3f
HW
734 return 0;
735}
736
7af4cc3f
HW
737static int
738nfqnl_set_mode(struct nfqnl_instance *queue,
739 unsigned char mode, unsigned int range)
740{
c5de0dfd 741 int status = 0;
7af4cc3f
HW
742
743 spin_lock_bh(&queue->lock);
c5de0dfd
PM
744 switch (mode) {
745 case NFQNL_COPY_NONE:
746 case NFQNL_COPY_META:
747 queue->copy_mode = mode;
748 queue->copy_range = 0;
749 break;
750
751 case NFQNL_COPY_PACKET:
752 queue->copy_mode = mode;
9cefbbc9
FW
753 if (range == 0 || range > NFQNL_MAX_COPY_RANGE)
754 queue->copy_range = NFQNL_MAX_COPY_RANGE;
c5de0dfd
PM
755 else
756 queue->copy_range = range;
757 break;
758
759 default:
760 status = -EINVAL;
761
762 }
7af4cc3f
HW
763 spin_unlock_bh(&queue->lock);
764
765 return status;
766}
767
768static int
02f014d8 769dev_cmp(struct nf_queue_entry *entry, unsigned long ifindex)
7af4cc3f 770{
02f014d8
PM
771 if (entry->indev)
772 if (entry->indev->ifindex == ifindex)
7af4cc3f 773 return 1;
02f014d8
PM
774 if (entry->outdev)
775 if (entry->outdev->ifindex == ifindex)
7af4cc3f 776 return 1;
ef47c6a7
PM
777#ifdef CONFIG_BRIDGE_NETFILTER
778 if (entry->skb->nf_bridge) {
779 if (entry->skb->nf_bridge->physindev &&
780 entry->skb->nf_bridge->physindev->ifindex == ifindex)
781 return 1;
782 if (entry->skb->nf_bridge->physoutdev &&
783 entry->skb->nf_bridge->physoutdev->ifindex == ifindex)
784 return 1;
785 }
786#endif
7af4cc3f
HW
787 return 0;
788}
789
790/* drop all packets with either indev or outdev == ifindex from all queue
791 * instances */
792static void
e8179610 793nfqnl_dev_drop(struct net *net, int ifindex)
7af4cc3f
HW
794{
795 int i;
e8179610 796 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
601e68e1 797
9872bec7 798 rcu_read_lock();
7af4cc3f 799
9872bec7 800 for (i = 0; i < INSTANCE_BUCKETS; i++) {
7af4cc3f 801 struct nfqnl_instance *inst;
e8179610 802 struct hlist_head *head = &q->instance_table[i];
7af4cc3f 803
b67bfe0d 804 hlist_for_each_entry_rcu(inst, head, hlist)
b43d8d85 805 nfqnl_flush(inst, dev_cmp, ifindex);
7af4cc3f
HW
806 }
807
9872bec7 808 rcu_read_unlock();
7af4cc3f
HW
809}
810
811#define RCV_SKB_FAIL(err) do { netlink_ack(skb, nlh, (err)); return; } while (0)
812
813static int
814nfqnl_rcv_dev_event(struct notifier_block *this,
815 unsigned long event, void *ptr)
816{
351638e7 817 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
7af4cc3f
HW
818
819 /* Drop any packets associated with the downed device */
820 if (event == NETDEV_DOWN)
e8179610 821 nfqnl_dev_drop(dev_net(dev), dev->ifindex);
7af4cc3f
HW
822 return NOTIFY_DONE;
823}
824
825static struct notifier_block nfqnl_dev_notifier = {
826 .notifier_call = nfqnl_rcv_dev_event,
827};
828
829static int
830nfqnl_rcv_nl_event(struct notifier_block *this,
831 unsigned long event, void *ptr)
832{
833 struct netlink_notify *n = ptr;
e8179610 834 struct nfnl_queue_net *q = nfnl_queue_pernet(n->net);
7af4cc3f 835
dee5817e 836 if (event == NETLINK_URELEASE && n->protocol == NETLINK_NETFILTER) {
7af4cc3f
HW
837 int i;
838
15e47304 839 /* destroy all instances for this portid */
e8179610 840 spin_lock(&q->instances_lock);
9872bec7 841 for (i = 0; i < INSTANCE_BUCKETS; i++) {
b67bfe0d 842 struct hlist_node *t2;
7af4cc3f 843 struct nfqnl_instance *inst;
e8179610 844 struct hlist_head *head = &q->instance_table[i];
7af4cc3f 845
b67bfe0d 846 hlist_for_each_entry_safe(inst, t2, head, hlist) {
e8179610 847 if (n->portid == inst->peer_portid)
7af4cc3f
HW
848 __instance_destroy(inst);
849 }
850 }
e8179610 851 spin_unlock(&q->instances_lock);
7af4cc3f
HW
852 }
853 return NOTIFY_DONE;
854}
855
856static struct notifier_block nfqnl_rtnl_notifier = {
857 .notifier_call = nfqnl_rcv_nl_event,
858};
859
5bf75853
PM
860static const struct nla_policy nfqa_verdict_policy[NFQA_MAX+1] = {
861 [NFQA_VERDICT_HDR] = { .len = sizeof(struct nfqnl_msg_verdict_hdr) },
862 [NFQA_MARK] = { .type = NLA_U32 },
863 [NFQA_PAYLOAD] = { .type = NLA_UNSPEC },
9cb01766 864 [NFQA_CT] = { .type = NLA_UNSPEC },
bd077937 865 [NFQA_EXP] = { .type = NLA_UNSPEC },
838ab636
HW
866};
867
97d32cf9
FW
868static const struct nla_policy nfqa_verdict_batch_policy[NFQA_MAX+1] = {
869 [NFQA_VERDICT_HDR] = { .len = sizeof(struct nfqnl_msg_verdict_hdr) },
870 [NFQA_MARK] = { .type = NLA_U32 },
871};
872
e8179610
G
873static struct nfqnl_instance *
874verdict_instance_lookup(struct nfnl_queue_net *q, u16 queue_num, int nlportid)
97d32cf9
FW
875{
876 struct nfqnl_instance *queue;
877
e8179610 878 queue = instance_lookup(q, queue_num);
97d32cf9
FW
879 if (!queue)
880 return ERR_PTR(-ENODEV);
881
15e47304 882 if (queue->peer_portid != nlportid)
97d32cf9
FW
883 return ERR_PTR(-EPERM);
884
885 return queue;
886}
887
888static struct nfqnl_msg_verdict_hdr*
889verdicthdr_get(const struct nlattr * const nfqa[])
890{
891 struct nfqnl_msg_verdict_hdr *vhdr;
892 unsigned int verdict;
893
894 if (!nfqa[NFQA_VERDICT_HDR])
895 return NULL;
896
897 vhdr = nla_data(nfqa[NFQA_VERDICT_HDR]);
c6675233
FW
898 verdict = ntohl(vhdr->verdict) & NF_VERDICT_MASK;
899 if (verdict > NF_MAX_VERDICT || verdict == NF_STOLEN)
97d32cf9
FW
900 return NULL;
901 return vhdr;
902}
903
904static int nfq_id_after(unsigned int id, unsigned int max)
905{
906 return (int)(id - max) > 0;
907}
908
909static int
910nfqnl_recv_verdict_batch(struct sock *ctnl, struct sk_buff *skb,
911 const struct nlmsghdr *nlh,
912 const struct nlattr * const nfqa[])
913{
3da07c0c 914 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
97d32cf9
FW
915 struct nf_queue_entry *entry, *tmp;
916 unsigned int verdict, maxid;
917 struct nfqnl_msg_verdict_hdr *vhdr;
918 struct nfqnl_instance *queue;
919 LIST_HEAD(batch_list);
920 u16 queue_num = ntohs(nfmsg->res_id);
921
e8179610
G
922 struct net *net = sock_net(ctnl);
923 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
924
925 queue = verdict_instance_lookup(q, queue_num,
926 NETLINK_CB(skb).portid);
97d32cf9
FW
927 if (IS_ERR(queue))
928 return PTR_ERR(queue);
929
930 vhdr = verdicthdr_get(nfqa);
931 if (!vhdr)
932 return -EINVAL;
933
934 verdict = ntohl(vhdr->verdict);
935 maxid = ntohl(vhdr->id);
936
937 spin_lock_bh(&queue->lock);
938
939 list_for_each_entry_safe(entry, tmp, &queue->queue_list, list) {
940 if (nfq_id_after(entry->id, maxid))
941 break;
942 __dequeue_entry(queue, entry);
943 list_add_tail(&entry->list, &batch_list);
944 }
945
946 spin_unlock_bh(&queue->lock);
947
948 if (list_empty(&batch_list))
949 return -ENOENT;
950
951 list_for_each_entry_safe(entry, tmp, &batch_list, list) {
952 if (nfqa[NFQA_MARK])
953 entry->skb->mark = ntohl(nla_get_be32(nfqa[NFQA_MARK]));
954 nf_reinject(entry, verdict);
955 }
956 return 0;
957}
958
7af4cc3f
HW
959static int
960nfqnl_recv_verdict(struct sock *ctnl, struct sk_buff *skb,
39938324
PM
961 const struct nlmsghdr *nlh,
962 const struct nlattr * const nfqa[])
7af4cc3f 963{
3da07c0c 964 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
7af4cc3f
HW
965 u_int16_t queue_num = ntohs(nfmsg->res_id);
966
967 struct nfqnl_msg_verdict_hdr *vhdr;
968 struct nfqnl_instance *queue;
969 unsigned int verdict;
02f014d8 970 struct nf_queue_entry *entry;
8c88f87c
PNA
971 enum ip_conntrack_info uninitialized_var(ctinfo);
972 struct nf_conn *ct = NULL;
7af4cc3f 973
e8179610
G
974 struct net *net = sock_net(ctnl);
975 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
7af4cc3f 976
e8179610
G
977 queue = instance_lookup(q, queue_num);
978 if (!queue)
979 queue = verdict_instance_lookup(q, queue_num,
980 NETLINK_CB(skb).portid);
97d32cf9
FW
981 if (IS_ERR(queue))
982 return PTR_ERR(queue);
7af4cc3f 983
97d32cf9
FW
984 vhdr = verdicthdr_get(nfqa);
985 if (!vhdr)
84a797dd 986 return -EINVAL;
7af4cc3f 987
7af4cc3f
HW
988 verdict = ntohl(vhdr->verdict);
989
b43d8d85 990 entry = find_dequeue_entry(queue, ntohl(vhdr->id));
84a797dd
ED
991 if (entry == NULL)
992 return -ENOENT;
7af4cc3f 993
bd077937 994 if (nfqa[NFQA_CT]) {
7c622345 995 ct = nfqnl_ct_parse(entry->skb, nfqa[NFQA_CT], &ctinfo);
bd077937
PNA
996 if (ct && nfqa[NFQA_EXP]) {
997 nfqnl_attach_expect(ct, nfqa[NFQA_EXP],
998 NETLINK_CB(skb).portid,
999 nlmsg_report(nlh));
1000 }
1001 }
9cb01766 1002
df6fb868 1003 if (nfqa[NFQA_PAYLOAD]) {
8c88f87c
PNA
1004 u16 payload_len = nla_len(nfqa[NFQA_PAYLOAD]);
1005 int diff = payload_len - entry->skb->len;
1006
df6fb868 1007 if (nfqnl_mangle(nla_data(nfqa[NFQA_PAYLOAD]),
8c88f87c 1008 payload_len, entry, diff) < 0)
7af4cc3f 1009 verdict = NF_DROP;
8c88f87c 1010
7c622345 1011 if (ct)
0a0d80eb 1012 nfqnl_ct_seq_adjust(entry->skb, ct, ctinfo, diff);
7af4cc3f
HW
1013 }
1014
df6fb868 1015 if (nfqa[NFQA_MARK])
ea3a66ff 1016 entry->skb->mark = ntohl(nla_get_be32(nfqa[NFQA_MARK]));
601e68e1 1017
4b3d15ef 1018 nf_reinject(entry, verdict);
7af4cc3f
HW
1019 return 0;
1020}
1021
1022static int
1023nfqnl_recv_unsupp(struct sock *ctnl, struct sk_buff *skb,
39938324
PM
1024 const struct nlmsghdr *nlh,
1025 const struct nlattr * const nfqa[])
7af4cc3f
HW
1026{
1027 return -ENOTSUPP;
1028}
1029
5bf75853
PM
1030static const struct nla_policy nfqa_cfg_policy[NFQA_CFG_MAX+1] = {
1031 [NFQA_CFG_CMD] = { .len = sizeof(struct nfqnl_msg_config_cmd) },
1032 [NFQA_CFG_PARAMS] = { .len = sizeof(struct nfqnl_msg_config_params) },
838ab636
HW
1033};
1034
e3ac5298 1035static const struct nf_queue_handler nfqh = {
bbd86b9f
HW
1036 .outfn = &nfqnl_enqueue_packet,
1037};
1038
7af4cc3f
HW
1039static int
1040nfqnl_recv_config(struct sock *ctnl, struct sk_buff *skb,
39938324
PM
1041 const struct nlmsghdr *nlh,
1042 const struct nlattr * const nfqa[])
7af4cc3f 1043{
3da07c0c 1044 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
7af4cc3f
HW
1045 u_int16_t queue_num = ntohs(nfmsg->res_id);
1046 struct nfqnl_instance *queue;
9872bec7 1047 struct nfqnl_msg_config_cmd *cmd = NULL;
e8179610
G
1048 struct net *net = sock_net(ctnl);
1049 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
838ab636 1050 int ret = 0;
7af4cc3f 1051
9872bec7
PM
1052 if (nfqa[NFQA_CFG_CMD]) {
1053 cmd = nla_data(nfqa[NFQA_CFG_CMD]);
1054
0360ae41 1055 /* Obsolete commands without queue context */
9872bec7 1056 switch (cmd->command) {
0360ae41
FW
1057 case NFQNL_CFG_CMD_PF_BIND: return 0;
1058 case NFQNL_CFG_CMD_PF_UNBIND: return 0;
9872bec7 1059 }
9872bec7
PM
1060 }
1061
1062 rcu_read_lock();
e8179610 1063 queue = instance_lookup(q, queue_num);
15e47304 1064 if (queue && queue->peer_portid != NETLINK_CB(skb).portid) {
a3c8e7fd 1065 ret = -EPERM;
9872bec7 1066 goto err_out_unlock;
a3c8e7fd
PM
1067 }
1068
9872bec7 1069 if (cmd != NULL) {
7af4cc3f
HW
1070 switch (cmd->command) {
1071 case NFQNL_CFG_CMD_BIND:
9872bec7
PM
1072 if (queue) {
1073 ret = -EBUSY;
1074 goto err_out_unlock;
1075 }
e8179610
G
1076 queue = instance_create(q, queue_num,
1077 NETLINK_CB(skb).portid);
baab2ce7
PM
1078 if (IS_ERR(queue)) {
1079 ret = PTR_ERR(queue);
9872bec7
PM
1080 goto err_out_unlock;
1081 }
7af4cc3f
HW
1082 break;
1083 case NFQNL_CFG_CMD_UNBIND:
9872bec7
PM
1084 if (!queue) {
1085 ret = -ENODEV;
1086 goto err_out_unlock;
1087 }
e8179610 1088 instance_destroy(q, queue);
7af4cc3f
HW
1089 break;
1090 case NFQNL_CFG_CMD_PF_BIND:
7af4cc3f 1091 case NFQNL_CFG_CMD_PF_UNBIND:
7af4cc3f
HW
1092 break;
1093 default:
cd21f0ac 1094 ret = -ENOTSUPP;
838ab636 1095 break;
7af4cc3f 1096 }
7af4cc3f
HW
1097 }
1098
df6fb868 1099 if (nfqa[NFQA_CFG_PARAMS]) {
7af4cc3f 1100 struct nfqnl_msg_config_params *params;
7af4cc3f 1101
406dbfc9 1102 if (!queue) {
a3c8e7fd 1103 ret = -ENODEV;
9872bec7 1104 goto err_out_unlock;
406dbfc9 1105 }
df6fb868 1106 params = nla_data(nfqa[NFQA_CFG_PARAMS]);
7af4cc3f
HW
1107 nfqnl_set_mode(queue, params->copy_mode,
1108 ntohl(params->copy_range));
1109 }
1110
df6fb868 1111 if (nfqa[NFQA_CFG_QUEUE_MAXLEN]) {
829e17a1 1112 __be32 *queue_maxlen;
a3c8e7fd
PM
1113
1114 if (!queue) {
1115 ret = -ENODEV;
9872bec7 1116 goto err_out_unlock;
a3c8e7fd 1117 }
df6fb868 1118 queue_maxlen = nla_data(nfqa[NFQA_CFG_QUEUE_MAXLEN]);
829e17a1
EL
1119 spin_lock_bh(&queue->lock);
1120 queue->queue_maxlen = ntohl(*queue_maxlen);
1121 spin_unlock_bh(&queue->lock);
1122 }
1123
fdb694a0
KK
1124 if (nfqa[NFQA_CFG_FLAGS]) {
1125 __u32 flags, mask;
1126
1127 if (!queue) {
1128 ret = -ENODEV;
1129 goto err_out_unlock;
1130 }
1131
1132 if (!nfqa[NFQA_CFG_MASK]) {
1133 /* A mask is needed to specify which flags are being
1134 * changed.
1135 */
1136 ret = -EINVAL;
1137 goto err_out_unlock;
1138 }
1139
1140 flags = ntohl(nla_get_be32(nfqa[NFQA_CFG_FLAGS]));
1141 mask = ntohl(nla_get_be32(nfqa[NFQA_CFG_MASK]));
1142
46ba5a25
KK
1143 if (flags >= NFQA_CFG_F_MAX) {
1144 ret = -EOPNOTSUPP;
1145 goto err_out_unlock;
1146 }
1147
fdb694a0
KK
1148 spin_lock_bh(&queue->lock);
1149 queue->flags &= ~mask;
1150 queue->flags |= flags & mask;
1151 spin_unlock_bh(&queue->lock);
1152 }
1153
9872bec7
PM
1154err_out_unlock:
1155 rcu_read_unlock();
838ab636 1156 return ret;
7af4cc3f
HW
1157}
1158
7c8d4cb4 1159static const struct nfnl_callback nfqnl_cb[NFQNL_MSG_MAX] = {
84a797dd 1160 [NFQNL_MSG_PACKET] = { .call_rcu = nfqnl_recv_unsupp,
37d2e7a2 1161 .attr_count = NFQA_MAX, },
84a797dd 1162 [NFQNL_MSG_VERDICT] = { .call_rcu = nfqnl_recv_verdict,
5bf75853
PM
1163 .attr_count = NFQA_MAX,
1164 .policy = nfqa_verdict_policy },
7af4cc3f 1165 [NFQNL_MSG_CONFIG] = { .call = nfqnl_recv_config,
5bf75853
PM
1166 .attr_count = NFQA_CFG_MAX,
1167 .policy = nfqa_cfg_policy },
97d32cf9
FW
1168 [NFQNL_MSG_VERDICT_BATCH]={ .call_rcu = nfqnl_recv_verdict_batch,
1169 .attr_count = NFQA_MAX,
1170 .policy = nfqa_verdict_batch_policy },
7af4cc3f
HW
1171};
1172
7c8d4cb4 1173static const struct nfnetlink_subsystem nfqnl_subsys = {
7af4cc3f
HW
1174 .name = "nf_queue",
1175 .subsys_id = NFNL_SUBSYS_QUEUE,
1176 .cb_count = NFQNL_MSG_MAX,
7af4cc3f
HW
1177 .cb = nfqnl_cb,
1178};
1179
838ab636
HW
1180#ifdef CONFIG_PROC_FS
1181struct iter_state {
e8179610 1182 struct seq_net_private p;
838ab636
HW
1183 unsigned int bucket;
1184};
1185
1186static struct hlist_node *get_first(struct seq_file *seq)
1187{
1188 struct iter_state *st = seq->private;
e8179610
G
1189 struct net *net;
1190 struct nfnl_queue_net *q;
838ab636
HW
1191
1192 if (!st)
1193 return NULL;
1194
e8179610
G
1195 net = seq_file_net(seq);
1196 q = nfnl_queue_pernet(net);
838ab636 1197 for (st->bucket = 0; st->bucket < INSTANCE_BUCKETS; st->bucket++) {
e8179610
G
1198 if (!hlist_empty(&q->instance_table[st->bucket]))
1199 return q->instance_table[st->bucket].first;
838ab636
HW
1200 }
1201 return NULL;
1202}
1203
1204static struct hlist_node *get_next(struct seq_file *seq, struct hlist_node *h)
1205{
1206 struct iter_state *st = seq->private;
e8179610 1207 struct net *net = seq_file_net(seq);
838ab636
HW
1208
1209 h = h->next;
1210 while (!h) {
e8179610
G
1211 struct nfnl_queue_net *q;
1212
838ab636
HW
1213 if (++st->bucket >= INSTANCE_BUCKETS)
1214 return NULL;
1215
e8179610
G
1216 q = nfnl_queue_pernet(net);
1217 h = q->instance_table[st->bucket].first;
838ab636
HW
1218 }
1219 return h;
1220}
1221
1222static struct hlist_node *get_idx(struct seq_file *seq, loff_t pos)
1223{
1224 struct hlist_node *head;
1225 head = get_first(seq);
1226
1227 if (head)
1228 while (pos && (head = get_next(seq, head)))
1229 pos--;
1230 return pos ? NULL : head;
1231}
1232
e8179610
G
1233static void *seq_start(struct seq_file *s, loff_t *pos)
1234 __acquires(nfnl_queue_pernet(seq_file_net(s))->instances_lock)
838ab636 1235{
e8179610
G
1236 spin_lock(&nfnl_queue_pernet(seq_file_net(s))->instances_lock);
1237 return get_idx(s, *pos);
838ab636
HW
1238}
1239
1240static void *seq_next(struct seq_file *s, void *v, loff_t *pos)
1241{
1242 (*pos)++;
1243 return get_next(s, v);
1244}
1245
1246static void seq_stop(struct seq_file *s, void *v)
e8179610 1247 __releases(nfnl_queue_pernet(seq_file_net(s))->instances_lock)
838ab636 1248{
e8179610 1249 spin_unlock(&nfnl_queue_pernet(seq_file_net(s))->instances_lock);
838ab636
HW
1250}
1251
1252static int seq_show(struct seq_file *s, void *v)
1253{
1254 const struct nfqnl_instance *inst = v;
1255
1256 return seq_printf(s, "%5d %6d %5d %1d %5d %5d %5d %8d %2d\n",
1257 inst->queue_num,
15e47304 1258 inst->peer_portid, inst->queue_total,
838ab636
HW
1259 inst->copy_mode, inst->copy_range,
1260 inst->queue_dropped, inst->queue_user_dropped,
5863702a 1261 inst->id_sequence, 1);
838ab636
HW
1262}
1263
56b3d975 1264static const struct seq_operations nfqnl_seq_ops = {
838ab636
HW
1265 .start = seq_start,
1266 .next = seq_next,
1267 .stop = seq_stop,
1268 .show = seq_show,
1269};
1270
1271static int nfqnl_open(struct inode *inode, struct file *file)
1272{
e8179610 1273 return seq_open_net(inode, file, &nfqnl_seq_ops,
e2da5913 1274 sizeof(struct iter_state));
838ab636
HW
1275}
1276
da7071d7 1277static const struct file_operations nfqnl_file_ops = {
838ab636
HW
1278 .owner = THIS_MODULE,
1279 .open = nfqnl_open,
1280 .read = seq_read,
1281 .llseek = seq_lseek,
e8179610 1282 .release = seq_release_net,
838ab636
HW
1283};
1284
1285#endif /* PROC_FS */
1286
e8179610 1287static int __net_init nfnl_queue_net_init(struct net *net)
7af4cc3f 1288{
e8179610
G
1289 unsigned int i;
1290 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
601e68e1 1291
838ab636 1292 for (i = 0; i < INSTANCE_BUCKETS; i++)
e8179610
G
1293 INIT_HLIST_HEAD(&q->instance_table[i]);
1294
1295 spin_lock_init(&q->instances_lock);
1296
1297#ifdef CONFIG_PROC_FS
1298 if (!proc_create("nfnetlink_queue", 0440,
1299 net->nf.proc_netfilter, &nfqnl_file_ops))
1300 return -ENOMEM;
1301#endif
1302 return 0;
1303}
1304
1305static void __net_exit nfnl_queue_net_exit(struct net *net)
1306{
e778f56e 1307#ifdef CONFIG_PROC_FS
e8179610 1308 remove_proc_entry("nfnetlink_queue", net->nf.proc_netfilter);
e778f56e 1309#endif
e8179610
G
1310}
1311
1312static struct pernet_operations nfnl_queue_net_ops = {
1313 .init = nfnl_queue_net_init,
1314 .exit = nfnl_queue_net_exit,
1315 .id = &nfnl_queue_net_id,
1316 .size = sizeof(struct nfnl_queue_net),
1317};
1318
1319static int __init nfnetlink_queue_init(void)
1320{
1321 int status = -ENOMEM;
838ab636 1322
7af4cc3f
HW
1323 netlink_register_notifier(&nfqnl_rtnl_notifier);
1324 status = nfnetlink_subsys_register(&nfqnl_subsys);
1325 if (status < 0) {
e8179610 1326 pr_err("nf_queue: failed to create netlink socket\n");
7af4cc3f
HW
1327 goto cleanup_netlink_notifier;
1328 }
1329
e8179610
G
1330 status = register_pernet_subsys(&nfnl_queue_net_ops);
1331 if (status < 0) {
1332 pr_err("nf_queue: failed to register pernet ops\n");
838ab636 1333 goto cleanup_subsys;
e8179610 1334 }
7af4cc3f 1335 register_netdevice_notifier(&nfqnl_dev_notifier);
0360ae41 1336 nf_register_queue_handler(&nfqh);
7af4cc3f
HW
1337 return status;
1338
838ab636 1339cleanup_subsys:
7af4cc3f 1340 nfnetlink_subsys_unregister(&nfqnl_subsys);
7af4cc3f
HW
1341cleanup_netlink_notifier:
1342 netlink_unregister_notifier(&nfqnl_rtnl_notifier);
1343 return status;
1344}
1345
65b4b4e8 1346static void __exit nfnetlink_queue_fini(void)
7af4cc3f 1347{
0360ae41 1348 nf_unregister_queue_handler();
32292a7f 1349 unregister_netdevice_notifier(&nfqnl_dev_notifier);
e8179610 1350 unregister_pernet_subsys(&nfnl_queue_net_ops);
32292a7f
PM
1351 nfnetlink_subsys_unregister(&nfqnl_subsys);
1352 netlink_unregister_notifier(&nfqnl_rtnl_notifier);
67137f3c
JDB
1353
1354 rcu_barrier(); /* Wait for completion of call_rcu()'s */
7af4cc3f
HW
1355}
1356
1357MODULE_DESCRIPTION("netfilter packet queue handler");
1358MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
1359MODULE_LICENSE("GPL");
1360MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_QUEUE);
1361
65b4b4e8
AM
1362module_init(nfnetlink_queue_init);
1363module_exit(nfnetlink_queue_fini);