1 #ifndef __NET_SCHED_GENERIC_H
2 #define __NET_SCHED_GENERIC_H
4 #include <linux/netdevice.h>
5 #include <linux/types.h>
6 #include <linux/rcupdate.h>
7 #include <linux/module.h>
8 #include <linux/pkt_sched.h>
9 #include <linux/pkt_cls.h>
10 #include <net/gen_stats.h>
11 #include <net/rtnetlink.h>
18 struct qdisc_rate_table
20 struct tc_ratespec rate
;
22 struct qdisc_rate_table
*next
;
28 __QDISC_STATE_RUNNING
,
30 __QDISC_STATE_DEACTIVATED
,
33 struct qdisc_size_table
{
34 struct list_head list
;
35 struct tc_sizespec szopts
;
42 int (*enqueue
)(struct sk_buff
*skb
, struct Qdisc
*dev
);
43 struct sk_buff
* (*dequeue
)(struct Qdisc
*dev
);
45 #define TCQ_F_BUILTIN 1
46 #define TCQ_F_THROTTLED 2
47 #define TCQ_F_INGRESS 4
49 struct Qdisc_ops
*ops
;
50 struct qdisc_size_table
*stab
;
55 struct sk_buff
*gso_skb
;
56 struct sk_buff_head q
;
57 struct netdev_queue
*dev_queue
;
58 struct Qdisc
*next_sched
;
59 struct list_head list
;
61 struct gnet_stats_basic bstats
;
62 struct gnet_stats_queue qstats
;
63 struct gnet_stats_rate_est rate_est
;
64 int (*reshape_fail
)(struct sk_buff
*skb
,
69 /* This field is deprecated, but it is still used by CBQ
70 * and it will live until better solution will be invented.
72 struct Qdisc
*__parent
;
75 struct Qdisc_class_ops
77 /* Child qdisc manipulation */
78 int (*graft
)(struct Qdisc
*, unsigned long cl
,
79 struct Qdisc
*, struct Qdisc
**);
80 struct Qdisc
* (*leaf
)(struct Qdisc
*, unsigned long cl
);
81 void (*qlen_notify
)(struct Qdisc
*, unsigned long);
83 /* Class manipulation routines */
84 unsigned long (*get
)(struct Qdisc
*, u32 classid
);
85 void (*put
)(struct Qdisc
*, unsigned long);
86 int (*change
)(struct Qdisc
*, u32
, u32
,
87 struct nlattr
**, unsigned long *);
88 int (*delete)(struct Qdisc
*, unsigned long);
89 void (*walk
)(struct Qdisc
*, struct qdisc_walker
* arg
);
91 /* Filter manipulation */
92 struct tcf_proto
** (*tcf_chain
)(struct Qdisc
*, unsigned long);
93 unsigned long (*bind_tcf
)(struct Qdisc
*, unsigned long,
95 void (*unbind_tcf
)(struct Qdisc
*, unsigned long);
97 /* rtnetlink specific */
98 int (*dump
)(struct Qdisc
*, unsigned long,
99 struct sk_buff
*skb
, struct tcmsg
*);
100 int (*dump_stats
)(struct Qdisc
*, unsigned long,
106 struct Qdisc_ops
*next
;
107 const struct Qdisc_class_ops
*cl_ops
;
111 int (*enqueue
)(struct sk_buff
*, struct Qdisc
*);
112 struct sk_buff
* (*dequeue
)(struct Qdisc
*);
113 struct sk_buff
* (*peek
)(struct Qdisc
*);
114 unsigned int (*drop
)(struct Qdisc
*);
116 int (*init
)(struct Qdisc
*, struct nlattr
*arg
);
117 void (*reset
)(struct Qdisc
*);
118 void (*destroy
)(struct Qdisc
*);
119 int (*change
)(struct Qdisc
*, struct nlattr
*arg
);
121 int (*dump
)(struct Qdisc
*, struct sk_buff
*);
122 int (*dump_stats
)(struct Qdisc
*, struct gnet_dump
*);
124 struct module
*owner
;
136 struct tcf_proto_ops
*next
;
139 int (*classify
)(struct sk_buff
*, struct tcf_proto
*,
140 struct tcf_result
*);
141 int (*init
)(struct tcf_proto
*);
142 void (*destroy
)(struct tcf_proto
*);
144 unsigned long (*get
)(struct tcf_proto
*, u32 handle
);
145 void (*put
)(struct tcf_proto
*, unsigned long);
146 int (*change
)(struct tcf_proto
*, unsigned long,
147 u32 handle
, struct nlattr
**,
149 int (*delete)(struct tcf_proto
*, unsigned long);
150 void (*walk
)(struct tcf_proto
*, struct tcf_walker
*arg
);
152 /* rtnetlink specific */
153 int (*dump
)(struct tcf_proto
*, unsigned long,
154 struct sk_buff
*skb
, struct tcmsg
*);
156 struct module
*owner
;
161 /* Fast access part */
162 struct tcf_proto
*next
;
164 int (*classify
)(struct sk_buff
*, struct tcf_proto
*,
165 struct tcf_result
*);
173 struct tcf_proto_ops
*ops
;
176 struct qdisc_skb_cb
{
177 unsigned int pkt_len
;
181 static inline struct qdisc_skb_cb
*qdisc_skb_cb(struct sk_buff
*skb
)
183 return (struct qdisc_skb_cb
*)skb
->cb
;
186 static inline spinlock_t
*qdisc_lock(struct Qdisc
*qdisc
)
188 return &qdisc
->q
.lock
;
191 static inline struct Qdisc
*qdisc_root(struct Qdisc
*qdisc
)
193 return qdisc
->dev_queue
->qdisc
;
196 static inline struct Qdisc
*qdisc_root_sleeping(struct Qdisc
*qdisc
)
198 return qdisc
->dev_queue
->qdisc_sleeping
;
201 /* The qdisc root lock is a mechanism by which to top level
202 * of a qdisc tree can be locked from any qdisc node in the
203 * forest. This allows changing the configuration of some
204 * aspect of the qdisc tree while blocking out asynchronous
205 * qdisc access in the packet processing paths.
207 * It is only legal to do this when the root will not change
208 * on us. Otherwise we'll potentially lock the wrong qdisc
209 * root. This is enforced by holding the RTNL semaphore, which
210 * all users of this lock accessor must do.
212 static inline spinlock_t
*qdisc_root_lock(struct Qdisc
*qdisc
)
214 struct Qdisc
*root
= qdisc_root(qdisc
);
217 return qdisc_lock(root
);
220 static inline spinlock_t
*qdisc_root_sleeping_lock(struct Qdisc
*qdisc
)
222 struct Qdisc
*root
= qdisc_root_sleeping(qdisc
);
225 return qdisc_lock(root
);
228 static inline struct net_device
*qdisc_dev(struct Qdisc
*qdisc
)
230 return qdisc
->dev_queue
->dev
;
233 static inline void sch_tree_lock(struct Qdisc
*q
)
235 spin_lock_bh(qdisc_root_sleeping_lock(q
));
238 static inline void sch_tree_unlock(struct Qdisc
*q
)
240 spin_unlock_bh(qdisc_root_sleeping_lock(q
));
243 #define tcf_tree_lock(tp) sch_tree_lock((tp)->q)
244 #define tcf_tree_unlock(tp) sch_tree_unlock((tp)->q)
246 extern struct Qdisc noop_qdisc
;
247 extern struct Qdisc_ops noop_qdisc_ops
;
249 struct Qdisc_class_common
252 struct hlist_node hnode
;
255 struct Qdisc_class_hash
257 struct hlist_head
*hash
;
258 unsigned int hashsize
;
259 unsigned int hashmask
;
260 unsigned int hashelems
;
263 static inline unsigned int qdisc_class_hash(u32 id
, u32 mask
)
270 static inline struct Qdisc_class_common
*
271 qdisc_class_find(struct Qdisc_class_hash
*hash
, u32 id
)
273 struct Qdisc_class_common
*cl
;
274 struct hlist_node
*n
;
277 h
= qdisc_class_hash(id
, hash
->hashmask
);
278 hlist_for_each_entry(cl
, n
, &hash
->hash
[h
], hnode
) {
279 if (cl
->classid
== id
)
285 extern int qdisc_class_hash_init(struct Qdisc_class_hash
*);
286 extern void qdisc_class_hash_insert(struct Qdisc_class_hash
*, struct Qdisc_class_common
*);
287 extern void qdisc_class_hash_remove(struct Qdisc_class_hash
*, struct Qdisc_class_common
*);
288 extern void qdisc_class_hash_grow(struct Qdisc
*, struct Qdisc_class_hash
*);
289 extern void qdisc_class_hash_destroy(struct Qdisc_class_hash
*);
291 extern void dev_init_scheduler(struct net_device
*dev
);
292 extern void dev_shutdown(struct net_device
*dev
);
293 extern void dev_activate(struct net_device
*dev
);
294 extern void dev_deactivate(struct net_device
*dev
);
295 extern void qdisc_reset(struct Qdisc
*qdisc
);
296 extern void qdisc_destroy(struct Qdisc
*qdisc
);
297 extern void qdisc_tree_decrease_qlen(struct Qdisc
*qdisc
, unsigned int n
);
298 extern struct Qdisc
*qdisc_alloc(struct netdev_queue
*dev_queue
,
299 struct Qdisc_ops
*ops
);
300 extern struct Qdisc
*qdisc_create_dflt(struct net_device
*dev
,
301 struct netdev_queue
*dev_queue
,
302 struct Qdisc_ops
*ops
, u32 parentid
);
303 extern void qdisc_calculate_pkt_len(struct sk_buff
*skb
,
304 struct qdisc_size_table
*stab
);
305 extern void tcf_destroy(struct tcf_proto
*tp
);
306 extern void tcf_destroy_chain(struct tcf_proto
**fl
);
308 /* Reset all TX qdiscs of a device. */
309 static inline void qdisc_reset_all_tx(struct net_device
*dev
)
312 for (i
= 0; i
< dev
->num_tx_queues
; i
++)
313 qdisc_reset(netdev_get_tx_queue(dev
, i
)->qdisc
);
316 /* Are all TX queues of the device empty? */
317 static inline bool qdisc_all_tx_empty(const struct net_device
*dev
)
320 for (i
= 0; i
< dev
->num_tx_queues
; i
++) {
321 struct netdev_queue
*txq
= netdev_get_tx_queue(dev
, i
);
322 const struct Qdisc
*q
= txq
->qdisc
;
330 /* Are any of the TX qdiscs changing? */
331 static inline bool qdisc_tx_changing(struct net_device
*dev
)
334 for (i
= 0; i
< dev
->num_tx_queues
; i
++) {
335 struct netdev_queue
*txq
= netdev_get_tx_queue(dev
, i
);
336 if (txq
->qdisc
!= txq
->qdisc_sleeping
)
342 /* Is the device using the noop qdisc on all queues? */
343 static inline bool qdisc_tx_is_noop(const struct net_device
*dev
)
346 for (i
= 0; i
< dev
->num_tx_queues
; i
++) {
347 struct netdev_queue
*txq
= netdev_get_tx_queue(dev
, i
);
348 if (txq
->qdisc
!= &noop_qdisc
)
354 static inline unsigned int qdisc_pkt_len(struct sk_buff
*skb
)
356 return qdisc_skb_cb(skb
)->pkt_len
;
359 /* additional qdisc xmit flags (NET_XMIT_MASK in linux/netdevice.h) */
360 enum net_xmit_qdisc_t
{
361 __NET_XMIT_STOLEN
= 0x00010000,
362 __NET_XMIT_BYPASS
= 0x00020000,
365 #ifdef CONFIG_NET_CLS_ACT
366 #define net_xmit_drop_count(e) ((e) & __NET_XMIT_STOLEN ? 0 : 1)
368 #define net_xmit_drop_count(e) (1)
371 static inline int qdisc_enqueue(struct sk_buff
*skb
, struct Qdisc
*sch
)
373 #ifdef CONFIG_NET_SCHED
375 qdisc_calculate_pkt_len(skb
, sch
->stab
);
377 return sch
->enqueue(skb
, sch
);
380 static inline int qdisc_enqueue_root(struct sk_buff
*skb
, struct Qdisc
*sch
)
382 qdisc_skb_cb(skb
)->pkt_len
= skb
->len
;
383 return qdisc_enqueue(skb
, sch
) & NET_XMIT_MASK
;
386 static inline int __qdisc_enqueue_tail(struct sk_buff
*skb
, struct Qdisc
*sch
,
387 struct sk_buff_head
*list
)
389 __skb_queue_tail(list
, skb
);
390 sch
->qstats
.backlog
+= qdisc_pkt_len(skb
);
391 sch
->bstats
.bytes
+= qdisc_pkt_len(skb
);
392 sch
->bstats
.packets
++;
394 return NET_XMIT_SUCCESS
;
397 static inline int qdisc_enqueue_tail(struct sk_buff
*skb
, struct Qdisc
*sch
)
399 return __qdisc_enqueue_tail(skb
, sch
, &sch
->q
);
402 static inline struct sk_buff
*__qdisc_dequeue_head(struct Qdisc
*sch
,
403 struct sk_buff_head
*list
)
405 struct sk_buff
*skb
= __skb_dequeue(list
);
407 if (likely(skb
!= NULL
))
408 sch
->qstats
.backlog
-= qdisc_pkt_len(skb
);
413 static inline struct sk_buff
*qdisc_dequeue_head(struct Qdisc
*sch
)
415 return __qdisc_dequeue_head(sch
, &sch
->q
);
418 static inline struct sk_buff
*__qdisc_dequeue_tail(struct Qdisc
*sch
,
419 struct sk_buff_head
*list
)
421 struct sk_buff
*skb
= __skb_dequeue_tail(list
);
423 if (likely(skb
!= NULL
))
424 sch
->qstats
.backlog
-= qdisc_pkt_len(skb
);
429 static inline struct sk_buff
*qdisc_dequeue_tail(struct Qdisc
*sch
)
431 return __qdisc_dequeue_tail(sch
, &sch
->q
);
434 static inline struct sk_buff
*qdisc_peek_head(struct Qdisc
*sch
)
436 return skb_peek(&sch
->q
);
439 /* generic pseudo peek method for non-work-conserving qdisc */
440 static inline struct sk_buff
*qdisc_peek_dequeued(struct Qdisc
*sch
)
442 /* we can reuse ->gso_skb because peek isn't called for root qdiscs */
444 sch
->gso_skb
= sch
->dequeue(sch
);
446 /* it's still part of the queue */
453 /* use instead of qdisc->dequeue() for all qdiscs queried with ->peek() */
454 static inline struct sk_buff
*qdisc_dequeue_peeked(struct Qdisc
*sch
)
456 struct sk_buff
*skb
= sch
->gso_skb
;
462 skb
= sch
->dequeue(sch
);
468 static inline void __qdisc_reset_queue(struct Qdisc
*sch
,
469 struct sk_buff_head
*list
)
472 * We do not know the backlog in bytes of this list, it
473 * is up to the caller to correct it
475 __skb_queue_purge(list
);
478 static inline void qdisc_reset_queue(struct Qdisc
*sch
)
480 __qdisc_reset_queue(sch
, &sch
->q
);
481 sch
->qstats
.backlog
= 0;
484 static inline unsigned int __qdisc_queue_drop(struct Qdisc
*sch
,
485 struct sk_buff_head
*list
)
487 struct sk_buff
*skb
= __qdisc_dequeue_tail(sch
, list
);
489 if (likely(skb
!= NULL
)) {
490 unsigned int len
= qdisc_pkt_len(skb
);
498 static inline unsigned int qdisc_queue_drop(struct Qdisc
*sch
)
500 return __qdisc_queue_drop(sch
, &sch
->q
);
503 static inline int qdisc_drop(struct sk_buff
*skb
, struct Qdisc
*sch
)
508 return NET_XMIT_DROP
;
511 static inline int qdisc_reshape_fail(struct sk_buff
*skb
, struct Qdisc
*sch
)
515 #ifdef CONFIG_NET_CLS_ACT
516 if (sch
->reshape_fail
== NULL
|| sch
->reshape_fail(skb
, sch
))
519 return NET_XMIT_SUCCESS
;
524 return NET_XMIT_DROP
;
527 /* Length to Time (L2T) lookup in a qdisc_rate_table, to determine how
528 long it will take to send a packet given its size.
530 static inline u32
qdisc_l2t(struct qdisc_rate_table
* rtab
, unsigned int pktlen
)
532 int slot
= pktlen
+ rtab
->rate
.cell_align
+ rtab
->rate
.overhead
;
535 slot
>>= rtab
->rate
.cell_log
;
537 return (rtab
->data
[255]*(slot
>> 8) + rtab
->data
[slot
& 0xFF]);
538 return rtab
->data
[slot
];
541 #ifdef CONFIG_NET_CLS_ACT
542 static inline struct sk_buff
*skb_act_clone(struct sk_buff
*skb
, gfp_t gfp_mask
)
544 struct sk_buff
*n
= skb_clone(skb
, gfp_mask
);
547 n
->tc_verd
= SET_TC_VERD(n
->tc_verd
, 0);
548 n
->tc_verd
= CLR_TC_OK2MUNGE(n
->tc_verd
);
549 n
->tc_verd
= CLR_TC_MUNGED(n
->tc_verd
);