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