blob: 5d36a0926b4a4859304fdd1808b428c87a2ee8c4 [file] [log] [blame]
Harald Welte7af4cc32005-08-09 19:44:15 -07001/*
2 * This is a module which is used for queueing packets and communicating with
Jesper Dangaard Brouer67137f32009-06-08 03:11:33 +00003 * userspace via nfnetlink.
Harald Welte7af4cc32005-08-09 19:44:15 -07004 *
5 * (C) 2005 by Harald Welte <laforge@netfilter.org>
Patrick McHardy4ad9d4f2007-12-05 01:31:17 -08006 * (C) 2007 by Patrick McHardy <kaber@trash.net>
Harald Welte7af4cc32005-08-09 19:44:15 -07007 *
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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Harald Welte7af4cc32005-08-09 19:44:15 -070022#include <linux/notifier.h>
23#include <linux/netdevice.h>
24#include <linux/netfilter.h>
Harald Welte838ab632005-08-09 19:50:45 -070025#include <linux/proc_fs.h>
Harald Welte7af4cc32005-08-09 19:44:15 -070026#include <linux/netfilter_ipv4.h>
27#include <linux/netfilter_ipv6.h>
Florian Westphalc737b7c2015-04-02 14:31:41 +020028#include <linux/netfilter_bridge.h>
Harald Welte7af4cc32005-08-09 19:44:15 -070029#include <linux/netfilter/nfnetlink.h>
30#include <linux/netfilter/nfnetlink_queue.h>
Pablo Neira Ayusob7bd1802015-09-30 22:53:44 +010031#include <linux/netfilter/nf_conntrack_common.h>
Harald Welte7af4cc32005-08-09 19:44:15 -070032#include <linux/list.h>
33#include <net/sock.h>
David S. Miller83111e72014-01-06 13:36:06 -050034#include <net/tcp_states.h>
Patrick McHardyc01cd422007-12-05 01:24:48 -080035#include <net/netfilter/nf_queue.h>
Gao fenge8179612013-03-24 23:50:47 +000036#include <net/netns/generic.h>
Harald Welte7af4cc32005-08-09 19:44:15 -070037
Arun Sharma600634972011-07-26 16:09:06 -070038#include <linux/atomic.h>
Harald Welte7af4cc32005-08-09 19:44:15 -070039
Pablo Neira Ayuso1109a902014-10-01 11:19:17 +020040#if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
Harald Weltefbcd9232005-08-09 20:22:10 -070041#include "../bridge/br_private.h"
42#endif
43
Harald Welte7af4cc32005-08-09 19:44:15 -070044#define NFQNL_QMAX_DEFAULT 1024
45
Florian Westphal9cefbbc2013-06-04 22:22:15 +000046/* 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
Harald Welte7af4cc32005-08-09 19:44:15 -070054struct nfqnl_instance {
55 struct hlist_node hlist; /* global list of queues */
Patrick McHardy9872bec2007-12-05 01:28:50 -080056 struct rcu_head rcu;
Harald Welte7af4cc32005-08-09 19:44:15 -070057
Richard Weinbergercc6bc442015-04-13 00:52:37 +020058 u32 peer_portid;
Harald Welte7af4cc32005-08-09 19:44:15 -070059 unsigned int queue_maxlen;
60 unsigned int copy_range;
Harald Welte7af4cc32005-08-09 19:44:15 -070061 unsigned int queue_dropped;
62 unsigned int queue_user_dropped;
63
Harald Welte7af4cc32005-08-09 19:44:15 -070064
65 u_int16_t queue_num; /* number of this queue */
66 u_int8_t copy_mode;
Krishna Kumarfdb694a2012-05-24 03:56:44 +000067 u_int32_t flags; /* Set using NFQA_CFG_FLAGS */
Eric Dumazetc463ac92010-06-09 18:07:06 +020068/*
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;
Eric Dumazet58637022011-07-19 11:44:17 +020074 unsigned int id_sequence; /* 'sequence' of pkt ids */
Harald Welte7af4cc32005-08-09 19:44:15 -070075 struct list_head queue_list; /* packets in queue */
76};
77
Patrick McHardy02f014d2007-12-05 01:26:33 -080078typedef int (*nfqnl_cmpfn)(struct nf_queue_entry *, unsigned long);
Harald Welte7af4cc32005-08-09 19:44:15 -070079
Gao fenge8179612013-03-24 23:50:47 +000080static int nfnl_queue_net_id __read_mostly;
Harald Welte7af4cc32005-08-09 19:44:15 -070081
Harald Welte7af4cc32005-08-09 19:44:15 -070082#define INSTANCE_BUCKETS 16
Gao fenge8179612013-03-24 23:50:47 +000083struct 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}
Harald Welte7af4cc32005-08-09 19:44:15 -070092
93static inline u_int8_t instance_hashfn(u_int16_t queue_num)
94{
Pablo Neira Ayuso1cdb0902013-03-14 06:03:17 +000095 return ((queue_num >> 8) ^ queue_num) % INSTANCE_BUCKETS;
Harald Welte7af4cc32005-08-09 19:44:15 -070096}
97
98static struct nfqnl_instance *
Gao fenge8179612013-03-24 23:50:47 +000099instance_lookup(struct nfnl_queue_net *q, u_int16_t queue_num)
Harald Welte7af4cc32005-08-09 19:44:15 -0700100{
101 struct hlist_head *head;
Harald Welte7af4cc32005-08-09 19:44:15 -0700102 struct nfqnl_instance *inst;
103
Gao fenge8179612013-03-24 23:50:47 +0000104 head = &q->instance_table[instance_hashfn(queue_num)];
Sasha Levinb67bfe02013-02-27 17:06:00 -0800105 hlist_for_each_entry_rcu(inst, head, hlist) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700106 if (inst->queue_num == queue_num)
107 return inst;
108 }
109 return NULL;
110}
111
112static struct nfqnl_instance *
Richard Weinbergercc6bc442015-04-13 00:52:37 +0200113instance_create(struct nfnl_queue_net *q, u_int16_t queue_num, u32 portid)
Harald Welte7af4cc32005-08-09 19:44:15 -0700114{
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800115 struct nfqnl_instance *inst;
Patrick McHardy9872bec2007-12-05 01:28:50 -0800116 unsigned int h;
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800117 int err;
Harald Welte7af4cc32005-08-09 19:44:15 -0700118
Gao fenge8179612013-03-24 23:50:47 +0000119 spin_lock(&q->instances_lock);
120 if (instance_lookup(q, queue_num)) {
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800121 err = -EEXIST;
Harald Welte7af4cc32005-08-09 19:44:15 -0700122 goto out_unlock;
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800123 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700124
Harald Welte10dfdc62005-11-03 19:20:07 +0100125 inst = kzalloc(sizeof(*inst), GFP_ATOMIC);
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800126 if (!inst) {
127 err = -ENOMEM;
Harald Welte7af4cc32005-08-09 19:44:15 -0700128 goto out_unlock;
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800129 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700130
Harald Welte7af4cc32005-08-09 19:44:15 -0700131 inst->queue_num = queue_num;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000132 inst->peer_portid = portid;
Harald Welte7af4cc32005-08-09 19:44:15 -0700133 inst->queue_maxlen = NFQNL_QMAX_DEFAULT;
Florian Westphal9cefbbc2013-06-04 22:22:15 +0000134 inst->copy_range = NFQNL_MAX_COPY_RANGE;
Harald Welte7af4cc32005-08-09 19:44:15 -0700135 inst->copy_mode = NFQNL_COPY_NONE;
YOSHIFUJI Hideaki181a46a2006-01-04 13:56:54 -0800136 spin_lock_init(&inst->lock);
Harald Welte7af4cc32005-08-09 19:44:15 -0700137 INIT_LIST_HEAD(&inst->queue_list);
138
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800139 if (!try_module_get(THIS_MODULE)) {
140 err = -EAGAIN;
Harald Welte7af4cc32005-08-09 19:44:15 -0700141 goto out_free;
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800142 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700143
Patrick McHardy9872bec2007-12-05 01:28:50 -0800144 h = instance_hashfn(queue_num);
Gao fenge8179612013-03-24 23:50:47 +0000145 hlist_add_head_rcu(&inst->hlist, &q->instance_table[h]);
Harald Welte7af4cc32005-08-09 19:44:15 -0700146
Gao fenge8179612013-03-24 23:50:47 +0000147 spin_unlock(&q->instances_lock);
Harald Welte7af4cc32005-08-09 19:44:15 -0700148
Harald Welte7af4cc32005-08-09 19:44:15 -0700149 return inst;
150
151out_free:
152 kfree(inst);
153out_unlock:
Gao fenge8179612013-03-24 23:50:47 +0000154 spin_unlock(&q->instances_lock);
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800155 return ERR_PTR(err);
Harald Welte7af4cc32005-08-09 19:44:15 -0700156}
157
Patrick McHardyb43d8d82007-12-05 01:25:30 -0800158static void nfqnl_flush(struct nfqnl_instance *queue, nfqnl_cmpfn cmpfn,
159 unsigned long data);
Harald Welte7af4cc32005-08-09 19:44:15 -0700160
161static void
Patrick McHardy9872bec2007-12-05 01:28:50 -0800162instance_destroy_rcu(struct rcu_head *head)
Harald Welte7af4cc32005-08-09 19:44:15 -0700163{
Patrick McHardy9872bec2007-12-05 01:28:50 -0800164 struct nfqnl_instance *inst = container_of(head, struct nfqnl_instance,
165 rcu);
Harald Welte7af4cc32005-08-09 19:44:15 -0700166
Patrick McHardyb43d8d82007-12-05 01:25:30 -0800167 nfqnl_flush(inst, NULL, 0);
Patrick McHardy9872bec2007-12-05 01:28:50 -0800168 kfree(inst);
Harald Welte7af4cc32005-08-09 19:44:15 -0700169 module_put(THIS_MODULE);
170}
171
Patrick McHardy9872bec2007-12-05 01:28:50 -0800172static void
Harald Welte7af4cc32005-08-09 19:44:15 -0700173__instance_destroy(struct nfqnl_instance *inst)
174{
Patrick McHardy9872bec2007-12-05 01:28:50 -0800175 hlist_del_rcu(&inst->hlist);
176 call_rcu(&inst->rcu, instance_destroy_rcu);
Harald Welte7af4cc32005-08-09 19:44:15 -0700177}
178
Patrick McHardy9872bec2007-12-05 01:28:50 -0800179static void
Gao fenge8179612013-03-24 23:50:47 +0000180instance_destroy(struct nfnl_queue_net *q, struct nfqnl_instance *inst)
Harald Welte7af4cc32005-08-09 19:44:15 -0700181{
Gao fenge8179612013-03-24 23:50:47 +0000182 spin_lock(&q->instances_lock);
Patrick McHardy9872bec2007-12-05 01:28:50 -0800183 __instance_destroy(inst);
Gao fenge8179612013-03-24 23:50:47 +0000184 spin_unlock(&q->instances_lock);
Harald Welte7af4cc32005-08-09 19:44:15 -0700185}
186
Harald Welte7af4cc32005-08-09 19:44:15 -0700187static inline void
Patrick McHardy02f014d2007-12-05 01:26:33 -0800188__enqueue_entry(struct nfqnl_instance *queue, struct nf_queue_entry *entry)
Harald Welte7af4cc32005-08-09 19:44:15 -0700189{
Patrick McHardy0ac41e82007-12-05 01:25:03 -0800190 list_add_tail(&entry->list, &queue->queue_list);
Harald Welte7af4cc32005-08-09 19:44:15 -0700191 queue->queue_total++;
192}
193
Florian Westphal97d32cf2011-07-19 11:46:33 +0200194static 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
Patrick McHardy02f014d2007-12-05 01:26:33 -0800201static struct nf_queue_entry *
Patrick McHardyb43d8d82007-12-05 01:25:30 -0800202find_dequeue_entry(struct nfqnl_instance *queue, unsigned int id)
Harald Welte7af4cc32005-08-09 19:44:15 -0700203{
Patrick McHardy02f014d2007-12-05 01:26:33 -0800204 struct nf_queue_entry *entry = NULL, *i;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800205
Harald Welte7af4cc32005-08-09 19:44:15 -0700206 spin_lock_bh(&queue->lock);
Patrick McHardyb43d8d82007-12-05 01:25:30 -0800207
208 list_for_each_entry(i, &queue->queue_list, list) {
209 if (i->id == id) {
210 entry = i;
211 break;
212 }
213 }
214
Florian Westphal97d32cf2011-07-19 11:46:33 +0200215 if (entry)
216 __dequeue_entry(queue, entry);
Patrick McHardyb43d8d82007-12-05 01:25:30 -0800217
Harald Welte7af4cc32005-08-09 19:44:15 -0700218 spin_unlock_bh(&queue->lock);
219
220 return entry;
221}
222
223static void
Patrick McHardyb43d8d82007-12-05 01:25:30 -0800224nfqnl_flush(struct nfqnl_instance *queue, nfqnl_cmpfn cmpfn, unsigned long data)
Harald Welte7af4cc32005-08-09 19:44:15 -0700225{
Patrick McHardy02f014d2007-12-05 01:26:33 -0800226 struct nf_queue_entry *entry, *next;
Patrick McHardyb43d8d82007-12-05 01:25:30 -0800227
Harald Welte7af4cc32005-08-09 19:44:15 -0700228 spin_lock_bh(&queue->lock);
Patrick McHardyb43d8d82007-12-05 01:25:30 -0800229 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--;
Patrick McHardy4b3d15e2007-12-05 01:27:02 -0800233 nf_reinject(entry, NF_DROP);
Patrick McHardyb43d8d82007-12-05 01:25:30 -0800234 }
235 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700236 spin_unlock_bh(&queue->lock);
237}
238
Florian Westphal496e4ae2013-06-29 14:15:47 +0200239static int
240nfqnl_put_packet_info(struct sk_buff *nlskb, struct sk_buff *packet,
241 bool csum_verify)
Florian Westphal72371902013-04-19 04:58:26 +0000242{
243 __u32 flags = 0;
244
245 if (packet->ip_summed == CHECKSUM_PARTIAL)
246 flags = NFQA_SKB_CSUMNOTREADY;
Florian Westphal496e4ae2013-06-29 14:15:47 +0200247 else if (csum_verify)
248 flags = NFQA_SKB_CSUM_NOTVERIFIED;
249
Florian Westphal72371902013-04-19 04:58:26 +0000250 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
Valentina Giusti08c0cad2013-12-20 17:28:53 +0100256static int nfqnl_put_sk_uidgid(struct sk_buff *skb, struct sock *sk)
257{
258 const struct cred *cred;
259
Eric Dumazeta8399232015-03-16 21:06:15 -0700260 if (!sk_fullsock(sk))
Valentina Giusti08c0cad2013-12-20 17:28:53 +0100261 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
Roman Kubiakef493bd2015-06-12 12:32:57 +0200281static 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
Stephane Bryant15824ab2016-03-26 08:42:11 +0100298static 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
Harald Welte7af4cc32005-08-09 19:44:15 -0700351static struct sk_buff *
Gao feng74332682013-09-23 19:20:55 +0800352nfqnl_build_packet_message(struct net *net, struct nfqnl_instance *queue,
Eric Dumazet58637022011-07-19 11:44:17 +0200353 struct nf_queue_entry *entry,
354 __be32 **packet_id_ptr)
Harald Welte7af4cc32005-08-09 19:44:15 -0700355{
Harald Welte7af4cc32005-08-09 19:44:15 -0700356 size_t size;
Florian Westphalc5b0db32016-02-18 15:03:28 +0100357 size_t data_len = 0, cap_len = 0;
Thomas Grafaf2806f2013-12-13 15:22:17 +0100358 unsigned int hlen = 0;
Harald Welte7af4cc32005-08-09 19:44:15 -0700359 struct sk_buff *skb;
Eric Dumazet58637022011-07-19 11:44:17 +0200360 struct nlattr *nla;
361 struct nfqnl_msg_packet_hdr *pmsg;
Harald Welte7af4cc32005-08-09 19:44:15 -0700362 struct nlmsghdr *nlh;
363 struct nfgenmsg *nfmsg;
Jesper Juhl3e4ead42006-01-05 12:15:58 -0800364 struct sk_buff *entskb = entry->skb;
365 struct net_device *indev;
366 struct net_device *outdev;
Pablo Neira Ayuso9cb01762012-06-07 12:13:39 +0200367 struct nf_conn *ct = NULL;
368 enum ip_conntrack_info uninitialized_var(ctinfo);
Ken-ichirou MATSUZAWAa4b47662015-10-05 11:47:13 +0900369 struct nfnl_ct_hook *nfnl_ct;
Florian Westphal496e4ae2013-06-29 14:15:47 +0200370 bool csum_verify;
Roman Kubiakef493bd2015-06-12 12:32:57 +0200371 char *secdata = NULL;
372 u32 seclen = 0;
Harald Welte7af4cc32005-08-09 19:44:15 -0700373
Hong zhi guo573ce262013-03-27 06:47:04 +0000374 size = nlmsg_total_size(sizeof(struct nfgenmsg))
Patrick McHardydf6fb862007-09-28 14:37:03 -0700375 + 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 */
Pablo Neira Ayuso1109a902014-10-01 11:19:17 +0200378#if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
Patrick McHardydf6fb862007-09-28 14:37:03 -0700379 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
380 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
Harald Weltefbcd9232005-08-09 20:22:10 -0700381#endif
Patrick McHardydf6fb862007-09-28 14:37:03 -0700382 + nla_total_size(sizeof(u_int32_t)) /* mark */
383 + nla_total_size(sizeof(struct nfqnl_msg_packet_hw))
Florian Westphal72371902013-04-19 04:58:26 +0000384 + nla_total_size(sizeof(u_int32_t)) /* skbinfo */
Eric Dumazetae08ce02013-03-17 17:15:55 +0000385 + 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));
Harald Welte7af4cc32005-08-09 19:44:15 -0700389
Stephane Bryant15824ab2016-03-26 08:42:11 +0100390 size += nfqnl_get_bridge_size(entry);
391
David S. Miller1d1de892015-04-03 16:31:01 -0400392 if (entry->state.hook <= NF_INET_FORWARD ||
393 (entry->state.hook == NF_INET_POST_ROUTING && entskb->sk == NULL))
Florian Westphal496e4ae2013-06-29 14:15:47 +0200394 csum_verify = !skb_csum_unnecessary(entskb);
395 else
396 csum_verify = false;
397
David S. Miller1d1de892015-04-03 16:31:01 -0400398 outdev = entry->state.out;
Jesper Juhl3e4ead42006-01-05 12:15:58 -0800399
Eric Dumazetc463ac92010-06-09 18:07:06 +0200400 switch ((enum nfqnl_config_mode)ACCESS_ONCE(queue->copy_mode)) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700401 case NFQNL_COPY_META:
402 case NFQNL_COPY_NONE:
Harald Welte7af4cc32005-08-09 19:44:15 -0700403 break;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800404
Harald Welte7af4cc32005-08-09 19:44:15 -0700405 case NFQNL_COPY_PACKET:
Florian Westphal00bd1cc2013-04-19 04:58:27 +0000406 if (!(queue->flags & NFQA_CFG_F_GSO) &&
407 entskb->ip_summed == CHECKSUM_PARTIAL &&
Eric Dumazetc463ac92010-06-09 18:07:06 +0200408 skb_checksum_help(entskb))
Patrick McHardye7dfb092005-09-06 15:10:00 -0700409 return NULL;
Eric Dumazetc463ac92010-06-09 18:07:06 +0200410
411 data_len = ACCESS_ONCE(queue->copy_range);
Florian Westphal9cefbbc2013-06-04 22:22:15 +0000412 if (data_len > entskb->len)
Jesper Juhl3e4ead42006-01-05 12:15:58 -0800413 data_len = entskb->len;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800414
Thomas Grafaf2806f2013-12-13 15:22:17 +0100415 hlen = skb_zerocopy_headlen(entskb);
416 hlen = min_t(unsigned int, hlen, data_len);
Eric Dumazetae08ce02013-03-17 17:15:55 +0000417 size += sizeof(struct nlattr) + hlen;
Pablo Neira Ayuso6ee584b2012-09-24 14:52:12 +0200418 cap_len = entskb->len;
Harald Welte7af4cc32005-08-09 19:44:15 -0700419 break;
Harald Welte7af4cc32005-08-09 19:44:15 -0700420 }
421
Arnd Bergmann8e662162015-11-19 13:49:59 +0100422 nfnl_ct = rcu_dereference(nfnl_ct_hook);
423
Pablo Neira Ayusob7bd1802015-09-30 22:53:44 +0100424 if (queue->flags & NFQA_CFG_F_CONNTRACK) {
Ken-ichirou MATSUZAWAa4b47662015-10-05 11:47:13 +0900425 if (nfnl_ct != NULL) {
426 ct = nfnl_ct->get_ct(entskb, &ctinfo);
Pablo Neira Ayusob7bd1802015-09-30 22:53:44 +0100427 if (ct != NULL)
Ken-ichirou MATSUZAWAa4b47662015-10-05 11:47:13 +0900428 size += nfnl_ct->build_size(ct);
Pablo Neira Ayusob7bd1802015-09-30 22:53:44 +0100429 }
430 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700431
Valentina Giusti08c0cad2013-12-20 17:28:53 +0100432 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
Roman Kubiakef493bd2015-06-12 12:32:57 +0200437 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
Florian Westphalc5b0db32016-02-18 15:03:28 +0100443 skb = alloc_skb(size, GFP_ATOMIC);
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000444 if (!skb) {
445 skb_tx_error(entskb);
David S. Miller3da07c02012-06-26 21:35:27 -0700446 return NULL;
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000447 }
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800448
David S. Miller3da07c02012-06-26 21:35:27 -0700449 nlh = nlmsg_put(skb, 0, 0,
Harald Welte7af4cc32005-08-09 19:44:15 -0700450 NFNL_SUBSYS_QUEUE << 8 | NFQNL_MSG_PACKET,
David S. Miller3da07c02012-06-26 21:35:27 -0700451 sizeof(struct nfgenmsg), 0);
452 if (!nlh) {
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000453 skb_tx_error(entskb);
David S. Miller3da07c02012-06-26 21:35:27 -0700454 kfree_skb(skb);
455 return NULL;
456 }
457 nfmsg = nlmsg_data(nlh);
David S. Miller1d1de892015-04-03 16:31:01 -0400458 nfmsg->nfgen_family = entry->state.pf;
Harald Welte7af4cc32005-08-09 19:44:15 -0700459 nfmsg->version = NFNETLINK_V0;
460 nfmsg->res_id = htons(queue->queue_num);
461
Eric Dumazet58637022011-07-19 11:44:17 +0200462 nla = __nla_reserve(skb, NFQA_PACKET_HDR, sizeof(*pmsg));
463 pmsg = nla_data(nla);
464 pmsg->hw_protocol = entskb->protocol;
David S. Miller1d1de892015-04-03 16:31:01 -0400465 pmsg->hook = entry->state.hook;
Eric Dumazet58637022011-07-19 11:44:17 +0200466 *packet_id_ptr = &pmsg->packet_id;
Harald Welte7af4cc32005-08-09 19:44:15 -0700467
David S. Miller1d1de892015-04-03 16:31:01 -0400468 indev = entry->state.in;
Jesper Juhl3e4ead42006-01-05 12:15:58 -0800469 if (indev) {
Pablo Neira Ayuso1109a902014-10-01 11:19:17 +0200470#if !IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
David S. Millera4471892012-03-29 23:27:38 -0400471 if (nla_put_be32(skb, NFQA_IFINDEX_INDEV, htonl(indev->ifindex)))
472 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700473#else
David S. Miller1d1de892015-04-03 16:31:01 -0400474 if (entry->state.pf == PF_BRIDGE) {
Harald Weltefbcd9232005-08-09 20:22:10 -0700475 /* Case 1: indev is physical input device, we need to
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800476 * look for bridge group (when called from
Harald Weltefbcd9232005-08-09 20:22:10 -0700477 * netfilter_bridge) */
David S. Millera4471892012-03-29 23:27:38 -0400478 if (nla_put_be32(skb, NFQA_IFINDEX_PHYSINDEV,
479 htonl(indev->ifindex)) ||
Harald Weltefbcd9232005-08-09 20:22:10 -0700480 /* this is the bridge group "brX" */
Jiri Pirkof350a0a82010-06-15 06:50:45 +0000481 /* rcu_read_lock()ed by __nf_queue */
David S. Millera4471892012-03-29 23:27:38 -0400482 nla_put_be32(skb, NFQA_IFINDEX_INDEV,
483 htonl(br_port_get_rcu(indev)->br->dev->ifindex)))
484 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700485 } else {
Florian Westphalc737b7c2015-04-02 14:31:41 +0200486 int physinif;
487
Harald Weltefbcd9232005-08-09 20:22:10 -0700488 /* Case 2: indev is bridge group, we need to look for
489 * physical device (when called from ipv4) */
David S. Millera4471892012-03-29 23:27:38 -0400490 if (nla_put_be32(skb, NFQA_IFINDEX_INDEV,
491 htonl(indev->ifindex)))
492 goto nla_put_failure;
Florian Westphalc737b7c2015-04-02 14:31:41 +0200493
494 physinif = nf_bridge_get_physinif(entskb);
495 if (physinif &&
David S. Millera4471892012-03-29 23:27:38 -0400496 nla_put_be32(skb, NFQA_IFINDEX_PHYSINDEV,
Florian Westphalc737b7c2015-04-02 14:31:41 +0200497 htonl(physinif)))
David S. Millera4471892012-03-29 23:27:38 -0400498 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700499 }
500#endif
Harald Welte7af4cc32005-08-09 19:44:15 -0700501 }
502
Jesper Juhl3e4ead42006-01-05 12:15:58 -0800503 if (outdev) {
Pablo Neira Ayuso1109a902014-10-01 11:19:17 +0200504#if !IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
David S. Millera4471892012-03-29 23:27:38 -0400505 if (nla_put_be32(skb, NFQA_IFINDEX_OUTDEV, htonl(outdev->ifindex)))
506 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700507#else
David S. Miller1d1de892015-04-03 16:31:01 -0400508 if (entry->state.pf == PF_BRIDGE) {
Harald Weltefbcd9232005-08-09 20:22:10 -0700509 /* Case 1: outdev is physical output device, we need to
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800510 * look for bridge group (when called from
Harald Weltefbcd9232005-08-09 20:22:10 -0700511 * netfilter_bridge) */
David S. Millera4471892012-03-29 23:27:38 -0400512 if (nla_put_be32(skb, NFQA_IFINDEX_PHYSOUTDEV,
513 htonl(outdev->ifindex)) ||
Harald Weltefbcd9232005-08-09 20:22:10 -0700514 /* this is the bridge group "brX" */
Jiri Pirkof350a0a82010-06-15 06:50:45 +0000515 /* rcu_read_lock()ed by __nf_queue */
David S. Millera4471892012-03-29 23:27:38 -0400516 nla_put_be32(skb, NFQA_IFINDEX_OUTDEV,
517 htonl(br_port_get_rcu(outdev)->br->dev->ifindex)))
518 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700519 } else {
Florian Westphalc737b7c2015-04-02 14:31:41 +0200520 int physoutif;
521
Harald Weltefbcd9232005-08-09 20:22:10 -0700522 /* Case 2: outdev is bridge group, we need to look for
523 * physical output device (when called from ipv4) */
David S. Millera4471892012-03-29 23:27:38 -0400524 if (nla_put_be32(skb, NFQA_IFINDEX_OUTDEV,
525 htonl(outdev->ifindex)))
526 goto nla_put_failure;
Florian Westphalc737b7c2015-04-02 14:31:41 +0200527
528 physoutif = nf_bridge_get_physoutif(entskb);
529 if (physoutif &&
David S. Millera4471892012-03-29 23:27:38 -0400530 nla_put_be32(skb, NFQA_IFINDEX_PHYSOUTDEV,
Florian Westphalc737b7c2015-04-02 14:31:41 +0200531 htonl(physoutif)))
David S. Millera4471892012-03-29 23:27:38 -0400532 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700533 }
534#endif
Harald Welte7af4cc32005-08-09 19:44:15 -0700535 }
536
David S. Millera4471892012-03-29 23:27:38 -0400537 if (entskb->mark &&
538 nla_put_be32(skb, NFQA_MARK, htonl(entskb->mark)))
539 goto nla_put_failure;
Harald Welte7af4cc32005-08-09 19:44:15 -0700540
Nicolas Cavallari2c38de42011-06-16 17:27:04 +0200541 if (indev && entskb->dev &&
542 entskb->mac_header != entskb->network_header) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700543 struct nfqnl_msg_packet_hw phw;
Dan Carpentere4d091d2013-08-01 12:36:57 +0300544 int len;
545
546 memset(&phw, 0, sizeof(phw));
547 len = dev_parse_header(entskb, phw.hw_addr);
Stephen Hemmingerb95cce32007-09-26 22:13:38 -0700548 if (len) {
549 phw.hw_addrlen = htons(len);
David S. Millera4471892012-03-29 23:27:38 -0400550 if (nla_put(skb, NFQA_HWADDR, sizeof(phw), &phw))
551 goto nla_put_failure;
Stephen Hemmingerb95cce32007-09-26 22:13:38 -0700552 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700553 }
554
Stephane Bryant15824ab2016-03-26 08:42:11 +0100555 if (nfqnl_put_bridge(entry, skb) < 0)
556 goto nla_put_failure;
557
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700558 if (entskb->tstamp.tv64) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700559 struct nfqnl_msg_packet_timestamp ts;
Florian Westphala7f18842016-05-12 14:43:54 +0200560 struct timespec64 kts = ktime_to_timespec64(entskb->tstamp);
Pablo Neira Ayusob28b1e82015-10-04 19:38:14 +0200561
562 ts.sec = cpu_to_be64(kts.tv_sec);
563 ts.usec = cpu_to_be64(kts.tv_nsec / NSEC_PER_USEC);
Harald Welte7af4cc32005-08-09 19:44:15 -0700564
David S. Millera4471892012-03-29 23:27:38 -0400565 if (nla_put(skb, NFQA_TIMESTAMP, sizeof(ts), &ts))
566 goto nla_put_failure;
Harald Welte7af4cc32005-08-09 19:44:15 -0700567 }
568
Valentina Giusti08c0cad2013-12-20 17:28:53 +0100569 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
Roman Kubiakef493bd2015-06-12 12:32:57 +0200573 if (seclen && nla_put(skb, NFQA_SECCTX, seclen, secdata))
574 goto nla_put_failure;
575
Ken-ichirou MATSUZAWAa4b47662015-10-05 11:47:13 +0900576 if (ct && nfnl_ct->build(skb, ct, ctinfo, NFQA_CT, NFQA_CT_INFO) < 0)
Pablo Neira Ayuso7c622342012-06-19 02:10:57 +0200577 goto nla_put_failure;
Pablo Neira Ayuso9cb01762012-06-07 12:13:39 +0200578
Florian Westphal7f877122013-06-04 22:22:16 +0000579 if (cap_len > data_len &&
580 nla_put_be32(skb, NFQA_CAP_LEN, htonl(cap_len)))
Pablo Neira Ayuso6ee584b2012-09-24 14:52:12 +0200581 goto nla_put_failure;
582
Florian Westphal496e4ae2013-06-29 14:15:47 +0200583 if (nfqnl_put_packet_info(skb, entskb, csum_verify))
Florian Westphal72371902013-04-19 04:58:26 +0000584 goto nla_put_failure;
585
Eric Dumazetae08ce02013-03-17 17:15:55 +0000586 if (data_len) {
587 struct nlattr *nla;
588
589 if (skb_tailroom(skb) < sizeof(*nla) + hlen)
590 goto nla_put_failure;
591
592 nla = (struct nlattr *)skb_put(skb, sizeof(*nla));
593 nla->nla_type = NFQA_PAYLOAD;
594 nla->nla_len = nla_attr_size(data_len);
595
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000596 if (skb_zerocopy(skb, entskb, data_len, hlen))
597 goto nla_put_failure;
Eric Dumazetae08ce02013-03-17 17:15:55 +0000598 }
599
600 nlh->nlmsg_len = skb->len;
Harald Welte7af4cc32005-08-09 19:44:15 -0700601 return skb;
602
Patrick McHardydf6fb862007-09-28 14:37:03 -0700603nla_put_failure:
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000604 skb_tx_error(entskb);
Wei Yongjuna6729952012-08-28 03:14:15 +0000605 kfree_skb(skb);
Joe Perchese87cc472012-05-13 21:56:26 +0000606 net_err_ratelimited("nf_queue: error creating packet message\n");
Harald Welte7af4cc32005-08-09 19:44:15 -0700607 return NULL;
608}
609
610static int
Florian Westphala5fedd432013-04-19 04:58:25 +0000611__nfqnl_enqueue_packet(struct net *net, struct nfqnl_instance *queue,
612 struct nf_queue_entry *entry)
Harald Welte7af4cc32005-08-09 19:44:15 -0700613{
Harald Welte7af4cc32005-08-09 19:44:15 -0700614 struct sk_buff *nskb;
Florian Westphalf1585082011-01-18 15:27:28 +0100615 int err = -ENOBUFS;
Eric Dumazet58637022011-07-19 11:44:17 +0200616 __be32 *packet_id_ptr;
Krishna Kumarfdb694a2012-05-24 03:56:44 +0000617 int failopen = 0;
Harald Welte7af4cc32005-08-09 19:44:15 -0700618
Gao feng74332682013-09-23 19:20:55 +0800619 nskb = nfqnl_build_packet_message(net, queue, entry, &packet_id_ptr);
Florian Westphalf1585082011-01-18 15:27:28 +0100620 if (nskb == NULL) {
621 err = -ENOMEM;
Patrick McHardy0ef0f462007-12-05 01:31:01 -0800622 goto err_out;
Florian Westphalf1585082011-01-18 15:27:28 +0100623 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700624 spin_lock_bh(&queue->lock);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800625
Harald Welte7af4cc32005-08-09 19:44:15 -0700626 if (queue->queue_total >= queue->queue_maxlen) {
Krishna Kumarfdb694a2012-05-24 03:56:44 +0000627 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 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700635 goto err_out_free_nskb;
636 }
Eric Dumazet58637022011-07-19 11:44:17 +0200637 entry->id = ++queue->id_sequence;
638 *packet_id_ptr = htonl(entry->id);
Harald Welte7af4cc32005-08-09 19:44:15 -0700639
640 /* nfnetlink_unicast will either free the nskb or add it to a socket */
Gao fenge8179612013-03-24 23:50:47 +0000641 err = nfnetlink_unicast(nskb, net, queue->peer_portid, MSG_DONTWAIT);
Patrick McHardy0ef0f462007-12-05 01:31:01 -0800642 if (err < 0) {
Pablo Neira Ayuso93140112016-03-23 12:58:01 +0100643 if (queue->flags & NFQA_CFG_F_FAIL_OPEN) {
644 failopen = 1;
645 err = 0;
646 } else {
647 queue->queue_user_dropped++;
648 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700649 goto err_out_unlock;
650 }
651
652 __enqueue_entry(queue, entry);
653
654 spin_unlock_bh(&queue->lock);
Patrick McHardy0ef0f462007-12-05 01:31:01 -0800655 return 0;
Harald Welte7af4cc32005-08-09 19:44:15 -0700656
657err_out_free_nskb:
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800658 kfree_skb(nskb);
Harald Welte7af4cc32005-08-09 19:44:15 -0700659err_out_unlock:
660 spin_unlock_bh(&queue->lock);
Krishna Kumarfdb694a2012-05-24 03:56:44 +0000661 if (failopen)
662 nf_reinject(entry, NF_ACCEPT);
Patrick McHardy0ef0f462007-12-05 01:31:01 -0800663err_out:
Florian Westphalf1585082011-01-18 15:27:28 +0100664 return err;
Harald Welte7af4cc32005-08-09 19:44:15 -0700665}
666
Florian Westphala5fedd432013-04-19 04:58:25 +0000667static 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);
Florian Westphaled78d092015-10-13 14:33:27 +0200671 if (entry)
672 nf_queue_entry_get_refs(entry);
673 return entry;
Florian Westphala5fedd432013-04-19 04:58:25 +0000674}
675
Pablo Neira Ayuso1109a902014-10-01 11:19:17 +0200676#if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
Florian Westphala5fedd432013-04-19 04:58:25 +0000677/* 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;
Eric W. Biederman9dff2c92015-09-15 20:04:17 -0500740 struct net *net = entry->state.net;
Florian Westphala5fedd432013-04-19 04:58:25 +0000741 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
742
743 /* rcu_read_lock()ed by nf_hook_slow() */
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
Florian Westphala5fedd432013-04-19 04:58:25 +0000751 skb = entry->skb;
752
David S. Miller1d1de892015-04-03 16:31:01 -0400753 switch (entry->state.pf) {
Florian Westphala5fedd432013-04-19 04:58:25 +0000754 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
Pablo Neira Ayuso7b8dfe22013-06-07 18:42:00 +0200762 if ((queue->flags & NFQA_CFG_F_GSO) || !skb_is_gso(skb))
763 return __nfqnl_enqueue_packet(net, queue, entry);
764
Florian Westphala5fedd432013-04-19 04:58:25 +0000765 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
Florian Westphaled78d092015-10-13 14:33:27 +0200768 * returned by nf_queue. For instance, callers rely on -ESRCH to
Florian Westphala5fedd432013-04-19 04:58:25 +0000769 * mean 'ignore this hook'.
770 */
Florian Westphal330966e2014-10-20 13:49:17 +0200771 if (IS_ERR_OR_NULL(segs))
Florian Westphala5fedd432013-04-19 04:58:25 +0000772 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
Harald Welte7af4cc32005-08-09 19:44:15 -0700798static int
Pablo Neira Ayuso8c88f872012-06-07 13:31:25 +0200799nfqnl_mangle(void *data, int data_len, struct nf_queue_entry *e, int diff)
Harald Welte7af4cc32005-08-09 19:44:15 -0700800{
Patrick McHardye2b58a62008-02-19 17:17:52 -0800801 struct sk_buff *nskb;
Harald Welte7af4cc32005-08-09 19:44:15 -0700802
Patrick McHardyd8a585d2006-11-14 19:48:09 -0800803 if (diff < 0) {
804 if (pskb_trim(e->skb, data_len))
805 return -ENOMEM;
806 } else if (diff > 0) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700807 if (data_len > 0xFFFF)
808 return -EINVAL;
809 if (diff > skb_tailroom(e->skb)) {
Arnaud Ebalard9a732ed2008-04-29 03:16:34 -0700810 nskb = skb_copy_expand(e->skb, skb_headroom(e->skb),
811 diff, GFP_ATOMIC);
Patrick McHardye2b58a62008-02-19 17:17:52 -0800812 if (!nskb) {
Patrick McHardy1158ba22006-08-22 00:32:47 -0700813 printk(KERN_WARNING "nf_queue: OOM "
Harald Welte7af4cc32005-08-09 19:44:15 -0700814 "in mangle, dropping packet\n");
Patrick McHardye2b58a62008-02-19 17:17:52 -0800815 return -ENOMEM;
Harald Welte7af4cc32005-08-09 19:44:15 -0700816 }
Patrick McHardye2b58a62008-02-19 17:17:52 -0800817 kfree_skb(e->skb);
818 e->skb = nskb;
Harald Welte7af4cc32005-08-09 19:44:15 -0700819 }
820 skb_put(e->skb, diff);
821 }
Herbert Xu37d41872007-10-14 00:39:18 -0700822 if (!skb_make_writable(e->skb, data_len))
Harald Welte7af4cc32005-08-09 19:44:15 -0700823 return -ENOMEM;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300824 skb_copy_to_linear_data(e->skb, data, data_len);
Patrick McHardye7dfb092005-09-06 15:10:00 -0700825 e->skb->ip_summed = CHECKSUM_NONE;
Harald Welte7af4cc32005-08-09 19:44:15 -0700826 return 0;
827}
828
Harald Welte7af4cc32005-08-09 19:44:15 -0700829static int
830nfqnl_set_mode(struct nfqnl_instance *queue,
831 unsigned char mode, unsigned int range)
832{
Patrick McHardyc5de0df2007-12-05 01:29:05 -0800833 int status = 0;
Harald Welte7af4cc32005-08-09 19:44:15 -0700834
835 spin_lock_bh(&queue->lock);
Patrick McHardyc5de0df2007-12-05 01:29:05 -0800836 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;
Florian Westphal9cefbbc2013-06-04 22:22:15 +0000845 if (range == 0 || range > NFQNL_MAX_COPY_RANGE)
846 queue->copy_range = NFQNL_MAX_COPY_RANGE;
Patrick McHardyc5de0df2007-12-05 01:29:05 -0800847 else
848 queue->copy_range = range;
849 break;
850
851 default:
852 status = -EINVAL;
853
854 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700855 spin_unlock_bh(&queue->lock);
856
857 return status;
858}
859
860static int
Patrick McHardy02f014d2007-12-05 01:26:33 -0800861dev_cmp(struct nf_queue_entry *entry, unsigned long ifindex)
Harald Welte7af4cc32005-08-09 19:44:15 -0700862{
David S. Miller1d1de892015-04-03 16:31:01 -0400863 if (entry->state.in)
864 if (entry->state.in->ifindex == ifindex)
Harald Welte7af4cc32005-08-09 19:44:15 -0700865 return 1;
David S. Miller1d1de892015-04-03 16:31:01 -0400866 if (entry->state.out)
867 if (entry->state.out->ifindex == ifindex)
Harald Welte7af4cc32005-08-09 19:44:15 -0700868 return 1;
Pablo Neira Ayuso1109a902014-10-01 11:19:17 +0200869#if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
Patrick McHardyef47c6a72006-06-27 03:01:48 -0700870 if (entry->skb->nf_bridge) {
Florian Westphalc737b7c2015-04-02 14:31:41 +0200871 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)
Patrick McHardyef47c6a72006-06-27 03:01:48 -0700877 return 1;
878 }
879#endif
Harald Welte7af4cc32005-08-09 19:44:15 -0700880 return 0;
881}
882
883/* drop all packets with either indev or outdev == ifindex from all queue
884 * instances */
885static void
Gao fenge8179612013-03-24 23:50:47 +0000886nfqnl_dev_drop(struct net *net, int ifindex)
Harald Welte7af4cc32005-08-09 19:44:15 -0700887{
888 int i;
Gao fenge8179612013-03-24 23:50:47 +0000889 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800890
Patrick McHardy9872bec2007-12-05 01:28:50 -0800891 rcu_read_lock();
Harald Welte7af4cc32005-08-09 19:44:15 -0700892
Patrick McHardy9872bec2007-12-05 01:28:50 -0800893 for (i = 0; i < INSTANCE_BUCKETS; i++) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700894 struct nfqnl_instance *inst;
Gao fenge8179612013-03-24 23:50:47 +0000895 struct hlist_head *head = &q->instance_table[i];
Harald Welte7af4cc32005-08-09 19:44:15 -0700896
Sasha Levinb67bfe02013-02-27 17:06:00 -0800897 hlist_for_each_entry_rcu(inst, head, hlist)
Patrick McHardyb43d8d82007-12-05 01:25:30 -0800898 nfqnl_flush(inst, dev_cmp, ifindex);
Harald Welte7af4cc32005-08-09 19:44:15 -0700899 }
900
Patrick McHardy9872bec2007-12-05 01:28:50 -0800901 rcu_read_unlock();
Harald Welte7af4cc32005-08-09 19:44:15 -0700902}
903
Harald Welte7af4cc32005-08-09 19:44:15 -0700904static int
905nfqnl_rcv_dev_event(struct notifier_block *this,
906 unsigned long event, void *ptr)
907{
Jiri Pirko351638e2013-05-28 01:30:21 +0000908 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Harald Welte7af4cc32005-08-09 19:44:15 -0700909
910 /* Drop any packets associated with the downed device */
911 if (event == NETDEV_DOWN)
Gao fenge8179612013-03-24 23:50:47 +0000912 nfqnl_dev_drop(dev_net(dev), dev->ifindex);
Harald Welte7af4cc32005-08-09 19:44:15 -0700913 return NOTIFY_DONE;
914}
915
916static struct notifier_block nfqnl_dev_notifier = {
917 .notifier_call = nfqnl_rcv_dev_event,
918};
919
Eric W. Biederman8405a8f2015-06-19 14:03:39 -0500920static int nf_hook_cmp(struct nf_queue_entry *entry, unsigned long ops_ptr)
921{
922 return entry->elem == (struct nf_hook_ops *)ops_ptr;
923}
924
925static void nfqnl_nf_hook_drop(struct net *net, struct nf_hook_ops *hook)
926{
927 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
928 int i;
929
930 rcu_read_lock();
931 for (i = 0; i < INSTANCE_BUCKETS; i++) {
932 struct nfqnl_instance *inst;
933 struct hlist_head *head = &q->instance_table[i];
934
935 hlist_for_each_entry_rcu(inst, head, hlist)
936 nfqnl_flush(inst, nf_hook_cmp, (unsigned long)hook);
937 }
938 rcu_read_unlock();
939}
940
Harald Welte7af4cc32005-08-09 19:44:15 -0700941static int
942nfqnl_rcv_nl_event(struct notifier_block *this,
943 unsigned long event, void *ptr)
944{
945 struct netlink_notify *n = ptr;
Gao fenge8179612013-03-24 23:50:47 +0000946 struct nfnl_queue_net *q = nfnl_queue_pernet(n->net);
Harald Welte7af4cc32005-08-09 19:44:15 -0700947
Patrick McHardydee58172009-11-06 17:04:00 +0100948 if (event == NETLINK_URELEASE && n->protocol == NETLINK_NETFILTER) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700949 int i;
950
Eric W. Biederman15e47302012-09-07 20:12:54 +0000951 /* destroy all instances for this portid */
Gao fenge8179612013-03-24 23:50:47 +0000952 spin_lock(&q->instances_lock);
Patrick McHardy9872bec2007-12-05 01:28:50 -0800953 for (i = 0; i < INSTANCE_BUCKETS; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800954 struct hlist_node *t2;
Harald Welte7af4cc32005-08-09 19:44:15 -0700955 struct nfqnl_instance *inst;
Gao fenge8179612013-03-24 23:50:47 +0000956 struct hlist_head *head = &q->instance_table[i];
Harald Welte7af4cc32005-08-09 19:44:15 -0700957
Sasha Levinb67bfe02013-02-27 17:06:00 -0800958 hlist_for_each_entry_safe(inst, t2, head, hlist) {
Gao fenge8179612013-03-24 23:50:47 +0000959 if (n->portid == inst->peer_portid)
Harald Welte7af4cc32005-08-09 19:44:15 -0700960 __instance_destroy(inst);
961 }
962 }
Gao fenge8179612013-03-24 23:50:47 +0000963 spin_unlock(&q->instances_lock);
Harald Welte7af4cc32005-08-09 19:44:15 -0700964 }
965 return NOTIFY_DONE;
966}
967
968static struct notifier_block nfqnl_rtnl_notifier = {
969 .notifier_call = nfqnl_rcv_nl_event,
970};
971
Stephane Bryant8d45ff22016-03-26 08:42:12 +0100972static const struct nla_policy nfqa_vlan_policy[NFQA_VLAN_MAX + 1] = {
973 [NFQA_VLAN_TCI] = { .type = NLA_U16},
974 [NFQA_VLAN_PROTO] = { .type = NLA_U16},
975};
976
Patrick McHardy5bf75852007-09-28 14:39:26 -0700977static const struct nla_policy nfqa_verdict_policy[NFQA_MAX+1] = {
978 [NFQA_VERDICT_HDR] = { .len = sizeof(struct nfqnl_msg_verdict_hdr) },
979 [NFQA_MARK] = { .type = NLA_U32 },
980 [NFQA_PAYLOAD] = { .type = NLA_UNSPEC },
Pablo Neira Ayuso9cb01762012-06-07 12:13:39 +0200981 [NFQA_CT] = { .type = NLA_UNSPEC },
Pablo Neira Ayusobd077932013-08-07 18:13:20 +0200982 [NFQA_EXP] = { .type = NLA_UNSPEC },
Stephane Bryant8d45ff22016-03-26 08:42:12 +0100983 [NFQA_VLAN] = { .type = NLA_NESTED },
Harald Welte838ab632005-08-09 19:50:45 -0700984};
985
Florian Westphal97d32cf2011-07-19 11:46:33 +0200986static const struct nla_policy nfqa_verdict_batch_policy[NFQA_MAX+1] = {
987 [NFQA_VERDICT_HDR] = { .len = sizeof(struct nfqnl_msg_verdict_hdr) },
988 [NFQA_MARK] = { .type = NLA_U32 },
989};
990
Gao fenge8179612013-03-24 23:50:47 +0000991static struct nfqnl_instance *
Richard Weinbergercc6bc442015-04-13 00:52:37 +0200992verdict_instance_lookup(struct nfnl_queue_net *q, u16 queue_num, u32 nlportid)
Florian Westphal97d32cf2011-07-19 11:46:33 +0200993{
994 struct nfqnl_instance *queue;
995
Gao fenge8179612013-03-24 23:50:47 +0000996 queue = instance_lookup(q, queue_num);
Florian Westphal97d32cf2011-07-19 11:46:33 +0200997 if (!queue)
998 return ERR_PTR(-ENODEV);
999
Eric W. Biederman15e47302012-09-07 20:12:54 +00001000 if (queue->peer_portid != nlportid)
Florian Westphal97d32cf2011-07-19 11:46:33 +02001001 return ERR_PTR(-EPERM);
1002
1003 return queue;
1004}
1005
1006static struct nfqnl_msg_verdict_hdr*
1007verdicthdr_get(const struct nlattr * const nfqa[])
1008{
1009 struct nfqnl_msg_verdict_hdr *vhdr;
1010 unsigned int verdict;
1011
1012 if (!nfqa[NFQA_VERDICT_HDR])
1013 return NULL;
1014
1015 vhdr = nla_data(nfqa[NFQA_VERDICT_HDR]);
Florian Westphalc6675232011-08-30 15:01:20 +02001016 verdict = ntohl(vhdr->verdict) & NF_VERDICT_MASK;
1017 if (verdict > NF_MAX_VERDICT || verdict == NF_STOLEN)
Florian Westphal97d32cf2011-07-19 11:46:33 +02001018 return NULL;
1019 return vhdr;
1020}
1021
1022static int nfq_id_after(unsigned int id, unsigned int max)
1023{
1024 return (int)(id - max) > 0;
1025}
1026
Pablo Neira Ayuso7b8002a2015-12-15 18:41:56 +01001027static int nfqnl_recv_verdict_batch(struct net *net, struct sock *ctnl,
1028 struct sk_buff *skb,
1029 const struct nlmsghdr *nlh,
1030 const struct nlattr * const nfqa[])
Florian Westphal97d32cf2011-07-19 11:46:33 +02001031{
David S. Miller3da07c02012-06-26 21:35:27 -07001032 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
Florian Westphal97d32cf2011-07-19 11:46:33 +02001033 struct nf_queue_entry *entry, *tmp;
1034 unsigned int verdict, maxid;
1035 struct nfqnl_msg_verdict_hdr *vhdr;
1036 struct nfqnl_instance *queue;
1037 LIST_HEAD(batch_list);
1038 u16 queue_num = ntohs(nfmsg->res_id);
Gao fenge8179612013-03-24 23:50:47 +00001039 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
1040
1041 queue = verdict_instance_lookup(q, queue_num,
1042 NETLINK_CB(skb).portid);
Florian Westphal97d32cf2011-07-19 11:46:33 +02001043 if (IS_ERR(queue))
1044 return PTR_ERR(queue);
1045
1046 vhdr = verdicthdr_get(nfqa);
1047 if (!vhdr)
1048 return -EINVAL;
1049
1050 verdict = ntohl(vhdr->verdict);
1051 maxid = ntohl(vhdr->id);
1052
1053 spin_lock_bh(&queue->lock);
1054
1055 list_for_each_entry_safe(entry, tmp, &queue->queue_list, list) {
1056 if (nfq_id_after(entry->id, maxid))
1057 break;
1058 __dequeue_entry(queue, entry);
1059 list_add_tail(&entry->list, &batch_list);
1060 }
1061
1062 spin_unlock_bh(&queue->lock);
1063
1064 if (list_empty(&batch_list))
1065 return -ENOENT;
1066
1067 list_for_each_entry_safe(entry, tmp, &batch_list, list) {
1068 if (nfqa[NFQA_MARK])
1069 entry->skb->mark = ntohl(nla_get_be32(nfqa[NFQA_MARK]));
1070 nf_reinject(entry, verdict);
1071 }
1072 return 0;
1073}
1074
Ken-ichirou MATSUZAWAa4b47662015-10-05 11:47:13 +09001075static struct nf_conn *nfqnl_ct_parse(struct nfnl_ct_hook *nfnl_ct,
Pablo Neira Ayusob7bd1802015-09-30 22:53:44 +01001076 const struct nlmsghdr *nlh,
1077 const struct nlattr * const nfqa[],
1078 struct nf_queue_entry *entry,
1079 enum ip_conntrack_info *ctinfo)
1080{
1081 struct nf_conn *ct;
1082
Ken-ichirou MATSUZAWAa4b47662015-10-05 11:47:13 +09001083 ct = nfnl_ct->get_ct(entry->skb, ctinfo);
Pablo Neira Ayusob7bd1802015-09-30 22:53:44 +01001084 if (ct == NULL)
1085 return NULL;
1086
Ken-ichirou MATSUZAWAa4b47662015-10-05 11:47:13 +09001087 if (nfnl_ct->parse(nfqa[NFQA_CT], ct) < 0)
Pablo Neira Ayusob7bd1802015-09-30 22:53:44 +01001088 return NULL;
1089
1090 if (nfqa[NFQA_EXP])
Ken-ichirou MATSUZAWAa4b47662015-10-05 11:47:13 +09001091 nfnl_ct->attach_expect(nfqa[NFQA_EXP], ct,
Pablo Neira Ayusob7bd1802015-09-30 22:53:44 +01001092 NETLINK_CB(entry->skb).portid,
1093 nlmsg_report(nlh));
1094 return ct;
1095}
1096
Stephane Bryant8d45ff22016-03-26 08:42:12 +01001097static int nfqa_parse_bridge(struct nf_queue_entry *entry,
1098 const struct nlattr * const nfqa[])
1099{
1100 if (nfqa[NFQA_VLAN]) {
1101 struct nlattr *tb[NFQA_VLAN_MAX + 1];
1102 int err;
1103
1104 err = nla_parse_nested(tb, NFQA_VLAN_MAX, nfqa[NFQA_VLAN],
1105 nfqa_vlan_policy);
1106 if (err < 0)
1107 return err;
1108
1109 if (!tb[NFQA_VLAN_TCI] || !tb[NFQA_VLAN_PROTO])
1110 return -EINVAL;
1111
1112 entry->skb->vlan_tci = ntohs(nla_get_be16(tb[NFQA_VLAN_TCI]));
1113 entry->skb->vlan_proto = nla_get_be16(tb[NFQA_VLAN_PROTO]);
1114 }
1115
1116 if (nfqa[NFQA_L2HDR]) {
1117 int mac_header_len = entry->skb->network_header -
1118 entry->skb->mac_header;
1119
1120 if (mac_header_len != nla_len(nfqa[NFQA_L2HDR]))
1121 return -EINVAL;
1122 else if (mac_header_len > 0)
1123 memcpy(skb_mac_header(entry->skb),
1124 nla_data(nfqa[NFQA_L2HDR]),
1125 mac_header_len);
1126 }
1127
1128 return 0;
1129}
1130
Pablo Neira Ayuso7b8002a2015-12-15 18:41:56 +01001131static int nfqnl_recv_verdict(struct net *net, struct sock *ctnl,
1132 struct sk_buff *skb,
1133 const struct nlmsghdr *nlh,
1134 const struct nlattr * const nfqa[])
Harald Welte7af4cc32005-08-09 19:44:15 -07001135{
David S. Miller3da07c02012-06-26 21:35:27 -07001136 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
Harald Welte7af4cc32005-08-09 19:44:15 -07001137 u_int16_t queue_num = ntohs(nfmsg->res_id);
Harald Welte7af4cc32005-08-09 19:44:15 -07001138 struct nfqnl_msg_verdict_hdr *vhdr;
1139 struct nfqnl_instance *queue;
1140 unsigned int verdict;
Patrick McHardy02f014d2007-12-05 01:26:33 -08001141 struct nf_queue_entry *entry;
Pablo Neira Ayuso8c88f872012-06-07 13:31:25 +02001142 enum ip_conntrack_info uninitialized_var(ctinfo);
Ken-ichirou MATSUZAWAa4b47662015-10-05 11:47:13 +09001143 struct nfnl_ct_hook *nfnl_ct;
Pablo Neira Ayuso8c88f872012-06-07 13:31:25 +02001144 struct nf_conn *ct = NULL;
Gao fenge8179612013-03-24 23:50:47 +00001145 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
Stephane Bryant8d45ff22016-03-26 08:42:12 +01001146 int err;
Harald Welte7af4cc32005-08-09 19:44:15 -07001147
Gao fenge8179612013-03-24 23:50:47 +00001148 queue = instance_lookup(q, queue_num);
1149 if (!queue)
1150 queue = verdict_instance_lookup(q, queue_num,
1151 NETLINK_CB(skb).portid);
Florian Westphal97d32cf2011-07-19 11:46:33 +02001152 if (IS_ERR(queue))
1153 return PTR_ERR(queue);
Harald Welte7af4cc32005-08-09 19:44:15 -07001154
Florian Westphal97d32cf2011-07-19 11:46:33 +02001155 vhdr = verdicthdr_get(nfqa);
1156 if (!vhdr)
Eric Dumazet84a797d2011-07-18 16:08:27 +02001157 return -EINVAL;
Harald Welte7af4cc32005-08-09 19:44:15 -07001158
Harald Welte7af4cc32005-08-09 19:44:15 -07001159 verdict = ntohl(vhdr->verdict);
1160
Patrick McHardyb43d8d82007-12-05 01:25:30 -08001161 entry = find_dequeue_entry(queue, ntohl(vhdr->id));
Eric Dumazet84a797d2011-07-18 16:08:27 +02001162 if (entry == NULL)
1163 return -ENOENT;
Harald Welte7af4cc32005-08-09 19:44:15 -07001164
Arnd Bergmann8e662162015-11-19 13:49:59 +01001165 /* rcu lock already held from nfnl->call_rcu. */
1166 nfnl_ct = rcu_dereference(nfnl_ct_hook);
1167
Pablo Neira Ayusobd077932013-08-07 18:13:20 +02001168 if (nfqa[NFQA_CT]) {
Ken-ichirou MATSUZAWAa4b47662015-10-05 11:47:13 +09001169 if (nfnl_ct != NULL)
1170 ct = nfqnl_ct_parse(nfnl_ct, nlh, nfqa, entry, &ctinfo);
Pablo Neira Ayusobd077932013-08-07 18:13:20 +02001171 }
Pablo Neira Ayuso9cb01762012-06-07 12:13:39 +02001172
Stephane Bryant8d45ff22016-03-26 08:42:12 +01001173 if (entry->state.pf == PF_BRIDGE) {
1174 err = nfqa_parse_bridge(entry, nfqa);
1175 if (err < 0)
1176 return err;
1177 }
1178
Patrick McHardydf6fb862007-09-28 14:37:03 -07001179 if (nfqa[NFQA_PAYLOAD]) {
Pablo Neira Ayuso8c88f872012-06-07 13:31:25 +02001180 u16 payload_len = nla_len(nfqa[NFQA_PAYLOAD]);
1181 int diff = payload_len - entry->skb->len;
1182
Patrick McHardydf6fb862007-09-28 14:37:03 -07001183 if (nfqnl_mangle(nla_data(nfqa[NFQA_PAYLOAD]),
Pablo Neira Ayuso8c88f872012-06-07 13:31:25 +02001184 payload_len, entry, diff) < 0)
Harald Welte7af4cc32005-08-09 19:44:15 -07001185 verdict = NF_DROP;
Pablo Neira Ayuso8c88f872012-06-07 13:31:25 +02001186
Pablo Neira Ayusob7bd1802015-09-30 22:53:44 +01001187 if (ct && diff)
Ken-ichirou MATSUZAWAa4b47662015-10-05 11:47:13 +09001188 nfnl_ct->seq_adjust(entry->skb, ct, ctinfo, diff);
Harald Welte7af4cc32005-08-09 19:44:15 -07001189 }
1190
Patrick McHardydf6fb862007-09-28 14:37:03 -07001191 if (nfqa[NFQA_MARK])
Patrick McHardyea3a66f2007-12-05 01:30:02 -08001192 entry->skb->mark = ntohl(nla_get_be32(nfqa[NFQA_MARK]));
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001193
Patrick McHardy4b3d15e2007-12-05 01:27:02 -08001194 nf_reinject(entry, verdict);
Harald Welte7af4cc32005-08-09 19:44:15 -07001195 return 0;
1196}
1197
Pablo Neira Ayuso7b8002a2015-12-15 18:41:56 +01001198static 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[])
Harald Welte7af4cc32005-08-09 19:44:15 -07001201{
1202 return -ENOTSUPP;
1203}
1204
Patrick McHardy5bf75852007-09-28 14:39:26 -07001205static 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) },
Harald Welte838ab632005-08-09 19:50:45 -07001208};
1209
Patrick McHardye3ac5292007-12-05 01:23:57 -08001210static const struct nf_queue_handler nfqh = {
Eric W. Biederman8405a8f2015-06-19 14:03:39 -05001211 .outfn = &nfqnl_enqueue_packet,
1212 .nf_hook_drop = &nfqnl_nf_hook_drop,
Harald Weltebbd86b9f2005-08-09 20:23:11 -07001213};
1214
Pablo Neira Ayuso7b8002a2015-12-15 18:41:56 +01001215static 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[])
Harald Welte7af4cc32005-08-09 19:44:15 -07001218{
David S. Miller3da07c02012-06-26 21:35:27 -07001219 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
Harald Welte7af4cc32005-08-09 19:44:15 -07001220 u_int16_t queue_num = ntohs(nfmsg->res_id);
1221 struct nfqnl_instance *queue;
Patrick McHardy9872bec2007-12-05 01:28:50 -08001222 struct nfqnl_msg_config_cmd *cmd = NULL;
Gao fenge8179612013-03-24 23:50:47 +00001223 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
Ken-ichirou MATSUZAWA60d2c7f2016-01-05 09:28:05 +09001224 __u32 flags = 0, mask = 0;
Harald Welte838ab632005-08-09 19:50:45 -07001225 int ret = 0;
Harald Welte7af4cc32005-08-09 19:44:15 -07001226
Patrick McHardy9872bec2007-12-05 01:28:50 -08001227 if (nfqa[NFQA_CFG_CMD]) {
1228 cmd = nla_data(nfqa[NFQA_CFG_CMD]);
1229
Florian Westphal0360ae42012-11-23 06:22:21 +00001230 /* Obsolete commands without queue context */
Patrick McHardy9872bec2007-12-05 01:28:50 -08001231 switch (cmd->command) {
Florian Westphal0360ae42012-11-23 06:22:21 +00001232 case NFQNL_CFG_CMD_PF_BIND: return 0;
1233 case NFQNL_CFG_CMD_PF_UNBIND: return 0;
Patrick McHardy9872bec2007-12-05 01:28:50 -08001234 }
Patrick McHardya3c8e7fd2007-12-05 01:28:30 -08001235 }
1236
Ken-ichirou MATSUZAWA60d2c7f2016-01-05 09:28:05 +09001237 /* 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
Ken-ichirou MATSUZAWA71b2e5f2016-01-05 09:32:59 +09001258 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 }
Ken-ichirou MATSUZAWA60d2c7f2016-01-05 09:28:05 +09001269 }
1270
Patrick McHardy9872bec2007-12-05 01:28:50 -08001271 rcu_read_lock();
Gao fenge8179612013-03-24 23:50:47 +00001272 queue = instance_lookup(q, queue_num);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001273 if (queue && queue->peer_portid != NETLINK_CB(skb).portid) {
Patrick McHardy9872bec2007-12-05 01:28:50 -08001274 ret = -EPERM;
1275 goto err_out_unlock;
1276 }
Patrick McHardya3c8e7fd2007-12-05 01:28:30 -08001277
Patrick McHardy9872bec2007-12-05 01:28:50 -08001278 if (cmd != NULL) {
Harald Welte7af4cc32005-08-09 19:44:15 -07001279 switch (cmd->command) {
1280 case NFQNL_CFG_CMD_BIND:
Patrick McHardy9872bec2007-12-05 01:28:50 -08001281 if (queue) {
1282 ret = -EBUSY;
1283 goto err_out_unlock;
1284 }
Gao fenge8179612013-03-24 23:50:47 +00001285 queue = instance_create(q, queue_num,
1286 NETLINK_CB(skb).portid);
Patrick McHardybaab2ce2007-12-17 22:41:21 -08001287 if (IS_ERR(queue)) {
1288 ret = PTR_ERR(queue);
Patrick McHardy9872bec2007-12-05 01:28:50 -08001289 goto err_out_unlock;
1290 }
Harald Welte7af4cc32005-08-09 19:44:15 -07001291 break;
1292 case NFQNL_CFG_CMD_UNBIND:
Patrick McHardy9872bec2007-12-05 01:28:50 -08001293 if (!queue) {
1294 ret = -ENODEV;
1295 goto err_out_unlock;
1296 }
Gao fenge8179612013-03-24 23:50:47 +00001297 instance_destroy(q, queue);
Ken-ichirou MATSUZAWA17bc6b42016-01-05 09:29:54 +09001298 goto err_out_unlock;
Harald Welte7af4cc32005-08-09 19:44:15 -07001299 case NFQNL_CFG_CMD_PF_BIND:
Harald Welte7af4cc32005-08-09 19:44:15 -07001300 case NFQNL_CFG_CMD_PF_UNBIND:
Harald Welte7af4cc32005-08-09 19:44:15 -07001301 break;
1302 default:
Patrick McHardycd21f0a2007-12-17 22:40:19 -08001303 ret = -ENOTSUPP;
Ken-ichirou MATSUZAWA21c3c972016-01-05 09:31:40 +09001304 goto err_out_unlock;
Harald Welte7af4cc32005-08-09 19:44:15 -07001305 }
Harald Welte7af4cc32005-08-09 19:44:15 -07001306 }
1307
Ken-ichirou MATSUZAWA60d2c7f2016-01-05 09:28:05 +09001308 if (!queue) {
1309 ret = -ENODEV;
1310 goto err_out_unlock;
1311 }
Harald Welte7af4cc32005-08-09 19:44:15 -07001312
Ken-ichirou MATSUZAWA60d2c7f2016-01-05 09:28:05 +09001313 if (nfqa[NFQA_CFG_PARAMS]) {
1314 struct nfqnl_msg_config_params *params =
1315 nla_data(nfqa[NFQA_CFG_PARAMS]);
1316
Harald Welte7af4cc32005-08-09 19:44:15 -07001317 nfqnl_set_mode(queue, params->copy_mode,
1318 ntohl(params->copy_range));
1319 }
1320
Patrick McHardydf6fb862007-09-28 14:37:03 -07001321 if (nfqa[NFQA_CFG_QUEUE_MAXLEN]) {
Ken-ichirou MATSUZAWA60d2c7f2016-01-05 09:28:05 +09001322 __be32 *queue_maxlen = nla_data(nfqa[NFQA_CFG_QUEUE_MAXLEN]);
Patrick McHardya3c8e7fd2007-12-05 01:28:30 -08001323
Eric Leblond829e17a2006-11-29 02:35:33 +01001324 spin_lock_bh(&queue->lock);
1325 queue->queue_maxlen = ntohl(*queue_maxlen);
1326 spin_unlock_bh(&queue->lock);
1327 }
1328
Krishna Kumarfdb694a2012-05-24 03:56:44 +00001329 if (nfqa[NFQA_CFG_FLAGS]) {
Krishna Kumarfdb694a2012-05-24 03:56:44 +00001330 spin_lock_bh(&queue->lock);
1331 queue->flags &= ~mask;
1332 queue->flags |= flags & mask;
1333 spin_unlock_bh(&queue->lock);
1334 }
1335
Patrick McHardy9872bec2007-12-05 01:28:50 -08001336err_out_unlock:
1337 rcu_read_unlock();
Harald Welte838ab632005-08-09 19:50:45 -07001338 return ret;
Harald Welte7af4cc32005-08-09 19:44:15 -07001339}
1340
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -07001341static const struct nfnl_callback nfqnl_cb[NFQNL_MSG_MAX] = {
Eric Dumazet84a797d2011-07-18 16:08:27 +02001342 [NFQNL_MSG_PACKET] = { .call_rcu = nfqnl_recv_unsupp,
Harald Welte37d2e7a2005-11-14 15:24:59 -08001343 .attr_count = NFQA_MAX, },
Eric Dumazet84a797d2011-07-18 16:08:27 +02001344 [NFQNL_MSG_VERDICT] = { .call_rcu = nfqnl_recv_verdict,
Patrick McHardy5bf75852007-09-28 14:39:26 -07001345 .attr_count = NFQA_MAX,
1346 .policy = nfqa_verdict_policy },
Harald Welte7af4cc32005-08-09 19:44:15 -07001347 [NFQNL_MSG_CONFIG] = { .call = nfqnl_recv_config,
Patrick McHardy5bf75852007-09-28 14:39:26 -07001348 .attr_count = NFQA_CFG_MAX,
1349 .policy = nfqa_cfg_policy },
Florian Westphal97d32cf2011-07-19 11:46:33 +02001350 [NFQNL_MSG_VERDICT_BATCH]={ .call_rcu = nfqnl_recv_verdict_batch,
1351 .attr_count = NFQA_MAX,
1352 .policy = nfqa_verdict_batch_policy },
Harald Welte7af4cc32005-08-09 19:44:15 -07001353};
1354
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -07001355static const struct nfnetlink_subsystem nfqnl_subsys = {
Harald Welte7af4cc32005-08-09 19:44:15 -07001356 .name = "nf_queue",
1357 .subsys_id = NFNL_SUBSYS_QUEUE,
1358 .cb_count = NFQNL_MSG_MAX,
Harald Welte7af4cc32005-08-09 19:44:15 -07001359 .cb = nfqnl_cb,
1360};
1361
Harald Welte838ab632005-08-09 19:50:45 -07001362#ifdef CONFIG_PROC_FS
1363struct iter_state {
Gao fenge8179612013-03-24 23:50:47 +00001364 struct seq_net_private p;
Harald Welte838ab632005-08-09 19:50:45 -07001365 unsigned int bucket;
1366};
1367
1368static struct hlist_node *get_first(struct seq_file *seq)
1369{
1370 struct iter_state *st = seq->private;
Gao fenge8179612013-03-24 23:50:47 +00001371 struct net *net;
1372 struct nfnl_queue_net *q;
Harald Welte838ab632005-08-09 19:50:45 -07001373
1374 if (!st)
1375 return NULL;
1376
Gao fenge8179612013-03-24 23:50:47 +00001377 net = seq_file_net(seq);
1378 q = nfnl_queue_pernet(net);
Harald Welte838ab632005-08-09 19:50:45 -07001379 for (st->bucket = 0; st->bucket < INSTANCE_BUCKETS; st->bucket++) {
Gao fenge8179612013-03-24 23:50:47 +00001380 if (!hlist_empty(&q->instance_table[st->bucket]))
1381 return q->instance_table[st->bucket].first;
Harald Welte838ab632005-08-09 19:50:45 -07001382 }
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;
Gao fenge8179612013-03-24 23:50:47 +00001389 struct net *net = seq_file_net(seq);
Harald Welte838ab632005-08-09 19:50:45 -07001390
1391 h = h->next;
1392 while (!h) {
Gao fenge8179612013-03-24 23:50:47 +00001393 struct nfnl_queue_net *q;
1394
Harald Welte838ab632005-08-09 19:50:45 -07001395 if (++st->bucket >= INSTANCE_BUCKETS)
1396 return NULL;
1397
Gao fenge8179612013-03-24 23:50:47 +00001398 q = nfnl_queue_pernet(net);
1399 h = q->instance_table[st->bucket].first;
Harald Welte838ab632005-08-09 19:50:45 -07001400 }
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
Gao fenge8179612013-03-24 23:50:47 +00001415static void *seq_start(struct seq_file *s, loff_t *pos)
1416 __acquires(nfnl_queue_pernet(seq_file_net(s))->instances_lock)
Harald Welte838ab632005-08-09 19:50:45 -07001417{
Gao fenge8179612013-03-24 23:50:47 +00001418 spin_lock(&nfnl_queue_pernet(seq_file_net(s))->instances_lock);
1419 return get_idx(s, *pos);
Harald Welte838ab632005-08-09 19:50:45 -07001420}
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)
Gao fenge8179612013-03-24 23:50:47 +00001429 __releases(nfnl_queue_pernet(seq_file_net(s))->instances_lock)
Harald Welte838ab632005-08-09 19:50:45 -07001430{
Gao fenge8179612013-03-24 23:50:47 +00001431 spin_unlock(&nfnl_queue_pernet(seq_file_net(s))->instances_lock);
Harald Welte838ab632005-08-09 19:50:45 -07001432}
1433
1434static int seq_show(struct seq_file *s, void *v)
1435{
1436 const struct nfqnl_instance *inst = v;
1437
Richard Weinberger6b46f7b2015-04-13 00:52:38 +02001438 seq_printf(s, "%5u %6u %5u %1u %5u %5u %5u %8u %2d\n",
Steven Rostedt (Red Hat)e71456a2014-10-27 17:43:45 -04001439 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);
Joe Perches861fb102015-05-12 18:28:23 -07001444 return 0;
Harald Welte838ab632005-08-09 19:50:45 -07001445}
1446
Philippe De Muyter56b3d972007-07-10 23:07:31 -07001447static const struct seq_operations nfqnl_seq_ops = {
Harald Welte838ab632005-08-09 19:50:45 -07001448 .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{
Gao fenge8179612013-03-24 23:50:47 +00001456 return seq_open_net(inode, file, &nfqnl_seq_ops,
Pavel Emelyanove2da5912007-10-10 02:29:58 -07001457 sizeof(struct iter_state));
Harald Welte838ab632005-08-09 19:50:45 -07001458}
1459
Arjan van de Venda7071d2007-02-12 00:55:36 -08001460static const struct file_operations nfqnl_file_ops = {
Harald Welte838ab632005-08-09 19:50:45 -07001461 .owner = THIS_MODULE,
1462 .open = nfqnl_open,
1463 .read = seq_read,
1464 .llseek = seq_lseek,
Gao fenge8179612013-03-24 23:50:47 +00001465 .release = seq_release_net,
Harald Welte838ab632005-08-09 19:50:45 -07001466};
1467
1468#endif /* PROC_FS */
1469
Gao fenge8179612013-03-24 23:50:47 +00001470static int __net_init nfnl_queue_net_init(struct net *net)
Harald Welte7af4cc32005-08-09 19:44:15 -07001471{
Gao fenge8179612013-03-24 23:50:47 +00001472 unsigned int i;
1473 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001474
Harald Welte838ab632005-08-09 19:50:45 -07001475 for (i = 0; i < INSTANCE_BUCKETS; i++)
Gao fenge8179612013-03-24 23:50:47 +00001476 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
Eric W. Biedermandc3ee322016-05-13 21:18:52 -05001485 nf_register_queue_handler(net, &nfqh);
Gao fenge8179612013-03-24 23:50:47 +00001486 return 0;
1487}
1488
1489static void __net_exit nfnl_queue_net_exit(struct net *net)
1490{
Eric W. Biedermandc3ee322016-05-13 21:18:52 -05001491 nf_unregister_queue_handler(net);
Pablo Neira Ayusoe778f562013-04-30 08:01:18 +00001492#ifdef CONFIG_PROC_FS
Gao fenge8179612013-03-24 23:50:47 +00001493 remove_proc_entry("nfnetlink_queue", net->nf.proc_netfilter);
Pablo Neira Ayusoe778f562013-04-30 08:01:18 +00001494#endif
Gao fenge8179612013-03-24 23:50:47 +00001495}
1496
Eric W. Biedermandc3ee322016-05-13 21:18:52 -05001497static void nfnl_queue_net_exit_batch(struct list_head *net_exit_list)
1498{
1499 synchronize_rcu();
1500}
1501
Gao fenge8179612013-03-24 23:50:47 +00001502static struct pernet_operations nfnl_queue_net_ops = {
Eric W. Biedermandc3ee322016-05-13 21:18:52 -05001503 .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),
Gao fenge8179612013-03-24 23:50:47 +00001508};
1509
1510static int __init nfnetlink_queue_init(void)
1511{
Francesco Ruggeri3bfe0492015-05-17 14:30:31 -07001512 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 }
Harald Welte838ab632005-08-09 19:50:45 -07001519
Harald Welte7af4cc32005-08-09 19:44:15 -07001520 netlink_register_notifier(&nfqnl_rtnl_notifier);
1521 status = nfnetlink_subsys_register(&nfqnl_subsys);
1522 if (status < 0) {
Gao fenge8179612013-03-24 23:50:47 +00001523 pr_err("nf_queue: failed to create netlink socket\n");
Harald Welte7af4cc32005-08-09 19:44:15 -07001524 goto cleanup_netlink_notifier;
1525 }
1526
1527 register_netdevice_notifier(&nfqnl_dev_notifier);
1528 return status;
1529
Harald Welte7af4cc32005-08-09 19:44:15 -07001530cleanup_netlink_notifier:
1531 netlink_unregister_notifier(&nfqnl_rtnl_notifier);
Nikolay Borisov639e0772015-12-07 12:13:26 +02001532 unregister_pernet_subsys(&nfnl_queue_net_ops);
Francesco Ruggeri3bfe0492015-05-17 14:30:31 -07001533out:
Harald Welte7af4cc32005-08-09 19:44:15 -07001534 return status;
1535}
1536
Andrew Morton65b4b4e2006-03-28 16:37:06 -08001537static void __exit nfnetlink_queue_fini(void)
Harald Welte7af4cc32005-08-09 19:44:15 -07001538{
Patrick McHardy32292a72006-04-06 14:11:30 -07001539 unregister_netdevice_notifier(&nfqnl_dev_notifier);
Patrick McHardy32292a72006-04-06 14:11:30 -07001540 nfnetlink_subsys_unregister(&nfqnl_subsys);
1541 netlink_unregister_notifier(&nfqnl_rtnl_notifier);
Francesco Ruggeri3bfe0492015-05-17 14:30:31 -07001542 unregister_pernet_subsys(&nfnl_queue_net_ops);
Jesper Dangaard Brouer67137f32009-06-08 03:11:33 +00001543
1544 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Harald Welte7af4cc32005-08-09 19:44:15 -07001545}
1546
1547MODULE_DESCRIPTION("netfilter packet queue handler");
1548MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
1549MODULE_LICENSE("GPL");
1550MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_QUEUE);
1551
Andrew Morton65b4b4e2006-03-28 16:37:06 -08001552module_init(nfnetlink_queue_init);
1553module_exit(nfnetlink_queue_fini);