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
48 #define TCQ_F_WARN_NONWC (1 << 16)
50 struct Qdisc_ops
*ops
;
51 struct qdisc_size_table
*stab
;
52 struct list_head list
;
56 struct gnet_stats_rate_est rate_est
;
57 int (*reshape_fail
)(struct sk_buff
*skb
,
62 /* This field is deprecated, but it is still used by CBQ
63 * and it will live until better solution will be invented.
65 struct Qdisc
*__parent
;
66 struct netdev_queue
*dev_queue
;
67 struct Qdisc
*next_sched
;
69 struct sk_buff
*gso_skb
;
71 * For performance sake on SMP, we put highly modified fields at the end
74 struct sk_buff_head q
;
75 struct gnet_stats_basic bstats
;
76 struct gnet_stats_queue qstats
;
79 struct Qdisc_class_ops
81 /* Child qdisc manipulation */
82 int (*graft
)(struct Qdisc
*, unsigned long cl
,
83 struct Qdisc
*, struct Qdisc
**);
84 struct Qdisc
* (*leaf
)(struct Qdisc
*, unsigned long cl
);
85 void (*qlen_notify
)(struct Qdisc
*, unsigned long);
87 /* Class manipulation routines */
88 unsigned long (*get
)(struct Qdisc
*, u32 classid
);
89 void (*put
)(struct Qdisc
*, unsigned long);
90 int (*change
)(struct Qdisc
*, u32
, u32
,
91 struct nlattr
**, unsigned long *);
92 int (*delete)(struct Qdisc
*, unsigned long);
93 void (*walk
)(struct Qdisc
*, struct qdisc_walker
* arg
);
95 /* Filter manipulation */
96 struct tcf_proto
** (*tcf_chain
)(struct Qdisc
*, unsigned long);
97 unsigned long (*bind_tcf
)(struct Qdisc
*, unsigned long,
99 void (*unbind_tcf
)(struct Qdisc
*, unsigned long);
101 /* rtnetlink specific */
102 int (*dump
)(struct Qdisc
*, unsigned long,
103 struct sk_buff
*skb
, struct tcmsg
*);
104 int (*dump_stats
)(struct Qdisc
*, unsigned long,
110 struct Qdisc_ops
*next
;
111 const struct Qdisc_class_ops
*cl_ops
;
115 int (*enqueue
)(struct sk_buff
*, struct Qdisc
*);
116 struct sk_buff
* (*dequeue
)(struct Qdisc
*);
117 struct sk_buff
* (*peek
)(struct Qdisc
*);
118 unsigned int (*drop
)(struct Qdisc
*);
120 int (*init
)(struct Qdisc
*, struct nlattr
*arg
);
121 void (*reset
)(struct Qdisc
*);
122 void (*destroy
)(struct Qdisc
*);
123 int (*change
)(struct Qdisc
*, struct nlattr
*arg
);
125 int (*dump
)(struct Qdisc
*, struct sk_buff
*);
126 int (*dump_stats
)(struct Qdisc
*, struct gnet_dump
*);
128 struct module
*owner
;
140 struct tcf_proto_ops
*next
;
143 int (*classify
)(struct sk_buff
*, struct tcf_proto
*,
144 struct tcf_result
*);
145 int (*init
)(struct tcf_proto
*);
146 void (*destroy
)(struct tcf_proto
*);
148 unsigned long (*get
)(struct tcf_proto
*, u32 handle
);
149 void (*put
)(struct tcf_proto
*, unsigned long);
150 int (*change
)(struct tcf_proto
*, unsigned long,
151 u32 handle
, struct nlattr
**,
153 int (*delete)(struct tcf_proto
*, unsigned long);
154 void (*walk
)(struct tcf_proto
*, struct tcf_walker
*arg
);
156 /* rtnetlink specific */
157 int (*dump
)(struct tcf_proto
*, unsigned long,
158 struct sk_buff
*skb
, struct tcmsg
*);
160 struct module
*owner
;
165 /* Fast access part */
166 struct tcf_proto
*next
;
168 int (*classify
)(struct sk_buff
*, struct tcf_proto
*,
169 struct tcf_result
*);
177 struct tcf_proto_ops
*ops
;
180 struct qdisc_skb_cb
{
181 unsigned int pkt_len
;
185 static inline struct qdisc_skb_cb
*qdisc_skb_cb(struct sk_buff
*skb
)
187 return (struct qdisc_skb_cb
*)skb
->cb
;
190 static inline spinlock_t
*qdisc_lock(struct Qdisc
*qdisc
)
192 return &qdisc
->q
.lock
;
195 static inline struct Qdisc
*qdisc_root(struct Qdisc
*qdisc
)
197 return qdisc
->dev_queue
->qdisc
;
200 static inline struct Qdisc
*qdisc_root_sleeping(struct Qdisc
*qdisc
)
202 return qdisc
->dev_queue
->qdisc_sleeping
;
205 /* The qdisc root lock is a mechanism by which to top level
206 * of a qdisc tree can be locked from any qdisc node in the
207 * forest. This allows changing the configuration of some
208 * aspect of the qdisc tree while blocking out asynchronous
209 * qdisc access in the packet processing paths.
211 * It is only legal to do this when the root will not change
212 * on us. Otherwise we'll potentially lock the wrong qdisc
213 * root. This is enforced by holding the RTNL semaphore, which
214 * all users of this lock accessor must do.
216 static inline spinlock_t
*qdisc_root_lock(struct Qdisc
*qdisc
)
218 struct Qdisc
*root
= qdisc_root(qdisc
);
221 return qdisc_lock(root
);
224 static inline spinlock_t
*qdisc_root_sleeping_lock(struct Qdisc
*qdisc
)
226 struct Qdisc
*root
= qdisc_root_sleeping(qdisc
);
229 return qdisc_lock(root
);
232 static inline struct net_device
*qdisc_dev(struct Qdisc
*qdisc
)
234 return qdisc
->dev_queue
->dev
;
237 static inline void sch_tree_lock(struct Qdisc
*q
)
239 spin_lock_bh(qdisc_root_sleeping_lock(q
));
242 static inline void sch_tree_unlock(struct Qdisc
*q
)
244 spin_unlock_bh(qdisc_root_sleeping_lock(q
));
247 #define tcf_tree_lock(tp) sch_tree_lock((tp)->q)
248 #define tcf_tree_unlock(tp) sch_tree_unlock((tp)->q)
250 extern struct Qdisc noop_qdisc
;
251 extern struct Qdisc_ops noop_qdisc_ops
;
253 struct Qdisc_class_common
256 struct hlist_node hnode
;
259 struct Qdisc_class_hash
261 struct hlist_head
*hash
;
262 unsigned int hashsize
;
263 unsigned int hashmask
;
264 unsigned int hashelems
;
267 static inline unsigned int qdisc_class_hash(u32 id
, u32 mask
)
274 static inline struct Qdisc_class_common
*
275 qdisc_class_find(struct Qdisc_class_hash
*hash
, u32 id
)
277 struct Qdisc_class_common
*cl
;
278 struct hlist_node
*n
;
281 h
= qdisc_class_hash(id
, hash
->hashmask
);
282 hlist_for_each_entry(cl
, n
, &hash
->hash
[h
], hnode
) {
283 if (cl
->classid
== id
)
289 extern int qdisc_class_hash_init(struct Qdisc_class_hash
*);
290 extern void qdisc_class_hash_insert(struct Qdisc_class_hash
*, struct Qdisc_class_common
*);
291 extern void qdisc_class_hash_remove(struct Qdisc_class_hash
*, struct Qdisc_class_common
*);
292 extern void qdisc_class_hash_grow(struct Qdisc
*, struct Qdisc_class_hash
*);
293 extern void qdisc_class_hash_destroy(struct Qdisc_class_hash
*);
295 extern void dev_init_scheduler(struct net_device
*dev
);
296 extern void dev_shutdown(struct net_device
*dev
);
297 extern void dev_activate(struct net_device
*dev
);
298 extern void dev_deactivate(struct net_device
*dev
);
299 extern void qdisc_reset(struct Qdisc
*qdisc
);
300 extern void qdisc_destroy(struct Qdisc
*qdisc
);
301 extern void qdisc_tree_decrease_qlen(struct Qdisc
*qdisc
, unsigned int n
);
302 extern struct Qdisc
*qdisc_alloc(struct netdev_queue
*dev_queue
,
303 struct Qdisc_ops
*ops
);
304 extern struct Qdisc
*qdisc_create_dflt(struct net_device
*dev
,
305 struct netdev_queue
*dev_queue
,
306 struct Qdisc_ops
*ops
, u32 parentid
);
307 extern void qdisc_calculate_pkt_len(struct sk_buff
*skb
,
308 struct qdisc_size_table
*stab
);
309 extern void tcf_destroy(struct tcf_proto
*tp
);
310 extern void tcf_destroy_chain(struct tcf_proto
**fl
);
312 /* Reset all TX qdiscs of a device. */
313 static inline void qdisc_reset_all_tx(struct net_device
*dev
)
316 for (i
= 0; i
< dev
->num_tx_queues
; i
++)
317 qdisc_reset(netdev_get_tx_queue(dev
, i
)->qdisc
);
320 /* Are all TX queues of the device empty? */
321 static inline bool qdisc_all_tx_empty(const struct net_device
*dev
)
324 for (i
= 0; i
< dev
->num_tx_queues
; i
++) {
325 struct netdev_queue
*txq
= netdev_get_tx_queue(dev
, i
);
326 const struct Qdisc
*q
= txq
->qdisc
;
334 /* Are any of the TX qdiscs changing? */
335 static inline bool qdisc_tx_changing(struct net_device
*dev
)
338 for (i
= 0; i
< dev
->num_tx_queues
; i
++) {
339 struct netdev_queue
*txq
= netdev_get_tx_queue(dev
, i
);
340 if (txq
->qdisc
!= txq
->qdisc_sleeping
)
346 /* Is the device using the noop qdisc on all queues? */
347 static inline bool qdisc_tx_is_noop(const struct net_device
*dev
)
350 for (i
= 0; i
< dev
->num_tx_queues
; i
++) {
351 struct netdev_queue
*txq
= netdev_get_tx_queue(dev
, i
);
352 if (txq
->qdisc
!= &noop_qdisc
)
358 static inline unsigned int qdisc_pkt_len(struct sk_buff
*skb
)
360 return qdisc_skb_cb(skb
)->pkt_len
;
363 /* additional qdisc xmit flags (NET_XMIT_MASK in linux/netdevice.h) */
364 enum net_xmit_qdisc_t
{
365 __NET_XMIT_STOLEN
= 0x00010000,
366 __NET_XMIT_BYPASS
= 0x00020000,
369 #ifdef CONFIG_NET_CLS_ACT
370 #define net_xmit_drop_count(e) ((e) & __NET_XMIT_STOLEN ? 0 : 1)
372 #define net_xmit_drop_count(e) (1)
375 static inline int qdisc_enqueue(struct sk_buff
*skb
, struct Qdisc
*sch
)
377 #ifdef CONFIG_NET_SCHED
379 qdisc_calculate_pkt_len(skb
, sch
->stab
);
381 return sch
->enqueue(skb
, sch
);
384 static inline int qdisc_enqueue_root(struct sk_buff
*skb
, struct Qdisc
*sch
)
386 qdisc_skb_cb(skb
)->pkt_len
= skb
->len
;
387 return qdisc_enqueue(skb
, sch
) & NET_XMIT_MASK
;
390 static inline int __qdisc_enqueue_tail(struct sk_buff
*skb
, struct Qdisc
*sch
,
391 struct sk_buff_head
*list
)
393 __skb_queue_tail(list
, skb
);
394 sch
->qstats
.backlog
+= qdisc_pkt_len(skb
);
395 sch
->bstats
.bytes
+= qdisc_pkt_len(skb
);
396 sch
->bstats
.packets
++;
398 return NET_XMIT_SUCCESS
;
401 static inline int qdisc_enqueue_tail(struct sk_buff
*skb
, struct Qdisc
*sch
)
403 return __qdisc_enqueue_tail(skb
, sch
, &sch
->q
);
406 static inline struct sk_buff
*__qdisc_dequeue_head(struct Qdisc
*sch
,
407 struct sk_buff_head
*list
)
409 struct sk_buff
*skb
= __skb_dequeue(list
);
411 if (likely(skb
!= NULL
))
412 sch
->qstats
.backlog
-= qdisc_pkt_len(skb
);
417 static inline struct sk_buff
*qdisc_dequeue_head(struct Qdisc
*sch
)
419 return __qdisc_dequeue_head(sch
, &sch
->q
);
422 static inline struct sk_buff
*__qdisc_dequeue_tail(struct Qdisc
*sch
,
423 struct sk_buff_head
*list
)
425 struct sk_buff
*skb
= __skb_dequeue_tail(list
);
427 if (likely(skb
!= NULL
))
428 sch
->qstats
.backlog
-= qdisc_pkt_len(skb
);
433 static inline struct sk_buff
*qdisc_dequeue_tail(struct Qdisc
*sch
)
435 return __qdisc_dequeue_tail(sch
, &sch
->q
);
438 static inline struct sk_buff
*qdisc_peek_head(struct Qdisc
*sch
)
440 return skb_peek(&sch
->q
);
443 /* generic pseudo peek method for non-work-conserving qdisc */
444 static inline struct sk_buff
*qdisc_peek_dequeued(struct Qdisc
*sch
)
446 /* we can reuse ->gso_skb because peek isn't called for root qdiscs */
448 sch
->gso_skb
= sch
->dequeue(sch
);
450 /* it's still part of the queue */
457 /* use instead of qdisc->dequeue() for all qdiscs queried with ->peek() */
458 static inline struct sk_buff
*qdisc_dequeue_peeked(struct Qdisc
*sch
)
460 struct sk_buff
*skb
= sch
->gso_skb
;
466 skb
= sch
->dequeue(sch
);
472 static inline void __qdisc_reset_queue(struct Qdisc
*sch
,
473 struct sk_buff_head
*list
)
476 * We do not know the backlog in bytes of this list, it
477 * is up to the caller to correct it
479 __skb_queue_purge(list
);
482 static inline void qdisc_reset_queue(struct Qdisc
*sch
)
484 __qdisc_reset_queue(sch
, &sch
->q
);
485 sch
->qstats
.backlog
= 0;
488 static inline unsigned int __qdisc_queue_drop(struct Qdisc
*sch
,
489 struct sk_buff_head
*list
)
491 struct sk_buff
*skb
= __qdisc_dequeue_tail(sch
, list
);
493 if (likely(skb
!= NULL
)) {
494 unsigned int len
= qdisc_pkt_len(skb
);
502 static inline unsigned int qdisc_queue_drop(struct Qdisc
*sch
)
504 return __qdisc_queue_drop(sch
, &sch
->q
);
507 static inline int qdisc_drop(struct sk_buff
*skb
, struct Qdisc
*sch
)
512 return NET_XMIT_DROP
;
515 static inline int qdisc_reshape_fail(struct sk_buff
*skb
, struct Qdisc
*sch
)
519 #ifdef CONFIG_NET_CLS_ACT
520 if (sch
->reshape_fail
== NULL
|| sch
->reshape_fail(skb
, sch
))
523 return NET_XMIT_SUCCESS
;
528 return NET_XMIT_DROP
;
531 /* Length to Time (L2T) lookup in a qdisc_rate_table, to determine how
532 long it will take to send a packet given its size.
534 static inline u32
qdisc_l2t(struct qdisc_rate_table
* rtab
, unsigned int pktlen
)
536 int slot
= pktlen
+ rtab
->rate
.cell_align
+ rtab
->rate
.overhead
;
539 slot
>>= rtab
->rate
.cell_log
;
541 return (rtab
->data
[255]*(slot
>> 8) + rtab
->data
[slot
& 0xFF]);
542 return rtab
->data
[slot
];
545 #ifdef CONFIG_NET_CLS_ACT
546 static inline struct sk_buff
*skb_act_clone(struct sk_buff
*skb
, gfp_t gfp_mask
)
548 struct sk_buff
*n
= skb_clone(skb
, gfp_mask
);
551 n
->tc_verd
= SET_TC_VERD(n
->tc_verd
, 0);
552 n
->tc_verd
= CLR_TC_OK2MUNGE(n
->tc_verd
);
553 n
->tc_verd
= CLR_TC_MUNGED(n
->tc_verd
);