Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 1 | /* |
| 2 | * This is a module which is used for queueing packets and communicating with |
Jesper Dangaard Brouer | 67137f3 | 2009-06-08 03:11:33 +0000 | [diff] [blame] | 3 | * userspace via nfnetlink. |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 4 | * |
| 5 | * (C) 2005 by Harald Welte <laforge@netfilter.org> |
Patrick McHardy | 4ad9d4f | 2007-12-05 01:31:17 -0800 | [diff] [blame] | 6 | * (C) 2007 by Patrick McHardy <kaber@trash.net> |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 7 | * |
| 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 Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 21 | #include <linux/slab.h> |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 22 | #include <linux/notifier.h> |
| 23 | #include <linux/netdevice.h> |
| 24 | #include <linux/netfilter.h> |
Harald Welte | 838ab63 | 2005-08-09 19:50:45 -0700 | [diff] [blame] | 25 | #include <linux/proc_fs.h> |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 26 | #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 McHardy | c01cd42 | 2007-12-05 01:24:48 -0800 | [diff] [blame] | 32 | #include <net/netfilter/nf_queue.h> |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 33 | |
| 34 | #include <asm/atomic.h> |
| 35 | |
Harald Welte | fbcd923 | 2005-08-09 20:22:10 -0700 | [diff] [blame] | 36 | #ifdef CONFIG_BRIDGE_NETFILTER |
| 37 | #include "../bridge/br_private.h" |
| 38 | #endif |
| 39 | |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 40 | #define NFQNL_QMAX_DEFAULT 1024 |
| 41 | |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 42 | struct nfqnl_instance { |
| 43 | struct hlist_node hlist; /* global list of queues */ |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 44 | struct rcu_head rcu; |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 45 | |
| 46 | int peer_pid; |
| 47 | unsigned int queue_maxlen; |
| 48 | unsigned int copy_range; |
| 49 | unsigned int queue_total; |
| 50 | unsigned int queue_dropped; |
| 51 | unsigned int queue_user_dropped; |
| 52 | |
Patrick McHardy | e48b9b2 | 2007-12-05 01:28:10 -0800 | [diff] [blame] | 53 | unsigned int id_sequence; /* 'sequence' of pkt ids */ |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 54 | |
| 55 | u_int16_t queue_num; /* number of this queue */ |
| 56 | u_int8_t copy_mode; |
| 57 | |
| 58 | spinlock_t lock; |
| 59 | |
| 60 | struct list_head queue_list; /* packets in queue */ |
| 61 | }; |
| 62 | |
Patrick McHardy | 02f014d | 2007-12-05 01:26:33 -0800 | [diff] [blame] | 63 | typedef int (*nfqnl_cmpfn)(struct nf_queue_entry *, unsigned long); |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 64 | |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 65 | static DEFINE_SPINLOCK(instances_lock); |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 66 | |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 67 | #define INSTANCE_BUCKETS 16 |
Patrick McHardy | 9d6023a | 2007-12-05 01:29:38 -0800 | [diff] [blame] | 68 | static struct hlist_head instance_table[INSTANCE_BUCKETS] __read_mostly; |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 69 | |
| 70 | static inline u_int8_t instance_hashfn(u_int16_t queue_num) |
| 71 | { |
| 72 | return ((queue_num >> 8) | queue_num) % INSTANCE_BUCKETS; |
| 73 | } |
| 74 | |
| 75 | static struct nfqnl_instance * |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 76 | instance_lookup(u_int16_t queue_num) |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 77 | { |
| 78 | struct hlist_head *head; |
| 79 | struct hlist_node *pos; |
| 80 | struct nfqnl_instance *inst; |
| 81 | |
| 82 | head = &instance_table[instance_hashfn(queue_num)]; |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 83 | hlist_for_each_entry_rcu(inst, pos, head, hlist) { |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 84 | if (inst->queue_num == queue_num) |
| 85 | return inst; |
| 86 | } |
| 87 | return NULL; |
| 88 | } |
| 89 | |
| 90 | static struct nfqnl_instance * |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 91 | instance_create(u_int16_t queue_num, int pid) |
| 92 | { |
Patrick McHardy | baab2ce | 2007-12-17 22:41:21 -0800 | [diff] [blame] | 93 | struct nfqnl_instance *inst; |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 94 | unsigned int h; |
Patrick McHardy | baab2ce | 2007-12-17 22:41:21 -0800 | [diff] [blame] | 95 | int err; |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 96 | |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 97 | spin_lock(&instances_lock); |
Patrick McHardy | baab2ce | 2007-12-17 22:41:21 -0800 | [diff] [blame] | 98 | if (instance_lookup(queue_num)) { |
| 99 | err = -EEXIST; |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 100 | goto out_unlock; |
Patrick McHardy | baab2ce | 2007-12-17 22:41:21 -0800 | [diff] [blame] | 101 | } |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 102 | |
Harald Welte | 10dfdc6 | 2005-11-03 19:20:07 +0100 | [diff] [blame] | 103 | inst = kzalloc(sizeof(*inst), GFP_ATOMIC); |
Patrick McHardy | baab2ce | 2007-12-17 22:41:21 -0800 | [diff] [blame] | 104 | if (!inst) { |
| 105 | err = -ENOMEM; |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 106 | goto out_unlock; |
Patrick McHardy | baab2ce | 2007-12-17 22:41:21 -0800 | [diff] [blame] | 107 | } |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 108 | |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 109 | inst->queue_num = queue_num; |
| 110 | inst->peer_pid = pid; |
| 111 | inst->queue_maxlen = NFQNL_QMAX_DEFAULT; |
| 112 | inst->copy_range = 0xfffff; |
| 113 | inst->copy_mode = NFQNL_COPY_NONE; |
YOSHIFUJI Hideaki | 181a46a | 2006-01-04 13:56:54 -0800 | [diff] [blame] | 114 | spin_lock_init(&inst->lock); |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 115 | INIT_LIST_HEAD(&inst->queue_list); |
| 116 | |
Patrick McHardy | baab2ce | 2007-12-17 22:41:21 -0800 | [diff] [blame] | 117 | if (!try_module_get(THIS_MODULE)) { |
| 118 | err = -EAGAIN; |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 119 | goto out_free; |
Patrick McHardy | baab2ce | 2007-12-17 22:41:21 -0800 | [diff] [blame] | 120 | } |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 121 | |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 122 | h = instance_hashfn(queue_num); |
| 123 | hlist_add_head_rcu(&inst->hlist, &instance_table[h]); |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 124 | |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 125 | spin_unlock(&instances_lock); |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 126 | |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 127 | return inst; |
| 128 | |
| 129 | out_free: |
| 130 | kfree(inst); |
| 131 | out_unlock: |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 132 | spin_unlock(&instances_lock); |
Patrick McHardy | baab2ce | 2007-12-17 22:41:21 -0800 | [diff] [blame] | 133 | return ERR_PTR(err); |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 134 | } |
| 135 | |
Patrick McHardy | b43d8d8 | 2007-12-05 01:25:30 -0800 | [diff] [blame] | 136 | static void nfqnl_flush(struct nfqnl_instance *queue, nfqnl_cmpfn cmpfn, |
| 137 | unsigned long data); |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 138 | |
| 139 | static void |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 140 | instance_destroy_rcu(struct rcu_head *head) |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 141 | { |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 142 | struct nfqnl_instance *inst = container_of(head, struct nfqnl_instance, |
| 143 | rcu); |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 144 | |
Patrick McHardy | b43d8d8 | 2007-12-05 01:25:30 -0800 | [diff] [blame] | 145 | nfqnl_flush(inst, NULL, 0); |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 146 | kfree(inst); |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 147 | module_put(THIS_MODULE); |
| 148 | } |
| 149 | |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 150 | static void |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 151 | __instance_destroy(struct nfqnl_instance *inst) |
| 152 | { |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 153 | hlist_del_rcu(&inst->hlist); |
| 154 | call_rcu(&inst->rcu, instance_destroy_rcu); |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 155 | } |
| 156 | |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 157 | static void |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 158 | instance_destroy(struct nfqnl_instance *inst) |
| 159 | { |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 160 | spin_lock(&instances_lock); |
| 161 | __instance_destroy(inst); |
| 162 | spin_unlock(&instances_lock); |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 163 | } |
| 164 | |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 165 | static inline void |
Patrick McHardy | 02f014d | 2007-12-05 01:26:33 -0800 | [diff] [blame] | 166 | __enqueue_entry(struct nfqnl_instance *queue, struct nf_queue_entry *entry) |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 167 | { |
Patrick McHardy | 0ac41e8 | 2007-12-05 01:25:03 -0800 | [diff] [blame] | 168 | list_add_tail(&entry->list, &queue->queue_list); |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 169 | queue->queue_total++; |
| 170 | } |
| 171 | |
Patrick McHardy | 02f014d | 2007-12-05 01:26:33 -0800 | [diff] [blame] | 172 | static struct nf_queue_entry * |
Patrick McHardy | b43d8d8 | 2007-12-05 01:25:30 -0800 | [diff] [blame] | 173 | find_dequeue_entry(struct nfqnl_instance *queue, unsigned int id) |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 174 | { |
Patrick McHardy | 02f014d | 2007-12-05 01:26:33 -0800 | [diff] [blame] | 175 | struct nf_queue_entry *entry = NULL, *i; |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 176 | |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 177 | spin_lock_bh(&queue->lock); |
Patrick McHardy | b43d8d8 | 2007-12-05 01:25:30 -0800 | [diff] [blame] | 178 | |
| 179 | list_for_each_entry(i, &queue->queue_list, list) { |
| 180 | if (i->id == id) { |
| 181 | entry = i; |
| 182 | break; |
| 183 | } |
| 184 | } |
| 185 | |
| 186 | if (entry) { |
| 187 | list_del(&entry->list); |
| 188 | queue->queue_total--; |
| 189 | } |
| 190 | |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 191 | spin_unlock_bh(&queue->lock); |
| 192 | |
| 193 | return entry; |
| 194 | } |
| 195 | |
| 196 | static void |
Patrick McHardy | b43d8d8 | 2007-12-05 01:25:30 -0800 | [diff] [blame] | 197 | nfqnl_flush(struct nfqnl_instance *queue, nfqnl_cmpfn cmpfn, unsigned long data) |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 198 | { |
Patrick McHardy | 02f014d | 2007-12-05 01:26:33 -0800 | [diff] [blame] | 199 | struct nf_queue_entry *entry, *next; |
Patrick McHardy | b43d8d8 | 2007-12-05 01:25:30 -0800 | [diff] [blame] | 200 | |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 201 | spin_lock_bh(&queue->lock); |
Patrick McHardy | b43d8d8 | 2007-12-05 01:25:30 -0800 | [diff] [blame] | 202 | list_for_each_entry_safe(entry, next, &queue->queue_list, list) { |
| 203 | if (!cmpfn || cmpfn(entry, data)) { |
| 204 | list_del(&entry->list); |
| 205 | queue->queue_total--; |
Patrick McHardy | 4b3d15e | 2007-12-05 01:27:02 -0800 | [diff] [blame] | 206 | nf_reinject(entry, NF_DROP); |
Patrick McHardy | b43d8d8 | 2007-12-05 01:25:30 -0800 | [diff] [blame] | 207 | } |
| 208 | } |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 209 | spin_unlock_bh(&queue->lock); |
| 210 | } |
| 211 | |
| 212 | static struct sk_buff * |
| 213 | nfqnl_build_packet_message(struct nfqnl_instance *queue, |
Patrick McHardy | 0ef0f46 | 2007-12-05 01:31:01 -0800 | [diff] [blame] | 214 | struct nf_queue_entry *entry) |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 215 | { |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 216 | sk_buff_data_t old_tail; |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 217 | size_t size; |
| 218 | size_t data_len = 0; |
| 219 | struct sk_buff *skb; |
| 220 | struct nfqnl_msg_packet_hdr pmsg; |
| 221 | struct nlmsghdr *nlh; |
| 222 | struct nfgenmsg *nfmsg; |
Jesper Juhl | 3e4ead4 | 2006-01-05 12:15:58 -0800 | [diff] [blame] | 223 | struct sk_buff *entskb = entry->skb; |
| 224 | struct net_device *indev; |
| 225 | struct net_device *outdev; |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 226 | |
Eric Leblond | cabaa9b | 2008-03-10 16:41:43 -0700 | [diff] [blame] | 227 | size = NLMSG_SPACE(sizeof(struct nfgenmsg)) |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 228 | + nla_total_size(sizeof(struct nfqnl_msg_packet_hdr)) |
| 229 | + nla_total_size(sizeof(u_int32_t)) /* ifindex */ |
| 230 | + nla_total_size(sizeof(u_int32_t)) /* ifindex */ |
Harald Welte | fbcd923 | 2005-08-09 20:22:10 -0700 | [diff] [blame] | 231 | #ifdef CONFIG_BRIDGE_NETFILTER |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 232 | + nla_total_size(sizeof(u_int32_t)) /* ifindex */ |
| 233 | + nla_total_size(sizeof(u_int32_t)) /* ifindex */ |
Harald Welte | fbcd923 | 2005-08-09 20:22:10 -0700 | [diff] [blame] | 234 | #endif |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 235 | + nla_total_size(sizeof(u_int32_t)) /* mark */ |
| 236 | + nla_total_size(sizeof(struct nfqnl_msg_packet_hw)) |
| 237 | + nla_total_size(sizeof(struct nfqnl_msg_packet_timestamp)); |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 238 | |
Patrick McHardy | 02f014d | 2007-12-05 01:26:33 -0800 | [diff] [blame] | 239 | outdev = entry->outdev; |
Jesper Juhl | 3e4ead4 | 2006-01-05 12:15:58 -0800 | [diff] [blame] | 240 | |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 241 | spin_lock_bh(&queue->lock); |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 242 | |
Patrick McHardy | 861934c | 2007-12-05 01:30:29 -0800 | [diff] [blame] | 243 | switch ((enum nfqnl_config_mode)queue->copy_mode) { |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 244 | case NFQNL_COPY_META: |
| 245 | case NFQNL_COPY_NONE: |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 246 | break; |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 247 | |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 248 | case NFQNL_COPY_PACKET: |
Herbert Xu | e9f13ca | 2010-04-08 14:54:35 +0200 | [diff] [blame] | 249 | if (entskb->ip_summed == CHECKSUM_PARTIAL && |
Patrick McHardy | 0ef0f46 | 2007-12-05 01:31:01 -0800 | [diff] [blame] | 250 | skb_checksum_help(entskb)) { |
Patrick McHardy | e7dfb09 | 2005-09-06 15:10:00 -0700 | [diff] [blame] | 251 | spin_unlock_bh(&queue->lock); |
| 252 | return NULL; |
| 253 | } |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 254 | if (queue->copy_range == 0 |
Jesper Juhl | 3e4ead4 | 2006-01-05 12:15:58 -0800 | [diff] [blame] | 255 | || queue->copy_range > entskb->len) |
| 256 | data_len = entskb->len; |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 257 | else |
| 258 | data_len = queue->copy_range; |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 259 | |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 260 | size += nla_total_size(data_len); |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 261 | break; |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 262 | } |
| 263 | |
Patrick McHardy | e48b9b2 | 2007-12-05 01:28:10 -0800 | [diff] [blame] | 264 | entry->id = queue->id_sequence++; |
| 265 | |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 266 | spin_unlock_bh(&queue->lock); |
| 267 | |
| 268 | skb = alloc_skb(size, GFP_ATOMIC); |
| 269 | if (!skb) |
| 270 | goto nlmsg_failure; |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 271 | |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 272 | old_tail = skb->tail; |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 273 | nlh = NLMSG_PUT(skb, 0, 0, |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 274 | NFNL_SUBSYS_QUEUE << 8 | NFQNL_MSG_PACKET, |
| 275 | sizeof(struct nfgenmsg)); |
| 276 | nfmsg = NLMSG_DATA(nlh); |
Patrick McHardy | 02f014d | 2007-12-05 01:26:33 -0800 | [diff] [blame] | 277 | nfmsg->nfgen_family = entry->pf; |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 278 | nfmsg->version = NFNETLINK_V0; |
| 279 | nfmsg->res_id = htons(queue->queue_num); |
| 280 | |
| 281 | pmsg.packet_id = htonl(entry->id); |
Al Viro | febf0a4 | 2006-11-03 00:59:17 -0800 | [diff] [blame] | 282 | pmsg.hw_protocol = entskb->protocol; |
Patrick McHardy | 02f014d | 2007-12-05 01:26:33 -0800 | [diff] [blame] | 283 | pmsg.hook = entry->hook; |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 284 | |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 285 | NLA_PUT(skb, NFQA_PACKET_HDR, sizeof(pmsg), &pmsg); |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 286 | |
Patrick McHardy | 02f014d | 2007-12-05 01:26:33 -0800 | [diff] [blame] | 287 | indev = entry->indev; |
Jesper Juhl | 3e4ead4 | 2006-01-05 12:15:58 -0800 | [diff] [blame] | 288 | if (indev) { |
Harald Welte | fbcd923 | 2005-08-09 20:22:10 -0700 | [diff] [blame] | 289 | #ifndef CONFIG_BRIDGE_NETFILTER |
Patrick McHardy | ea3a66f | 2007-12-05 01:30:02 -0800 | [diff] [blame] | 290 | NLA_PUT_BE32(skb, NFQA_IFINDEX_INDEV, htonl(indev->ifindex)); |
Harald Welte | fbcd923 | 2005-08-09 20:22:10 -0700 | [diff] [blame] | 291 | #else |
Patrick McHardy | 02f014d | 2007-12-05 01:26:33 -0800 | [diff] [blame] | 292 | if (entry->pf == PF_BRIDGE) { |
Harald Welte | fbcd923 | 2005-08-09 20:22:10 -0700 | [diff] [blame] | 293 | /* Case 1: indev is physical input device, we need to |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 294 | * look for bridge group (when called from |
Harald Welte | fbcd923 | 2005-08-09 20:22:10 -0700 | [diff] [blame] | 295 | * netfilter_bridge) */ |
Patrick McHardy | ea3a66f | 2007-12-05 01:30:02 -0800 | [diff] [blame] | 296 | NLA_PUT_BE32(skb, NFQA_IFINDEX_PHYSINDEV, |
| 297 | htonl(indev->ifindex)); |
Harald Welte | fbcd923 | 2005-08-09 20:22:10 -0700 | [diff] [blame] | 298 | /* this is the bridge group "brX" */ |
Patrick McHardy | ea3a66f | 2007-12-05 01:30:02 -0800 | [diff] [blame] | 299 | NLA_PUT_BE32(skb, NFQA_IFINDEX_INDEV, |
| 300 | htonl(indev->br_port->br->dev->ifindex)); |
Harald Welte | fbcd923 | 2005-08-09 20:22:10 -0700 | [diff] [blame] | 301 | } else { |
| 302 | /* Case 2: indev is bridge group, we need to look for |
| 303 | * physical device (when called from ipv4) */ |
Patrick McHardy | ea3a66f | 2007-12-05 01:30:02 -0800 | [diff] [blame] | 304 | NLA_PUT_BE32(skb, NFQA_IFINDEX_INDEV, |
| 305 | htonl(indev->ifindex)); |
| 306 | if (entskb->nf_bridge && entskb->nf_bridge->physindev) |
| 307 | NLA_PUT_BE32(skb, NFQA_IFINDEX_PHYSINDEV, |
| 308 | htonl(entskb->nf_bridge->physindev->ifindex)); |
Harald Welte | fbcd923 | 2005-08-09 20:22:10 -0700 | [diff] [blame] | 309 | } |
| 310 | #endif |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 311 | } |
| 312 | |
Jesper Juhl | 3e4ead4 | 2006-01-05 12:15:58 -0800 | [diff] [blame] | 313 | if (outdev) { |
Harald Welte | fbcd923 | 2005-08-09 20:22:10 -0700 | [diff] [blame] | 314 | #ifndef CONFIG_BRIDGE_NETFILTER |
Patrick McHardy | ea3a66f | 2007-12-05 01:30:02 -0800 | [diff] [blame] | 315 | NLA_PUT_BE32(skb, NFQA_IFINDEX_OUTDEV, htonl(outdev->ifindex)); |
Harald Welte | fbcd923 | 2005-08-09 20:22:10 -0700 | [diff] [blame] | 316 | #else |
Patrick McHardy | 02f014d | 2007-12-05 01:26:33 -0800 | [diff] [blame] | 317 | if (entry->pf == PF_BRIDGE) { |
Harald Welte | fbcd923 | 2005-08-09 20:22:10 -0700 | [diff] [blame] | 318 | /* Case 1: outdev is physical output device, we need to |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 319 | * look for bridge group (when called from |
Harald Welte | fbcd923 | 2005-08-09 20:22:10 -0700 | [diff] [blame] | 320 | * netfilter_bridge) */ |
Patrick McHardy | ea3a66f | 2007-12-05 01:30:02 -0800 | [diff] [blame] | 321 | NLA_PUT_BE32(skb, NFQA_IFINDEX_PHYSOUTDEV, |
| 322 | htonl(outdev->ifindex)); |
Harald Welte | fbcd923 | 2005-08-09 20:22:10 -0700 | [diff] [blame] | 323 | /* this is the bridge group "brX" */ |
Patrick McHardy | ea3a66f | 2007-12-05 01:30:02 -0800 | [diff] [blame] | 324 | NLA_PUT_BE32(skb, NFQA_IFINDEX_OUTDEV, |
| 325 | htonl(outdev->br_port->br->dev->ifindex)); |
Harald Welte | fbcd923 | 2005-08-09 20:22:10 -0700 | [diff] [blame] | 326 | } else { |
| 327 | /* Case 2: outdev is bridge group, we need to look for |
| 328 | * physical output device (when called from ipv4) */ |
Patrick McHardy | ea3a66f | 2007-12-05 01:30:02 -0800 | [diff] [blame] | 329 | NLA_PUT_BE32(skb, NFQA_IFINDEX_OUTDEV, |
| 330 | htonl(outdev->ifindex)); |
| 331 | if (entskb->nf_bridge && entskb->nf_bridge->physoutdev) |
| 332 | NLA_PUT_BE32(skb, NFQA_IFINDEX_PHYSOUTDEV, |
| 333 | htonl(entskb->nf_bridge->physoutdev->ifindex)); |
Harald Welte | fbcd923 | 2005-08-09 20:22:10 -0700 | [diff] [blame] | 334 | } |
| 335 | #endif |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 336 | } |
| 337 | |
Patrick McHardy | ea3a66f | 2007-12-05 01:30:02 -0800 | [diff] [blame] | 338 | if (entskb->mark) |
| 339 | NLA_PUT_BE32(skb, NFQA_MARK, htonl(entskb->mark)); |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 340 | |
Stephen Hemminger | b95cce3 | 2007-09-26 22:13:38 -0700 | [diff] [blame] | 341 | if (indev && entskb->dev) { |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 342 | struct nfqnl_msg_packet_hw phw; |
Stephen Hemminger | b95cce3 | 2007-09-26 22:13:38 -0700 | [diff] [blame] | 343 | int len = dev_parse_header(entskb, phw.hw_addr); |
| 344 | if (len) { |
| 345 | phw.hw_addrlen = htons(len); |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 346 | NLA_PUT(skb, NFQA_HWADDR, sizeof(phw), &phw); |
Stephen Hemminger | b95cce3 | 2007-09-26 22:13:38 -0700 | [diff] [blame] | 347 | } |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 348 | } |
| 349 | |
Eric Dumazet | b7aa0bf | 2007-04-19 16:16:32 -0700 | [diff] [blame] | 350 | if (entskb->tstamp.tv64) { |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 351 | struct nfqnl_msg_packet_timestamp ts; |
Eric Dumazet | b7aa0bf | 2007-04-19 16:16:32 -0700 | [diff] [blame] | 352 | struct timeval tv = ktime_to_timeval(entskb->tstamp); |
| 353 | ts.sec = cpu_to_be64(tv.tv_sec); |
| 354 | ts.usec = cpu_to_be64(tv.tv_usec); |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 355 | |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 356 | NLA_PUT(skb, NFQA_TIMESTAMP, sizeof(ts), &ts); |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 357 | } |
| 358 | |
| 359 | if (data_len) { |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 360 | struct nlattr *nla; |
Eric Dumazet | ca7c48c | 2008-01-31 03:53:27 -0800 | [diff] [blame] | 361 | int sz = nla_attr_size(data_len); |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 362 | |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 363 | if (skb_tailroom(skb) < nla_total_size(data_len)) { |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 364 | printk(KERN_WARNING "nf_queue: no tailroom!\n"); |
| 365 | goto nlmsg_failure; |
| 366 | } |
| 367 | |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 368 | nla = (struct nlattr *)skb_put(skb, nla_total_size(data_len)); |
| 369 | nla->nla_type = NFQA_PAYLOAD; |
Eric Dumazet | ca7c48c | 2008-01-31 03:53:27 -0800 | [diff] [blame] | 370 | nla->nla_len = sz; |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 371 | |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 372 | if (skb_copy_bits(entskb, 0, nla_data(nla), data_len)) |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 373 | BUG(); |
| 374 | } |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 375 | |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 376 | nlh->nlmsg_len = skb->tail - old_tail; |
| 377 | return skb; |
| 378 | |
| 379 | nlmsg_failure: |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 380 | nla_put_failure: |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 381 | if (skb) |
| 382 | kfree_skb(skb); |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 383 | if (net_ratelimit()) |
| 384 | printk(KERN_ERR "nf_queue: error creating packet message\n"); |
| 385 | return NULL; |
| 386 | } |
| 387 | |
| 388 | static int |
Patrick McHardy | 02f014d | 2007-12-05 01:26:33 -0800 | [diff] [blame] | 389 | nfqnl_enqueue_packet(struct nf_queue_entry *entry, unsigned int queuenum) |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 390 | { |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 391 | struct sk_buff *nskb; |
| 392 | struct nfqnl_instance *queue; |
Patrick McHardy | 0ef0f46 | 2007-12-05 01:31:01 -0800 | [diff] [blame] | 393 | int err; |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 394 | |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 395 | /* rcu_read_lock()ed by nf_hook_slow() */ |
| 396 | queue = instance_lookup(queuenum); |
Patrick McHardy | 2bd0119 | 2007-12-05 01:29:23 -0800 | [diff] [blame] | 397 | if (!queue) |
Patrick McHardy | 0ef0f46 | 2007-12-05 01:31:01 -0800 | [diff] [blame] | 398 | goto err_out; |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 399 | |
Patrick McHardy | 2bd0119 | 2007-12-05 01:29:23 -0800 | [diff] [blame] | 400 | if (queue->copy_mode == NFQNL_COPY_NONE) |
Patrick McHardy | 0ef0f46 | 2007-12-05 01:31:01 -0800 | [diff] [blame] | 401 | goto err_out; |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 402 | |
Patrick McHardy | 0ef0f46 | 2007-12-05 01:31:01 -0800 | [diff] [blame] | 403 | nskb = nfqnl_build_packet_message(queue, entry); |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 404 | if (nskb == NULL) |
Patrick McHardy | 0ef0f46 | 2007-12-05 01:31:01 -0800 | [diff] [blame] | 405 | goto err_out; |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 406 | |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 407 | spin_lock_bh(&queue->lock); |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 408 | |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 409 | if (!queue->peer_pid) |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 410 | goto err_out_free_nskb; |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 411 | |
| 412 | if (queue->queue_total >= queue->queue_maxlen) { |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 413 | queue->queue_dropped++; |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 414 | if (net_ratelimit()) |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 415 | printk(KERN_WARNING "nf_queue: full at %d entries, " |
Eric Leblond | a5d896ad | 2010-01-18 09:44:39 +0100 | [diff] [blame] | 416 | "dropping packets(s).\n", |
| 417 | queue->queue_total); |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 418 | goto err_out_free_nskb; |
| 419 | } |
| 420 | |
| 421 | /* nfnetlink_unicast will either free the nskb or add it to a socket */ |
Alexey Dobriyan | cd8c20b | 2010-01-13 16:02:14 +0100 | [diff] [blame] | 422 | err = nfnetlink_unicast(nskb, &init_net, queue->peer_pid, MSG_DONTWAIT); |
Patrick McHardy | 0ef0f46 | 2007-12-05 01:31:01 -0800 | [diff] [blame] | 423 | if (err < 0) { |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 424 | queue->queue_user_dropped++; |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 425 | goto err_out_unlock; |
| 426 | } |
| 427 | |
| 428 | __enqueue_entry(queue, entry); |
| 429 | |
| 430 | spin_unlock_bh(&queue->lock); |
Patrick McHardy | 0ef0f46 | 2007-12-05 01:31:01 -0800 | [diff] [blame] | 431 | return 0; |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 432 | |
| 433 | err_out_free_nskb: |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 434 | kfree_skb(nskb); |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 435 | err_out_unlock: |
| 436 | spin_unlock_bh(&queue->lock); |
Patrick McHardy | 0ef0f46 | 2007-12-05 01:31:01 -0800 | [diff] [blame] | 437 | err_out: |
| 438 | return -1; |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 439 | } |
| 440 | |
| 441 | static int |
Patrick McHardy | 02f014d | 2007-12-05 01:26:33 -0800 | [diff] [blame] | 442 | nfqnl_mangle(void *data, int data_len, struct nf_queue_entry *e) |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 443 | { |
Patrick McHardy | e2b58a6 | 2008-02-19 17:17:52 -0800 | [diff] [blame] | 444 | struct sk_buff *nskb; |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 445 | int diff; |
| 446 | |
| 447 | diff = data_len - e->skb->len; |
Patrick McHardy | d8a585d | 2006-11-14 19:48:09 -0800 | [diff] [blame] | 448 | if (diff < 0) { |
| 449 | if (pskb_trim(e->skb, data_len)) |
| 450 | return -ENOMEM; |
| 451 | } else if (diff > 0) { |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 452 | if (data_len > 0xFFFF) |
| 453 | return -EINVAL; |
| 454 | if (diff > skb_tailroom(e->skb)) { |
Arnaud Ebalard | 9a732ed | 2008-04-29 03:16:34 -0700 | [diff] [blame] | 455 | nskb = skb_copy_expand(e->skb, skb_headroom(e->skb), |
| 456 | diff, GFP_ATOMIC); |
Patrick McHardy | e2b58a6 | 2008-02-19 17:17:52 -0800 | [diff] [blame] | 457 | if (!nskb) { |
Patrick McHardy | 1158ba2 | 2006-08-22 00:32:47 -0700 | [diff] [blame] | 458 | printk(KERN_WARNING "nf_queue: OOM " |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 459 | "in mangle, dropping packet\n"); |
Patrick McHardy | e2b58a6 | 2008-02-19 17:17:52 -0800 | [diff] [blame] | 460 | return -ENOMEM; |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 461 | } |
Patrick McHardy | e2b58a6 | 2008-02-19 17:17:52 -0800 | [diff] [blame] | 462 | kfree_skb(e->skb); |
| 463 | e->skb = nskb; |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 464 | } |
| 465 | skb_put(e->skb, diff); |
| 466 | } |
Herbert Xu | 37d4187 | 2007-10-14 00:39:18 -0700 | [diff] [blame] | 467 | if (!skb_make_writable(e->skb, data_len)) |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 468 | return -ENOMEM; |
Arnaldo Carvalho de Melo | 27d7ff4 | 2007-03-31 11:55:19 -0300 | [diff] [blame] | 469 | skb_copy_to_linear_data(e->skb, data, data_len); |
Patrick McHardy | e7dfb09 | 2005-09-06 15:10:00 -0700 | [diff] [blame] | 470 | e->skb->ip_summed = CHECKSUM_NONE; |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 471 | return 0; |
| 472 | } |
| 473 | |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 474 | static int |
| 475 | nfqnl_set_mode(struct nfqnl_instance *queue, |
| 476 | unsigned char mode, unsigned int range) |
| 477 | { |
Patrick McHardy | c5de0df | 2007-12-05 01:29:05 -0800 | [diff] [blame] | 478 | int status = 0; |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 479 | |
| 480 | spin_lock_bh(&queue->lock); |
Patrick McHardy | c5de0df | 2007-12-05 01:29:05 -0800 | [diff] [blame] | 481 | switch (mode) { |
| 482 | case NFQNL_COPY_NONE: |
| 483 | case NFQNL_COPY_META: |
| 484 | queue->copy_mode = mode; |
| 485 | queue->copy_range = 0; |
| 486 | break; |
| 487 | |
| 488 | case NFQNL_COPY_PACKET: |
| 489 | queue->copy_mode = mode; |
| 490 | /* we're using struct nlattr which has 16bit nla_len */ |
| 491 | if (range > 0xffff) |
| 492 | queue->copy_range = 0xffff; |
| 493 | else |
| 494 | queue->copy_range = range; |
| 495 | break; |
| 496 | |
| 497 | default: |
| 498 | status = -EINVAL; |
| 499 | |
| 500 | } |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 501 | spin_unlock_bh(&queue->lock); |
| 502 | |
| 503 | return status; |
| 504 | } |
| 505 | |
| 506 | static int |
Patrick McHardy | 02f014d | 2007-12-05 01:26:33 -0800 | [diff] [blame] | 507 | dev_cmp(struct nf_queue_entry *entry, unsigned long ifindex) |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 508 | { |
Patrick McHardy | 02f014d | 2007-12-05 01:26:33 -0800 | [diff] [blame] | 509 | if (entry->indev) |
| 510 | if (entry->indev->ifindex == ifindex) |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 511 | return 1; |
Patrick McHardy | 02f014d | 2007-12-05 01:26:33 -0800 | [diff] [blame] | 512 | if (entry->outdev) |
| 513 | if (entry->outdev->ifindex == ifindex) |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 514 | return 1; |
Patrick McHardy | ef47c6a | 2006-06-27 03:01:48 -0700 | [diff] [blame] | 515 | #ifdef CONFIG_BRIDGE_NETFILTER |
| 516 | if (entry->skb->nf_bridge) { |
| 517 | if (entry->skb->nf_bridge->physindev && |
| 518 | entry->skb->nf_bridge->physindev->ifindex == ifindex) |
| 519 | return 1; |
| 520 | if (entry->skb->nf_bridge->physoutdev && |
| 521 | entry->skb->nf_bridge->physoutdev->ifindex == ifindex) |
| 522 | return 1; |
| 523 | } |
| 524 | #endif |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 525 | return 0; |
| 526 | } |
| 527 | |
| 528 | /* drop all packets with either indev or outdev == ifindex from all queue |
| 529 | * instances */ |
| 530 | static void |
| 531 | nfqnl_dev_drop(int ifindex) |
| 532 | { |
| 533 | int i; |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 534 | |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 535 | rcu_read_lock(); |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 536 | |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 537 | for (i = 0; i < INSTANCE_BUCKETS; i++) { |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 538 | struct hlist_node *tmp; |
| 539 | struct nfqnl_instance *inst; |
| 540 | struct hlist_head *head = &instance_table[i]; |
| 541 | |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 542 | hlist_for_each_entry_rcu(inst, tmp, head, hlist) |
Patrick McHardy | b43d8d8 | 2007-12-05 01:25:30 -0800 | [diff] [blame] | 543 | nfqnl_flush(inst, dev_cmp, ifindex); |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 544 | } |
| 545 | |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 546 | rcu_read_unlock(); |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 547 | } |
| 548 | |
| 549 | #define RCV_SKB_FAIL(err) do { netlink_ack(skb, nlh, (err)); return; } while (0) |
| 550 | |
| 551 | static int |
| 552 | nfqnl_rcv_dev_event(struct notifier_block *this, |
| 553 | unsigned long event, void *ptr) |
| 554 | { |
| 555 | struct net_device *dev = ptr; |
| 556 | |
YOSHIFUJI Hideaki | 721499e | 2008-07-19 22:34:43 -0700 | [diff] [blame] | 557 | if (!net_eq(dev_net(dev), &init_net)) |
Eric W. Biederman | e9dc865 | 2007-09-12 13:02:17 +0200 | [diff] [blame] | 558 | return NOTIFY_DONE; |
| 559 | |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 560 | /* Drop any packets associated with the downed device */ |
| 561 | if (event == NETDEV_DOWN) |
| 562 | nfqnl_dev_drop(dev->ifindex); |
| 563 | return NOTIFY_DONE; |
| 564 | } |
| 565 | |
| 566 | static struct notifier_block nfqnl_dev_notifier = { |
| 567 | .notifier_call = nfqnl_rcv_dev_event, |
| 568 | }; |
| 569 | |
| 570 | static int |
| 571 | nfqnl_rcv_nl_event(struct notifier_block *this, |
| 572 | unsigned long event, void *ptr) |
| 573 | { |
| 574 | struct netlink_notify *n = ptr; |
| 575 | |
Patrick McHardy | dee5817 | 2009-11-06 17:04:00 +0100 | [diff] [blame] | 576 | if (event == NETLINK_URELEASE && n->protocol == NETLINK_NETFILTER) { |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 577 | int i; |
| 578 | |
| 579 | /* destroy all instances for this pid */ |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 580 | spin_lock(&instances_lock); |
| 581 | for (i = 0; i < INSTANCE_BUCKETS; i++) { |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 582 | struct hlist_node *tmp, *t2; |
| 583 | struct nfqnl_instance *inst; |
| 584 | struct hlist_head *head = &instance_table[i]; |
| 585 | |
| 586 | hlist_for_each_entry_safe(inst, tmp, t2, head, hlist) { |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 587 | if ((n->net == &init_net) && |
| 588 | (n->pid == inst->peer_pid)) |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 589 | __instance_destroy(inst); |
| 590 | } |
| 591 | } |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 592 | spin_unlock(&instances_lock); |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 593 | } |
| 594 | return NOTIFY_DONE; |
| 595 | } |
| 596 | |
| 597 | static struct notifier_block nfqnl_rtnl_notifier = { |
| 598 | .notifier_call = nfqnl_rcv_nl_event, |
| 599 | }; |
| 600 | |
Patrick McHardy | 5bf7585 | 2007-09-28 14:39:26 -0700 | [diff] [blame] | 601 | static const struct nla_policy nfqa_verdict_policy[NFQA_MAX+1] = { |
| 602 | [NFQA_VERDICT_HDR] = { .len = sizeof(struct nfqnl_msg_verdict_hdr) }, |
| 603 | [NFQA_MARK] = { .type = NLA_U32 }, |
| 604 | [NFQA_PAYLOAD] = { .type = NLA_UNSPEC }, |
Harald Welte | 838ab63 | 2005-08-09 19:50:45 -0700 | [diff] [blame] | 605 | }; |
| 606 | |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 607 | static int |
| 608 | nfqnl_recv_verdict(struct sock *ctnl, struct sk_buff *skb, |
Patrick McHardy | 3993832 | 2009-08-25 16:07:58 +0200 | [diff] [blame] | 609 | const struct nlmsghdr *nlh, |
| 610 | const struct nlattr * const nfqa[]) |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 611 | { |
| 612 | struct nfgenmsg *nfmsg = NLMSG_DATA(nlh); |
| 613 | u_int16_t queue_num = ntohs(nfmsg->res_id); |
| 614 | |
| 615 | struct nfqnl_msg_verdict_hdr *vhdr; |
| 616 | struct nfqnl_instance *queue; |
| 617 | unsigned int verdict; |
Patrick McHardy | 02f014d | 2007-12-05 01:26:33 -0800 | [diff] [blame] | 618 | struct nf_queue_entry *entry; |
Harald Welte | 838ab63 | 2005-08-09 19:50:45 -0700 | [diff] [blame] | 619 | int err; |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 620 | |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 621 | rcu_read_lock(); |
| 622 | queue = instance_lookup(queue_num); |
| 623 | if (!queue) { |
| 624 | err = -ENODEV; |
| 625 | goto err_out_unlock; |
| 626 | } |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 627 | |
Harald Welte | 838ab63 | 2005-08-09 19:50:45 -0700 | [diff] [blame] | 628 | if (queue->peer_pid != NETLINK_CB(skb).pid) { |
| 629 | err = -EPERM; |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 630 | goto err_out_unlock; |
Harald Welte | 838ab63 | 2005-08-09 19:50:45 -0700 | [diff] [blame] | 631 | } |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 632 | |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 633 | if (!nfqa[NFQA_VERDICT_HDR]) { |
Harald Welte | 838ab63 | 2005-08-09 19:50:45 -0700 | [diff] [blame] | 634 | err = -EINVAL; |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 635 | goto err_out_unlock; |
Harald Welte | 838ab63 | 2005-08-09 19:50:45 -0700 | [diff] [blame] | 636 | } |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 637 | |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 638 | vhdr = nla_data(nfqa[NFQA_VERDICT_HDR]); |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 639 | verdict = ntohl(vhdr->verdict); |
| 640 | |
Harald Welte | 838ab63 | 2005-08-09 19:50:45 -0700 | [diff] [blame] | 641 | if ((verdict & NF_VERDICT_MASK) > NF_MAX_VERDICT) { |
| 642 | err = -EINVAL; |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 643 | goto err_out_unlock; |
Harald Welte | 838ab63 | 2005-08-09 19:50:45 -0700 | [diff] [blame] | 644 | } |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 645 | |
Patrick McHardy | b43d8d8 | 2007-12-05 01:25:30 -0800 | [diff] [blame] | 646 | entry = find_dequeue_entry(queue, ntohl(vhdr->id)); |
Harald Welte | 838ab63 | 2005-08-09 19:50:45 -0700 | [diff] [blame] | 647 | if (entry == NULL) { |
| 648 | err = -ENOENT; |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 649 | goto err_out_unlock; |
Harald Welte | 838ab63 | 2005-08-09 19:50:45 -0700 | [diff] [blame] | 650 | } |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 651 | rcu_read_unlock(); |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 652 | |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 653 | if (nfqa[NFQA_PAYLOAD]) { |
| 654 | if (nfqnl_mangle(nla_data(nfqa[NFQA_PAYLOAD]), |
| 655 | nla_len(nfqa[NFQA_PAYLOAD]), entry) < 0) |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 656 | verdict = NF_DROP; |
| 657 | } |
| 658 | |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 659 | if (nfqa[NFQA_MARK]) |
Patrick McHardy | ea3a66f | 2007-12-05 01:30:02 -0800 | [diff] [blame] | 660 | entry->skb->mark = ntohl(nla_get_be32(nfqa[NFQA_MARK])); |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 661 | |
Patrick McHardy | 4b3d15e | 2007-12-05 01:27:02 -0800 | [diff] [blame] | 662 | nf_reinject(entry, verdict); |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 663 | return 0; |
Harald Welte | 838ab63 | 2005-08-09 19:50:45 -0700 | [diff] [blame] | 664 | |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 665 | err_out_unlock: |
| 666 | rcu_read_unlock(); |
Harald Welte | 838ab63 | 2005-08-09 19:50:45 -0700 | [diff] [blame] | 667 | return err; |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 668 | } |
| 669 | |
| 670 | static int |
| 671 | nfqnl_recv_unsupp(struct sock *ctnl, struct sk_buff *skb, |
Patrick McHardy | 3993832 | 2009-08-25 16:07:58 +0200 | [diff] [blame] | 672 | const struct nlmsghdr *nlh, |
| 673 | const struct nlattr * const nfqa[]) |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 674 | { |
| 675 | return -ENOTSUPP; |
| 676 | } |
| 677 | |
Patrick McHardy | 5bf7585 | 2007-09-28 14:39:26 -0700 | [diff] [blame] | 678 | static const struct nla_policy nfqa_cfg_policy[NFQA_CFG_MAX+1] = { |
| 679 | [NFQA_CFG_CMD] = { .len = sizeof(struct nfqnl_msg_config_cmd) }, |
| 680 | [NFQA_CFG_PARAMS] = { .len = sizeof(struct nfqnl_msg_config_params) }, |
Harald Welte | 838ab63 | 2005-08-09 19:50:45 -0700 | [diff] [blame] | 681 | }; |
| 682 | |
Patrick McHardy | e3ac529 | 2007-12-05 01:23:57 -0800 | [diff] [blame] | 683 | static const struct nf_queue_handler nfqh = { |
Harald Welte | bbd86b9f | 2005-08-09 20:23:11 -0700 | [diff] [blame] | 684 | .name = "nf_queue", |
| 685 | .outfn = &nfqnl_enqueue_packet, |
| 686 | }; |
| 687 | |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 688 | static int |
| 689 | nfqnl_recv_config(struct sock *ctnl, struct sk_buff *skb, |
Patrick McHardy | 3993832 | 2009-08-25 16:07:58 +0200 | [diff] [blame] | 690 | const struct nlmsghdr *nlh, |
| 691 | const struct nlattr * const nfqa[]) |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 692 | { |
| 693 | struct nfgenmsg *nfmsg = NLMSG_DATA(nlh); |
| 694 | u_int16_t queue_num = ntohs(nfmsg->res_id); |
| 695 | struct nfqnl_instance *queue; |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 696 | struct nfqnl_msg_config_cmd *cmd = NULL; |
Harald Welte | 838ab63 | 2005-08-09 19:50:45 -0700 | [diff] [blame] | 697 | int ret = 0; |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 698 | |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 699 | if (nfqa[NFQA_CFG_CMD]) { |
| 700 | cmd = nla_data(nfqa[NFQA_CFG_CMD]); |
| 701 | |
| 702 | /* Commands without queue context - might sleep */ |
| 703 | switch (cmd->command) { |
| 704 | case NFQNL_CFG_CMD_PF_BIND: |
Patrick McHardy | 914afea | 2008-03-10 16:44:36 -0700 | [diff] [blame] | 705 | return nf_register_queue_handler(ntohs(cmd->pf), |
| 706 | &nfqh); |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 707 | case NFQNL_CFG_CMD_PF_UNBIND: |
Patrick McHardy | 914afea | 2008-03-10 16:44:36 -0700 | [diff] [blame] | 708 | return nf_unregister_queue_handler(ntohs(cmd->pf), |
| 709 | &nfqh); |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 710 | } |
Patrick McHardy | a3c8e7f | 2007-12-05 01:28:30 -0800 | [diff] [blame] | 711 | } |
| 712 | |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 713 | rcu_read_lock(); |
| 714 | queue = instance_lookup(queue_num); |
| 715 | if (queue && queue->peer_pid != NETLINK_CB(skb).pid) { |
| 716 | ret = -EPERM; |
| 717 | goto err_out_unlock; |
| 718 | } |
Patrick McHardy | a3c8e7f | 2007-12-05 01:28:30 -0800 | [diff] [blame] | 719 | |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 720 | if (cmd != NULL) { |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 721 | switch (cmd->command) { |
| 722 | case NFQNL_CFG_CMD_BIND: |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 723 | if (queue) { |
| 724 | ret = -EBUSY; |
| 725 | goto err_out_unlock; |
| 726 | } |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 727 | queue = instance_create(queue_num, NETLINK_CB(skb).pid); |
Patrick McHardy | baab2ce | 2007-12-17 22:41:21 -0800 | [diff] [blame] | 728 | if (IS_ERR(queue)) { |
| 729 | ret = PTR_ERR(queue); |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 730 | goto err_out_unlock; |
| 731 | } |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 732 | break; |
| 733 | case NFQNL_CFG_CMD_UNBIND: |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 734 | if (!queue) { |
| 735 | ret = -ENODEV; |
| 736 | goto err_out_unlock; |
| 737 | } |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 738 | instance_destroy(queue); |
| 739 | break; |
| 740 | case NFQNL_CFG_CMD_PF_BIND: |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 741 | case NFQNL_CFG_CMD_PF_UNBIND: |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 742 | break; |
| 743 | default: |
Patrick McHardy | cd21f0a | 2007-12-17 22:40:19 -0800 | [diff] [blame] | 744 | ret = -ENOTSUPP; |
Harald Welte | 838ab63 | 2005-08-09 19:50:45 -0700 | [diff] [blame] | 745 | break; |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 746 | } |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 747 | } |
| 748 | |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 749 | if (nfqa[NFQA_CFG_PARAMS]) { |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 750 | struct nfqnl_msg_config_params *params; |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 751 | |
Patrick McHardy | 406dbfc | 2006-03-12 20:32:47 -0800 | [diff] [blame] | 752 | if (!queue) { |
Patrick McHardy | a3c8e7f | 2007-12-05 01:28:30 -0800 | [diff] [blame] | 753 | ret = -ENODEV; |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 754 | goto err_out_unlock; |
Patrick McHardy | 406dbfc | 2006-03-12 20:32:47 -0800 | [diff] [blame] | 755 | } |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 756 | params = nla_data(nfqa[NFQA_CFG_PARAMS]); |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 757 | nfqnl_set_mode(queue, params->copy_mode, |
| 758 | ntohl(params->copy_range)); |
| 759 | } |
| 760 | |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 761 | if (nfqa[NFQA_CFG_QUEUE_MAXLEN]) { |
Eric Leblond | 829e17a | 2006-11-29 02:35:33 +0100 | [diff] [blame] | 762 | __be32 *queue_maxlen; |
Patrick McHardy | a3c8e7f | 2007-12-05 01:28:30 -0800 | [diff] [blame] | 763 | |
| 764 | if (!queue) { |
| 765 | ret = -ENODEV; |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 766 | goto err_out_unlock; |
Patrick McHardy | a3c8e7f | 2007-12-05 01:28:30 -0800 | [diff] [blame] | 767 | } |
Patrick McHardy | df6fb86 | 2007-09-28 14:37:03 -0700 | [diff] [blame] | 768 | queue_maxlen = nla_data(nfqa[NFQA_CFG_QUEUE_MAXLEN]); |
Eric Leblond | 829e17a | 2006-11-29 02:35:33 +0100 | [diff] [blame] | 769 | spin_lock_bh(&queue->lock); |
| 770 | queue->queue_maxlen = ntohl(*queue_maxlen); |
| 771 | spin_unlock_bh(&queue->lock); |
| 772 | } |
| 773 | |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 774 | err_out_unlock: |
| 775 | rcu_read_unlock(); |
Harald Welte | 838ab63 | 2005-08-09 19:50:45 -0700 | [diff] [blame] | 776 | return ret; |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 777 | } |
| 778 | |
Patrick McHardy | 7c8d4cb | 2007-09-28 14:15:45 -0700 | [diff] [blame] | 779 | static const struct nfnl_callback nfqnl_cb[NFQNL_MSG_MAX] = { |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 780 | [NFQNL_MSG_PACKET] = { .call = nfqnl_recv_unsupp, |
Harald Welte | 37d2e7a | 2005-11-14 15:24:59 -0800 | [diff] [blame] | 781 | .attr_count = NFQA_MAX, }, |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 782 | [NFQNL_MSG_VERDICT] = { .call = nfqnl_recv_verdict, |
Patrick McHardy | 5bf7585 | 2007-09-28 14:39:26 -0700 | [diff] [blame] | 783 | .attr_count = NFQA_MAX, |
| 784 | .policy = nfqa_verdict_policy }, |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 785 | [NFQNL_MSG_CONFIG] = { .call = nfqnl_recv_config, |
Patrick McHardy | 5bf7585 | 2007-09-28 14:39:26 -0700 | [diff] [blame] | 786 | .attr_count = NFQA_CFG_MAX, |
| 787 | .policy = nfqa_cfg_policy }, |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 788 | }; |
| 789 | |
Patrick McHardy | 7c8d4cb | 2007-09-28 14:15:45 -0700 | [diff] [blame] | 790 | static const struct nfnetlink_subsystem nfqnl_subsys = { |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 791 | .name = "nf_queue", |
| 792 | .subsys_id = NFNL_SUBSYS_QUEUE, |
| 793 | .cb_count = NFQNL_MSG_MAX, |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 794 | .cb = nfqnl_cb, |
| 795 | }; |
| 796 | |
Harald Welte | 838ab63 | 2005-08-09 19:50:45 -0700 | [diff] [blame] | 797 | #ifdef CONFIG_PROC_FS |
| 798 | struct iter_state { |
| 799 | unsigned int bucket; |
| 800 | }; |
| 801 | |
| 802 | static struct hlist_node *get_first(struct seq_file *seq) |
| 803 | { |
| 804 | struct iter_state *st = seq->private; |
| 805 | |
| 806 | if (!st) |
| 807 | return NULL; |
| 808 | |
| 809 | for (st->bucket = 0; st->bucket < INSTANCE_BUCKETS; st->bucket++) { |
| 810 | if (!hlist_empty(&instance_table[st->bucket])) |
| 811 | return instance_table[st->bucket].first; |
| 812 | } |
| 813 | return NULL; |
| 814 | } |
| 815 | |
| 816 | static struct hlist_node *get_next(struct seq_file *seq, struct hlist_node *h) |
| 817 | { |
| 818 | struct iter_state *st = seq->private; |
| 819 | |
| 820 | h = h->next; |
| 821 | while (!h) { |
| 822 | if (++st->bucket >= INSTANCE_BUCKETS) |
| 823 | return NULL; |
| 824 | |
| 825 | h = instance_table[st->bucket].first; |
| 826 | } |
| 827 | return h; |
| 828 | } |
| 829 | |
| 830 | static struct hlist_node *get_idx(struct seq_file *seq, loff_t pos) |
| 831 | { |
| 832 | struct hlist_node *head; |
| 833 | head = get_first(seq); |
| 834 | |
| 835 | if (head) |
| 836 | while (pos && (head = get_next(seq, head))) |
| 837 | pos--; |
| 838 | return pos ? NULL : head; |
| 839 | } |
| 840 | |
| 841 | static void *seq_start(struct seq_file *seq, loff_t *pos) |
Eric Dumazet | ca7c48c | 2008-01-31 03:53:27 -0800 | [diff] [blame] | 842 | __acquires(instances_lock) |
Harald Welte | 838ab63 | 2005-08-09 19:50:45 -0700 | [diff] [blame] | 843 | { |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 844 | spin_lock(&instances_lock); |
Harald Welte | 838ab63 | 2005-08-09 19:50:45 -0700 | [diff] [blame] | 845 | return get_idx(seq, *pos); |
| 846 | } |
| 847 | |
| 848 | static void *seq_next(struct seq_file *s, void *v, loff_t *pos) |
| 849 | { |
| 850 | (*pos)++; |
| 851 | return get_next(s, v); |
| 852 | } |
| 853 | |
| 854 | static void seq_stop(struct seq_file *s, void *v) |
Eric Dumazet | ca7c48c | 2008-01-31 03:53:27 -0800 | [diff] [blame] | 855 | __releases(instances_lock) |
Harald Welte | 838ab63 | 2005-08-09 19:50:45 -0700 | [diff] [blame] | 856 | { |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 857 | spin_unlock(&instances_lock); |
Harald Welte | 838ab63 | 2005-08-09 19:50:45 -0700 | [diff] [blame] | 858 | } |
| 859 | |
| 860 | static int seq_show(struct seq_file *s, void *v) |
| 861 | { |
| 862 | const struct nfqnl_instance *inst = v; |
| 863 | |
| 864 | return seq_printf(s, "%5d %6d %5d %1d %5d %5d %5d %8d %2d\n", |
| 865 | inst->queue_num, |
| 866 | inst->peer_pid, inst->queue_total, |
| 867 | inst->copy_mode, inst->copy_range, |
| 868 | inst->queue_dropped, inst->queue_user_dropped, |
Patrick McHardy | 9872bec | 2007-12-05 01:28:50 -0800 | [diff] [blame] | 869 | inst->id_sequence, 1); |
Harald Welte | 838ab63 | 2005-08-09 19:50:45 -0700 | [diff] [blame] | 870 | } |
| 871 | |
Philippe De Muyter | 56b3d97 | 2007-07-10 23:07:31 -0700 | [diff] [blame] | 872 | static const struct seq_operations nfqnl_seq_ops = { |
Harald Welte | 838ab63 | 2005-08-09 19:50:45 -0700 | [diff] [blame] | 873 | .start = seq_start, |
| 874 | .next = seq_next, |
| 875 | .stop = seq_stop, |
| 876 | .show = seq_show, |
| 877 | }; |
| 878 | |
| 879 | static int nfqnl_open(struct inode *inode, struct file *file) |
| 880 | { |
Pavel Emelyanov | e2da591 | 2007-10-10 02:29:58 -0700 | [diff] [blame] | 881 | return seq_open_private(file, &nfqnl_seq_ops, |
| 882 | sizeof(struct iter_state)); |
Harald Welte | 838ab63 | 2005-08-09 19:50:45 -0700 | [diff] [blame] | 883 | } |
| 884 | |
Arjan van de Ven | da7071d | 2007-02-12 00:55:36 -0800 | [diff] [blame] | 885 | static const struct file_operations nfqnl_file_ops = { |
Harald Welte | 838ab63 | 2005-08-09 19:50:45 -0700 | [diff] [blame] | 886 | .owner = THIS_MODULE, |
| 887 | .open = nfqnl_open, |
| 888 | .read = seq_read, |
| 889 | .llseek = seq_lseek, |
| 890 | .release = seq_release_private, |
| 891 | }; |
| 892 | |
| 893 | #endif /* PROC_FS */ |
| 894 | |
Patrick McHardy | 32292a7 | 2006-04-06 14:11:30 -0700 | [diff] [blame] | 895 | static int __init nfnetlink_queue_init(void) |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 896 | { |
Harald Welte | 838ab63 | 2005-08-09 19:50:45 -0700 | [diff] [blame] | 897 | int i, status = -ENOMEM; |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 898 | |
Harald Welte | 838ab63 | 2005-08-09 19:50:45 -0700 | [diff] [blame] | 899 | for (i = 0; i < INSTANCE_BUCKETS; i++) |
| 900 | INIT_HLIST_HEAD(&instance_table[i]); |
| 901 | |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 902 | netlink_register_notifier(&nfqnl_rtnl_notifier); |
| 903 | status = nfnetlink_subsys_register(&nfqnl_subsys); |
| 904 | if (status < 0) { |
| 905 | printk(KERN_ERR "nf_queue: failed to create netlink socket\n"); |
| 906 | goto cleanup_netlink_notifier; |
| 907 | } |
| 908 | |
Harald Welte | 838ab63 | 2005-08-09 19:50:45 -0700 | [diff] [blame] | 909 | #ifdef CONFIG_PROC_FS |
Denis V. Lunev | 8eeee8b | 2008-03-27 16:55:53 -0700 | [diff] [blame] | 910 | if (!proc_create("nfnetlink_queue", 0440, |
| 911 | proc_net_netfilter, &nfqnl_file_ops)) |
Harald Welte | 838ab63 | 2005-08-09 19:50:45 -0700 | [diff] [blame] | 912 | goto cleanup_subsys; |
Harald Welte | 838ab63 | 2005-08-09 19:50:45 -0700 | [diff] [blame] | 913 | #endif |
| 914 | |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 915 | register_netdevice_notifier(&nfqnl_dev_notifier); |
| 916 | return status; |
| 917 | |
Harald Welte | 838ab63 | 2005-08-09 19:50:45 -0700 | [diff] [blame] | 918 | #ifdef CONFIG_PROC_FS |
| 919 | cleanup_subsys: |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 920 | nfnetlink_subsys_unregister(&nfqnl_subsys); |
Patrick McHardy | 32292a7 | 2006-04-06 14:11:30 -0700 | [diff] [blame] | 921 | #endif |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 922 | cleanup_netlink_notifier: |
| 923 | netlink_unregister_notifier(&nfqnl_rtnl_notifier); |
| 924 | return status; |
| 925 | } |
| 926 | |
Andrew Morton | 65b4b4e | 2006-03-28 16:37:06 -0800 | [diff] [blame] | 927 | static void __exit nfnetlink_queue_fini(void) |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 928 | { |
Patrick McHardy | 32292a7 | 2006-04-06 14:11:30 -0700 | [diff] [blame] | 929 | nf_unregister_queue_handlers(&nfqh); |
| 930 | unregister_netdevice_notifier(&nfqnl_dev_notifier); |
| 931 | #ifdef CONFIG_PROC_FS |
| 932 | remove_proc_entry("nfnetlink_queue", proc_net_netfilter); |
| 933 | #endif |
| 934 | nfnetlink_subsys_unregister(&nfqnl_subsys); |
| 935 | netlink_unregister_notifier(&nfqnl_rtnl_notifier); |
Jesper Dangaard Brouer | 67137f3 | 2009-06-08 03:11:33 +0000 | [diff] [blame] | 936 | |
| 937 | rcu_barrier(); /* Wait for completion of call_rcu()'s */ |
Harald Welte | 7af4cc3 | 2005-08-09 19:44:15 -0700 | [diff] [blame] | 938 | } |
| 939 | |
| 940 | MODULE_DESCRIPTION("netfilter packet queue handler"); |
| 941 | MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>"); |
| 942 | MODULE_LICENSE("GPL"); |
| 943 | MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_QUEUE); |
| 944 | |
Andrew Morton | 65b4b4e | 2006-03-28 16:37:06 -0800 | [diff] [blame] | 945 | module_init(nfnetlink_queue_init); |
| 946 | module_exit(nfnetlink_queue_fini); |