blob: a82077d9f59b2f49cf755bcc9c8754846cb64b3e [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
Pablo Neira Ayuso1109a902014-10-01 11:19:17 +020039#if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
Harald Weltefbcd9232005-08-09 20:22:10 -070040#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 */
Pablo Neira Ayuso1109a902014-10-01 11:19:17 +0200305#if IS_ENABLED(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);
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000357 if (!skb) {
358 skb_tx_error(entskb);
David S. Miller3da07c02012-06-26 21:35:27 -0700359 return NULL;
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000360 }
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800361
David S. Miller3da07c02012-06-26 21:35:27 -0700362 nlh = nlmsg_put(skb, 0, 0,
Harald Welte7af4cc32005-08-09 19:44:15 -0700363 NFNL_SUBSYS_QUEUE << 8 | NFQNL_MSG_PACKET,
David S. Miller3da07c02012-06-26 21:35:27 -0700364 sizeof(struct nfgenmsg), 0);
365 if (!nlh) {
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000366 skb_tx_error(entskb);
David S. Miller3da07c02012-06-26 21:35:27 -0700367 kfree_skb(skb);
368 return NULL;
369 }
370 nfmsg = nlmsg_data(nlh);
Patrick McHardy02f014d2007-12-05 01:26:33 -0800371 nfmsg->nfgen_family = entry->pf;
Harald Welte7af4cc32005-08-09 19:44:15 -0700372 nfmsg->version = NFNETLINK_V0;
373 nfmsg->res_id = htons(queue->queue_num);
374
Eric Dumazet58637022011-07-19 11:44:17 +0200375 nla = __nla_reserve(skb, NFQA_PACKET_HDR, sizeof(*pmsg));
376 pmsg = nla_data(nla);
377 pmsg->hw_protocol = entskb->protocol;
378 pmsg->hook = entry->hook;
379 *packet_id_ptr = &pmsg->packet_id;
Harald Welte7af4cc32005-08-09 19:44:15 -0700380
Patrick McHardy02f014d2007-12-05 01:26:33 -0800381 indev = entry->indev;
Jesper Juhl3e4ead42006-01-05 12:15:58 -0800382 if (indev) {
Pablo Neira Ayuso1109a902014-10-01 11:19:17 +0200383#if !IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
David S. Millera4471892012-03-29 23:27:38 -0400384 if (nla_put_be32(skb, NFQA_IFINDEX_INDEV, htonl(indev->ifindex)))
385 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700386#else
Patrick McHardy02f014d2007-12-05 01:26:33 -0800387 if (entry->pf == PF_BRIDGE) {
Harald Weltefbcd9232005-08-09 20:22:10 -0700388 /* Case 1: indev is physical input device, we need to
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800389 * look for bridge group (when called from
Harald Weltefbcd9232005-08-09 20:22:10 -0700390 * netfilter_bridge) */
David S. Millera4471892012-03-29 23:27:38 -0400391 if (nla_put_be32(skb, NFQA_IFINDEX_PHYSINDEV,
392 htonl(indev->ifindex)) ||
Harald Weltefbcd9232005-08-09 20:22:10 -0700393 /* this is the bridge group "brX" */
Jiri Pirkof350a0a82010-06-15 06:50:45 +0000394 /* rcu_read_lock()ed by __nf_queue */
David S. Millera4471892012-03-29 23:27:38 -0400395 nla_put_be32(skb, NFQA_IFINDEX_INDEV,
396 htonl(br_port_get_rcu(indev)->br->dev->ifindex)))
397 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700398 } else {
399 /* Case 2: indev is bridge group, we need to look for
400 * physical device (when called from ipv4) */
David S. Millera4471892012-03-29 23:27:38 -0400401 if (nla_put_be32(skb, NFQA_IFINDEX_INDEV,
402 htonl(indev->ifindex)))
403 goto nla_put_failure;
404 if (entskb->nf_bridge && entskb->nf_bridge->physindev &&
405 nla_put_be32(skb, NFQA_IFINDEX_PHYSINDEV,
406 htonl(entskb->nf_bridge->physindev->ifindex)))
407 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700408 }
409#endif
Harald Welte7af4cc32005-08-09 19:44:15 -0700410 }
411
Jesper Juhl3e4ead42006-01-05 12:15:58 -0800412 if (outdev) {
Pablo Neira Ayuso1109a902014-10-01 11:19:17 +0200413#if !IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
David S. Millera4471892012-03-29 23:27:38 -0400414 if (nla_put_be32(skb, NFQA_IFINDEX_OUTDEV, htonl(outdev->ifindex)))
415 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700416#else
Patrick McHardy02f014d2007-12-05 01:26:33 -0800417 if (entry->pf == PF_BRIDGE) {
Harald Weltefbcd9232005-08-09 20:22:10 -0700418 /* Case 1: outdev is physical output device, we need to
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800419 * look for bridge group (when called from
Harald Weltefbcd9232005-08-09 20:22:10 -0700420 * netfilter_bridge) */
David S. Millera4471892012-03-29 23:27:38 -0400421 if (nla_put_be32(skb, NFQA_IFINDEX_PHYSOUTDEV,
422 htonl(outdev->ifindex)) ||
Harald Weltefbcd9232005-08-09 20:22:10 -0700423 /* this is the bridge group "brX" */
Jiri Pirkof350a0a82010-06-15 06:50:45 +0000424 /* rcu_read_lock()ed by __nf_queue */
David S. Millera4471892012-03-29 23:27:38 -0400425 nla_put_be32(skb, NFQA_IFINDEX_OUTDEV,
426 htonl(br_port_get_rcu(outdev)->br->dev->ifindex)))
427 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700428 } else {
429 /* Case 2: outdev is bridge group, we need to look for
430 * physical output device (when called from ipv4) */
David S. Millera4471892012-03-29 23:27:38 -0400431 if (nla_put_be32(skb, NFQA_IFINDEX_OUTDEV,
432 htonl(outdev->ifindex)))
433 goto nla_put_failure;
434 if (entskb->nf_bridge && entskb->nf_bridge->physoutdev &&
435 nla_put_be32(skb, NFQA_IFINDEX_PHYSOUTDEV,
436 htonl(entskb->nf_bridge->physoutdev->ifindex)))
437 goto nla_put_failure;
Harald Weltefbcd9232005-08-09 20:22:10 -0700438 }
439#endif
Harald Welte7af4cc32005-08-09 19:44:15 -0700440 }
441
David S. Millera4471892012-03-29 23:27:38 -0400442 if (entskb->mark &&
443 nla_put_be32(skb, NFQA_MARK, htonl(entskb->mark)))
444 goto nla_put_failure;
Harald Welte7af4cc32005-08-09 19:44:15 -0700445
Nicolas Cavallari2c38de42011-06-16 17:27:04 +0200446 if (indev && entskb->dev &&
447 entskb->mac_header != entskb->network_header) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700448 struct nfqnl_msg_packet_hw phw;
Dan Carpentere4d091d2013-08-01 12:36:57 +0300449 int len;
450
451 memset(&phw, 0, sizeof(phw));
452 len = dev_parse_header(entskb, phw.hw_addr);
Stephen Hemmingerb95cce32007-09-26 22:13:38 -0700453 if (len) {
454 phw.hw_addrlen = htons(len);
David S. Millera4471892012-03-29 23:27:38 -0400455 if (nla_put(skb, NFQA_HWADDR, sizeof(phw), &phw))
456 goto nla_put_failure;
Stephen Hemmingerb95cce32007-09-26 22:13:38 -0700457 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700458 }
459
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700460 if (entskb->tstamp.tv64) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700461 struct nfqnl_msg_packet_timestamp ts;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700462 struct timeval tv = ktime_to_timeval(entskb->tstamp);
463 ts.sec = cpu_to_be64(tv.tv_sec);
464 ts.usec = cpu_to_be64(tv.tv_usec);
Harald Welte7af4cc32005-08-09 19:44:15 -0700465
David S. Millera4471892012-03-29 23:27:38 -0400466 if (nla_put(skb, NFQA_TIMESTAMP, sizeof(ts), &ts))
467 goto nla_put_failure;
Harald Welte7af4cc32005-08-09 19:44:15 -0700468 }
469
Valentina Giusti08c0cad2013-12-20 17:28:53 +0100470 if ((queue->flags & NFQA_CFG_F_UID_GID) && entskb->sk &&
471 nfqnl_put_sk_uidgid(skb, entskb->sk) < 0)
472 goto nla_put_failure;
473
Pablo Neira Ayuso7c622342012-06-19 02:10:57 +0200474 if (ct && nfqnl_ct_put(skb, ct, ctinfo) < 0)
475 goto nla_put_failure;
Pablo Neira Ayuso9cb01762012-06-07 12:13:39 +0200476
Florian Westphal7f877122013-06-04 22:22:16 +0000477 if (cap_len > data_len &&
478 nla_put_be32(skb, NFQA_CAP_LEN, htonl(cap_len)))
Pablo Neira Ayuso6ee584b2012-09-24 14:52:12 +0200479 goto nla_put_failure;
480
Florian Westphal496e4ae2013-06-29 14:15:47 +0200481 if (nfqnl_put_packet_info(skb, entskb, csum_verify))
Florian Westphal72371902013-04-19 04:58:26 +0000482 goto nla_put_failure;
483
Eric Dumazetae08ce02013-03-17 17:15:55 +0000484 if (data_len) {
485 struct nlattr *nla;
486
487 if (skb_tailroom(skb) < sizeof(*nla) + hlen)
488 goto nla_put_failure;
489
490 nla = (struct nlattr *)skb_put(skb, sizeof(*nla));
491 nla->nla_type = NFQA_PAYLOAD;
492 nla->nla_len = nla_attr_size(data_len);
493
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000494 if (skb_zerocopy(skb, entskb, data_len, hlen))
495 goto nla_put_failure;
Eric Dumazetae08ce02013-03-17 17:15:55 +0000496 }
497
498 nlh->nlmsg_len = skb->len;
Harald Welte7af4cc32005-08-09 19:44:15 -0700499 return skb;
500
Patrick McHardydf6fb862007-09-28 14:37:03 -0700501nla_put_failure:
Zoltan Kiss36d5fe62014-03-26 22:37:45 +0000502 skb_tx_error(entskb);
Wei Yongjuna6729952012-08-28 03:14:15 +0000503 kfree_skb(skb);
Joe Perchese87cc472012-05-13 21:56:26 +0000504 net_err_ratelimited("nf_queue: error creating packet message\n");
Harald Welte7af4cc32005-08-09 19:44:15 -0700505 return NULL;
506}
507
508static int
Florian Westphala5fedd432013-04-19 04:58:25 +0000509__nfqnl_enqueue_packet(struct net *net, struct nfqnl_instance *queue,
510 struct nf_queue_entry *entry)
Harald Welte7af4cc32005-08-09 19:44:15 -0700511{
Harald Welte7af4cc32005-08-09 19:44:15 -0700512 struct sk_buff *nskb;
Florian Westphalf1585082011-01-18 15:27:28 +0100513 int err = -ENOBUFS;
Eric Dumazet58637022011-07-19 11:44:17 +0200514 __be32 *packet_id_ptr;
Krishna Kumarfdb694a2012-05-24 03:56:44 +0000515 int failopen = 0;
Harald Welte7af4cc32005-08-09 19:44:15 -0700516
Gao feng74332682013-09-23 19:20:55 +0800517 nskb = nfqnl_build_packet_message(net, queue, entry, &packet_id_ptr);
Florian Westphalf1585082011-01-18 15:27:28 +0100518 if (nskb == NULL) {
519 err = -ENOMEM;
Patrick McHardy0ef0f462007-12-05 01:31:01 -0800520 goto err_out;
Florian Westphalf1585082011-01-18 15:27:28 +0100521 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700522 spin_lock_bh(&queue->lock);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800523
Harald Welte7af4cc32005-08-09 19:44:15 -0700524 if (queue->queue_total >= queue->queue_maxlen) {
Krishna Kumarfdb694a2012-05-24 03:56:44 +0000525 if (queue->flags & NFQA_CFG_F_FAIL_OPEN) {
526 failopen = 1;
527 err = 0;
528 } else {
529 queue->queue_dropped++;
530 net_warn_ratelimited("nf_queue: full at %d entries, dropping packets(s)\n",
531 queue->queue_total);
532 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700533 goto err_out_free_nskb;
534 }
Eric Dumazet58637022011-07-19 11:44:17 +0200535 entry->id = ++queue->id_sequence;
536 *packet_id_ptr = htonl(entry->id);
Harald Welte7af4cc32005-08-09 19:44:15 -0700537
538 /* nfnetlink_unicast will either free the nskb or add it to a socket */
Gao fenge8179612013-03-24 23:50:47 +0000539 err = nfnetlink_unicast(nskb, net, queue->peer_portid, MSG_DONTWAIT);
Patrick McHardy0ef0f462007-12-05 01:31:01 -0800540 if (err < 0) {
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800541 queue->queue_user_dropped++;
Harald Welte7af4cc32005-08-09 19:44:15 -0700542 goto err_out_unlock;
543 }
544
545 __enqueue_entry(queue, entry);
546
547 spin_unlock_bh(&queue->lock);
Patrick McHardy0ef0f462007-12-05 01:31:01 -0800548 return 0;
Harald Welte7af4cc32005-08-09 19:44:15 -0700549
550err_out_free_nskb:
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800551 kfree_skb(nskb);
Harald Welte7af4cc32005-08-09 19:44:15 -0700552err_out_unlock:
553 spin_unlock_bh(&queue->lock);
Krishna Kumarfdb694a2012-05-24 03:56:44 +0000554 if (failopen)
555 nf_reinject(entry, NF_ACCEPT);
Patrick McHardy0ef0f462007-12-05 01:31:01 -0800556err_out:
Florian Westphalf1585082011-01-18 15:27:28 +0100557 return err;
Harald Welte7af4cc32005-08-09 19:44:15 -0700558}
559
Florian Westphala5fedd432013-04-19 04:58:25 +0000560static struct nf_queue_entry *
561nf_queue_entry_dup(struct nf_queue_entry *e)
562{
563 struct nf_queue_entry *entry = kmemdup(e, e->size, GFP_ATOMIC);
564 if (entry) {
565 if (nf_queue_entry_get_refs(entry))
566 return entry;
567 kfree(entry);
568 }
569 return NULL;
570}
571
Pablo Neira Ayuso1109a902014-10-01 11:19:17 +0200572#if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
Florian Westphala5fedd432013-04-19 04:58:25 +0000573/* When called from bridge netfilter, skb->data must point to MAC header
574 * before calling skb_gso_segment(). Else, original MAC header is lost
575 * and segmented skbs will be sent to wrong destination.
576 */
577static void nf_bridge_adjust_skb_data(struct sk_buff *skb)
578{
579 if (skb->nf_bridge)
580 __skb_push(skb, skb->network_header - skb->mac_header);
581}
582
583static void nf_bridge_adjust_segmented_data(struct sk_buff *skb)
584{
585 if (skb->nf_bridge)
586 __skb_pull(skb, skb->network_header - skb->mac_header);
587}
588#else
589#define nf_bridge_adjust_skb_data(s) do {} while (0)
590#define nf_bridge_adjust_segmented_data(s) do {} while (0)
591#endif
592
593static void free_entry(struct nf_queue_entry *entry)
594{
595 nf_queue_entry_release_refs(entry);
596 kfree(entry);
597}
598
599static int
600__nfqnl_enqueue_packet_gso(struct net *net, struct nfqnl_instance *queue,
601 struct sk_buff *skb, struct nf_queue_entry *entry)
602{
603 int ret = -ENOMEM;
604 struct nf_queue_entry *entry_seg;
605
606 nf_bridge_adjust_segmented_data(skb);
607
608 if (skb->next == NULL) { /* last packet, no need to copy entry */
609 struct sk_buff *gso_skb = entry->skb;
610 entry->skb = skb;
611 ret = __nfqnl_enqueue_packet(net, queue, entry);
612 if (ret)
613 entry->skb = gso_skb;
614 return ret;
615 }
616
617 skb->next = NULL;
618
619 entry_seg = nf_queue_entry_dup(entry);
620 if (entry_seg) {
621 entry_seg->skb = skb;
622 ret = __nfqnl_enqueue_packet(net, queue, entry_seg);
623 if (ret)
624 free_entry(entry_seg);
625 }
626 return ret;
627}
628
629static int
630nfqnl_enqueue_packet(struct nf_queue_entry *entry, unsigned int queuenum)
631{
632 unsigned int queued;
633 struct nfqnl_instance *queue;
634 struct sk_buff *skb, *segs;
635 int err = -ENOBUFS;
636 struct net *net = dev_net(entry->indev ?
637 entry->indev : entry->outdev);
638 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
639
640 /* rcu_read_lock()ed by nf_hook_slow() */
641 queue = instance_lookup(q, queuenum);
642 if (!queue)
643 return -ESRCH;
644
645 if (queue->copy_mode == NFQNL_COPY_NONE)
646 return -EINVAL;
647
Florian Westphala5fedd432013-04-19 04:58:25 +0000648 skb = entry->skb;
649
650 switch (entry->pf) {
651 case NFPROTO_IPV4:
652 skb->protocol = htons(ETH_P_IP);
653 break;
654 case NFPROTO_IPV6:
655 skb->protocol = htons(ETH_P_IPV6);
656 break;
657 }
658
Pablo Neira Ayuso7b8dfe22013-06-07 18:42:00 +0200659 if ((queue->flags & NFQA_CFG_F_GSO) || !skb_is_gso(skb))
660 return __nfqnl_enqueue_packet(net, queue, entry);
661
Florian Westphala5fedd432013-04-19 04:58:25 +0000662 nf_bridge_adjust_skb_data(skb);
663 segs = skb_gso_segment(skb, 0);
664 /* Does not use PTR_ERR to limit the number of error codes that can be
665 * returned by nf_queue. For instance, callers rely on -ECANCELED to
666 * mean 'ignore this hook'.
667 */
668 if (IS_ERR(segs))
669 goto out_err;
670 queued = 0;
671 err = 0;
672 do {
673 struct sk_buff *nskb = segs->next;
674 if (err == 0)
675 err = __nfqnl_enqueue_packet_gso(net, queue,
676 segs, entry);
677 if (err == 0)
678 queued++;
679 else
680 kfree_skb(segs);
681 segs = nskb;
682 } while (segs);
683
684 if (queued) {
685 if (err) /* some segments are already queued */
686 free_entry(entry);
687 kfree_skb(skb);
688 return 0;
689 }
690 out_err:
691 nf_bridge_adjust_segmented_data(skb);
692 return err;
693}
694
Harald Welte7af4cc32005-08-09 19:44:15 -0700695static int
Pablo Neira Ayuso8c88f872012-06-07 13:31:25 +0200696nfqnl_mangle(void *data, int data_len, struct nf_queue_entry *e, int diff)
Harald Welte7af4cc32005-08-09 19:44:15 -0700697{
Patrick McHardye2b58a62008-02-19 17:17:52 -0800698 struct sk_buff *nskb;
Harald Welte7af4cc32005-08-09 19:44:15 -0700699
Patrick McHardyd8a585d2006-11-14 19:48:09 -0800700 if (diff < 0) {
701 if (pskb_trim(e->skb, data_len))
702 return -ENOMEM;
703 } else if (diff > 0) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700704 if (data_len > 0xFFFF)
705 return -EINVAL;
706 if (diff > skb_tailroom(e->skb)) {
Arnaud Ebalard9a732ed2008-04-29 03:16:34 -0700707 nskb = skb_copy_expand(e->skb, skb_headroom(e->skb),
708 diff, GFP_ATOMIC);
Patrick McHardye2b58a62008-02-19 17:17:52 -0800709 if (!nskb) {
Patrick McHardy1158ba22006-08-22 00:32:47 -0700710 printk(KERN_WARNING "nf_queue: OOM "
Harald Welte7af4cc32005-08-09 19:44:15 -0700711 "in mangle, dropping packet\n");
Patrick McHardye2b58a62008-02-19 17:17:52 -0800712 return -ENOMEM;
Harald Welte7af4cc32005-08-09 19:44:15 -0700713 }
Patrick McHardye2b58a62008-02-19 17:17:52 -0800714 kfree_skb(e->skb);
715 e->skb = nskb;
Harald Welte7af4cc32005-08-09 19:44:15 -0700716 }
717 skb_put(e->skb, diff);
718 }
Herbert Xu37d41872007-10-14 00:39:18 -0700719 if (!skb_make_writable(e->skb, data_len))
Harald Welte7af4cc32005-08-09 19:44:15 -0700720 return -ENOMEM;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300721 skb_copy_to_linear_data(e->skb, data, data_len);
Patrick McHardye7dfb092005-09-06 15:10:00 -0700722 e->skb->ip_summed = CHECKSUM_NONE;
Harald Welte7af4cc32005-08-09 19:44:15 -0700723 return 0;
724}
725
Harald Welte7af4cc32005-08-09 19:44:15 -0700726static int
727nfqnl_set_mode(struct nfqnl_instance *queue,
728 unsigned char mode, unsigned int range)
729{
Patrick McHardyc5de0df2007-12-05 01:29:05 -0800730 int status = 0;
Harald Welte7af4cc32005-08-09 19:44:15 -0700731
732 spin_lock_bh(&queue->lock);
Patrick McHardyc5de0df2007-12-05 01:29:05 -0800733 switch (mode) {
734 case NFQNL_COPY_NONE:
735 case NFQNL_COPY_META:
736 queue->copy_mode = mode;
737 queue->copy_range = 0;
738 break;
739
740 case NFQNL_COPY_PACKET:
741 queue->copy_mode = mode;
Florian Westphal9cefbbc2013-06-04 22:22:15 +0000742 if (range == 0 || range > NFQNL_MAX_COPY_RANGE)
743 queue->copy_range = NFQNL_MAX_COPY_RANGE;
Patrick McHardyc5de0df2007-12-05 01:29:05 -0800744 else
745 queue->copy_range = range;
746 break;
747
748 default:
749 status = -EINVAL;
750
751 }
Harald Welte7af4cc32005-08-09 19:44:15 -0700752 spin_unlock_bh(&queue->lock);
753
754 return status;
755}
756
757static int
Patrick McHardy02f014d2007-12-05 01:26:33 -0800758dev_cmp(struct nf_queue_entry *entry, unsigned long ifindex)
Harald Welte7af4cc32005-08-09 19:44:15 -0700759{
Patrick McHardy02f014d2007-12-05 01:26:33 -0800760 if (entry->indev)
761 if (entry->indev->ifindex == ifindex)
Harald Welte7af4cc32005-08-09 19:44:15 -0700762 return 1;
Patrick McHardy02f014d2007-12-05 01:26:33 -0800763 if (entry->outdev)
764 if (entry->outdev->ifindex == ifindex)
Harald Welte7af4cc32005-08-09 19:44:15 -0700765 return 1;
Pablo Neira Ayuso1109a902014-10-01 11:19:17 +0200766#if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
Patrick McHardyef47c6a72006-06-27 03:01:48 -0700767 if (entry->skb->nf_bridge) {
768 if (entry->skb->nf_bridge->physindev &&
769 entry->skb->nf_bridge->physindev->ifindex == ifindex)
770 return 1;
771 if (entry->skb->nf_bridge->physoutdev &&
772 entry->skb->nf_bridge->physoutdev->ifindex == ifindex)
773 return 1;
774 }
775#endif
Harald Welte7af4cc32005-08-09 19:44:15 -0700776 return 0;
777}
778
779/* drop all packets with either indev or outdev == ifindex from all queue
780 * instances */
781static void
Gao fenge8179612013-03-24 23:50:47 +0000782nfqnl_dev_drop(struct net *net, int ifindex)
Harald Welte7af4cc32005-08-09 19:44:15 -0700783{
784 int i;
Gao fenge8179612013-03-24 23:50:47 +0000785 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -0800786
Patrick McHardy9872bec2007-12-05 01:28:50 -0800787 rcu_read_lock();
Harald Welte7af4cc32005-08-09 19:44:15 -0700788
Patrick McHardy9872bec2007-12-05 01:28:50 -0800789 for (i = 0; i < INSTANCE_BUCKETS; i++) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700790 struct nfqnl_instance *inst;
Gao fenge8179612013-03-24 23:50:47 +0000791 struct hlist_head *head = &q->instance_table[i];
Harald Welte7af4cc32005-08-09 19:44:15 -0700792
Sasha Levinb67bfe02013-02-27 17:06:00 -0800793 hlist_for_each_entry_rcu(inst, head, hlist)
Patrick McHardyb43d8d82007-12-05 01:25:30 -0800794 nfqnl_flush(inst, dev_cmp, ifindex);
Harald Welte7af4cc32005-08-09 19:44:15 -0700795 }
796
Patrick McHardy9872bec2007-12-05 01:28:50 -0800797 rcu_read_unlock();
Harald Welte7af4cc32005-08-09 19:44:15 -0700798}
799
800#define RCV_SKB_FAIL(err) do { netlink_ack(skb, nlh, (err)); return; } while (0)
801
802static int
803nfqnl_rcv_dev_event(struct notifier_block *this,
804 unsigned long event, void *ptr)
805{
Jiri Pirko351638e2013-05-28 01:30:21 +0000806 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Harald Welte7af4cc32005-08-09 19:44:15 -0700807
808 /* Drop any packets associated with the downed device */
809 if (event == NETDEV_DOWN)
Gao fenge8179612013-03-24 23:50:47 +0000810 nfqnl_dev_drop(dev_net(dev), dev->ifindex);
Harald Welte7af4cc32005-08-09 19:44:15 -0700811 return NOTIFY_DONE;
812}
813
814static struct notifier_block nfqnl_dev_notifier = {
815 .notifier_call = nfqnl_rcv_dev_event,
816};
817
818static int
819nfqnl_rcv_nl_event(struct notifier_block *this,
820 unsigned long event, void *ptr)
821{
822 struct netlink_notify *n = ptr;
Gao fenge8179612013-03-24 23:50:47 +0000823 struct nfnl_queue_net *q = nfnl_queue_pernet(n->net);
Harald Welte7af4cc32005-08-09 19:44:15 -0700824
Patrick McHardydee58172009-11-06 17:04:00 +0100825 if (event == NETLINK_URELEASE && n->protocol == NETLINK_NETFILTER) {
Harald Welte7af4cc32005-08-09 19:44:15 -0700826 int i;
827
Eric W. Biederman15e47302012-09-07 20:12:54 +0000828 /* destroy all instances for this portid */
Gao fenge8179612013-03-24 23:50:47 +0000829 spin_lock(&q->instances_lock);
Patrick McHardy9872bec2007-12-05 01:28:50 -0800830 for (i = 0; i < INSTANCE_BUCKETS; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800831 struct hlist_node *t2;
Harald Welte7af4cc32005-08-09 19:44:15 -0700832 struct nfqnl_instance *inst;
Gao fenge8179612013-03-24 23:50:47 +0000833 struct hlist_head *head = &q->instance_table[i];
Harald Welte7af4cc32005-08-09 19:44:15 -0700834
Sasha Levinb67bfe02013-02-27 17:06:00 -0800835 hlist_for_each_entry_safe(inst, t2, head, hlist) {
Gao fenge8179612013-03-24 23:50:47 +0000836 if (n->portid == inst->peer_portid)
Harald Welte7af4cc32005-08-09 19:44:15 -0700837 __instance_destroy(inst);
838 }
839 }
Gao fenge8179612013-03-24 23:50:47 +0000840 spin_unlock(&q->instances_lock);
Harald Welte7af4cc32005-08-09 19:44:15 -0700841 }
842 return NOTIFY_DONE;
843}
844
845static struct notifier_block nfqnl_rtnl_notifier = {
846 .notifier_call = nfqnl_rcv_nl_event,
847};
848
Patrick McHardy5bf75852007-09-28 14:39:26 -0700849static const struct nla_policy nfqa_verdict_policy[NFQA_MAX+1] = {
850 [NFQA_VERDICT_HDR] = { .len = sizeof(struct nfqnl_msg_verdict_hdr) },
851 [NFQA_MARK] = { .type = NLA_U32 },
852 [NFQA_PAYLOAD] = { .type = NLA_UNSPEC },
Pablo Neira Ayuso9cb01762012-06-07 12:13:39 +0200853 [NFQA_CT] = { .type = NLA_UNSPEC },
Pablo Neira Ayusobd077932013-08-07 18:13:20 +0200854 [NFQA_EXP] = { .type = NLA_UNSPEC },
Harald Welte838ab632005-08-09 19:50:45 -0700855};
856
Florian Westphal97d32cf2011-07-19 11:46:33 +0200857static const struct nla_policy nfqa_verdict_batch_policy[NFQA_MAX+1] = {
858 [NFQA_VERDICT_HDR] = { .len = sizeof(struct nfqnl_msg_verdict_hdr) },
859 [NFQA_MARK] = { .type = NLA_U32 },
860};
861
Gao fenge8179612013-03-24 23:50:47 +0000862static struct nfqnl_instance *
863verdict_instance_lookup(struct nfnl_queue_net *q, u16 queue_num, int nlportid)
Florian Westphal97d32cf2011-07-19 11:46:33 +0200864{
865 struct nfqnl_instance *queue;
866
Gao fenge8179612013-03-24 23:50:47 +0000867 queue = instance_lookup(q, queue_num);
Florian Westphal97d32cf2011-07-19 11:46:33 +0200868 if (!queue)
869 return ERR_PTR(-ENODEV);
870
Eric W. Biederman15e47302012-09-07 20:12:54 +0000871 if (queue->peer_portid != nlportid)
Florian Westphal97d32cf2011-07-19 11:46:33 +0200872 return ERR_PTR(-EPERM);
873
874 return queue;
875}
876
877static struct nfqnl_msg_verdict_hdr*
878verdicthdr_get(const struct nlattr * const nfqa[])
879{
880 struct nfqnl_msg_verdict_hdr *vhdr;
881 unsigned int verdict;
882
883 if (!nfqa[NFQA_VERDICT_HDR])
884 return NULL;
885
886 vhdr = nla_data(nfqa[NFQA_VERDICT_HDR]);
Florian Westphalc6675232011-08-30 15:01:20 +0200887 verdict = ntohl(vhdr->verdict) & NF_VERDICT_MASK;
888 if (verdict > NF_MAX_VERDICT || verdict == NF_STOLEN)
Florian Westphal97d32cf2011-07-19 11:46:33 +0200889 return NULL;
890 return vhdr;
891}
892
893static int nfq_id_after(unsigned int id, unsigned int max)
894{
895 return (int)(id - max) > 0;
896}
897
898static int
899nfqnl_recv_verdict_batch(struct sock *ctnl, struct sk_buff *skb,
900 const struct nlmsghdr *nlh,
901 const struct nlattr * const nfqa[])
902{
David S. Miller3da07c02012-06-26 21:35:27 -0700903 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
Florian Westphal97d32cf2011-07-19 11:46:33 +0200904 struct nf_queue_entry *entry, *tmp;
905 unsigned int verdict, maxid;
906 struct nfqnl_msg_verdict_hdr *vhdr;
907 struct nfqnl_instance *queue;
908 LIST_HEAD(batch_list);
909 u16 queue_num = ntohs(nfmsg->res_id);
910
Gao fenge8179612013-03-24 23:50:47 +0000911 struct net *net = sock_net(ctnl);
912 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
913
914 queue = verdict_instance_lookup(q, queue_num,
915 NETLINK_CB(skb).portid);
Florian Westphal97d32cf2011-07-19 11:46:33 +0200916 if (IS_ERR(queue))
917 return PTR_ERR(queue);
918
919 vhdr = verdicthdr_get(nfqa);
920 if (!vhdr)
921 return -EINVAL;
922
923 verdict = ntohl(vhdr->verdict);
924 maxid = ntohl(vhdr->id);
925
926 spin_lock_bh(&queue->lock);
927
928 list_for_each_entry_safe(entry, tmp, &queue->queue_list, list) {
929 if (nfq_id_after(entry->id, maxid))
930 break;
931 __dequeue_entry(queue, entry);
932 list_add_tail(&entry->list, &batch_list);
933 }
934
935 spin_unlock_bh(&queue->lock);
936
937 if (list_empty(&batch_list))
938 return -ENOENT;
939
940 list_for_each_entry_safe(entry, tmp, &batch_list, list) {
941 if (nfqa[NFQA_MARK])
942 entry->skb->mark = ntohl(nla_get_be32(nfqa[NFQA_MARK]));
943 nf_reinject(entry, verdict);
944 }
945 return 0;
946}
947
Harald Welte7af4cc32005-08-09 19:44:15 -0700948static int
949nfqnl_recv_verdict(struct sock *ctnl, struct sk_buff *skb,
Patrick McHardy39938322009-08-25 16:07:58 +0200950 const struct nlmsghdr *nlh,
951 const struct nlattr * const nfqa[])
Harald Welte7af4cc32005-08-09 19:44:15 -0700952{
David S. Miller3da07c02012-06-26 21:35:27 -0700953 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
Harald Welte7af4cc32005-08-09 19:44:15 -0700954 u_int16_t queue_num = ntohs(nfmsg->res_id);
955
956 struct nfqnl_msg_verdict_hdr *vhdr;
957 struct nfqnl_instance *queue;
958 unsigned int verdict;
Patrick McHardy02f014d2007-12-05 01:26:33 -0800959 struct nf_queue_entry *entry;
Pablo Neira Ayuso8c88f872012-06-07 13:31:25 +0200960 enum ip_conntrack_info uninitialized_var(ctinfo);
961 struct nf_conn *ct = NULL;
Harald Welte7af4cc32005-08-09 19:44:15 -0700962
Gao fenge8179612013-03-24 23:50:47 +0000963 struct net *net = sock_net(ctnl);
964 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
Harald Welte7af4cc32005-08-09 19:44:15 -0700965
Gao fenge8179612013-03-24 23:50:47 +0000966 queue = instance_lookup(q, queue_num);
967 if (!queue)
968 queue = verdict_instance_lookup(q, queue_num,
969 NETLINK_CB(skb).portid);
Florian Westphal97d32cf2011-07-19 11:46:33 +0200970 if (IS_ERR(queue))
971 return PTR_ERR(queue);
Harald Welte7af4cc32005-08-09 19:44:15 -0700972
Florian Westphal97d32cf2011-07-19 11:46:33 +0200973 vhdr = verdicthdr_get(nfqa);
974 if (!vhdr)
Eric Dumazet84a797d2011-07-18 16:08:27 +0200975 return -EINVAL;
Harald Welte7af4cc32005-08-09 19:44:15 -0700976
Harald Welte7af4cc32005-08-09 19:44:15 -0700977 verdict = ntohl(vhdr->verdict);
978
Patrick McHardyb43d8d82007-12-05 01:25:30 -0800979 entry = find_dequeue_entry(queue, ntohl(vhdr->id));
Eric Dumazet84a797d2011-07-18 16:08:27 +0200980 if (entry == NULL)
981 return -ENOENT;
Harald Welte7af4cc32005-08-09 19:44:15 -0700982
Pablo Neira Ayusobd077932013-08-07 18:13:20 +0200983 if (nfqa[NFQA_CT]) {
Pablo Neira Ayuso7c622342012-06-19 02:10:57 +0200984 ct = nfqnl_ct_parse(entry->skb, nfqa[NFQA_CT], &ctinfo);
Pablo Neira Ayusobd077932013-08-07 18:13:20 +0200985 if (ct && nfqa[NFQA_EXP]) {
986 nfqnl_attach_expect(ct, nfqa[NFQA_EXP],
987 NETLINK_CB(skb).portid,
988 nlmsg_report(nlh));
989 }
990 }
Pablo Neira Ayuso9cb01762012-06-07 12:13:39 +0200991
Patrick McHardydf6fb862007-09-28 14:37:03 -0700992 if (nfqa[NFQA_PAYLOAD]) {
Pablo Neira Ayuso8c88f872012-06-07 13:31:25 +0200993 u16 payload_len = nla_len(nfqa[NFQA_PAYLOAD]);
994 int diff = payload_len - entry->skb->len;
995
Patrick McHardydf6fb862007-09-28 14:37:03 -0700996 if (nfqnl_mangle(nla_data(nfqa[NFQA_PAYLOAD]),
Pablo Neira Ayuso8c88f872012-06-07 13:31:25 +0200997 payload_len, entry, diff) < 0)
Harald Welte7af4cc32005-08-09 19:44:15 -0700998 verdict = NF_DROP;
Pablo Neira Ayuso8c88f872012-06-07 13:31:25 +0200999
Pablo Neira Ayuso7c622342012-06-19 02:10:57 +02001000 if (ct)
Gao feng0a0d80e2013-09-17 13:03:47 +02001001 nfqnl_ct_seq_adjust(entry->skb, ct, ctinfo, diff);
Harald Welte7af4cc32005-08-09 19:44:15 -07001002 }
1003
Patrick McHardydf6fb862007-09-28 14:37:03 -07001004 if (nfqa[NFQA_MARK])
Patrick McHardyea3a66f2007-12-05 01:30:02 -08001005 entry->skb->mark = ntohl(nla_get_be32(nfqa[NFQA_MARK]));
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001006
Patrick McHardy4b3d15e2007-12-05 01:27:02 -08001007 nf_reinject(entry, verdict);
Harald Welte7af4cc32005-08-09 19:44:15 -07001008 return 0;
1009}
1010
1011static int
1012nfqnl_recv_unsupp(struct sock *ctnl, struct sk_buff *skb,
Patrick McHardy39938322009-08-25 16:07:58 +02001013 const struct nlmsghdr *nlh,
1014 const struct nlattr * const nfqa[])
Harald Welte7af4cc32005-08-09 19:44:15 -07001015{
1016 return -ENOTSUPP;
1017}
1018
Patrick McHardy5bf75852007-09-28 14:39:26 -07001019static const struct nla_policy nfqa_cfg_policy[NFQA_CFG_MAX+1] = {
1020 [NFQA_CFG_CMD] = { .len = sizeof(struct nfqnl_msg_config_cmd) },
1021 [NFQA_CFG_PARAMS] = { .len = sizeof(struct nfqnl_msg_config_params) },
Harald Welte838ab632005-08-09 19:50:45 -07001022};
1023
Patrick McHardye3ac5292007-12-05 01:23:57 -08001024static const struct nf_queue_handler nfqh = {
Harald Weltebbd86b9f2005-08-09 20:23:11 -07001025 .outfn = &nfqnl_enqueue_packet,
1026};
1027
Harald Welte7af4cc32005-08-09 19:44:15 -07001028static int
1029nfqnl_recv_config(struct sock *ctnl, struct sk_buff *skb,
Patrick McHardy39938322009-08-25 16:07:58 +02001030 const struct nlmsghdr *nlh,
1031 const struct nlattr * const nfqa[])
Harald Welte7af4cc32005-08-09 19:44:15 -07001032{
David S. Miller3da07c02012-06-26 21:35:27 -07001033 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
Harald Welte7af4cc32005-08-09 19:44:15 -07001034 u_int16_t queue_num = ntohs(nfmsg->res_id);
1035 struct nfqnl_instance *queue;
Patrick McHardy9872bec2007-12-05 01:28:50 -08001036 struct nfqnl_msg_config_cmd *cmd = NULL;
Gao fenge8179612013-03-24 23:50:47 +00001037 struct net *net = sock_net(ctnl);
1038 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
Harald Welte838ab632005-08-09 19:50:45 -07001039 int ret = 0;
Harald Welte7af4cc32005-08-09 19:44:15 -07001040
Patrick McHardy9872bec2007-12-05 01:28:50 -08001041 if (nfqa[NFQA_CFG_CMD]) {
1042 cmd = nla_data(nfqa[NFQA_CFG_CMD]);
1043
Florian Westphal0360ae42012-11-23 06:22:21 +00001044 /* Obsolete commands without queue context */
Patrick McHardy9872bec2007-12-05 01:28:50 -08001045 switch (cmd->command) {
Florian Westphal0360ae42012-11-23 06:22:21 +00001046 case NFQNL_CFG_CMD_PF_BIND: return 0;
1047 case NFQNL_CFG_CMD_PF_UNBIND: return 0;
Patrick McHardy9872bec2007-12-05 01:28:50 -08001048 }
Patrick McHardya3c8e7fd2007-12-05 01:28:30 -08001049 }
1050
Patrick McHardy9872bec2007-12-05 01:28:50 -08001051 rcu_read_lock();
Gao fenge8179612013-03-24 23:50:47 +00001052 queue = instance_lookup(q, queue_num);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001053 if (queue && queue->peer_portid != NETLINK_CB(skb).portid) {
Patrick McHardy9872bec2007-12-05 01:28:50 -08001054 ret = -EPERM;
1055 goto err_out_unlock;
1056 }
Patrick McHardya3c8e7fd2007-12-05 01:28:30 -08001057
Patrick McHardy9872bec2007-12-05 01:28:50 -08001058 if (cmd != NULL) {
Harald Welte7af4cc32005-08-09 19:44:15 -07001059 switch (cmd->command) {
1060 case NFQNL_CFG_CMD_BIND:
Patrick McHardy9872bec2007-12-05 01:28:50 -08001061 if (queue) {
1062 ret = -EBUSY;
1063 goto err_out_unlock;
1064 }
Gao fenge8179612013-03-24 23:50:47 +00001065 queue = instance_create(q, queue_num,
1066 NETLINK_CB(skb).portid);
Patrick McHardybaab2ce2007-12-17 22:41:21 -08001067 if (IS_ERR(queue)) {
1068 ret = PTR_ERR(queue);
Patrick McHardy9872bec2007-12-05 01:28:50 -08001069 goto err_out_unlock;
1070 }
Harald Welte7af4cc32005-08-09 19:44:15 -07001071 break;
1072 case NFQNL_CFG_CMD_UNBIND:
Patrick McHardy9872bec2007-12-05 01:28:50 -08001073 if (!queue) {
1074 ret = -ENODEV;
1075 goto err_out_unlock;
1076 }
Gao fenge8179612013-03-24 23:50:47 +00001077 instance_destroy(q, queue);
Harald Welte7af4cc32005-08-09 19:44:15 -07001078 break;
1079 case NFQNL_CFG_CMD_PF_BIND:
Harald Welte7af4cc32005-08-09 19:44:15 -07001080 case NFQNL_CFG_CMD_PF_UNBIND:
Harald Welte7af4cc32005-08-09 19:44:15 -07001081 break;
1082 default:
Patrick McHardycd21f0a2007-12-17 22:40:19 -08001083 ret = -ENOTSUPP;
Harald Welte838ab632005-08-09 19:50:45 -07001084 break;
Harald Welte7af4cc32005-08-09 19:44:15 -07001085 }
Harald Welte7af4cc32005-08-09 19:44:15 -07001086 }
1087
Patrick McHardydf6fb862007-09-28 14:37:03 -07001088 if (nfqa[NFQA_CFG_PARAMS]) {
Harald Welte7af4cc32005-08-09 19:44:15 -07001089 struct nfqnl_msg_config_params *params;
Harald Welte7af4cc32005-08-09 19:44:15 -07001090
Patrick McHardy406dbfc2006-03-12 20:32:47 -08001091 if (!queue) {
Patrick McHardya3c8e7fd2007-12-05 01:28:30 -08001092 ret = -ENODEV;
Patrick McHardy9872bec2007-12-05 01:28:50 -08001093 goto err_out_unlock;
Patrick McHardy406dbfc2006-03-12 20:32:47 -08001094 }
Patrick McHardydf6fb862007-09-28 14:37:03 -07001095 params = nla_data(nfqa[NFQA_CFG_PARAMS]);
Harald Welte7af4cc32005-08-09 19:44:15 -07001096 nfqnl_set_mode(queue, params->copy_mode,
1097 ntohl(params->copy_range));
1098 }
1099
Patrick McHardydf6fb862007-09-28 14:37:03 -07001100 if (nfqa[NFQA_CFG_QUEUE_MAXLEN]) {
Eric Leblond829e17a2006-11-29 02:35:33 +01001101 __be32 *queue_maxlen;
Patrick McHardya3c8e7fd2007-12-05 01:28:30 -08001102
1103 if (!queue) {
1104 ret = -ENODEV;
Patrick McHardy9872bec2007-12-05 01:28:50 -08001105 goto err_out_unlock;
Patrick McHardya3c8e7fd2007-12-05 01:28:30 -08001106 }
Patrick McHardydf6fb862007-09-28 14:37:03 -07001107 queue_maxlen = nla_data(nfqa[NFQA_CFG_QUEUE_MAXLEN]);
Eric Leblond829e17a2006-11-29 02:35:33 +01001108 spin_lock_bh(&queue->lock);
1109 queue->queue_maxlen = ntohl(*queue_maxlen);
1110 spin_unlock_bh(&queue->lock);
1111 }
1112
Krishna Kumarfdb694a2012-05-24 03:56:44 +00001113 if (nfqa[NFQA_CFG_FLAGS]) {
1114 __u32 flags, mask;
1115
1116 if (!queue) {
1117 ret = -ENODEV;
1118 goto err_out_unlock;
1119 }
1120
1121 if (!nfqa[NFQA_CFG_MASK]) {
1122 /* A mask is needed to specify which flags are being
1123 * changed.
1124 */
1125 ret = -EINVAL;
1126 goto err_out_unlock;
1127 }
1128
1129 flags = ntohl(nla_get_be32(nfqa[NFQA_CFG_FLAGS]));
1130 mask = ntohl(nla_get_be32(nfqa[NFQA_CFG_MASK]));
1131
Krishna Kumar46ba5a22012-06-27 00:59:56 +00001132 if (flags >= NFQA_CFG_F_MAX) {
1133 ret = -EOPNOTSUPP;
1134 goto err_out_unlock;
1135 }
1136
Krishna Kumarfdb694a2012-05-24 03:56:44 +00001137 spin_lock_bh(&queue->lock);
1138 queue->flags &= ~mask;
1139 queue->flags |= flags & mask;
1140 spin_unlock_bh(&queue->lock);
1141 }
1142
Patrick McHardy9872bec2007-12-05 01:28:50 -08001143err_out_unlock:
1144 rcu_read_unlock();
Harald Welte838ab632005-08-09 19:50:45 -07001145 return ret;
Harald Welte7af4cc32005-08-09 19:44:15 -07001146}
1147
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -07001148static const struct nfnl_callback nfqnl_cb[NFQNL_MSG_MAX] = {
Eric Dumazet84a797d2011-07-18 16:08:27 +02001149 [NFQNL_MSG_PACKET] = { .call_rcu = nfqnl_recv_unsupp,
Harald Welte37d2e7a2005-11-14 15:24:59 -08001150 .attr_count = NFQA_MAX, },
Eric Dumazet84a797d2011-07-18 16:08:27 +02001151 [NFQNL_MSG_VERDICT] = { .call_rcu = nfqnl_recv_verdict,
Patrick McHardy5bf75852007-09-28 14:39:26 -07001152 .attr_count = NFQA_MAX,
1153 .policy = nfqa_verdict_policy },
Harald Welte7af4cc32005-08-09 19:44:15 -07001154 [NFQNL_MSG_CONFIG] = { .call = nfqnl_recv_config,
Patrick McHardy5bf75852007-09-28 14:39:26 -07001155 .attr_count = NFQA_CFG_MAX,
1156 .policy = nfqa_cfg_policy },
Florian Westphal97d32cf2011-07-19 11:46:33 +02001157 [NFQNL_MSG_VERDICT_BATCH]={ .call_rcu = nfqnl_recv_verdict_batch,
1158 .attr_count = NFQA_MAX,
1159 .policy = nfqa_verdict_batch_policy },
Harald Welte7af4cc32005-08-09 19:44:15 -07001160};
1161
Patrick McHardy7c8d4cb2007-09-28 14:15:45 -07001162static const struct nfnetlink_subsystem nfqnl_subsys = {
Harald Welte7af4cc32005-08-09 19:44:15 -07001163 .name = "nf_queue",
1164 .subsys_id = NFNL_SUBSYS_QUEUE,
1165 .cb_count = NFQNL_MSG_MAX,
Harald Welte7af4cc32005-08-09 19:44:15 -07001166 .cb = nfqnl_cb,
1167};
1168
Harald Welte838ab632005-08-09 19:50:45 -07001169#ifdef CONFIG_PROC_FS
1170struct iter_state {
Gao fenge8179612013-03-24 23:50:47 +00001171 struct seq_net_private p;
Harald Welte838ab632005-08-09 19:50:45 -07001172 unsigned int bucket;
1173};
1174
1175static struct hlist_node *get_first(struct seq_file *seq)
1176{
1177 struct iter_state *st = seq->private;
Gao fenge8179612013-03-24 23:50:47 +00001178 struct net *net;
1179 struct nfnl_queue_net *q;
Harald Welte838ab632005-08-09 19:50:45 -07001180
1181 if (!st)
1182 return NULL;
1183
Gao fenge8179612013-03-24 23:50:47 +00001184 net = seq_file_net(seq);
1185 q = nfnl_queue_pernet(net);
Harald Welte838ab632005-08-09 19:50:45 -07001186 for (st->bucket = 0; st->bucket < INSTANCE_BUCKETS; st->bucket++) {
Gao fenge8179612013-03-24 23:50:47 +00001187 if (!hlist_empty(&q->instance_table[st->bucket]))
1188 return q->instance_table[st->bucket].first;
Harald Welte838ab632005-08-09 19:50:45 -07001189 }
1190 return NULL;
1191}
1192
1193static struct hlist_node *get_next(struct seq_file *seq, struct hlist_node *h)
1194{
1195 struct iter_state *st = seq->private;
Gao fenge8179612013-03-24 23:50:47 +00001196 struct net *net = seq_file_net(seq);
Harald Welte838ab632005-08-09 19:50:45 -07001197
1198 h = h->next;
1199 while (!h) {
Gao fenge8179612013-03-24 23:50:47 +00001200 struct nfnl_queue_net *q;
1201
Harald Welte838ab632005-08-09 19:50:45 -07001202 if (++st->bucket >= INSTANCE_BUCKETS)
1203 return NULL;
1204
Gao fenge8179612013-03-24 23:50:47 +00001205 q = nfnl_queue_pernet(net);
1206 h = q->instance_table[st->bucket].first;
Harald Welte838ab632005-08-09 19:50:45 -07001207 }
1208 return h;
1209}
1210
1211static struct hlist_node *get_idx(struct seq_file *seq, loff_t pos)
1212{
1213 struct hlist_node *head;
1214 head = get_first(seq);
1215
1216 if (head)
1217 while (pos && (head = get_next(seq, head)))
1218 pos--;
1219 return pos ? NULL : head;
1220}
1221
Gao fenge8179612013-03-24 23:50:47 +00001222static void *seq_start(struct seq_file *s, loff_t *pos)
1223 __acquires(nfnl_queue_pernet(seq_file_net(s))->instances_lock)
Harald Welte838ab632005-08-09 19:50:45 -07001224{
Gao fenge8179612013-03-24 23:50:47 +00001225 spin_lock(&nfnl_queue_pernet(seq_file_net(s))->instances_lock);
1226 return get_idx(s, *pos);
Harald Welte838ab632005-08-09 19:50:45 -07001227}
1228
1229static void *seq_next(struct seq_file *s, void *v, loff_t *pos)
1230{
1231 (*pos)++;
1232 return get_next(s, v);
1233}
1234
1235static void seq_stop(struct seq_file *s, void *v)
Gao fenge8179612013-03-24 23:50:47 +00001236 __releases(nfnl_queue_pernet(seq_file_net(s))->instances_lock)
Harald Welte838ab632005-08-09 19:50:45 -07001237{
Gao fenge8179612013-03-24 23:50:47 +00001238 spin_unlock(&nfnl_queue_pernet(seq_file_net(s))->instances_lock);
Harald Welte838ab632005-08-09 19:50:45 -07001239}
1240
1241static int seq_show(struct seq_file *s, void *v)
1242{
1243 const struct nfqnl_instance *inst = v;
1244
1245 return seq_printf(s, "%5d %6d %5d %1d %5d %5d %5d %8d %2d\n",
1246 inst->queue_num,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001247 inst->peer_portid, inst->queue_total,
Harald Welte838ab632005-08-09 19:50:45 -07001248 inst->copy_mode, inst->copy_range,
1249 inst->queue_dropped, inst->queue_user_dropped,
Eric Dumazet58637022011-07-19 11:44:17 +02001250 inst->id_sequence, 1);
Harald Welte838ab632005-08-09 19:50:45 -07001251}
1252
Philippe De Muyter56b3d972007-07-10 23:07:31 -07001253static const struct seq_operations nfqnl_seq_ops = {
Harald Welte838ab632005-08-09 19:50:45 -07001254 .start = seq_start,
1255 .next = seq_next,
1256 .stop = seq_stop,
1257 .show = seq_show,
1258};
1259
1260static int nfqnl_open(struct inode *inode, struct file *file)
1261{
Gao fenge8179612013-03-24 23:50:47 +00001262 return seq_open_net(inode, file, &nfqnl_seq_ops,
Pavel Emelyanove2da5912007-10-10 02:29:58 -07001263 sizeof(struct iter_state));
Harald Welte838ab632005-08-09 19:50:45 -07001264}
1265
Arjan van de Venda7071d2007-02-12 00:55:36 -08001266static const struct file_operations nfqnl_file_ops = {
Harald Welte838ab632005-08-09 19:50:45 -07001267 .owner = THIS_MODULE,
1268 .open = nfqnl_open,
1269 .read = seq_read,
1270 .llseek = seq_lseek,
Gao fenge8179612013-03-24 23:50:47 +00001271 .release = seq_release_net,
Harald Welte838ab632005-08-09 19:50:45 -07001272};
1273
1274#endif /* PROC_FS */
1275
Gao fenge8179612013-03-24 23:50:47 +00001276static int __net_init nfnl_queue_net_init(struct net *net)
Harald Welte7af4cc32005-08-09 19:44:15 -07001277{
Gao fenge8179612013-03-24 23:50:47 +00001278 unsigned int i;
1279 struct nfnl_queue_net *q = nfnl_queue_pernet(net);
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -08001280
Harald Welte838ab632005-08-09 19:50:45 -07001281 for (i = 0; i < INSTANCE_BUCKETS; i++)
Gao fenge8179612013-03-24 23:50:47 +00001282 INIT_HLIST_HEAD(&q->instance_table[i]);
1283
1284 spin_lock_init(&q->instances_lock);
1285
1286#ifdef CONFIG_PROC_FS
1287 if (!proc_create("nfnetlink_queue", 0440,
1288 net->nf.proc_netfilter, &nfqnl_file_ops))
1289 return -ENOMEM;
1290#endif
1291 return 0;
1292}
1293
1294static void __net_exit nfnl_queue_net_exit(struct net *net)
1295{
Pablo Neira Ayusoe778f562013-04-30 08:01:18 +00001296#ifdef CONFIG_PROC_FS
Gao fenge8179612013-03-24 23:50:47 +00001297 remove_proc_entry("nfnetlink_queue", net->nf.proc_netfilter);
Pablo Neira Ayusoe778f562013-04-30 08:01:18 +00001298#endif
Gao fenge8179612013-03-24 23:50:47 +00001299}
1300
1301static struct pernet_operations nfnl_queue_net_ops = {
1302 .init = nfnl_queue_net_init,
1303 .exit = nfnl_queue_net_exit,
1304 .id = &nfnl_queue_net_id,
1305 .size = sizeof(struct nfnl_queue_net),
1306};
1307
1308static int __init nfnetlink_queue_init(void)
1309{
1310 int status = -ENOMEM;
Harald Welte838ab632005-08-09 19:50:45 -07001311
Harald Welte7af4cc32005-08-09 19:44:15 -07001312 netlink_register_notifier(&nfqnl_rtnl_notifier);
1313 status = nfnetlink_subsys_register(&nfqnl_subsys);
1314 if (status < 0) {
Gao fenge8179612013-03-24 23:50:47 +00001315 pr_err("nf_queue: failed to create netlink socket\n");
Harald Welte7af4cc32005-08-09 19:44:15 -07001316 goto cleanup_netlink_notifier;
1317 }
1318
Gao fenge8179612013-03-24 23:50:47 +00001319 status = register_pernet_subsys(&nfnl_queue_net_ops);
1320 if (status < 0) {
1321 pr_err("nf_queue: failed to register pernet ops\n");
Harald Welte838ab632005-08-09 19:50:45 -07001322 goto cleanup_subsys;
Gao fenge8179612013-03-24 23:50:47 +00001323 }
Harald Welte7af4cc32005-08-09 19:44:15 -07001324 register_netdevice_notifier(&nfqnl_dev_notifier);
Florian Westphal0360ae42012-11-23 06:22:21 +00001325 nf_register_queue_handler(&nfqh);
Harald Welte7af4cc32005-08-09 19:44:15 -07001326 return status;
1327
Harald Welte838ab632005-08-09 19:50:45 -07001328cleanup_subsys:
Harald Welte7af4cc32005-08-09 19:44:15 -07001329 nfnetlink_subsys_unregister(&nfqnl_subsys);
Harald Welte7af4cc32005-08-09 19:44:15 -07001330cleanup_netlink_notifier:
1331 netlink_unregister_notifier(&nfqnl_rtnl_notifier);
1332 return status;
1333}
1334
Andrew Morton65b4b4e2006-03-28 16:37:06 -08001335static void __exit nfnetlink_queue_fini(void)
Harald Welte7af4cc32005-08-09 19:44:15 -07001336{
Florian Westphal0360ae42012-11-23 06:22:21 +00001337 nf_unregister_queue_handler();
Patrick McHardy32292a72006-04-06 14:11:30 -07001338 unregister_netdevice_notifier(&nfqnl_dev_notifier);
Gao fenge8179612013-03-24 23:50:47 +00001339 unregister_pernet_subsys(&nfnl_queue_net_ops);
Patrick McHardy32292a72006-04-06 14:11:30 -07001340 nfnetlink_subsys_unregister(&nfqnl_subsys);
1341 netlink_unregister_notifier(&nfqnl_rtnl_notifier);
Jesper Dangaard Brouer67137f32009-06-08 03:11:33 +00001342
1343 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Harald Welte7af4cc32005-08-09 19:44:15 -07001344}
1345
1346MODULE_DESCRIPTION("netfilter packet queue handler");
1347MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
1348MODULE_LICENSE("GPL");
1349MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_QUEUE);
1350
Andrew Morton65b4b4e2006-03-28 16:37:06 -08001351module_init(nfnetlink_queue_init);
1352module_exit(nfnetlink_queue_fini);