1 #include <linux/kernel.h>
2 #include <linux/init.h>
3 #include <linux/module.h>
4 #include <linux/proc_fs.h>
5 #include <linux/skbuff.h>
6 #include <linux/netfilter.h>
7 #include <linux/seq_file.h>
8 #include <linux/rcupdate.h>
9 #include <net/protocol.h>
11 #include "nf_internals.h"
14 * A queue handler may be registered for each protocol. Each is protected by
15 * long term mutex. The handler must provide an an outfn() to accept packets
16 * for queueing and must reinject all packets it receives, no matter what.
18 static struct nf_queue_handler *queue_handler[NPROTO];
20 static DEFINE_MUTEX(queue_handler_mutex);
22 /* return EBUSY when somebody else is registered, return EEXIST if the
23 * same handler is registered, return 0 in case of success. */
24 int nf_register_queue_handler(int pf, struct nf_queue_handler *qh)
31 mutex_lock(&queue_handler_mutex);
32 if (queue_handler[pf] == qh)
34 else if (queue_handler[pf])
37 rcu_assign_pointer(queue_handler[pf], qh);
40 mutex_unlock(&queue_handler_mutex);
44 EXPORT_SYMBOL(nf_register_queue_handler);
46 /* The caller must flush their queue before this */
47 int nf_unregister_queue_handler(int pf, struct nf_queue_handler *qh)
52 mutex_lock(&queue_handler_mutex);
53 if (queue_handler[pf] != qh) {
54 mutex_unlock(&queue_handler_mutex);
58 rcu_assign_pointer(queue_handler[pf], NULL);
59 mutex_unlock(&queue_handler_mutex);
65 EXPORT_SYMBOL(nf_unregister_queue_handler);
67 void nf_unregister_queue_handlers(struct nf_queue_handler *qh)
71 mutex_lock(&queue_handler_mutex);
72 for (pf = 0; pf < NPROTO; pf++) {
73 if (queue_handler[pf] == qh)
74 rcu_assign_pointer(queue_handler[pf], NULL);
76 mutex_unlock(&queue_handler_mutex);
80 EXPORT_SYMBOL_GPL(nf_unregister_queue_handlers);
83 * Any packet that leaves via this function must come back
84 * through nf_reinject().
86 static int __nf_queue(struct sk_buff *skb,
87 struct list_head *elem,
88 int pf, unsigned int hook,
89 struct net_device *indev,
90 struct net_device *outdev,
91 int (*okfn)(struct sk_buff *),
92 unsigned int queuenum)
96 #ifdef CONFIG_BRIDGE_NETFILTER
97 struct net_device *physindev = NULL;
98 struct net_device *physoutdev = NULL;
100 struct nf_afinfo *afinfo;
101 struct nf_queue_handler *qh;
103 /* QUEUE == DROP if noone is waiting, to be safe. */
106 qh = rcu_dereference(queue_handler[pf]);
113 afinfo = nf_get_afinfo(pf);
120 info = kmalloc(sizeof(*info) + afinfo->route_key_size, GFP_ATOMIC);
123 printk(KERN_ERR "OOM queueing packet %p\n",
130 *info = (struct nf_info) {
131 (struct nf_hook_ops *)elem, pf, hook, indev, outdev, okfn };
133 /* If it's going away, ignore hook. */
134 if (!try_module_get(info->elem->owner)) {
140 /* Bump dev refs so they don't vanish while packet is out */
141 if (indev) dev_hold(indev);
142 if (outdev) dev_hold(outdev);
144 #ifdef CONFIG_BRIDGE_NETFILTER
145 if (skb->nf_bridge) {
146 physindev = skb->nf_bridge->physindev;
147 if (physindev) dev_hold(physindev);
148 physoutdev = skb->nf_bridge->physoutdev;
149 if (physoutdev) dev_hold(physoutdev);
152 afinfo->saveroute(skb, info);
153 status = qh->outfn(skb, info, queuenum, qh->data);
158 /* James M doesn't say fuck enough. */
159 if (indev) dev_put(indev);
160 if (outdev) dev_put(outdev);
161 #ifdef CONFIG_BRIDGE_NETFILTER
162 if (physindev) dev_put(physindev);
163 if (physoutdev) dev_put(physoutdev);
165 module_put(info->elem->owner);
175 int nf_queue(struct sk_buff *skb,
176 struct list_head *elem,
177 int pf, unsigned int hook,
178 struct net_device *indev,
179 struct net_device *outdev,
180 int (*okfn)(struct sk_buff *),
181 unsigned int queuenum)
183 struct sk_buff *segs;
185 if (!skb_is_gso(skb))
186 return __nf_queue(skb, elem, pf, hook, indev, outdev, okfn,
191 skb->protocol = htons(ETH_P_IP);
194 skb->protocol = htons(ETH_P_IPV6);
198 segs = skb_gso_segment(skb, 0);
200 if (unlikely(IS_ERR(segs)))
204 struct sk_buff *nskb = segs->next;
207 if (!__nf_queue(segs, elem, pf, hook, indev, outdev, okfn,
215 void nf_reinject(struct sk_buff *skb, struct nf_info *info,
216 unsigned int verdict)
218 struct list_head *elem = &info->elem->list;
220 struct nf_afinfo *afinfo;
224 /* Release those devices we held, or Alexey will kill me. */
225 if (info->indev) dev_put(info->indev);
226 if (info->outdev) dev_put(info->outdev);
227 #ifdef CONFIG_BRIDGE_NETFILTER
228 if (skb->nf_bridge) {
229 if (skb->nf_bridge->physindev)
230 dev_put(skb->nf_bridge->physindev);
231 if (skb->nf_bridge->physoutdev)
232 dev_put(skb->nf_bridge->physoutdev);
236 /* Drop reference to owner of hook which queued us. */
237 module_put(info->elem->owner);
239 list_for_each_rcu(i, &nf_hooks[info->pf][info->hook]) {
244 if (i == &nf_hooks[info->pf][info->hook]) {
245 /* The module which sent it to userspace is gone. */
246 NFDEBUG("%s: module disappeared, dropping packet.\n",
251 /* Continue traversal iff userspace said ok... */
252 if (verdict == NF_REPEAT) {
257 if (verdict == NF_ACCEPT) {
258 afinfo = nf_get_afinfo(info->pf);
259 if (!afinfo || afinfo->reroute(skb, info) < 0)
263 if (verdict == NF_ACCEPT) {
265 verdict = nf_iterate(&nf_hooks[info->pf][info->hook],
267 info->indev, info->outdev, &elem,
268 info->okfn, INT_MIN);
271 switch (verdict & NF_VERDICT_MASK) {
278 if (!__nf_queue(skb, elem, info->pf, info->hook,
279 info->indev, info->outdev, info->okfn,
280 verdict >> NF_VERDICT_BITS))
290 EXPORT_SYMBOL(nf_reinject);
292 #ifdef CONFIG_PROC_FS
293 static void *seq_start(struct seq_file *seq, loff_t *pos)
301 static void *seq_next(struct seq_file *s, void *v, loff_t *pos)
311 static void seq_stop(struct seq_file *s, void *v)
316 static int seq_show(struct seq_file *s, void *v)
320 struct nf_queue_handler *qh;
323 qh = rcu_dereference(queue_handler[*pos]);
325 ret = seq_printf(s, "%2lld NONE\n", *pos);
327 ret = seq_printf(s, "%2lld %s\n", *pos, qh->name);
333 static const struct seq_operations nfqueue_seq_ops = {
340 static int nfqueue_open(struct inode *inode, struct file *file)
342 return seq_open(file, &nfqueue_seq_ops);
345 static const struct file_operations nfqueue_file_ops = {
346 .owner = THIS_MODULE,
347 .open = nfqueue_open,
350 .release = seq_release,
355 int __init netfilter_queue_init(void)
357 #ifdef CONFIG_PROC_FS
358 struct proc_dir_entry *pde;
360 pde = create_proc_entry("nf_queue", S_IRUGO, proc_net_netfilter);
363 pde->proc_fops = &nfqueue_file_ops;