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