blob: 41583e30051b823bd401b23392875f7fd8079d45 [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>
31#include <linux/list.h>
32#include <net/sock.h>
David S. Miller83111e72014-01-06 13:36:06 -050033#include <net/tcp_states.h>
Patrick McHardyc01cd422007-12-05 01:24:48 -080034#include <net/netfilter/nf_queue.h>
Gao fenge8179612013-03-24 23:50:47 +000035#include <net/netns/generic.h>
Pablo Neira Ayuso7c622342012-06-19 02:10:57 +020036#include <net/netfilter/nfnetlink_queue.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
Harald Welte7af4cc32005-08-09 19:44:15 -0700298static struct sk_buff *
Gao feng74332682013-09-23 19:20:55 +0800299nfqnl_build_packet_message(struct net *net, struct nfqnl_instance *queue,
Eric Dumazet58637022011-07-19 11:44:17 +0200300 struct nf_queue_entry *entry,
301 __be32 **packet_id_ptr)
Harald Welte7af4cc32005-08-09 19:44:15 -0700302{
Harald Welte7af4cc32005-08-09 19:44:15 -0700303 size_t size;
Daniel Borkmann6bb0fef2015-09-10 02:10:57 +0200304 size_t data_len = 0, cap_len = 0, rem_len = 0;
Thomas Grafaf2806f2013-12-13 15:22:17 +0100305 unsigned int hlen = 0;
Harald Welte7af4cc32005-08-09 19:44:15 -0700306 struct sk_buff *skb;
Eric Dumazet58637022011-07-19 11:44:17 +0200307 struct nlattr *nla;
308 struct nfqnl_msg_packet_hdr *pmsg;
Harald Welte7af4cc32005-08-09 19:44:15 -0700309 struct nlmsghdr *nlh;
310 struct nfgenmsg *nfmsg;
Jesper Juhl3e4ead42006-01-05 12:15:58 -0800311 struct sk_buff *entskb = entry->skb;
312 struct net_device *indev;
313 struct net_device *outdev;
Pablo Neira Ayuso9cb01762012-06-07 12:13:39 +0200314 struct nf_conn *ct = NULL;
315 enum ip_conntrack_info uninitialized_var(ctinfo);
Florian Westphal496e4ae2013-06-29 14:15:47 +0200316 bool csum_verify;
Roman Kubiakef493bd2015-06-12 12:32:57 +0200317 char *secdata = NULL;
318 u32 seclen = 0;
Harald Welte7af4cc32005-08-09 19:44:15 -0700319
Hong zhi guo573ce262013-03-27 06:47:04 +0000320 size = nlmsg_total_size(sizeof(struct nfgenmsg))
Patrick McHardydf6fb862007-09-28 14:37:03 -0700321 + nla_total_size(sizeof(struct nfqnl_msg_packet_hdr))
322 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
323 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
Pablo Neira Ayuso1109a902014-10-01 11:19:17 +0200324#if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
Patrick McHardydf6fb862007-09-28 14:37:03 -0700325 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
326 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
Harald Weltefbcd9232005-08-09 20:22:10 -0700327#endif
Patrick McHardydf6fb862007-09-28 14:37:03 -0700328 + nla_total_size(sizeof(u_int32_t)) /* mark */
329 + nla_total_size(sizeof(struct nfqnl_msg_packet_hw))
Florian Westphal72371902013-04-19 04:58:26 +0000330 + nla_total_size(sizeof(u_int32_t)) /* skbinfo */
Eric Dumazetae08ce02013-03-17 17:15:55 +0000331 + nla_total_size(sizeof(u_int32_t)); /* cap_len */
332
333 if (entskb->tstamp.tv64)
334 size += nla_total_size(sizeof(struct nfqnl_msg_packet_timestamp));
Harald Welte7af4cc32005-08-09 19:44:15 -0700335
David S. Miller1d1de892015-04-03 16:31:01 -0400336 if (entry->state.hook <= NF_INET_FORWARD ||
337 (entry->state.hook == NF_INET_POST_ROUTING && entskb->sk == NULL))
Florian Westphal496e4ae2013-06-29 14:15:47 +0200338 csum_verify = !skb_csum_unnecessary(entskb);
339 else
340 csum_verify = false;
341
David S. Miller1d1de892015-04-03 16:31:01 -0400342 outdev = entry->state.out;
Jesper Juhl3e4ead42006-01-05 12:15:58 -0800343
Eric Dumazetc463ac92010-06-09 18:07:06 +0200344 switch ((enum nfqnl_config_mode)ACCESS_ONCE(queue->copy_mode)) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700345 case NFQNL_COPY_META:
346 case NFQNL_COPY_NONE:
Harald Welte7af4cc32005-08-09 19:44:15 -0700347 break;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800348
Harald Welte7af4cc32005-08-09 19:44:15 -0700349 case NFQNL_COPY_PACKET:
Florian Westphal00bd1cc2013-04-19 04:58:27 +0000350 if (!(queue->flags & NFQA_CFG_F_GSO) &&
351 entskb->ip_summed == CHECKSUM_PARTIAL &&
Eric Dumazetc463ac92010-06-09 18:07:06 +0200352 skb_checksum_help(entskb))
Patrick McHardye7dfb092005-09-06 15:10:00 -0700353 return NULL;
Eric Dumazetc463ac92010-06-09 18:07:06 +0200354
355 data_len = ACCESS_ONCE(queue->copy_range);
Florian Westphal9cefbbc2013-06-04 22:22:15 +0000356 if (data_len > entskb->len)
Jesper Juhl3e4ead42006-01-05 12:15:58 -0800357 data_len = entskb->len;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800358
Thomas Grafaf2806f2013-12-13 15:22:17 +0100359 hlen = skb_zerocopy_headlen(entskb);
360 hlen = min_t(unsigned int, hlen, data_len);
Eric Dumazetae08ce02013-03-17 17:15:55 +0000361 size += sizeof(struct nlattr) + hlen;
Pablo Neira Ayuso6ee584b2012-09-24 14:52:12 +0200362 cap_len = entskb->len;
Daniel Borkmann6bb0fef2015-09-10 02:10:57 +0200363 rem_len = data_len - hlen;
Harald Welte7af4cc32005-08-09 19:44:15 -0700364 break;
Harald Welte7af4cc32005-08-09 19:44:15 -0700365 }
366
Pablo Neira Ayuso7c622342012-06-19 02:10:57 +0200367 if (queue->flags & NFQA_CFG_F_CONNTRACK)
368 ct = nfqnl_ct_get(entskb, &size, &ctinfo);
Harald Welte7af4cc32005-08-09 19:44:15 -0700369
Valentina Giusti08c0cad2013-12-20 17:28:53 +0100370 if (queue->flags & NFQA_CFG_F_UID_GID) {
371 size += (nla_total_size(sizeof(u_int32_t)) /* uid */
372 + nla_total_size(sizeof(u_int32_t))); /* gid */
373 }
374
Roman Kubiakef493bd2015-06-12 12:32:57 +0200375 if ((queue->flags & NFQA_CFG_F_SECCTX) && entskb->sk) {
376 seclen = nfqnl_get_sk_secctx(entskb, &secdata);
377 if (seclen)
378 size += nla_total_size(seclen);
379 }
380
Daniel Borkmann6bb0fef2015-09-10 02:10:57 +0200381 skb = __netlink_alloc_skb(net->nfnl, size, rem_len, queue->peer_portid,
Patrick McHardy3ab1f682013-04-17 06:47:09 +0000382 GFP_ATOMIC);
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000383 if (!skb) {
384 skb_tx_error(entskb);
David S. Miller3da07c02012-06-26 21:35:27 -0700385 return NULL;
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000386 }
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800387
David S. Miller3da07c02012-06-26 21:35:27 -0700388 nlh = nlmsg_put(skb, 0, 0,
Harald Welte7af4cc32005-08-09 19:44:15 -0700389 NFNL_SUBSYS_QUEUE << 8 | NFQNL_MSG_PACKET,
David S. Miller3da07c02012-06-26 21:35:27 -0700390 sizeof(struct nfgenmsg), 0);
391 if (!nlh) {
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000392 skb_tx_error(entskb);
David S. Miller3da07c02012-06-26 21:35:27 -0700393 kfree_skb(skb);
394 return NULL;
395 }
396 nfmsg = nlmsg_data(nlh);
David S. Miller1d1de892015-04-03 16:31:01 -0400397 nfmsg->nfgen_family = entry->state.pf;
Harald Welte7af4cc32005-08-09 19:44:15 -0700398 nfmsg->version = NFNETLINK_V0;
399 nfmsg->res_id = htons(queue->queue_num);
400
Eric Dumazet58637022011-07-19 11:44:17 +0200401 nla = __nla_reserve(skb, NFQA_PACKET_HDR, sizeof(*pmsg));
402 pmsg = nla_data(nla);
403 pmsg->hw_protocol = entskb->protocol;
David S. Miller1d1de892015-04-03 16:31:01 -0400404 pmsg->hook = entry->state.hook;
Eric Dumazet58637022011-07-19 11:44:17 +0200405 *packet_id_ptr = &pmsg->packet_id;
Harald Welte7af4cc32005-08-09 19:44:15 -0700406
David S. Miller1d1de892015-04-03 16:31:01 -0400407 indev = entry->state.in;
Jesper Juhl3e4ead42006-01-05 12:15:58 -0800408 if (indev) {
Pablo Neira Ayuso1109a902014-10-01 11:19:17 +0200409#if !IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
David S. Millera4471892012-03-29 23:27:38 -0400410 if (nla_put_be32(skb, NFQA_IFINDEX_INDEV, htonl(indev->ifindex)))
411 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700412#else
David S. Miller1d1de892015-04-03 16:31:01 -0400413 if (entry->state.pf == PF_BRIDGE) {
Harald Weltefbcd9232005-08-09 20:22:10 -0700414 /* Case 1: indev is physical input device, we need to
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800415 * look for bridge group (when called from
Harald Weltefbcd9232005-08-09 20:22:10 -0700416 * netfilter_bridge) */
David S. Millera4471892012-03-29 23:27:38 -0400417 if (nla_put_be32(skb, NFQA_IFINDEX_PHYSINDEV,
418 htonl(indev->ifindex)) ||
Harald Weltefbcd9232005-08-09 20:22:10 -0700419 /* this is the bridge group "brX" */
Jiri Pirkof350a0a82010-06-15 06:50:45 +0000420 /* rcu_read_lock()ed by __nf_queue */
David S. Millera4471892012-03-29 23:27:38 -0400421 nla_put_be32(skb, NFQA_IFINDEX_INDEV,
422 htonl(br_port_get_rcu(indev)->br->dev->ifindex)))
423 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700424 } else {
Florian Westphalc737b7c2015-04-02 14:31:41 +0200425 int physinif;
426
Harald Weltefbcd9232005-08-09 20:22:10 -0700427 /* Case 2: indev is bridge group, we need to look for
428 * physical device (when called from ipv4) */
David S. Millera4471892012-03-29 23:27:38 -0400429 if (nla_put_be32(skb, NFQA_IFINDEX_INDEV,
430 htonl(indev->ifindex)))
431 goto nla_put_failure;
Florian Westphalc737b7c2015-04-02 14:31:41 +0200432
433 physinif = nf_bridge_get_physinif(entskb);
434 if (physinif &&
David S. Millera4471892012-03-29 23:27:38 -0400435 nla_put_be32(skb, NFQA_IFINDEX_PHYSINDEV,
Florian Westphalc737b7c2015-04-02 14:31:41 +0200436 htonl(physinif)))
David S. Millera4471892012-03-29 23:27:38 -0400437 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700438 }
439#endif
Harald Welte7af4cc32005-08-09 19:44:15 -0700440 }
441
Jesper Juhl3e4ead42006-01-05 12:15:58 -0800442 if (outdev) {
Pablo Neira Ayuso1109a902014-10-01 11:19:17 +0200443#if !IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
David S. Millera4471892012-03-29 23:27:38 -0400444 if (nla_put_be32(skb, NFQA_IFINDEX_OUTDEV, htonl(outdev->ifindex)))
445 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700446#else
David S. Miller1d1de892015-04-03 16:31:01 -0400447 if (entry->state.pf == PF_BRIDGE) {
Harald Weltefbcd9232005-08-09 20:22:10 -0700448 /* Case 1: outdev is physical output device, we need to
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800449 * look for bridge group (when called from
Harald Weltefbcd9232005-08-09 20:22:10 -0700450 * netfilter_bridge) */
David S. Millera4471892012-03-29 23:27:38 -0400451 if (nla_put_be32(skb, NFQA_IFINDEX_PHYSOUTDEV,
452 htonl(outdev->ifindex)) ||
Harald Weltefbcd9232005-08-09 20:22:10 -0700453 /* this is the bridge group "brX" */
Jiri Pirkof350a0a82010-06-15 06:50:45 +0000454 /* rcu_read_lock()ed by __nf_queue */
David S. Millera4471892012-03-29 23:27:38 -0400455 nla_put_be32(skb, NFQA_IFINDEX_OUTDEV,
456 htonl(br_port_get_rcu(outdev)->br->dev->ifindex)))
457 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700458 } else {
Florian Westphalc737b7c2015-04-02 14:31:41 +0200459 int physoutif;
460
Harald Weltefbcd9232005-08-09 20:22:10 -0700461 /* Case 2: outdev is bridge group, we need to look for
462 * physical output device (when called from ipv4) */
David S. Millera4471892012-03-29 23:27:38 -0400463 if (nla_put_be32(skb, NFQA_IFINDEX_OUTDEV,
464 htonl(outdev->ifindex)))
465 goto nla_put_failure;
Florian Westphalc737b7c2015-04-02 14:31:41 +0200466
467 physoutif = nf_bridge_get_physoutif(entskb);
468 if (physoutif &&
David S. Millera4471892012-03-29 23:27:38 -0400469 nla_put_be32(skb, NFQA_IFINDEX_PHYSOUTDEV,
Florian Westphalc737b7c2015-04-02 14:31:41 +0200470 htonl(physoutif)))
David S. Millera4471892012-03-29 23:27:38 -0400471 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700472 }
473#endif
Harald Welte7af4cc32005-08-09 19:44:15 -0700474 }
475
David S. Millera4471892012-03-29 23:27:38 -0400476 if (entskb->mark &&
477 nla_put_be32(skb, NFQA_MARK, htonl(entskb->mark)))
478 goto nla_put_failure;
Harald Welte7af4cc32005-08-09 19:44:15 -0700479
Nicolas Cavallari2c38de42011-06-16 17:27:04 +0200480 if (indev && entskb->dev &&
481 entskb->mac_header != entskb->network_header) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700482 struct nfqnl_msg_packet_hw phw;
Dan Carpentere4d091d2013-08-01 12:36:57 +0300483 int len;
484
485 memset(&phw, 0, sizeof(phw));
486 len = dev_parse_header(entskb, phw.hw_addr);
Stephen Hemmingerb95cce32007-09-26 22:13:38 -0700487 if (len) {
488 phw.hw_addrlen = htons(len);
David S. Millera4471892012-03-29 23:27:38 -0400489 if (nla_put(skb, NFQA_HWADDR, sizeof(phw), &phw))
490 goto nla_put_failure;
Stephen Hemmingerb95cce32007-09-26 22:13:38 -0700491 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700492 }
493
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700494 if (entskb->tstamp.tv64) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700495 struct nfqnl_msg_packet_timestamp ts;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700496 struct timeval tv = ktime_to_timeval(entskb->tstamp);
497 ts.sec = cpu_to_be64(tv.tv_sec);
498 ts.usec = cpu_to_be64(tv.tv_usec);
Harald Welte7af4cc32005-08-09 19:44:15 -0700499
David S. Millera4471892012-03-29 23:27:38 -0400500 if (nla_put(skb, NFQA_TIMESTAMP, sizeof(ts), &ts))
501 goto nla_put_failure;
Harald Welte7af4cc32005-08-09 19:44:15 -0700502 }
503
Valentina Giusti08c0cad2013-12-20 17:28:53 +0100504 if ((queue->flags & NFQA_CFG_F_UID_GID) && entskb->sk &&
505 nfqnl_put_sk_uidgid(skb, entskb->sk) < 0)
506 goto nla_put_failure;
507
Roman Kubiakef493bd2015-06-12 12:32:57 +0200508 if (seclen && nla_put(skb, NFQA_SECCTX, seclen, secdata))
509 goto nla_put_failure;
510
Pablo Neira Ayuso7c622342012-06-19 02:10:57 +0200511 if (ct && nfqnl_ct_put(skb, ct, ctinfo) < 0)
512 goto nla_put_failure;
Pablo Neira Ayuso9cb01762012-06-07 12:13:39 +0200513
Florian Westphal7f877122013-06-04 22:22:16 +0000514 if (cap_len > data_len &&
515 nla_put_be32(skb, NFQA_CAP_LEN, htonl(cap_len)))
Pablo Neira Ayuso6ee584b2012-09-24 14:52:12 +0200516 goto nla_put_failure;
517
Florian Westphal496e4ae2013-06-29 14:15:47 +0200518 if (nfqnl_put_packet_info(skb, entskb, csum_verify))
Florian Westphal72371902013-04-19 04:58:26 +0000519 goto nla_put_failure;
520
Eric Dumazetae08ce02013-03-17 17:15:55 +0000521 if (data_len) {
522 struct nlattr *nla;
523
524 if (skb_tailroom(skb) < sizeof(*nla) + hlen)
525 goto nla_put_failure;
526
527 nla = (struct nlattr *)skb_put(skb, sizeof(*nla));
528 nla->nla_type = NFQA_PAYLOAD;
529 nla->nla_len = nla_attr_size(data_len);
530
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000531 if (skb_zerocopy(skb, entskb, data_len, hlen))
532 goto nla_put_failure;
Eric Dumazetae08ce02013-03-17 17:15:55 +0000533 }
534
535 nlh->nlmsg_len = skb->len;
Harald Welte7af4cc32005-08-09 19:44:15 -0700536 return skb;
537
Patrick McHardydf6fb862007-09-28 14:37:03 -0700538nla_put_failure:
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000539 skb_tx_error(entskb);
Wei Yongjuna6729952012-08-28 03:14:15 +0000540 kfree_skb(skb);
Joe Perchese87cc472012-05-13 21:56:26 +0000541 net_err_ratelimited("nf_queue: error creating packet message\n");
Harald Welte7af4cc32005-08-09 19:44:15 -0700542 return NULL;
543}
544
545static int
Florian Westphala5fedd432013-04-19 04:58:25 +0000546__nfqnl_enqueue_packet(struct net *net, struct nfqnl_instance *queue,
547 struct nf_queue_entry *entry)
Harald Welte7af4cc32005-08-09 19:44:15 -0700548{
Harald Welte7af4cc32005-08-09 19:44:15 -0700549 struct sk_buff *nskb;
Florian Westphalf1585082011-01-18 15:27:28 +0100550 int err = -ENOBUFS;
Eric Dumazet58637022011-07-19 11:44:17 +0200551 __be32 *packet_id_ptr;
Krishna Kumarfdb694a2012-05-24 03:56:44 +0000552 int failopen = 0;
Harald Welte7af4cc32005-08-09 19:44:15 -0700553
Gao feng74332682013-09-23 19:20:55 +0800554 nskb = nfqnl_build_packet_message(net, queue, entry, &packet_id_ptr);
Florian Westphalf1585082011-01-18 15:27:28 +0100555 if (nskb == NULL) {
556 err = -ENOMEM;
Patrick McHardy0ef0f462007-12-05 01:31:01 -0800557 goto err_out;
Florian Westphalf1585082011-01-18 15:27:28 +0100558 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700559 spin_lock_bh(&queue->lock);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800560
Harald Welte7af4cc32005-08-09 19:44:15 -0700561 if (queue->queue_total >= queue->queue_maxlen) {
Krishna Kumarfdb694a2012-05-24 03:56:44 +0000562 if (queue->flags & NFQA_CFG_F_FAIL_OPEN) {
563 failopen = 1;
564 err = 0;
565 } else {
566 queue->queue_dropped++;
567 net_warn_ratelimited("nf_queue: full at %d entries, dropping packets(s)\n",
568 queue->queue_total);
569 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700570 goto err_out_free_nskb;
571 }
Eric Dumazet58637022011-07-19 11:44:17 +0200572 entry->id = ++queue->id_sequence;
573 *packet_id_ptr = htonl(entry->id);
Harald Welte7af4cc32005-08-09 19:44:15 -0700574
575 /* nfnetlink_unicast will either free the nskb or add it to a socket */
Gao fenge8179612013-03-24 23:50:47 +0000576 err = nfnetlink_unicast(nskb, net, queue->peer_portid, MSG_DONTWAIT);
Patrick McHardy0ef0f462007-12-05 01:31:01 -0800577 if (err < 0) {
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800578 queue->queue_user_dropped++;
Harald Welte7af4cc32005-08-09 19:44:15 -0700579 goto err_out_unlock;
580 }
581
582 __enqueue_entry(queue, entry);
583
584 spin_unlock_bh(&queue->lock);
Patrick McHardy0ef0f462007-12-05 01:31:01 -0800585 return 0;
Harald Welte7af4cc32005-08-09 19:44:15 -0700586
587err_out_free_nskb:
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800588 kfree_skb(nskb);
Harald Welte7af4cc32005-08-09 19:44:15 -0700589err_out_unlock:
590 spin_unlock_bh(&queue->lock);
Krishna Kumarfdb694a2012-05-24 03:56:44 +0000591 if (failopen)
592 nf_reinject(entry, NF_ACCEPT);
Patrick McHardy0ef0f462007-12-05 01:31:01 -0800593err_out:
Florian Westphalf1585082011-01-18 15:27:28 +0100594 return err;
Harald Welte7af4cc32005-08-09 19:44:15 -0700595}
596
Florian Westphala5fedd432013-04-19 04:58:25 +0000597static struct nf_queue_entry *
598nf_queue_entry_dup(struct nf_queue_entry *e)
599{
600 struct nf_queue_entry *entry = kmemdup(e, e->size, GFP_ATOMIC);
601 if (entry) {
602 if (nf_queue_entry_get_refs(entry))
603 return entry;
604 kfree(entry);
605 }
606 return NULL;
607}
608
Pablo Neira Ayuso1109a902014-10-01 11:19:17 +0200609#if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
Florian Westphala5fedd432013-04-19 04:58:25 +0000610/* When called from bridge netfilter, skb->data must point to MAC header
611 * before calling skb_gso_segment(). Else, original MAC header is lost
612 * and segmented skbs will be sent to wrong destination.
613 */
614static void nf_bridge_adjust_skb_data(struct sk_buff *skb)
615{
616 if (skb->nf_bridge)
617 __skb_push(skb, skb->network_header - skb->mac_header);
618}
619
620static void nf_bridge_adjust_segmented_data(struct sk_buff *skb)
621{
622 if (skb->nf_bridge)
623 __skb_pull(skb, skb->network_header - skb->mac_header);
624}
625#else
626#define nf_bridge_adjust_skb_data(s) do {} while (0)
627#define nf_bridge_adjust_segmented_data(s) do {} while (0)
628#endif
629
630static void free_entry(struct nf_queue_entry *entry)
631{
632 nf_queue_entry_release_refs(entry);
633 kfree(entry);
634}
635
636static int
637__nfqnl_enqueue_packet_gso(struct net *net, struct nfqnl_instance *queue,
638 struct sk_buff *skb, struct nf_queue_entry *entry)
639{
640 int ret = -ENOMEM;
641 struct nf_queue_entry *entry_seg;
642
643 nf_bridge_adjust_segmented_data(skb);
644
645 if (skb->next == NULL) { /* last packet, no need to copy entry */
646 struct sk_buff *gso_skb = entry->skb;
647 entry->skb = skb;
648 ret = __nfqnl_enqueue_packet(net, queue, entry);
649 if (ret)
650 entry->skb = gso_skb;
651 return ret;
652 }
653
654 skb->next = NULL;
655
656 entry_seg = nf_queue_entry_dup(entry);
657 if (entry_seg) {
658 entry_seg->skb = skb;
659 ret = __nfqnl_enqueue_packet(net, queue, entry_seg);
660 if (ret)
661 free_entry(entry_seg);
662 }
663 return ret;
664}
665
666static int
667nfqnl_enqueue_packet(struct nf_queue_entry *entry, unsigned int queuenum)
668{
669 unsigned int queued;
670 struct nfqnl_instance *queue;
671 struct sk_buff *skb, *segs;
672 int err = -ENOBUFS;
Eric W. Biederman9dff2c92015-09-15 20:04:17 -0500673 struct net *net = entry->state.net;
Florian Westphala5fedd432013-04-19 04:58:25 +0000674 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
675
676 /* rcu_read_lock()ed by nf_hook_slow() */
677 queue = instance_lookup(q, queuenum);
678 if (!queue)
679 return -ESRCH;
680
681 if (queue->copy_mode == NFQNL_COPY_NONE)
682 return -EINVAL;
683
Florian Westphala5fedd432013-04-19 04:58:25 +0000684 skb = entry->skb;
685
David S. Miller1d1de892015-04-03 16:31:01 -0400686 switch (entry->state.pf) {
Florian Westphala5fedd432013-04-19 04:58:25 +0000687 case NFPROTO_IPV4:
688 skb->protocol = htons(ETH_P_IP);
689 break;
690 case NFPROTO_IPV6:
691 skb->protocol = htons(ETH_P_IPV6);
692 break;
693 }
694
Pablo Neira Ayuso7b8dfe22013-06-07 18:42:00 +0200695 if ((queue->flags & NFQA_CFG_F_GSO) || !skb_is_gso(skb))
696 return __nfqnl_enqueue_packet(net, queue, entry);
697
Florian Westphala5fedd432013-04-19 04:58:25 +0000698 nf_bridge_adjust_skb_data(skb);
699 segs = skb_gso_segment(skb, 0);
700 /* Does not use PTR_ERR to limit the number of error codes that can be
701 * returned by nf_queue. For instance, callers rely on -ECANCELED to
702 * mean 'ignore this hook'.
703 */
Florian Westphal330966e2014-10-20 13:49:17 +0200704 if (IS_ERR_OR_NULL(segs))
Florian Westphala5fedd432013-04-19 04:58:25 +0000705 goto out_err;
706 queued = 0;
707 err = 0;
708 do {
709 struct sk_buff *nskb = segs->next;
710 if (err == 0)
711 err = __nfqnl_enqueue_packet_gso(net, queue,
712 segs, entry);
713 if (err == 0)
714 queued++;
715 else
716 kfree_skb(segs);
717 segs = nskb;
718 } while (segs);
719
720 if (queued) {
721 if (err) /* some segments are already queued */
722 free_entry(entry);
723 kfree_skb(skb);
724 return 0;
725 }
726 out_err:
727 nf_bridge_adjust_segmented_data(skb);
728 return err;
729}
730
Harald Welte7af4cc32005-08-09 19:44:15 -0700731static int
Pablo Neira Ayuso8c88f872012-06-07 13:31:25 +0200732nfqnl_mangle(void *data, int data_len, struct nf_queue_entry *e, int diff)
Harald Welte7af4cc32005-08-09 19:44:15 -0700733{
Patrick McHardye2b58a62008-02-19 17:17:52 -0800734 struct sk_buff *nskb;
Harald Welte7af4cc32005-08-09 19:44:15 -0700735
Patrick McHardyd8a585d2006-11-14 19:48:09 -0800736 if (diff < 0) {
737 if (pskb_trim(e->skb, data_len))
738 return -ENOMEM;
739 } else if (diff > 0) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700740 if (data_len > 0xFFFF)
741 return -EINVAL;
742 if (diff > skb_tailroom(e->skb)) {
Arnaud Ebalard9a732ed2008-04-29 03:16:34 -0700743 nskb = skb_copy_expand(e->skb, skb_headroom(e->skb),
744 diff, GFP_ATOMIC);
Patrick McHardye2b58a62008-02-19 17:17:52 -0800745 if (!nskb) {
Patrick McHardy1158ba22006-08-22 00:32:47 -0700746 printk(KERN_WARNING "nf_queue: OOM "
Harald Welte7af4cc32005-08-09 19:44:15 -0700747 "in mangle, dropping packet\n");
Patrick McHardye2b58a62008-02-19 17:17:52 -0800748 return -ENOMEM;
Harald Welte7af4cc32005-08-09 19:44:15 -0700749 }
Patrick McHardye2b58a62008-02-19 17:17:52 -0800750 kfree_skb(e->skb);
751 e->skb = nskb;
Harald Welte7af4cc32005-08-09 19:44:15 -0700752 }
753 skb_put(e->skb, diff);
754 }
Herbert Xu37d41872007-10-14 00:39:18 -0700755 if (!skb_make_writable(e->skb, data_len))
Harald Welte7af4cc32005-08-09 19:44:15 -0700756 return -ENOMEM;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300757 skb_copy_to_linear_data(e->skb, data, data_len);
Patrick McHardye7dfb092005-09-06 15:10:00 -0700758 e->skb->ip_summed = CHECKSUM_NONE;
Harald Welte7af4cc32005-08-09 19:44:15 -0700759 return 0;
760}
761
Harald Welte7af4cc32005-08-09 19:44:15 -0700762static int
763nfqnl_set_mode(struct nfqnl_instance *queue,
764 unsigned char mode, unsigned int range)
765{
Patrick McHardyc5de0df2007-12-05 01:29:05 -0800766 int status = 0;
Harald Welte7af4cc32005-08-09 19:44:15 -0700767
768 spin_lock_bh(&queue->lock);
Patrick McHardyc5de0df2007-12-05 01:29:05 -0800769 switch (mode) {
770 case NFQNL_COPY_NONE:
771 case NFQNL_COPY_META:
772 queue->copy_mode = mode;
773 queue->copy_range = 0;
774 break;
775
776 case NFQNL_COPY_PACKET:
777 queue->copy_mode = mode;
Florian Westphal9cefbbc2013-06-04 22:22:15 +0000778 if (range == 0 || range > NFQNL_MAX_COPY_RANGE)
779 queue->copy_range = NFQNL_MAX_COPY_RANGE;
Patrick McHardyc5de0df2007-12-05 01:29:05 -0800780 else
781 queue->copy_range = range;
782 break;
783
784 default:
785 status = -EINVAL;
786
787 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700788 spin_unlock_bh(&queue->lock);
789
790 return status;
791}
792
793static int
Patrick McHardy02f014d2007-12-05 01:26:33 -0800794dev_cmp(struct nf_queue_entry *entry, unsigned long ifindex)
Harald Welte7af4cc32005-08-09 19:44:15 -0700795{
David S. Miller1d1de892015-04-03 16:31:01 -0400796 if (entry->state.in)
797 if (entry->state.in->ifindex == ifindex)
Harald Welte7af4cc32005-08-09 19:44:15 -0700798 return 1;
David S. Miller1d1de892015-04-03 16:31:01 -0400799 if (entry->state.out)
800 if (entry->state.out->ifindex == ifindex)
Harald Welte7af4cc32005-08-09 19:44:15 -0700801 return 1;
Pablo Neira Ayuso1109a902014-10-01 11:19:17 +0200802#if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
Patrick McHardyef47c6a72006-06-27 03:01:48 -0700803 if (entry->skb->nf_bridge) {
Florian Westphalc737b7c2015-04-02 14:31:41 +0200804 int physinif, physoutif;
805
806 physinif = nf_bridge_get_physinif(entry->skb);
807 physoutif = nf_bridge_get_physoutif(entry->skb);
808
809 if (physinif == ifindex || physoutif == ifindex)
Patrick McHardyef47c6a72006-06-27 03:01:48 -0700810 return 1;
811 }
812#endif
Harald Welte7af4cc32005-08-09 19:44:15 -0700813 return 0;
814}
815
816/* drop all packets with either indev or outdev == ifindex from all queue
817 * instances */
818static void
Gao fenge8179612013-03-24 23:50:47 +0000819nfqnl_dev_drop(struct net *net, int ifindex)
Harald Welte7af4cc32005-08-09 19:44:15 -0700820{
821 int i;
Gao fenge8179612013-03-24 23:50:47 +0000822 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800823
Patrick McHardy9872bec2007-12-05 01:28:50 -0800824 rcu_read_lock();
Harald Welte7af4cc32005-08-09 19:44:15 -0700825
Patrick McHardy9872bec2007-12-05 01:28:50 -0800826 for (i = 0; i < INSTANCE_BUCKETS; i++) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700827 struct nfqnl_instance *inst;
Gao fenge8179612013-03-24 23:50:47 +0000828 struct hlist_head *head = &q->instance_table[i];
Harald Welte7af4cc32005-08-09 19:44:15 -0700829
Sasha Levinb67bfe02013-02-27 17:06:00 -0800830 hlist_for_each_entry_rcu(inst, head, hlist)
Patrick McHardyb43d8d82007-12-05 01:25:30 -0800831 nfqnl_flush(inst, dev_cmp, ifindex);
Harald Welte7af4cc32005-08-09 19:44:15 -0700832 }
833
Patrick McHardy9872bec2007-12-05 01:28:50 -0800834 rcu_read_unlock();
Harald Welte7af4cc32005-08-09 19:44:15 -0700835}
836
Harald Welte7af4cc32005-08-09 19:44:15 -0700837static int
838nfqnl_rcv_dev_event(struct notifier_block *this,
839 unsigned long event, void *ptr)
840{
Jiri Pirko351638e2013-05-28 01:30:21 +0000841 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Harald Welte7af4cc32005-08-09 19:44:15 -0700842
843 /* Drop any packets associated with the downed device */
844 if (event == NETDEV_DOWN)
Gao fenge8179612013-03-24 23:50:47 +0000845 nfqnl_dev_drop(dev_net(dev), dev->ifindex);
Harald Welte7af4cc32005-08-09 19:44:15 -0700846 return NOTIFY_DONE;
847}
848
849static struct notifier_block nfqnl_dev_notifier = {
850 .notifier_call = nfqnl_rcv_dev_event,
851};
852
Eric W. Biederman8405a8f2015-06-19 14:03:39 -0500853static int nf_hook_cmp(struct nf_queue_entry *entry, unsigned long ops_ptr)
854{
855 return entry->elem == (struct nf_hook_ops *)ops_ptr;
856}
857
858static void nfqnl_nf_hook_drop(struct net *net, struct nf_hook_ops *hook)
859{
860 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
861 int i;
862
863 rcu_read_lock();
864 for (i = 0; i < INSTANCE_BUCKETS; i++) {
865 struct nfqnl_instance *inst;
866 struct hlist_head *head = &q->instance_table[i];
867
868 hlist_for_each_entry_rcu(inst, head, hlist)
869 nfqnl_flush(inst, nf_hook_cmp, (unsigned long)hook);
870 }
871 rcu_read_unlock();
872}
873
Harald Welte7af4cc32005-08-09 19:44:15 -0700874static int
875nfqnl_rcv_nl_event(struct notifier_block *this,
876 unsigned long event, void *ptr)
877{
878 struct netlink_notify *n = ptr;
Gao fenge8179612013-03-24 23:50:47 +0000879 struct nfnl_queue_net *q = nfnl_queue_pernet(n->net);
Harald Welte7af4cc32005-08-09 19:44:15 -0700880
Patrick McHardydee58172009-11-06 17:04:00 +0100881 if (event == NETLINK_URELEASE && n->protocol == NETLINK_NETFILTER) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700882 int i;
883
Eric W. Biederman15e47302012-09-07 20:12:54 +0000884 /* destroy all instances for this portid */
Gao fenge8179612013-03-24 23:50:47 +0000885 spin_lock(&q->instances_lock);
Patrick McHardy9872bec2007-12-05 01:28:50 -0800886 for (i = 0; i < INSTANCE_BUCKETS; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800887 struct hlist_node *t2;
Harald Welte7af4cc32005-08-09 19:44:15 -0700888 struct nfqnl_instance *inst;
Gao fenge8179612013-03-24 23:50:47 +0000889 struct hlist_head *head = &q->instance_table[i];
Harald Welte7af4cc32005-08-09 19:44:15 -0700890
Sasha Levinb67bfe02013-02-27 17:06:00 -0800891 hlist_for_each_entry_safe(inst, t2, head, hlist) {
Gao fenge8179612013-03-24 23:50:47 +0000892 if (n->portid == inst->peer_portid)
Harald Welte7af4cc32005-08-09 19:44:15 -0700893 __instance_destroy(inst);
894 }
895 }
Gao fenge8179612013-03-24 23:50:47 +0000896 spin_unlock(&q->instances_lock);
Harald Welte7af4cc32005-08-09 19:44:15 -0700897 }
898 return NOTIFY_DONE;
899}
900
901static struct notifier_block nfqnl_rtnl_notifier = {
902 .notifier_call = nfqnl_rcv_nl_event,
903};
904
Patrick McHardy5bf75852007-09-28 14:39:26 -0700905static const struct nla_policy nfqa_verdict_policy[NFQA_MAX+1] = {
906 [NFQA_VERDICT_HDR] = { .len = sizeof(struct nfqnl_msg_verdict_hdr) },
907 [NFQA_MARK] = { .type = NLA_U32 },
908 [NFQA_PAYLOAD] = { .type = NLA_UNSPEC },
Pablo Neira Ayuso9cb01762012-06-07 12:13:39 +0200909 [NFQA_CT] = { .type = NLA_UNSPEC },
Pablo Neira Ayusobd077932013-08-07 18:13:20 +0200910 [NFQA_EXP] = { .type = NLA_UNSPEC },
Harald Welte838ab632005-08-09 19:50:45 -0700911};
912
Florian Westphal97d32cf2011-07-19 11:46:33 +0200913static const struct nla_policy nfqa_verdict_batch_policy[NFQA_MAX+1] = {
914 [NFQA_VERDICT_HDR] = { .len = sizeof(struct nfqnl_msg_verdict_hdr) },
915 [NFQA_MARK] = { .type = NLA_U32 },
916};
917
Gao fenge8179612013-03-24 23:50:47 +0000918static struct nfqnl_instance *
Richard Weinbergercc6bc442015-04-13 00:52:37 +0200919verdict_instance_lookup(struct nfnl_queue_net *q, u16 queue_num, u32 nlportid)
Florian Westphal97d32cf2011-07-19 11:46:33 +0200920{
921 struct nfqnl_instance *queue;
922
Gao fenge8179612013-03-24 23:50:47 +0000923 queue = instance_lookup(q, queue_num);
Florian Westphal97d32cf2011-07-19 11:46:33 +0200924 if (!queue)
925 return ERR_PTR(-ENODEV);
926
Eric W. Biederman15e47302012-09-07 20:12:54 +0000927 if (queue->peer_portid != nlportid)
Florian Westphal97d32cf2011-07-19 11:46:33 +0200928 return ERR_PTR(-EPERM);
929
930 return queue;
931}
932
933static struct nfqnl_msg_verdict_hdr*
934verdicthdr_get(const struct nlattr * const nfqa[])
935{
936 struct nfqnl_msg_verdict_hdr *vhdr;
937 unsigned int verdict;
938
939 if (!nfqa[NFQA_VERDICT_HDR])
940 return NULL;
941
942 vhdr = nla_data(nfqa[NFQA_VERDICT_HDR]);
Florian Westphalc6675232011-08-30 15:01:20 +0200943 verdict = ntohl(vhdr->verdict) & NF_VERDICT_MASK;
944 if (verdict > NF_MAX_VERDICT || verdict == NF_STOLEN)
Florian Westphal97d32cf2011-07-19 11:46:33 +0200945 return NULL;
946 return vhdr;
947}
948
949static int nfq_id_after(unsigned int id, unsigned int max)
950{
951 return (int)(id - max) > 0;
952}
953
954static int
955nfqnl_recv_verdict_batch(struct sock *ctnl, struct sk_buff *skb,
956 const struct nlmsghdr *nlh,
957 const struct nlattr * const nfqa[])
958{
David S. Miller3da07c02012-06-26 21:35:27 -0700959 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
Florian Westphal97d32cf2011-07-19 11:46:33 +0200960 struct nf_queue_entry *entry, *tmp;
961 unsigned int verdict, maxid;
962 struct nfqnl_msg_verdict_hdr *vhdr;
963 struct nfqnl_instance *queue;
964 LIST_HEAD(batch_list);
965 u16 queue_num = ntohs(nfmsg->res_id);
966
Gao fenge8179612013-03-24 23:50:47 +0000967 struct net *net = sock_net(ctnl);
968 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
969
970 queue = verdict_instance_lookup(q, queue_num,
971 NETLINK_CB(skb).portid);
Florian Westphal97d32cf2011-07-19 11:46:33 +0200972 if (IS_ERR(queue))
973 return PTR_ERR(queue);
974
975 vhdr = verdicthdr_get(nfqa);
976 if (!vhdr)
977 return -EINVAL;
978
979 verdict = ntohl(vhdr->verdict);
980 maxid = ntohl(vhdr->id);
981
982 spin_lock_bh(&queue->lock);
983
984 list_for_each_entry_safe(entry, tmp, &queue->queue_list, list) {
985 if (nfq_id_after(entry->id, maxid))
986 break;
987 __dequeue_entry(queue, entry);
988 list_add_tail(&entry->list, &batch_list);
989 }
990
991 spin_unlock_bh(&queue->lock);
992
993 if (list_empty(&batch_list))
994 return -ENOENT;
995
996 list_for_each_entry_safe(entry, tmp, &batch_list, list) {
997 if (nfqa[NFQA_MARK])
998 entry->skb->mark = ntohl(nla_get_be32(nfqa[NFQA_MARK]));
999 nf_reinject(entry, verdict);
1000 }
1001 return 0;
1002}
1003
Harald Welte7af4cc32005-08-09 19:44:15 -07001004static int
1005nfqnl_recv_verdict(struct sock *ctnl, struct sk_buff *skb,
Patrick McHardy39938322009-08-25 16:07:58 +02001006 const struct nlmsghdr *nlh,
1007 const struct nlattr * const nfqa[])
Harald Welte7af4cc32005-08-09 19:44:15 -07001008{
David S. Miller3da07c02012-06-26 21:35:27 -07001009 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
Harald Welte7af4cc32005-08-09 19:44:15 -07001010 u_int16_t queue_num = ntohs(nfmsg->res_id);
1011
1012 struct nfqnl_msg_verdict_hdr *vhdr;
1013 struct nfqnl_instance *queue;
1014 unsigned int verdict;
Patrick McHardy02f014d2007-12-05 01:26:33 -08001015 struct nf_queue_entry *entry;
Pablo Neira Ayuso8c88f872012-06-07 13:31:25 +02001016 enum ip_conntrack_info uninitialized_var(ctinfo);
1017 struct nf_conn *ct = NULL;
Harald Welte7af4cc32005-08-09 19:44:15 -07001018
Gao fenge8179612013-03-24 23:50:47 +00001019 struct net *net = sock_net(ctnl);
1020 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
Harald Welte7af4cc32005-08-09 19:44:15 -07001021
Gao fenge8179612013-03-24 23:50:47 +00001022 queue = instance_lookup(q, queue_num);
1023 if (!queue)
1024 queue = verdict_instance_lookup(q, queue_num,
1025 NETLINK_CB(skb).portid);
Florian Westphal97d32cf2011-07-19 11:46:33 +02001026 if (IS_ERR(queue))
1027 return PTR_ERR(queue);
Harald Welte7af4cc32005-08-09 19:44:15 -07001028
Florian Westphal97d32cf2011-07-19 11:46:33 +02001029 vhdr = verdicthdr_get(nfqa);
1030 if (!vhdr)
Eric Dumazet84a797d2011-07-18 16:08:27 +02001031 return -EINVAL;
Harald Welte7af4cc32005-08-09 19:44:15 -07001032
Harald Welte7af4cc32005-08-09 19:44:15 -07001033 verdict = ntohl(vhdr->verdict);
1034
Patrick McHardyb43d8d82007-12-05 01:25:30 -08001035 entry = find_dequeue_entry(queue, ntohl(vhdr->id));
Eric Dumazet84a797d2011-07-18 16:08:27 +02001036 if (entry == NULL)
1037 return -ENOENT;
Harald Welte7af4cc32005-08-09 19:44:15 -07001038
Pablo Neira Ayusobd077932013-08-07 18:13:20 +02001039 if (nfqa[NFQA_CT]) {
Pablo Neira Ayuso7c622342012-06-19 02:10:57 +02001040 ct = nfqnl_ct_parse(entry->skb, nfqa[NFQA_CT], &ctinfo);
Pablo Neira Ayusobd077932013-08-07 18:13:20 +02001041 if (ct && nfqa[NFQA_EXP]) {
1042 nfqnl_attach_expect(ct, nfqa[NFQA_EXP],
1043 NETLINK_CB(skb).portid,
1044 nlmsg_report(nlh));
1045 }
1046 }
Pablo Neira Ayuso9cb01762012-06-07 12:13:39 +02001047
Patrick McHardydf6fb862007-09-28 14:37:03 -07001048 if (nfqa[NFQA_PAYLOAD]) {
Pablo Neira Ayuso8c88f872012-06-07 13:31:25 +02001049 u16 payload_len = nla_len(nfqa[NFQA_PAYLOAD]);
1050 int diff = payload_len - entry->skb->len;
1051
Patrick McHardydf6fb862007-09-28 14:37:03 -07001052 if (nfqnl_mangle(nla_data(nfqa[NFQA_PAYLOAD]),
Pablo Neira Ayuso8c88f872012-06-07 13:31:25 +02001053 payload_len, entry, diff) < 0)
Harald Welte7af4cc32005-08-09 19:44:15 -07001054 verdict = NF_DROP;
Pablo Neira Ayuso8c88f872012-06-07 13:31:25 +02001055
Pablo Neira Ayuso7c622342012-06-19 02:10:57 +02001056 if (ct)
Gao feng0a0d80e2013-09-17 13:03:47 +02001057 nfqnl_ct_seq_adjust(entry->skb, ct, ctinfo, diff);
Harald Welte7af4cc32005-08-09 19:44:15 -07001058 }
1059
Patrick McHardydf6fb862007-09-28 14:37:03 -07001060 if (nfqa[NFQA_MARK])
Patrick McHardyea3a66f2007-12-05 01:30:02 -08001061 entry->skb->mark = ntohl(nla_get_be32(nfqa[NFQA_MARK]));
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001062
Patrick McHardy4b3d15e2007-12-05 01:27:02 -08001063 nf_reinject(entry, verdict);
Harald Welte7af4cc32005-08-09 19:44:15 -07001064 return 0;
1065}
1066
1067static int
1068nfqnl_recv_unsupp(struct sock *ctnl, struct sk_buff *skb,
Patrick McHardy39938322009-08-25 16:07:58 +02001069 const struct nlmsghdr *nlh,
1070 const struct nlattr * const nfqa[])
Harald Welte7af4cc32005-08-09 19:44:15 -07001071{
1072 return -ENOTSUPP;
1073}
1074
Patrick McHardy5bf75852007-09-28 14:39:26 -07001075static const struct nla_policy nfqa_cfg_policy[NFQA_CFG_MAX+1] = {
1076 [NFQA_CFG_CMD] = { .len = sizeof(struct nfqnl_msg_config_cmd) },
1077 [NFQA_CFG_PARAMS] = { .len = sizeof(struct nfqnl_msg_config_params) },
Harald Welte838ab632005-08-09 19:50:45 -07001078};
1079
Patrick McHardye3ac5292007-12-05 01:23:57 -08001080static const struct nf_queue_handler nfqh = {
Eric W. Biederman8405a8f2015-06-19 14:03:39 -05001081 .outfn = &nfqnl_enqueue_packet,
1082 .nf_hook_drop = &nfqnl_nf_hook_drop,
Harald Weltebbd86b9f2005-08-09 20:23:11 -07001083};
1084
Harald Welte7af4cc32005-08-09 19:44:15 -07001085static int
1086nfqnl_recv_config(struct sock *ctnl, struct sk_buff *skb,
Patrick McHardy39938322009-08-25 16:07:58 +02001087 const struct nlmsghdr *nlh,
1088 const struct nlattr * const nfqa[])
Harald Welte7af4cc32005-08-09 19:44:15 -07001089{
David S. Miller3da07c02012-06-26 21:35:27 -07001090 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
Harald Welte7af4cc32005-08-09 19:44:15 -07001091 u_int16_t queue_num = ntohs(nfmsg->res_id);
1092 struct nfqnl_instance *queue;
Patrick McHardy9872bec2007-12-05 01:28:50 -08001093 struct nfqnl_msg_config_cmd *cmd = NULL;
Gao fenge8179612013-03-24 23:50:47 +00001094 struct net *net = sock_net(ctnl);
1095 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
Harald Welte838ab632005-08-09 19:50:45 -07001096 int ret = 0;
Harald Welte7af4cc32005-08-09 19:44:15 -07001097
Patrick McHardy9872bec2007-12-05 01:28:50 -08001098 if (nfqa[NFQA_CFG_CMD]) {
1099 cmd = nla_data(nfqa[NFQA_CFG_CMD]);
1100
Florian Westphal0360ae42012-11-23 06:22:21 +00001101 /* Obsolete commands without queue context */
Patrick McHardy9872bec2007-12-05 01:28:50 -08001102 switch (cmd->command) {
Florian Westphal0360ae42012-11-23 06:22:21 +00001103 case NFQNL_CFG_CMD_PF_BIND: return 0;
1104 case NFQNL_CFG_CMD_PF_UNBIND: return 0;
Patrick McHardy9872bec2007-12-05 01:28:50 -08001105 }
Patrick McHardya3c8e7fd2007-12-05 01:28:30 -08001106 }
1107
Patrick McHardy9872bec2007-12-05 01:28:50 -08001108 rcu_read_lock();
Gao fenge8179612013-03-24 23:50:47 +00001109 queue = instance_lookup(q, queue_num);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001110 if (queue && queue->peer_portid != NETLINK_CB(skb).portid) {
Patrick McHardy9872bec2007-12-05 01:28:50 -08001111 ret = -EPERM;
1112 goto err_out_unlock;
1113 }
Patrick McHardya3c8e7fd2007-12-05 01:28:30 -08001114
Patrick McHardy9872bec2007-12-05 01:28:50 -08001115 if (cmd != NULL) {
Harald Welte7af4cc32005-08-09 19:44:15 -07001116 switch (cmd->command) {
1117 case NFQNL_CFG_CMD_BIND:
Patrick McHardy9872bec2007-12-05 01:28:50 -08001118 if (queue) {
1119 ret = -EBUSY;
1120 goto err_out_unlock;
1121 }
Gao fenge8179612013-03-24 23:50:47 +00001122 queue = instance_create(q, queue_num,
1123 NETLINK_CB(skb).portid);
Patrick McHardybaab2ce2007-12-17 22:41:21 -08001124 if (IS_ERR(queue)) {
1125 ret = PTR_ERR(queue);
Patrick McHardy9872bec2007-12-05 01:28:50 -08001126 goto err_out_unlock;
1127 }
Harald Welte7af4cc32005-08-09 19:44:15 -07001128 break;
1129 case NFQNL_CFG_CMD_UNBIND:
Patrick McHardy9872bec2007-12-05 01:28:50 -08001130 if (!queue) {
1131 ret = -ENODEV;
1132 goto err_out_unlock;
1133 }
Gao fenge8179612013-03-24 23:50:47 +00001134 instance_destroy(q, queue);
Harald Welte7af4cc32005-08-09 19:44:15 -07001135 break;
1136 case NFQNL_CFG_CMD_PF_BIND:
Harald Welte7af4cc32005-08-09 19:44:15 -07001137 case NFQNL_CFG_CMD_PF_UNBIND:
Harald Welte7af4cc32005-08-09 19:44:15 -07001138 break;
1139 default:
Patrick McHardycd21f0a2007-12-17 22:40:19 -08001140 ret = -ENOTSUPP;
Harald Welte838ab632005-08-09 19:50:45 -07001141 break;
Harald Welte7af4cc32005-08-09 19:44:15 -07001142 }
Harald Welte7af4cc32005-08-09 19:44:15 -07001143 }
1144
Patrick McHardydf6fb862007-09-28 14:37:03 -07001145 if (nfqa[NFQA_CFG_PARAMS]) {
Harald Welte7af4cc32005-08-09 19:44:15 -07001146 struct nfqnl_msg_config_params *params;
Harald Welte7af4cc32005-08-09 19:44:15 -07001147
Patrick McHardy406dbfc2006-03-12 20:32:47 -08001148 if (!queue) {
Patrick McHardya3c8e7fd2007-12-05 01:28:30 -08001149 ret = -ENODEV;
Patrick McHardy9872bec2007-12-05 01:28:50 -08001150 goto err_out_unlock;
Patrick McHardy406dbfc2006-03-12 20:32:47 -08001151 }
Patrick McHardydf6fb862007-09-28 14:37:03 -07001152 params = nla_data(nfqa[NFQA_CFG_PARAMS]);
Harald Welte7af4cc32005-08-09 19:44:15 -07001153 nfqnl_set_mode(queue, params->copy_mode,
1154 ntohl(params->copy_range));
1155 }
1156
Patrick McHardydf6fb862007-09-28 14:37:03 -07001157 if (nfqa[NFQA_CFG_QUEUE_MAXLEN]) {
Eric Leblond829e17a2006-11-29 02:35:33 +01001158 __be32 *queue_maxlen;
Patrick McHardya3c8e7fd2007-12-05 01:28:30 -08001159
1160 if (!queue) {
1161 ret = -ENODEV;
Patrick McHardy9872bec2007-12-05 01:28:50 -08001162 goto err_out_unlock;
Patrick McHardya3c8e7fd2007-12-05 01:28:30 -08001163 }
Patrick McHardydf6fb862007-09-28 14:37:03 -07001164 queue_maxlen = nla_data(nfqa[NFQA_CFG_QUEUE_MAXLEN]);
Eric Leblond829e17a2006-11-29 02:35:33 +01001165 spin_lock_bh(&queue->lock);
1166 queue->queue_maxlen = ntohl(*queue_maxlen);
1167 spin_unlock_bh(&queue->lock);
1168 }
1169
Krishna Kumarfdb694a2012-05-24 03:56:44 +00001170 if (nfqa[NFQA_CFG_FLAGS]) {
1171 __u32 flags, mask;
1172
1173 if (!queue) {
1174 ret = -ENODEV;
1175 goto err_out_unlock;
1176 }
1177
1178 if (!nfqa[NFQA_CFG_MASK]) {
1179 /* A mask is needed to specify which flags are being
1180 * changed.
1181 */
1182 ret = -EINVAL;
1183 goto err_out_unlock;
1184 }
1185
1186 flags = ntohl(nla_get_be32(nfqa[NFQA_CFG_FLAGS]));
1187 mask = ntohl(nla_get_be32(nfqa[NFQA_CFG_MASK]));
1188
Krishna Kumar46ba5a22012-06-27 00:59:56 +00001189 if (flags >= NFQA_CFG_F_MAX) {
1190 ret = -EOPNOTSUPP;
1191 goto err_out_unlock;
1192 }
Roman Kubiakef493bd2015-06-12 12:32:57 +02001193#if !IS_ENABLED(CONFIG_NETWORK_SECMARK)
1194 if (flags & mask & NFQA_CFG_F_SECCTX) {
1195 ret = -EOPNOTSUPP;
1196 goto err_out_unlock;
1197 }
1198#endif
Krishna Kumarfdb694a2012-05-24 03:56:44 +00001199 spin_lock_bh(&queue->lock);
1200 queue->flags &= ~mask;
1201 queue->flags |= flags & mask;
1202 spin_unlock_bh(&queue->lock);
1203 }
1204
Patrick McHardy9872bec2007-12-05 01:28:50 -08001205err_out_unlock:
1206 rcu_read_unlock();
Harald Welte838ab632005-08-09 19:50:45 -07001207 return ret;
Harald Welte7af4cc32005-08-09 19:44:15 -07001208}
1209
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -07001210static const struct nfnl_callback nfqnl_cb[NFQNL_MSG_MAX] = {
Eric Dumazet84a797d2011-07-18 16:08:27 +02001211 [NFQNL_MSG_PACKET] = { .call_rcu = nfqnl_recv_unsupp,
Harald Welte37d2e7a2005-11-14 15:24:59 -08001212 .attr_count = NFQA_MAX, },
Eric Dumazet84a797d2011-07-18 16:08:27 +02001213 [NFQNL_MSG_VERDICT] = { .call_rcu = nfqnl_recv_verdict,
Patrick McHardy5bf75852007-09-28 14:39:26 -07001214 .attr_count = NFQA_MAX,
1215 .policy = nfqa_verdict_policy },
Harald Welte7af4cc32005-08-09 19:44:15 -07001216 [NFQNL_MSG_CONFIG] = { .call = nfqnl_recv_config,
Patrick McHardy5bf75852007-09-28 14:39:26 -07001217 .attr_count = NFQA_CFG_MAX,
1218 .policy = nfqa_cfg_policy },
Florian Westphal97d32cf2011-07-19 11:46:33 +02001219 [NFQNL_MSG_VERDICT_BATCH]={ .call_rcu = nfqnl_recv_verdict_batch,
1220 .attr_count = NFQA_MAX,
1221 .policy = nfqa_verdict_batch_policy },
Harald Welte7af4cc32005-08-09 19:44:15 -07001222};
1223
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -07001224static const struct nfnetlink_subsystem nfqnl_subsys = {
Harald Welte7af4cc32005-08-09 19:44:15 -07001225 .name = "nf_queue",
1226 .subsys_id = NFNL_SUBSYS_QUEUE,
1227 .cb_count = NFQNL_MSG_MAX,
Harald Welte7af4cc32005-08-09 19:44:15 -07001228 .cb = nfqnl_cb,
1229};
1230
Harald Welte838ab632005-08-09 19:50:45 -07001231#ifdef CONFIG_PROC_FS
1232struct iter_state {
Gao fenge8179612013-03-24 23:50:47 +00001233 struct seq_net_private p;
Harald Welte838ab632005-08-09 19:50:45 -07001234 unsigned int bucket;
1235};
1236
1237static struct hlist_node *get_first(struct seq_file *seq)
1238{
1239 struct iter_state *st = seq->private;
Gao fenge8179612013-03-24 23:50:47 +00001240 struct net *net;
1241 struct nfnl_queue_net *q;
Harald Welte838ab632005-08-09 19:50:45 -07001242
1243 if (!st)
1244 return NULL;
1245
Gao fenge8179612013-03-24 23:50:47 +00001246 net = seq_file_net(seq);
1247 q = nfnl_queue_pernet(net);
Harald Welte838ab632005-08-09 19:50:45 -07001248 for (st->bucket = 0; st->bucket < INSTANCE_BUCKETS; st->bucket++) {
Gao fenge8179612013-03-24 23:50:47 +00001249 if (!hlist_empty(&q->instance_table[st->bucket]))
1250 return q->instance_table[st->bucket].first;
Harald Welte838ab632005-08-09 19:50:45 -07001251 }
1252 return NULL;
1253}
1254
1255static struct hlist_node *get_next(struct seq_file *seq, struct hlist_node *h)
1256{
1257 struct iter_state *st = seq->private;
Gao fenge8179612013-03-24 23:50:47 +00001258 struct net *net = seq_file_net(seq);
Harald Welte838ab632005-08-09 19:50:45 -07001259
1260 h = h->next;
1261 while (!h) {
Gao fenge8179612013-03-24 23:50:47 +00001262 struct nfnl_queue_net *q;
1263
Harald Welte838ab632005-08-09 19:50:45 -07001264 if (++st->bucket >= INSTANCE_BUCKETS)
1265 return NULL;
1266
Gao fenge8179612013-03-24 23:50:47 +00001267 q = nfnl_queue_pernet(net);
1268 h = q->instance_table[st->bucket].first;
Harald Welte838ab632005-08-09 19:50:45 -07001269 }
1270 return h;
1271}
1272
1273static struct hlist_node *get_idx(struct seq_file *seq, loff_t pos)
1274{
1275 struct hlist_node *head;
1276 head = get_first(seq);
1277
1278 if (head)
1279 while (pos && (head = get_next(seq, head)))
1280 pos--;
1281 return pos ? NULL : head;
1282}
1283
Gao fenge8179612013-03-24 23:50:47 +00001284static void *seq_start(struct seq_file *s, loff_t *pos)
1285 __acquires(nfnl_queue_pernet(seq_file_net(s))->instances_lock)
Harald Welte838ab632005-08-09 19:50:45 -07001286{
Gao fenge8179612013-03-24 23:50:47 +00001287 spin_lock(&nfnl_queue_pernet(seq_file_net(s))->instances_lock);
1288 return get_idx(s, *pos);
Harald Welte838ab632005-08-09 19:50:45 -07001289}
1290
1291static void *seq_next(struct seq_file *s, void *v, loff_t *pos)
1292{
1293 (*pos)++;
1294 return get_next(s, v);
1295}
1296
1297static void seq_stop(struct seq_file *s, void *v)
Gao fenge8179612013-03-24 23:50:47 +00001298 __releases(nfnl_queue_pernet(seq_file_net(s))->instances_lock)
Harald Welte838ab632005-08-09 19:50:45 -07001299{
Gao fenge8179612013-03-24 23:50:47 +00001300 spin_unlock(&nfnl_queue_pernet(seq_file_net(s))->instances_lock);
Harald Welte838ab632005-08-09 19:50:45 -07001301}
1302
1303static int seq_show(struct seq_file *s, void *v)
1304{
1305 const struct nfqnl_instance *inst = v;
1306
Richard Weinberger6b46f7b2015-04-13 00:52:38 +02001307 seq_printf(s, "%5u %6u %5u %1u %5u %5u %5u %8u %2d\n",
Steven Rostedt (Red Hat)e71456a2014-10-27 17:43:45 -04001308 inst->queue_num,
1309 inst->peer_portid, inst->queue_total,
1310 inst->copy_mode, inst->copy_range,
1311 inst->queue_dropped, inst->queue_user_dropped,
1312 inst->id_sequence, 1);
Joe Perches861fb102015-05-12 18:28:23 -07001313 return 0;
Harald Welte838ab632005-08-09 19:50:45 -07001314}
1315
Philippe De Muyter56b3d972007-07-10 23:07:31 -07001316static const struct seq_operations nfqnl_seq_ops = {
Harald Welte838ab632005-08-09 19:50:45 -07001317 .start = seq_start,
1318 .next = seq_next,
1319 .stop = seq_stop,
1320 .show = seq_show,
1321};
1322
1323static int nfqnl_open(struct inode *inode, struct file *file)
1324{
Gao fenge8179612013-03-24 23:50:47 +00001325 return seq_open_net(inode, file, &nfqnl_seq_ops,
Pavel Emelyanove2da5912007-10-10 02:29:58 -07001326 sizeof(struct iter_state));
Harald Welte838ab632005-08-09 19:50:45 -07001327}
1328
Arjan van de Venda7071d2007-02-12 00:55:36 -08001329static const struct file_operations nfqnl_file_ops = {
Harald Welte838ab632005-08-09 19:50:45 -07001330 .owner = THIS_MODULE,
1331 .open = nfqnl_open,
1332 .read = seq_read,
1333 .llseek = seq_lseek,
Gao fenge8179612013-03-24 23:50:47 +00001334 .release = seq_release_net,
Harald Welte838ab632005-08-09 19:50:45 -07001335};
1336
1337#endif /* PROC_FS */
1338
Gao fenge8179612013-03-24 23:50:47 +00001339static int __net_init nfnl_queue_net_init(struct net *net)
Harald Welte7af4cc32005-08-09 19:44:15 -07001340{
Gao fenge8179612013-03-24 23:50:47 +00001341 unsigned int i;
1342 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001343
Harald Welte838ab632005-08-09 19:50:45 -07001344 for (i = 0; i < INSTANCE_BUCKETS; i++)
Gao fenge8179612013-03-24 23:50:47 +00001345 INIT_HLIST_HEAD(&q->instance_table[i]);
1346
1347 spin_lock_init(&q->instances_lock);
1348
1349#ifdef CONFIG_PROC_FS
1350 if (!proc_create("nfnetlink_queue", 0440,
1351 net->nf.proc_netfilter, &nfqnl_file_ops))
1352 return -ENOMEM;
1353#endif
1354 return 0;
1355}
1356
1357static void __net_exit nfnl_queue_net_exit(struct net *net)
1358{
Pablo Neira Ayusoe778f562013-04-30 08:01:18 +00001359#ifdef CONFIG_PROC_FS
Gao fenge8179612013-03-24 23:50:47 +00001360 remove_proc_entry("nfnetlink_queue", net->nf.proc_netfilter);
Pablo Neira Ayusoe778f562013-04-30 08:01:18 +00001361#endif
Gao fenge8179612013-03-24 23:50:47 +00001362}
1363
1364static struct pernet_operations nfnl_queue_net_ops = {
1365 .init = nfnl_queue_net_init,
1366 .exit = nfnl_queue_net_exit,
1367 .id = &nfnl_queue_net_id,
1368 .size = sizeof(struct nfnl_queue_net),
1369};
1370
1371static int __init nfnetlink_queue_init(void)
1372{
Francesco Ruggeri3bfe0492015-05-17 14:30:31 -07001373 int status;
1374
1375 status = register_pernet_subsys(&nfnl_queue_net_ops);
1376 if (status < 0) {
1377 pr_err("nf_queue: failed to register pernet ops\n");
1378 goto out;
1379 }
Harald Welte838ab632005-08-09 19:50:45 -07001380
Harald Welte7af4cc32005-08-09 19:44:15 -07001381 netlink_register_notifier(&nfqnl_rtnl_notifier);
1382 status = nfnetlink_subsys_register(&nfqnl_subsys);
1383 if (status < 0) {
Gao fenge8179612013-03-24 23:50:47 +00001384 pr_err("nf_queue: failed to create netlink socket\n");
Harald Welte7af4cc32005-08-09 19:44:15 -07001385 goto cleanup_netlink_notifier;
1386 }
1387
1388 register_netdevice_notifier(&nfqnl_dev_notifier);
Florian Westphal0360ae42012-11-23 06:22:21 +00001389 nf_register_queue_handler(&nfqh);
Harald Welte7af4cc32005-08-09 19:44:15 -07001390 return status;
1391
Harald Welte7af4cc32005-08-09 19:44:15 -07001392cleanup_netlink_notifier:
1393 netlink_unregister_notifier(&nfqnl_rtnl_notifier);
Francesco Ruggeri3bfe0492015-05-17 14:30:31 -07001394out:
Harald Welte7af4cc32005-08-09 19:44:15 -07001395 return status;
1396}
1397
Andrew Morton65b4b4e2006-03-28 16:37:06 -08001398static void __exit nfnetlink_queue_fini(void)
Harald Welte7af4cc32005-08-09 19:44:15 -07001399{
Florian Westphal0360ae42012-11-23 06:22:21 +00001400 nf_unregister_queue_handler();
Patrick McHardy32292a72006-04-06 14:11:30 -07001401 unregister_netdevice_notifier(&nfqnl_dev_notifier);
Patrick McHardy32292a72006-04-06 14:11:30 -07001402 nfnetlink_subsys_unregister(&nfqnl_subsys);
1403 netlink_unregister_notifier(&nfqnl_rtnl_notifier);
Francesco Ruggeri3bfe0492015-05-17 14:30:31 -07001404 unregister_pernet_subsys(&nfnl_queue_net_ops);
Jesper Dangaard Brouer67137f32009-06-08 03:11:33 +00001405
1406 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Harald Welte7af4cc32005-08-09 19:44:15 -07001407}
1408
1409MODULE_DESCRIPTION("netfilter packet queue handler");
1410MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
1411MODULE_LICENSE("GPL");
1412MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_QUEUE);
1413
Andrew Morton65b4b4e2006-03-28 16:37:06 -08001414module_init(nfnetlink_queue_init);
1415module_exit(nfnetlink_queue_fini);