1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* net/sched/sch_teql.c "True" (or "trivial") link equalizer.
4 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
7 #include <linux/module.h>
8 #include <linux/types.h>
9 #include <linux/kernel.h>
10 #include <linux/slab.h>
11 #include <linux/string.h>
12 #include <linux/errno.h>
13 #include <linux/if_arp.h>
14 #include <linux/netdevice.h>
15 #include <linux/init.h>
16 #include <linux/skbuff.h>
17 #include <linux/moduleparam.h>
19 #include <net/neighbour.h>
20 #include <net/pkt_sched.h>
26 After loading this module you will find a new device teqlN
27 and new qdisc with the same name. To join a slave to the equalizer
28 you should just set this qdisc on a device f.e.
30 # tc qdisc add dev eth0 root teql0
31 # tc qdisc add dev eth1 root teql0
33 That's all. Full PnP 8)
38 1. Slave devices MUST be active devices, i.e., they must raise the tbusy
39 signal and generate EOI events. If you want to equalize virtual devices
40 like tunnels, use a normal eql device.
41 2. This device puts no limitations on physical slave characteristics
42 f.e. it will equalize 9600baud line and 100Mb ethernet perfectly :-)
43 Certainly, large difference in link speeds will make the resulting
44 eqalized link unusable, because of huge packet reordering.
45 I estimate an upper useful difference as ~10 times.
46 3. If the slave requires address resolution, only protocols using
47 neighbour cache (IPv4/IPv6) will work over the equalized link.
48 Other protocols are still allowed to use the slave device directly,
49 which will not break load balancing, though native slave
50 traffic will have the highest priority. */
53 struct Qdisc_ops qops;
54 struct net_device *dev;
56 struct list_head master_list;
57 unsigned long tx_bytes;
58 unsigned long tx_packets;
59 unsigned long tx_errors;
60 unsigned long tx_dropped;
63 struct teql_sched_data {
65 struct teql_master *m;
66 struct sk_buff_head q;
69 #define NEXT_SLAVE(q) (((struct teql_sched_data *)qdisc_priv(q))->next)
71 #define FMASK (IFF_BROADCAST | IFF_POINTOPOINT)
73 /* "teql*" qdisc routines */
76 teql_enqueue(struct sk_buff *skb, struct Qdisc *sch, struct sk_buff **to_free)
78 struct net_device *dev = qdisc_dev(sch);
79 struct teql_sched_data *q = qdisc_priv(sch);
81 if (q->q.qlen < dev->tx_queue_len) {
82 __skb_queue_tail(&q->q, skb);
83 return NET_XMIT_SUCCESS;
86 return qdisc_drop(skb, sch, to_free);
89 static struct sk_buff *
90 teql_dequeue(struct Qdisc *sch)
92 struct teql_sched_data *dat = qdisc_priv(sch);
93 struct netdev_queue *dat_queue;
97 skb = __skb_dequeue(&dat->q);
98 dat_queue = netdev_get_tx_queue(dat->m->dev, 0);
99 q = rcu_dereference_bh(dat_queue->qdisc);
102 struct net_device *m = qdisc_dev(q);
104 dat->m->slaves = sch;
108 qdisc_bstats_update(sch, skb);
110 sch->q.qlen = dat->q.qlen + q->q.qlen;
114 static struct sk_buff *
115 teql_peek(struct Qdisc *sch)
117 /* teql is meant to be used as root qdisc */
122 teql_reset(struct Qdisc *sch)
124 struct teql_sched_data *dat = qdisc_priv(sch);
126 skb_queue_purge(&dat->q);
130 teql_destroy(struct Qdisc *sch)
132 struct Qdisc *q, *prev;
133 struct teql_sched_data *dat = qdisc_priv(sch);
134 struct teql_master *master = dat->m;
139 prev = master->slaves;
142 q = NEXT_SLAVE(prev);
144 NEXT_SLAVE(prev) = NEXT_SLAVE(q);
145 if (q == master->slaves) {
146 master->slaves = NEXT_SLAVE(q);
147 if (q == master->slaves) {
148 struct netdev_queue *txq;
149 spinlock_t *root_lock;
151 txq = netdev_get_tx_queue(master->dev, 0);
152 master->slaves = NULL;
154 root_lock = qdisc_root_sleeping_lock(rtnl_dereference(txq->qdisc));
155 spin_lock_bh(root_lock);
156 qdisc_reset(rtnl_dereference(txq->qdisc));
157 spin_unlock_bh(root_lock);
160 skb_queue_purge(&dat->q);
164 } while ((prev = q) != master->slaves);
168 static int teql_qdisc_init(struct Qdisc *sch, struct nlattr *opt,
169 struct netlink_ext_ack *extack)
171 struct net_device *dev = qdisc_dev(sch);
172 struct teql_master *m = (struct teql_master *)sch->ops;
173 struct teql_sched_data *q = qdisc_priv(sch);
175 if (dev->hard_header_len > m->dev->hard_header_len)
183 skb_queue_head_init(&q->q);
186 if (m->dev->flags & IFF_UP) {
187 if ((m->dev->flags & IFF_POINTOPOINT &&
188 !(dev->flags & IFF_POINTOPOINT)) ||
189 (m->dev->flags & IFF_BROADCAST &&
190 !(dev->flags & IFF_BROADCAST)) ||
191 (m->dev->flags & IFF_MULTICAST &&
192 !(dev->flags & IFF_MULTICAST)) ||
193 dev->mtu < m->dev->mtu)
196 if (!(dev->flags&IFF_POINTOPOINT))
197 m->dev->flags &= ~IFF_POINTOPOINT;
198 if (!(dev->flags&IFF_BROADCAST))
199 m->dev->flags &= ~IFF_BROADCAST;
200 if (!(dev->flags&IFF_MULTICAST))
201 m->dev->flags &= ~IFF_MULTICAST;
202 if (dev->mtu < m->dev->mtu)
203 m->dev->mtu = dev->mtu;
205 q->next = NEXT_SLAVE(m->slaves);
206 NEXT_SLAVE(m->slaves) = sch;
210 m->dev->mtu = dev->mtu;
211 m->dev->flags = (m->dev->flags&~FMASK)|(dev->flags&FMASK);
218 __teql_resolve(struct sk_buff *skb, struct sk_buff *skb_res,
219 struct net_device *dev, struct netdev_queue *txq,
220 struct dst_entry *dst)
225 n = dst_neigh_lookup_skb(dst, skb);
229 if (dst->dev != dev) {
230 struct neighbour *mn;
232 mn = __neigh_lookup_errno(n->tbl, n->primary_key, dev);
239 if (neigh_event_send(n, skb_res) == 0) {
241 char haddr[MAX_ADDR_LEN];
243 neigh_ha_snapshot(haddr, n, dev);
244 err = dev_hard_header(skb, dev, ntohs(skb_protocol(skb, false)),
245 haddr, NULL, skb->len);
250 err = (skb_res == NULL) ? -EAGAIN : 1;
256 static inline int teql_resolve(struct sk_buff *skb,
257 struct sk_buff *skb_res,
258 struct net_device *dev,
259 struct netdev_queue *txq)
261 struct dst_entry *dst = skb_dst(skb);
264 if (rcu_access_pointer(txq->qdisc) == &noop_qdisc)
267 if (!dev->header_ops || !dst)
271 res = __teql_resolve(skb, skb_res, dev, txq, dst);
277 static netdev_tx_t teql_master_xmit(struct sk_buff *skb, struct net_device *dev)
279 struct teql_master *master = netdev_priv(dev);
280 struct Qdisc *start, *q;
283 int subq = skb_get_queue_mapping(skb);
284 struct sk_buff *skb_res = NULL;
286 start = master->slaves;
297 struct net_device *slave = qdisc_dev(q);
298 struct netdev_queue *slave_txq = netdev_get_tx_queue(slave, 0);
300 if (rcu_access_pointer(slave_txq->qdisc_sleeping) != q)
302 if (netif_xmit_stopped(netdev_get_tx_queue(slave, subq)) ||
303 !netif_running(slave)) {
308 switch (teql_resolve(skb, skb_res, slave, slave_txq)) {
310 if (__netif_tx_trylock(slave_txq)) {
311 unsigned int length = qdisc_pkt_len(skb);
313 if (!netif_xmit_frozen_or_stopped(slave_txq) &&
314 netdev_start_xmit(skb, slave, slave_txq, false) ==
316 __netif_tx_unlock(slave_txq);
317 master->slaves = NEXT_SLAVE(q);
318 netif_wake_queue(dev);
319 master->tx_packets++;
320 master->tx_bytes += length;
323 __netif_tx_unlock(slave_txq);
325 if (netif_xmit_stopped(netdev_get_tx_queue(dev, 0)))
329 master->slaves = NEXT_SLAVE(q);
335 __skb_pull(skb, skb_network_offset(skb));
336 } while ((q = NEXT_SLAVE(q)) != start);
338 if (nores && skb_res == NULL) {
344 netif_stop_queue(dev);
345 return NETDEV_TX_BUSY;
350 master->tx_dropped++;
355 static int teql_master_open(struct net_device *dev)
358 struct teql_master *m = netdev_priv(dev);
360 unsigned int flags = IFF_NOARP | IFF_MULTICAST;
362 if (m->slaves == NULL)
369 struct net_device *slave = qdisc_dev(q);
374 if (slave->mtu < mtu)
376 if (slave->hard_header_len > LL_MAX_HEADER)
379 /* If all the slaves are BROADCAST, master is BROADCAST
380 If all the slaves are PtP, master is PtP
381 Otherwise, master is NBMA.
383 if (!(slave->flags&IFF_POINTOPOINT))
384 flags &= ~IFF_POINTOPOINT;
385 if (!(slave->flags&IFF_BROADCAST))
386 flags &= ~IFF_BROADCAST;
387 if (!(slave->flags&IFF_MULTICAST))
388 flags &= ~IFF_MULTICAST;
389 } while ((q = NEXT_SLAVE(q)) != m->slaves);
392 m->dev->flags = (m->dev->flags&~FMASK) | flags;
393 netif_start_queue(m->dev);
397 static int teql_master_close(struct net_device *dev)
399 netif_stop_queue(dev);
403 static void teql_master_stats64(struct net_device *dev,
404 struct rtnl_link_stats64 *stats)
406 struct teql_master *m = netdev_priv(dev);
408 stats->tx_packets = m->tx_packets;
409 stats->tx_bytes = m->tx_bytes;
410 stats->tx_errors = m->tx_errors;
411 stats->tx_dropped = m->tx_dropped;
414 static int teql_master_mtu(struct net_device *dev, int new_mtu)
416 struct teql_master *m = netdev_priv(dev);
422 if (new_mtu > qdisc_dev(q)->mtu)
424 } while ((q = NEXT_SLAVE(q)) != m->slaves);
431 static const struct net_device_ops teql_netdev_ops = {
432 .ndo_open = teql_master_open,
433 .ndo_stop = teql_master_close,
434 .ndo_start_xmit = teql_master_xmit,
435 .ndo_get_stats64 = teql_master_stats64,
436 .ndo_change_mtu = teql_master_mtu,
439 static __init void teql_master_setup(struct net_device *dev)
441 struct teql_master *master = netdev_priv(dev);
442 struct Qdisc_ops *ops = &master->qops;
445 ops->priv_size = sizeof(struct teql_sched_data);
447 ops->enqueue = teql_enqueue;
448 ops->dequeue = teql_dequeue;
449 ops->peek = teql_peek;
450 ops->init = teql_qdisc_init;
451 ops->reset = teql_reset;
452 ops->destroy = teql_destroy;
453 ops->owner = THIS_MODULE;
455 dev->netdev_ops = &teql_netdev_ops;
456 dev->type = ARPHRD_VOID;
459 dev->max_mtu = 65535;
460 dev->tx_queue_len = 100;
461 dev->flags = IFF_NOARP;
462 dev->hard_header_len = LL_MAX_HEADER;
466 static LIST_HEAD(master_dev_list);
467 static int max_equalizers = 1;
468 module_param(max_equalizers, int, 0);
469 MODULE_PARM_DESC(max_equalizers, "Max number of link equalizers");
471 static int __init teql_init(void)
476 for (i = 0; i < max_equalizers; i++) {
477 struct net_device *dev;
478 struct teql_master *master;
480 dev = alloc_netdev(sizeof(struct teql_master), "teql%d",
481 NET_NAME_UNKNOWN, teql_master_setup);
487 if ((err = register_netdev(dev))) {
492 master = netdev_priv(dev);
494 strscpy(master->qops.id, dev->name, IFNAMSIZ);
495 err = register_qdisc(&master->qops);
498 unregister_netdev(dev);
503 list_add_tail(&master->master_list, &master_dev_list);
508 static void __exit teql_exit(void)
510 struct teql_master *master, *nxt;
512 list_for_each_entry_safe(master, nxt, &master_dev_list, master_list) {
514 list_del(&master->master_list);
516 unregister_qdisc(&master->qops);
517 unregister_netdev(master->dev);
518 free_netdev(master->dev);
522 module_init(teql_init);
523 module_exit(teql_exit);
525 MODULE_LICENSE("GPL");