blob: 4162437b83614e380a70d5f4fe2a94e76a4d0a0d [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>
Patrick McHardyc01cd422007-12-05 01:24:48 -080032#include <net/netfilter/nf_queue.h>
Harald Welte7af4cc32005-08-09 19:44:15 -070033
Arun Sharma600634972011-07-26 16:09:06 -070034#include <linux/atomic.h>
Harald Welte7af4cc32005-08-09 19:44:15 -070035
Harald Weltefbcd9232005-08-09 20:22:10 -070036#ifdef CONFIG_BRIDGE_NETFILTER
37#include "../bridge/br_private.h"
38#endif
39
Harald Welte7af4cc32005-08-09 19:44:15 -070040#define NFQNL_QMAX_DEFAULT 1024
41
Harald Welte7af4cc32005-08-09 19:44:15 -070042struct nfqnl_instance {
43 struct hlist_node hlist; /* global list of queues */
Patrick McHardy9872bec2007-12-05 01:28:50 -080044 struct rcu_head rcu;
Harald Welte7af4cc32005-08-09 19:44:15 -070045
46 int peer_pid;
47 unsigned int queue_maxlen;
48 unsigned int copy_range;
Harald Welte7af4cc32005-08-09 19:44:15 -070049 unsigned int queue_dropped;
50 unsigned int queue_user_dropped;
51
Harald Welte7af4cc32005-08-09 19:44:15 -070052
53 u_int16_t queue_num; /* number of this queue */
54 u_int8_t copy_mode;
Eric Dumazetc463ac92010-06-09 18:07:06 +020055/*
56 * Following fields are dirtied for each queued packet,
57 * keep them in same cache line if possible.
58 */
59 spinlock_t lock;
60 unsigned int queue_total;
Eric Dumazet58637022011-07-19 11:44:17 +020061 unsigned int id_sequence; /* 'sequence' of pkt ids */
Harald Welte7af4cc32005-08-09 19:44:15 -070062 struct list_head queue_list; /* packets in queue */
63};
64
Patrick McHardy02f014d2007-12-05 01:26:33 -080065typedef int (*nfqnl_cmpfn)(struct nf_queue_entry *, unsigned long);
Harald Welte7af4cc32005-08-09 19:44:15 -070066
Patrick McHardy9872bec2007-12-05 01:28:50 -080067static DEFINE_SPINLOCK(instances_lock);
Harald Welte7af4cc32005-08-09 19:44:15 -070068
Harald Welte7af4cc32005-08-09 19:44:15 -070069#define INSTANCE_BUCKETS 16
Patrick McHardy9d6023a2007-12-05 01:29:38 -080070static struct hlist_head instance_table[INSTANCE_BUCKETS] __read_mostly;
Harald Welte7af4cc32005-08-09 19:44:15 -070071
72static inline u_int8_t instance_hashfn(u_int16_t queue_num)
73{
74 return ((queue_num >> 8) | queue_num) % INSTANCE_BUCKETS;
75}
76
77static struct nfqnl_instance *
Patrick McHardy9872bec2007-12-05 01:28:50 -080078instance_lookup(u_int16_t queue_num)
Harald Welte7af4cc32005-08-09 19:44:15 -070079{
80 struct hlist_head *head;
81 struct hlist_node *pos;
82 struct nfqnl_instance *inst;
83
84 head = &instance_table[instance_hashfn(queue_num)];
Patrick McHardy9872bec2007-12-05 01:28:50 -080085 hlist_for_each_entry_rcu(inst, pos, head, hlist) {
Harald Welte7af4cc32005-08-09 19:44:15 -070086 if (inst->queue_num == queue_num)
87 return inst;
88 }
89 return NULL;
90}
91
92static struct nfqnl_instance *
Harald Welte7af4cc32005-08-09 19:44:15 -070093instance_create(u_int16_t queue_num, int pid)
94{
Patrick McHardybaab2ce2007-12-17 22:41:21 -080095 struct nfqnl_instance *inst;
Patrick McHardy9872bec2007-12-05 01:28:50 -080096 unsigned int h;
Patrick McHardybaab2ce2007-12-17 22:41:21 -080097 int err;
Harald Welte7af4cc32005-08-09 19:44:15 -070098
Patrick McHardy9872bec2007-12-05 01:28:50 -080099 spin_lock(&instances_lock);
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800100 if (instance_lookup(queue_num)) {
101 err = -EEXIST;
Harald Welte7af4cc32005-08-09 19:44:15 -0700102 goto out_unlock;
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800103 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700104
Harald Welte10dfdc62005-11-03 19:20:07 +0100105 inst = kzalloc(sizeof(*inst), GFP_ATOMIC);
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800106 if (!inst) {
107 err = -ENOMEM;
Harald Welte7af4cc32005-08-09 19:44:15 -0700108 goto out_unlock;
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800109 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700110
Harald Welte7af4cc32005-08-09 19:44:15 -0700111 inst->queue_num = queue_num;
112 inst->peer_pid = pid;
113 inst->queue_maxlen = NFQNL_QMAX_DEFAULT;
114 inst->copy_range = 0xfffff;
115 inst->copy_mode = NFQNL_COPY_NONE;
YOSHIFUJI Hideaki181a46a2006-01-04 13:56:54 -0800116 spin_lock_init(&inst->lock);
Harald Welte7af4cc32005-08-09 19:44:15 -0700117 INIT_LIST_HEAD(&inst->queue_list);
118
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800119 if (!try_module_get(THIS_MODULE)) {
120 err = -EAGAIN;
Harald Welte7af4cc32005-08-09 19:44:15 -0700121 goto out_free;
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800122 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700123
Patrick McHardy9872bec2007-12-05 01:28:50 -0800124 h = instance_hashfn(queue_num);
125 hlist_add_head_rcu(&inst->hlist, &instance_table[h]);
Harald Welte7af4cc32005-08-09 19:44:15 -0700126
Patrick McHardy9872bec2007-12-05 01:28:50 -0800127 spin_unlock(&instances_lock);
Harald Welte7af4cc32005-08-09 19:44:15 -0700128
Harald Welte7af4cc32005-08-09 19:44:15 -0700129 return inst;
130
131out_free:
132 kfree(inst);
133out_unlock:
Patrick McHardy9872bec2007-12-05 01:28:50 -0800134 spin_unlock(&instances_lock);
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800135 return ERR_PTR(err);
Harald Welte7af4cc32005-08-09 19:44:15 -0700136}
137
Patrick McHardyb43d8d82007-12-05 01:25:30 -0800138static void nfqnl_flush(struct nfqnl_instance *queue, nfqnl_cmpfn cmpfn,
139 unsigned long data);
Harald Welte7af4cc32005-08-09 19:44:15 -0700140
141static void
Patrick McHardy9872bec2007-12-05 01:28:50 -0800142instance_destroy_rcu(struct rcu_head *head)
Harald Welte7af4cc32005-08-09 19:44:15 -0700143{
Patrick McHardy9872bec2007-12-05 01:28:50 -0800144 struct nfqnl_instance *inst = container_of(head, struct nfqnl_instance,
145 rcu);
Harald Welte7af4cc32005-08-09 19:44:15 -0700146
Patrick McHardyb43d8d82007-12-05 01:25:30 -0800147 nfqnl_flush(inst, NULL, 0);
Patrick McHardy9872bec2007-12-05 01:28:50 -0800148 kfree(inst);
Harald Welte7af4cc32005-08-09 19:44:15 -0700149 module_put(THIS_MODULE);
150}
151
Patrick McHardy9872bec2007-12-05 01:28:50 -0800152static void
Harald Welte7af4cc32005-08-09 19:44:15 -0700153__instance_destroy(struct nfqnl_instance *inst)
154{
Patrick McHardy9872bec2007-12-05 01:28:50 -0800155 hlist_del_rcu(&inst->hlist);
156 call_rcu(&inst->rcu, instance_destroy_rcu);
Harald Welte7af4cc32005-08-09 19:44:15 -0700157}
158
Patrick McHardy9872bec2007-12-05 01:28:50 -0800159static void
Harald Welte7af4cc32005-08-09 19:44:15 -0700160instance_destroy(struct nfqnl_instance *inst)
161{
Patrick McHardy9872bec2007-12-05 01:28:50 -0800162 spin_lock(&instances_lock);
163 __instance_destroy(inst);
164 spin_unlock(&instances_lock);
Harald Welte7af4cc32005-08-09 19:44:15 -0700165}
166
Harald Welte7af4cc32005-08-09 19:44:15 -0700167static inline void
Patrick McHardy02f014d2007-12-05 01:26:33 -0800168__enqueue_entry(struct nfqnl_instance *queue, struct nf_queue_entry *entry)
Harald Welte7af4cc32005-08-09 19:44:15 -0700169{
Patrick McHardy0ac41e82007-12-05 01:25:03 -0800170 list_add_tail(&entry->list, &queue->queue_list);
Harald Welte7af4cc32005-08-09 19:44:15 -0700171 queue->queue_total++;
172}
173
Florian Westphal97d32cf2011-07-19 11:46:33 +0200174static void
175__dequeue_entry(struct nfqnl_instance *queue, struct nf_queue_entry *entry)
176{
177 list_del(&entry->list);
178 queue->queue_total--;
179}
180
Patrick McHardy02f014d2007-12-05 01:26:33 -0800181static struct nf_queue_entry *
Patrick McHardyb43d8d82007-12-05 01:25:30 -0800182find_dequeue_entry(struct nfqnl_instance *queue, unsigned int id)
Harald Welte7af4cc32005-08-09 19:44:15 -0700183{
Patrick McHardy02f014d2007-12-05 01:26:33 -0800184 struct nf_queue_entry *entry = NULL, *i;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800185
Harald Welte7af4cc32005-08-09 19:44:15 -0700186 spin_lock_bh(&queue->lock);
Patrick McHardyb43d8d82007-12-05 01:25:30 -0800187
188 list_for_each_entry(i, &queue->queue_list, list) {
189 if (i->id == id) {
190 entry = i;
191 break;
192 }
193 }
194
Florian Westphal97d32cf2011-07-19 11:46:33 +0200195 if (entry)
196 __dequeue_entry(queue, entry);
Patrick McHardyb43d8d82007-12-05 01:25:30 -0800197
Harald Welte7af4cc32005-08-09 19:44:15 -0700198 spin_unlock_bh(&queue->lock);
199
200 return entry;
201}
202
203static void
Patrick McHardyb43d8d82007-12-05 01:25:30 -0800204nfqnl_flush(struct nfqnl_instance *queue, nfqnl_cmpfn cmpfn, unsigned long data)
Harald Welte7af4cc32005-08-09 19:44:15 -0700205{
Patrick McHardy02f014d2007-12-05 01:26:33 -0800206 struct nf_queue_entry *entry, *next;
Patrick McHardyb43d8d82007-12-05 01:25:30 -0800207
Harald Welte7af4cc32005-08-09 19:44:15 -0700208 spin_lock_bh(&queue->lock);
Patrick McHardyb43d8d82007-12-05 01:25:30 -0800209 list_for_each_entry_safe(entry, next, &queue->queue_list, list) {
210 if (!cmpfn || cmpfn(entry, data)) {
211 list_del(&entry->list);
212 queue->queue_total--;
Patrick McHardy4b3d15e2007-12-05 01:27:02 -0800213 nf_reinject(entry, NF_DROP);
Patrick McHardyb43d8d82007-12-05 01:25:30 -0800214 }
215 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700216 spin_unlock_bh(&queue->lock);
217}
218
219static struct sk_buff *
220nfqnl_build_packet_message(struct nfqnl_instance *queue,
Eric Dumazet58637022011-07-19 11:44:17 +0200221 struct nf_queue_entry *entry,
222 __be32 **packet_id_ptr)
Harald Welte7af4cc32005-08-09 19:44:15 -0700223{
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700224 sk_buff_data_t old_tail;
Harald Welte7af4cc32005-08-09 19:44:15 -0700225 size_t size;
226 size_t data_len = 0;
227 struct sk_buff *skb;
Eric Dumazet58637022011-07-19 11:44:17 +0200228 struct nlattr *nla;
229 struct nfqnl_msg_packet_hdr *pmsg;
Harald Welte7af4cc32005-08-09 19:44:15 -0700230 struct nlmsghdr *nlh;
231 struct nfgenmsg *nfmsg;
Jesper Juhl3e4ead42006-01-05 12:15:58 -0800232 struct sk_buff *entskb = entry->skb;
233 struct net_device *indev;
234 struct net_device *outdev;
Harald Welte7af4cc32005-08-09 19:44:15 -0700235
Eric Leblondcabaa9b2008-03-10 16:41:43 -0700236 size = NLMSG_SPACE(sizeof(struct nfgenmsg))
Patrick McHardydf6fb862007-09-28 14:37:03 -0700237 + nla_total_size(sizeof(struct nfqnl_msg_packet_hdr))
238 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
239 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
Harald Weltefbcd9232005-08-09 20:22:10 -0700240#ifdef CONFIG_BRIDGE_NETFILTER
Patrick McHardydf6fb862007-09-28 14:37:03 -0700241 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
242 + nla_total_size(sizeof(u_int32_t)) /* ifindex */
Harald Weltefbcd9232005-08-09 20:22:10 -0700243#endif
Patrick McHardydf6fb862007-09-28 14:37:03 -0700244 + nla_total_size(sizeof(u_int32_t)) /* mark */
245 + nla_total_size(sizeof(struct nfqnl_msg_packet_hw))
246 + nla_total_size(sizeof(struct nfqnl_msg_packet_timestamp));
Harald Welte7af4cc32005-08-09 19:44:15 -0700247
Patrick McHardy02f014d2007-12-05 01:26:33 -0800248 outdev = entry->outdev;
Jesper Juhl3e4ead42006-01-05 12:15:58 -0800249
Eric Dumazetc463ac92010-06-09 18:07:06 +0200250 switch ((enum nfqnl_config_mode)ACCESS_ONCE(queue->copy_mode)) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700251 case NFQNL_COPY_META:
252 case NFQNL_COPY_NONE:
Harald Welte7af4cc32005-08-09 19:44:15 -0700253 break;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800254
Harald Welte7af4cc32005-08-09 19:44:15 -0700255 case NFQNL_COPY_PACKET:
Herbert Xue9f13ca2010-04-08 14:54:35 +0200256 if (entskb->ip_summed == CHECKSUM_PARTIAL &&
Eric Dumazetc463ac92010-06-09 18:07:06 +0200257 skb_checksum_help(entskb))
Patrick McHardye7dfb092005-09-06 15:10:00 -0700258 return NULL;
Eric Dumazetc463ac92010-06-09 18:07:06 +0200259
260 data_len = ACCESS_ONCE(queue->copy_range);
261 if (data_len == 0 || data_len > entskb->len)
Jesper Juhl3e4ead42006-01-05 12:15:58 -0800262 data_len = entskb->len;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800263
Patrick McHardydf6fb862007-09-28 14:37:03 -0700264 size += nla_total_size(data_len);
Harald Welte7af4cc32005-08-09 19:44:15 -0700265 break;
Harald Welte7af4cc32005-08-09 19:44:15 -0700266 }
267
Harald Welte7af4cc32005-08-09 19:44:15 -0700268
269 skb = alloc_skb(size, GFP_ATOMIC);
270 if (!skb)
271 goto nlmsg_failure;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800272
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700273 old_tail = skb->tail;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800274 nlh = NLMSG_PUT(skb, 0, 0,
Harald Welte7af4cc32005-08-09 19:44:15 -0700275 NFNL_SUBSYS_QUEUE << 8 | NFQNL_MSG_PACKET,
276 sizeof(struct nfgenmsg));
277 nfmsg = NLMSG_DATA(nlh);
Patrick McHardy02f014d2007-12-05 01:26:33 -0800278 nfmsg->nfgen_family = entry->pf;
Harald Welte7af4cc32005-08-09 19:44:15 -0700279 nfmsg->version = NFNETLINK_V0;
280 nfmsg->res_id = htons(queue->queue_num);
281
Eric Dumazet58637022011-07-19 11:44:17 +0200282 nla = __nla_reserve(skb, NFQA_PACKET_HDR, sizeof(*pmsg));
283 pmsg = nla_data(nla);
284 pmsg->hw_protocol = entskb->protocol;
285 pmsg->hook = entry->hook;
286 *packet_id_ptr = &pmsg->packet_id;
Harald Welte7af4cc32005-08-09 19:44:15 -0700287
Patrick McHardy02f014d2007-12-05 01:26:33 -0800288 indev = entry->indev;
Jesper Juhl3e4ead42006-01-05 12:15:58 -0800289 if (indev) {
Harald Weltefbcd9232005-08-09 20:22:10 -0700290#ifndef CONFIG_BRIDGE_NETFILTER
David S. Millera4471892012-03-29 23:27:38 -0400291 if (nla_put_be32(skb, NFQA_IFINDEX_INDEV, htonl(indev->ifindex)))
292 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700293#else
Patrick McHardy02f014d2007-12-05 01:26:33 -0800294 if (entry->pf == PF_BRIDGE) {
Harald Weltefbcd9232005-08-09 20:22:10 -0700295 /* Case 1: indev is physical input device, we need to
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800296 * look for bridge group (when called from
Harald Weltefbcd9232005-08-09 20:22:10 -0700297 * netfilter_bridge) */
David S. Millera4471892012-03-29 23:27:38 -0400298 if (nla_put_be32(skb, NFQA_IFINDEX_PHYSINDEV,
299 htonl(indev->ifindex)) ||
Harald Weltefbcd9232005-08-09 20:22:10 -0700300 /* this is the bridge group "brX" */
Jiri Pirkof350a0a82010-06-15 06:50:45 +0000301 /* rcu_read_lock()ed by __nf_queue */
David S. Millera4471892012-03-29 23:27:38 -0400302 nla_put_be32(skb, NFQA_IFINDEX_INDEV,
303 htonl(br_port_get_rcu(indev)->br->dev->ifindex)))
304 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700305 } else {
306 /* Case 2: indev is bridge group, we need to look for
307 * physical device (when called from ipv4) */
David S. Millera4471892012-03-29 23:27:38 -0400308 if (nla_put_be32(skb, NFQA_IFINDEX_INDEV,
309 htonl(indev->ifindex)))
310 goto nla_put_failure;
311 if (entskb->nf_bridge && entskb->nf_bridge->physindev &&
312 nla_put_be32(skb, NFQA_IFINDEX_PHYSINDEV,
313 htonl(entskb->nf_bridge->physindev->ifindex)))
314 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700315 }
316#endif
Harald Welte7af4cc32005-08-09 19:44:15 -0700317 }
318
Jesper Juhl3e4ead42006-01-05 12:15:58 -0800319 if (outdev) {
Harald Weltefbcd9232005-08-09 20:22:10 -0700320#ifndef CONFIG_BRIDGE_NETFILTER
David S. Millera4471892012-03-29 23:27:38 -0400321 if (nla_put_be32(skb, NFQA_IFINDEX_OUTDEV, htonl(outdev->ifindex)))
322 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700323#else
Patrick McHardy02f014d2007-12-05 01:26:33 -0800324 if (entry->pf == PF_BRIDGE) {
Harald Weltefbcd9232005-08-09 20:22:10 -0700325 /* Case 1: outdev is physical output device, we need to
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800326 * look for bridge group (when called from
Harald Weltefbcd9232005-08-09 20:22:10 -0700327 * netfilter_bridge) */
David S. Millera4471892012-03-29 23:27:38 -0400328 if (nla_put_be32(skb, NFQA_IFINDEX_PHYSOUTDEV,
329 htonl(outdev->ifindex)) ||
Harald Weltefbcd9232005-08-09 20:22:10 -0700330 /* this is the bridge group "brX" */
Jiri Pirkof350a0a82010-06-15 06:50:45 +0000331 /* rcu_read_lock()ed by __nf_queue */
David S. Millera4471892012-03-29 23:27:38 -0400332 nla_put_be32(skb, NFQA_IFINDEX_OUTDEV,
333 htonl(br_port_get_rcu(outdev)->br->dev->ifindex)))
334 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700335 } else {
336 /* Case 2: outdev is bridge group, we need to look for
337 * physical output device (when called from ipv4) */
David S. Millera4471892012-03-29 23:27:38 -0400338 if (nla_put_be32(skb, NFQA_IFINDEX_OUTDEV,
339 htonl(outdev->ifindex)))
340 goto nla_put_failure;
341 if (entskb->nf_bridge && entskb->nf_bridge->physoutdev &&
342 nla_put_be32(skb, NFQA_IFINDEX_PHYSOUTDEV,
343 htonl(entskb->nf_bridge->physoutdev->ifindex)))
344 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700345 }
346#endif
Harald Welte7af4cc32005-08-09 19:44:15 -0700347 }
348
David S. Millera4471892012-03-29 23:27:38 -0400349 if (entskb->mark &&
350 nla_put_be32(skb, NFQA_MARK, htonl(entskb->mark)))
351 goto nla_put_failure;
Harald Welte7af4cc32005-08-09 19:44:15 -0700352
Nicolas Cavallari2c38de42011-06-16 17:27:04 +0200353 if (indev && entskb->dev &&
354 entskb->mac_header != entskb->network_header) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700355 struct nfqnl_msg_packet_hw phw;
Stephen Hemmingerb95cce32007-09-26 22:13:38 -0700356 int len = dev_parse_header(entskb, phw.hw_addr);
357 if (len) {
358 phw.hw_addrlen = htons(len);
David S. Millera4471892012-03-29 23:27:38 -0400359 if (nla_put(skb, NFQA_HWADDR, sizeof(phw), &phw))
360 goto nla_put_failure;
Stephen Hemmingerb95cce32007-09-26 22:13:38 -0700361 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700362 }
363
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700364 if (entskb->tstamp.tv64) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700365 struct nfqnl_msg_packet_timestamp ts;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700366 struct timeval tv = ktime_to_timeval(entskb->tstamp);
367 ts.sec = cpu_to_be64(tv.tv_sec);
368 ts.usec = cpu_to_be64(tv.tv_usec);
Harald Welte7af4cc32005-08-09 19:44:15 -0700369
David S. Millera4471892012-03-29 23:27:38 -0400370 if (nla_put(skb, NFQA_TIMESTAMP, sizeof(ts), &ts))
371 goto nla_put_failure;
Harald Welte7af4cc32005-08-09 19:44:15 -0700372 }
373
374 if (data_len) {
Patrick McHardydf6fb862007-09-28 14:37:03 -0700375 struct nlattr *nla;
Eric Dumazetca7c48c2008-01-31 03:53:27 -0800376 int sz = nla_attr_size(data_len);
Harald Welte7af4cc32005-08-09 19:44:15 -0700377
Patrick McHardydf6fb862007-09-28 14:37:03 -0700378 if (skb_tailroom(skb) < nla_total_size(data_len)) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700379 printk(KERN_WARNING "nf_queue: no tailroom!\n");
380 goto nlmsg_failure;
381 }
382
Patrick McHardydf6fb862007-09-28 14:37:03 -0700383 nla = (struct nlattr *)skb_put(skb, nla_total_size(data_len));
384 nla->nla_type = NFQA_PAYLOAD;
Eric Dumazetca7c48c2008-01-31 03:53:27 -0800385 nla->nla_len = sz;
Harald Welte7af4cc32005-08-09 19:44:15 -0700386
Patrick McHardydf6fb862007-09-28 14:37:03 -0700387 if (skb_copy_bits(entskb, 0, nla_data(nla), data_len))
Harald Welte7af4cc32005-08-09 19:44:15 -0700388 BUG();
389 }
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800390
Harald Welte7af4cc32005-08-09 19:44:15 -0700391 nlh->nlmsg_len = skb->tail - old_tail;
392 return skb;
393
394nlmsg_failure:
Patrick McHardydf6fb862007-09-28 14:37:03 -0700395nla_put_failure:
Harald Welte7af4cc32005-08-09 19:44:15 -0700396 if (skb)
397 kfree_skb(skb);
Joe Perchese87cc472012-05-13 21:56:26 +0000398 net_err_ratelimited("nf_queue: error creating packet message\n");
Harald Welte7af4cc32005-08-09 19:44:15 -0700399 return NULL;
400}
401
402static int
Patrick McHardy02f014d2007-12-05 01:26:33 -0800403nfqnl_enqueue_packet(struct nf_queue_entry *entry, unsigned int queuenum)
Harald Welte7af4cc32005-08-09 19:44:15 -0700404{
Harald Welte7af4cc32005-08-09 19:44:15 -0700405 struct sk_buff *nskb;
406 struct nfqnl_instance *queue;
Florian Westphalf1585082011-01-18 15:27:28 +0100407 int err = -ENOBUFS;
Eric Dumazet58637022011-07-19 11:44:17 +0200408 __be32 *packet_id_ptr;
Harald Welte7af4cc32005-08-09 19:44:15 -0700409
Patrick McHardy9872bec2007-12-05 01:28:50 -0800410 /* rcu_read_lock()ed by nf_hook_slow() */
411 queue = instance_lookup(queuenum);
Florian Westphalf1585082011-01-18 15:27:28 +0100412 if (!queue) {
413 err = -ESRCH;
Patrick McHardy0ef0f462007-12-05 01:31:01 -0800414 goto err_out;
Florian Westphalf1585082011-01-18 15:27:28 +0100415 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700416
Florian Westphalf1585082011-01-18 15:27:28 +0100417 if (queue->copy_mode == NFQNL_COPY_NONE) {
418 err = -EINVAL;
Patrick McHardy0ef0f462007-12-05 01:31:01 -0800419 goto err_out;
Florian Westphalf1585082011-01-18 15:27:28 +0100420 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700421
Eric Dumazet58637022011-07-19 11:44:17 +0200422 nskb = nfqnl_build_packet_message(queue, entry, &packet_id_ptr);
Florian Westphalf1585082011-01-18 15:27:28 +0100423 if (nskb == NULL) {
424 err = -ENOMEM;
Patrick McHardy0ef0f462007-12-05 01:31:01 -0800425 goto err_out;
Florian Westphalf1585082011-01-18 15:27:28 +0100426 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700427 spin_lock_bh(&queue->lock);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800428
Florian Westphalf1585082011-01-18 15:27:28 +0100429 if (!queue->peer_pid) {
430 err = -EINVAL;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800431 goto err_out_free_nskb;
Florian Westphalf1585082011-01-18 15:27:28 +0100432 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700433 if (queue->queue_total >= queue->queue_maxlen) {
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800434 queue->queue_dropped++;
Joe Perchese87cc472012-05-13 21:56:26 +0000435 net_warn_ratelimited("nf_queue: full at %d entries, dropping packets(s)\n",
436 queue->queue_total);
Harald Welte7af4cc32005-08-09 19:44:15 -0700437 goto err_out_free_nskb;
438 }
Eric Dumazet58637022011-07-19 11:44:17 +0200439 entry->id = ++queue->id_sequence;
440 *packet_id_ptr = htonl(entry->id);
Harald Welte7af4cc32005-08-09 19:44:15 -0700441
442 /* nfnetlink_unicast will either free the nskb or add it to a socket */
Alexey Dobriyancd8c20b2010-01-13 16:02:14 +0100443 err = nfnetlink_unicast(nskb, &init_net, queue->peer_pid, MSG_DONTWAIT);
Patrick McHardy0ef0f462007-12-05 01:31:01 -0800444 if (err < 0) {
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800445 queue->queue_user_dropped++;
Harald Welte7af4cc32005-08-09 19:44:15 -0700446 goto err_out_unlock;
447 }
448
449 __enqueue_entry(queue, entry);
450
451 spin_unlock_bh(&queue->lock);
Patrick McHardy0ef0f462007-12-05 01:31:01 -0800452 return 0;
Harald Welte7af4cc32005-08-09 19:44:15 -0700453
454err_out_free_nskb:
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800455 kfree_skb(nskb);
Harald Welte7af4cc32005-08-09 19:44:15 -0700456err_out_unlock:
457 spin_unlock_bh(&queue->lock);
Patrick McHardy0ef0f462007-12-05 01:31:01 -0800458err_out:
Florian Westphalf1585082011-01-18 15:27:28 +0100459 return err;
Harald Welte7af4cc32005-08-09 19:44:15 -0700460}
461
462static int
Patrick McHardy02f014d2007-12-05 01:26:33 -0800463nfqnl_mangle(void *data, int data_len, struct nf_queue_entry *e)
Harald Welte7af4cc32005-08-09 19:44:15 -0700464{
Patrick McHardye2b58a62008-02-19 17:17:52 -0800465 struct sk_buff *nskb;
Harald Welte7af4cc32005-08-09 19:44:15 -0700466 int diff;
467
468 diff = data_len - e->skb->len;
Patrick McHardyd8a585d2006-11-14 19:48:09 -0800469 if (diff < 0) {
470 if (pskb_trim(e->skb, data_len))
471 return -ENOMEM;
472 } else if (diff > 0) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700473 if (data_len > 0xFFFF)
474 return -EINVAL;
475 if (diff > skb_tailroom(e->skb)) {
Arnaud Ebalard9a732ed2008-04-29 03:16:34 -0700476 nskb = skb_copy_expand(e->skb, skb_headroom(e->skb),
477 diff, GFP_ATOMIC);
Patrick McHardye2b58a62008-02-19 17:17:52 -0800478 if (!nskb) {
Patrick McHardy1158ba22006-08-22 00:32:47 -0700479 printk(KERN_WARNING "nf_queue: OOM "
Harald Welte7af4cc32005-08-09 19:44:15 -0700480 "in mangle, dropping packet\n");
Patrick McHardye2b58a62008-02-19 17:17:52 -0800481 return -ENOMEM;
Harald Welte7af4cc32005-08-09 19:44:15 -0700482 }
Patrick McHardye2b58a62008-02-19 17:17:52 -0800483 kfree_skb(e->skb);
484 e->skb = nskb;
Harald Welte7af4cc32005-08-09 19:44:15 -0700485 }
486 skb_put(e->skb, diff);
487 }
Herbert Xu37d41872007-10-14 00:39:18 -0700488 if (!skb_make_writable(e->skb, data_len))
Harald Welte7af4cc32005-08-09 19:44:15 -0700489 return -ENOMEM;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300490 skb_copy_to_linear_data(e->skb, data, data_len);
Patrick McHardye7dfb092005-09-06 15:10:00 -0700491 e->skb->ip_summed = CHECKSUM_NONE;
Harald Welte7af4cc32005-08-09 19:44:15 -0700492 return 0;
493}
494
Harald Welte7af4cc32005-08-09 19:44:15 -0700495static int
496nfqnl_set_mode(struct nfqnl_instance *queue,
497 unsigned char mode, unsigned int range)
498{
Patrick McHardyc5de0df2007-12-05 01:29:05 -0800499 int status = 0;
Harald Welte7af4cc32005-08-09 19:44:15 -0700500
501 spin_lock_bh(&queue->lock);
Patrick McHardyc5de0df2007-12-05 01:29:05 -0800502 switch (mode) {
503 case NFQNL_COPY_NONE:
504 case NFQNL_COPY_META:
505 queue->copy_mode = mode;
506 queue->copy_range = 0;
507 break;
508
509 case NFQNL_COPY_PACKET:
510 queue->copy_mode = mode;
511 /* we're using struct nlattr which has 16bit nla_len */
512 if (range > 0xffff)
513 queue->copy_range = 0xffff;
514 else
515 queue->copy_range = range;
516 break;
517
518 default:
519 status = -EINVAL;
520
521 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700522 spin_unlock_bh(&queue->lock);
523
524 return status;
525}
526
527static int
Patrick McHardy02f014d2007-12-05 01:26:33 -0800528dev_cmp(struct nf_queue_entry *entry, unsigned long ifindex)
Harald Welte7af4cc32005-08-09 19:44:15 -0700529{
Patrick McHardy02f014d2007-12-05 01:26:33 -0800530 if (entry->indev)
531 if (entry->indev->ifindex == ifindex)
Harald Welte7af4cc32005-08-09 19:44:15 -0700532 return 1;
Patrick McHardy02f014d2007-12-05 01:26:33 -0800533 if (entry->outdev)
534 if (entry->outdev->ifindex == ifindex)
Harald Welte7af4cc32005-08-09 19:44:15 -0700535 return 1;
Patrick McHardyef47c6a72006-06-27 03:01:48 -0700536#ifdef CONFIG_BRIDGE_NETFILTER
537 if (entry->skb->nf_bridge) {
538 if (entry->skb->nf_bridge->physindev &&
539 entry->skb->nf_bridge->physindev->ifindex == ifindex)
540 return 1;
541 if (entry->skb->nf_bridge->physoutdev &&
542 entry->skb->nf_bridge->physoutdev->ifindex == ifindex)
543 return 1;
544 }
545#endif
Harald Welte7af4cc32005-08-09 19:44:15 -0700546 return 0;
547}
548
549/* drop all packets with either indev or outdev == ifindex from all queue
550 * instances */
551static void
552nfqnl_dev_drop(int ifindex)
553{
554 int i;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800555
Patrick McHardy9872bec2007-12-05 01:28:50 -0800556 rcu_read_lock();
Harald Welte7af4cc32005-08-09 19:44:15 -0700557
Patrick McHardy9872bec2007-12-05 01:28:50 -0800558 for (i = 0; i < INSTANCE_BUCKETS; i++) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700559 struct hlist_node *tmp;
560 struct nfqnl_instance *inst;
561 struct hlist_head *head = &instance_table[i];
562
Patrick McHardy9872bec2007-12-05 01:28:50 -0800563 hlist_for_each_entry_rcu(inst, tmp, head, hlist)
Patrick McHardyb43d8d82007-12-05 01:25:30 -0800564 nfqnl_flush(inst, dev_cmp, ifindex);
Harald Welte7af4cc32005-08-09 19:44:15 -0700565 }
566
Patrick McHardy9872bec2007-12-05 01:28:50 -0800567 rcu_read_unlock();
Harald Welte7af4cc32005-08-09 19:44:15 -0700568}
569
570#define RCV_SKB_FAIL(err) do { netlink_ack(skb, nlh, (err)); return; } while (0)
571
572static int
573nfqnl_rcv_dev_event(struct notifier_block *this,
574 unsigned long event, void *ptr)
575{
576 struct net_device *dev = ptr;
577
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -0700578 if (!net_eq(dev_net(dev), &init_net))
Eric W. Biedermane9dc8652007-09-12 13:02:17 +0200579 return NOTIFY_DONE;
580
Harald Welte7af4cc32005-08-09 19:44:15 -0700581 /* Drop any packets associated with the downed device */
582 if (event == NETDEV_DOWN)
583 nfqnl_dev_drop(dev->ifindex);
584 return NOTIFY_DONE;
585}
586
587static struct notifier_block nfqnl_dev_notifier = {
588 .notifier_call = nfqnl_rcv_dev_event,
589};
590
591static int
592nfqnl_rcv_nl_event(struct notifier_block *this,
593 unsigned long event, void *ptr)
594{
595 struct netlink_notify *n = ptr;
596
Patrick McHardydee58172009-11-06 17:04:00 +0100597 if (event == NETLINK_URELEASE && n->protocol == NETLINK_NETFILTER) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700598 int i;
599
600 /* destroy all instances for this pid */
Patrick McHardy9872bec2007-12-05 01:28:50 -0800601 spin_lock(&instances_lock);
602 for (i = 0; i < INSTANCE_BUCKETS; i++) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700603 struct hlist_node *tmp, *t2;
604 struct nfqnl_instance *inst;
605 struct hlist_head *head = &instance_table[i];
606
607 hlist_for_each_entry_safe(inst, tmp, t2, head, hlist) {
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200608 if ((n->net == &init_net) &&
609 (n->pid == inst->peer_pid))
Harald Welte7af4cc32005-08-09 19:44:15 -0700610 __instance_destroy(inst);
611 }
612 }
Patrick McHardy9872bec2007-12-05 01:28:50 -0800613 spin_unlock(&instances_lock);
Harald Welte7af4cc32005-08-09 19:44:15 -0700614 }
615 return NOTIFY_DONE;
616}
617
618static struct notifier_block nfqnl_rtnl_notifier = {
619 .notifier_call = nfqnl_rcv_nl_event,
620};
621
Patrick McHardy5bf75852007-09-28 14:39:26 -0700622static const struct nla_policy nfqa_verdict_policy[NFQA_MAX+1] = {
623 [NFQA_VERDICT_HDR] = { .len = sizeof(struct nfqnl_msg_verdict_hdr) },
624 [NFQA_MARK] = { .type = NLA_U32 },
625 [NFQA_PAYLOAD] = { .type = NLA_UNSPEC },
Harald Welte838ab632005-08-09 19:50:45 -0700626};
627
Florian Westphal97d32cf2011-07-19 11:46:33 +0200628static const struct nla_policy nfqa_verdict_batch_policy[NFQA_MAX+1] = {
629 [NFQA_VERDICT_HDR] = { .len = sizeof(struct nfqnl_msg_verdict_hdr) },
630 [NFQA_MARK] = { .type = NLA_U32 },
631};
632
633static struct nfqnl_instance *verdict_instance_lookup(u16 queue_num, int nlpid)
634{
635 struct nfqnl_instance *queue;
636
637 queue = instance_lookup(queue_num);
638 if (!queue)
639 return ERR_PTR(-ENODEV);
640
641 if (queue->peer_pid != nlpid)
642 return ERR_PTR(-EPERM);
643
644 return queue;
645}
646
647static struct nfqnl_msg_verdict_hdr*
648verdicthdr_get(const struct nlattr * const nfqa[])
649{
650 struct nfqnl_msg_verdict_hdr *vhdr;
651 unsigned int verdict;
652
653 if (!nfqa[NFQA_VERDICT_HDR])
654 return NULL;
655
656 vhdr = nla_data(nfqa[NFQA_VERDICT_HDR]);
Florian Westphalc6675232011-08-30 15:01:20 +0200657 verdict = ntohl(vhdr->verdict) & NF_VERDICT_MASK;
658 if (verdict > NF_MAX_VERDICT || verdict == NF_STOLEN)
Florian Westphal97d32cf2011-07-19 11:46:33 +0200659 return NULL;
660 return vhdr;
661}
662
663static int nfq_id_after(unsigned int id, unsigned int max)
664{
665 return (int)(id - max) > 0;
666}
667
668static int
669nfqnl_recv_verdict_batch(struct sock *ctnl, struct sk_buff *skb,
670 const struct nlmsghdr *nlh,
671 const struct nlattr * const nfqa[])
672{
673 struct nfgenmsg *nfmsg = NLMSG_DATA(nlh);
674 struct nf_queue_entry *entry, *tmp;
675 unsigned int verdict, maxid;
676 struct nfqnl_msg_verdict_hdr *vhdr;
677 struct nfqnl_instance *queue;
678 LIST_HEAD(batch_list);
679 u16 queue_num = ntohs(nfmsg->res_id);
680
681 queue = verdict_instance_lookup(queue_num, NETLINK_CB(skb).pid);
682 if (IS_ERR(queue))
683 return PTR_ERR(queue);
684
685 vhdr = verdicthdr_get(nfqa);
686 if (!vhdr)
687 return -EINVAL;
688
689 verdict = ntohl(vhdr->verdict);
690 maxid = ntohl(vhdr->id);
691
692 spin_lock_bh(&queue->lock);
693
694 list_for_each_entry_safe(entry, tmp, &queue->queue_list, list) {
695 if (nfq_id_after(entry->id, maxid))
696 break;
697 __dequeue_entry(queue, entry);
698 list_add_tail(&entry->list, &batch_list);
699 }
700
701 spin_unlock_bh(&queue->lock);
702
703 if (list_empty(&batch_list))
704 return -ENOENT;
705
706 list_for_each_entry_safe(entry, tmp, &batch_list, list) {
707 if (nfqa[NFQA_MARK])
708 entry->skb->mark = ntohl(nla_get_be32(nfqa[NFQA_MARK]));
709 nf_reinject(entry, verdict);
710 }
711 return 0;
712}
713
Harald Welte7af4cc32005-08-09 19:44:15 -0700714static int
715nfqnl_recv_verdict(struct sock *ctnl, struct sk_buff *skb,
Patrick McHardy39938322009-08-25 16:07:58 +0200716 const struct nlmsghdr *nlh,
717 const struct nlattr * const nfqa[])
Harald Welte7af4cc32005-08-09 19:44:15 -0700718{
719 struct nfgenmsg *nfmsg = NLMSG_DATA(nlh);
720 u_int16_t queue_num = ntohs(nfmsg->res_id);
721
722 struct nfqnl_msg_verdict_hdr *vhdr;
723 struct nfqnl_instance *queue;
724 unsigned int verdict;
Patrick McHardy02f014d2007-12-05 01:26:33 -0800725 struct nf_queue_entry *entry;
Harald Welte7af4cc32005-08-09 19:44:15 -0700726
Patrick McHardy9872bec2007-12-05 01:28:50 -0800727 queue = instance_lookup(queue_num);
Eric Dumazet84a797d2011-07-18 16:08:27 +0200728 if (!queue)
Harald Welte7af4cc32005-08-09 19:44:15 -0700729
Florian Westphal97d32cf2011-07-19 11:46:33 +0200730 queue = verdict_instance_lookup(queue_num, NETLINK_CB(skb).pid);
731 if (IS_ERR(queue))
732 return PTR_ERR(queue);
Harald Welte7af4cc32005-08-09 19:44:15 -0700733
Florian Westphal97d32cf2011-07-19 11:46:33 +0200734 vhdr = verdicthdr_get(nfqa);
735 if (!vhdr)
Eric Dumazet84a797d2011-07-18 16:08:27 +0200736 return -EINVAL;
Harald Welte7af4cc32005-08-09 19:44:15 -0700737
Harald Welte7af4cc32005-08-09 19:44:15 -0700738 verdict = ntohl(vhdr->verdict);
739
Patrick McHardyb43d8d82007-12-05 01:25:30 -0800740 entry = find_dequeue_entry(queue, ntohl(vhdr->id));
Eric Dumazet84a797d2011-07-18 16:08:27 +0200741 if (entry == NULL)
742 return -ENOENT;
Harald Welte7af4cc32005-08-09 19:44:15 -0700743
Patrick McHardydf6fb862007-09-28 14:37:03 -0700744 if (nfqa[NFQA_PAYLOAD]) {
745 if (nfqnl_mangle(nla_data(nfqa[NFQA_PAYLOAD]),
746 nla_len(nfqa[NFQA_PAYLOAD]), entry) < 0)
Harald Welte7af4cc32005-08-09 19:44:15 -0700747 verdict = NF_DROP;
748 }
749
Patrick McHardydf6fb862007-09-28 14:37:03 -0700750 if (nfqa[NFQA_MARK])
Patrick McHardyea3a66f2007-12-05 01:30:02 -0800751 entry->skb->mark = ntohl(nla_get_be32(nfqa[NFQA_MARK]));
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800752
Patrick McHardy4b3d15e2007-12-05 01:27:02 -0800753 nf_reinject(entry, verdict);
Harald Welte7af4cc32005-08-09 19:44:15 -0700754 return 0;
755}
756
757static int
758nfqnl_recv_unsupp(struct sock *ctnl, struct sk_buff *skb,
Patrick McHardy39938322009-08-25 16:07:58 +0200759 const struct nlmsghdr *nlh,
760 const struct nlattr * const nfqa[])
Harald Welte7af4cc32005-08-09 19:44:15 -0700761{
762 return -ENOTSUPP;
763}
764
Patrick McHardy5bf75852007-09-28 14:39:26 -0700765static const struct nla_policy nfqa_cfg_policy[NFQA_CFG_MAX+1] = {
766 [NFQA_CFG_CMD] = { .len = sizeof(struct nfqnl_msg_config_cmd) },
767 [NFQA_CFG_PARAMS] = { .len = sizeof(struct nfqnl_msg_config_params) },
Harald Welte838ab632005-08-09 19:50:45 -0700768};
769
Patrick McHardye3ac5292007-12-05 01:23:57 -0800770static const struct nf_queue_handler nfqh = {
Harald Weltebbd86b9f2005-08-09 20:23:11 -0700771 .name = "nf_queue",
772 .outfn = &nfqnl_enqueue_packet,
773};
774
Harald Welte7af4cc32005-08-09 19:44:15 -0700775static int
776nfqnl_recv_config(struct sock *ctnl, struct sk_buff *skb,
Patrick McHardy39938322009-08-25 16:07:58 +0200777 const struct nlmsghdr *nlh,
778 const struct nlattr * const nfqa[])
Harald Welte7af4cc32005-08-09 19:44:15 -0700779{
780 struct nfgenmsg *nfmsg = NLMSG_DATA(nlh);
781 u_int16_t queue_num = ntohs(nfmsg->res_id);
782 struct nfqnl_instance *queue;
Patrick McHardy9872bec2007-12-05 01:28:50 -0800783 struct nfqnl_msg_config_cmd *cmd = NULL;
Harald Welte838ab632005-08-09 19:50:45 -0700784 int ret = 0;
Harald Welte7af4cc32005-08-09 19:44:15 -0700785
Patrick McHardy9872bec2007-12-05 01:28:50 -0800786 if (nfqa[NFQA_CFG_CMD]) {
787 cmd = nla_data(nfqa[NFQA_CFG_CMD]);
788
789 /* Commands without queue context - might sleep */
790 switch (cmd->command) {
791 case NFQNL_CFG_CMD_PF_BIND:
Patrick McHardy914afea2008-03-10 16:44:36 -0700792 return nf_register_queue_handler(ntohs(cmd->pf),
793 &nfqh);
Patrick McHardy9872bec2007-12-05 01:28:50 -0800794 case NFQNL_CFG_CMD_PF_UNBIND:
Patrick McHardy914afea2008-03-10 16:44:36 -0700795 return nf_unregister_queue_handler(ntohs(cmd->pf),
796 &nfqh);
Patrick McHardy9872bec2007-12-05 01:28:50 -0800797 }
Patrick McHardya3c8e7fd2007-12-05 01:28:30 -0800798 }
799
Patrick McHardy9872bec2007-12-05 01:28:50 -0800800 rcu_read_lock();
801 queue = instance_lookup(queue_num);
802 if (queue && queue->peer_pid != NETLINK_CB(skb).pid) {
803 ret = -EPERM;
804 goto err_out_unlock;
805 }
Patrick McHardya3c8e7fd2007-12-05 01:28:30 -0800806
Patrick McHardy9872bec2007-12-05 01:28:50 -0800807 if (cmd != NULL) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700808 switch (cmd->command) {
809 case NFQNL_CFG_CMD_BIND:
Patrick McHardy9872bec2007-12-05 01:28:50 -0800810 if (queue) {
811 ret = -EBUSY;
812 goto err_out_unlock;
813 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700814 queue = instance_create(queue_num, NETLINK_CB(skb).pid);
Patrick McHardybaab2ce2007-12-17 22:41:21 -0800815 if (IS_ERR(queue)) {
816 ret = PTR_ERR(queue);
Patrick McHardy9872bec2007-12-05 01:28:50 -0800817 goto err_out_unlock;
818 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700819 break;
820 case NFQNL_CFG_CMD_UNBIND:
Patrick McHardy9872bec2007-12-05 01:28:50 -0800821 if (!queue) {
822 ret = -ENODEV;
823 goto err_out_unlock;
824 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700825 instance_destroy(queue);
826 break;
827 case NFQNL_CFG_CMD_PF_BIND:
Harald Welte7af4cc32005-08-09 19:44:15 -0700828 case NFQNL_CFG_CMD_PF_UNBIND:
Harald Welte7af4cc32005-08-09 19:44:15 -0700829 break;
830 default:
Patrick McHardycd21f0a2007-12-17 22:40:19 -0800831 ret = -ENOTSUPP;
Harald Welte838ab632005-08-09 19:50:45 -0700832 break;
Harald Welte7af4cc32005-08-09 19:44:15 -0700833 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700834 }
835
Patrick McHardydf6fb862007-09-28 14:37:03 -0700836 if (nfqa[NFQA_CFG_PARAMS]) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700837 struct nfqnl_msg_config_params *params;
Harald Welte7af4cc32005-08-09 19:44:15 -0700838
Patrick McHardy406dbfc2006-03-12 20:32:47 -0800839 if (!queue) {
Patrick McHardya3c8e7fd2007-12-05 01:28:30 -0800840 ret = -ENODEV;
Patrick McHardy9872bec2007-12-05 01:28:50 -0800841 goto err_out_unlock;
Patrick McHardy406dbfc2006-03-12 20:32:47 -0800842 }
Patrick McHardydf6fb862007-09-28 14:37:03 -0700843 params = nla_data(nfqa[NFQA_CFG_PARAMS]);
Harald Welte7af4cc32005-08-09 19:44:15 -0700844 nfqnl_set_mode(queue, params->copy_mode,
845 ntohl(params->copy_range));
846 }
847
Patrick McHardydf6fb862007-09-28 14:37:03 -0700848 if (nfqa[NFQA_CFG_QUEUE_MAXLEN]) {
Eric Leblond829e17a2006-11-29 02:35:33 +0100849 __be32 *queue_maxlen;
Patrick McHardya3c8e7fd2007-12-05 01:28:30 -0800850
851 if (!queue) {
852 ret = -ENODEV;
Patrick McHardy9872bec2007-12-05 01:28:50 -0800853 goto err_out_unlock;
Patrick McHardya3c8e7fd2007-12-05 01:28:30 -0800854 }
Patrick McHardydf6fb862007-09-28 14:37:03 -0700855 queue_maxlen = nla_data(nfqa[NFQA_CFG_QUEUE_MAXLEN]);
Eric Leblond829e17a2006-11-29 02:35:33 +0100856 spin_lock_bh(&queue->lock);
857 queue->queue_maxlen = ntohl(*queue_maxlen);
858 spin_unlock_bh(&queue->lock);
859 }
860
Patrick McHardy9872bec2007-12-05 01:28:50 -0800861err_out_unlock:
862 rcu_read_unlock();
Harald Welte838ab632005-08-09 19:50:45 -0700863 return ret;
Harald Welte7af4cc32005-08-09 19:44:15 -0700864}
865
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -0700866static const struct nfnl_callback nfqnl_cb[NFQNL_MSG_MAX] = {
Eric Dumazet84a797d2011-07-18 16:08:27 +0200867 [NFQNL_MSG_PACKET] = { .call_rcu = nfqnl_recv_unsupp,
Harald Welte37d2e7a2005-11-14 15:24:59 -0800868 .attr_count = NFQA_MAX, },
Eric Dumazet84a797d2011-07-18 16:08:27 +0200869 [NFQNL_MSG_VERDICT] = { .call_rcu = nfqnl_recv_verdict,
Patrick McHardy5bf75852007-09-28 14:39:26 -0700870 .attr_count = NFQA_MAX,
871 .policy = nfqa_verdict_policy },
Harald Welte7af4cc32005-08-09 19:44:15 -0700872 [NFQNL_MSG_CONFIG] = { .call = nfqnl_recv_config,
Patrick McHardy5bf75852007-09-28 14:39:26 -0700873 .attr_count = NFQA_CFG_MAX,
874 .policy = nfqa_cfg_policy },
Florian Westphal97d32cf2011-07-19 11:46:33 +0200875 [NFQNL_MSG_VERDICT_BATCH]={ .call_rcu = nfqnl_recv_verdict_batch,
876 .attr_count = NFQA_MAX,
877 .policy = nfqa_verdict_batch_policy },
Harald Welte7af4cc32005-08-09 19:44:15 -0700878};
879
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -0700880static const struct nfnetlink_subsystem nfqnl_subsys = {
Harald Welte7af4cc32005-08-09 19:44:15 -0700881 .name = "nf_queue",
882 .subsys_id = NFNL_SUBSYS_QUEUE,
883 .cb_count = NFQNL_MSG_MAX,
Harald Welte7af4cc32005-08-09 19:44:15 -0700884 .cb = nfqnl_cb,
885};
886
Harald Welte838ab632005-08-09 19:50:45 -0700887#ifdef CONFIG_PROC_FS
888struct iter_state {
889 unsigned int bucket;
890};
891
892static struct hlist_node *get_first(struct seq_file *seq)
893{
894 struct iter_state *st = seq->private;
895
896 if (!st)
897 return NULL;
898
899 for (st->bucket = 0; st->bucket < INSTANCE_BUCKETS; st->bucket++) {
900 if (!hlist_empty(&instance_table[st->bucket]))
901 return instance_table[st->bucket].first;
902 }
903 return NULL;
904}
905
906static struct hlist_node *get_next(struct seq_file *seq, struct hlist_node *h)
907{
908 struct iter_state *st = seq->private;
909
910 h = h->next;
911 while (!h) {
912 if (++st->bucket >= INSTANCE_BUCKETS)
913 return NULL;
914
915 h = instance_table[st->bucket].first;
916 }
917 return h;
918}
919
920static struct hlist_node *get_idx(struct seq_file *seq, loff_t pos)
921{
922 struct hlist_node *head;
923 head = get_first(seq);
924
925 if (head)
926 while (pos && (head = get_next(seq, head)))
927 pos--;
928 return pos ? NULL : head;
929}
930
931static void *seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazetca7c48c2008-01-31 03:53:27 -0800932 __acquires(instances_lock)
Harald Welte838ab632005-08-09 19:50:45 -0700933{
Patrick McHardy9872bec2007-12-05 01:28:50 -0800934 spin_lock(&instances_lock);
Harald Welte838ab632005-08-09 19:50:45 -0700935 return get_idx(seq, *pos);
936}
937
938static void *seq_next(struct seq_file *s, void *v, loff_t *pos)
939{
940 (*pos)++;
941 return get_next(s, v);
942}
943
944static void seq_stop(struct seq_file *s, void *v)
Eric Dumazetca7c48c2008-01-31 03:53:27 -0800945 __releases(instances_lock)
Harald Welte838ab632005-08-09 19:50:45 -0700946{
Patrick McHardy9872bec2007-12-05 01:28:50 -0800947 spin_unlock(&instances_lock);
Harald Welte838ab632005-08-09 19:50:45 -0700948}
949
950static int seq_show(struct seq_file *s, void *v)
951{
952 const struct nfqnl_instance *inst = v;
953
954 return seq_printf(s, "%5d %6d %5d %1d %5d %5d %5d %8d %2d\n",
955 inst->queue_num,
956 inst->peer_pid, inst->queue_total,
957 inst->copy_mode, inst->copy_range,
958 inst->queue_dropped, inst->queue_user_dropped,
Eric Dumazet58637022011-07-19 11:44:17 +0200959 inst->id_sequence, 1);
Harald Welte838ab632005-08-09 19:50:45 -0700960}
961
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700962static const struct seq_operations nfqnl_seq_ops = {
Harald Welte838ab632005-08-09 19:50:45 -0700963 .start = seq_start,
964 .next = seq_next,
965 .stop = seq_stop,
966 .show = seq_show,
967};
968
969static int nfqnl_open(struct inode *inode, struct file *file)
970{
Pavel Emelyanove2da5912007-10-10 02:29:58 -0700971 return seq_open_private(file, &nfqnl_seq_ops,
972 sizeof(struct iter_state));
Harald Welte838ab632005-08-09 19:50:45 -0700973}
974
Arjan van de Venda7071d2007-02-12 00:55:36 -0800975static const struct file_operations nfqnl_file_ops = {
Harald Welte838ab632005-08-09 19:50:45 -0700976 .owner = THIS_MODULE,
977 .open = nfqnl_open,
978 .read = seq_read,
979 .llseek = seq_lseek,
980 .release = seq_release_private,
981};
982
983#endif /* PROC_FS */
984
Patrick McHardy32292a72006-04-06 14:11:30 -0700985static int __init nfnetlink_queue_init(void)
Harald Welte7af4cc32005-08-09 19:44:15 -0700986{
Harald Welte838ab632005-08-09 19:50:45 -0700987 int i, status = -ENOMEM;
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800988
Harald Welte838ab632005-08-09 19:50:45 -0700989 for (i = 0; i < INSTANCE_BUCKETS; i++)
990 INIT_HLIST_HEAD(&instance_table[i]);
991
Harald Welte7af4cc32005-08-09 19:44:15 -0700992 netlink_register_notifier(&nfqnl_rtnl_notifier);
993 status = nfnetlink_subsys_register(&nfqnl_subsys);
994 if (status < 0) {
995 printk(KERN_ERR "nf_queue: failed to create netlink socket\n");
996 goto cleanup_netlink_notifier;
997 }
998
Harald Welte838ab632005-08-09 19:50:45 -0700999#ifdef CONFIG_PROC_FS
Denis V. Lunev8eeee8b2008-03-27 16:55:53 -07001000 if (!proc_create("nfnetlink_queue", 0440,
1001 proc_net_netfilter, &nfqnl_file_ops))
Harald Welte838ab632005-08-09 19:50:45 -07001002 goto cleanup_subsys;
Harald Welte838ab632005-08-09 19:50:45 -07001003#endif
1004
Harald Welte7af4cc32005-08-09 19:44:15 -07001005 register_netdevice_notifier(&nfqnl_dev_notifier);
1006 return status;
1007
Harald Welte838ab632005-08-09 19:50:45 -07001008#ifdef CONFIG_PROC_FS
1009cleanup_subsys:
Harald Welte7af4cc32005-08-09 19:44:15 -07001010 nfnetlink_subsys_unregister(&nfqnl_subsys);
Patrick McHardy32292a72006-04-06 14:11:30 -07001011#endif
Harald Welte7af4cc32005-08-09 19:44:15 -07001012cleanup_netlink_notifier:
1013 netlink_unregister_notifier(&nfqnl_rtnl_notifier);
1014 return status;
1015}
1016
Andrew Morton65b4b4e2006-03-28 16:37:06 -08001017static void __exit nfnetlink_queue_fini(void)
Harald Welte7af4cc32005-08-09 19:44:15 -07001018{
Patrick McHardy32292a72006-04-06 14:11:30 -07001019 nf_unregister_queue_handlers(&nfqh);
1020 unregister_netdevice_notifier(&nfqnl_dev_notifier);
1021#ifdef CONFIG_PROC_FS
1022 remove_proc_entry("nfnetlink_queue", proc_net_netfilter);
1023#endif
1024 nfnetlink_subsys_unregister(&nfqnl_subsys);
1025 netlink_unregister_notifier(&nfqnl_rtnl_notifier);
Jesper Dangaard Brouer67137f32009-06-08 03:11:33 +00001026
1027 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Harald Welte7af4cc32005-08-09 19:44:15 -07001028}
1029
1030MODULE_DESCRIPTION("netfilter packet queue handler");
1031MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
1032MODULE_LICENSE("GPL");
1033MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_QUEUE);
1034
Andrew Morton65b4b4e2006-03-28 16:37:06 -08001035module_init(nfnetlink_queue_init);
1036module_exit(nfnetlink_queue_fini);