blob: f072fe803510320f7210c31b1a08ccddea5ae5b6 [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>
28#include <linux/netfilter/nfnetlink.h>
29#include <linux/netfilter/nfnetlink_queue.h>
30#include <linux/list.h>
31#include <net/sock.h>
David S. Miller83111e72014-01-06 13:36:06 -050032#include <net/tcp_states.h>
Patrick McHardyc01cd422007-12-05 01:24:48 -080033#include <net/netfilter/nf_queue.h>
Gao fenge8179612013-03-24 23:50:47 +000034#include <net/netns/generic.h>
Pablo Neira Ayuso7c622342012-06-19 02:10:57 +020035#include <net/netfilter/nfnetlink_queue.h>
Harald Welte7af4cc32005-08-09 19:44:15 -070036
Arun Sharma600634972011-07-26 16:09:06 -070037#include <linux/atomic.h>
Harald Welte7af4cc32005-08-09 19:44:15 -070038
Harald Weltefbcd9232005-08-09 20:22:10 -070039#ifdef CONFIG_BRIDGE_NETFILTER
40#include "../bridge/br_private.h"
41#endif
42
Harald Welte7af4cc32005-08-09 19:44:15 -070043#define NFQNL_QMAX_DEFAULT 1024
44
Florian Westphal9cefbbc2013-06-04 22:22:15 +000045/* We're using struct nlattr which has 16bit nla_len. Note that nla_len
46 * includes the header length. Thus, the maximum packet length that we
47 * support is 65531 bytes. We send truncated packets if the specified length
48 * is larger than that. Userspace can check for presence of NFQA_CAP_LEN
49 * attribute to detect truncation.
50 */
51#define NFQNL_MAX_COPY_RANGE (0xffff - NLA_HDRLEN)
52
Harald Welte7af4cc32005-08-09 19:44:15 -070053struct nfqnl_instance {
54 struct hlist_node hlist; /* global list of queues */
Patrick McHardy9872bec2007-12-05 01:28:50 -080055 struct rcu_head rcu;
Harald Welte7af4cc32005-08-09 19:44:15 -070056
Eric W. Biederman15e47302012-09-07 20:12:54 +000057 int peer_portid;
Harald Welte7af4cc32005-08-09 19:44:15 -070058 unsigned int queue_maxlen;
59 unsigned int copy_range;
Harald Welte7af4cc32005-08-09 19:44:15 -070060 unsigned int queue_dropped;
61 unsigned int queue_user_dropped;
62
Harald Welte7af4cc32005-08-09 19:44:15 -070063
64 u_int16_t queue_num; /* number of this queue */
65 u_int8_t copy_mode;
Krishna Kumarfdb694a2012-05-24 03:56:44 +000066 u_int32_t flags; /* Set using NFQA_CFG_FLAGS */
Eric Dumazetc463ac92010-06-09 18:07:06 +020067/*
68 * Following fields are dirtied for each queued packet,
69 * keep them in same cache line if possible.
70 */
71 spinlock_t lock;
72 unsigned int queue_total;
Eric Dumazet58637022011-07-19 11:44:17 +020073 unsigned int id_sequence; /* 'sequence' of pkt ids */
Harald Welte7af4cc32005-08-09 19:44:15 -070074 struct list_head queue_list; /* packets in queue */
75};
76
Patrick McHardy02f014d2007-12-05 01:26:33 -080077typedef int (*nfqnl_cmpfn)(struct nf_queue_entry *, unsigned long);
Harald Welte7af4cc32005-08-09 19:44:15 -070078
Gao fenge8179612013-03-24 23:50:47 +000079static int nfnl_queue_net_id __read_mostly;
Harald Welte7af4cc32005-08-09 19:44:15 -070080
Harald Welte7af4cc32005-08-09 19:44:15 -070081#define INSTANCE_BUCKETS 16
Gao fenge8179612013-03-24 23:50:47 +000082struct nfnl_queue_net {
83 spinlock_t instances_lock;
84 struct hlist_head instance_table[INSTANCE_BUCKETS];
85};
86
87static struct nfnl_queue_net *nfnl_queue_pernet(struct net *net)
88{
89 return net_generic(net, nfnl_queue_net_id);
90}
Harald Welte7af4cc32005-08-09 19:44:15 -070091
92static inline u_int8_t instance_hashfn(u_int16_t queue_num)
93{
Pablo Neira Ayuso1cdb0902013-03-14 06:03:17 +000094 return ((queue_num >> 8) ^ queue_num) % INSTANCE_BUCKETS;
Harald Welte7af4cc32005-08-09 19:44:15 -070095}
96
97static struct nfqnl_instance *
Gao fenge8179612013-03-24 23:50:47 +000098instance_lookup(struct nfnl_queue_net *q, u_int16_t queue_num)
Harald Welte7af4cc32005-08-09 19:44:15 -070099{
100 struct hlist_head *head;
Harald Welte7af4cc32005-08-09 19:44:15 -0700101 struct nfqnl_instance *inst;
102
Gao fenge8179612013-03-24 23:50:47 +0000103 head = &q->instance_table[instance_hashfn(queue_num)];
Sasha Levinb67bfe02013-02-27 17:06:00 -0800104 hlist_for_each_entry_rcu(inst, head, hlist) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700105 if (inst->queue_num == queue_num)
106 return inst;
107 }
108 return NULL;
109}
110
111static struct nfqnl_instance *
Gao fenge8179612013-03-24 23:50:47 +0000112instance_create(struct nfnl_queue_net *q, u_int16_t queue_num,
113 int 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
260 if (sk->sk_state == TCP_TIME_WAIT)
261 return 0;
262
263 read_lock_bh(&sk->sk_callback_lock);
264 if (sk->sk_socket && sk->sk_socket->file) {
265 cred = sk->sk_socket->file->f_cred;
266 if (nla_put_be32(skb, NFQA_UID,
267 htonl(from_kuid_munged(&init_user_ns, cred->fsuid))))
268 goto nla_put_failure;
269 if (nla_put_be32(skb, NFQA_GID,
270 htonl(from_kgid_munged(&init_user_ns, cred->fsgid))))
271 goto nla_put_failure;
272 }
273 read_unlock_bh(&sk->sk_callback_lock);
274 return 0;
275
276nla_put_failure:
277 read_unlock_bh(&sk->sk_callback_lock);
278 return -1;
279}
280
Harald Welte7af4cc32005-08-09 19:44:15 -0700281static struct sk_buff *
Gao feng74332682013-09-23 19:20:55 +0800282nfqnl_build_packet_message(struct net *net, struct nfqnl_instance *queue,
Eric Dumazet58637022011-07-19 11:44:17 +0200283 struct nf_queue_entry *entry,
284 __be32 **packet_id_ptr)
Harald Welte7af4cc32005-08-09 19:44:15 -0700285{
Harald Welte7af4cc32005-08-09 19:44:15 -0700286 size_t size;
Pablo Neira Ayuso6ee584b2012-09-24 14:52:12 +0200287 size_t data_len = 0, cap_len = 0;
Thomas Grafaf2806f2013-12-13 15:22:17 +0100288 unsigned int hlen = 0;
Harald Welte7af4cc32005-08-09 19:44:15 -0700289 struct sk_buff *skb;
Eric Dumazet58637022011-07-19 11:44:17 +0200290 struct nlattr *nla;
291 struct nfqnl_msg_packet_hdr *pmsg;
Harald Welte7af4cc32005-08-09 19:44:15 -0700292 struct nlmsghdr *nlh;
293 struct nfgenmsg *nfmsg;
Jesper Juhl3e4ead42006-01-05 12:15:58 -0800294 struct sk_buff *entskb = entry->skb;
295 struct net_device *indev;
296 struct net_device *outdev;
Pablo Neira Ayuso9cb01762012-06-07 12:13:39 +0200297 struct nf_conn *ct = NULL;
298 enum ip_conntrack_info uninitialized_var(ctinfo);
Florian Westphal496e4ae2013-06-29 14:15:47 +0200299 bool csum_verify;
Harald Welte7af4cc32005-08-09 19:44:15 -0700300
Hong zhi guo573ce262013-03-27 06:47:04 +0000301 size = nlmsg_total_size(sizeof(struct nfgenmsg))
Patrick McHardydf6fb862007-09-28 14:37:03 -0700302 + nla_total_size(sizeof(struct nfqnl_msg_packet_hdr))
303 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
304 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
Harald Weltefbcd9232005-08-09 20:22:10 -0700305#ifdef CONFIG_BRIDGE_NETFILTER
Patrick McHardydf6fb862007-09-28 14:37:03 -0700306 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
307 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
Harald Weltefbcd9232005-08-09 20:22:10 -0700308#endif
Patrick McHardydf6fb862007-09-28 14:37:03 -0700309 + nla_total_size(sizeof(u_int32_t)) /* mark */
310 + nla_total_size(sizeof(struct nfqnl_msg_packet_hw))
Florian Westphal72371902013-04-19 04:58:26 +0000311 + nla_total_size(sizeof(u_int32_t)) /* skbinfo */
Eric Dumazetae08ce02013-03-17 17:15:55 +0000312 + nla_total_size(sizeof(u_int32_t)); /* cap_len */
313
314 if (entskb->tstamp.tv64)
315 size += nla_total_size(sizeof(struct nfqnl_msg_packet_timestamp));
Harald Welte7af4cc32005-08-09 19:44:15 -0700316
Florian Westphal496e4ae2013-06-29 14:15:47 +0200317 if (entry->hook <= NF_INET_FORWARD ||
318 (entry->hook == NF_INET_POST_ROUTING && entskb->sk == NULL))
319 csum_verify = !skb_csum_unnecessary(entskb);
320 else
321 csum_verify = false;
322
Patrick McHardy02f014d2007-12-05 01:26:33 -0800323 outdev = entry->outdev;
Jesper Juhl3e4ead42006-01-05 12:15:58 -0800324
Eric Dumazetc463ac92010-06-09 18:07:06 +0200325 switch ((enum nfqnl_config_mode)ACCESS_ONCE(queue->copy_mode)) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700326 case NFQNL_COPY_META:
327 case NFQNL_COPY_NONE:
Harald Welte7af4cc32005-08-09 19:44:15 -0700328 break;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800329
Harald Welte7af4cc32005-08-09 19:44:15 -0700330 case NFQNL_COPY_PACKET:
Florian Westphal00bd1cc2013-04-19 04:58:27 +0000331 if (!(queue->flags & NFQA_CFG_F_GSO) &&
332 entskb->ip_summed == CHECKSUM_PARTIAL &&
Eric Dumazetc463ac92010-06-09 18:07:06 +0200333 skb_checksum_help(entskb))
Patrick McHardye7dfb092005-09-06 15:10:00 -0700334 return NULL;
Eric Dumazetc463ac92010-06-09 18:07:06 +0200335
336 data_len = ACCESS_ONCE(queue->copy_range);
Florian Westphal9cefbbc2013-06-04 22:22:15 +0000337 if (data_len > entskb->len)
Jesper Juhl3e4ead42006-01-05 12:15:58 -0800338 data_len = entskb->len;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800339
Thomas Grafaf2806f2013-12-13 15:22:17 +0100340 hlen = skb_zerocopy_headlen(entskb);
341 hlen = min_t(unsigned int, hlen, data_len);
Eric Dumazetae08ce02013-03-17 17:15:55 +0000342 size += sizeof(struct nlattr) + hlen;
Pablo Neira Ayuso6ee584b2012-09-24 14:52:12 +0200343 cap_len = entskb->len;
Harald Welte7af4cc32005-08-09 19:44:15 -0700344 break;
Harald Welte7af4cc32005-08-09 19:44:15 -0700345 }
346
Pablo Neira Ayuso7c622342012-06-19 02:10:57 +0200347 if (queue->flags & NFQA_CFG_F_CONNTRACK)
348 ct = nfqnl_ct_get(entskb, &size, &ctinfo);
Harald Welte7af4cc32005-08-09 19:44:15 -0700349
Valentina Giusti08c0cad2013-12-20 17:28:53 +0100350 if (queue->flags & NFQA_CFG_F_UID_GID) {
351 size += (nla_total_size(sizeof(u_int32_t)) /* uid */
352 + nla_total_size(sizeof(u_int32_t))); /* gid */
353 }
354
Gao feng74332682013-09-23 19:20:55 +0800355 skb = nfnetlink_alloc_skb(net, size, queue->peer_portid,
Patrick McHardy3ab1f682013-04-17 06:47:09 +0000356 GFP_ATOMIC);
Harald Welte7af4cc32005-08-09 19:44:15 -0700357 if (!skb)
David S. Miller3da07c02012-06-26 21:35:27 -0700358 return NULL;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800359
David S. Miller3da07c02012-06-26 21:35:27 -0700360 nlh = nlmsg_put(skb, 0, 0,
Harald Welte7af4cc32005-08-09 19:44:15 -0700361 NFNL_SUBSYS_QUEUE << 8 | NFQNL_MSG_PACKET,
David S. Miller3da07c02012-06-26 21:35:27 -0700362 sizeof(struct nfgenmsg), 0);
363 if (!nlh) {
364 kfree_skb(skb);
365 return NULL;
366 }
367 nfmsg = nlmsg_data(nlh);
Patrick McHardy02f014d2007-12-05 01:26:33 -0800368 nfmsg->nfgen_family = entry->pf;
Harald Welte7af4cc32005-08-09 19:44:15 -0700369 nfmsg->version = NFNETLINK_V0;
370 nfmsg->res_id = htons(queue->queue_num);
371
Eric Dumazet58637022011-07-19 11:44:17 +0200372 nla = __nla_reserve(skb, NFQA_PACKET_HDR, sizeof(*pmsg));
373 pmsg = nla_data(nla);
374 pmsg->hw_protocol = entskb->protocol;
375 pmsg->hook = entry->hook;
376 *packet_id_ptr = &pmsg->packet_id;
Harald Welte7af4cc32005-08-09 19:44:15 -0700377
Patrick McHardy02f014d2007-12-05 01:26:33 -0800378 indev = entry->indev;
Jesper Juhl3e4ead42006-01-05 12:15:58 -0800379 if (indev) {
Harald Weltefbcd9232005-08-09 20:22:10 -0700380#ifndef CONFIG_BRIDGE_NETFILTER
David S. Millera4471892012-03-29 23:27:38 -0400381 if (nla_put_be32(skb, NFQA_IFINDEX_INDEV, htonl(indev->ifindex)))
382 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700383#else
Patrick McHardy02f014d2007-12-05 01:26:33 -0800384 if (entry->pf == PF_BRIDGE) {
Harald Weltefbcd9232005-08-09 20:22:10 -0700385 /* Case 1: indev is physical input device, we need to
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800386 * look for bridge group (when called from
Harald Weltefbcd9232005-08-09 20:22:10 -0700387 * netfilter_bridge) */
David S. Millera4471892012-03-29 23:27:38 -0400388 if (nla_put_be32(skb, NFQA_IFINDEX_PHYSINDEV,
389 htonl(indev->ifindex)) ||
Harald Weltefbcd9232005-08-09 20:22:10 -0700390 /* this is the bridge group "brX" */
Jiri Pirkof350a0a82010-06-15 06:50:45 +0000391 /* rcu_read_lock()ed by __nf_queue */
David S. Millera4471892012-03-29 23:27:38 -0400392 nla_put_be32(skb, NFQA_IFINDEX_INDEV,
393 htonl(br_port_get_rcu(indev)->br->dev->ifindex)))
394 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700395 } else {
396 /* Case 2: indev is bridge group, we need to look for
397 * physical device (when called from ipv4) */
David S. Millera4471892012-03-29 23:27:38 -0400398 if (nla_put_be32(skb, NFQA_IFINDEX_INDEV,
399 htonl(indev->ifindex)))
400 goto nla_put_failure;
401 if (entskb->nf_bridge && entskb->nf_bridge->physindev &&
402 nla_put_be32(skb, NFQA_IFINDEX_PHYSINDEV,
403 htonl(entskb->nf_bridge->physindev->ifindex)))
404 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700405 }
406#endif
Harald Welte7af4cc32005-08-09 19:44:15 -0700407 }
408
Jesper Juhl3e4ead42006-01-05 12:15:58 -0800409 if (outdev) {
Harald Weltefbcd9232005-08-09 20:22:10 -0700410#ifndef CONFIG_BRIDGE_NETFILTER
David S. Millera4471892012-03-29 23:27:38 -0400411 if (nla_put_be32(skb, NFQA_IFINDEX_OUTDEV, htonl(outdev->ifindex)))
412 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700413#else
Patrick McHardy02f014d2007-12-05 01:26:33 -0800414 if (entry->pf == PF_BRIDGE) {
Harald Weltefbcd9232005-08-09 20:22:10 -0700415 /* Case 1: outdev is physical output device, we need to
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800416 * look for bridge group (when called from
Harald Weltefbcd9232005-08-09 20:22:10 -0700417 * netfilter_bridge) */
David S. Millera4471892012-03-29 23:27:38 -0400418 if (nla_put_be32(skb, NFQA_IFINDEX_PHYSOUTDEV,
419 htonl(outdev->ifindex)) ||
Harald Weltefbcd9232005-08-09 20:22:10 -0700420 /* this is the bridge group "brX" */
Jiri Pirkof350a0a82010-06-15 06:50:45 +0000421 /* rcu_read_lock()ed by __nf_queue */
David S. Millera4471892012-03-29 23:27:38 -0400422 nla_put_be32(skb, NFQA_IFINDEX_OUTDEV,
423 htonl(br_port_get_rcu(outdev)->br->dev->ifindex)))
424 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700425 } else {
426 /* Case 2: outdev is bridge group, we need to look for
427 * physical output device (when called from ipv4) */
David S. Millera4471892012-03-29 23:27:38 -0400428 if (nla_put_be32(skb, NFQA_IFINDEX_OUTDEV,
429 htonl(outdev->ifindex)))
430 goto nla_put_failure;
431 if (entskb->nf_bridge && entskb->nf_bridge->physoutdev &&
432 nla_put_be32(skb, NFQA_IFINDEX_PHYSOUTDEV,
433 htonl(entskb->nf_bridge->physoutdev->ifindex)))
434 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700435 }
436#endif
Harald Welte7af4cc32005-08-09 19:44:15 -0700437 }
438
David S. Millera4471892012-03-29 23:27:38 -0400439 if (entskb->mark &&
440 nla_put_be32(skb, NFQA_MARK, htonl(entskb->mark)))
441 goto nla_put_failure;
Harald Welte7af4cc32005-08-09 19:44:15 -0700442
Nicolas Cavallari2c38de42011-06-16 17:27:04 +0200443 if (indev && entskb->dev &&
444 entskb->mac_header != entskb->network_header) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700445 struct nfqnl_msg_packet_hw phw;
Dan Carpentere4d091d2013-08-01 12:36:57 +0300446 int len;
447
448 memset(&phw, 0, sizeof(phw));
449 len = dev_parse_header(entskb, phw.hw_addr);
Stephen Hemmingerb95cce32007-09-26 22:13:38 -0700450 if (len) {
451 phw.hw_addrlen = htons(len);
David S. Millera4471892012-03-29 23:27:38 -0400452 if (nla_put(skb, NFQA_HWADDR, sizeof(phw), &phw))
453 goto nla_put_failure;
Stephen Hemmingerb95cce32007-09-26 22:13:38 -0700454 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700455 }
456
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700457 if (entskb->tstamp.tv64) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700458 struct nfqnl_msg_packet_timestamp ts;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700459 struct timeval tv = ktime_to_timeval(entskb->tstamp);
460 ts.sec = cpu_to_be64(tv.tv_sec);
461 ts.usec = cpu_to_be64(tv.tv_usec);
Harald Welte7af4cc32005-08-09 19:44:15 -0700462
David S. Millera4471892012-03-29 23:27:38 -0400463 if (nla_put(skb, NFQA_TIMESTAMP, sizeof(ts), &ts))
464 goto nla_put_failure;
Harald Welte7af4cc32005-08-09 19:44:15 -0700465 }
466
Valentina Giusti08c0cad2013-12-20 17:28:53 +0100467 if ((queue->flags & NFQA_CFG_F_UID_GID) && entskb->sk &&
468 nfqnl_put_sk_uidgid(skb, entskb->sk) < 0)
469 goto nla_put_failure;
470
Pablo Neira Ayuso7c622342012-06-19 02:10:57 +0200471 if (ct && nfqnl_ct_put(skb, ct, ctinfo) < 0)
472 goto nla_put_failure;
Pablo Neira Ayuso9cb01762012-06-07 12:13:39 +0200473
Florian Westphal7f877122013-06-04 22:22:16 +0000474 if (cap_len > data_len &&
475 nla_put_be32(skb, NFQA_CAP_LEN, htonl(cap_len)))
Pablo Neira Ayuso6ee584b2012-09-24 14:52:12 +0200476 goto nla_put_failure;
477
Florian Westphal496e4ae2013-06-29 14:15:47 +0200478 if (nfqnl_put_packet_info(skb, entskb, csum_verify))
Florian Westphal72371902013-04-19 04:58:26 +0000479 goto nla_put_failure;
480
Eric Dumazetae08ce02013-03-17 17:15:55 +0000481 if (data_len) {
482 struct nlattr *nla;
483
484 if (skb_tailroom(skb) < sizeof(*nla) + hlen)
485 goto nla_put_failure;
486
487 nla = (struct nlattr *)skb_put(skb, sizeof(*nla));
488 nla->nla_type = NFQA_PAYLOAD;
489 nla->nla_len = nla_attr_size(data_len);
490
Thomas Grafaf2806f2013-12-13 15:22:17 +0100491 skb_zerocopy(skb, entskb, data_len, hlen);
Eric Dumazetae08ce02013-03-17 17:15:55 +0000492 }
493
494 nlh->nlmsg_len = skb->len;
Harald Welte7af4cc32005-08-09 19:44:15 -0700495 return skb;
496
Patrick McHardydf6fb862007-09-28 14:37:03 -0700497nla_put_failure:
Wei Yongjuna6729952012-08-28 03:14:15 +0000498 kfree_skb(skb);
Joe Perchese87cc472012-05-13 21:56:26 +0000499 net_err_ratelimited("nf_queue: error creating packet message\n");
Harald Welte7af4cc32005-08-09 19:44:15 -0700500 return NULL;
501}
502
503static int
Florian Westphala5fedd432013-04-19 04:58:25 +0000504__nfqnl_enqueue_packet(struct net *net, struct nfqnl_instance *queue,
505 struct nf_queue_entry *entry)
Harald Welte7af4cc32005-08-09 19:44:15 -0700506{
Harald Welte7af4cc32005-08-09 19:44:15 -0700507 struct sk_buff *nskb;
Florian Westphalf1585082011-01-18 15:27:28 +0100508 int err = -ENOBUFS;
Eric Dumazet58637022011-07-19 11:44:17 +0200509 __be32 *packet_id_ptr;
Krishna Kumarfdb694a2012-05-24 03:56:44 +0000510 int failopen = 0;
Harald Welte7af4cc32005-08-09 19:44:15 -0700511
Gao feng74332682013-09-23 19:20:55 +0800512 nskb = nfqnl_build_packet_message(net, queue, entry, &packet_id_ptr);
Florian Westphalf1585082011-01-18 15:27:28 +0100513 if (nskb == NULL) {
514 err = -ENOMEM;
Patrick McHardy0ef0f462007-12-05 01:31:01 -0800515 goto err_out;
Florian Westphalf1585082011-01-18 15:27:28 +0100516 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700517 spin_lock_bh(&queue->lock);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800518
Harald Welte7af4cc32005-08-09 19:44:15 -0700519 if (queue->queue_total >= queue->queue_maxlen) {
Krishna Kumarfdb694a2012-05-24 03:56:44 +0000520 if (queue->flags & NFQA_CFG_F_FAIL_OPEN) {
521 failopen = 1;
522 err = 0;
523 } else {
524 queue->queue_dropped++;
525 net_warn_ratelimited("nf_queue: full at %d entries, dropping packets(s)\n",
526 queue->queue_total);
527 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700528 goto err_out_free_nskb;
529 }
Eric Dumazet58637022011-07-19 11:44:17 +0200530 entry->id = ++queue->id_sequence;
531 *packet_id_ptr = htonl(entry->id);
Harald Welte7af4cc32005-08-09 19:44:15 -0700532
533 /* nfnetlink_unicast will either free the nskb or add it to a socket */
Gao fenge8179612013-03-24 23:50:47 +0000534 err = nfnetlink_unicast(nskb, net, queue->peer_portid, MSG_DONTWAIT);
Patrick McHardy0ef0f462007-12-05 01:31:01 -0800535 if (err < 0) {
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800536 queue->queue_user_dropped++;
Harald Welte7af4cc32005-08-09 19:44:15 -0700537 goto err_out_unlock;
538 }
539
540 __enqueue_entry(queue, entry);
541
542 spin_unlock_bh(&queue->lock);
Patrick McHardy0ef0f462007-12-05 01:31:01 -0800543 return 0;
Harald Welte7af4cc32005-08-09 19:44:15 -0700544
545err_out_free_nskb:
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800546 kfree_skb(nskb);
Harald Welte7af4cc32005-08-09 19:44:15 -0700547err_out_unlock:
548 spin_unlock_bh(&queue->lock);
Krishna Kumarfdb694a2012-05-24 03:56:44 +0000549 if (failopen)
550 nf_reinject(entry, NF_ACCEPT);
Patrick McHardy0ef0f462007-12-05 01:31:01 -0800551err_out:
Florian Westphalf1585082011-01-18 15:27:28 +0100552 return err;
Harald Welte7af4cc32005-08-09 19:44:15 -0700553}
554
Florian Westphala5fedd432013-04-19 04:58:25 +0000555static struct nf_queue_entry *
556nf_queue_entry_dup(struct nf_queue_entry *e)
557{
558 struct nf_queue_entry *entry = kmemdup(e, e->size, GFP_ATOMIC);
559 if (entry) {
560 if (nf_queue_entry_get_refs(entry))
561 return entry;
562 kfree(entry);
563 }
564 return NULL;
565}
566
567#ifdef CONFIG_BRIDGE_NETFILTER
568/* When called from bridge netfilter, skb->data must point to MAC header
569 * before calling skb_gso_segment(). Else, original MAC header is lost
570 * and segmented skbs will be sent to wrong destination.
571 */
572static void nf_bridge_adjust_skb_data(struct sk_buff *skb)
573{
574 if (skb->nf_bridge)
575 __skb_push(skb, skb->network_header - skb->mac_header);
576}
577
578static void nf_bridge_adjust_segmented_data(struct sk_buff *skb)
579{
580 if (skb->nf_bridge)
581 __skb_pull(skb, skb->network_header - skb->mac_header);
582}
583#else
584#define nf_bridge_adjust_skb_data(s) do {} while (0)
585#define nf_bridge_adjust_segmented_data(s) do {} while (0)
586#endif
587
588static void free_entry(struct nf_queue_entry *entry)
589{
590 nf_queue_entry_release_refs(entry);
591 kfree(entry);
592}
593
594static int
595__nfqnl_enqueue_packet_gso(struct net *net, struct nfqnl_instance *queue,
596 struct sk_buff *skb, struct nf_queue_entry *entry)
597{
598 int ret = -ENOMEM;
599 struct nf_queue_entry *entry_seg;
600
601 nf_bridge_adjust_segmented_data(skb);
602
603 if (skb->next == NULL) { /* last packet, no need to copy entry */
604 struct sk_buff *gso_skb = entry->skb;
605 entry->skb = skb;
606 ret = __nfqnl_enqueue_packet(net, queue, entry);
607 if (ret)
608 entry->skb = gso_skb;
609 return ret;
610 }
611
612 skb->next = NULL;
613
614 entry_seg = nf_queue_entry_dup(entry);
615 if (entry_seg) {
616 entry_seg->skb = skb;
617 ret = __nfqnl_enqueue_packet(net, queue, entry_seg);
618 if (ret)
619 free_entry(entry_seg);
620 }
621 return ret;
622}
623
624static int
625nfqnl_enqueue_packet(struct nf_queue_entry *entry, unsigned int queuenum)
626{
627 unsigned int queued;
628 struct nfqnl_instance *queue;
629 struct sk_buff *skb, *segs;
630 int err = -ENOBUFS;
631 struct net *net = dev_net(entry->indev ?
632 entry->indev : entry->outdev);
633 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
634
635 /* rcu_read_lock()ed by nf_hook_slow() */
636 queue = instance_lookup(q, queuenum);
637 if (!queue)
638 return -ESRCH;
639
640 if (queue->copy_mode == NFQNL_COPY_NONE)
641 return -EINVAL;
642
Florian Westphala5fedd432013-04-19 04:58:25 +0000643 skb = entry->skb;
644
645 switch (entry->pf) {
646 case NFPROTO_IPV4:
647 skb->protocol = htons(ETH_P_IP);
648 break;
649 case NFPROTO_IPV6:
650 skb->protocol = htons(ETH_P_IPV6);
651 break;
652 }
653
Pablo Neira Ayuso7b8dfe22013-06-07 18:42:00 +0200654 if ((queue->flags & NFQA_CFG_F_GSO) || !skb_is_gso(skb))
655 return __nfqnl_enqueue_packet(net, queue, entry);
656
Florian Westphala5fedd432013-04-19 04:58:25 +0000657 nf_bridge_adjust_skb_data(skb);
658 segs = skb_gso_segment(skb, 0);
659 /* Does not use PTR_ERR to limit the number of error codes that can be
660 * returned by nf_queue. For instance, callers rely on -ECANCELED to
661 * mean 'ignore this hook'.
662 */
663 if (IS_ERR(segs))
664 goto out_err;
665 queued = 0;
666 err = 0;
667 do {
668 struct sk_buff *nskb = segs->next;
669 if (err == 0)
670 err = __nfqnl_enqueue_packet_gso(net, queue,
671 segs, entry);
672 if (err == 0)
673 queued++;
674 else
675 kfree_skb(segs);
676 segs = nskb;
677 } while (segs);
678
679 if (queued) {
680 if (err) /* some segments are already queued */
681 free_entry(entry);
682 kfree_skb(skb);
683 return 0;
684 }
685 out_err:
686 nf_bridge_adjust_segmented_data(skb);
687 return err;
688}
689
Harald Welte7af4cc32005-08-09 19:44:15 -0700690static int
Pablo Neira Ayuso8c88f872012-06-07 13:31:25 +0200691nfqnl_mangle(void *data, int data_len, struct nf_queue_entry *e, int diff)
Harald Welte7af4cc32005-08-09 19:44:15 -0700692{
Patrick McHardye2b58a62008-02-19 17:17:52 -0800693 struct sk_buff *nskb;
Harald Welte7af4cc32005-08-09 19:44:15 -0700694
Patrick McHardyd8a585d2006-11-14 19:48:09 -0800695 if (diff < 0) {
696 if (pskb_trim(e->skb, data_len))
697 return -ENOMEM;
698 } else if (diff > 0) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700699 if (data_len > 0xFFFF)
700 return -EINVAL;
701 if (diff > skb_tailroom(e->skb)) {
Arnaud Ebalard9a732ed2008-04-29 03:16:34 -0700702 nskb = skb_copy_expand(e->skb, skb_headroom(e->skb),
703 diff, GFP_ATOMIC);
Patrick McHardye2b58a62008-02-19 17:17:52 -0800704 if (!nskb) {
Patrick McHardy1158ba22006-08-22 00:32:47 -0700705 printk(KERN_WARNING "nf_queue: OOM "
Harald Welte7af4cc32005-08-09 19:44:15 -0700706 "in mangle, dropping packet\n");
Patrick McHardye2b58a62008-02-19 17:17:52 -0800707 return -ENOMEM;
Harald Welte7af4cc32005-08-09 19:44:15 -0700708 }
Patrick McHardye2b58a62008-02-19 17:17:52 -0800709 kfree_skb(e->skb);
710 e->skb = nskb;
Harald Welte7af4cc32005-08-09 19:44:15 -0700711 }
712 skb_put(e->skb, diff);
713 }
Herbert Xu37d41872007-10-14 00:39:18 -0700714 if (!skb_make_writable(e->skb, data_len))
Harald Welte7af4cc32005-08-09 19:44:15 -0700715 return -ENOMEM;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300716 skb_copy_to_linear_data(e->skb, data, data_len);
Patrick McHardye7dfb092005-09-06 15:10:00 -0700717 e->skb->ip_summed = CHECKSUM_NONE;
Harald Welte7af4cc32005-08-09 19:44:15 -0700718 return 0;
719}
720
Harald Welte7af4cc32005-08-09 19:44:15 -0700721static int
722nfqnl_set_mode(struct nfqnl_instance *queue,
723 unsigned char mode, unsigned int range)
724{
Patrick McHardyc5de0df2007-12-05 01:29:05 -0800725 int status = 0;
Harald Welte7af4cc32005-08-09 19:44:15 -0700726
727 spin_lock_bh(&queue->lock);
Patrick McHardyc5de0df2007-12-05 01:29:05 -0800728 switch (mode) {
729 case NFQNL_COPY_NONE:
730 case NFQNL_COPY_META:
731 queue->copy_mode = mode;
732 queue->copy_range = 0;
733 break;
734
735 case NFQNL_COPY_PACKET:
736 queue->copy_mode = mode;
Florian Westphal9cefbbc2013-06-04 22:22:15 +0000737 if (range == 0 || range > NFQNL_MAX_COPY_RANGE)
738 queue->copy_range = NFQNL_MAX_COPY_RANGE;
Patrick McHardyc5de0df2007-12-05 01:29:05 -0800739 else
740 queue->copy_range = range;
741 break;
742
743 default:
744 status = -EINVAL;
745
746 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700747 spin_unlock_bh(&queue->lock);
748
749 return status;
750}
751
752static int
Patrick McHardy02f014d2007-12-05 01:26:33 -0800753dev_cmp(struct nf_queue_entry *entry, unsigned long ifindex)
Harald Welte7af4cc32005-08-09 19:44:15 -0700754{
Patrick McHardy02f014d2007-12-05 01:26:33 -0800755 if (entry->indev)
756 if (entry->indev->ifindex == ifindex)
Harald Welte7af4cc32005-08-09 19:44:15 -0700757 return 1;
Patrick McHardy02f014d2007-12-05 01:26:33 -0800758 if (entry->outdev)
759 if (entry->outdev->ifindex == ifindex)
Harald Welte7af4cc32005-08-09 19:44:15 -0700760 return 1;
Patrick McHardyef47c6a72006-06-27 03:01:48 -0700761#ifdef CONFIG_BRIDGE_NETFILTER
762 if (entry->skb->nf_bridge) {
763 if (entry->skb->nf_bridge->physindev &&
764 entry->skb->nf_bridge->physindev->ifindex == ifindex)
765 return 1;
766 if (entry->skb->nf_bridge->physoutdev &&
767 entry->skb->nf_bridge->physoutdev->ifindex == ifindex)
768 return 1;
769 }
770#endif
Harald Welte7af4cc32005-08-09 19:44:15 -0700771 return 0;
772}
773
774/* drop all packets with either indev or outdev == ifindex from all queue
775 * instances */
776static void
Gao fenge8179612013-03-24 23:50:47 +0000777nfqnl_dev_drop(struct net *net, int ifindex)
Harald Welte7af4cc32005-08-09 19:44:15 -0700778{
779 int i;
Gao fenge8179612013-03-24 23:50:47 +0000780 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800781
Patrick McHardy9872bec2007-12-05 01:28:50 -0800782 rcu_read_lock();
Harald Welte7af4cc32005-08-09 19:44:15 -0700783
Patrick McHardy9872bec2007-12-05 01:28:50 -0800784 for (i = 0; i < INSTANCE_BUCKETS; i++) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700785 struct nfqnl_instance *inst;
Gao fenge8179612013-03-24 23:50:47 +0000786 struct hlist_head *head = &q->instance_table[i];
Harald Welte7af4cc32005-08-09 19:44:15 -0700787
Sasha Levinb67bfe02013-02-27 17:06:00 -0800788 hlist_for_each_entry_rcu(inst, head, hlist)
Patrick McHardyb43d8d82007-12-05 01:25:30 -0800789 nfqnl_flush(inst, dev_cmp, ifindex);
Harald Welte7af4cc32005-08-09 19:44:15 -0700790 }
791
Patrick McHardy9872bec2007-12-05 01:28:50 -0800792 rcu_read_unlock();
Harald Welte7af4cc32005-08-09 19:44:15 -0700793}
794
795#define RCV_SKB_FAIL(err) do { netlink_ack(skb, nlh, (err)); return; } while (0)
796
797static int
798nfqnl_rcv_dev_event(struct notifier_block *this,
799 unsigned long event, void *ptr)
800{
Jiri Pirko351638e2013-05-28 01:30:21 +0000801 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Harald Welte7af4cc32005-08-09 19:44:15 -0700802
803 /* Drop any packets associated with the downed device */
804 if (event == NETDEV_DOWN)
Gao fenge8179612013-03-24 23:50:47 +0000805 nfqnl_dev_drop(dev_net(dev), dev->ifindex);
Harald Welte7af4cc32005-08-09 19:44:15 -0700806 return NOTIFY_DONE;
807}
808
809static struct notifier_block nfqnl_dev_notifier = {
810 .notifier_call = nfqnl_rcv_dev_event,
811};
812
813static int
814nfqnl_rcv_nl_event(struct notifier_block *this,
815 unsigned long event, void *ptr)
816{
817 struct netlink_notify *n = ptr;
Gao fenge8179612013-03-24 23:50:47 +0000818 struct nfnl_queue_net *q = nfnl_queue_pernet(n->net);
Harald Welte7af4cc32005-08-09 19:44:15 -0700819
Patrick McHardydee58172009-11-06 17:04:00 +0100820 if (event == NETLINK_URELEASE && n->protocol == NETLINK_NETFILTER) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700821 int i;
822
Eric W. Biederman15e47302012-09-07 20:12:54 +0000823 /* destroy all instances for this portid */
Gao fenge8179612013-03-24 23:50:47 +0000824 spin_lock(&q->instances_lock);
Patrick McHardy9872bec2007-12-05 01:28:50 -0800825 for (i = 0; i < INSTANCE_BUCKETS; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800826 struct hlist_node *t2;
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_safe(inst, t2, head, hlist) {
Gao fenge8179612013-03-24 23:50:47 +0000831 if (n->portid == inst->peer_portid)
Harald Welte7af4cc32005-08-09 19:44:15 -0700832 __instance_destroy(inst);
833 }
834 }
Gao fenge8179612013-03-24 23:50:47 +0000835 spin_unlock(&q->instances_lock);
Harald Welte7af4cc32005-08-09 19:44:15 -0700836 }
837 return NOTIFY_DONE;
838}
839
840static struct notifier_block nfqnl_rtnl_notifier = {
841 .notifier_call = nfqnl_rcv_nl_event,
842};
843
Patrick McHardy5bf75852007-09-28 14:39:26 -0700844static const struct nla_policy nfqa_verdict_policy[NFQA_MAX+1] = {
845 [NFQA_VERDICT_HDR] = { .len = sizeof(struct nfqnl_msg_verdict_hdr) },
846 [NFQA_MARK] = { .type = NLA_U32 },
847 [NFQA_PAYLOAD] = { .type = NLA_UNSPEC },
Pablo Neira Ayuso9cb01762012-06-07 12:13:39 +0200848 [NFQA_CT] = { .type = NLA_UNSPEC },
Pablo Neira Ayusobd077932013-08-07 18:13:20 +0200849 [NFQA_EXP] = { .type = NLA_UNSPEC },
Harald Welte838ab632005-08-09 19:50:45 -0700850};
851
Florian Westphal97d32cf2011-07-19 11:46:33 +0200852static const struct nla_policy nfqa_verdict_batch_policy[NFQA_MAX+1] = {
853 [NFQA_VERDICT_HDR] = { .len = sizeof(struct nfqnl_msg_verdict_hdr) },
854 [NFQA_MARK] = { .type = NLA_U32 },
855};
856
Gao fenge8179612013-03-24 23:50:47 +0000857static struct nfqnl_instance *
858verdict_instance_lookup(struct nfnl_queue_net *q, u16 queue_num, int nlportid)
Florian Westphal97d32cf2011-07-19 11:46:33 +0200859{
860 struct nfqnl_instance *queue;
861
Gao fenge8179612013-03-24 23:50:47 +0000862 queue = instance_lookup(q, queue_num);
Florian Westphal97d32cf2011-07-19 11:46:33 +0200863 if (!queue)
864 return ERR_PTR(-ENODEV);
865
Eric W. Biederman15e47302012-09-07 20:12:54 +0000866 if (queue->peer_portid != nlportid)
Florian Westphal97d32cf2011-07-19 11:46:33 +0200867 return ERR_PTR(-EPERM);
868
869 return queue;
870}
871
872static struct nfqnl_msg_verdict_hdr*
873verdicthdr_get(const struct nlattr * const nfqa[])
874{
875 struct nfqnl_msg_verdict_hdr *vhdr;
876 unsigned int verdict;
877
878 if (!nfqa[NFQA_VERDICT_HDR])
879 return NULL;
880
881 vhdr = nla_data(nfqa[NFQA_VERDICT_HDR]);
Florian Westphalc6675232011-08-30 15:01:20 +0200882 verdict = ntohl(vhdr->verdict) & NF_VERDICT_MASK;
883 if (verdict > NF_MAX_VERDICT || verdict == NF_STOLEN)
Florian Westphal97d32cf2011-07-19 11:46:33 +0200884 return NULL;
885 return vhdr;
886}
887
888static int nfq_id_after(unsigned int id, unsigned int max)
889{
890 return (int)(id - max) > 0;
891}
892
893static int
894nfqnl_recv_verdict_batch(struct sock *ctnl, struct sk_buff *skb,
895 const struct nlmsghdr *nlh,
896 const struct nlattr * const nfqa[])
897{
David S. Miller3da07c02012-06-26 21:35:27 -0700898 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
Florian Westphal97d32cf2011-07-19 11:46:33 +0200899 struct nf_queue_entry *entry, *tmp;
900 unsigned int verdict, maxid;
901 struct nfqnl_msg_verdict_hdr *vhdr;
902 struct nfqnl_instance *queue;
903 LIST_HEAD(batch_list);
904 u16 queue_num = ntohs(nfmsg->res_id);
905
Gao fenge8179612013-03-24 23:50:47 +0000906 struct net *net = sock_net(ctnl);
907 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
908
909 queue = verdict_instance_lookup(q, queue_num,
910 NETLINK_CB(skb).portid);
Florian Westphal97d32cf2011-07-19 11:46:33 +0200911 if (IS_ERR(queue))
912 return PTR_ERR(queue);
913
914 vhdr = verdicthdr_get(nfqa);
915 if (!vhdr)
916 return -EINVAL;
917
918 verdict = ntohl(vhdr->verdict);
919 maxid = ntohl(vhdr->id);
920
921 spin_lock_bh(&queue->lock);
922
923 list_for_each_entry_safe(entry, tmp, &queue->queue_list, list) {
924 if (nfq_id_after(entry->id, maxid))
925 break;
926 __dequeue_entry(queue, entry);
927 list_add_tail(&entry->list, &batch_list);
928 }
929
930 spin_unlock_bh(&queue->lock);
931
932 if (list_empty(&batch_list))
933 return -ENOENT;
934
935 list_for_each_entry_safe(entry, tmp, &batch_list, list) {
936 if (nfqa[NFQA_MARK])
937 entry->skb->mark = ntohl(nla_get_be32(nfqa[NFQA_MARK]));
938 nf_reinject(entry, verdict);
939 }
940 return 0;
941}
942
Harald Welte7af4cc32005-08-09 19:44:15 -0700943static int
944nfqnl_recv_verdict(struct sock *ctnl, struct sk_buff *skb,
Patrick McHardy39938322009-08-25 16:07:58 +0200945 const struct nlmsghdr *nlh,
946 const struct nlattr * const nfqa[])
Harald Welte7af4cc32005-08-09 19:44:15 -0700947{
David S. Miller3da07c02012-06-26 21:35:27 -0700948 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
Harald Welte7af4cc32005-08-09 19:44:15 -0700949 u_int16_t queue_num = ntohs(nfmsg->res_id);
950
951 struct nfqnl_msg_verdict_hdr *vhdr;
952 struct nfqnl_instance *queue;
953 unsigned int verdict;
Patrick McHardy02f014d2007-12-05 01:26:33 -0800954 struct nf_queue_entry *entry;
Pablo Neira Ayuso8c88f872012-06-07 13:31:25 +0200955 enum ip_conntrack_info uninitialized_var(ctinfo);
956 struct nf_conn *ct = NULL;
Harald Welte7af4cc32005-08-09 19:44:15 -0700957
Gao fenge8179612013-03-24 23:50:47 +0000958 struct net *net = sock_net(ctnl);
959 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
Harald Welte7af4cc32005-08-09 19:44:15 -0700960
Gao fenge8179612013-03-24 23:50:47 +0000961 queue = instance_lookup(q, queue_num);
962 if (!queue)
963 queue = verdict_instance_lookup(q, queue_num,
964 NETLINK_CB(skb).portid);
Florian Westphal97d32cf2011-07-19 11:46:33 +0200965 if (IS_ERR(queue))
966 return PTR_ERR(queue);
Harald Welte7af4cc32005-08-09 19:44:15 -0700967
Florian Westphal97d32cf2011-07-19 11:46:33 +0200968 vhdr = verdicthdr_get(nfqa);
969 if (!vhdr)
Eric Dumazet84a797d2011-07-18 16:08:27 +0200970 return -EINVAL;
Harald Welte7af4cc32005-08-09 19:44:15 -0700971
Harald Welte7af4cc32005-08-09 19:44:15 -0700972 verdict = ntohl(vhdr->verdict);
973
Patrick McHardyb43d8d82007-12-05 01:25:30 -0800974 entry = find_dequeue_entry(queue, ntohl(vhdr->id));
Eric Dumazet84a797d2011-07-18 16:08:27 +0200975 if (entry == NULL)
976 return -ENOENT;
Harald Welte7af4cc32005-08-09 19:44:15 -0700977
Pablo Neira Ayusobd077932013-08-07 18:13:20 +0200978 if (nfqa[NFQA_CT]) {
Pablo Neira Ayuso7c622342012-06-19 02:10:57 +0200979 ct = nfqnl_ct_parse(entry->skb, nfqa[NFQA_CT], &ctinfo);
Pablo Neira Ayusobd077932013-08-07 18:13:20 +0200980 if (ct && nfqa[NFQA_EXP]) {
981 nfqnl_attach_expect(ct, nfqa[NFQA_EXP],
982 NETLINK_CB(skb).portid,
983 nlmsg_report(nlh));
984 }
985 }
Pablo Neira Ayuso9cb01762012-06-07 12:13:39 +0200986
Patrick McHardydf6fb862007-09-28 14:37:03 -0700987 if (nfqa[NFQA_PAYLOAD]) {
Pablo Neira Ayuso8c88f872012-06-07 13:31:25 +0200988 u16 payload_len = nla_len(nfqa[NFQA_PAYLOAD]);
989 int diff = payload_len - entry->skb->len;
990
Patrick McHardydf6fb862007-09-28 14:37:03 -0700991 if (nfqnl_mangle(nla_data(nfqa[NFQA_PAYLOAD]),
Pablo Neira Ayuso8c88f872012-06-07 13:31:25 +0200992 payload_len, entry, diff) < 0)
Harald Welte7af4cc32005-08-09 19:44:15 -0700993 verdict = NF_DROP;
Pablo Neira Ayuso8c88f872012-06-07 13:31:25 +0200994
Pablo Neira Ayuso7c622342012-06-19 02:10:57 +0200995 if (ct)
Gao feng0a0d80e2013-09-17 13:03:47 +0200996 nfqnl_ct_seq_adjust(entry->skb, ct, ctinfo, diff);
Harald Welte7af4cc32005-08-09 19:44:15 -0700997 }
998
Patrick McHardydf6fb862007-09-28 14:37:03 -0700999 if (nfqa[NFQA_MARK])
Patrick McHardyea3a66f2007-12-05 01:30:02 -08001000 entry->skb->mark = ntohl(nla_get_be32(nfqa[NFQA_MARK]));
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001001
Patrick McHardy4b3d15e2007-12-05 01:27:02 -08001002 nf_reinject(entry, verdict);
Harald Welte7af4cc32005-08-09 19:44:15 -07001003 return 0;
1004}
1005
1006static int
1007nfqnl_recv_unsupp(struct sock *ctnl, struct sk_buff *skb,
Patrick McHardy39938322009-08-25 16:07:58 +02001008 const struct nlmsghdr *nlh,
1009 const struct nlattr * const nfqa[])
Harald Welte7af4cc32005-08-09 19:44:15 -07001010{
1011 return -ENOTSUPP;
1012}
1013
Patrick McHardy5bf75852007-09-28 14:39:26 -07001014static const struct nla_policy nfqa_cfg_policy[NFQA_CFG_MAX+1] = {
1015 [NFQA_CFG_CMD] = { .len = sizeof(struct nfqnl_msg_config_cmd) },
1016 [NFQA_CFG_PARAMS] = { .len = sizeof(struct nfqnl_msg_config_params) },
Harald Welte838ab632005-08-09 19:50:45 -07001017};
1018
Patrick McHardye3ac5292007-12-05 01:23:57 -08001019static const struct nf_queue_handler nfqh = {
Harald Weltebbd86b9f2005-08-09 20:23:11 -07001020 .outfn = &nfqnl_enqueue_packet,
1021};
1022
Harald Welte7af4cc32005-08-09 19:44:15 -07001023static int
1024nfqnl_recv_config(struct sock *ctnl, struct sk_buff *skb,
Patrick McHardy39938322009-08-25 16:07:58 +02001025 const struct nlmsghdr *nlh,
1026 const struct nlattr * const nfqa[])
Harald Welte7af4cc32005-08-09 19:44:15 -07001027{
David S. Miller3da07c02012-06-26 21:35:27 -07001028 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
Harald Welte7af4cc32005-08-09 19:44:15 -07001029 u_int16_t queue_num = ntohs(nfmsg->res_id);
1030 struct nfqnl_instance *queue;
Patrick McHardy9872bec2007-12-05 01:28:50 -08001031 struct nfqnl_msg_config_cmd *cmd = NULL;
Gao fenge8179612013-03-24 23:50:47 +00001032 struct net *net = sock_net(ctnl);
1033 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
Harald Welte838ab632005-08-09 19:50:45 -07001034 int ret = 0;
Harald Welte7af4cc32005-08-09 19:44:15 -07001035
Patrick McHardy9872bec2007-12-05 01:28:50 -08001036 if (nfqa[NFQA_CFG_CMD]) {
1037 cmd = nla_data(nfqa[NFQA_CFG_CMD]);
1038
Florian Westphal0360ae42012-11-23 06:22:21 +00001039 /* Obsolete commands without queue context */
Patrick McHardy9872bec2007-12-05 01:28:50 -08001040 switch (cmd->command) {
Florian Westphal0360ae42012-11-23 06:22:21 +00001041 case NFQNL_CFG_CMD_PF_BIND: return 0;
1042 case NFQNL_CFG_CMD_PF_UNBIND: return 0;
Patrick McHardy9872bec2007-12-05 01:28:50 -08001043 }
Patrick McHardya3c8e7fd2007-12-05 01:28:30 -08001044 }
1045
Patrick McHardy9872bec2007-12-05 01:28:50 -08001046 rcu_read_lock();
Gao fenge8179612013-03-24 23:50:47 +00001047 queue = instance_lookup(q, queue_num);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001048 if (queue && queue->peer_portid != NETLINK_CB(skb).portid) {
Patrick McHardy9872bec2007-12-05 01:28:50 -08001049 ret = -EPERM;
1050 goto err_out_unlock;
1051 }
Patrick McHardya3c8e7fd2007-12-05 01:28:30 -08001052
Patrick McHardy9872bec2007-12-05 01:28:50 -08001053 if (cmd != NULL) {
Harald Welte7af4cc32005-08-09 19:44:15 -07001054 switch (cmd->command) {
1055 case NFQNL_CFG_CMD_BIND:
Patrick McHardy9872bec2007-12-05 01:28:50 -08001056 if (queue) {
1057 ret = -EBUSY;
1058 goto err_out_unlock;
1059 }
Gao fenge8179612013-03-24 23:50:47 +00001060 queue = instance_create(q, queue_num,
1061 NETLINK_CB(skb).portid);
Patrick McHardybaab2ce2007-12-17 22:41:21 -08001062 if (IS_ERR(queue)) {
1063 ret = PTR_ERR(queue);
Patrick McHardy9872bec2007-12-05 01:28:50 -08001064 goto err_out_unlock;
1065 }
Harald Welte7af4cc32005-08-09 19:44:15 -07001066 break;
1067 case NFQNL_CFG_CMD_UNBIND:
Patrick McHardy9872bec2007-12-05 01:28:50 -08001068 if (!queue) {
1069 ret = -ENODEV;
1070 goto err_out_unlock;
1071 }
Gao fenge8179612013-03-24 23:50:47 +00001072 instance_destroy(q, queue);
Harald Welte7af4cc32005-08-09 19:44:15 -07001073 break;
1074 case NFQNL_CFG_CMD_PF_BIND:
Harald Welte7af4cc32005-08-09 19:44:15 -07001075 case NFQNL_CFG_CMD_PF_UNBIND:
Harald Welte7af4cc32005-08-09 19:44:15 -07001076 break;
1077 default:
Patrick McHardycd21f0a2007-12-17 22:40:19 -08001078 ret = -ENOTSUPP;
Harald Welte838ab632005-08-09 19:50:45 -07001079 break;
Harald Welte7af4cc32005-08-09 19:44:15 -07001080 }
Harald Welte7af4cc32005-08-09 19:44:15 -07001081 }
1082
Patrick McHardydf6fb862007-09-28 14:37:03 -07001083 if (nfqa[NFQA_CFG_PARAMS]) {
Harald Welte7af4cc32005-08-09 19:44:15 -07001084 struct nfqnl_msg_config_params *params;
Harald Welte7af4cc32005-08-09 19:44:15 -07001085
Patrick McHardy406dbfc2006-03-12 20:32:47 -08001086 if (!queue) {
Patrick McHardya3c8e7fd2007-12-05 01:28:30 -08001087 ret = -ENODEV;
Patrick McHardy9872bec2007-12-05 01:28:50 -08001088 goto err_out_unlock;
Patrick McHardy406dbfc2006-03-12 20:32:47 -08001089 }
Patrick McHardydf6fb862007-09-28 14:37:03 -07001090 params = nla_data(nfqa[NFQA_CFG_PARAMS]);
Harald Welte7af4cc32005-08-09 19:44:15 -07001091 nfqnl_set_mode(queue, params->copy_mode,
1092 ntohl(params->copy_range));
1093 }
1094
Patrick McHardydf6fb862007-09-28 14:37:03 -07001095 if (nfqa[NFQA_CFG_QUEUE_MAXLEN]) {
Eric Leblond829e17a2006-11-29 02:35:33 +01001096 __be32 *queue_maxlen;
Patrick McHardya3c8e7fd2007-12-05 01:28:30 -08001097
1098 if (!queue) {
1099 ret = -ENODEV;
Patrick McHardy9872bec2007-12-05 01:28:50 -08001100 goto err_out_unlock;
Patrick McHardya3c8e7fd2007-12-05 01:28:30 -08001101 }
Patrick McHardydf6fb862007-09-28 14:37:03 -07001102 queue_maxlen = nla_data(nfqa[NFQA_CFG_QUEUE_MAXLEN]);
Eric Leblond829e17a2006-11-29 02:35:33 +01001103 spin_lock_bh(&queue->lock);
1104 queue->queue_maxlen = ntohl(*queue_maxlen);
1105 spin_unlock_bh(&queue->lock);
1106 }
1107
Krishna Kumarfdb694a2012-05-24 03:56:44 +00001108 if (nfqa[NFQA_CFG_FLAGS]) {
1109 __u32 flags, mask;
1110
1111 if (!queue) {
1112 ret = -ENODEV;
1113 goto err_out_unlock;
1114 }
1115
1116 if (!nfqa[NFQA_CFG_MASK]) {
1117 /* A mask is needed to specify which flags are being
1118 * changed.
1119 */
1120 ret = -EINVAL;
1121 goto err_out_unlock;
1122 }
1123
1124 flags = ntohl(nla_get_be32(nfqa[NFQA_CFG_FLAGS]));
1125 mask = ntohl(nla_get_be32(nfqa[NFQA_CFG_MASK]));
1126
Krishna Kumar46ba5a22012-06-27 00:59:56 +00001127 if (flags >= NFQA_CFG_F_MAX) {
1128 ret = -EOPNOTSUPP;
1129 goto err_out_unlock;
1130 }
1131
Krishna Kumarfdb694a2012-05-24 03:56:44 +00001132 spin_lock_bh(&queue->lock);
1133 queue->flags &= ~mask;
1134 queue->flags |= flags & mask;
1135 spin_unlock_bh(&queue->lock);
1136 }
1137
Patrick McHardy9872bec2007-12-05 01:28:50 -08001138err_out_unlock:
1139 rcu_read_unlock();
Harald Welte838ab632005-08-09 19:50:45 -07001140 return ret;
Harald Welte7af4cc32005-08-09 19:44:15 -07001141}
1142
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -07001143static const struct nfnl_callback nfqnl_cb[NFQNL_MSG_MAX] = {
Eric Dumazet84a797d2011-07-18 16:08:27 +02001144 [NFQNL_MSG_PACKET] = { .call_rcu = nfqnl_recv_unsupp,
Harald Welte37d2e7a2005-11-14 15:24:59 -08001145 .attr_count = NFQA_MAX, },
Eric Dumazet84a797d2011-07-18 16:08:27 +02001146 [NFQNL_MSG_VERDICT] = { .call_rcu = nfqnl_recv_verdict,
Patrick McHardy5bf75852007-09-28 14:39:26 -07001147 .attr_count = NFQA_MAX,
1148 .policy = nfqa_verdict_policy },
Harald Welte7af4cc32005-08-09 19:44:15 -07001149 [NFQNL_MSG_CONFIG] = { .call = nfqnl_recv_config,
Patrick McHardy5bf75852007-09-28 14:39:26 -07001150 .attr_count = NFQA_CFG_MAX,
1151 .policy = nfqa_cfg_policy },
Florian Westphal97d32cf2011-07-19 11:46:33 +02001152 [NFQNL_MSG_VERDICT_BATCH]={ .call_rcu = nfqnl_recv_verdict_batch,
1153 .attr_count = NFQA_MAX,
1154 .policy = nfqa_verdict_batch_policy },
Harald Welte7af4cc32005-08-09 19:44:15 -07001155};
1156
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -07001157static const struct nfnetlink_subsystem nfqnl_subsys = {
Harald Welte7af4cc32005-08-09 19:44:15 -07001158 .name = "nf_queue",
1159 .subsys_id = NFNL_SUBSYS_QUEUE,
1160 .cb_count = NFQNL_MSG_MAX,
Harald Welte7af4cc32005-08-09 19:44:15 -07001161 .cb = nfqnl_cb,
1162};
1163
Harald Welte838ab632005-08-09 19:50:45 -07001164#ifdef CONFIG_PROC_FS
1165struct iter_state {
Gao fenge8179612013-03-24 23:50:47 +00001166 struct seq_net_private p;
Harald Welte838ab632005-08-09 19:50:45 -07001167 unsigned int bucket;
1168};
1169
1170static struct hlist_node *get_first(struct seq_file *seq)
1171{
1172 struct iter_state *st = seq->private;
Gao fenge8179612013-03-24 23:50:47 +00001173 struct net *net;
1174 struct nfnl_queue_net *q;
Harald Welte838ab632005-08-09 19:50:45 -07001175
1176 if (!st)
1177 return NULL;
1178
Gao fenge8179612013-03-24 23:50:47 +00001179 net = seq_file_net(seq);
1180 q = nfnl_queue_pernet(net);
Harald Welte838ab632005-08-09 19:50:45 -07001181 for (st->bucket = 0; st->bucket < INSTANCE_BUCKETS; st->bucket++) {
Gao fenge8179612013-03-24 23:50:47 +00001182 if (!hlist_empty(&q->instance_table[st->bucket]))
1183 return q->instance_table[st->bucket].first;
Harald Welte838ab632005-08-09 19:50:45 -07001184 }
1185 return NULL;
1186}
1187
1188static struct hlist_node *get_next(struct seq_file *seq, struct hlist_node *h)
1189{
1190 struct iter_state *st = seq->private;
Gao fenge8179612013-03-24 23:50:47 +00001191 struct net *net = seq_file_net(seq);
Harald Welte838ab632005-08-09 19:50:45 -07001192
1193 h = h->next;
1194 while (!h) {
Gao fenge8179612013-03-24 23:50:47 +00001195 struct nfnl_queue_net *q;
1196
Harald Welte838ab632005-08-09 19:50:45 -07001197 if (++st->bucket >= INSTANCE_BUCKETS)
1198 return NULL;
1199
Gao fenge8179612013-03-24 23:50:47 +00001200 q = nfnl_queue_pernet(net);
1201 h = q->instance_table[st->bucket].first;
Harald Welte838ab632005-08-09 19:50:45 -07001202 }
1203 return h;
1204}
1205
1206static struct hlist_node *get_idx(struct seq_file *seq, loff_t pos)
1207{
1208 struct hlist_node *head;
1209 head = get_first(seq);
1210
1211 if (head)
1212 while (pos && (head = get_next(seq, head)))
1213 pos--;
1214 return pos ? NULL : head;
1215}
1216
Gao fenge8179612013-03-24 23:50:47 +00001217static void *seq_start(struct seq_file *s, loff_t *pos)
1218 __acquires(nfnl_queue_pernet(seq_file_net(s))->instances_lock)
Harald Welte838ab632005-08-09 19:50:45 -07001219{
Gao fenge8179612013-03-24 23:50:47 +00001220 spin_lock(&nfnl_queue_pernet(seq_file_net(s))->instances_lock);
1221 return get_idx(s, *pos);
Harald Welte838ab632005-08-09 19:50:45 -07001222}
1223
1224static void *seq_next(struct seq_file *s, void *v, loff_t *pos)
1225{
1226 (*pos)++;
1227 return get_next(s, v);
1228}
1229
1230static void seq_stop(struct seq_file *s, void *v)
Gao fenge8179612013-03-24 23:50:47 +00001231 __releases(nfnl_queue_pernet(seq_file_net(s))->instances_lock)
Harald Welte838ab632005-08-09 19:50:45 -07001232{
Gao fenge8179612013-03-24 23:50:47 +00001233 spin_unlock(&nfnl_queue_pernet(seq_file_net(s))->instances_lock);
Harald Welte838ab632005-08-09 19:50:45 -07001234}
1235
1236static int seq_show(struct seq_file *s, void *v)
1237{
1238 const struct nfqnl_instance *inst = v;
1239
1240 return seq_printf(s, "%5d %6d %5d %1d %5d %5d %5d %8d %2d\n",
1241 inst->queue_num,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001242 inst->peer_portid, inst->queue_total,
Harald Welte838ab632005-08-09 19:50:45 -07001243 inst->copy_mode, inst->copy_range,
1244 inst->queue_dropped, inst->queue_user_dropped,
Eric Dumazet58637022011-07-19 11:44:17 +02001245 inst->id_sequence, 1);
Harald Welte838ab632005-08-09 19:50:45 -07001246}
1247
Philippe De Muyter56b3d972007-07-10 23:07:31 -07001248static const struct seq_operations nfqnl_seq_ops = {
Harald Welte838ab632005-08-09 19:50:45 -07001249 .start = seq_start,
1250 .next = seq_next,
1251 .stop = seq_stop,
1252 .show = seq_show,
1253};
1254
1255static int nfqnl_open(struct inode *inode, struct file *file)
1256{
Gao fenge8179612013-03-24 23:50:47 +00001257 return seq_open_net(inode, file, &nfqnl_seq_ops,
Pavel Emelyanove2da5912007-10-10 02:29:58 -07001258 sizeof(struct iter_state));
Harald Welte838ab632005-08-09 19:50:45 -07001259}
1260
Arjan van de Venda7071d2007-02-12 00:55:36 -08001261static const struct file_operations nfqnl_file_ops = {
Harald Welte838ab632005-08-09 19:50:45 -07001262 .owner = THIS_MODULE,
1263 .open = nfqnl_open,
1264 .read = seq_read,
1265 .llseek = seq_lseek,
Gao fenge8179612013-03-24 23:50:47 +00001266 .release = seq_release_net,
Harald Welte838ab632005-08-09 19:50:45 -07001267};
1268
1269#endif /* PROC_FS */
1270
Gao fenge8179612013-03-24 23:50:47 +00001271static int __net_init nfnl_queue_net_init(struct net *net)
Harald Welte7af4cc32005-08-09 19:44:15 -07001272{
Gao fenge8179612013-03-24 23:50:47 +00001273 unsigned int i;
1274 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001275
Harald Welte838ab632005-08-09 19:50:45 -07001276 for (i = 0; i < INSTANCE_BUCKETS; i++)
Gao fenge8179612013-03-24 23:50:47 +00001277 INIT_HLIST_HEAD(&q->instance_table[i]);
1278
1279 spin_lock_init(&q->instances_lock);
1280
1281#ifdef CONFIG_PROC_FS
1282 if (!proc_create("nfnetlink_queue", 0440,
1283 net->nf.proc_netfilter, &nfqnl_file_ops))
1284 return -ENOMEM;
1285#endif
1286 return 0;
1287}
1288
1289static void __net_exit nfnl_queue_net_exit(struct net *net)
1290{
Pablo Neira Ayusoe778f562013-04-30 08:01:18 +00001291#ifdef CONFIG_PROC_FS
Gao fenge8179612013-03-24 23:50:47 +00001292 remove_proc_entry("nfnetlink_queue", net->nf.proc_netfilter);
Pablo Neira Ayusoe778f562013-04-30 08:01:18 +00001293#endif
Gao fenge8179612013-03-24 23:50:47 +00001294}
1295
1296static struct pernet_operations nfnl_queue_net_ops = {
1297 .init = nfnl_queue_net_init,
1298 .exit = nfnl_queue_net_exit,
1299 .id = &nfnl_queue_net_id,
1300 .size = sizeof(struct nfnl_queue_net),
1301};
1302
1303static int __init nfnetlink_queue_init(void)
1304{
1305 int status = -ENOMEM;
Harald Welte838ab632005-08-09 19:50:45 -07001306
Harald Welte7af4cc32005-08-09 19:44:15 -07001307 netlink_register_notifier(&nfqnl_rtnl_notifier);
1308 status = nfnetlink_subsys_register(&nfqnl_subsys);
1309 if (status < 0) {
Gao fenge8179612013-03-24 23:50:47 +00001310 pr_err("nf_queue: failed to create netlink socket\n");
Harald Welte7af4cc32005-08-09 19:44:15 -07001311 goto cleanup_netlink_notifier;
1312 }
1313
Gao fenge8179612013-03-24 23:50:47 +00001314 status = register_pernet_subsys(&nfnl_queue_net_ops);
1315 if (status < 0) {
1316 pr_err("nf_queue: failed to register pernet ops\n");
Harald Welte838ab632005-08-09 19:50:45 -07001317 goto cleanup_subsys;
Gao fenge8179612013-03-24 23:50:47 +00001318 }
Harald Welte7af4cc32005-08-09 19:44:15 -07001319 register_netdevice_notifier(&nfqnl_dev_notifier);
Florian Westphal0360ae42012-11-23 06:22:21 +00001320 nf_register_queue_handler(&nfqh);
Harald Welte7af4cc32005-08-09 19:44:15 -07001321 return status;
1322
Harald Welte838ab632005-08-09 19:50:45 -07001323cleanup_subsys:
Harald Welte7af4cc32005-08-09 19:44:15 -07001324 nfnetlink_subsys_unregister(&nfqnl_subsys);
Harald Welte7af4cc32005-08-09 19:44:15 -07001325cleanup_netlink_notifier:
1326 netlink_unregister_notifier(&nfqnl_rtnl_notifier);
1327 return status;
1328}
1329
Andrew Morton65b4b4e2006-03-28 16:37:06 -08001330static void __exit nfnetlink_queue_fini(void)
Harald Welte7af4cc32005-08-09 19:44:15 -07001331{
Florian Westphal0360ae42012-11-23 06:22:21 +00001332 nf_unregister_queue_handler();
Patrick McHardy32292a72006-04-06 14:11:30 -07001333 unregister_netdevice_notifier(&nfqnl_dev_notifier);
Gao fenge8179612013-03-24 23:50:47 +00001334 unregister_pernet_subsys(&nfnl_queue_net_ops);
Patrick McHardy32292a72006-04-06 14:11:30 -07001335 nfnetlink_subsys_unregister(&nfqnl_subsys);
1336 netlink_unregister_notifier(&nfqnl_rtnl_notifier);
Jesper Dangaard Brouer67137f32009-06-08 03:11:33 +00001337
1338 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Harald Welte7af4cc32005-08-09 19:44:15 -07001339}
1340
1341MODULE_DESCRIPTION("netfilter packet queue handler");
1342MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
1343MODULE_LICENSE("GPL");
1344MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_QUEUE);
1345
Andrew Morton65b4b4e2006-03-28 16:37:06 -08001346module_init(nfnetlink_queue_init);
1347module_exit(nfnetlink_queue_fini);