]> git.pld-linux.org Git - packages/kernel.git/blob - kernel-imq.patch
d50ab11f7345ee552391c8045382e470d8a2b41c
[packages/kernel.git] / kernel-imq.patch
1 diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig
2 index d18eb60..739a98a 100644
3 --- a/drivers/net/Kconfig
4 +++ b/drivers/net/Kconfig
5 @@ -234,6 +234,125 @@ config RIONET_RX_SIZE
6         depends on RIONET
7         default "128"
8  
9 +config IMQ
10 +       tristate "IMQ (intermediate queueing device) support"
11 +       depends on NETDEVICES && NETFILTER
12 +       ---help---
13 +         The IMQ device(s) is used as placeholder for QoS queueing
14 +         disciplines. Every packet entering/leaving the IP stack can be
15 +         directed through the IMQ device where it's enqueued/dequeued to the
16 +         attached qdisc. This allows you to treat network devices as classes
17 +         and distribute bandwidth among them. Iptables is used to specify
18 +         through which IMQ device, if any, packets travel.
19 +
20 +         More information at: https://github.com/imq/linuximq
21 +
22 +         To compile this driver as a module, choose M here: the module
23 +         will be called imq.  If unsure, say N.
24 +
25 +choice
26 +       prompt "IMQ behavior (PRE/POSTROUTING)"
27 +       depends on IMQ
28 +       default IMQ_BEHAVIOR_AB
29 +       help
30 +         This setting defines how IMQ behaves in respect to its
31 +         hooking in PREROUTING and POSTROUTING.
32 +
33 +         IMQ can work in any of the following ways:
34 +
35 +             PREROUTING   |      POSTROUTING
36 +         -----------------|-------------------
37 +         #1  After NAT    |      After NAT
38 +         #2  After NAT    |      Before NAT
39 +         #3  Before NAT   |      After NAT
40 +         #4  Before NAT   |      Before NAT
41 +
42 +         The default behavior is to hook before NAT on PREROUTING
43 +         and after NAT on POSTROUTING (#3).
44 +
45 +         This settings are specially usefull when trying to use IMQ
46 +         to shape NATed clients.
47 +
48 +         More information can be found at: https://github.com/imq/linuximq
49 +
50 +         If not sure leave the default settings alone.
51 +
52 +config IMQ_BEHAVIOR_AA
53 +       bool "IMQ AA"
54 +       help
55 +         This setting defines how IMQ behaves in respect to its
56 +         hooking in PREROUTING and POSTROUTING.
57 +
58 +         Choosing this option will make IMQ hook like this:
59 +
60 +         PREROUTING:   After NAT
61 +         POSTROUTING:  After NAT
62 +
63 +         More information can be found at: https://github.com/imq/linuximq
64 +
65 +         If not sure leave the default settings alone.
66 +
67 +config IMQ_BEHAVIOR_AB
68 +       bool "IMQ AB"
69 +       help
70 +         This setting defines how IMQ behaves in respect to its
71 +         hooking in PREROUTING and POSTROUTING.
72 +
73 +         Choosing this option will make IMQ hook like this:
74 +
75 +         PREROUTING:   After NAT
76 +         POSTROUTING:  Before NAT
77 +
78 +         More information can be found at: https://github.com/imq/linuximq
79 +
80 +         If not sure leave the default settings alone.
81 +
82 +config IMQ_BEHAVIOR_BA
83 +       bool "IMQ BA"
84 +       help
85 +         This setting defines how IMQ behaves in respect to its
86 +         hooking in PREROUTING and POSTROUTING.
87 +
88 +         Choosing this option will make IMQ hook like this:
89 +
90 +         PREROUTING:   Before NAT
91 +         POSTROUTING:  After NAT
92 +
93 +         More information can be found at: https://github.com/imq/linuximq
94 +
95 +         If not sure leave the default settings alone.
96 +
97 +config IMQ_BEHAVIOR_BB
98 +       bool "IMQ BB"
99 +       help
100 +         This setting defines how IMQ behaves in respect to its
101 +         hooking in PREROUTING and POSTROUTING.
102 +
103 +         Choosing this option will make IMQ hook like this:
104 +
105 +         PREROUTING:   Before NAT
106 +         POSTROUTING:  Before NAT
107 +
108 +         More information can be found at: https://github.com/imq/linuximq
109 +
110 +         If not sure leave the default settings alone.
111 +
112 +endchoice
113 +
114 +config IMQ_NUM_DEVS
115 +       int "Number of IMQ devices"
116 +       range 2 16
117 +       depends on IMQ
118 +       default "16"
119 +       help
120 +         This setting defines how many IMQ devices will be created.
121 +
122 +         The default value is 16.
123 +
124 +         More information can be found at: https://github.com/imq/linuximq
125 +
126 +         If not sure leave the default settings alone.
127 +
128  config TUN
129         tristate "Universal TUN/TAP device driver support"
130         depends on INET
131 diff --git a/drivers/net/Makefile b/drivers/net/Makefile
132 index 900b0c5..e093402 100644
133 --- a/drivers/net/Makefile
134 +++ b/drivers/net/Makefile
135 @@ -10,6 +10,7 @@ obj-$(CONFIG_IPVLAN) += ipvlan/
136  obj-$(CONFIG_DUMMY) += dummy.o
137  obj-$(CONFIG_EQUALIZER) += eql.o
138  obj-$(CONFIG_IFB) += ifb.o
139 +obj-$(CONFIG_IMQ) += imq.o
140  obj-$(CONFIG_MACVLAN) += macvlan.o
141  obj-$(CONFIG_MACVTAP) += macvtap.o
142  obj-$(CONFIG_MII) += mii.o
143 diff --git a/drivers/net/imq.c b/drivers/net/imq.c
144 new file mode 100644
145 index 0000000..c60929b
146 --- /dev/null
147 +++ b/drivers/net/imq.c
148 @@ -0,0 +1,908 @@
149 +/*
150 + *             Pseudo-driver for the intermediate queue device.
151 + *
152 + *             This program is free software; you can redistribute it and/or
153 + *             modify it under the terms of the GNU General Public License
154 + *             as published by the Free Software Foundation; either version
155 + *             2 of the License, or (at your option) any later version.
156 + *
157 + * Authors:    Patrick McHardy, <kaber@trash.net>
158 + *
159 + *            The first version was written by Martin Devera, <devik@cdi.cz>
160 + *
161 + *                        See Creditis.txt
162 + */
163 +
164 +#include <linux/module.h>
165 +#include <linux/kernel.h>
166 +#include <linux/moduleparam.h>
167 +#include <linux/list.h>
168 +#include <linux/skbuff.h>
169 +#include <linux/netdevice.h>
170 +#include <linux/etherdevice.h>
171 +#include <linux/rtnetlink.h>
172 +#include <linux/if_arp.h>
173 +#include <linux/netfilter.h>
174 +#include <linux/netfilter_ipv4.h>
175 +#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
176 +       #include <linux/netfilter_ipv6.h>
177 +#endif
178 +#include <linux/imq.h>
179 +#include <net/pkt_sched.h>
180 +#include <net/netfilter/nf_queue.h>
181 +#include <net/sock.h>
182 +#include <linux/ip.h>
183 +#include <linux/ipv6.h>
184 +#include <linux/if_vlan.h>
185 +#include <linux/if_pppox.h>
186 +#include <net/ip.h>
187 +#include <net/ipv6.h>
188 +
189 +static int imq_nf_queue(struct nf_queue_entry *entry, unsigned queue_num);
190 +
191 +static nf_hookfn imq_nf_hook;
192 +
193 +static struct nf_hook_ops imq_ops[] = {
194 +       {
195 +       /* imq_ingress_ipv4 */
196 +               .hook           = imq_nf_hook,
197 +               .owner          = THIS_MODULE,
198 +               .pf             = PF_INET,
199 +               .hooknum        = NF_INET_PRE_ROUTING,
200 +#if defined(CONFIG_IMQ_BEHAVIOR_BA) || defined(CONFIG_IMQ_BEHAVIOR_BB)
201 +               .priority       = NF_IP_PRI_MANGLE + 1,
202 +#else
203 +               .priority       = NF_IP_PRI_NAT_DST + 1,
204 +#endif
205 +       },
206 +       {
207 +       /* imq_egress_ipv4 */
208 +               .hook           = imq_nf_hook,
209 +               .owner          = THIS_MODULE,
210 +               .pf             = PF_INET,
211 +               .hooknum        = NF_INET_POST_ROUTING,
212 +#if defined(CONFIG_IMQ_BEHAVIOR_AA) || defined(CONFIG_IMQ_BEHAVIOR_BA)
213 +               .priority       = NF_IP_PRI_LAST,
214 +#else
215 +               .priority       = NF_IP_PRI_NAT_SRC - 1,
216 +#endif
217 +       },
218 +#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
219 +       {
220 +       /* imq_ingress_ipv6 */
221 +               .hook           = imq_nf_hook,
222 +               .owner          = THIS_MODULE,
223 +               .pf             = PF_INET6,
224 +               .hooknum        = NF_INET_PRE_ROUTING,
225 +#if defined(CONFIG_IMQ_BEHAVIOR_BA) || defined(CONFIG_IMQ_BEHAVIOR_BB)
226 +               .priority       = NF_IP6_PRI_MANGLE + 1,
227 +#else
228 +               .priority       = NF_IP6_PRI_NAT_DST + 1,
229 +#endif
230 +       },
231 +       {
232 +       /* imq_egress_ipv6 */
233 +               .hook           = imq_nf_hook,
234 +               .owner          = THIS_MODULE,
235 +               .pf             = PF_INET6,
236 +               .hooknum        = NF_INET_POST_ROUTING,
237 +#if defined(CONFIG_IMQ_BEHAVIOR_AA) || defined(CONFIG_IMQ_BEHAVIOR_BA)
238 +               .priority       = NF_IP6_PRI_LAST,
239 +#else
240 +               .priority       = NF_IP6_PRI_NAT_SRC - 1,
241 +#endif
242 +       },
243 +#endif
244 +};
245 +
246 +#if defined(CONFIG_IMQ_NUM_DEVS)
247 +static int numdevs = CONFIG_IMQ_NUM_DEVS;
248 +#else
249 +static int numdevs = IMQ_MAX_DEVS;
250 +#endif
251 +
252 +static struct net_device *imq_devs_cache[IMQ_MAX_DEVS];
253 +
254 +#define IMQ_MAX_QUEUES 32
255 +static int numqueues = 1;
256 +static u32 imq_hashrnd;
257 +static int imq_dev_accurate_stats = 1;
258 +
259 +static inline __be16 pppoe_proto(const struct sk_buff *skb)
260 +{
261 +       return *((__be16 *)(skb_mac_header(skb) + ETH_HLEN +
262 +                       sizeof(struct pppoe_hdr)));
263 +}
264 +
265 +static u16 imq_hash(struct net_device *dev, struct sk_buff *skb)
266 +{
267 +       unsigned int pull_len;
268 +       u16 protocol = skb->protocol;
269 +       u32 addr1, addr2;
270 +       u32 hash, ihl = 0;
271 +       union {
272 +               u16 in16[2];
273 +               u32 in32;
274 +       } ports;
275 +       u8 ip_proto;
276 +
277 +       pull_len = 0;
278 +
279 +recheck:
280 +       switch (protocol) {
281 +       case htons(ETH_P_8021Q): {
282 +               if (unlikely(skb_pull(skb, VLAN_HLEN) == NULL))
283 +                       goto other;
284 +
285 +               pull_len += VLAN_HLEN;
286 +               skb->network_header += VLAN_HLEN;
287 +
288 +               protocol = vlan_eth_hdr(skb)->h_vlan_encapsulated_proto;
289 +               goto recheck;
290 +       }
291 +
292 +       case htons(ETH_P_PPP_SES): {
293 +               if (unlikely(skb_pull(skb, PPPOE_SES_HLEN) == NULL))
294 +                       goto other;
295 +
296 +               pull_len += PPPOE_SES_HLEN;
297 +               skb->network_header += PPPOE_SES_HLEN;
298 +
299 +               protocol = pppoe_proto(skb);
300 +               goto recheck;
301 +       }
302 +
303 +       case htons(ETH_P_IP): {
304 +               const struct iphdr *iph = ip_hdr(skb);
305 +
306 +               if (unlikely(!pskb_may_pull(skb, sizeof(struct iphdr))))
307 +                       goto other;
308 +
309 +               addr1 = iph->daddr;
310 +               addr2 = iph->saddr;
311 +
312 +               ip_proto = !(ip_hdr(skb)->frag_off & htons(IP_MF | IP_OFFSET)) ?
313 +                                iph->protocol : 0;
314 +               ihl = ip_hdrlen(skb);
315 +
316 +               break;
317 +       }
318 +#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
319 +       case htons(ETH_P_IPV6): {
320 +               const struct ipv6hdr *iph = ipv6_hdr(skb);
321 +               __be16 fo = 0;
322 +
323 +               if (unlikely(!pskb_may_pull(skb, sizeof(struct ipv6hdr))))
324 +                       goto other;
325 +
326 +               addr1 = iph->daddr.s6_addr32[3];
327 +               addr2 = iph->saddr.s6_addr32[3];
328 +               ihl = ipv6_skip_exthdr(skb, sizeof(struct ipv6hdr), &ip_proto,
329 +                                      &fo);
330 +               if (unlikely(ihl < 0))
331 +                       goto other;
332 +
333 +               break;
334 +       }
335 +#endif
336 +       default:
337 +other:
338 +               if (pull_len != 0) {
339 +                       skb_push(skb, pull_len);
340 +                       skb->network_header -= pull_len;
341 +               }
342 +
343 +               return (u16)(ntohs(protocol) % dev->real_num_tx_queues);
344 +       }
345 +
346 +       if (addr1 > addr2)
347 +               swap(addr1, addr2);
348 +
349 +       switch (ip_proto) {
350 +       case IPPROTO_TCP:
351 +       case IPPROTO_UDP:
352 +       case IPPROTO_DCCP:
353 +       case IPPROTO_ESP:
354 +       case IPPROTO_AH:
355 +       case IPPROTO_SCTP:
356 +       case IPPROTO_UDPLITE: {
357 +               if (likely(skb_copy_bits(skb, ihl, &ports.in32, 4) >= 0)) {
358 +                       if (ports.in16[0] > ports.in16[1])
359 +                               swap(ports.in16[0], ports.in16[1]);
360 +                       break;
361 +               }
362 +               /* fall-through */
363 +       }
364 +       default:
365 +               ports.in32 = 0;
366 +               break;
367 +       }
368 +
369 +       if (pull_len != 0) {
370 +               skb_push(skb, pull_len);
371 +               skb->network_header -= pull_len;
372 +       }
373 +
374 +       hash = jhash_3words(addr1, addr2, ports.in32, imq_hashrnd ^ ip_proto);
375 +
376 +       return (u16)(((u64)hash * dev->real_num_tx_queues) >> 32);
377 +}
378 +
379 +static inline bool sk_tx_queue_recorded(struct sock *sk)
380 +{
381 +       return (sk_tx_queue_get(sk) >= 0);
382 +}
383 +
384 +static struct netdev_queue *imq_select_queue(struct net_device *dev,
385 +                                               struct sk_buff *skb)
386 +{
387 +       u16 queue_index = 0;
388 +       u32 hash;
389 +
390 +       if (likely(dev->real_num_tx_queues == 1))
391 +               goto out;
392 +
393 +       /* IMQ can be receiving ingress or engress packets. */
394 +
395 +       /* Check first for if rx_queue is set */
396 +       if (skb_rx_queue_recorded(skb)) {
397 +               queue_index = skb_get_rx_queue(skb);
398 +               goto out;
399 +       }
400 +
401 +       /* Check if socket has tx_queue set */
402 +       if (sk_tx_queue_recorded(skb->sk)) {
403 +               queue_index = sk_tx_queue_get(skb->sk);
404 +               goto out;
405 +       }
406 +
407 +       /* Try use socket hash */
408 +       if (skb->sk && skb->sk->sk_hash) {
409 +               hash = skb->sk->sk_hash;
410 +               queue_index =
411 +                       (u16)(((u64)hash * dev->real_num_tx_queues) >> 32);
412 +               goto out;
413 +       }
414 +
415 +       /* Generate hash from packet data */
416 +       queue_index = imq_hash(dev, skb);
417 +
418 +out:
419 +       if (unlikely(queue_index >= dev->real_num_tx_queues))
420 +               queue_index = (u16)((u32)queue_index % dev->real_num_tx_queues);
421 +
422 +       skb_set_queue_mapping(skb, queue_index);
423 +       return netdev_get_tx_queue(dev, queue_index);
424 +}
425 +
426 +static struct net_device_stats *imq_get_stats(struct net_device *dev)
427 +{
428 +       return &dev->stats;
429 +}
430 +
431 +/* called for packets kfree'd in qdiscs at places other than enqueue */
432 +static void imq_skb_destructor(struct sk_buff *skb)
433 +{
434 +       struct nf_queue_entry *entry = skb->nf_queue_entry;
435 +
436 +       skb->nf_queue_entry = NULL;
437 +
438 +       if (entry) {
439 +               nf_queue_entry_release_refs(entry);
440 +               kfree(entry);
441 +       }
442 +
443 +       skb_restore_cb(skb); /* kfree backup */
444 +}
445 +
446 +static void imq_done_check_queue_mapping(struct sk_buff *skb,
447 +                                        struct net_device *dev)
448 +{
449 +       unsigned int queue_index;
450 +
451 +       /* Don't let queue_mapping be left too large after exiting IMQ */
452 +       if (likely(skb->dev != dev && skb->dev != NULL)) {
453 +               queue_index = skb_get_queue_mapping(skb);
454 +               if (unlikely(queue_index >= skb->dev->real_num_tx_queues)) {
455 +                       queue_index = (u16)((u32)queue_index %
456 +                                               skb->dev->real_num_tx_queues);
457 +                       skb_set_queue_mapping(skb, queue_index);
458 +               }
459 +       } else {
460 +               /* skb->dev was IMQ device itself or NULL, be on safe side and
461 +                * just clear queue mapping.
462 +                */
463 +               skb_set_queue_mapping(skb, 0);
464 +       }
465 +}
466 +
467 +static netdev_tx_t imq_dev_xmit(struct sk_buff *skb, struct net_device *dev)
468 +{
469 +       struct nf_queue_entry *entry = skb->nf_queue_entry;
470 +
471 +       skb->nf_queue_entry = NULL;
472 +       dev->trans_start = jiffies;
473 +
474 +       dev->stats.tx_bytes += skb->len;
475 +       dev->stats.tx_packets++;
476 +
477 +       if (unlikely(entry == NULL)) {
478 +               /* We don't know what is going on here.. packet is queued for
479 +                * imq device, but (probably) not by us.
480 +                *
481 +                * If this packet was not send here by imq_nf_queue(), then
482 +                * skb_save_cb() was not used and skb_free() should not show:
483 +                *   WARNING: IMQ: kfree_skb: skb->cb_next:..
484 +                * and/or
485 +                *   WARNING: IMQ: kfree_skb: skb->nf_queue_entry...
486 +                *
487 +                * However if this message is shown, then IMQ is somehow broken
488 +                * and you should report this to linuximq.net.
489 +                */
490 +
491 +               /* imq_dev_xmit is black hole that eats all packets, report that
492 +                * we eat this packet happily and increase dropped counters.
493 +                */
494 +
495 +               dev->stats.tx_dropped++;
496 +               dev_kfree_skb(skb);
497 +
498 +               return NETDEV_TX_OK;
499 +       }
500 +
501 +       skb_restore_cb(skb); /* restore skb->cb */
502 +
503 +       skb->imq_flags = 0;
504 +       skb->destructor = NULL;
505 +
506 +       imq_done_check_queue_mapping(skb, dev);
507 +
508 +       nf_reinject(entry, NF_ACCEPT);
509 +
510 +       return NETDEV_TX_OK;
511 +}
512 +
513 +static struct net_device *get_imq_device_by_index(int index)
514 +{
515 +       struct net_device *dev = NULL;
516 +       struct net *net;
517 +       char buf[8];
518 +
519 +       /* get device by name and cache result */
520 +       snprintf(buf, sizeof(buf), "imq%d", index);
521 +
522 +       /* Search device from all namespaces. */
523 +       for_each_net(net) {
524 +               dev = dev_get_by_name(net, buf);
525 +               if (dev)
526 +                       break;
527 +       }
528 +
529 +       if (WARN_ON_ONCE(dev == NULL)) {
530 +               /* IMQ device not found. Exotic config? */
531 +               return ERR_PTR(-ENODEV);
532 +       }
533 +
534 +       imq_devs_cache[index] = dev;
535 +       dev_put(dev);
536 +
537 +       return dev;
538 +}
539 +
540 +static struct nf_queue_entry *nf_queue_entry_dup(struct nf_queue_entry *e)
541 +{
542 +       struct nf_queue_entry *entry = kmemdup(e, e->size, GFP_ATOMIC);
543 +       if (entry) {
544 +               if (nf_queue_entry_get_refs(entry))
545 +                       return entry;
546 +               kfree(entry);
547 +       }
548 +       return NULL;
549 +}
550 +
551 +#ifdef CONFIG_BRIDGE_NETFILTER
552 +/* When called from bridge netfilter, skb->data must point to MAC header
553 + * before calling skb_gso_segment(). Else, original MAC header is lost
554 + * and segmented skbs will be sent to wrong destination.
555 + */
556 +static void nf_bridge_adjust_skb_data(struct sk_buff *skb)
557 +{
558 +       if (skb->nf_bridge)
559 +               __skb_push(skb, skb->network_header - skb->mac_header);
560 +}
561 +
562 +static void nf_bridge_adjust_segmented_data(struct sk_buff *skb)
563 +{
564 +       if (skb->nf_bridge)
565 +               __skb_pull(skb, skb->network_header - skb->mac_header);
566 +}
567 +#else
568 +#define nf_bridge_adjust_skb_data(s) do {} while (0)
569 +#define nf_bridge_adjust_segmented_data(s) do {} while (0)
570 +#endif
571 +
572 +static void free_entry(struct nf_queue_entry *entry)
573 +{
574 +       nf_queue_entry_release_refs(entry);
575 +       kfree(entry);
576 +}
577 +
578 +static int __imq_nf_queue(struct nf_queue_entry *entry, struct net_device *dev);
579 +
580 +static int __imq_nf_queue_gso(struct nf_queue_entry *entry,
581 +                             struct net_device *dev, struct sk_buff *skb)
582 +{
583 +       int ret = -ENOMEM;
584 +       struct nf_queue_entry *entry_seg;
585 +
586 +       nf_bridge_adjust_segmented_data(skb);
587 +
588 +       if (skb->next == NULL) { /* last packet, no need to copy entry */
589 +               struct sk_buff *gso_skb = entry->skb;
590 +               entry->skb = skb;
591 +               ret = __imq_nf_queue(entry, dev);
592 +               if (ret)
593 +                       entry->skb = gso_skb;
594 +               return ret;
595 +       }
596 +
597 +       skb->next = NULL;
598 +
599 +       entry_seg = nf_queue_entry_dup(entry);
600 +       if (entry_seg) {
601 +               entry_seg->skb = skb;
602 +               ret = __imq_nf_queue(entry_seg, dev);
603 +               if (ret)
604 +                       free_entry(entry_seg);
605 +       }
606 +       return ret;
607 +}
608 +
609 +static int imq_nf_queue(struct nf_queue_entry *entry, unsigned queue_num)
610 +{
611 +       struct sk_buff *skb, *segs;
612 +       struct net_device *dev;
613 +       unsigned int queued;
614 +       int index, retval, err;
615 +
616 +       index = entry->skb->imq_flags & IMQ_F_IFMASK;
617 +       if (unlikely(index > numdevs - 1)) {
618 +               if (net_ratelimit())
619 +                       pr_warn("IMQ: invalid device specified, highest is %u\n",
620 +                               numdevs - 1);
621 +               retval = -EINVAL;
622 +               goto out_no_dev;
623 +       }
624 +
625 +       /* check for imq device by index from cache */
626 +       dev = imq_devs_cache[index];
627 +       if (unlikely(!dev)) {
628 +               dev = get_imq_device_by_index(index);
629 +               if (IS_ERR(dev)) {
630 +                       retval = PTR_ERR(dev);
631 +                       goto out_no_dev;
632 +               }
633 +       }
634 +
635 +       if (unlikely(!(dev->flags & IFF_UP))) {
636 +               entry->skb->imq_flags = 0;
637 +               retval = -ECANCELED;
638 +               goto out_no_dev;
639 +       }
640 +
641 +       /* Since 3.10.x, GSO handling moved here as result of upstream commit
642 +        * a5fedd43d5f6c94c71053a66e4c3d2e35f1731a2 (netfilter: move
643 +        * skb_gso_segment into nfnetlink_queue module).
644 +        *
645 +        * Following code replicates the gso handling from
646 +        * 'net/netfilter/nfnetlink_queue_core.c':nfqnl_enqueue_packet().
647 +        */
648 +
649 +       skb = entry->skb;
650 +
651 +       switch (entry->state.pf) {
652 +       case NFPROTO_IPV4:
653 +               skb->protocol = htons(ETH_P_IP);
654 +               break;
655 +       case NFPROTO_IPV6:
656 +               skb->protocol = htons(ETH_P_IPV6);
657 +               break;
658 +       }
659 +
660 +       if (!skb_is_gso(entry->skb))
661 +               return __imq_nf_queue(entry, dev);
662 +
663 +       nf_bridge_adjust_skb_data(skb);
664 +       segs = skb_gso_segment(skb, 0);
665 +       /* Does not use PTR_ERR to limit the number of error codes that can be
666 +        * returned by nf_queue.  For instance, callers rely on -ECANCELED to
667 +        * mean 'ignore this hook'.
668 +        */
669 +       err = -ENOBUFS;
670 +       if (IS_ERR(segs))
671 +               goto out_err;
672 +       queued = 0;
673 +       err = 0;
674 +       do {
675 +               struct sk_buff *nskb = segs->next;
676 +               if (nskb && nskb->next)
677 +                       nskb->cb_next = NULL;
678 +               if (err == 0)
679 +                       err = __imq_nf_queue_gso(entry, dev, segs);
680 +               if (err == 0)
681 +                       queued++;
682 +               else
683 +                       kfree_skb(segs);
684 +               segs = nskb;
685 +       } while (segs);
686 +
687 +       if (queued) {
688 +               if (err) /* some segments are already queued */
689 +                       free_entry(entry);
690 +               kfree_skb(skb);
691 +               return 0;
692 +       }
693 +
694 +out_err:
695 +       nf_bridge_adjust_segmented_data(skb);
696 +       retval = err;
697 +out_no_dev:
698 +       return retval;
699 +}
700 +
701 +static int __imq_nf_queue(struct nf_queue_entry *entry, struct net_device *dev)
702 +{
703 +       struct sk_buff *skb_orig, *skb, *skb_shared, *skb_popd;
704 +       struct Qdisc *q;
705 +       struct netdev_queue *txq;
706 +       spinlock_t *root_lock;
707 +       int users;
708 +       int retval = -EINVAL;
709 +       unsigned int orig_queue_index;
710 +
711 +       dev->last_rx = jiffies;
712 +
713 +       skb = entry->skb;
714 +       skb_orig = NULL;
715 +
716 +       /* skb has owner? => make clone */
717 +       if (unlikely(skb->destructor)) {
718 +               skb_orig = skb;
719 +               skb = skb_clone(skb, GFP_ATOMIC);
720 +               if (unlikely(!skb)) {
721 +                       retval = -ENOMEM;
722 +                       goto out;
723 +               }
724 +               skb->cb_next = NULL;
725 +               entry->skb = skb;
726 +       }
727 +
728 +       dev->stats.rx_bytes += skb->len;
729 +       dev->stats.rx_packets++;
730 +
731 +       if (!skb->dev) {
732 +               /* skb->dev == NULL causes problems, try the find cause. */
733 +               if (net_ratelimit()) {
734 +                       dev_warn(&dev->dev,
735 +                                "received packet with skb->dev == NULL\n");
736 +                       dump_stack();
737 +               }
738 +
739 +               skb->dev = dev;
740 +       }
741 +
742 +       /* Disables softirqs for lock below */
743 +       rcu_read_lock_bh();
744 +
745 +       /* Multi-queue selection */
746 +       orig_queue_index = skb_get_queue_mapping(skb);
747 +       txq = imq_select_queue(dev, skb);
748 +
749 +       q = rcu_dereference(txq->qdisc);
750 +       if (unlikely(!q->enqueue))
751 +               goto packet_not_eaten_by_imq_dev;
752 +
753 +       skb->nf_queue_entry = entry;
754 +       root_lock = qdisc_lock(q);
755 +       spin_lock(root_lock);
756 +
757 +       users = atomic_read(&skb->users);
758 +
759 +       skb_shared = skb_get(skb); /* increase reference count by one */
760 +
761 +       /* backup skb->cb, as qdisc layer will overwrite it */
762 +       skb_save_cb(skb_shared);
763 +       qdisc_enqueue_root(skb_shared, q); /* might kfree_skb */
764 +       if (likely(atomic_read(&skb_shared->users) == users + 1)) {
765 +               bool validate;
766 +
767 +               kfree_skb(skb_shared); /* decrease reference count by one */
768 +
769 +               skb->destructor = &imq_skb_destructor;
770 +
771 +               skb_popd = qdisc_dequeue_skb(q, &validate);
772 +
773 +               /* cloned? */
774 +               if (unlikely(skb_orig))
775 +                       kfree_skb(skb_orig); /* free original */
776 +
777 +               spin_unlock(root_lock);
778 +
779 +#if 0
780 +               /* schedule qdisc dequeue */
781 +               __netif_schedule(q);
782 +#else
783 +               if (likely(skb_popd)) {
784 +                       /* Note that we validate skb (GSO, checksum, ...) outside of locks */
785 +                       if (validate)
786 +                       skb_popd = validate_xmit_skb_list(skb_popd, dev);
787 +                       
788 +                       if (skb_popd) {
789 +                               int dummy_ret;
790 +                               int cpu = smp_processor_id(); /* ok because BHs are off */
791 +
792 +                               txq = skb_get_tx_queue(dev, skb_popd);
793 +                               /* 
794 +                               IMQ device will not be frozen or stoped, and it always be successful.
795 +                               So we need not check its status and return value to accelerate.
796 +                               */
797 +                               if (imq_dev_accurate_stats && txq->xmit_lock_owner != cpu) {
798 +                                       HARD_TX_LOCK(dev, txq, cpu);
799 +                                       if (!netif_xmit_frozen_or_stopped(txq)) {
800 +                                               dev_hard_start_xmit(skb_popd, dev, txq, &dummy_ret);
801 +                                       }
802 +                                       HARD_TX_UNLOCK(dev, txq);
803 +                               } else {
804 +                                       if (!netif_xmit_frozen_or_stopped(txq)) {
805 +                                               dev_hard_start_xmit(skb_popd, dev, txq, &dummy_ret);
806 +                                       }
807 +                               }
808 +                       }
809 +               } else {
810 +                       /* No ready skb, then schedule it */
811 +                       __netif_schedule(q);
812 +               }
813 +#endif
814 +               rcu_read_unlock_bh();
815 +               retval = 0;
816 +               goto out;
817 +       } else {
818 +               skb_restore_cb(skb_shared); /* restore skb->cb */
819 +               skb->nf_queue_entry = NULL;
820 +               /*
821 +                * qdisc dropped packet and decreased skb reference count of
822 +                * skb, so we don't really want to and try refree as that would
823 +                * actually destroy the skb.
824 +                */
825 +               spin_unlock(root_lock);
826 +               goto packet_not_eaten_by_imq_dev;
827 +       }
828 +
829 +packet_not_eaten_by_imq_dev:
830 +       skb_set_queue_mapping(skb, orig_queue_index);
831 +       rcu_read_unlock_bh();
832 +
833 +       /* cloned? restore original */
834 +       if (unlikely(skb_orig)) {
835 +               kfree_skb(skb);
836 +               entry->skb = skb_orig;
837 +       }
838 +       retval = -1;
839 +out:
840 +       return retval;
841 +}
842 +static unsigned int imq_nf_hook(const struct nf_hook_ops *hook_ops,
843 +                               struct sk_buff *skb,
844 +                               const struct nf_hook_state *state)
845 +{
846 +       return (skb->imq_flags & IMQ_F_ENQUEUE) ? NF_IMQ_QUEUE : NF_ACCEPT;
847 +}
848 +
849 +static int imq_close(struct net_device *dev)
850 +{
851 +       netif_stop_queue(dev);
852 +       return 0;
853 +}
854 +
855 +static int imq_open(struct net_device *dev)
856 +{
857 +       netif_start_queue(dev);
858 +       return 0;
859 +}
860 +
861 +static const struct net_device_ops imq_netdev_ops = {
862 +       .ndo_open               = imq_open,
863 +       .ndo_stop               = imq_close,
864 +       .ndo_start_xmit         = imq_dev_xmit,
865 +       .ndo_get_stats          = imq_get_stats,
866 +};
867 +
868 +static void imq_setup(struct net_device *dev)
869 +{
870 +       dev->netdev_ops         = &imq_netdev_ops;
871 +       dev->type               = ARPHRD_VOID;
872 +       dev->mtu                = 16000; /* too small? */
873 +       dev->tx_queue_len       = 11000; /* too big? */
874 +       dev->flags              = IFF_NOARP;
875 +       dev->features           = NETIF_F_SG | NETIF_F_FRAGLIST |
876 +                                 NETIF_F_GSO | NETIF_F_HW_CSUM |
877 +                                 NETIF_F_HIGHDMA;
878 +       dev->priv_flags         &= ~(IFF_XMIT_DST_RELEASE |
879 +                                    IFF_TX_SKB_SHARING);
880 +}
881 +
882 +static int imq_validate(struct nlattr *tb[], struct nlattr *data[])
883 +{
884 +       int ret = 0;
885 +
886 +       if (tb[IFLA_ADDRESS]) {
887 +               if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) {
888 +                       ret = -EINVAL;
889 +                       goto end;
890 +               }
891 +               if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) {
892 +                       ret = -EADDRNOTAVAIL;
893 +                       goto end;
894 +               }
895 +       }
896 +       return 0;
897 +end:
898 +       pr_warn("IMQ: imq_validate failed (%d)\n", ret);
899 +       return ret;
900 +}
901 +
902 +static struct rtnl_link_ops imq_link_ops __read_mostly = {
903 +       .kind           = "imq",
904 +       .priv_size      = 0,
905 +       .setup          = imq_setup,
906 +       .validate       = imq_validate,
907 +};
908 +
909 +static const struct nf_queue_handler imq_nfqh = {
910 +       .outfn = imq_nf_queue,
911 +};
912 +
913 +static int __init imq_init_hooks(void)
914 +{
915 +       int ret;
916 +
917 +       nf_register_queue_imq_handler(&imq_nfqh);
918 +
919 +       ret = nf_register_hooks(imq_ops, ARRAY_SIZE(imq_ops));
920 +       if (ret < 0)
921 +               nf_unregister_queue_imq_handler();
922 +
923 +       return ret;
924 +}
925 +
926 +static int __init imq_init_one(int index)
927 +{
928 +       struct net_device *dev;
929 +       int ret;
930 +
931 +       dev = alloc_netdev_mq(0, "imq%d", NET_NAME_UNKNOWN, imq_setup, numqueues);
932 +       if (!dev)
933 +               return -ENOMEM;
934 +
935 +       ret = dev_alloc_name(dev, dev->name);
936 +       if (ret < 0)
937 +               goto fail;
938 +
939 +       dev->rtnl_link_ops = &imq_link_ops;
940 +       ret = register_netdevice(dev);
941 +       if (ret < 0)
942 +               goto fail;
943 +
944 +       return 0;
945 +fail:
946 +       free_netdev(dev);
947 +       return ret;
948 +}
949 +
950 +static int __init imq_init_devs(void)
951 +{
952 +       int err, i;
953 +
954 +       if (numdevs < 1 || numdevs > IMQ_MAX_DEVS) {
955 +               pr_err("IMQ: numdevs has to be betweed 1 and %u\n",
956 +                      IMQ_MAX_DEVS);
957 +               return -EINVAL;
958 +       }
959 +
960 +       if (numqueues < 1 || numqueues > IMQ_MAX_QUEUES) {
961 +               pr_err("IMQ: numqueues has to be betweed 1 and %u\n",
962 +                      IMQ_MAX_QUEUES);
963 +               return -EINVAL;
964 +       }
965 +
966 +       get_random_bytes(&imq_hashrnd, sizeof(imq_hashrnd));
967 +
968 +       rtnl_lock();
969 +       err = __rtnl_link_register(&imq_link_ops);
970 +
971 +       for (i = 0; i < numdevs && !err; i++)
972 +               err = imq_init_one(i);
973 +
974 +       if (err) {
975 +               __rtnl_link_unregister(&imq_link_ops);
976 +               memset(imq_devs_cache, 0, sizeof(imq_devs_cache));
977 +       }
978 +       rtnl_unlock();
979 +
980 +       return err;
981 +}
982 +
983 +static int __init imq_init_module(void)
984 +{
985 +       int err;
986 +
987 +#if defined(CONFIG_IMQ_NUM_DEVS)
988 +       BUILD_BUG_ON(CONFIG_IMQ_NUM_DEVS > 16);
989 +       BUILD_BUG_ON(CONFIG_IMQ_NUM_DEVS < 2);
990 +       BUILD_BUG_ON(CONFIG_IMQ_NUM_DEVS - 1 > IMQ_F_IFMASK);
991 +#endif
992 +
993 +       err = imq_init_devs();
994 +       if (err) {
995 +               pr_err("IMQ: Error trying imq_init_devs(net)\n");
996 +               return err;
997 +       }
998 +
999 +       err = imq_init_hooks();
1000 +       if (err) {
1001 +               pr_err(KERN_ERR "IMQ: Error trying imq_init_hooks()\n");
1002 +               rtnl_link_unregister(&imq_link_ops);
1003 +               memset(imq_devs_cache, 0, sizeof(imq_devs_cache));
1004 +               return err;
1005 +       }
1006 +
1007 +       pr_info("IMQ driver loaded successfully. (numdevs = %d, numqueues = %d, imq_dev_accurate_stats = %d)\n",
1008 +               numdevs, numqueues, imq_dev_accurate_stats);
1009 +
1010 +#if defined(CONFIG_IMQ_BEHAVIOR_BA) || defined(CONFIG_IMQ_BEHAVIOR_BB)
1011 +       pr_info("\tHooking IMQ before NAT on PREROUTING.\n");
1012 +#else
1013 +       pr_info("\tHooking IMQ after NAT on PREROUTING.\n");
1014 +#endif
1015 +#if defined(CONFIG_IMQ_BEHAVIOR_AB) || defined(CONFIG_IMQ_BEHAVIOR_BB)
1016 +       pr_info("\tHooking IMQ before NAT on POSTROUTING.\n");
1017 +#else
1018 +       pr_info("\tHooking IMQ after NAT on POSTROUTING.\n");
1019 +#endif
1020 +
1021 +       return 0;
1022 +}
1023 +
1024 +static void __exit imq_unhook(void)
1025 +{
1026 +       nf_unregister_hooks(imq_ops, ARRAY_SIZE(imq_ops));
1027 +       nf_unregister_queue_imq_handler();
1028 +}
1029 +
1030 +static void __exit imq_cleanup_devs(void)
1031 +{
1032 +       rtnl_link_unregister(&imq_link_ops);
1033 +       memset(imq_devs_cache, 0, sizeof(imq_devs_cache));
1034 +}
1035 +
1036 +static void __exit imq_exit_module(void)
1037 +{
1038 +       imq_unhook();
1039 +       imq_cleanup_devs();
1040 +       pr_info("IMQ driver unloaded successfully.\n");
1041 +}
1042 +
1043 +module_init(imq_init_module);
1044 +module_exit(imq_exit_module);
1045 +
1046 +module_param(numdevs, int, 0);
1047 +module_param(numqueues, int, 0);
1048 +module_param(imq_dev_accurate_stats, int, 0);
1049 +MODULE_PARM_DESC(numdevs, "number of IMQ devices (how many imq* devices will be created)");
1050 +MODULE_PARM_DESC(numqueues, "number of queues per IMQ device");
1051 +MODULE_PARM_DESC(imq_dev_accurate_stats, "Notify if need the accurate imq device stats");
1052 +
1053 +MODULE_AUTHOR("http://https://github.com/imq/linuximq");
1054 +MODULE_DESCRIPTION("Pseudo-driver for the intermediate queue device. See https://github.com/imq/linuximq/wiki for more information.");
1055 +MODULE_LICENSE("GPL");
1056 +MODULE_ALIAS_RTNL_LINK("imq");
1057 diff --git a/include/linux/imq.h b/include/linux/imq.h
1058 new file mode 100644
1059 index 0000000..1babb09
1060 --- /dev/null
1061 +++ b/include/linux/imq.h
1062 @@ -0,0 +1,13 @@
1063 +#ifndef _IMQ_H
1064 +#define _IMQ_H
1065 +
1066 +/* IFMASK (16 device indexes, 0 to 15) and flag(s) fit in 5 bits */
1067 +#define IMQ_F_BITS     5
1068 +
1069 +#define IMQ_F_IFMASK   0x0f
1070 +#define IMQ_F_ENQUEUE  0x10
1071 +
1072 +#define IMQ_MAX_DEVS   (IMQ_F_IFMASK + 1)
1073 +
1074 +#endif /* _IMQ_H */
1075 +
1076 diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
1077 index 2d15e38..ebbecce 100644
1078 --- a/include/linux/netdevice.h
1079 +++ b/include/linux/netdevice.h
1080 @@ -3330,6 +3330,19 @@ static inline void netif_tx_unlock_bh(struct net_device *dev)
1081         }                                               \
1082  }
1083  
1084 +#define HARD_TX_LOCK_BH(dev, txq) {           \
1085 +    if ((dev->features & NETIF_F_LLTX) == 0) {  \
1086 +        __netif_tx_lock_bh(txq);      \
1087 +    }                       \
1088 +}
1089 +
1090 +#define HARD_TX_UNLOCK_BH(dev, txq) {          \
1091 +    if ((dev->features & NETIF_F_LLTX) == 0) {  \
1092 +        __netif_tx_unlock_bh(txq);         \
1093 +    }                       \
1094 +}
1095 +
1096 +
1097  static inline void netif_tx_disable(struct net_device *dev)
1098  {
1099         unsigned int i;
1100 diff --git a/include/linux/netfilter/xt_IMQ.h b/include/linux/netfilter/xt_IMQ.h
1101 new file mode 100644
1102 index 0000000..9b07230
1103 --- /dev/null
1104 +++ b/include/linux/netfilter/xt_IMQ.h
1105 @@ -0,0 +1,9 @@
1106 +#ifndef _XT_IMQ_H
1107 +#define _XT_IMQ_H
1108 +
1109 +struct xt_imq_info {
1110 +       unsigned int todev;     /* target imq device */
1111 +};
1112 +
1113 +#endif /* _XT_IMQ_H */
1114 +
1115 diff --git a/include/linux/netfilter_ipv4/ipt_IMQ.h b/include/linux/netfilter_ipv4/ipt_IMQ.h
1116 new file mode 100644
1117 index 0000000..7af320f
1118 --- /dev/null
1119 +++ b/include/linux/netfilter_ipv4/ipt_IMQ.h
1120 @@ -0,0 +1,10 @@
1121 +#ifndef _IPT_IMQ_H
1122 +#define _IPT_IMQ_H
1123 +
1124 +/* Backwards compatibility for old userspace */
1125 +#include <linux/netfilter/xt_IMQ.h>
1126 +
1127 +#define ipt_imq_info xt_imq_info
1128 +
1129 +#endif /* _IPT_IMQ_H */
1130 +
1131 diff --git a/include/linux/netfilter_ipv6/ip6t_IMQ.h b/include/linux/netfilter_ipv6/ip6t_IMQ.h
1132 new file mode 100644
1133 index 0000000..198ac01
1134 --- /dev/null
1135 +++ b/include/linux/netfilter_ipv6/ip6t_IMQ.h
1136 @@ -0,0 +1,10 @@
1137 +#ifndef _IP6T_IMQ_H
1138 +#define _IP6T_IMQ_H
1139 +
1140 +/* Backwards compatibility for old userspace */
1141 +#include <linux/netfilter/xt_IMQ.h>
1142 +
1143 +#define ip6t_imq_info xt_imq_info
1144 +
1145 +#endif /* _IP6T_IMQ_H */
1146 +
1147 diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h
1148 index 2b0a30a..f8e727c 100644
1149 --- a/include/linux/skbuff.h
1150 +++ b/include/linux/skbuff.h
1151 @@ -38,6 +38,10 @@
1152  #include <linux/splice.h>
1153  #include <linux/in6.h>
1154  #include <net/flow.h>
1155 +#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
1156 +#include <linux/imq.h>
1157 +#endif
1158 +
1159  
1160  /* A. Checksumming of received packets by device.
1161   *
1162 @@ -557,6 +561,9 @@ struct sk_buff {
1163          * first. This is owned by whoever has the skb queued ATM.
1164          */
1165         char                    cb[48] __aligned(8);
1166 +#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
1167 +       void                    *cb_next;
1168 +#endif
1169  
1170         unsigned long           _skb_refdst;
1171         void                    (*destructor)(struct sk_buff *skb);
1172 @@ -566,6 +573,9 @@ struct sk_buff {
1173  #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
1174         struct nf_conntrack     *nfct;
1175  #endif
1176 +#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
1177 +       struct nf_queue_entry   *nf_queue_entry;
1178 +#endif
1179  #if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
1180         struct nf_bridge_info   *nf_bridge;
1181  #endif
1182 @@ -633,6 +643,9 @@ struct sk_buff {
1183         __u8                    inner_protocol_type:1;
1184         __u8                    remcsum_offload:1;
1185         /* 3 or 5 bit hole */
1186 +       #if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
1187 +       __u8                    imq_flags:IMQ_F_BITS;
1188 +       #endif
1189  
1190  #ifdef CONFIG_NET_SCHED
1191         __u16                   tc_index;       /* traffic control index */
1192 @@ -789,6 +802,12 @@ void kfree_skb_list(struct sk_buff *segs);
1193  void skb_tx_error(struct sk_buff *skb);
1194  void consume_skb(struct sk_buff *skb);
1195  void  __kfree_skb(struct sk_buff *skb);
1196 +
1197 +#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
1198 +int skb_save_cb(struct sk_buff *skb);
1199 +int skb_restore_cb(struct sk_buff *skb);
1200 +#endif
1201 +
1202  extern struct kmem_cache *skbuff_head_cache;
1203  
1204  void kfree_skb_partial(struct sk_buff *skb, bool head_stolen);
1205 @@ -3335,6 +3354,10 @@ static inline void __nf_copy(struct sk_buff *dst, const struct sk_buff *src,
1206         if (copy)
1207                 dst->nfctinfo = src->nfctinfo;
1208  #endif
1209 +#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
1210 +       dst->imq_flags = src->imq_flags;
1211 +       dst->nf_queue_entry = src->nf_queue_entry;
1212 +#endif
1213  #if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
1214         dst->nf_bridge  = src->nf_bridge;
1215         nf_bridge_get(src->nf_bridge);
1216 diff --git a/include/net/netfilter/nf_queue.h b/include/net/netfilter/nf_queue.h
1217 index e863585..40904cb 100644
1218 --- a/include/net/netfilter/nf_queue.h
1219 +++ b/include/net/netfilter/nf_queue.h
1220 @@ -31,6 +31,12 @@ struct nf_queue_handler {
1221  void nf_register_queue_handler(const struct nf_queue_handler *qh);
1222  void nf_unregister_queue_handler(void);
1223  void nf_reinject(struct nf_queue_entry *entry, unsigned int verdict);
1224 +void nf_queue_entry_release_refs(struct nf_queue_entry *entry);
1225 +
1226 +#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
1227 +void nf_register_queue_imq_handler(const struct nf_queue_handler *qh);
1228 +void nf_unregister_queue_imq_handler(void);
1229 +#endif
1230  
1231  bool nf_queue_entry_get_refs(struct nf_queue_entry *entry);
1232  void nf_queue_entry_release_refs(struct nf_queue_entry *entry);
1233 diff --git a/include/net/pkt_sched.h b/include/net/pkt_sched.h
1234 index 401038d..4668849 100644
1235 --- a/include/net/pkt_sched.h
1236 +++ b/include/net/pkt_sched.h
1237 @@ -104,6 +104,8 @@ int sch_direct_xmit(struct sk_buff *skb, struct Qdisc *q,
1238  
1239  void __qdisc_run(struct Qdisc *q);
1240  
1241 +struct sk_buff *qdisc_dequeue_skb(struct Qdisc *q, bool *validate);
1242 +
1243  static inline void qdisc_run(struct Qdisc *q)
1244  {
1245         if (qdisc_run_begin(q))
1246 diff --git a/include/net/sch_generic.h b/include/net/sch_generic.h
1247 index 444faa8..e652d8d 100644
1248 --- a/include/net/sch_generic.h
1249 +++ b/include/net/sch_generic.h
1250 @@ -502,6 +502,12 @@ static inline int qdisc_enqueue(struct sk_buff *skb, struct Qdisc *sch)
1251         return sch->enqueue(skb, sch);
1252  }
1253  
1254 +static inline int qdisc_enqueue_root(struct sk_buff *skb, struct Qdisc *sch)
1255 +{
1256 +    qdisc_skb_cb(skb)->pkt_len = skb->len;
1257 +    return qdisc_enqueue(skb, sch) & NET_XMIT_MASK;
1258 +}
1259 +
1260  static inline bool qdisc_is_percpu_stats(const struct Qdisc *q)
1261  {
1262         return q->flags & TCQ_F_CPUSTATS;
1263 diff --git a/include/uapi/linux/netfilter.h b/include/uapi/linux/netfilter.h
1264 index d93f949..23fb6d1 100644
1265 --- a/include/uapi/linux/netfilter.h
1266 +++ b/include/uapi/linux/netfilter.h
1267 @@ -14,7 +14,8 @@
1268  #define NF_QUEUE 3
1269  #define NF_REPEAT 4
1270  #define NF_STOP 5
1271 -#define NF_MAX_VERDICT NF_STOP
1272 +#define NF_IMQ_QUEUE 6
1273 +#define NF_MAX_VERDICT NF_IMQ_QUEUE
1274  
1275  /* we overload the higher bits for encoding auxiliary data such as the queue
1276   * number or errno values. Not nice, but better than additional function
1277 diff --git a/net/core/dev.c b/net/core/dev.c
1278 index 6bb6470..13cda63 100644
1279 --- a/net/core/dev.c
1280 +++ b/net/core/dev.c
1281 @@ -136,6 +136,9 @@
1282  #include <linux/errqueue.h>
1283  #include <linux/hrtimer.h>
1284  #include <linux/netfilter_ingress.h>
1285 +#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
1286 +#include <linux/imq.h>
1287 +#endif
1288  
1289  #include "net-sysfs.h"
1290  
1291 @@ -2675,7 +2678,12 @@ static int xmit_one(struct sk_buff *skb, struct net_device *dev,
1292         unsigned int len;
1293         int rc;
1294  
1295 +#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
1296 +       if ((!list_empty(&ptype_all) || !list_empty(&dev->ptype_all)) &&
1297 +               !(skb->imq_flags & IMQ_F_ENQUEUE))
1298 +#else
1299         if (!list_empty(&ptype_all) || !list_empty(&dev->ptype_all))
1300 +#endif
1301                 dev_queue_xmit_nit(skb, dev);
1302  
1303         len = skb->len;
1304 @@ -2713,6 +2721,7 @@ out:
1305         *ret = rc;
1306         return skb;
1307  }
1308 +EXPORT_SYMBOL(dev_hard_start_xmit);
1309  
1310  static struct sk_buff *validate_xmit_vlan(struct sk_buff *skb,
1311                                           netdev_features_t features)
1312 @@ -2801,6 +2810,7 @@ struct sk_buff *validate_xmit_skb_list(struct sk_buff *skb, struct net_device *d
1313         }
1314         return head;
1315  }
1316 +EXPORT_SYMBOL(validate_xmit_skb_list);
1317  
1318  static void qdisc_pkt_len_init(struct sk_buff *skb)
1319  {
1320 diff --git a/net/core/skbuff.c b/net/core/skbuff.c
1321 index dad4dd3..9c71959 100644
1322 --- a/net/core/skbuff.c
1323 +++ b/net/core/skbuff.c
1324 @@ -79,6 +79,87 @@
1325  
1326  struct kmem_cache *skbuff_head_cache __read_mostly;
1327  static struct kmem_cache *skbuff_fclone_cache __read_mostly;
1328 +#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
1329 +static struct kmem_cache *skbuff_cb_store_cache __read_mostly;
1330 +#endif
1331 +
1332 +#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
1333 +/* Control buffer save/restore for IMQ devices */
1334 +struct skb_cb_table {
1335 +       char                    cb[48] __aligned(8);
1336 +       void                    *cb_next;
1337 +       atomic_t                refcnt;
1338 +};
1339 +
1340 +static DEFINE_SPINLOCK(skb_cb_store_lock);
1341 +
1342 +int skb_save_cb(struct sk_buff *skb)
1343 +{
1344 +       struct skb_cb_table *next;
1345 +
1346 +       next = kmem_cache_alloc(skbuff_cb_store_cache, GFP_ATOMIC);
1347 +       if (!next)
1348 +               return -ENOMEM;
1349 +
1350 +       BUILD_BUG_ON(sizeof(skb->cb) != sizeof(next->cb));
1351 +
1352 +       memcpy(next->cb, skb->cb, sizeof(skb->cb));
1353 +       next->cb_next = skb->cb_next;
1354 +
1355 +       atomic_set(&next->refcnt, 1);
1356 +
1357 +       skb->cb_next = next;
1358 +       return 0;
1359 +}
1360 +EXPORT_SYMBOL(skb_save_cb);
1361 +
1362 +int skb_restore_cb(struct sk_buff *skb)
1363 +{
1364 +       struct skb_cb_table *next;
1365 +
1366 +       if (!skb->cb_next)
1367 +               return 0;
1368 +
1369 +       next = skb->cb_next;
1370 +
1371 +       BUILD_BUG_ON(sizeof(skb->cb) != sizeof(next->cb));
1372 +
1373 +       memcpy(skb->cb, next->cb, sizeof(skb->cb));
1374 +       skb->cb_next = next->cb_next;
1375 +
1376 +       spin_lock(&skb_cb_store_lock);
1377 +
1378 +       if (atomic_dec_and_test(&next->refcnt))
1379 +               kmem_cache_free(skbuff_cb_store_cache, next);
1380 +
1381 +       spin_unlock(&skb_cb_store_lock);
1382 +
1383 +       return 0;
1384 +}
1385 +EXPORT_SYMBOL(skb_restore_cb);
1386 +
1387 +static void skb_copy_stored_cb(struct sk_buff *   , const struct sk_buff *     ) __attribute__ ((unused));
1388 +static void skb_copy_stored_cb(struct sk_buff *new, const struct sk_buff *__old)
1389 +{
1390 +       struct skb_cb_table *next;
1391 +       struct sk_buff *old;
1392 +
1393 +       if (!__old->cb_next) {
1394 +               new->cb_next = NULL;
1395 +               return;
1396 +       }
1397 +
1398 +       spin_lock(&skb_cb_store_lock);
1399 +
1400 +       old = (struct sk_buff *)__old;
1401 +
1402 +       next = old->cb_next;
1403 +       atomic_inc(&next->refcnt);
1404 +       new->cb_next = next;
1405 +
1406 +       spin_unlock(&skb_cb_store_lock);
1407 +}
1408 +#endif
1409  
1410  /**
1411   *     skb_panic - private function for out-of-line support
1412 @@ -643,6 +724,28 @@ static void skb_release_head_state(struct sk_buff *skb)
1413                 WARN_ON(in_irq());
1414                 skb->destructor(skb);
1415         }
1416 +#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
1417 +       /*
1418 +        * This should not happen. When it does, avoid memleak by restoring
1419 +        * the chain of cb-backups.
1420 +        */
1421 +       while (skb->cb_next != NULL) {
1422 +               if (net_ratelimit())
1423 +                       pr_warn("IMQ: kfree_skb: skb->cb_next: %08x\n",
1424 +                               (unsigned int)(uintptr_t)skb->cb_next);
1425 +
1426 +               skb_restore_cb(skb);
1427 +       }
1428 +       /*
1429 +        * This should not happen either, nf_queue_entry is nullified in
1430 +        * imq_dev_xmit(). If we have non-NULL nf_queue_entry then we are
1431 +        * leaking entry pointers, maybe memory. We don't know if this is
1432 +        * pointer to already freed memory, or should this be freed.
1433 +        * If this happens we need to add refcounting, etc for nf_queue_entry.
1434 +        */
1435 +       if (skb->nf_queue_entry && net_ratelimit())
1436 +               pr_warn("%s\n", "IMQ: kfree_skb: skb->nf_queue_entry != NULL");
1437 +#endif
1438  #if IS_ENABLED(CONFIG_NF_CONNTRACK)
1439         nf_conntrack_put(skb->nfct);
1440  #endif
1441 @@ -765,6 +868,10 @@ static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
1442         new->sp                 = secpath_get(old->sp);
1443  #endif
1444         __nf_copy(new, old, false);
1445 +#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
1446 +       new->cb_next = NULL;
1447 +       /*skb_copy_stored_cb(new, old);*/
1448 +#endif
1449  
1450         /* Note : this field could be in headers_start/headers_end section
1451          * It is not yet because we do not want to have a 16 bit hole
1452 @@ -3324,6 +3431,13 @@ void __init skb_init(void)
1453                                                 0,
1454                                                 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
1455                                                 NULL);
1456 +#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
1457 +       skbuff_cb_store_cache = kmem_cache_create("skbuff_cb_store_cache",
1458 +                                                 sizeof(struct skb_cb_table),
1459 +                                                 0,
1460 +                                                 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
1461 +                                                 NULL);
1462 +#endif
1463  }
1464  
1465  /**
1466 diff --git a/net/ipv6/ip6_output.c b/net/ipv6/ip6_output.c
1467 index 92b1aa3..e5a5dd5 100644
1468 --- a/net/ipv6/ip6_output.c
1469 +++ b/net/ipv6/ip6_output.c
1470 @@ -64,9 +64,6 @@ static int ip6_finish_output2(struct sock *sk, struct sk_buff *skb)
1471         struct in6_addr *nexthop;
1472         int ret;
1473  
1474 -       skb->protocol = htons(ETH_P_IPV6);
1475 -       skb->dev = dev;
1476 -
1477         if (ipv6_addr_is_multicast(&ipv6_hdr(skb)->daddr)) {
1478                 struct inet6_dev *idev = ip6_dst_idev(skb_dst(skb));
1479  
1480 @@ -143,6 +140,13 @@ int ip6_output(struct sock *sk, struct sk_buff *skb)
1481                 return 0;
1482         }
1483  
1484 +       /*
1485 +       * IMQ-patch: moved setting skb->dev and skb->protocol from
1486 +       * ip6_finish_output2 to fix crashing at netif_skb_features().
1487 +       */
1488 +       skb->protocol = htons(ETH_P_IPV6);
1489 +       skb->dev = dev;
1490 +
1491         return NF_HOOK_COND(NFPROTO_IPV6, NF_INET_POST_ROUTING, sk, skb,
1492                             NULL, dev,
1493                             ip6_finish_output,
1494 diff --git a/net/netfilter/Kconfig b/net/netfilter/Kconfig
1495 index 3e1b4ab..8721e48 100644
1496 --- a/net/netfilter/Kconfig
1497 +++ b/net/netfilter/Kconfig
1498 @@ -784,6 +784,18 @@ config NETFILTER_XT_TARGET_LOG
1499  
1500           To compile it as a module, choose M here.  If unsure, say N.
1501  
1502 +config NETFILTER_XT_TARGET_IMQ
1503 +        tristate '"IMQ" target support'
1504 +       depends on NETFILTER_XTABLES
1505 +       depends on IP_NF_MANGLE || IP6_NF_MANGLE
1506 +       select IMQ
1507 +       default m if NETFILTER_ADVANCED=n
1508 +        help
1509 +          This option adds a `IMQ' target which is used to specify if and
1510 +          to which imq device packets should get enqueued/dequeued.
1511 +
1512 +          To compile it as a module, choose M here.  If unsure, say N.
1513 +
1514  config NETFILTER_XT_TARGET_MARK
1515         tristate '"MARK" target support'
1516         depends on NETFILTER_ADVANCED
1517 diff --git a/net/netfilter/Makefile b/net/netfilter/Makefile
1518 index 70d026d..5469b14 100644
1519 --- a/net/netfilter/Makefile
1520 +++ b/net/netfilter/Makefile
1521 @@ -110,6 +110,7 @@ obj-$(CONFIG_NETFILTER_XT_TARGET_CT) += xt_CT.o
1522  obj-$(CONFIG_NETFILTER_XT_TARGET_DSCP) += xt_DSCP.o
1523  obj-$(CONFIG_NETFILTER_XT_TARGET_HL) += xt_HL.o
1524  obj-$(CONFIG_NETFILTER_XT_TARGET_HMARK) += xt_HMARK.o
1525 +obj-$(CONFIG_NETFILTER_XT_TARGET_IMQ) += xt_IMQ.o
1526  obj-$(CONFIG_NETFILTER_XT_TARGET_LED) += xt_LED.o
1527  obj-$(CONFIG_NETFILTER_XT_TARGET_LOG) += xt_LOG.o
1528  obj-$(CONFIG_NETFILTER_XT_TARGET_NETMAP) += xt_NETMAP.o
1529 diff --git a/net/netfilter/core.c b/net/netfilter/core.c
1530 index 8e47f81..fa4ddd3 100644
1531 --- a/net/netfilter/core.c
1532 +++ b/net/netfilter/core.c
1533 @@ -309,9 +309,11 @@ next_hook:
1534                 ret = NF_DROP_GETERR(verdict);
1535                 if (ret == 0)
1536                         ret = -EPERM;
1537 -       } else if ((verdict & NF_VERDICT_MASK) == NF_QUEUE) {
1538 +       } else if ((verdict & NF_VERDICT_MASK) == NF_QUEUE ||
1539 +               (verdict & NF_VERDICT_MASK) == NF_IMQ_QUEUE) {
1540                 int err = nf_queue(skb, elem, state,
1541 -                                  verdict >> NF_VERDICT_QBITS);
1542 +                                  verdict >> NF_VERDICT_QBITS,
1543 +                                 verdict & NF_VERDICT_MASK);
1544                 if (err < 0) {
1545                         if (err == -ECANCELED)
1546                                 goto next_hook;
1547 diff --git a/net/netfilter/nf_internals.h b/net/netfilter/nf_internals.h
1548 index 0655225..25d4141 100644
1549 --- a/net/netfilter/nf_internals.h
1550 +++ b/net/netfilter/nf_internals.h
1551 @@ -18,7 +18,7 @@ unsigned int nf_iterate(struct list_head *head, struct sk_buff *skb,
1552  
1553  /* nf_queue.c */
1554  int nf_queue(struct sk_buff *skb, struct nf_hook_ops *elem,
1555 -            struct nf_hook_state *state, unsigned int queuenum);
1556 +            struct nf_hook_state *state, unsigned int queuenum, unsigned int queuetype);
1557  void nf_queue_nf_hook_drop(struct net *net, struct nf_hook_ops *ops);
1558  int __init netfilter_queue_init(void);
1559  
1560 diff --git a/net/netfilter/nf_queue.c b/net/netfilter/nf_queue.c
1561 index 96777f9..c42d671 100644
1562 --- a/net/netfilter/nf_queue.c
1563 +++ b/net/netfilter/nf_queue.c
1564 @@ -28,6 +28,23 @@
1565   */
1566  static const struct nf_queue_handler __rcu *queue_handler __read_mostly;
1567  
1568 +#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
1569 +static const struct nf_queue_handler __rcu *queue_imq_handler __read_mostly;
1570 +
1571 +void nf_register_queue_imq_handler(const struct nf_queue_handler *qh)
1572 +{
1573 +       rcu_assign_pointer(queue_imq_handler, qh);
1574 +}
1575 +EXPORT_SYMBOL_GPL(nf_register_queue_imq_handler);
1576 +
1577 +void nf_unregister_queue_imq_handler(void)
1578 +{
1579 +       RCU_INIT_POINTER(queue_imq_handler, NULL);
1580 +       synchronize_rcu();
1581 +}
1582 +EXPORT_SYMBOL_GPL(nf_unregister_queue_imq_handler);
1583 +#endif
1584 +
1585  /* return EBUSY when somebody else is registered, return EEXIST if the
1586   * same handler is registered, return 0 in case of success. */
1587  void nf_register_queue_handler(const struct nf_queue_handler *qh)
1588 @@ -123,7 +140,8 @@ void nf_queue_nf_hook_drop(struct net *net, struct nf_hook_ops *ops)
1589  int nf_queue(struct sk_buff *skb,
1590              struct nf_hook_ops *elem,
1591              struct nf_hook_state *state,
1592 -            unsigned int queuenum)
1593 +            unsigned int queuenum,
1594 +                unsigned int queuetype)
1595  {
1596         int status = -ENOENT;
1597         struct nf_queue_entry *entry = NULL;
1598 @@ -133,7 +151,17 @@ int nf_queue(struct sk_buff *skb,
1599         /* QUEUE == DROP if no one is waiting, to be safe. */
1600         rcu_read_lock();
1601  
1602 -       qh = rcu_dereference(queue_handler);
1603 +       if (queuetype == NF_IMQ_QUEUE) {
1604 +#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
1605 +               qh = rcu_dereference(queue_imq_handler);
1606 +#else
1607 +               BUG();
1608 +               goto err_unlock;
1609 +#endif
1610 +       } else {
1611 +               qh = rcu_dereference(queue_handler);
1612 +       }
1613 +
1614         if (!qh) {
1615                 status = -ESRCH;
1616                 goto err_unlock;
1617 @@ -219,8 +247,10 @@ void nf_reinject(struct nf_queue_entry *entry, unsigned int verdict)
1618                 local_bh_enable();
1619                 break;
1620         case NF_QUEUE:
1621 +       case NF_IMQ_QUEUE:
1622                 err = nf_queue(skb, elem, &entry->state,
1623 -                              verdict >> NF_VERDICT_QBITS);
1624 +                              verdict >> NF_VERDICT_QBITS,
1625 +                                  verdict & NF_VERDICT_MASK);
1626                 if (err < 0) {
1627                         if (err == -ECANCELED)
1628                                 goto next_hook;
1629 diff --git a/net/netfilter/xt_IMQ.c b/net/netfilter/xt_IMQ.c
1630 new file mode 100644
1631 index 0000000..86d7b84
1632 --- /dev/null
1633 +++ b/net/netfilter/xt_IMQ.c
1634 @@ -0,0 +1,72 @@
1635 +/*
1636 + * This target marks packets to be enqueued to an imq device
1637 + */
1638 +#include <linux/module.h>
1639 +#include <linux/skbuff.h>
1640 +#include <linux/netfilter/x_tables.h>
1641 +#include <linux/netfilter/xt_IMQ.h>
1642 +#include <linux/imq.h>
1643 +
1644 +static unsigned int imq_target(struct sk_buff *pskb,
1645 +                               const struct xt_action_param *par)
1646 +{
1647 +       const struct xt_imq_info *mr = par->targinfo;
1648 +
1649 +       pskb->imq_flags = (mr->todev & IMQ_F_IFMASK) | IMQ_F_ENQUEUE;
1650 +
1651 +       return XT_CONTINUE;
1652 +}
1653 +
1654 +static int imq_checkentry(const struct xt_tgchk_param *par)
1655 +{
1656 +       struct xt_imq_info *mr = par->targinfo;
1657 +
1658 +       if (mr->todev > IMQ_MAX_DEVS - 1) {
1659 +               pr_warn("IMQ: invalid device specified, highest is %u\n",
1660 +                       IMQ_MAX_DEVS - 1);
1661 +               return -EINVAL;
1662 +       }
1663 +
1664 +       return 0;
1665 +}
1666 +
1667 +static struct xt_target xt_imq_reg[] __read_mostly = {
1668 +       {
1669 +               .name           = "IMQ",
1670 +               .family         = AF_INET,
1671 +               .checkentry     = imq_checkentry,
1672 +               .target         = imq_target,
1673 +               .targetsize     = sizeof(struct xt_imq_info),
1674 +               .table          = "mangle",
1675 +               .me             = THIS_MODULE
1676 +       },
1677 +       {
1678 +               .name           = "IMQ",
1679 +               .family         = AF_INET6,
1680 +               .checkentry     = imq_checkentry,
1681 +               .target         = imq_target,
1682 +               .targetsize     = sizeof(struct xt_imq_info),
1683 +               .table          = "mangle",
1684 +               .me             = THIS_MODULE
1685 +       },
1686 +};
1687 +
1688 +static int __init imq_init(void)
1689 +{
1690 +       return xt_register_targets(xt_imq_reg, ARRAY_SIZE(xt_imq_reg));
1691 +}
1692 +
1693 +static void __exit imq_fini(void)
1694 +{
1695 +       xt_unregister_targets(xt_imq_reg, ARRAY_SIZE(xt_imq_reg));
1696 +}
1697 +
1698 +module_init(imq_init);
1699 +module_exit(imq_fini);
1700 +
1701 +MODULE_AUTHOR("http://https://github.com/imq/linuximq");
1702 +MODULE_DESCRIPTION("Pseudo-driver for the intermediate queue device. See https://github.com/imq/linuximq/wiki for more information.");
1703 +MODULE_LICENSE("GPL");
1704 +MODULE_ALIAS("ipt_IMQ");
1705 +MODULE_ALIAS("ip6t_IMQ");
1706 +
1707 diff --git a/net/sched/sch_generic.c b/net/sched/sch_generic.c
1708 index cb5d4ad..0d818be 100644
1709 --- a/net/sched/sch_generic.c
1710 +++ b/net/sched/sch_generic.c
1711 @@ -108,6 +108,14 @@ static struct sk_buff *dequeue_skb(struct Qdisc *q, bool *validate,
1712         return skb;
1713  }
1714  
1715 +struct sk_buff *qdisc_dequeue_skb(struct Qdisc *q, bool *validate)
1716 +{
1717 +       int packets;
1718 +
1719 +       return dequeue_skb(q, validate, &packets);
1720 +}
1721 +EXPORT_SYMBOL(qdisc_dequeue_skb);
1722 +
1723  static inline int handle_dev_cpu_collision(struct sk_buff *skb,
1724                                            struct netdev_queue *dev_queue,
1725                                            struct Qdisc *q)
This page took 0.167704 seconds and 3 git commands to generate.