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