| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  * net/sched/sch_fifo.c	The simplest FIFO queue. | 
 | 3 |  * | 
 | 4 |  *		This program is free software; you can redistribute it and/or | 
 | 5 |  *		modify it under the terms of the GNU General Public License | 
 | 6 |  *		as published by the Free Software Foundation; either version | 
 | 7 |  *		2 of the License, or (at your option) any later version. | 
 | 8 |  * | 
 | 9 |  * Authors:	Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru> | 
 | 10 |  */ | 
 | 11 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/module.h> | 
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 13 | #include <linux/slab.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/types.h> | 
 | 15 | #include <linux/kernel.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/errno.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/skbuff.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <net/pkt_sched.h> | 
 | 19 |  | 
 | 20 | /* 1 band FIFO pseudo-"scheduler" */ | 
 | 21 |  | 
| Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 22 | static int bfifo_enqueue(struct sk_buff *skb, struct Qdisc *sch) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | { | 
| Eric Dumazet | d276055 | 2011-03-03 11:10:02 -0800 | [diff] [blame] | 24 | 	if (likely(sch->qstats.backlog + qdisc_pkt_len(skb) <= sch->limit)) | 
| Thomas Graf | aaae301 | 2005-06-18 22:57:42 -0700 | [diff] [blame] | 25 | 		return qdisc_enqueue_tail(skb, sch); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 |  | 
| Thomas Graf | aaae301 | 2005-06-18 22:57:42 -0700 | [diff] [blame] | 27 | 	return qdisc_reshape_fail(skb, sch); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | } | 
 | 29 |  | 
| Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 30 | static int pfifo_enqueue(struct sk_buff *skb, struct Qdisc *sch) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | { | 
| Eric Dumazet | d276055 | 2011-03-03 11:10:02 -0800 | [diff] [blame] | 32 | 	if (likely(skb_queue_len(&sch->q) < sch->limit)) | 
| Thomas Graf | aaae301 | 2005-06-18 22:57:42 -0700 | [diff] [blame] | 33 | 		return qdisc_enqueue_tail(skb, sch); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 |  | 
| Thomas Graf | aaae301 | 2005-06-18 22:57:42 -0700 | [diff] [blame] | 35 | 	return qdisc_reshape_fail(skb, sch); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | } | 
 | 37 |  | 
| Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 38 | static int pfifo_tail_enqueue(struct sk_buff *skb, struct Qdisc *sch) | 
| Hagen Paul Pfeifer | 57dbb2d | 2010-01-24 12:30:59 +0000 | [diff] [blame] | 39 | { | 
| Eric Dumazet | d276055 | 2011-03-03 11:10:02 -0800 | [diff] [blame] | 40 | 	if (likely(skb_queue_len(&sch->q) < sch->limit)) | 
| Hagen Paul Pfeifer | 57dbb2d | 2010-01-24 12:30:59 +0000 | [diff] [blame] | 41 | 		return qdisc_enqueue_tail(skb, sch); | 
 | 42 |  | 
 | 43 | 	/* queue full, remove one skb to fulfill the limit */ | 
| Eric Dumazet | 9190b3b | 2011-01-20 23:31:33 -0800 | [diff] [blame] | 44 | 	__qdisc_queue_drop_head(sch, &sch->q); | 
| Hagen Paul Pfeifer | 57dbb2d | 2010-01-24 12:30:59 +0000 | [diff] [blame] | 45 | 	sch->qstats.drops++; | 
| Hagen Paul Pfeifer | 57dbb2d | 2010-01-24 12:30:59 +0000 | [diff] [blame] | 46 | 	qdisc_enqueue_tail(skb, sch); | 
 | 47 |  | 
 | 48 | 	return NET_XMIT_CN; | 
 | 49 | } | 
 | 50 |  | 
| Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 51 | static int fifo_init(struct Qdisc *sch, struct nlattr *opt) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | { | 
| Eric Dumazet | 2362493 | 2011-01-21 16:26:09 -0800 | [diff] [blame] | 53 | 	bool bypass; | 
 | 54 | 	bool is_bfifo = sch->ops == &bfifo_qdisc_ops; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 |  | 
 | 56 | 	if (opt == NULL) { | 
| David S. Miller | 5ce2d48 | 2008-07-08 17:06:30 -0700 | [diff] [blame] | 57 | 		u32 limit = qdisc_dev(sch)->tx_queue_len ? : 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 |  | 
| Eric Dumazet | 2362493 | 2011-01-21 16:26:09 -0800 | [diff] [blame] | 59 | 		if (is_bfifo) | 
| Patrick McHardy | 6473990 | 2009-05-06 16:45:07 -0700 | [diff] [blame] | 60 | 			limit *= psched_mtu(qdisc_dev(sch)); | 
| Thomas Graf | 6fc8e84 | 2005-06-18 22:58:00 -0700 | [diff] [blame] | 61 |  | 
| Eric Dumazet | d276055 | 2011-03-03 11:10:02 -0800 | [diff] [blame] | 62 | 		sch->limit = limit; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | 	} else { | 
| Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 64 | 		struct tc_fifo_qopt *ctl = nla_data(opt); | 
| Thomas Graf | 6fc8e84 | 2005-06-18 22:58:00 -0700 | [diff] [blame] | 65 |  | 
| Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 66 | 		if (nla_len(opt) < sizeof(*ctl)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | 			return -EINVAL; | 
| Thomas Graf | 6fc8e84 | 2005-06-18 22:58:00 -0700 | [diff] [blame] | 68 |  | 
| Eric Dumazet | d276055 | 2011-03-03 11:10:02 -0800 | [diff] [blame] | 69 | 		sch->limit = ctl->limit; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | 	} | 
| Thomas Graf | 6fc8e84 | 2005-06-18 22:58:00 -0700 | [diff] [blame] | 71 |  | 
| Eric Dumazet | 2362493 | 2011-01-21 16:26:09 -0800 | [diff] [blame] | 72 | 	if (is_bfifo) | 
| Eric Dumazet | d276055 | 2011-03-03 11:10:02 -0800 | [diff] [blame] | 73 | 		bypass = sch->limit >= psched_mtu(qdisc_dev(sch)); | 
| Eric Dumazet | 2362493 | 2011-01-21 16:26:09 -0800 | [diff] [blame] | 74 | 	else | 
| Eric Dumazet | d276055 | 2011-03-03 11:10:02 -0800 | [diff] [blame] | 75 | 		bypass = sch->limit >= 1; | 
| Eric Dumazet | 2362493 | 2011-01-21 16:26:09 -0800 | [diff] [blame] | 76 |  | 
 | 77 | 	if (bypass) | 
 | 78 | 		sch->flags |= TCQ_F_CAN_BYPASS; | 
 | 79 | 	else | 
 | 80 | 		sch->flags &= ~TCQ_F_CAN_BYPASS; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | 	return 0; | 
 | 82 | } | 
 | 83 |  | 
 | 84 | static int fifo_dump(struct Qdisc *sch, struct sk_buff *skb) | 
 | 85 | { | 
| Eric Dumazet | d276055 | 2011-03-03 11:10:02 -0800 | [diff] [blame] | 86 | 	struct tc_fifo_qopt opt = { .limit = sch->limit }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 |  | 
| Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 88 | 	NLA_PUT(skb, TCA_OPTIONS, sizeof(opt), &opt); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | 	return skb->len; | 
 | 90 |  | 
| Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 91 | nla_put_failure: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | 	return -1; | 
 | 93 | } | 
 | 94 |  | 
| Eric Dumazet | 20fea08 | 2007-11-14 01:44:41 -0800 | [diff] [blame] | 95 | struct Qdisc_ops pfifo_qdisc_ops __read_mostly = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | 	.id		=	"pfifo", | 
| Eric Dumazet | d276055 | 2011-03-03 11:10:02 -0800 | [diff] [blame] | 97 | 	.priv_size	=	0, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | 	.enqueue	=	pfifo_enqueue, | 
| Thomas Graf | aaae301 | 2005-06-18 22:57:42 -0700 | [diff] [blame] | 99 | 	.dequeue	=	qdisc_dequeue_head, | 
| Patrick McHardy | 48a8f51 | 2008-10-31 00:44:18 -0700 | [diff] [blame] | 100 | 	.peek		=	qdisc_peek_head, | 
| Thomas Graf | aaae301 | 2005-06-18 22:57:42 -0700 | [diff] [blame] | 101 | 	.drop		=	qdisc_queue_drop, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | 	.init		=	fifo_init, | 
| Thomas Graf | aaae301 | 2005-06-18 22:57:42 -0700 | [diff] [blame] | 103 | 	.reset		=	qdisc_reset_queue, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | 	.change		=	fifo_init, | 
 | 105 | 	.dump		=	fifo_dump, | 
 | 106 | 	.owner		=	THIS_MODULE, | 
 | 107 | }; | 
| Patrick McHardy | 62e3ba1 | 2008-01-22 22:10:23 -0800 | [diff] [blame] | 108 | EXPORT_SYMBOL(pfifo_qdisc_ops); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 |  | 
| Eric Dumazet | 20fea08 | 2007-11-14 01:44:41 -0800 | [diff] [blame] | 110 | struct Qdisc_ops bfifo_qdisc_ops __read_mostly = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | 	.id		=	"bfifo", | 
| Eric Dumazet | d276055 | 2011-03-03 11:10:02 -0800 | [diff] [blame] | 112 | 	.priv_size	=	0, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | 	.enqueue	=	bfifo_enqueue, | 
| Thomas Graf | aaae301 | 2005-06-18 22:57:42 -0700 | [diff] [blame] | 114 | 	.dequeue	=	qdisc_dequeue_head, | 
| Patrick McHardy | 48a8f51 | 2008-10-31 00:44:18 -0700 | [diff] [blame] | 115 | 	.peek		=	qdisc_peek_head, | 
| Thomas Graf | aaae301 | 2005-06-18 22:57:42 -0700 | [diff] [blame] | 116 | 	.drop		=	qdisc_queue_drop, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | 	.init		=	fifo_init, | 
| Thomas Graf | aaae301 | 2005-06-18 22:57:42 -0700 | [diff] [blame] | 118 | 	.reset		=	qdisc_reset_queue, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | 	.change		=	fifo_init, | 
 | 120 | 	.dump		=	fifo_dump, | 
 | 121 | 	.owner		=	THIS_MODULE, | 
 | 122 | }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | EXPORT_SYMBOL(bfifo_qdisc_ops); | 
| Patrick McHardy | fb0305c | 2008-07-05 23:40:21 -0700 | [diff] [blame] | 124 |  | 
| Hagen Paul Pfeifer | 57dbb2d | 2010-01-24 12:30:59 +0000 | [diff] [blame] | 125 | struct Qdisc_ops pfifo_head_drop_qdisc_ops __read_mostly = { | 
 | 126 | 	.id		=	"pfifo_head_drop", | 
| Eric Dumazet | d276055 | 2011-03-03 11:10:02 -0800 | [diff] [blame] | 127 | 	.priv_size	=	0, | 
| Hagen Paul Pfeifer | 57dbb2d | 2010-01-24 12:30:59 +0000 | [diff] [blame] | 128 | 	.enqueue	=	pfifo_tail_enqueue, | 
 | 129 | 	.dequeue	=	qdisc_dequeue_head, | 
 | 130 | 	.peek		=	qdisc_peek_head, | 
 | 131 | 	.drop		=	qdisc_queue_drop_head, | 
 | 132 | 	.init		=	fifo_init, | 
 | 133 | 	.reset		=	qdisc_reset_queue, | 
 | 134 | 	.change		=	fifo_init, | 
 | 135 | 	.dump		=	fifo_dump, | 
 | 136 | 	.owner		=	THIS_MODULE, | 
 | 137 | }; | 
 | 138 |  | 
| Patrick McHardy | fb0305c | 2008-07-05 23:40:21 -0700 | [diff] [blame] | 139 | /* Pass size change message down to embedded FIFO */ | 
 | 140 | int fifo_set_limit(struct Qdisc *q, unsigned int limit) | 
 | 141 | { | 
 | 142 | 	struct nlattr *nla; | 
 | 143 | 	int ret = -ENOMEM; | 
 | 144 |  | 
 | 145 | 	/* Hack to avoid sending change message to non-FIFO */ | 
 | 146 | 	if (strncmp(q->ops->id + 1, "fifo", 4) != 0) | 
 | 147 | 		return 0; | 
 | 148 |  | 
 | 149 | 	nla = kmalloc(nla_attr_size(sizeof(struct tc_fifo_qopt)), GFP_KERNEL); | 
 | 150 | 	if (nla) { | 
 | 151 | 		nla->nla_type = RTM_NEWQDISC; | 
 | 152 | 		nla->nla_len = nla_attr_size(sizeof(struct tc_fifo_qopt)); | 
 | 153 | 		((struct tc_fifo_qopt *)nla_data(nla))->limit = limit; | 
 | 154 |  | 
 | 155 | 		ret = q->ops->change(q, nla); | 
 | 156 | 		kfree(nla); | 
 | 157 | 	} | 
 | 158 | 	return ret; | 
 | 159 | } | 
 | 160 | EXPORT_SYMBOL(fifo_set_limit); | 
 | 161 |  | 
 | 162 | struct Qdisc *fifo_create_dflt(struct Qdisc *sch, struct Qdisc_ops *ops, | 
 | 163 | 			       unsigned int limit) | 
 | 164 | { | 
 | 165 | 	struct Qdisc *q; | 
 | 166 | 	int err = -ENOMEM; | 
 | 167 |  | 
| Changli Gao | 3511c91 | 2010-10-16 13:04:08 +0000 | [diff] [blame] | 168 | 	q = qdisc_create_dflt(sch->dev_queue, ops, TC_H_MAKE(sch->handle, 1)); | 
| Patrick McHardy | fb0305c | 2008-07-05 23:40:21 -0700 | [diff] [blame] | 169 | 	if (q) { | 
 | 170 | 		err = fifo_set_limit(q, limit); | 
 | 171 | 		if (err < 0) { | 
 | 172 | 			qdisc_destroy(q); | 
 | 173 | 			q = NULL; | 
 | 174 | 		} | 
 | 175 | 	} | 
 | 176 |  | 
 | 177 | 	return q ? : ERR_PTR(err); | 
 | 178 | } | 
 | 179 | EXPORT_SYMBOL(fifo_create_dflt); |