]> git.pld-linux.org Git - packages/kernel.git/blame - kernel-imq.patch
- up to 4.7.6
[packages/kernel.git] / kernel-imq.patch
CommitLineData
0776672e
AM
1diff -Naupr linux-4.7_orig/drivers/net/imq.c linux-4.7/drivers/net/imq.c
2--- linux-4.7_orig/drivers/net/imq.c 1970-01-01 07:00:00.000000000 +0700
3+++ linux-4.7/drivers/net/imq.c 2016-07-26 20:58:55.635901659 +0700
deb242c8 4@@ -0,0 +1,903 @@
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
JR
555+ struct Qdisc *q;
556+ struct netdev_queue *txq;
557+ spinlock_t *root_lock;
558+ int users;
559+ int retval = -EINVAL;
560+ unsigned int orig_queue_index;
561+
2380c486
JR
562+ dev->last_rx = jiffies;
563+
7f07242b 564+ skb = entry->skb;
565+ skb_orig = NULL;
566+
567+ /* skb has owner? => make clone */
568+ if (unlikely(skb->destructor)) {
569+ skb_orig = skb;
570+ skb = skb_clone(skb, GFP_ATOMIC);
f6396b7e 571+ if (unlikely(!skb)) {
7f07242b 572+ retval = -ENOMEM;
573+ goto out;
574+ }
e2d28598 575+ skb->cb_next = NULL;
7f07242b 576+ entry->skb = skb;
2380c486 577+ }
2380c486 578+
7f07242b 579+ dev->stats.rx_bytes += skb->len;
2380c486
JR
580+ dev->stats.rx_packets++;
581+
a168f21d
AM
582+ if (!skb->dev) {
583+ /* skb->dev == NULL causes problems, try the find cause. */
584+ if (net_ratelimit()) {
585+ dev_warn(&dev->dev,
586+ "received packet with skb->dev == NULL\n");
587+ dump_stack();
588+ }
589+
590+ skb->dev = dev;
591+ }
592+
f6396b7e
AM
593+ /* Disables softirqs for lock below */
594+ rcu_read_lock_bh();
595+
596+ /* Multi-queue selection */
a168f21d 597+ orig_queue_index = skb_get_queue_mapping(skb);
f6396b7e 598+ txq = imq_select_queue(dev, skb);
2380c486 599+
7f07242b 600+ q = rcu_dereference(txq->qdisc);
601+ if (unlikely(!q->enqueue))
602+ goto packet_not_eaten_by_imq_dev;
2380c486 603+
c2c0f25c 604+ skb->nf_queue_entry = entry;
f6396b7e
AM
605+ root_lock = qdisc_lock(q);
606+ spin_lock(root_lock);
7f07242b 607+
608+ users = atomic_read(&skb->users);
609+
610+ skb_shared = skb_get(skb); /* increase reference count by one */
514e5dae
AM
611+
612+ /* backup skb->cb, as qdisc layer will overwrite it */
613+ skb_save_cb(skb_shared);
7f07242b 614+ qdisc_enqueue_root(skb_shared, q); /* might kfree_skb */
7f07242b 615+ if (likely(atomic_read(&skb_shared->users) == users + 1)) {
fa14fc87
JR
616+ bool validate;
617+
7f07242b 618+ kfree_skb(skb_shared); /* decrease reference count by one */
619+
620+ skb->destructor = &imq_skb_destructor;
621+
fa14fc87
JR
622+ skb_popd = qdisc_dequeue_skb(q, &validate);
623+
7f07242b 624+ /* cloned? */
f6396b7e 625+ if (unlikely(skb_orig))
7f07242b 626+ kfree_skb(skb_orig); /* free original */
627+
f6396b7e 628+ spin_unlock(root_lock);
7f07242b 629+
fa14fc87 630+#if 0
7f07242b 631+ /* schedule qdisc dequeue */
632+ __netif_schedule(q);
fa14fc87
JR
633+#else
634+ if (likely(skb_popd)) {
635+ /* Note that we validate skb (GSO, checksum, ...) outside of locks */
636+ if (validate)
637+ skb_popd = validate_xmit_skb_list(skb_popd, dev);
638+
639+ if (skb_popd) {
640+ int dummy_ret;
641+ int cpu = smp_processor_id(); /* ok because BHs are off */
642+
643+ txq = skb_get_tx_queue(dev, skb_popd);
644+ /*
645+ IMQ device will not be frozen or stoped, and it always be successful.
646+ So we need not check its status and return value to accelerate.
647+ */
648+ if (imq_dev_accurate_stats && txq->xmit_lock_owner != cpu) {
649+ HARD_TX_LOCK(dev, txq, cpu);
c2c0f25c
AM
650+ if (!netif_xmit_frozen_or_stopped(txq)) {
651+ dev_hard_start_xmit(skb_popd, dev, txq, &dummy_ret);
652+ }
fa14fc87
JR
653+ HARD_TX_UNLOCK(dev, txq);
654+ } else {
c2c0f25c
AM
655+ if (!netif_xmit_frozen_or_stopped(txq)) {
656+ dev_hard_start_xmit(skb_popd, dev, txq, &dummy_ret);
657+ }
fa14fc87
JR
658+ }
659+ }
c2c0f25c
AM
660+ } else {
661+ /* No ready skb, then schedule it */
662+ __netif_schedule(q);
fa14fc87
JR
663+ }
664+#endif
665+ rcu_read_unlock_bh();
7f07242b 666+ retval = 0;
667+ goto out;
668+ } else {
669+ skb_restore_cb(skb_shared); /* restore skb->cb */
14f08cd0 670+ skb->nf_queue_entry = NULL;
514e5dae
AM
671+ /*
672+ * qdisc dropped packet and decreased skb reference count of
7f07242b 673+ * skb, so we don't really want to and try refree as that would
514e5dae
AM
674+ * actually destroy the skb.
675+ */
f6396b7e 676+ spin_unlock(root_lock);
7f07242b 677+ goto packet_not_eaten_by_imq_dev;
678+ }
679+
680+packet_not_eaten_by_imq_dev:
a168f21d 681+ skb_set_queue_mapping(skb, orig_queue_index);
f6396b7e
AM
682+ rcu_read_unlock_bh();
683+
7f07242b 684+ /* cloned? restore original */
f6396b7e 685+ if (unlikely(skb_orig)) {
7f07242b 686+ kfree_skb(skb);
687+ entry->skb = skb_orig;
688+ }
689+ retval = -1;
690+out:
691+ return retval;
2380c486 692+}
deb242c8 693+static unsigned int imq_nf_hook(void *priv,
fa14fc87
JR
694+ struct sk_buff *skb,
695+ const struct nf_hook_state *state)
2380c486 696+{
fa14fc87 697+ return (skb->imq_flags & IMQ_F_ENQUEUE) ? NF_IMQ_QUEUE : NF_ACCEPT;
2380c486
JR
698+}
699+
700+static int imq_close(struct net_device *dev)
701+{
2380c486 702+ netif_stop_queue(dev);
2380c486
JR
703+ return 0;
704+}
705+
706+static int imq_open(struct net_device *dev)
707+{
2380c486 708+ netif_start_queue(dev);
2380c486
JR
709+ return 0;
710+}
711+
7f07242b 712+static const struct net_device_ops imq_netdev_ops = {
713+ .ndo_open = imq_open,
714+ .ndo_stop = imq_close,
715+ .ndo_start_xmit = imq_dev_xmit,
716+ .ndo_get_stats = imq_get_stats,
717+};
718+
2380c486
JR
719+static void imq_setup(struct net_device *dev)
720+{
7f07242b 721+ dev->netdev_ops = &imq_netdev_ops;
3b94b3c4
AM
722+ dev->type = ARPHRD_VOID;
723+ dev->mtu = 16000; /* too small? */
724+ dev->tx_queue_len = 11000; /* too big? */
725+ dev->flags = IFF_NOARP;
726+ dev->features = NETIF_F_SG | NETIF_F_FRAGLIST |
7f07242b 727+ NETIF_F_GSO | NETIF_F_HW_CSUM |
728+ NETIF_F_HIGHDMA;
3b94b3c4
AM
729+ dev->priv_flags &= ~(IFF_XMIT_DST_RELEASE |
730+ IFF_TX_SKB_SHARING);
7f07242b 731+}
732+
733+static int imq_validate(struct nlattr *tb[], struct nlattr *data[])
734+{
735+ int ret = 0;
736+
737+ if (tb[IFLA_ADDRESS]) {
738+ if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) {
739+ ret = -EINVAL;
740+ goto end;
741+ }
742+ if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) {
743+ ret = -EADDRNOTAVAIL;
744+ goto end;
745+ }
746+ }
747+ return 0;
748+end:
514e5dae 749+ pr_warn("IMQ: imq_validate failed (%d)\n", ret);
7f07242b 750+ return ret;
2380c486
JR
751+}
752+
753+static struct rtnl_link_ops imq_link_ops __read_mostly = {
754+ .kind = "imq",
7f07242b 755+ .priv_size = 0,
2380c486 756+ .setup = imq_setup,
7f07242b 757+ .validate = imq_validate,
2380c486
JR
758+};
759+
f6396b7e 760+static const struct nf_queue_handler imq_nfqh = {
f6396b7e
AM
761+ .outfn = imq_nf_queue,
762+};
763+
2380c486
JR
764+static int __init imq_init_hooks(void)
765+{
f6396b7e 766+ int ret;
2380c486 767+
f6396b7e 768+ nf_register_queue_imq_handler(&imq_nfqh);
2380c486 769+
f6396b7e
AM
770+ ret = nf_register_hooks(imq_ops, ARRAY_SIZE(imq_ops));
771+ if (ret < 0)
772+ nf_unregister_queue_imq_handler();
2380c486 773+
f6396b7e 774+ return ret;
2380c486
JR
775+}
776+
777+static int __init imq_init_one(int index)
778+{
779+ struct net_device *dev;
780+ int ret;
781+
a1e1a866 782+ dev = alloc_netdev_mq(0, "imq%d", NET_NAME_UNKNOWN, imq_setup, numqueues);
2380c486
JR
783+ if (!dev)
784+ return -ENOMEM;
785+
786+ ret = dev_alloc_name(dev, dev->name);
787+ if (ret < 0)
788+ goto fail;
789+
790+ dev->rtnl_link_ops = &imq_link_ops;
791+ ret = register_netdevice(dev);
792+ if (ret < 0)
793+ goto fail;
794+
795+ return 0;
796+fail:
797+ free_netdev(dev);
798+ return ret;
799+}
800+
801+static int __init imq_init_devs(void)
802+{
803+ int err, i;
804+
7f07242b 805+ if (numdevs < 1 || numdevs > IMQ_MAX_DEVS) {
514e5dae 806+ pr_err("IMQ: numdevs has to be betweed 1 and %u\n",
2380c486
JR
807+ IMQ_MAX_DEVS);
808+ return -EINVAL;
809+ }
810+
f6396b7e 811+ if (numqueues < 1 || numqueues > IMQ_MAX_QUEUES) {
514e5dae 812+ pr_err("IMQ: numqueues has to be betweed 1 and %u\n",
f6396b7e
AM
813+ IMQ_MAX_QUEUES);
814+ return -EINVAL;
815+ }
816+
817+ get_random_bytes(&imq_hashrnd, sizeof(imq_hashrnd));
818+
2380c486
JR
819+ rtnl_lock();
820+ err = __rtnl_link_register(&imq_link_ops);
821+
822+ for (i = 0; i < numdevs && !err; i++)
823+ err = imq_init_one(i);
824+
825+ if (err) {
826+ __rtnl_link_unregister(&imq_link_ops);
827+ memset(imq_devs_cache, 0, sizeof(imq_devs_cache));
828+ }
829+ rtnl_unlock();
830+
831+ return err;
832+}
833+
834+static int __init imq_init_module(void)
835+{
836+ int err;
837+
7f07242b 838+#if defined(CONFIG_IMQ_NUM_DEVS)
839+ BUILD_BUG_ON(CONFIG_IMQ_NUM_DEVS > 16);
840+ BUILD_BUG_ON(CONFIG_IMQ_NUM_DEVS < 2);
841+ BUILD_BUG_ON(CONFIG_IMQ_NUM_DEVS - 1 > IMQ_F_IFMASK);
842+#endif
843+
2380c486
JR
844+ err = imq_init_devs();
845+ if (err) {
514e5dae 846+ pr_err("IMQ: Error trying imq_init_devs(net)\n");
2380c486
JR
847+ return err;
848+ }
849+
850+ err = imq_init_hooks();
851+ if (err) {
514e5dae 852+ pr_err(KERN_ERR "IMQ: Error trying imq_init_hooks()\n");
2380c486
JR
853+ rtnl_link_unregister(&imq_link_ops);
854+ memset(imq_devs_cache, 0, sizeof(imq_devs_cache));
855+ return err;
856+ }
857+
fa14fc87
JR
858+ pr_info("IMQ driver loaded successfully. (numdevs = %d, numqueues = %d, imq_dev_accurate_stats = %d)\n",
859+ numdevs, numqueues, imq_dev_accurate_stats);
2380c486
JR
860+
861+#if defined(CONFIG_IMQ_BEHAVIOR_BA) || defined(CONFIG_IMQ_BEHAVIOR_BB)
514e5dae 862+ pr_info("\tHooking IMQ before NAT on PREROUTING.\n");
2380c486 863+#else
514e5dae 864+ pr_info("\tHooking IMQ after NAT on PREROUTING.\n");
2380c486
JR
865+#endif
866+#if defined(CONFIG_IMQ_BEHAVIOR_AB) || defined(CONFIG_IMQ_BEHAVIOR_BB)
514e5dae 867+ pr_info("\tHooking IMQ before NAT on POSTROUTING.\n");
2380c486 868+#else
514e5dae 869+ pr_info("\tHooking IMQ after NAT on POSTROUTING.\n");
2380c486
JR
870+#endif
871+
872+ return 0;
873+}
874+
875+static void __exit imq_unhook(void)
876+{
f6396b7e 877+ nf_unregister_hooks(imq_ops, ARRAY_SIZE(imq_ops));
7f07242b 878+ nf_unregister_queue_imq_handler();
2380c486
JR
879+}
880+
881+static void __exit imq_cleanup_devs(void)
882+{
883+ rtnl_link_unregister(&imq_link_ops);
884+ memset(imq_devs_cache, 0, sizeof(imq_devs_cache));
885+}
886+
887+static void __exit imq_exit_module(void)
888+{
889+ imq_unhook();
890+ imq_cleanup_devs();
514e5dae 891+ pr_info("IMQ driver unloaded successfully.\n");
2380c486
JR
892+}
893+
894+module_init(imq_init_module);
895+module_exit(imq_exit_module);
896+
897+module_param(numdevs, int, 0);
f6396b7e 898+module_param(numqueues, int, 0);
fa14fc87 899+module_param(imq_dev_accurate_stats, int, 0);
514e5dae 900+MODULE_PARM_DESC(numdevs, "number of IMQ devices (how many imq* devices will be created)");
f6396b7e 901+MODULE_PARM_DESC(numqueues, "number of queues per IMQ device");
fa14fc87
JR
902+MODULE_PARM_DESC(imq_dev_accurate_stats, "Notify if need the accurate imq device stats");
903+
904+MODULE_AUTHOR("http://https://github.com/imq/linuximq");
905+MODULE_DESCRIPTION("Pseudo-driver for the intermediate queue device. See https://github.com/imq/linuximq/wiki for more information.");
2380c486
JR
906+MODULE_LICENSE("GPL");
907+MODULE_ALIAS_RTNL_LINK("imq");
0776672e
AM
908diff -Naupr linux-4.7_orig/drivers/net/Kconfig linux-4.7/drivers/net/Kconfig
909--- linux-4.7_orig/drivers/net/Kconfig 2016-07-25 02:23:50.000000000 +0700
910+++ linux-4.7/drivers/net/Kconfig 2016-07-26 20:58:55.635901659 +0700
911@@ -258,6 +258,125 @@ config RIONET_RX_SIZE
912 depends on RIONET
913 default "128"
914
915+config IMQ
916+ tristate "IMQ (intermediate queueing device) support"
917+ depends on NETDEVICES && NETFILTER
918+ ---help---
919+ The IMQ device(s) is used as placeholder for QoS queueing
920+ disciplines. Every packet entering/leaving the IP stack can be
921+ directed through the IMQ device where it's enqueued/dequeued to the
922+ attached qdisc. This allows you to treat network devices as classes
923+ and distribute bandwidth among them. Iptables is used to specify
924+ through which IMQ device, if any, packets travel.
925+
926+ More information at: https://github.com/imq/linuximq
927+
928+ To compile this driver as a module, choose M here: the module
929+ will be called imq. If unsure, say N.
930+
931+choice
932+ prompt "IMQ behavior (PRE/POSTROUTING)"
933+ depends on IMQ
934+ default IMQ_BEHAVIOR_AB
935+ help
936+ This setting defines how IMQ behaves in respect to its
937+ hooking in PREROUTING and POSTROUTING.
938+
939+ IMQ can work in any of the following ways:
940+
941+ PREROUTING | POSTROUTING
942+ -----------------|-------------------
943+ #1 After NAT | After NAT
944+ #2 After NAT | Before NAT
945+ #3 Before NAT | After NAT
946+ #4 Before NAT | Before NAT
947+
948+ The default behavior is to hook before NAT on PREROUTING
949+ and after NAT on POSTROUTING (#3).
950+
951+ This settings are specially usefull when trying to use IMQ
952+ to shape NATed clients.
953+
954+ More information can be found at: https://github.com/imq/linuximq
955+
956+ If not sure leave the default settings alone.
957+
958+config IMQ_BEHAVIOR_AA
959+ bool "IMQ AA"
960+ help
961+ This setting defines how IMQ behaves in respect to its
962+ hooking in PREROUTING and POSTROUTING.
963+
964+ Choosing this option will make IMQ hook like this:
965+
966+ PREROUTING: After NAT
967+ POSTROUTING: After NAT
968+
969+ More information can be found at: https://github.com/imq/linuximq
970+
971+ If not sure leave the default settings alone.
972+
973+config IMQ_BEHAVIOR_AB
974+ bool "IMQ AB"
975+ help
976+ This setting defines how IMQ behaves in respect to its
977+ hooking in PREROUTING and POSTROUTING.
978+
979+ Choosing this option will make IMQ hook like this:
980+
981+ PREROUTING: After NAT
982+ POSTROUTING: Before NAT
983+
984+ More information can be found at: https://github.com/imq/linuximq
985+
986+ If not sure leave the default settings alone.
987+
988+config IMQ_BEHAVIOR_BA
989+ bool "IMQ BA"
990+ help
991+ This setting defines how IMQ behaves in respect to its
992+ hooking in PREROUTING and POSTROUTING.
993+
994+ Choosing this option will make IMQ hook like this:
995+
996+ PREROUTING: Before NAT
997+ POSTROUTING: After NAT
998+
999+ More information can be found at: https://github.com/imq/linuximq
1000+
1001+ If not sure leave the default settings alone.
1002+
1003+config IMQ_BEHAVIOR_BB
1004+ bool "IMQ BB"
1005+ help
1006+ This setting defines how IMQ behaves in respect to its
1007+ hooking in PREROUTING and POSTROUTING.
1008+
1009+ Choosing this option will make IMQ hook like this:
1010+
1011+ PREROUTING: Before NAT
1012+ POSTROUTING: Before NAT
1013+
1014+ More information can be found at: https://github.com/imq/linuximq
1015+
1016+ If not sure leave the default settings alone.
1017+
1018+endchoice
1019+
1020+config IMQ_NUM_DEVS
1021+ int "Number of IMQ devices"
1022+ range 2 16
1023+ depends on IMQ
1024+ default "16"
1025+ help
1026+ This setting defines how many IMQ devices will be created.
1027+
1028+ The default value is 16.
1029+
1030+ More information can be found at: https://github.com/imq/linuximq
1031+
1032+ If not sure leave the default settings alone.
1033+
1034 config TUN
1035 tristate "Universal TUN/TAP device driver support"
1036 depends on INET
1037diff -Naupr linux-4.7_orig/drivers/net/Makefile linux-4.7/drivers/net/Makefile
1038--- linux-4.7_orig/drivers/net/Makefile 2016-07-25 02:23:50.000000000 +0700
1039+++ linux-4.7/drivers/net/Makefile 2016-07-26 20:58:55.635901659 +0700
1040@@ -11,6 +11,7 @@ obj-$(CONFIG_DUMMY) += dummy.o
1041 obj-$(CONFIG_EQUALIZER) += eql.o
1042 obj-$(CONFIG_IFB) += ifb.o
1043 obj-$(CONFIG_MACSEC) += macsec.o
1044+obj-$(CONFIG_IMQ) += imq.o
1045 obj-$(CONFIG_MACVLAN) += macvlan.o
1046 obj-$(CONFIG_MACVTAP) += macvtap.o
1047 obj-$(CONFIG_MII) += mii.o
1048diff -Naupr linux-4.7_orig/include/linux/imq.h linux-4.7/include/linux/imq.h
1049--- linux-4.7_orig/include/linux/imq.h 1970-01-01 07:00:00.000000000 +0700
1050+++ linux-4.7/include/linux/imq.h 2016-07-26 20:58:55.639235009 +0700
7f07242b 1051@@ -0,0 +1,13 @@
2380c486
JR
1052+#ifndef _IMQ_H
1053+#define _IMQ_H
1054+
7f07242b 1055+/* IFMASK (16 device indexes, 0 to 15) and flag(s) fit in 5 bits */
1056+#define IMQ_F_BITS 5
1057+
1058+#define IMQ_F_IFMASK 0x0f
1059+#define IMQ_F_ENQUEUE 0x10
2380c486 1060+
7f07242b 1061+#define IMQ_MAX_DEVS (IMQ_F_IFMASK + 1)
2380c486
JR
1062+
1063+#endif /* _IMQ_H */
2380c486 1064+
0776672e
AM
1065diff -Naupr linux-4.7_orig/include/linux/netdevice.h linux-4.7/include/linux/netdevice.h
1066--- linux-4.7_orig/include/linux/netdevice.h 2016-07-25 02:23:50.000000000 +0700
1067+++ linux-4.7/include/linux/netdevice.h 2016-07-26 20:58:55.639235009 +0700
1068@@ -3558,6 +3558,19 @@ static inline void netif_tx_unlock_bh(st
fa14fc87
JR
1069 } \
1070 }
1071
1072+#define HARD_TX_LOCK_BH(dev, txq) { \
1073+ if ((dev->features & NETIF_F_LLTX) == 0) { \
1074+ __netif_tx_lock_bh(txq); \
1075+ } \
1076+}
1077+
1078+#define HARD_TX_UNLOCK_BH(dev, txq) { \
1079+ if ((dev->features & NETIF_F_LLTX) == 0) { \
1080+ __netif_tx_unlock_bh(txq); \
1081+ } \
1082+}
1083+
1084+
1085 static inline void netif_tx_disable(struct net_device *dev)
1086 {
1087 unsigned int i;
0776672e
AM
1088diff -Naupr linux-4.7_orig/include/linux/netfilter/xt_IMQ.h linux-4.7/include/linux/netfilter/xt_IMQ.h
1089--- linux-4.7_orig/include/linux/netfilter/xt_IMQ.h 1970-01-01 07:00:00.000000000 +0700
1090+++ linux-4.7/include/linux/netfilter/xt_IMQ.h 2016-07-26 20:58:55.639235009 +0700
7f07242b 1091@@ -0,0 +1,9 @@
1092+#ifndef _XT_IMQ_H
1093+#define _XT_IMQ_H
1094+
1095+struct xt_imq_info {
2380c486
JR
1096+ unsigned int todev; /* target imq device */
1097+};
1098+
7f07242b 1099+#endif /* _XT_IMQ_H */
1100+
0776672e
AM
1101diff -Naupr linux-4.7_orig/include/linux/netfilter_ipv4/ipt_IMQ.h linux-4.7/include/linux/netfilter_ipv4/ipt_IMQ.h
1102--- linux-4.7_orig/include/linux/netfilter_ipv4/ipt_IMQ.h 1970-01-01 07:00:00.000000000 +0700
1103+++ linux-4.7/include/linux/netfilter_ipv4/ipt_IMQ.h 2016-07-26 20:58:55.639235009 +0700
7f07242b 1104@@ -0,0 +1,10 @@
1105+#ifndef _IPT_IMQ_H
1106+#define _IPT_IMQ_H
1107+
1108+/* Backwards compatibility for old userspace */
1109+#include <linux/netfilter/xt_IMQ.h>
1110+
1111+#define ipt_imq_info xt_imq_info
1112+
2380c486 1113+#endif /* _IPT_IMQ_H */
7f07242b 1114+
0776672e
AM
1115diff -Naupr linux-4.7_orig/include/linux/netfilter_ipv6/ip6t_IMQ.h linux-4.7/include/linux/netfilter_ipv6/ip6t_IMQ.h
1116--- linux-4.7_orig/include/linux/netfilter_ipv6/ip6t_IMQ.h 1970-01-01 07:00:00.000000000 +0700
1117+++ linux-4.7/include/linux/netfilter_ipv6/ip6t_IMQ.h 2016-07-26 20:58:55.639235009 +0700
7f07242b 1118@@ -0,0 +1,10 @@
2380c486
JR
1119+#ifndef _IP6T_IMQ_H
1120+#define _IP6T_IMQ_H
1121+
7f07242b 1122+/* Backwards compatibility for old userspace */
1123+#include <linux/netfilter/xt_IMQ.h>
1124+
1125+#define ip6t_imq_info xt_imq_info
2380c486
JR
1126+
1127+#endif /* _IP6T_IMQ_H */
7f07242b 1128+
0776672e
AM
1129diff -Naupr linux-4.7_orig/include/linux/skbuff.h linux-4.7/include/linux/skbuff.h
1130--- linux-4.7_orig/include/linux/skbuff.h 2016-07-25 02:23:50.000000000 +0700
1131+++ linux-4.7/include/linux/skbuff.h 2016-07-26 20:58:55.639235009 +0700
79b8bda9 1132@@ -38,6 +38,10 @@
c2c0f25c
AM
1133 #include <linux/splice.h>
1134 #include <linux/in6.h>
79b8bda9 1135 #include <net/flow.h>
7f07242b 1136+#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
1137+#include <linux/imq.h>
1138+#endif
79b8bda9 1139+
7f07242b 1140
0776672e
AM
1141 /* The interface for checksum offload between the stack and networking drivers
1142 * is as follows...
1143@@ -647,6 +651,9 @@ struct sk_buff {
7f07242b 1144 * first. This is owned by whoever has the skb queued ATM.
1145 */
ca0faea1 1146 char cb[48] __aligned(8);
7f07242b 1147+#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
1148+ void *cb_next;
1149+#endif
1150
f6396b7e 1151 unsigned long _skb_refdst;
fa14fc87 1152 void (*destructor)(struct sk_buff *skb);
0776672e 1153@@ -656,6 +663,9 @@ struct sk_buff {
f6b6e03d
AM
1154 #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
1155 struct nf_conntrack *nfct;
2380c486
JR
1156 #endif
1157+#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
fa14fc87 1158+ struct nf_queue_entry *nf_queue_entry;
2380c486 1159+#endif
e26ee53e 1160 #if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
2380c486
JR
1161 struct nf_bridge_info *nf_bridge;
1162 #endif
0776672e 1163@@ -723,6 +733,9 @@ struct sk_buff {
fa14fc87
JR
1164 __u8 inner_protocol_type:1;
1165 __u8 remcsum_offload:1;
1166 /* 3 or 5 bit hole */
1167+ #if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
1168+ __u8 imq_flags:IMQ_F_BITS;
1169+ #endif
7f07242b 1170
fa14fc87
JR
1171 #ifdef CONFIG_NET_SCHED
1172 __u16 tc_index; /* traffic control index */
0776672e 1173@@ -879,6 +892,12 @@ void kfree_skb_list(struct sk_buff *segs
fa14fc87
JR
1174 void skb_tx_error(struct sk_buff *skb);
1175 void consume_skb(struct sk_buff *skb);
1176 void __kfree_skb(struct sk_buff *skb);
7f07242b 1177+
1178+#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
fa14fc87
JR
1179+int skb_save_cb(struct sk_buff *skb);
1180+int skb_restore_cb(struct sk_buff *skb);
7f07242b 1181+#endif
1182+
fa14fc87
JR
1183 extern struct kmem_cache *skbuff_head_cache;
1184
1185 void kfree_skb_partial(struct sk_buff *skb, bool head_stolen);
0776672e 1186@@ -3523,6 +3542,10 @@ static inline void __nf_copy(struct sk_b
e26ee53e
JR
1187 if (copy)
1188 dst->nfctinfo = src->nfctinfo;
2380c486
JR
1189 #endif
1190+#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
fa14fc87
JR
1191+ dst->imq_flags = src->imq_flags;
1192+ dst->nf_queue_entry = src->nf_queue_entry;
2380c486 1193+#endif
e26ee53e 1194 #if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
2380c486
JR
1195 dst->nf_bridge = src->nf_bridge;
1196 nf_bridge_get(src->nf_bridge);
0776672e
AM
1197diff -Naupr linux-4.7_orig/include/net/netfilter/nf_queue.h linux-4.7/include/net/netfilter/nf_queue.h
1198--- linux-4.7_orig/include/net/netfilter/nf_queue.h 2016-07-25 02:23:50.000000000 +0700
1199+++ linux-4.7/include/net/netfilter/nf_queue.h 2016-07-26 20:58:55.642568359 +0700
c2c0f25c 1200@@ -31,6 +31,12 @@ struct nf_queue_handler {
0776672e
AM
1201 void nf_register_queue_handler(struct net *net, const struct nf_queue_handler *qh);
1202 void nf_unregister_queue_handler(struct net *net);
daf32129 1203 void nf_reinject(struct nf_queue_entry *entry, unsigned int verdict);
fa14fc87 1204+void nf_queue_entry_release_refs(struct nf_queue_entry *entry);
7f07242b 1205+
1206+#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
fa14fc87
JR
1207+void nf_register_queue_imq_handler(const struct nf_queue_handler *qh);
1208+void nf_unregister_queue_imq_handler(void);
7f07242b 1209+#endif
1210
dd5340b2 1211 void nf_queue_entry_get_refs(struct nf_queue_entry *entry);
e2d28598 1212 void nf_queue_entry_release_refs(struct nf_queue_entry *entry);
0776672e
AM
1213diff -Naupr linux-4.7_orig/include/net/pkt_sched.h linux-4.7/include/net/pkt_sched.h
1214--- linux-4.7_orig/include/net/pkt_sched.h 2016-07-25 02:23:50.000000000 +0700
1215+++ linux-4.7/include/net/pkt_sched.h 2016-07-26 20:58:55.642568359 +0700
1216@@ -105,6 +105,8 @@ int sch_direct_xmit(struct sk_buff *skb,
fa14fc87
JR
1217
1218 void __qdisc_run(struct Qdisc *q);
1219
1220+struct sk_buff *qdisc_dequeue_skb(struct Qdisc *q, bool *validate);
1221+
1222 static inline void qdisc_run(struct Qdisc *q)
1223 {
1224 if (qdisc_run_begin(q))
0776672e
AM
1225diff -Naupr linux-4.7_orig/include/net/sch_generic.h linux-4.7/include/net/sch_generic.h
1226--- linux-4.7_orig/include/net/sch_generic.h 2016-07-25 02:23:50.000000000 +0700
1227+++ linux-4.7/include/net/sch_generic.h 2016-07-26 20:58:55.642568359 +0700
1228@@ -523,6 +523,12 @@ static inline int qdisc_enqueue(struct s
c2c0f25c
AM
1229 return sch->enqueue(skb, sch);
1230 }
1231
1232+static inline int qdisc_enqueue_root(struct sk_buff *skb, struct Qdisc *sch)
1233+{
1234+ qdisc_skb_cb(skb)->pkt_len = skb->len;
1235+ return qdisc_enqueue(skb, sch) & NET_XMIT_MASK;
1236+}
1237+
1238 static inline bool qdisc_is_percpu_stats(const struct Qdisc *q)
1239 {
1240 return q->flags & TCQ_F_CPUSTATS;
0776672e
AM
1241diff -Naupr linux-4.7_orig/include/uapi/linux/netfilter.h linux-4.7/include/uapi/linux/netfilter.h
1242--- linux-4.7_orig/include/uapi/linux/netfilter.h 2016-07-25 02:23:50.000000000 +0700
1243+++ linux-4.7/include/uapi/linux/netfilter.h 2016-07-26 20:58:55.642568359 +0700
c2c0f25c 1244@@ -14,7 +14,8 @@
514e5dae
AM
1245 #define NF_QUEUE 3
1246 #define NF_REPEAT 4
1247 #define NF_STOP 5
1248-#define NF_MAX_VERDICT NF_STOP
1249+#define NF_IMQ_QUEUE 6
1250+#define NF_MAX_VERDICT NF_IMQ_QUEUE
1251
1252 /* we overload the higher bits for encoding auxiliary data such as the queue
1253 * number or errno values. Not nice, but better than additional function
0776672e
AM
1254diff -Naupr linux-4.7_orig/net/core/dev.c linux-4.7/net/core/dev.c
1255--- linux-4.7_orig/net/core/dev.c 2016-07-25 02:23:50.000000000 +0700
1256+++ linux-4.7/net/core/dev.c 2016-07-26 20:58:55.642568359 +0700
1257@@ -139,6 +139,9 @@
03673fb0 1258 #include <linux/hrtimer.h>
c2c0f25c 1259 #include <linux/netfilter_ingress.h>
5076564f 1260 #include <linux/sctp.h>
2380c486
JR
1261+#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
1262+#include <linux/imq.h>
1263+#endif
514e5dae
AM
1264
1265 #include "net-sysfs.h"
1266
0776672e 1267@@ -2908,7 +2911,12 @@ static int xmit_one(struct sk_buff *skb,
e26ee53e
JR
1268 unsigned int len;
1269 int rc;
7f07242b 1270
2380c486 1271+#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
fa14fc87
JR
1272+ if ((!list_empty(&ptype_all) || !list_empty(&dev->ptype_all)) &&
1273+ !(skb->imq_flags & IMQ_F_ENQUEUE))
7af23471 1274+#else
7e9cd9fe 1275 if (!list_empty(&ptype_all) || !list_empty(&dev->ptype_all))
2380c486 1276+#endif
e26ee53e 1277 dev_queue_xmit_nit(skb, dev);
2380c486 1278
e26ee53e 1279 len = skb->len;
0776672e 1280@@ -2946,6 +2954,7 @@ out:
fa14fc87
JR
1281 *ret = rc;
1282 return skb;
1283 }
1284+EXPORT_SYMBOL(dev_hard_start_xmit);
1285
1286 static struct sk_buff *validate_xmit_vlan(struct sk_buff *skb,
1287 netdev_features_t features)
0776672e 1288@@ -3032,6 +3041,7 @@ struct sk_buff *validate_xmit_skb_list(s
fa14fc87
JR
1289 }
1290 return head;
1291 }
1292+EXPORT_SYMBOL(validate_xmit_skb_list);
1293
1294 static void qdisc_pkt_len_init(struct sk_buff *skb)
1295 {
0776672e
AM
1296diff -Naupr linux-4.7_orig/net/core/skbuff.c linux-4.7/net/core/skbuff.c
1297--- linux-4.7_orig/net/core/skbuff.c 2016-07-25 02:23:50.000000000 +0700
1298+++ linux-4.7/net/core/skbuff.c 2016-07-26 20:58:55.645901708 +0700
1299@@ -81,6 +81,87 @@ struct kmem_cache *skbuff_head_cache __r
7f07242b 1300 static struct kmem_cache *skbuff_fclone_cache __read_mostly;
fd71b1b3
JR
1301 int sysctl_max_skb_frags __read_mostly = MAX_SKB_FRAGS;
1302 EXPORT_SYMBOL(sysctl_max_skb_frags);
7f07242b 1303+#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
1304+static struct kmem_cache *skbuff_cb_store_cache __read_mostly;
fa14fc87 1305+#endif
9d7f2d61 1306+
fa14fc87 1307+#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
7f07242b 1308+/* Control buffer save/restore for IMQ devices */
1309+struct skb_cb_table {
f6396b7e 1310+ char cb[48] __aligned(8);
7f07242b 1311+ void *cb_next;
1312+ atomic_t refcnt;
7f07242b 1313+};
2380c486 1314+
7f07242b 1315+static DEFINE_SPINLOCK(skb_cb_store_lock);
1316+
1317+int skb_save_cb(struct sk_buff *skb)
2380c486 1318+{
7f07242b 1319+ struct skb_cb_table *next;
1320+
1321+ next = kmem_cache_alloc(skbuff_cb_store_cache, GFP_ATOMIC);
1322+ if (!next)
1323+ return -ENOMEM;
2380c486 1324+
7f07242b 1325+ BUILD_BUG_ON(sizeof(skb->cb) != sizeof(next->cb));
2380c486 1326+
7f07242b 1327+ memcpy(next->cb, skb->cb, sizeof(skb->cb));
1328+ next->cb_next = skb->cb_next;
1329+
1330+ atomic_set(&next->refcnt, 1);
1331+
1332+ skb->cb_next = next;
1333+ return 0;
2380c486 1334+}
7f07242b 1335+EXPORT_SYMBOL(skb_save_cb);
2380c486 1336+
7f07242b 1337+int skb_restore_cb(struct sk_buff *skb)
2380c486 1338+{
7f07242b 1339+ struct skb_cb_table *next;
2380c486 1340+
7f07242b 1341+ if (!skb->cb_next)
2380c486 1342+ return 0;
7f07242b 1343+
1344+ next = skb->cb_next;
1345+
1346+ BUILD_BUG_ON(sizeof(skb->cb) != sizeof(next->cb));
1347+
1348+ memcpy(skb->cb, next->cb, sizeof(skb->cb));
1349+ skb->cb_next = next->cb_next;
1350+
1351+ spin_lock(&skb_cb_store_lock);
1352+
f6396b7e 1353+ if (atomic_dec_and_test(&next->refcnt))
7f07242b 1354+ kmem_cache_free(skbuff_cb_store_cache, next);
2380c486 1355+
7f07242b 1356+ spin_unlock(&skb_cb_store_lock);
1357+
1358+ return 0;
2380c486 1359+}
7f07242b 1360+EXPORT_SYMBOL(skb_restore_cb);
2380c486 1361+
c2c0f25c 1362+static void skb_copy_stored_cb(struct sk_buff * , const struct sk_buff * ) __attribute__ ((unused));
14f08cd0 1363+static void skb_copy_stored_cb(struct sk_buff *new, const struct sk_buff *__old)
7f07242b 1364+{
1365+ struct skb_cb_table *next;
14f08cd0 1366+ struct sk_buff *old;
7f07242b 1367+
14f08cd0 1368+ if (!__old->cb_next) {
1369+ new->cb_next = NULL;
7f07242b 1370+ return;
1371+ }
1372+
1373+ spin_lock(&skb_cb_store_lock);
1374+
14f08cd0 1375+ old = (struct sk_buff *)__old;
1376+
7f07242b 1377+ next = old->cb_next;
1378+ atomic_inc(&next->refcnt);
1379+ new->cb_next = next;
1380+
1381+ spin_unlock(&skb_cb_store_lock);
1382+}
1383+#endif
1384
9d7f2d61
JR
1385 /**
1386 * skb_panic - private function for out-of-line support
0776672e 1387@@ -653,6 +734,28 @@ static void skb_release_head_state(struc
7f07242b 1388 WARN_ON(in_irq());
1389 skb->destructor(skb);
1390 }
1391+#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
4bf69007
AM
1392+ /*
1393+ * This should not happen. When it does, avoid memleak by restoring
1394+ * the chain of cb-backups.
1395+ */
f6396b7e 1396+ while (skb->cb_next != NULL) {
14f08cd0 1397+ if (net_ratelimit())
514e5dae 1398+ pr_warn("IMQ: kfree_skb: skb->cb_next: %08x\n",
c2c0f25c 1399+ (unsigned int)(uintptr_t)skb->cb_next);
14f08cd0 1400+
7f07242b 1401+ skb_restore_cb(skb);
1402+ }
4bf69007
AM
1403+ /*
1404+ * This should not happen either, nf_queue_entry is nullified in
14f08cd0 1405+ * imq_dev_xmit(). If we have non-NULL nf_queue_entry then we are
1406+ * leaking entry pointers, maybe memory. We don't know if this is
1407+ * pointer to already freed memory, or should this be freed.
1408+ * If this happens we need to add refcounting, etc for nf_queue_entry.
1409+ */
1410+ if (skb->nf_queue_entry && net_ratelimit())
514e5dae 1411+ pr_warn("%s\n", "IMQ: kfree_skb: skb->nf_queue_entry != NULL");
7f07242b 1412+#endif
0acdeb19 1413 #if IS_ENABLED(CONFIG_NF_CONNTRACK)
7f07242b 1414 nf_conntrack_put(skb->nfct);
7af23471 1415 #endif
0776672e 1416@@ -842,6 +945,10 @@ static void __copy_skb_header(struct sk_
7f07242b 1417 new->sp = secpath_get(old->sp);
1418 #endif
fa14fc87 1419 __nf_copy(new, old, false);
7f07242b 1420+#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
e2d28598
JR
1421+ new->cb_next = NULL;
1422+ /*skb_copy_stored_cb(new, old);*/
7f07242b 1423+#endif
e26ee53e
JR
1424
1425 /* Note : this field could be in headers_start/headers_end section
fa14fc87 1426 * It is not yet because we do not want to have a 16 bit hole
0776672e 1427@@ -3433,6 +3540,13 @@ void __init skb_init(void)
7f07242b 1428 0,
1429 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
1430 NULL);
1431+#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
1432+ skbuff_cb_store_cache = kmem_cache_create("skbuff_cb_store_cache",
1433+ sizeof(struct skb_cb_table),
1434+ 0,
1435+ SLAB_HWCACHE_ALIGN|SLAB_PANIC,
1436+ NULL);
1437+#endif
1438 }
1439
1440 /**
0776672e
AM
1441diff -Naupr linux-4.7_orig/net/ipv6/ip6_output.c linux-4.7/net/ipv6/ip6_output.c
1442--- linux-4.7_orig/net/ipv6/ip6_output.c 2016-07-25 02:23:50.000000000 +0700
1443+++ linux-4.7/net/ipv6/ip6_output.c 2016-07-26 20:58:55.645901708 +0700
1444@@ -65,9 +65,6 @@ static int ip6_finish_output2(struct net
514e5dae
AM
1445 struct in6_addr *nexthop;
1446 int ret;
a168f21d
AM
1447
1448- skb->protocol = htons(ETH_P_IPV6);
1449- skb->dev = dev;
1450-
1451 if (ipv6_addr_is_multicast(&ipv6_hdr(skb)->daddr)) {
1452 struct inet6_dev *idev = ip6_dst_idev(skb_dst(skb));
1453
0776672e 1454@@ -142,6 +139,13 @@ int ip6_output(struct net *net, struct s
a168f21d 1455 return 0;
f6396b7e 1456 }
a168f21d 1457
514e5dae 1458+ /*
fa14fc87
JR
1459+ * IMQ-patch: moved setting skb->dev and skb->protocol from
1460+ * ip6_finish_output2 to fix crashing at netif_skb_features().
1461+ */
a168f21d
AM
1462+ skb->protocol = htons(ETH_P_IPV6);
1463+ skb->dev = dev;
1464+
deb242c8
JR
1465 return NF_HOOK_COND(NFPROTO_IPV6, NF_INET_POST_ROUTING,
1466 net, sk, skb, NULL, dev,
a168f21d 1467 ip6_finish_output,
0776672e
AM
1468diff -Naupr linux-4.7_orig/net/netfilter/core.c linux-4.7/net/netfilter/core.c
1469--- linux-4.7_orig/net/netfilter/core.c 2016-07-25 02:23:50.000000000 +0700
1470+++ linux-4.7/net/netfilter/core.c 2016-07-26 20:58:55.645901708 +0700
1471@@ -311,9 +311,11 @@ next_hook:
1472 ret = NF_DROP_GETERR(verdict);
1473 if (ret == 0)
1474 ret = -EPERM;
1475- } else if ((verdict & NF_VERDICT_MASK) == NF_QUEUE) {
1476+ } else if ((verdict & NF_VERDICT_MASK) == NF_QUEUE ||
1477+ (verdict & NF_VERDICT_MASK) == NF_IMQ_QUEUE) {
1478 int err = nf_queue(skb, elem, state,
1479- verdict >> NF_VERDICT_QBITS);
1480+ verdict >> NF_VERDICT_QBITS,
1481+ verdict & NF_VERDICT_MASK);
1482 if (err < 0) {
1483 if (err == -ESRCH &&
1484 (verdict & NF_VERDICT_FLAG_QUEUE_BYPASS))
1485diff -Naupr linux-4.7_orig/net/netfilter/Kconfig linux-4.7/net/netfilter/Kconfig
1486--- linux-4.7_orig/net/netfilter/Kconfig 2016-07-25 02:23:50.000000000 +0700
1487+++ linux-4.7/net/netfilter/Kconfig 2016-07-26 20:58:55.645901708 +0700
1488@@ -807,6 +807,18 @@ config NETFILTER_XT_TARGET_LOG
4bf69007
AM
1489
1490 To compile it as a module, choose M here. If unsure, say N.
7f07242b 1491
1492+config NETFILTER_XT_TARGET_IMQ
1493+ tristate '"IMQ" target support'
1494+ depends on NETFILTER_XTABLES
1495+ depends on IP_NF_MANGLE || IP6_NF_MANGLE
1496+ select IMQ
1497+ default m if NETFILTER_ADVANCED=n
1498+ help
1499+ This option adds a `IMQ' target which is used to specify if and
1500+ to which imq device packets should get enqueued/dequeued.
2380c486 1501+
7f07242b 1502+ To compile it as a module, choose M here. If unsure, say N.
1503+
1504 config NETFILTER_XT_TARGET_MARK
1505 tristate '"MARK" target support'
f6396b7e 1506 depends on NETFILTER_ADVANCED
0776672e
AM
1507diff -Naupr linux-4.7_orig/net/netfilter/Makefile linux-4.7/net/netfilter/Makefile
1508--- linux-4.7_orig/net/netfilter/Makefile 2016-07-25 02:23:50.000000000 +0700
1509+++ linux-4.7/net/netfilter/Makefile 2016-07-26 20:58:55.645901708 +0700
1510@@ -115,6 +115,7 @@ obj-$(CONFIG_NETFILTER_XT_TARGET_CT) +=
7f07242b 1511 obj-$(CONFIG_NETFILTER_XT_TARGET_DSCP) += xt_DSCP.o
1512 obj-$(CONFIG_NETFILTER_XT_TARGET_HL) += xt_HL.o
42d62c0a 1513 obj-$(CONFIG_NETFILTER_XT_TARGET_HMARK) += xt_HMARK.o
4bf69007 1514+obj-$(CONFIG_NETFILTER_XT_TARGET_IMQ) += xt_IMQ.o
14f08cd0 1515 obj-$(CONFIG_NETFILTER_XT_TARGET_LED) += xt_LED.o
42d62c0a 1516 obj-$(CONFIG_NETFILTER_XT_TARGET_LOG) += xt_LOG.o
514e5dae 1517 obj-$(CONFIG_NETFILTER_XT_TARGET_NETMAP) += xt_NETMAP.o
0776672e
AM
1518diff -Naupr linux-4.7_orig/net/netfilter/nf_internals.h linux-4.7/net/netfilter/nf_internals.h
1519--- linux-4.7_orig/net/netfilter/nf_internals.h 2016-07-25 02:23:50.000000000 +0700
1520+++ linux-4.7/net/netfilter/nf_internals.h 2016-07-26 20:58:55.645901708 +0700
1521@@ -18,7 +18,7 @@ unsigned int nf_iterate(struct list_head
fa14fc87
JR
1522
1523 /* nf_queue.c */
1524 int nf_queue(struct sk_buff *skb, struct nf_hook_ops *elem,
1525- struct nf_hook_state *state, unsigned int queuenum);
1526+ struct nf_hook_state *state, unsigned int queuenum, unsigned int queuetype);
79b8bda9 1527 void nf_queue_nf_hook_drop(struct net *net, struct nf_hook_ops *ops);
daf32129 1528 int __init netfilter_queue_init(void);
f6396b7e 1529
0776672e
AM
1530diff -Naupr linux-4.7_orig/net/netfilter/nf_queue.c linux-4.7/net/netfilter/nf_queue.c
1531--- linux-4.7_orig/net/netfilter/nf_queue.c 2016-07-25 02:23:50.000000000 +0700
1532+++ linux-4.7/net/netfilter/nf_queue.c 2016-07-26 20:58:55.649235058 +0700
1533@@ -27,6 +27,23 @@
1534 * receives, no matter what.
514e5dae 1535 */
7f07242b 1536
1537+#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
514e5dae 1538+static const struct nf_queue_handler __rcu *queue_imq_handler __read_mostly;
7f07242b 1539+
1540+void nf_register_queue_imq_handler(const struct nf_queue_handler *qh)
2380c486 1541+{
7f07242b 1542+ rcu_assign_pointer(queue_imq_handler, qh);
2380c486 1543+}
f6396b7e 1544+EXPORT_SYMBOL_GPL(nf_register_queue_imq_handler);
2380c486 1545+
7f07242b 1546+void nf_unregister_queue_imq_handler(void)
2380c486 1547+{
514e5dae
AM
1548+ RCU_INIT_POINTER(queue_imq_handler, NULL);
1549+ synchronize_rcu();
2380c486 1550+}
f6396b7e 1551+EXPORT_SYMBOL_GPL(nf_unregister_queue_imq_handler);
7f07242b 1552+#endif
2380c486 1553+
7f07242b 1554 /* return EBUSY when somebody else is registered, return EEXIST if the
1555 * same handler is registered, return 0 in case of success. */
0776672e
AM
1556 void nf_register_queue_handler(struct net *net, const struct nf_queue_handler *qh)
1557@@ -114,7 +131,8 @@ void nf_queue_nf_hook_drop(struct net *n
fa14fc87
JR
1558 int nf_queue(struct sk_buff *skb,
1559 struct nf_hook_ops *elem,
1560 struct nf_hook_state *state,
1561- unsigned int queuenum)
1562+ unsigned int queuenum,
1563+ unsigned int queuetype)
f6396b7e 1564 {
7af23471 1565 int status = -ENOENT;
f6396b7e 1566 struct nf_queue_entry *entry = NULL;
0776672e
AM
1567@@ -123,7 +141,17 @@ int nf_queue(struct sk_buff *skb,
1568 struct net *net = state->net;
7f07242b 1569
deb242c8 1570 /* QUEUE == DROP if no one is waiting, to be safe. */
0776672e 1571- qh = rcu_dereference(net->nf.queue_handler);
a168f21d 1572+ if (queuetype == NF_IMQ_QUEUE) {
7f07242b 1573+#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
f6396b7e 1574+ qh = rcu_dereference(queue_imq_handler);
7af23471 1575+#else
a168f21d
AM
1576+ BUG();
1577+ goto err_unlock;
7f07242b 1578+#endif
a168f21d 1579+ } else {
0776672e 1580+ qh = rcu_dereference(net->nf.queue_handler);
a168f21d
AM
1581+ }
1582+
7af23471
JR
1583 if (!qh) {
1584 status = -ESRCH;
dd5340b2 1585 goto err;
0776672e 1586@@ -198,8 +226,10 @@ void nf_reinject(struct nf_queue_entry *
a168f21d
AM
1587 local_bh_enable();
1588 break;
f6396b7e 1589 case NF_QUEUE:
a168f21d 1590+ case NF_IMQ_QUEUE:
fa14fc87
JR
1591 err = nf_queue(skb, elem, &entry->state,
1592- verdict >> NF_VERDICT_QBITS);
1593+ verdict >> NF_VERDICT_QBITS,
1594+ verdict & NF_VERDICT_MASK);
7af23471 1595 if (err < 0) {
dd5340b2
AM
1596 if (err == -ESRCH &&
1597 (verdict & NF_VERDICT_FLAG_QUEUE_BYPASS))
0776672e
AM
1598diff -Naupr linux-4.7_orig/net/netfilter/xt_IMQ.c linux-4.7/net/netfilter/xt_IMQ.c
1599--- linux-4.7_orig/net/netfilter/xt_IMQ.c 1970-01-01 07:00:00.000000000 +0700
1600+++ linux-4.7/net/netfilter/xt_IMQ.c 2016-07-26 20:58:55.649235058 +0700
514e5dae 1601@@ -0,0 +1,72 @@
2380c486
JR
1602+/*
1603+ * This target marks packets to be enqueued to an imq device
1604+ */
1605+#include <linux/module.h>
1606+#include <linux/skbuff.h>
7f07242b 1607+#include <linux/netfilter/x_tables.h>
1608+#include <linux/netfilter/xt_IMQ.h>
2380c486
JR
1609+#include <linux/imq.h>
1610+
1611+static unsigned int imq_target(struct sk_buff *pskb,
f6396b7e 1612+ const struct xt_action_param *par)
2380c486 1613+{
7f07242b 1614+ const struct xt_imq_info *mr = par->targinfo;
2380c486 1615+
7f07242b 1616+ pskb->imq_flags = (mr->todev & IMQ_F_IFMASK) | IMQ_F_ENQUEUE;
2380c486
JR
1617+
1618+ return XT_CONTINUE;
1619+}
1620+
f6396b7e 1621+static int imq_checkentry(const struct xt_tgchk_param *par)
2380c486 1622+{
7f07242b 1623+ struct xt_imq_info *mr = par->targinfo;
2380c486 1624+
7f07242b 1625+ if (mr->todev > IMQ_MAX_DEVS - 1) {
514e5dae
AM
1626+ pr_warn("IMQ: invalid device specified, highest is %u\n",
1627+ IMQ_MAX_DEVS - 1);
f6396b7e 1628+ return -EINVAL;
2380c486
JR
1629+ }
1630+
f6396b7e 1631+ return 0;
2380c486
JR
1632+}
1633+
7f07242b 1634+static struct xt_target xt_imq_reg[] __read_mostly = {
1635+ {
1636+ .name = "IMQ",
1637+ .family = AF_INET,
1638+ .checkentry = imq_checkentry,
1639+ .target = imq_target,
1640+ .targetsize = sizeof(struct xt_imq_info),
1641+ .table = "mangle",
1642+ .me = THIS_MODULE
1643+ },
1644+ {
1645+ .name = "IMQ",
1646+ .family = AF_INET6,
1647+ .checkentry = imq_checkentry,
1648+ .target = imq_target,
1649+ .targetsize = sizeof(struct xt_imq_info),
1650+ .table = "mangle",
1651+ .me = THIS_MODULE
1652+ },
2380c486
JR
1653+};
1654+
7f07242b 1655+static int __init imq_init(void)
2380c486 1656+{
7f07242b 1657+ return xt_register_targets(xt_imq_reg, ARRAY_SIZE(xt_imq_reg));
2380c486
JR
1658+}
1659+
7f07242b 1660+static void __exit imq_fini(void)
2380c486 1661+{
7f07242b 1662+ xt_unregister_targets(xt_imq_reg, ARRAY_SIZE(xt_imq_reg));
2380c486
JR
1663+}
1664+
7f07242b 1665+module_init(imq_init);
1666+module_exit(imq_fini);
2380c486 1667+
0776672e 1668+MODULE_AUTHOR("https://github.com/imq/linuximq");
fa14fc87 1669+MODULE_DESCRIPTION("Pseudo-driver for the intermediate queue device. See https://github.com/imq/linuximq/wiki for more information.");
2380c486 1670+MODULE_LICENSE("GPL");
7f07242b 1671+MODULE_ALIAS("ipt_IMQ");
1672+MODULE_ALIAS("ip6t_IMQ");
2380c486 1673+
0776672e
AM
1674diff -Naupr linux-4.7_orig/net/sched/sch_generic.c linux-4.7/net/sched/sch_generic.c
1675--- linux-4.7_orig/net/sched/sch_generic.c 2016-07-25 02:23:50.000000000 +0700
1676+++ linux-4.7/net/sched/sch_generic.c 2016-07-26 20:58:55.649235058 +0700
1677@@ -110,6 +110,14 @@ static struct sk_buff *dequeue_skb(struc
fa14fc87
JR
1678 return skb;
1679 }
1680
1681+struct sk_buff *qdisc_dequeue_skb(struct Qdisc *q, bool *validate)
1682+{
1683+ int packets;
1684+
1685+ return dequeue_skb(q, validate, &packets);
1686+}
1687+EXPORT_SYMBOL(qdisc_dequeue_skb);
1688+
0776672e
AM
1689 /*
1690 * Transmit possibly several skbs, and handle the return status as
1691 * required. Holding the __QDISC___STATE_RUNNING bit guarantees that
This page took 0.391618 seconds and 4 git commands to generate.