]> git.ipfire.org Git - people/ms/linux.git/blame - net/netfilter/nfnetlink_queue_core.c
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nftables
[people/ms/linux.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
08c0cad6
VG
300static int nfqnl_put_sk_uidgid(struct sk_buff *skb, struct sock *sk)
301{
302 const struct cred *cred;
303
304 if (sk->sk_state == TCP_TIME_WAIT)
305 return 0;
306
307 read_lock_bh(&sk->sk_callback_lock);
308 if (sk->sk_socket && sk->sk_socket->file) {
309 cred = sk->sk_socket->file->f_cred;
310 if (nla_put_be32(skb, NFQA_UID,
311 htonl(from_kuid_munged(&init_user_ns, cred->fsuid))))
312 goto nla_put_failure;
313 if (nla_put_be32(skb, NFQA_GID,
314 htonl(from_kgid_munged(&init_user_ns, cred->fsgid))))
315 goto nla_put_failure;
316 }
317 read_unlock_bh(&sk->sk_callback_lock);
318 return 0;
319
320nla_put_failure:
321 read_unlock_bh(&sk->sk_callback_lock);
322 return -1;
323}
324
7af4cc3f 325static struct sk_buff *
74332687 326nfqnl_build_packet_message(struct net *net, struct nfqnl_instance *queue,
5863702a
ED
327 struct nf_queue_entry *entry,
328 __be32 **packet_id_ptr)
7af4cc3f 329{
7af4cc3f 330 size_t size;
6ee584be 331 size_t data_len = 0, cap_len = 0;
ae08ce00 332 int hlen = 0;
7af4cc3f 333 struct sk_buff *skb;
5863702a
ED
334 struct nlattr *nla;
335 struct nfqnl_msg_packet_hdr *pmsg;
7af4cc3f
HW
336 struct nlmsghdr *nlh;
337 struct nfgenmsg *nfmsg;
3e4ead4f
JJ
338 struct sk_buff *entskb = entry->skb;
339 struct net_device *indev;
340 struct net_device *outdev;
9cb01766
PNA
341 struct nf_conn *ct = NULL;
342 enum ip_conntrack_info uninitialized_var(ctinfo);
496e4ae7 343 bool csum_verify;
7af4cc3f 344
573ce260 345 size = nlmsg_total_size(sizeof(struct nfgenmsg))
df6fb868
PM
346 + nla_total_size(sizeof(struct nfqnl_msg_packet_hdr))
347 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
348 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
fbcd923c 349#ifdef CONFIG_BRIDGE_NETFILTER
df6fb868
PM
350 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
351 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
fbcd923c 352#endif
df6fb868
PM
353 + nla_total_size(sizeof(u_int32_t)) /* mark */
354 + nla_total_size(sizeof(struct nfqnl_msg_packet_hw))
7237190d 355 + nla_total_size(sizeof(u_int32_t)) /* skbinfo */
ae08ce00
ED
356 + nla_total_size(sizeof(u_int32_t)); /* cap_len */
357
358 if (entskb->tstamp.tv64)
359 size += nla_total_size(sizeof(struct nfqnl_msg_packet_timestamp));
7af4cc3f 360
496e4ae7
FW
361 if (entry->hook <= NF_INET_FORWARD ||
362 (entry->hook == NF_INET_POST_ROUTING && entskb->sk == NULL))
363 csum_verify = !skb_csum_unnecessary(entskb);
364 else
365 csum_verify = false;
366
02f014d8 367 outdev = entry->outdev;
3e4ead4f 368
c463ac97 369 switch ((enum nfqnl_config_mode)ACCESS_ONCE(queue->copy_mode)) {
7af4cc3f
HW
370 case NFQNL_COPY_META:
371 case NFQNL_COPY_NONE:
7af4cc3f 372 break;
601e68e1 373
7af4cc3f 374 case NFQNL_COPY_PACKET:
00bd1cc2
FW
375 if (!(queue->flags & NFQA_CFG_F_GSO) &&
376 entskb->ip_summed == CHECKSUM_PARTIAL &&
c463ac97 377 skb_checksum_help(entskb))
e7dfb09a 378 return NULL;
c463ac97
ED
379
380 data_len = ACCESS_ONCE(queue->copy_range);
9cefbbc9 381 if (data_len > entskb->len)
3e4ead4f 382 data_len = entskb->len;
601e68e1 383
ae08ce00
ED
384 if (!entskb->head_frag ||
385 skb_headlen(entskb) < L1_CACHE_BYTES ||
386 skb_shinfo(entskb)->nr_frags >= MAX_SKB_FRAGS)
387 hlen = skb_headlen(entskb);
388
389 if (skb_has_frag_list(entskb))
390 hlen = entskb->len;
391 hlen = min_t(int, data_len, hlen);
392 size += sizeof(struct nlattr) + hlen;
6ee584be 393 cap_len = entskb->len;
7af4cc3f 394 break;
7af4cc3f
HW
395 }
396
7c622345
PNA
397 if (queue->flags & NFQA_CFG_F_CONNTRACK)
398 ct = nfqnl_ct_get(entskb, &size, &ctinfo);
7af4cc3f 399
08c0cad6
VG
400 if (queue->flags & NFQA_CFG_F_UID_GID) {
401 size += (nla_total_size(sizeof(u_int32_t)) /* uid */
402 + nla_total_size(sizeof(u_int32_t))); /* gid */
403 }
404
74332687 405 skb = nfnetlink_alloc_skb(net, size, queue->peer_portid,
3ab1f683 406 GFP_ATOMIC);
7af4cc3f 407 if (!skb)
3da07c0c 408 return NULL;
601e68e1 409
3da07c0c 410 nlh = nlmsg_put(skb, 0, 0,
7af4cc3f 411 NFNL_SUBSYS_QUEUE << 8 | NFQNL_MSG_PACKET,
3da07c0c
DM
412 sizeof(struct nfgenmsg), 0);
413 if (!nlh) {
414 kfree_skb(skb);
415 return NULL;
416 }
417 nfmsg = nlmsg_data(nlh);
02f014d8 418 nfmsg->nfgen_family = entry->pf;
7af4cc3f
HW
419 nfmsg->version = NFNETLINK_V0;
420 nfmsg->res_id = htons(queue->queue_num);
421
5863702a
ED
422 nla = __nla_reserve(skb, NFQA_PACKET_HDR, sizeof(*pmsg));
423 pmsg = nla_data(nla);
424 pmsg->hw_protocol = entskb->protocol;
425 pmsg->hook = entry->hook;
426 *packet_id_ptr = &pmsg->packet_id;
7af4cc3f 427
02f014d8 428 indev = entry->indev;
3e4ead4f 429 if (indev) {
fbcd923c 430#ifndef CONFIG_BRIDGE_NETFILTER
a447189e
DM
431 if (nla_put_be32(skb, NFQA_IFINDEX_INDEV, htonl(indev->ifindex)))
432 goto nla_put_failure;
fbcd923c 433#else
02f014d8 434 if (entry->pf == PF_BRIDGE) {
fbcd923c 435 /* Case 1: indev is physical input 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_PHYSINDEV,
439 htonl(indev->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_INDEV,
443 htonl(br_port_get_rcu(indev)->br->dev->ifindex)))
444 goto nla_put_failure;
fbcd923c
HW
445 } else {
446 /* Case 2: indev is bridge group, we need to look for
447 * physical device (when called from ipv4) */
a447189e
DM
448 if (nla_put_be32(skb, NFQA_IFINDEX_INDEV,
449 htonl(indev->ifindex)))
450 goto nla_put_failure;
451 if (entskb->nf_bridge && entskb->nf_bridge->physindev &&
452 nla_put_be32(skb, NFQA_IFINDEX_PHYSINDEV,
453 htonl(entskb->nf_bridge->physindev->ifindex)))
454 goto nla_put_failure;
fbcd923c
HW
455 }
456#endif
7af4cc3f
HW
457 }
458
3e4ead4f 459 if (outdev) {
fbcd923c 460#ifndef CONFIG_BRIDGE_NETFILTER
a447189e
DM
461 if (nla_put_be32(skb, NFQA_IFINDEX_OUTDEV, htonl(outdev->ifindex)))
462 goto nla_put_failure;
fbcd923c 463#else
02f014d8 464 if (entry->pf == PF_BRIDGE) {
fbcd923c 465 /* Case 1: outdev is physical output device, we need to
601e68e1 466 * look for bridge group (when called from
fbcd923c 467 * netfilter_bridge) */
a447189e
DM
468 if (nla_put_be32(skb, NFQA_IFINDEX_PHYSOUTDEV,
469 htonl(outdev->ifindex)) ||
fbcd923c 470 /* this is the bridge group "brX" */
f350a0a8 471 /* rcu_read_lock()ed by __nf_queue */
a447189e
DM
472 nla_put_be32(skb, NFQA_IFINDEX_OUTDEV,
473 htonl(br_port_get_rcu(outdev)->br->dev->ifindex)))
474 goto nla_put_failure;
fbcd923c
HW
475 } else {
476 /* Case 2: outdev is bridge group, we need to look for
477 * physical output device (when called from ipv4) */
a447189e
DM
478 if (nla_put_be32(skb, NFQA_IFINDEX_OUTDEV,
479 htonl(outdev->ifindex)))
480 goto nla_put_failure;
481 if (entskb->nf_bridge && entskb->nf_bridge->physoutdev &&
482 nla_put_be32(skb, NFQA_IFINDEX_PHYSOUTDEV,
483 htonl(entskb->nf_bridge->physoutdev->ifindex)))
484 goto nla_put_failure;
fbcd923c
HW
485 }
486#endif
7af4cc3f
HW
487 }
488
a447189e
DM
489 if (entskb->mark &&
490 nla_put_be32(skb, NFQA_MARK, htonl(entskb->mark)))
491 goto nla_put_failure;
7af4cc3f 492
2c38de4c
NC
493 if (indev && entskb->dev &&
494 entskb->mac_header != entskb->network_header) {
7af4cc3f 495 struct nfqnl_msg_packet_hw phw;
e4d091d7
DC
496 int len;
497
498 memset(&phw, 0, sizeof(phw));
499 len = dev_parse_header(entskb, phw.hw_addr);
b95cce35
SH
500 if (len) {
501 phw.hw_addrlen = htons(len);
a447189e
DM
502 if (nla_put(skb, NFQA_HWADDR, sizeof(phw), &phw))
503 goto nla_put_failure;
b95cce35 504 }
7af4cc3f
HW
505 }
506
b7aa0bf7 507 if (entskb->tstamp.tv64) {
7af4cc3f 508 struct nfqnl_msg_packet_timestamp ts;
b7aa0bf7
ED
509 struct timeval tv = ktime_to_timeval(entskb->tstamp);
510 ts.sec = cpu_to_be64(tv.tv_sec);
511 ts.usec = cpu_to_be64(tv.tv_usec);
7af4cc3f 512
a447189e
DM
513 if (nla_put(skb, NFQA_TIMESTAMP, sizeof(ts), &ts))
514 goto nla_put_failure;
7af4cc3f
HW
515 }
516
08c0cad6
VG
517 if ((queue->flags & NFQA_CFG_F_UID_GID) && entskb->sk &&
518 nfqnl_put_sk_uidgid(skb, entskb->sk) < 0)
519 goto nla_put_failure;
520
ae08ce00
ED
521 if (ct && nfqnl_ct_put(skb, ct, ctinfo) < 0)
522 goto nla_put_failure;
523
7f87712c
FW
524 if (cap_len > data_len &&
525 nla_put_be32(skb, NFQA_CAP_LEN, htonl(cap_len)))
ae08ce00
ED
526 goto nla_put_failure;
527
496e4ae7 528 if (nfqnl_put_packet_info(skb, entskb, csum_verify))
7237190d
FW
529 goto nla_put_failure;
530
7af4cc3f 531 if (data_len) {
df6fb868 532 struct nlattr *nla;
7af4cc3f 533
ae08ce00
ED
534 if (skb_tailroom(skb) < sizeof(*nla) + hlen)
535 goto nla_put_failure;
7af4cc3f 536
ae08ce00 537 nla = (struct nlattr *)skb_put(skb, sizeof(*nla));
df6fb868 538 nla->nla_type = NFQA_PAYLOAD;
ae08ce00 539 nla->nla_len = nla_attr_size(data_len);
7af4cc3f 540
ae08ce00 541 nfqnl_zcopy(skb, entskb, data_len, hlen);
7af4cc3f 542 }
601e68e1 543
ae08ce00 544 nlh->nlmsg_len = skb->len;
7af4cc3f
HW
545 return skb;
546
df6fb868 547nla_put_failure:
a6729955 548 kfree_skb(skb);
e87cc472 549 net_err_ratelimited("nf_queue: error creating packet message\n");
7af4cc3f
HW
550 return NULL;
551}
552
553static int
a5fedd43
FW
554__nfqnl_enqueue_packet(struct net *net, struct nfqnl_instance *queue,
555 struct nf_queue_entry *entry)
7af4cc3f 556{
7af4cc3f 557 struct sk_buff *nskb;
f1585086 558 int err = -ENOBUFS;
5863702a 559 __be32 *packet_id_ptr;
fdb694a0 560 int failopen = 0;
7af4cc3f 561
74332687 562 nskb = nfqnl_build_packet_message(net, queue, entry, &packet_id_ptr);
f1585086
FW
563 if (nskb == NULL) {
564 err = -ENOMEM;
0ef0f465 565 goto err_out;
f1585086 566 }
7af4cc3f 567 spin_lock_bh(&queue->lock);
601e68e1 568
7af4cc3f 569 if (queue->queue_total >= queue->queue_maxlen) {
fdb694a0
KK
570 if (queue->flags & NFQA_CFG_F_FAIL_OPEN) {
571 failopen = 1;
572 err = 0;
573 } else {
574 queue->queue_dropped++;
575 net_warn_ratelimited("nf_queue: full at %d entries, dropping packets(s)\n",
576 queue->queue_total);
577 }
7af4cc3f
HW
578 goto err_out_free_nskb;
579 }
5863702a
ED
580 entry->id = ++queue->id_sequence;
581 *packet_id_ptr = htonl(entry->id);
7af4cc3f
HW
582
583 /* nfnetlink_unicast will either free the nskb or add it to a socket */
e8179610 584 err = nfnetlink_unicast(nskb, net, queue->peer_portid, MSG_DONTWAIT);
0ef0f465 585 if (err < 0) {
601e68e1 586 queue->queue_user_dropped++;
7af4cc3f
HW
587 goto err_out_unlock;
588 }
589
590 __enqueue_entry(queue, entry);
591
592 spin_unlock_bh(&queue->lock);
0ef0f465 593 return 0;
7af4cc3f
HW
594
595err_out_free_nskb:
601e68e1 596 kfree_skb(nskb);
7af4cc3f
HW
597err_out_unlock:
598 spin_unlock_bh(&queue->lock);
fdb694a0
KK
599 if (failopen)
600 nf_reinject(entry, NF_ACCEPT);
0ef0f465 601err_out:
f1585086 602 return err;
7af4cc3f
HW
603}
604
a5fedd43
FW
605static struct nf_queue_entry *
606nf_queue_entry_dup(struct nf_queue_entry *e)
607{
608 struct nf_queue_entry *entry = kmemdup(e, e->size, GFP_ATOMIC);
609 if (entry) {
610 if (nf_queue_entry_get_refs(entry))
611 return entry;
612 kfree(entry);
613 }
614 return NULL;
615}
616
617#ifdef CONFIG_BRIDGE_NETFILTER
618/* When called from bridge netfilter, skb->data must point to MAC header
619 * before calling skb_gso_segment(). Else, original MAC header is lost
620 * and segmented skbs will be sent to wrong destination.
621 */
622static void nf_bridge_adjust_skb_data(struct sk_buff *skb)
623{
624 if (skb->nf_bridge)
625 __skb_push(skb, skb->network_header - skb->mac_header);
626}
627
628static void nf_bridge_adjust_segmented_data(struct sk_buff *skb)
629{
630 if (skb->nf_bridge)
631 __skb_pull(skb, skb->network_header - skb->mac_header);
632}
633#else
634#define nf_bridge_adjust_skb_data(s) do {} while (0)
635#define nf_bridge_adjust_segmented_data(s) do {} while (0)
636#endif
637
638static void free_entry(struct nf_queue_entry *entry)
639{
640 nf_queue_entry_release_refs(entry);
641 kfree(entry);
642}
643
644static int
645__nfqnl_enqueue_packet_gso(struct net *net, struct nfqnl_instance *queue,
646 struct sk_buff *skb, struct nf_queue_entry *entry)
647{
648 int ret = -ENOMEM;
649 struct nf_queue_entry *entry_seg;
650
651 nf_bridge_adjust_segmented_data(skb);
652
653 if (skb->next == NULL) { /* last packet, no need to copy entry */
654 struct sk_buff *gso_skb = entry->skb;
655 entry->skb = skb;
656 ret = __nfqnl_enqueue_packet(net, queue, entry);
657 if (ret)
658 entry->skb = gso_skb;
659 return ret;
660 }
661
662 skb->next = NULL;
663
664 entry_seg = nf_queue_entry_dup(entry);
665 if (entry_seg) {
666 entry_seg->skb = skb;
667 ret = __nfqnl_enqueue_packet(net, queue, entry_seg);
668 if (ret)
669 free_entry(entry_seg);
670 }
671 return ret;
672}
673
674static int
675nfqnl_enqueue_packet(struct nf_queue_entry *entry, unsigned int queuenum)
676{
677 unsigned int queued;
678 struct nfqnl_instance *queue;
679 struct sk_buff *skb, *segs;
680 int err = -ENOBUFS;
681 struct net *net = dev_net(entry->indev ?
682 entry->indev : entry->outdev);
683 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
684
685 /* rcu_read_lock()ed by nf_hook_slow() */
686 queue = instance_lookup(q, queuenum);
687 if (!queue)
688 return -ESRCH;
689
690 if (queue->copy_mode == NFQNL_COPY_NONE)
691 return -EINVAL;
692
a5fedd43
FW
693 skb = entry->skb;
694
695 switch (entry->pf) {
696 case NFPROTO_IPV4:
697 skb->protocol = htons(ETH_P_IP);
698 break;
699 case NFPROTO_IPV6:
700 skb->protocol = htons(ETH_P_IPV6);
701 break;
702 }
703
7b8dfe28
PNA
704 if ((queue->flags & NFQA_CFG_F_GSO) || !skb_is_gso(skb))
705 return __nfqnl_enqueue_packet(net, queue, entry);
706
a5fedd43
FW
707 nf_bridge_adjust_skb_data(skb);
708 segs = skb_gso_segment(skb, 0);
709 /* Does not use PTR_ERR to limit the number of error codes that can be
710 * returned by nf_queue. For instance, callers rely on -ECANCELED to
711 * mean 'ignore this hook'.
712 */
713 if (IS_ERR(segs))
714 goto out_err;
715 queued = 0;
716 err = 0;
717 do {
718 struct sk_buff *nskb = segs->next;
719 if (err == 0)
720 err = __nfqnl_enqueue_packet_gso(net, queue,
721 segs, entry);
722 if (err == 0)
723 queued++;
724 else
725 kfree_skb(segs);
726 segs = nskb;
727 } while (segs);
728
729 if (queued) {
730 if (err) /* some segments are already queued */
731 free_entry(entry);
732 kfree_skb(skb);
733 return 0;
734 }
735 out_err:
736 nf_bridge_adjust_segmented_data(skb);
737 return err;
738}
739
7af4cc3f 740static int
8c88f87c 741nfqnl_mangle(void *data, int data_len, struct nf_queue_entry *e, int diff)
7af4cc3f 742{
e2b58a67 743 struct sk_buff *nskb;
7af4cc3f 744
d8a585d7
PM
745 if (diff < 0) {
746 if (pskb_trim(e->skb, data_len))
747 return -ENOMEM;
748 } else if (diff > 0) {
7af4cc3f
HW
749 if (data_len > 0xFFFF)
750 return -EINVAL;
751 if (diff > skb_tailroom(e->skb)) {
9a732ed6
AE
752 nskb = skb_copy_expand(e->skb, skb_headroom(e->skb),
753 diff, GFP_ATOMIC);
e2b58a67 754 if (!nskb) {
1158ba27 755 printk(KERN_WARNING "nf_queue: OOM "
7af4cc3f 756 "in mangle, dropping packet\n");
e2b58a67 757 return -ENOMEM;
7af4cc3f 758 }
e2b58a67
PM
759 kfree_skb(e->skb);
760 e->skb = nskb;
7af4cc3f
HW
761 }
762 skb_put(e->skb, diff);
763 }
37d41879 764 if (!skb_make_writable(e->skb, data_len))
7af4cc3f 765 return -ENOMEM;
27d7ff46 766 skb_copy_to_linear_data(e->skb, data, data_len);
e7dfb09a 767 e->skb->ip_summed = CHECKSUM_NONE;
7af4cc3f
HW
768 return 0;
769}
770
7af4cc3f
HW
771static int
772nfqnl_set_mode(struct nfqnl_instance *queue,
773 unsigned char mode, unsigned int range)
774{
c5de0dfd 775 int status = 0;
7af4cc3f
HW
776
777 spin_lock_bh(&queue->lock);
c5de0dfd
PM
778 switch (mode) {
779 case NFQNL_COPY_NONE:
780 case NFQNL_COPY_META:
781 queue->copy_mode = mode;
782 queue->copy_range = 0;
783 break;
784
785 case NFQNL_COPY_PACKET:
786 queue->copy_mode = mode;
9cefbbc9
FW
787 if (range == 0 || range > NFQNL_MAX_COPY_RANGE)
788 queue->copy_range = NFQNL_MAX_COPY_RANGE;
c5de0dfd
PM
789 else
790 queue->copy_range = range;
791 break;
792
793 default:
794 status = -EINVAL;
795
796 }
7af4cc3f
HW
797 spin_unlock_bh(&queue->lock);
798
799 return status;
800}
801
802static int
02f014d8 803dev_cmp(struct nf_queue_entry *entry, unsigned long ifindex)
7af4cc3f 804{
02f014d8
PM
805 if (entry->indev)
806 if (entry->indev->ifindex == ifindex)
7af4cc3f 807 return 1;
02f014d8
PM
808 if (entry->outdev)
809 if (entry->outdev->ifindex == ifindex)
7af4cc3f 810 return 1;
ef47c6a7
PM
811#ifdef CONFIG_BRIDGE_NETFILTER
812 if (entry->skb->nf_bridge) {
813 if (entry->skb->nf_bridge->physindev &&
814 entry->skb->nf_bridge->physindev->ifindex == ifindex)
815 return 1;
816 if (entry->skb->nf_bridge->physoutdev &&
817 entry->skb->nf_bridge->physoutdev->ifindex == ifindex)
818 return 1;
819 }
820#endif
7af4cc3f
HW
821 return 0;
822}
823
824/* drop all packets with either indev or outdev == ifindex from all queue
825 * instances */
826static void
e8179610 827nfqnl_dev_drop(struct net *net, int ifindex)
7af4cc3f
HW
828{
829 int i;
e8179610 830 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
601e68e1 831
9872bec7 832 rcu_read_lock();
7af4cc3f 833
9872bec7 834 for (i = 0; i < INSTANCE_BUCKETS; i++) {
7af4cc3f 835 struct nfqnl_instance *inst;
e8179610 836 struct hlist_head *head = &q->instance_table[i];
7af4cc3f 837
b67bfe0d 838 hlist_for_each_entry_rcu(inst, head, hlist)
b43d8d85 839 nfqnl_flush(inst, dev_cmp, ifindex);
7af4cc3f
HW
840 }
841
9872bec7 842 rcu_read_unlock();
7af4cc3f
HW
843}
844
845#define RCV_SKB_FAIL(err) do { netlink_ack(skb, nlh, (err)); return; } while (0)
846
847static int
848nfqnl_rcv_dev_event(struct notifier_block *this,
849 unsigned long event, void *ptr)
850{
351638e7 851 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
7af4cc3f
HW
852
853 /* Drop any packets associated with the downed device */
854 if (event == NETDEV_DOWN)
e8179610 855 nfqnl_dev_drop(dev_net(dev), dev->ifindex);
7af4cc3f
HW
856 return NOTIFY_DONE;
857}
858
859static struct notifier_block nfqnl_dev_notifier = {
860 .notifier_call = nfqnl_rcv_dev_event,
861};
862
863static int
864nfqnl_rcv_nl_event(struct notifier_block *this,
865 unsigned long event, void *ptr)
866{
867 struct netlink_notify *n = ptr;
e8179610 868 struct nfnl_queue_net *q = nfnl_queue_pernet(n->net);
7af4cc3f 869
dee5817e 870 if (event == NETLINK_URELEASE && n->protocol == NETLINK_NETFILTER) {
7af4cc3f
HW
871 int i;
872
15e47304 873 /* destroy all instances for this portid */
e8179610 874 spin_lock(&q->instances_lock);
9872bec7 875 for (i = 0; i < INSTANCE_BUCKETS; i++) {
b67bfe0d 876 struct hlist_node *t2;
7af4cc3f 877 struct nfqnl_instance *inst;
e8179610 878 struct hlist_head *head = &q->instance_table[i];
7af4cc3f 879
b67bfe0d 880 hlist_for_each_entry_safe(inst, t2, head, hlist) {
e8179610 881 if (n->portid == inst->peer_portid)
7af4cc3f
HW
882 __instance_destroy(inst);
883 }
884 }
e8179610 885 spin_unlock(&q->instances_lock);
7af4cc3f
HW
886 }
887 return NOTIFY_DONE;
888}
889
890static struct notifier_block nfqnl_rtnl_notifier = {
891 .notifier_call = nfqnl_rcv_nl_event,
892};
893
5bf75853
PM
894static const struct nla_policy nfqa_verdict_policy[NFQA_MAX+1] = {
895 [NFQA_VERDICT_HDR] = { .len = sizeof(struct nfqnl_msg_verdict_hdr) },
896 [NFQA_MARK] = { .type = NLA_U32 },
897 [NFQA_PAYLOAD] = { .type = NLA_UNSPEC },
9cb01766 898 [NFQA_CT] = { .type = NLA_UNSPEC },
bd077937 899 [NFQA_EXP] = { .type = NLA_UNSPEC },
838ab636
HW
900};
901
97d32cf9
FW
902static const struct nla_policy nfqa_verdict_batch_policy[NFQA_MAX+1] = {
903 [NFQA_VERDICT_HDR] = { .len = sizeof(struct nfqnl_msg_verdict_hdr) },
904 [NFQA_MARK] = { .type = NLA_U32 },
905};
906
e8179610
G
907static struct nfqnl_instance *
908verdict_instance_lookup(struct nfnl_queue_net *q, u16 queue_num, int nlportid)
97d32cf9
FW
909{
910 struct nfqnl_instance *queue;
911
e8179610 912 queue = instance_lookup(q, queue_num);
97d32cf9
FW
913 if (!queue)
914 return ERR_PTR(-ENODEV);
915
15e47304 916 if (queue->peer_portid != nlportid)
97d32cf9
FW
917 return ERR_PTR(-EPERM);
918
919 return queue;
920}
921
922static struct nfqnl_msg_verdict_hdr*
923verdicthdr_get(const struct nlattr * const nfqa[])
924{
925 struct nfqnl_msg_verdict_hdr *vhdr;
926 unsigned int verdict;
927
928 if (!nfqa[NFQA_VERDICT_HDR])
929 return NULL;
930
931 vhdr = nla_data(nfqa[NFQA_VERDICT_HDR]);
c6675233
FW
932 verdict = ntohl(vhdr->verdict) & NF_VERDICT_MASK;
933 if (verdict > NF_MAX_VERDICT || verdict == NF_STOLEN)
97d32cf9
FW
934 return NULL;
935 return vhdr;
936}
937
938static int nfq_id_after(unsigned int id, unsigned int max)
939{
940 return (int)(id - max) > 0;
941}
942
943static int
944nfqnl_recv_verdict_batch(struct sock *ctnl, struct sk_buff *skb,
945 const struct nlmsghdr *nlh,
946 const struct nlattr * const nfqa[])
947{
3da07c0c 948 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
97d32cf9
FW
949 struct nf_queue_entry *entry, *tmp;
950 unsigned int verdict, maxid;
951 struct nfqnl_msg_verdict_hdr *vhdr;
952 struct nfqnl_instance *queue;
953 LIST_HEAD(batch_list);
954 u16 queue_num = ntohs(nfmsg->res_id);
955
e8179610
G
956 struct net *net = sock_net(ctnl);
957 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
958
959 queue = verdict_instance_lookup(q, queue_num,
960 NETLINK_CB(skb).portid);
97d32cf9
FW
961 if (IS_ERR(queue))
962 return PTR_ERR(queue);
963
964 vhdr = verdicthdr_get(nfqa);
965 if (!vhdr)
966 return -EINVAL;
967
968 verdict = ntohl(vhdr->verdict);
969 maxid = ntohl(vhdr->id);
970
971 spin_lock_bh(&queue->lock);
972
973 list_for_each_entry_safe(entry, tmp, &queue->queue_list, list) {
974 if (nfq_id_after(entry->id, maxid))
975 break;
976 __dequeue_entry(queue, entry);
977 list_add_tail(&entry->list, &batch_list);
978 }
979
980 spin_unlock_bh(&queue->lock);
981
982 if (list_empty(&batch_list))
983 return -ENOENT;
984
985 list_for_each_entry_safe(entry, tmp, &batch_list, list) {
986 if (nfqa[NFQA_MARK])
987 entry->skb->mark = ntohl(nla_get_be32(nfqa[NFQA_MARK]));
988 nf_reinject(entry, verdict);
989 }
990 return 0;
991}
992
7af4cc3f
HW
993static int
994nfqnl_recv_verdict(struct sock *ctnl, struct sk_buff *skb,
39938324
PM
995 const struct nlmsghdr *nlh,
996 const struct nlattr * const nfqa[])
7af4cc3f 997{
3da07c0c 998 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
7af4cc3f
HW
999 u_int16_t queue_num = ntohs(nfmsg->res_id);
1000
1001 struct nfqnl_msg_verdict_hdr *vhdr;
1002 struct nfqnl_instance *queue;
1003 unsigned int verdict;
02f014d8 1004 struct nf_queue_entry *entry;
8c88f87c
PNA
1005 enum ip_conntrack_info uninitialized_var(ctinfo);
1006 struct nf_conn *ct = NULL;
7af4cc3f 1007
e8179610
G
1008 struct net *net = sock_net(ctnl);
1009 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
7af4cc3f 1010
e8179610
G
1011 queue = instance_lookup(q, queue_num);
1012 if (!queue)
1013 queue = verdict_instance_lookup(q, queue_num,
1014 NETLINK_CB(skb).portid);
97d32cf9
FW
1015 if (IS_ERR(queue))
1016 return PTR_ERR(queue);
7af4cc3f 1017
97d32cf9
FW
1018 vhdr = verdicthdr_get(nfqa);
1019 if (!vhdr)
84a797dd 1020 return -EINVAL;
7af4cc3f 1021
7af4cc3f
HW
1022 verdict = ntohl(vhdr->verdict);
1023
b43d8d85 1024 entry = find_dequeue_entry(queue, ntohl(vhdr->id));
84a797dd
ED
1025 if (entry == NULL)
1026 return -ENOENT;
7af4cc3f 1027
bd077937 1028 if (nfqa[NFQA_CT]) {
7c622345 1029 ct = nfqnl_ct_parse(entry->skb, nfqa[NFQA_CT], &ctinfo);
bd077937
PNA
1030 if (ct && nfqa[NFQA_EXP]) {
1031 nfqnl_attach_expect(ct, nfqa[NFQA_EXP],
1032 NETLINK_CB(skb).portid,
1033 nlmsg_report(nlh));
1034 }
1035 }
9cb01766 1036
df6fb868 1037 if (nfqa[NFQA_PAYLOAD]) {
8c88f87c
PNA
1038 u16 payload_len = nla_len(nfqa[NFQA_PAYLOAD]);
1039 int diff = payload_len - entry->skb->len;
1040
df6fb868 1041 if (nfqnl_mangle(nla_data(nfqa[NFQA_PAYLOAD]),
8c88f87c 1042 payload_len, entry, diff) < 0)
7af4cc3f 1043 verdict = NF_DROP;
8c88f87c 1044
7c622345 1045 if (ct)
0a0d80eb 1046 nfqnl_ct_seq_adjust(entry->skb, ct, ctinfo, diff);
7af4cc3f
HW
1047 }
1048
df6fb868 1049 if (nfqa[NFQA_MARK])
ea3a66ff 1050 entry->skb->mark = ntohl(nla_get_be32(nfqa[NFQA_MARK]));
601e68e1 1051
4b3d15ef 1052 nf_reinject(entry, verdict);
7af4cc3f
HW
1053 return 0;
1054}
1055
1056static int
1057nfqnl_recv_unsupp(struct sock *ctnl, struct sk_buff *skb,
39938324
PM
1058 const struct nlmsghdr *nlh,
1059 const struct nlattr * const nfqa[])
7af4cc3f
HW
1060{
1061 return -ENOTSUPP;
1062}
1063
5bf75853
PM
1064static const struct nla_policy nfqa_cfg_policy[NFQA_CFG_MAX+1] = {
1065 [NFQA_CFG_CMD] = { .len = sizeof(struct nfqnl_msg_config_cmd) },
1066 [NFQA_CFG_PARAMS] = { .len = sizeof(struct nfqnl_msg_config_params) },
838ab636
HW
1067};
1068
e3ac5298 1069static const struct nf_queue_handler nfqh = {
bbd86b9f
HW
1070 .outfn = &nfqnl_enqueue_packet,
1071};
1072
7af4cc3f
HW
1073static int
1074nfqnl_recv_config(struct sock *ctnl, struct sk_buff *skb,
39938324
PM
1075 const struct nlmsghdr *nlh,
1076 const struct nlattr * const nfqa[])
7af4cc3f 1077{
3da07c0c 1078 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
7af4cc3f
HW
1079 u_int16_t queue_num = ntohs(nfmsg->res_id);
1080 struct nfqnl_instance *queue;
9872bec7 1081 struct nfqnl_msg_config_cmd *cmd = NULL;
e8179610
G
1082 struct net *net = sock_net(ctnl);
1083 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
838ab636 1084 int ret = 0;
7af4cc3f 1085
9872bec7
PM
1086 if (nfqa[NFQA_CFG_CMD]) {
1087 cmd = nla_data(nfqa[NFQA_CFG_CMD]);
1088
0360ae41 1089 /* Obsolete commands without queue context */
9872bec7 1090 switch (cmd->command) {
0360ae41
FW
1091 case NFQNL_CFG_CMD_PF_BIND: return 0;
1092 case NFQNL_CFG_CMD_PF_UNBIND: return 0;
9872bec7 1093 }
9872bec7
PM
1094 }
1095
1096 rcu_read_lock();
e8179610 1097 queue = instance_lookup(q, queue_num);
15e47304 1098 if (queue && queue->peer_portid != NETLINK_CB(skb).portid) {
a3c8e7fd 1099 ret = -EPERM;
9872bec7 1100 goto err_out_unlock;
a3c8e7fd
PM
1101 }
1102
9872bec7 1103 if (cmd != NULL) {
7af4cc3f
HW
1104 switch (cmd->command) {
1105 case NFQNL_CFG_CMD_BIND:
9872bec7
PM
1106 if (queue) {
1107 ret = -EBUSY;
1108 goto err_out_unlock;
1109 }
e8179610
G
1110 queue = instance_create(q, queue_num,
1111 NETLINK_CB(skb).portid);
baab2ce7
PM
1112 if (IS_ERR(queue)) {
1113 ret = PTR_ERR(queue);
9872bec7
PM
1114 goto err_out_unlock;
1115 }
7af4cc3f
HW
1116 break;
1117 case NFQNL_CFG_CMD_UNBIND:
9872bec7
PM
1118 if (!queue) {
1119 ret = -ENODEV;
1120 goto err_out_unlock;
1121 }
e8179610 1122 instance_destroy(q, queue);
7af4cc3f
HW
1123 break;
1124 case NFQNL_CFG_CMD_PF_BIND:
7af4cc3f 1125 case NFQNL_CFG_CMD_PF_UNBIND:
7af4cc3f
HW
1126 break;
1127 default:
cd21f0ac 1128 ret = -ENOTSUPP;
838ab636 1129 break;
7af4cc3f 1130 }
7af4cc3f
HW
1131 }
1132
df6fb868 1133 if (nfqa[NFQA_CFG_PARAMS]) {
7af4cc3f 1134 struct nfqnl_msg_config_params *params;
7af4cc3f 1135
406dbfc9 1136 if (!queue) {
a3c8e7fd 1137 ret = -ENODEV;
9872bec7 1138 goto err_out_unlock;
406dbfc9 1139 }
df6fb868 1140 params = nla_data(nfqa[NFQA_CFG_PARAMS]);
7af4cc3f
HW
1141 nfqnl_set_mode(queue, params->copy_mode,
1142 ntohl(params->copy_range));
1143 }
1144
df6fb868 1145 if (nfqa[NFQA_CFG_QUEUE_MAXLEN]) {
829e17a1 1146 __be32 *queue_maxlen;
a3c8e7fd
PM
1147
1148 if (!queue) {
1149 ret = -ENODEV;
9872bec7 1150 goto err_out_unlock;
a3c8e7fd 1151 }
df6fb868 1152 queue_maxlen = nla_data(nfqa[NFQA_CFG_QUEUE_MAXLEN]);
829e17a1
EL
1153 spin_lock_bh(&queue->lock);
1154 queue->queue_maxlen = ntohl(*queue_maxlen);
1155 spin_unlock_bh(&queue->lock);
1156 }
1157
fdb694a0
KK
1158 if (nfqa[NFQA_CFG_FLAGS]) {
1159 __u32 flags, mask;
1160
1161 if (!queue) {
1162 ret = -ENODEV;
1163 goto err_out_unlock;
1164 }
1165
1166 if (!nfqa[NFQA_CFG_MASK]) {
1167 /* A mask is needed to specify which flags are being
1168 * changed.
1169 */
1170 ret = -EINVAL;
1171 goto err_out_unlock;
1172 }
1173
1174 flags = ntohl(nla_get_be32(nfqa[NFQA_CFG_FLAGS]));
1175 mask = ntohl(nla_get_be32(nfqa[NFQA_CFG_MASK]));
1176
46ba5a25
KK
1177 if (flags >= NFQA_CFG_F_MAX) {
1178 ret = -EOPNOTSUPP;
1179 goto err_out_unlock;
1180 }
1181
fdb694a0
KK
1182 spin_lock_bh(&queue->lock);
1183 queue->flags &= ~mask;
1184 queue->flags |= flags & mask;
1185 spin_unlock_bh(&queue->lock);
1186 }
1187
9872bec7
PM
1188err_out_unlock:
1189 rcu_read_unlock();
838ab636 1190 return ret;
7af4cc3f
HW
1191}
1192
7c8d4cb4 1193static const struct nfnl_callback nfqnl_cb[NFQNL_MSG_MAX] = {
84a797dd 1194 [NFQNL_MSG_PACKET] = { .call_rcu = nfqnl_recv_unsupp,
37d2e7a2 1195 .attr_count = NFQA_MAX, },
84a797dd 1196 [NFQNL_MSG_VERDICT] = { .call_rcu = nfqnl_recv_verdict,
5bf75853
PM
1197 .attr_count = NFQA_MAX,
1198 .policy = nfqa_verdict_policy },
7af4cc3f 1199 [NFQNL_MSG_CONFIG] = { .call = nfqnl_recv_config,
5bf75853
PM
1200 .attr_count = NFQA_CFG_MAX,
1201 .policy = nfqa_cfg_policy },
97d32cf9
FW
1202 [NFQNL_MSG_VERDICT_BATCH]={ .call_rcu = nfqnl_recv_verdict_batch,
1203 .attr_count = NFQA_MAX,
1204 .policy = nfqa_verdict_batch_policy },
7af4cc3f
HW
1205};
1206
7c8d4cb4 1207static const struct nfnetlink_subsystem nfqnl_subsys = {
7af4cc3f
HW
1208 .name = "nf_queue",
1209 .subsys_id = NFNL_SUBSYS_QUEUE,
1210 .cb_count = NFQNL_MSG_MAX,
7af4cc3f
HW
1211 .cb = nfqnl_cb,
1212};
1213
838ab636
HW
1214#ifdef CONFIG_PROC_FS
1215struct iter_state {
e8179610 1216 struct seq_net_private p;
838ab636
HW
1217 unsigned int bucket;
1218};
1219
1220static struct hlist_node *get_first(struct seq_file *seq)
1221{
1222 struct iter_state *st = seq->private;
e8179610
G
1223 struct net *net;
1224 struct nfnl_queue_net *q;
838ab636
HW
1225
1226 if (!st)
1227 return NULL;
1228
e8179610
G
1229 net = seq_file_net(seq);
1230 q = nfnl_queue_pernet(net);
838ab636 1231 for (st->bucket = 0; st->bucket < INSTANCE_BUCKETS; st->bucket++) {
e8179610
G
1232 if (!hlist_empty(&q->instance_table[st->bucket]))
1233 return q->instance_table[st->bucket].first;
838ab636
HW
1234 }
1235 return NULL;
1236}
1237
1238static struct hlist_node *get_next(struct seq_file *seq, struct hlist_node *h)
1239{
1240 struct iter_state *st = seq->private;
e8179610 1241 struct net *net = seq_file_net(seq);
838ab636
HW
1242
1243 h = h->next;
1244 while (!h) {
e8179610
G
1245 struct nfnl_queue_net *q;
1246
838ab636
HW
1247 if (++st->bucket >= INSTANCE_BUCKETS)
1248 return NULL;
1249
e8179610
G
1250 q = nfnl_queue_pernet(net);
1251 h = q->instance_table[st->bucket].first;
838ab636
HW
1252 }
1253 return h;
1254}
1255
1256static struct hlist_node *get_idx(struct seq_file *seq, loff_t pos)
1257{
1258 struct hlist_node *head;
1259 head = get_first(seq);
1260
1261 if (head)
1262 while (pos && (head = get_next(seq, head)))
1263 pos--;
1264 return pos ? NULL : head;
1265}
1266
e8179610
G
1267static void *seq_start(struct seq_file *s, loff_t *pos)
1268 __acquires(nfnl_queue_pernet(seq_file_net(s))->instances_lock)
838ab636 1269{
e8179610
G
1270 spin_lock(&nfnl_queue_pernet(seq_file_net(s))->instances_lock);
1271 return get_idx(s, *pos);
838ab636
HW
1272}
1273
1274static void *seq_next(struct seq_file *s, void *v, loff_t *pos)
1275{
1276 (*pos)++;
1277 return get_next(s, v);
1278}
1279
1280static void seq_stop(struct seq_file *s, void *v)
e8179610 1281 __releases(nfnl_queue_pernet(seq_file_net(s))->instances_lock)
838ab636 1282{
e8179610 1283 spin_unlock(&nfnl_queue_pernet(seq_file_net(s))->instances_lock);
838ab636
HW
1284}
1285
1286static int seq_show(struct seq_file *s, void *v)
1287{
1288 const struct nfqnl_instance *inst = v;
1289
1290 return seq_printf(s, "%5d %6d %5d %1d %5d %5d %5d %8d %2d\n",
1291 inst->queue_num,
15e47304 1292 inst->peer_portid, inst->queue_total,
838ab636
HW
1293 inst->copy_mode, inst->copy_range,
1294 inst->queue_dropped, inst->queue_user_dropped,
5863702a 1295 inst->id_sequence, 1);
838ab636
HW
1296}
1297
56b3d975 1298static const struct seq_operations nfqnl_seq_ops = {
838ab636
HW
1299 .start = seq_start,
1300 .next = seq_next,
1301 .stop = seq_stop,
1302 .show = seq_show,
1303};
1304
1305static int nfqnl_open(struct inode *inode, struct file *file)
1306{
e8179610 1307 return seq_open_net(inode, file, &nfqnl_seq_ops,
e2da5913 1308 sizeof(struct iter_state));
838ab636
HW
1309}
1310
da7071d7 1311static const struct file_operations nfqnl_file_ops = {
838ab636
HW
1312 .owner = THIS_MODULE,
1313 .open = nfqnl_open,
1314 .read = seq_read,
1315 .llseek = seq_lseek,
e8179610 1316 .release = seq_release_net,
838ab636
HW
1317};
1318
1319#endif /* PROC_FS */
1320
e8179610 1321static int __net_init nfnl_queue_net_init(struct net *net)
7af4cc3f 1322{
e8179610
G
1323 unsigned int i;
1324 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
601e68e1 1325
838ab636 1326 for (i = 0; i < INSTANCE_BUCKETS; i++)
e8179610
G
1327 INIT_HLIST_HEAD(&q->instance_table[i]);
1328
1329 spin_lock_init(&q->instances_lock);
1330
1331#ifdef CONFIG_PROC_FS
1332 if (!proc_create("nfnetlink_queue", 0440,
1333 net->nf.proc_netfilter, &nfqnl_file_ops))
1334 return -ENOMEM;
1335#endif
1336 return 0;
1337}
1338
1339static void __net_exit nfnl_queue_net_exit(struct net *net)
1340{
e778f56e 1341#ifdef CONFIG_PROC_FS
e8179610 1342 remove_proc_entry("nfnetlink_queue", net->nf.proc_netfilter);
e778f56e 1343#endif
e8179610
G
1344}
1345
1346static struct pernet_operations nfnl_queue_net_ops = {
1347 .init = nfnl_queue_net_init,
1348 .exit = nfnl_queue_net_exit,
1349 .id = &nfnl_queue_net_id,
1350 .size = sizeof(struct nfnl_queue_net),
1351};
1352
1353static int __init nfnetlink_queue_init(void)
1354{
1355 int status = -ENOMEM;
838ab636 1356
7af4cc3f
HW
1357 netlink_register_notifier(&nfqnl_rtnl_notifier);
1358 status = nfnetlink_subsys_register(&nfqnl_subsys);
1359 if (status < 0) {
e8179610 1360 pr_err("nf_queue: failed to create netlink socket\n");
7af4cc3f
HW
1361 goto cleanup_netlink_notifier;
1362 }
1363
e8179610
G
1364 status = register_pernet_subsys(&nfnl_queue_net_ops);
1365 if (status < 0) {
1366 pr_err("nf_queue: failed to register pernet ops\n");
838ab636 1367 goto cleanup_subsys;
e8179610 1368 }
7af4cc3f 1369 register_netdevice_notifier(&nfqnl_dev_notifier);
0360ae41 1370 nf_register_queue_handler(&nfqh);
7af4cc3f
HW
1371 return status;
1372
838ab636 1373cleanup_subsys:
7af4cc3f 1374 nfnetlink_subsys_unregister(&nfqnl_subsys);
7af4cc3f
HW
1375cleanup_netlink_notifier:
1376 netlink_unregister_notifier(&nfqnl_rtnl_notifier);
1377 return status;
1378}
1379
65b4b4e8 1380static void __exit nfnetlink_queue_fini(void)
7af4cc3f 1381{
0360ae41 1382 nf_unregister_queue_handler();
32292a7f 1383 unregister_netdevice_notifier(&nfqnl_dev_notifier);
e8179610 1384 unregister_pernet_subsys(&nfnl_queue_net_ops);
32292a7f
PM
1385 nfnetlink_subsys_unregister(&nfqnl_subsys);
1386 netlink_unregister_notifier(&nfqnl_rtnl_notifier);
67137f3c
JDB
1387
1388 rcu_barrier(); /* Wait for completion of call_rcu()'s */
7af4cc3f
HW
1389}
1390
1391MODULE_DESCRIPTION("netfilter packet queue handler");
1392MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
1393MODULE_LICENSE("GPL");
1394MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_QUEUE);
1395
65b4b4e8
AM
1396module_init(nfnetlink_queue_init);
1397module_exit(nfnetlink_queue_fini);