1 diff -urN linux-2.6.19.old/drivers/net/imq.c linux-2.6.19.dev/drivers/net/imq.c
2 --- linux-2.6.19.old/drivers/net/imq.c 1970-01-01 01:00:00.000000000 +0100
3 +++ linux-2.6.19.dev/drivers/net/imq.c 2006-12-14 03:13:47.000000000 +0100
6 + * Pseudo-driver for the intermediate queue device.
8 + * This program is free software; you can redistribute it and/or
9 + * modify it under the terms of the GNU General Public License
10 + * as published by the Free Software Foundation; either version
11 + * 2 of the License, or (at your option) any later version.
13 + * Authors: Patrick McHardy, <kaber@trash.net>
15 + * The first version was written by Martin Devera, <devik@cdi.cz>
17 + * Credits: Jan Rafaj <imq2t@cedric.vabo.cz>
18 + * - Update patch to 2.4.21
19 + * Sebastian Strollo <sstrollo@nortelnetworks.com>
20 + * - Fix "Dead-loop on netdevice imq"-issue
21 + * Marcel Sebek <sebek64@post.cz>
22 + * - Update to 2.6.2-rc1
24 + * After some time of inactivity there is a group taking care
25 + * of IMQ again: http://www.linuximq.net
28 + * 2004/06/30 - New version of IMQ patch to kernels <=2.6.7 including
29 + * the following changes:
31 + * - Correction of ipv6 support "+"s issue (Hasso Tepper)
32 + * - Correction of imq_init_devs() issue that resulted in
33 + * kernel OOPS unloading IMQ as module (Norbert Buchmuller)
34 + * - Addition of functionality to choose number of IMQ devices
35 + * during kernel config (Andre Correa)
36 + * - Addition of functionality to choose how IMQ hooks on
37 + * PRE and POSTROUTING (after or before NAT) (Andre Correa)
38 + * - Cosmetic corrections (Norbert Buchmuller) (Andre Correa)
41 + * 2005/12/16 - IMQ versions between 2.6.7 and 2.6.13 were
42 + * released with almost no problems. 2.6.14-x was released
43 + * with some important changes: nfcache was removed; After
44 + * some weeks of trouble we figured out that some IMQ fields
45 + * in skb were missing in skbuff.c - skb_clone and copy_skb_header.
46 + * These functions are correctly patched by this new patch version.
48 + * Thanks for all who helped to figure out all the problems with
49 + * 2.6.14.x: Patrick McHardy, Rune Kock, VeNoMouS, Max CtRiX,
50 + * Kevin Shanahan, Richard Lucassen, Valery Dachev (hopefully
51 + * I didn't forget anybody). I apologize again for my lack of time.
53 + * More info at: http://www.linuximq.net/ (Andre Correa)
56 +#include <linux/autoconf.h>
57 +#include <linux/module.h>
58 +#include <linux/kernel.h>
59 +#include <linux/moduleparam.h>
60 +#include <linux/skbuff.h>
61 +#include <linux/netdevice.h>
62 +#include <linux/rtnetlink.h>
63 +#include <linux/if_arp.h>
64 +#include <linux/netfilter.h>
65 +#include <linux/netfilter_ipv4.h>
66 +#if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
67 + #include <linux/netfilter_ipv6.h>
69 +#include <linux/imq.h>
70 +#include <net/pkt_sched.h>
72 +static nf_hookfn imq_nf_hook;
74 +static struct nf_hook_ops imq_ingress_ipv4 = {
75 + .hook = imq_nf_hook,
76 + .owner = THIS_MODULE,
78 + .hooknum = NF_IP_PRE_ROUTING,
79 +#if defined(CONFIG_IMQ_BEHAVIOR_BA) || defined(CONFIG_IMQ_BEHAVIOR_BB)
80 + .priority = NF_IP_PRI_MANGLE + 1
82 + .priority = NF_IP_PRI_NAT_DST + 1
86 +static struct nf_hook_ops imq_egress_ipv4 = {
87 + .hook = imq_nf_hook,
88 + .owner = THIS_MODULE,
90 + .hooknum = NF_IP_POST_ROUTING,
91 +#if defined(CONFIG_IMQ_BEHAVIOR_AA) || defined(CONFIG_IMQ_BEHAVIOR_BA)
92 + .priority = NF_IP_PRI_LAST
94 + .priority = NF_IP_PRI_NAT_SRC - 1
98 +#if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
99 +static struct nf_hook_ops imq_ingress_ipv6 = {
100 + .hook = imq_nf_hook,
101 + .owner = THIS_MODULE,
103 + .hooknum = NF_IP6_PRE_ROUTING,
104 +#if defined(CONFIG_IMQ_BEHAVIOR_BA) || defined(CONFIG_IMQ_BEHAVIOR_BB)
105 + .priority = NF_IP6_PRI_MANGLE + 1
107 + .priority = NF_IP6_PRI_NAT_DST + 1
111 +static struct nf_hook_ops imq_egress_ipv6 = {
112 + .hook = imq_nf_hook,
113 + .owner = THIS_MODULE,
115 + .hooknum = NF_IP6_POST_ROUTING,
116 +#if defined(CONFIG_IMQ_BEHAVIOR_AA) || defined(CONFIG_IMQ_BEHAVIOR_BA)
117 + .priority = NF_IP6_PRI_LAST
119 + .priority = NF_IP6_PRI_NAT_SRC - 1
124 +#if defined(CONFIG_IMQ_NUM_DEVS)
125 +static unsigned int numdevs = CONFIG_IMQ_NUM_DEVS;
127 +static unsigned int numdevs = 2;
130 +static struct net_device *imq_devs;
132 +static struct net_device_stats *imq_get_stats(struct net_device *dev)
134 + return (struct net_device_stats *)dev->priv;
137 +/* called for packets kfree'd in qdiscs at places other than enqueue */
138 +static void imq_skb_destructor(struct sk_buff *skb)
140 + struct nf_info *info = skb->nf_info;
144 + dev_put(info->indev);
146 + dev_put(info->outdev);
151 +static int imq_dev_xmit(struct sk_buff *skb, struct net_device *dev)
153 + struct net_device_stats *stats = (struct net_device_stats*) dev->priv;
155 + stats->tx_bytes += skb->len;
156 + stats->tx_packets++;
158 + skb->imq_flags = 0;
159 + skb->destructor = NULL;
161 + dev->trans_start = jiffies;
162 + nf_reinject(skb, skb->nf_info, NF_ACCEPT);
166 +static int imq_nf_queue(struct sk_buff *skb, struct nf_info *info, unsigned queue_num, void *data)
168 + struct net_device *dev;
169 + struct net_device_stats *stats;
170 + struct sk_buff *skb2 = NULL;
172 + unsigned int index = skb->imq_flags&IMQ_F_IFMASK;
175 + if (index > numdevs)
178 + dev = imq_devs + index;
179 + if (!(dev->flags & IFF_UP)) {
180 + skb->imq_flags = 0;
181 + nf_reinject(skb, info, NF_ACCEPT);
184 + dev->last_rx = jiffies;
186 + if (skb->destructor) {
188 + skb = skb_clone(skb, GFP_ATOMIC);
192 + skb->nf_info = info;
194 + stats = (struct net_device_stats *)dev->priv;
195 + stats->rx_bytes+= skb->len;
196 + stats->rx_packets++;
198 + spin_lock_bh(&dev->queue_lock);
201 + q->enqueue(skb_get(skb), q);
202 + if (skb_shared(skb)) {
203 + skb->destructor = imq_skb_destructor;
208 + if (spin_is_locked(&dev->_xmit_lock))
209 + netif_schedule(dev);
213 + spin_unlock_bh(&dev->queue_lock);
216 + kfree_skb(ret ? skb : skb2);
221 +static struct nf_queue_handler nfqh = {
223 + .outfn = imq_nf_queue,
226 +static unsigned int imq_nf_hook(unsigned int hook, struct sk_buff **pskb,
227 + const struct net_device *indev,
228 + const struct net_device *outdev,
229 + int (*okfn)(struct sk_buff *))
231 + if ((*pskb)->imq_flags & IMQ_F_ENQUEUE)
238 +static int __init imq_init_hooks(void)
242 + err = nf_register_queue_handler(PF_INET, &nfqh);
245 + if ((err = nf_register_hook(&imq_ingress_ipv4)))
247 + if ((err = nf_register_hook(&imq_egress_ipv4)))
249 +#if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
250 + if ((err = nf_register_queue_handler(PF_INET6, &nfqh)))
252 + if ((err = nf_register_hook(&imq_ingress_ipv6)))
254 + if ((err = nf_register_hook(&imq_egress_ipv6)))
260 +#if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
262 + nf_unregister_hook(&imq_ingress_ipv6);
264 + nf_unregister_queue_handler(PF_INET6);
266 + nf_unregister_hook(&imq_egress_ipv6);
269 + nf_unregister_hook(&imq_ingress_ipv4);
271 + nf_unregister_queue_handler(PF_INET);
276 +static void __exit imq_unhook(void)
278 + nf_unregister_hook(&imq_ingress_ipv4);
279 + nf_unregister_hook(&imq_egress_ipv4);
280 + nf_unregister_queue_handler(PF_INET);
281 +#if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
282 + nf_unregister_hook(&imq_ingress_ipv6);
283 + nf_unregister_hook(&imq_egress_ipv6);
284 + nf_unregister_queue_handler(PF_INET6);
288 +static int __init imq_dev_init(struct net_device *dev)
290 + dev->hard_start_xmit = imq_dev_xmit;
291 + dev->type = ARPHRD_VOID;
293 + dev->tx_queue_len = 30;
294 + dev->flags = IFF_NOARP;
295 + dev->priv = kmalloc(sizeof(struct net_device_stats), GFP_KERNEL);
296 + if (dev->priv == NULL)
298 + memset(dev->priv, 0, sizeof(struct net_device_stats));
299 + dev->get_stats = imq_get_stats;
304 +static void imq_dev_uninit(struct net_device *dev)
309 +static int __init imq_init_devs(void)
311 + struct net_device *dev;
315 + if (!numdevs || numdevs > IMQ_MAX_DEVS) {
316 + printk(KERN_ERR "IMQ: numdevs has to be betweed 1 and %u\n",
321 + imq_devs = kmalloc(sizeof(struct net_device) * numdevs, GFP_KERNEL);
324 + memset(imq_devs, 0, sizeof(struct net_device) * numdevs);
326 + /* we start counting at zero */
329 + for (i = 0, dev = imq_devs; i <= numdevs; i++, dev++) {
330 + SET_MODULE_OWNER(dev);
331 + strcpy(dev->name, "imq%d");
332 + dev->init = imq_dev_init;
333 + dev->uninit = imq_dev_uninit;
335 + if (register_netdev(dev) < 0)
338 + printk(KERN_INFO "IMQ starting with %u devices...\n", j);
343 + unregister_netdev(--dev);
348 +static void imq_cleanup_devs(void)
351 + struct net_device *dev = imq_devs;
353 + for (i = 0; i <= numdevs; i++)
354 + unregister_netdev(dev++);
359 +static int __init imq_init_module(void)
363 + if ((err = imq_init_devs())) {
364 + printk(KERN_ERR "IMQ: Error trying imq_init_devs()\n");
367 + if ((err = imq_init_hooks())) {
368 + printk(KERN_ERR "IMQ: Error trying imq_init_hooks()\n");
369 + imq_cleanup_devs();
373 + printk(KERN_INFO "IMQ driver loaded successfully.\n");
375 +#if defined(CONFIG_IMQ_BEHAVIOR_BA) || defined(CONFIG_IMQ_BEHAVIOR_BB)
376 + printk(KERN_INFO "\tHooking IMQ before NAT on PREROUTING.\n");
378 + printk(KERN_INFO "\tHooking IMQ after NAT on PREROUTING.\n");
380 +#if defined(CONFIG_IMQ_BEHAVIOR_AB) || defined(CONFIG_IMQ_BEHAVIOR_BB)
381 + printk(KERN_INFO "\tHooking IMQ before NAT on POSTROUTING.\n");
383 + printk(KERN_INFO "\tHooking IMQ after NAT on POSTROUTING.\n");
389 +static void __exit imq_cleanup_module(void)
392 + imq_cleanup_devs();
393 + printk(KERN_INFO "IMQ driver unloaded successfully.\n");
397 +module_init(imq_init_module);
398 +module_exit(imq_cleanup_module);
400 +module_param(numdevs, int, 0);
401 +MODULE_PARM_DESC(numdevs, "number of IMQ devices (how many imq* devices will be created)");
402 +MODULE_AUTHOR("http://www.linuximq.net");
403 +MODULE_DESCRIPTION("Pseudo-driver for the intermediate queue device. See http://www.linuximq.net/ for more information.");
404 +MODULE_LICENSE("GPL");
405 diff -urN linux-2.6.19.old/drivers/net/Kconfig linux-2.6.19.dev/drivers/net/Kconfig
406 --- linux-2.6.19.old/drivers/net/Kconfig 2006-11-29 22:57:37.000000000 +0100
407 +++ linux-2.6.19.dev/drivers/net/Kconfig 2006-12-14 03:13:47.000000000 +0100
409 To compile this driver as a module, choose M here: the module
410 will be called eql. If unsure, say N.
413 + tristate "IMQ (intermediate queueing device) support"
414 + depends on NETDEVICES && NETFILTER
416 + The IMQ device(s) is used as placeholder for QoS queueing disciplines.
417 + Every packet entering/leaving the IP stack can be directed through
418 + the IMQ device where it's enqueued/dequeued to the attached qdisc.
419 + This allows you to treat network devices as classes and distribute
420 + bandwidth among them. Iptables is used to specify through which IMQ
421 + device, if any, packets travel.
423 + More information at: http://www.linuximq.net/
425 + To compile this driver as a module, choose M here: the module
426 + will be called imq. If unsure, say N.
429 + prompt "IMQ behavior (PRE/POSTROUTING)"
431 + default IMQ_BEHAVIOR_BA
434 + This settings defines how IMQ behaves in respect to its
435 + hooking in PREROUTING and POSTROUTING.
437 + IMQ can work in any of the following ways:
439 + PREROUTING | POSTROUTING
440 + -----------------|-------------------
441 + #1 After NAT | After NAT
442 + #2 After NAT | Before NAT
443 + #3 Before NAT | After NAT
444 + #4 Before NAT | Before NAT
446 + The default behavior is to hook before NAT on PREROUTING
447 + and after NAT on POSTROUTING (#3).
449 + This settings are specially usefull when trying to use IMQ
450 + to shape NATed clients.
452 + More information can be found at: www.linuximq.net
454 + If not sure leave the default settings alone.
456 +config IMQ_BEHAVIOR_AA
459 + This settings defines how IMQ behaves in respect to its
460 + hooking in PREROUTING and POSTROUTING.
462 + Choosing this option will make IMQ hook like this:
464 + PREROUTING: After NAT
465 + POSTROUTING: After NAT
467 + More information can be found at: www.linuximq.net
469 + If not sure leave the default settings alone.
471 +config IMQ_BEHAVIOR_AB
474 + This settings defines how IMQ behaves in respect to its
475 + hooking in PREROUTING and POSTROUTING.
477 + Choosing this option will make IMQ hook like this:
479 + PREROUTING: After NAT
480 + POSTROUTING: Before NAT
482 + More information can be found at: www.linuximq.net
484 + If not sure leave the default settings alone.
486 +config IMQ_BEHAVIOR_BA
489 + This settings defines how IMQ behaves in respect to its
490 + hooking in PREROUTING and POSTROUTING.
492 + Choosing this option will make IMQ hook like this:
494 + PREROUTING: Before NAT
495 + POSTROUTING: After NAT
497 + More information can be found at: www.linuximq.net
499 + If not sure leave the default settings alone.
501 +config IMQ_BEHAVIOR_BB
504 + This settings defines how IMQ behaves in respect to its
505 + hooking in PREROUTING and POSTROUTING.
507 + Choosing this option will make IMQ hook like this:
509 + PREROUTING: Before NAT
510 + POSTROUTING: Before NAT
512 + More information can be found at: www.linuximq.net
514 + If not sure leave the default settings alone.
520 + int "Number of IMQ devices"
526 + This settings defines how many IMQ devices will be
529 + The default value is 2.
531 + More information can be found at: www.linuximq.net
533 + If not sure leave the default settings alone.
536 tristate "Universal TUN/TAP device driver support"
538 diff -urN linux-2.6.19.old/drivers/net/Makefile linux-2.6.19.dev/drivers/net/Makefile
539 --- linux-2.6.19.old/drivers/net/Makefile 2006-11-29 22:57:37.000000000 +0100
540 +++ linux-2.6.19.dev/drivers/net/Makefile 2006-12-14 03:13:47.000000000 +0100
542 obj-$(CONFIG_SLHC) += slhc.o
544 obj-$(CONFIG_DUMMY) += dummy.o
545 +obj-$(CONFIG_IMQ) += imq.o
546 obj-$(CONFIG_IFB) += ifb.o
547 obj-$(CONFIG_DE600) += de600.o
548 obj-$(CONFIG_DE620) += de620.o
549 diff -urN linux-2.6.19.old/include/linux/imq.h linux-2.6.19.dev/include/linux/imq.h
550 --- linux-2.6.19.old/include/linux/imq.h 1970-01-01 01:00:00.000000000 +0100
551 +++ linux-2.6.19.dev/include/linux/imq.h 2006-12-14 03:13:47.000000000 +0100
556 +#define IMQ_MAX_DEVS 16
558 +#define IMQ_F_IFMASK 0x7f
559 +#define IMQ_F_ENQUEUE 0x80
562 diff -urN linux-2.6.19.old/include/linux/netfilter_ipv4/ipt_IMQ.h linux-2.6.19.dev/include/linux/netfilter_ipv4/ipt_IMQ.h
563 --- linux-2.6.19.old/include/linux/netfilter_ipv4/ipt_IMQ.h 1970-01-01 01:00:00.000000000 +0100
564 +++ linux-2.6.19.dev/include/linux/netfilter_ipv4/ipt_IMQ.h 2006-12-14 03:13:47.000000000 +0100
569 +struct ipt_imq_info {
570 + unsigned int todev; /* target imq device */
573 +#endif /* _IPT_IMQ_H */
574 diff -urN linux-2.6.19.old/include/linux/netfilter_ipv6/ip6t_IMQ.h linux-2.6.19.dev/include/linux/netfilter_ipv6/ip6t_IMQ.h
575 --- linux-2.6.19.old/include/linux/netfilter_ipv6/ip6t_IMQ.h 1970-01-01 01:00:00.000000000 +0100
576 +++ linux-2.6.19.dev/include/linux/netfilter_ipv6/ip6t_IMQ.h 2006-12-14 03:13:47.000000000 +0100
581 +struct ip6t_imq_info {
582 + unsigned int todev; /* target imq device */
585 +#endif /* _IP6T_IMQ_H */
586 diff -urN linux-2.6.19.old/include/linux/skbuff.h linux-2.6.19.dev/include/linux/skbuff.h
587 --- linux-2.6.19.old/include/linux/skbuff.h 2006-11-29 22:57:37.000000000 +0100
588 +++ linux-2.6.19.dev/include/linux/skbuff.h 2006-12-14 03:13:47.000000000 +0100
590 #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
591 struct sk_buff *nfct_reasm;
593 +#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
594 + unsigned char imq_flags;
595 + struct nf_info *nf_info;
597 #ifdef CONFIG_BRIDGE_NETFILTER
598 struct nf_bridge_info *nf_bridge;
600 diff -urN linux-2.6.19.old/net/core/skbuff.c linux-2.6.19.dev/net/core/skbuff.c
601 --- linux-2.6.19.old/net/core/skbuff.c 2006-11-29 22:57:37.000000000 +0100
602 +++ linux-2.6.19.dev/net/core/skbuff.c 2006-12-14 03:13:47.000000000 +0100
605 nf_conntrack_get_reasm(skb->nfct_reasm);
607 +#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
610 +#endif /*CONFIG_IMQ*/
611 #ifdef CONFIG_BRIDGE_NETFILTER
613 nf_bridge_get(skb->nf_bridge);
615 #if defined(CONFIG_IP_VS) || defined(CONFIG_IP_VS_MODULE)
616 new->ipvs_property = old->ipvs_property;
618 +#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
619 + new->imq_flags = old->imq_flags;
620 + new->nf_info = old->nf_info;
621 +#endif /*CONFIG_IMQ*/
622 #ifdef CONFIG_BRIDGE_NETFILTER
623 new->nf_bridge = old->nf_bridge;
624 nf_bridge_get(old->nf_bridge);
625 diff -urN linux-2.6.19.old/net/ipv4/netfilter/ipt_IMQ.c linux-2.6.19.dev/net/ipv4/netfilter/ipt_IMQ.c
626 --- linux-2.6.19.old/net/ipv4/netfilter/ipt_IMQ.c 1970-01-01 01:00:00.000000000 +0100
627 +++ linux-2.6.19.dev/net/ipv4/netfilter/ipt_IMQ.c 2006-12-14 03:13:47.000000000 +0100
630 + * This target marks packets to be enqueued to an imq device
632 +#include <linux/module.h>
633 +#include <linux/skbuff.h>
634 +#include <linux/netfilter_ipv4/ip_tables.h>
635 +#include <linux/netfilter_ipv4/ipt_IMQ.h>
636 +#include <linux/imq.h>
638 +static unsigned int imq_target(struct sk_buff **pskb,
639 + const struct net_device *in,
640 + const struct net_device *out,
641 + unsigned int hooknum,
642 + const struct xt_target *target,
643 + const void *targinfo)
645 + struct ipt_imq_info *mr = (struct ipt_imq_info*)targinfo;
647 + (*pskb)->imq_flags = mr->todev | IMQ_F_ENQUEUE;
649 + return IPT_CONTINUE;
652 +static int imq_checkentry(const char *tablename,
654 + const struct xt_target *target,
656 + unsigned int hook_mask)
658 + struct ipt_imq_info *mr;
660 + mr = (struct ipt_imq_info*)targinfo;
662 + if (strcmp(tablename, "mangle") != 0) {
663 + printk(KERN_WARNING
664 + "IMQ: IMQ can only be called from \"mangle\" table, not \"%s\"\n",
669 + if (mr->todev > IMQ_MAX_DEVS) {
670 + printk(KERN_WARNING
671 + "IMQ: invalid device specified, highest is %u\n",
679 +static struct ipt_target ipt_imq_reg = {
681 + .target = imq_target,
682 + .targetsize = sizeof(struct ipt_imq_info),
683 + .checkentry = imq_checkentry,
687 +static int __init init(void)
689 + if (ipt_register_target(&ipt_imq_reg))
695 +static void __exit fini(void)
697 + ipt_unregister_target(&ipt_imq_reg);
703 +MODULE_AUTHOR("http://www.linuximq.net");
704 +MODULE_DESCRIPTION("Pseudo-driver for the intermediate queue device. See http://www.linuximq.net/ for more information.");
705 +MODULE_LICENSE("GPL");
706 diff -urN linux-2.6.19.old/net/ipv4/netfilter/Kconfig linux-2.6.19.dev/net/ipv4/netfilter/Kconfig
707 --- linux-2.6.19.old/net/ipv4/netfilter/Kconfig 2006-12-14 03:13:47.000000000 +0100
708 +++ linux-2.6.19.dev/net/ipv4/netfilter/Kconfig 2006-12-14 03:13:47.000000000 +0100
711 To compile it as a module, choose M here. If unsure, say N.
713 +config IP_NF_TARGET_IMQ
714 + tristate "IMQ target support"
715 + depends on IP_NF_MANGLE
717 + This option adds a `IMQ' target which is used to specify if and
718 + to which IMQ device packets should get enqueued/dequeued.
720 + For more information visit: http://www.linuximq.net/
722 + To compile it as a module, choose M here. If unsure, say N.
724 config IP_NF_TARGET_LOG
725 tristate "LOG target support"
726 depends on IP_NF_IPTABLES
727 diff -urN linux-2.6.19.old/net/ipv4/netfilter/Makefile linux-2.6.19.dev/net/ipv4/netfilter/Makefile
728 --- linux-2.6.19.old/net/ipv4/netfilter/Makefile 2006-12-14 03:13:47.000000000 +0100
729 +++ linux-2.6.19.dev/net/ipv4/netfilter/Makefile 2006-12-14 03:13:47.000000000 +0100
731 obj-$(CONFIG_IP_NF_TARGET_REJECT) += ipt_REJECT.o
732 obj-$(CONFIG_IP_NF_TARGET_TOS) += ipt_TOS.o
733 obj-$(CONFIG_IP_NF_TARGET_ECN) += ipt_ECN.o
734 +obj-$(CONFIG_IP_NF_TARGET_IMQ) += ipt_IMQ.o
735 obj-$(CONFIG_IP_NF_TARGET_MASQUERADE) += ipt_MASQUERADE.o
736 obj-$(CONFIG_IP_NF_TARGET_REDIRECT) += ipt_REDIRECT.o
737 obj-$(CONFIG_IP_NF_TARGET_NETMAP) += ipt_NETMAP.o
738 diff -urN linux-2.6.19.old/net/ipv6/netfilter/ip6t_IMQ.c linux-2.6.19.dev/net/ipv6/netfilter/ip6t_IMQ.c
739 --- linux-2.6.19.old/net/ipv6/netfilter/ip6t_IMQ.c 1970-01-01 01:00:00.000000000 +0100
740 +++ linux-2.6.19.dev/net/ipv6/netfilter/ip6t_IMQ.c 2006-12-14 03:13:47.000000000 +0100
743 + * This target marks packets to be enqueued to an imq device
745 +#include <linux/module.h>
746 +#include <linux/skbuff.h>
747 +#include <linux/netfilter_ipv6/ip6_tables.h>
748 +#include <linux/netfilter_ipv6/ip6t_IMQ.h>
749 +#include <linux/imq.h>
751 +static unsigned int imq_target(struct sk_buff **pskb,
752 + const struct net_device *in,
753 + const struct net_device *out,
754 + unsigned int hooknum,
755 + const struct xt_target *target,
756 + const void *targinfo)
758 + struct ip6t_imq_info *mr = (struct ip6t_imq_info*)targinfo;
760 + (*pskb)->imq_flags = mr->todev | IMQ_F_ENQUEUE;
762 + return IP6T_CONTINUE;
765 +static int imq_checkentry(const char *tablename,
767 + const struct xt_target *target,
769 + unsigned int hook_mask)
771 + struct ip6t_imq_info *mr;
773 + mr = (struct ip6t_imq_info*)targinfo;
775 + if (strcmp(tablename, "mangle") != 0) {
776 + printk(KERN_WARNING
777 + "IMQ: IMQ can only be called from \"mangle\" table, not \"%s\"\n",
782 + if (mr->todev > IMQ_MAX_DEVS) {
783 + printk(KERN_WARNING
784 + "IMQ: invalid device specified, highest is %u\n",
792 +static struct ip6t_target ip6t_imq_reg = {
794 + .target = imq_target,
795 + .targetsize = sizeof(struct ip6t_imq_info),
796 + .checkentry = imq_checkentry,
800 +static int __init init(void)
802 + if (ip6t_register_target(&ip6t_imq_reg))
808 +static void __exit fini(void)
810 + ip6t_unregister_target(&ip6t_imq_reg);
816 +MODULE_AUTHOR("http://www.linuximq.net");
817 +MODULE_DESCRIPTION("Pseudo-driver for the intermediate queue device. See http://www.linuximq.net/ for more information.");
818 +MODULE_LICENSE("GPL");
819 diff -urN linux-2.6.19.old/net/ipv6/netfilter/Kconfig linux-2.6.19.dev/net/ipv6/netfilter/Kconfig
820 --- linux-2.6.19.old/net/ipv6/netfilter/Kconfig 2006-11-29 22:57:37.000000000 +0100
821 +++ linux-2.6.19.dev/net/ipv6/netfilter/Kconfig 2006-12-14 03:13:47.000000000 +0100
824 To compile it as a module, choose M here. If unsure, say N.
826 +config IP6_NF_TARGET_IMQ
827 + tristate "IMQ target support"
828 + depends on IP6_NF_MANGLE
830 + This option adds a `IMQ' target which is used to specify if and
831 + to which imq device packets should get enqueued/dequeued.
833 + To compile it as a module, choose M here. If unsure, say N.
835 config IP6_NF_TARGET_LOG
836 tristate "LOG target support"
837 depends on IP6_NF_FILTER
838 diff -urN linux-2.6.19.old/net/ipv6/netfilter/Makefile linux-2.6.19.dev/net/ipv6/netfilter/Makefile
839 --- linux-2.6.19.old/net/ipv6/netfilter/Makefile 2006-11-29 22:57:37.000000000 +0100
840 +++ linux-2.6.19.dev/net/ipv6/netfilter/Makefile 2006-12-14 03:13:47.000000000 +0100
843 # Link order matters here.
844 obj-$(CONFIG_IP6_NF_IPTABLES) += ip6_tables.o
845 +obj-$(CONFIG_IP6_NF_TARGET_IMQ) += ip6t_IMQ.o
846 obj-$(CONFIG_IP6_NF_MATCH_RT) += ip6t_rt.o
847 obj-$(CONFIG_IP6_NF_MATCH_OPTS) += ip6t_hbh.o
848 obj-$(CONFIG_IP6_NF_MATCH_IPV6HEADER) += ip6t_ipv6header.o
849 diff -urN linux-2.6.19.old/net/sched/sch_generic.c linux-2.6.19.dev/net/sched/sch_generic.c
850 --- linux-2.6.19.old/net/sched/sch_generic.c 2006-11-29 22:57:37.000000000 +0100
851 +++ linux-2.6.19.dev/net/sched/sch_generic.c 2006-12-14 03:13:47.000000000 +0100
853 #include <linux/netdevice.h>
854 #include <linux/skbuff.h>
855 #include <linux/rtnetlink.h>
856 +#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
857 +#include <linux/imq.h>
859 #include <linux/init.h>
860 #include <linux/rcupdate.h>
861 #include <linux/list.h>
863 EXPORT_SYMBOL(qdisc_alloc);
864 EXPORT_SYMBOL(qdisc_destroy);
865 EXPORT_SYMBOL(qdisc_reset);
866 +EXPORT_SYMBOL(__qdisc_run);
867 EXPORT_SYMBOL(qdisc_lock_tree);
868 EXPORT_SYMBOL(qdisc_unlock_tree);