net_sched: move dev_graft_qdisc() to sch_generic.c
[safe/jmp/linux-2.6] / include / net / sch_generic.h
1 #ifndef __NET_SCHED_GENERIC_H
2 #define __NET_SCHED_GENERIC_H
3
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>
12
13 struct Qdisc_ops;
14 struct qdisc_walker;
15 struct tcf_walker;
16 struct module;
17
18 struct qdisc_rate_table
19 {
20         struct tc_ratespec rate;
21         u32             data[256];
22         struct qdisc_rate_table *next;
23         int             refcnt;
24 };
25
26 enum qdisc_state_t
27 {
28         __QDISC_STATE_RUNNING,
29         __QDISC_STATE_SCHED,
30         __QDISC_STATE_DEACTIVATED,
31 };
32
33 struct qdisc_size_table {
34         struct list_head        list;
35         struct tc_sizespec      szopts;
36         int                     refcnt;
37         u16                     data[];
38 };
39
40 struct Qdisc
41 {
42         int                     (*enqueue)(struct sk_buff *skb, struct Qdisc *dev);
43         struct sk_buff *        (*dequeue)(struct Qdisc *dev);
44         unsigned                flags;
45 #define TCQ_F_BUILTIN           1
46 #define TCQ_F_THROTTLED         2
47 #define TCQ_F_INGRESS           4
48 #define TCQ_F_CAN_BYPASS        8
49 #define TCQ_F_WARN_NONWC        (1 << 16)
50         int                     padded;
51         struct Qdisc_ops        *ops;
52         struct qdisc_size_table *stab;
53         struct list_head        list;
54         u32                     handle;
55         u32                     parent;
56         atomic_t                refcnt;
57         struct gnet_stats_rate_est      rate_est;
58         int                     (*reshape_fail)(struct sk_buff *skb,
59                                         struct Qdisc *q);
60
61         void                    *u32_node;
62
63         /* This field is deprecated, but it is still used by CBQ
64          * and it will live until better solution will be invented.
65          */
66         struct Qdisc            *__parent;
67         struct netdev_queue     *dev_queue;
68         struct Qdisc            *next_sched;
69
70         struct sk_buff          *gso_skb;
71         /*
72          * For performance sake on SMP, we put highly modified fields at the end
73          */
74         unsigned long           state;
75         struct sk_buff_head     q;
76         struct gnet_stats_basic_packed bstats;
77         struct gnet_stats_queue qstats;
78 };
79
80 struct Qdisc_class_ops
81 {
82         /* Child qdisc manipulation */
83         int                     (*graft)(struct Qdisc *, unsigned long cl,
84                                         struct Qdisc *, struct Qdisc **);
85         struct Qdisc *          (*leaf)(struct Qdisc *, unsigned long cl);
86         void                    (*qlen_notify)(struct Qdisc *, unsigned long);
87
88         /* Class manipulation routines */
89         unsigned long           (*get)(struct Qdisc *, u32 classid);
90         void                    (*put)(struct Qdisc *, unsigned long);
91         int                     (*change)(struct Qdisc *, u32, u32,
92                                         struct nlattr **, unsigned long *);
93         int                     (*delete)(struct Qdisc *, unsigned long);
94         void                    (*walk)(struct Qdisc *, struct qdisc_walker * arg);
95
96         /* Filter manipulation */
97         struct tcf_proto **     (*tcf_chain)(struct Qdisc *, unsigned long);
98         unsigned long           (*bind_tcf)(struct Qdisc *, unsigned long,
99                                         u32 classid);
100         void                    (*unbind_tcf)(struct Qdisc *, unsigned long);
101
102         /* rtnetlink specific */
103         int                     (*dump)(struct Qdisc *, unsigned long,
104                                         struct sk_buff *skb, struct tcmsg*);
105         int                     (*dump_stats)(struct Qdisc *, unsigned long,
106                                         struct gnet_dump *);
107 };
108
109 struct Qdisc_ops
110 {
111         struct Qdisc_ops        *next;
112         const struct Qdisc_class_ops    *cl_ops;
113         char                    id[IFNAMSIZ];
114         int                     priv_size;
115
116         int                     (*enqueue)(struct sk_buff *, struct Qdisc *);
117         struct sk_buff *        (*dequeue)(struct Qdisc *);
118         struct sk_buff *        (*peek)(struct Qdisc *);
119         unsigned int            (*drop)(struct Qdisc *);
120
121         int                     (*init)(struct Qdisc *, struct nlattr *arg);
122         void                    (*reset)(struct Qdisc *);
123         void                    (*destroy)(struct Qdisc *);
124         int                     (*change)(struct Qdisc *, struct nlattr *arg);
125
126         int                     (*dump)(struct Qdisc *, struct sk_buff *);
127         int                     (*dump_stats)(struct Qdisc *, struct gnet_dump *);
128
129         struct module           *owner;
130 };
131
132
133 struct tcf_result
134 {
135         unsigned long   class;
136         u32             classid;
137 };
138
139 struct tcf_proto_ops
140 {
141         struct tcf_proto_ops    *next;
142         char                    kind[IFNAMSIZ];
143
144         int                     (*classify)(struct sk_buff*, struct tcf_proto*,
145                                         struct tcf_result *);
146         int                     (*init)(struct tcf_proto*);
147         void                    (*destroy)(struct tcf_proto*);
148
149         unsigned long           (*get)(struct tcf_proto*, u32 handle);
150         void                    (*put)(struct tcf_proto*, unsigned long);
151         int                     (*change)(struct tcf_proto*, unsigned long,
152                                         u32 handle, struct nlattr **,
153                                         unsigned long *);
154         int                     (*delete)(struct tcf_proto*, unsigned long);
155         void                    (*walk)(struct tcf_proto*, struct tcf_walker *arg);
156
157         /* rtnetlink specific */
158         int                     (*dump)(struct tcf_proto*, unsigned long,
159                                         struct sk_buff *skb, struct tcmsg*);
160
161         struct module           *owner;
162 };
163
164 struct tcf_proto
165 {
166         /* Fast access part */
167         struct tcf_proto        *next;
168         void                    *root;
169         int                     (*classify)(struct sk_buff*, struct tcf_proto*,
170                                         struct tcf_result *);
171         __be16                  protocol;
172
173         /* All the rest */
174         u32                     prio;
175         u32                     classid;
176         struct Qdisc            *q;
177         void                    *data;
178         struct tcf_proto_ops    *ops;
179 };
180
181 struct qdisc_skb_cb {
182         unsigned int            pkt_len;
183         char                    data[];
184 };
185
186 static inline int qdisc_qlen(struct Qdisc *q)
187 {
188         return q->q.qlen;
189 }
190
191 static inline struct qdisc_skb_cb *qdisc_skb_cb(struct sk_buff *skb)
192 {
193         return (struct qdisc_skb_cb *)skb->cb;
194 }
195
196 static inline spinlock_t *qdisc_lock(struct Qdisc *qdisc)
197 {
198         return &qdisc->q.lock;
199 }
200
201 static inline struct Qdisc *qdisc_root(struct Qdisc *qdisc)
202 {
203         return qdisc->dev_queue->qdisc;
204 }
205
206 static inline struct Qdisc *qdisc_root_sleeping(struct Qdisc *qdisc)
207 {
208         return qdisc->dev_queue->qdisc_sleeping;
209 }
210
211 /* The qdisc root lock is a mechanism by which to top level
212  * of a qdisc tree can be locked from any qdisc node in the
213  * forest.  This allows changing the configuration of some
214  * aspect of the qdisc tree while blocking out asynchronous
215  * qdisc access in the packet processing paths.
216  *
217  * It is only legal to do this when the root will not change
218  * on us.  Otherwise we'll potentially lock the wrong qdisc
219  * root.  This is enforced by holding the RTNL semaphore, which
220  * all users of this lock accessor must do.
221  */
222 static inline spinlock_t *qdisc_root_lock(struct Qdisc *qdisc)
223 {
224         struct Qdisc *root = qdisc_root(qdisc);
225
226         ASSERT_RTNL();
227         return qdisc_lock(root);
228 }
229
230 static inline spinlock_t *qdisc_root_sleeping_lock(struct Qdisc *qdisc)
231 {
232         struct Qdisc *root = qdisc_root_sleeping(qdisc);
233
234         ASSERT_RTNL();
235         return qdisc_lock(root);
236 }
237
238 static inline struct net_device *qdisc_dev(struct Qdisc *qdisc)
239 {
240         return qdisc->dev_queue->dev;
241 }
242
243 static inline void sch_tree_lock(struct Qdisc *q)
244 {
245         spin_lock_bh(qdisc_root_sleeping_lock(q));
246 }
247
248 static inline void sch_tree_unlock(struct Qdisc *q)
249 {
250         spin_unlock_bh(qdisc_root_sleeping_lock(q));
251 }
252
253 #define tcf_tree_lock(tp)       sch_tree_lock((tp)->q)
254 #define tcf_tree_unlock(tp)     sch_tree_unlock((tp)->q)
255
256 extern struct Qdisc noop_qdisc;
257 extern struct Qdisc_ops noop_qdisc_ops;
258
259 struct Qdisc_class_common
260 {
261         u32                     classid;
262         struct hlist_node       hnode;
263 };
264
265 struct Qdisc_class_hash
266 {
267         struct hlist_head       *hash;
268         unsigned int            hashsize;
269         unsigned int            hashmask;
270         unsigned int            hashelems;
271 };
272
273 static inline unsigned int qdisc_class_hash(u32 id, u32 mask)
274 {
275         id ^= id >> 8;
276         id ^= id >> 4;
277         return id & mask;
278 }
279
280 static inline struct Qdisc_class_common *
281 qdisc_class_find(struct Qdisc_class_hash *hash, u32 id)
282 {
283         struct Qdisc_class_common *cl;
284         struct hlist_node *n;
285         unsigned int h;
286
287         h = qdisc_class_hash(id, hash->hashmask);
288         hlist_for_each_entry(cl, n, &hash->hash[h], hnode) {
289                 if (cl->classid == id)
290                         return cl;
291         }
292         return NULL;
293 }
294
295 extern int qdisc_class_hash_init(struct Qdisc_class_hash *);
296 extern void qdisc_class_hash_insert(struct Qdisc_class_hash *, struct Qdisc_class_common *);
297 extern void qdisc_class_hash_remove(struct Qdisc_class_hash *, struct Qdisc_class_common *);
298 extern void qdisc_class_hash_grow(struct Qdisc *, struct Qdisc_class_hash *);
299 extern void qdisc_class_hash_destroy(struct Qdisc_class_hash *);
300
301 extern void dev_init_scheduler(struct net_device *dev);
302 extern void dev_shutdown(struct net_device *dev);
303 extern void dev_activate(struct net_device *dev);
304 extern void dev_deactivate(struct net_device *dev);
305 extern struct Qdisc *dev_graft_qdisc(struct netdev_queue *dev_queue,
306                                      struct Qdisc *qdisc);
307 extern void qdisc_reset(struct Qdisc *qdisc);
308 extern void qdisc_destroy(struct Qdisc *qdisc);
309 extern void qdisc_tree_decrease_qlen(struct Qdisc *qdisc, unsigned int n);
310 extern struct Qdisc *qdisc_alloc(struct netdev_queue *dev_queue,
311                                  struct Qdisc_ops *ops);
312 extern struct Qdisc *qdisc_create_dflt(struct net_device *dev,
313                                        struct netdev_queue *dev_queue,
314                                        struct Qdisc_ops *ops, u32 parentid);
315 extern void qdisc_calculate_pkt_len(struct sk_buff *skb,
316                                    struct qdisc_size_table *stab);
317 extern void tcf_destroy(struct tcf_proto *tp);
318 extern void tcf_destroy_chain(struct tcf_proto **fl);
319
320 /* Reset all TX qdiscs of a device.  */
321 static inline void qdisc_reset_all_tx(struct net_device *dev)
322 {
323         unsigned int i;
324         for (i = 0; i < dev->num_tx_queues; i++)
325                 qdisc_reset(netdev_get_tx_queue(dev, i)->qdisc);
326 }
327
328 /* Are all TX queues of the device empty?  */
329 static inline bool qdisc_all_tx_empty(const struct net_device *dev)
330 {
331         unsigned int i;
332         for (i = 0; i < dev->num_tx_queues; i++) {
333                 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
334                 const struct Qdisc *q = txq->qdisc;
335
336                 if (q->q.qlen)
337                         return false;
338         }
339         return true;
340 }
341
342 /* Are any of the TX qdiscs changing?  */
343 static inline bool qdisc_tx_changing(struct net_device *dev)
344 {
345         unsigned int i;
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 != txq->qdisc_sleeping)
349                         return true;
350         }
351         return false;
352 }
353
354 /* Is the device using the noop qdisc on all queues?  */
355 static inline bool qdisc_tx_is_noop(const struct net_device *dev)
356 {
357         unsigned int i;
358         for (i = 0; i < dev->num_tx_queues; i++) {
359                 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
360                 if (txq->qdisc != &noop_qdisc)
361                         return false;
362         }
363         return true;
364 }
365
366 static inline unsigned int qdisc_pkt_len(struct sk_buff *skb)
367 {
368         return qdisc_skb_cb(skb)->pkt_len;
369 }
370
371 /* additional qdisc xmit flags (NET_XMIT_MASK in linux/netdevice.h) */
372 enum net_xmit_qdisc_t {
373         __NET_XMIT_STOLEN = 0x00010000,
374         __NET_XMIT_BYPASS = 0x00020000,
375 };
376
377 #ifdef CONFIG_NET_CLS_ACT
378 #define net_xmit_drop_count(e)  ((e) & __NET_XMIT_STOLEN ? 0 : 1)
379 #else
380 #define net_xmit_drop_count(e)  (1)
381 #endif
382
383 static inline int qdisc_enqueue(struct sk_buff *skb, struct Qdisc *sch)
384 {
385 #ifdef CONFIG_NET_SCHED
386         if (sch->stab)
387                 qdisc_calculate_pkt_len(skb, sch->stab);
388 #endif
389         return sch->enqueue(skb, sch);
390 }
391
392 static inline int qdisc_enqueue_root(struct sk_buff *skb, struct Qdisc *sch)
393 {
394         qdisc_skb_cb(skb)->pkt_len = skb->len;
395         return qdisc_enqueue(skb, sch) & NET_XMIT_MASK;
396 }
397
398 static inline void __qdisc_update_bstats(struct Qdisc *sch, unsigned int len)
399 {
400         sch->bstats.bytes += len;
401         sch->bstats.packets++;
402 }
403
404 static inline int __qdisc_enqueue_tail(struct sk_buff *skb, struct Qdisc *sch,
405                                        struct sk_buff_head *list)
406 {
407         __skb_queue_tail(list, skb);
408         sch->qstats.backlog += qdisc_pkt_len(skb);
409         __qdisc_update_bstats(sch, qdisc_pkt_len(skb));
410
411         return NET_XMIT_SUCCESS;
412 }
413
414 static inline int qdisc_enqueue_tail(struct sk_buff *skb, struct Qdisc *sch)
415 {
416         return __qdisc_enqueue_tail(skb, sch, &sch->q);
417 }
418
419 static inline struct sk_buff *__qdisc_dequeue_head(struct Qdisc *sch,
420                                                    struct sk_buff_head *list)
421 {
422         struct sk_buff *skb = __skb_dequeue(list);
423
424         if (likely(skb != NULL))
425                 sch->qstats.backlog -= qdisc_pkt_len(skb);
426
427         return skb;
428 }
429
430 static inline struct sk_buff *qdisc_dequeue_head(struct Qdisc *sch)
431 {
432         return __qdisc_dequeue_head(sch, &sch->q);
433 }
434
435 static inline struct sk_buff *__qdisc_dequeue_tail(struct Qdisc *sch,
436                                                    struct sk_buff_head *list)
437 {
438         struct sk_buff *skb = __skb_dequeue_tail(list);
439
440         if (likely(skb != NULL))
441                 sch->qstats.backlog -= qdisc_pkt_len(skb);
442
443         return skb;
444 }
445
446 static inline struct sk_buff *qdisc_dequeue_tail(struct Qdisc *sch)
447 {
448         return __qdisc_dequeue_tail(sch, &sch->q);
449 }
450
451 static inline struct sk_buff *qdisc_peek_head(struct Qdisc *sch)
452 {
453         return skb_peek(&sch->q);
454 }
455
456 /* generic pseudo peek method for non-work-conserving qdisc */
457 static inline struct sk_buff *qdisc_peek_dequeued(struct Qdisc *sch)
458 {
459         /* we can reuse ->gso_skb because peek isn't called for root qdiscs */
460         if (!sch->gso_skb) {
461                 sch->gso_skb = sch->dequeue(sch);
462                 if (sch->gso_skb)
463                         /* it's still part of the queue */
464                         sch->q.qlen++;
465         }
466
467         return sch->gso_skb;
468 }
469
470 /* use instead of qdisc->dequeue() for all qdiscs queried with ->peek() */
471 static inline struct sk_buff *qdisc_dequeue_peeked(struct Qdisc *sch)
472 {
473         struct sk_buff *skb = sch->gso_skb;
474
475         if (skb) {
476                 sch->gso_skb = NULL;
477                 sch->q.qlen--;
478         } else {
479                 skb = sch->dequeue(sch);
480         }
481
482         return skb;
483 }
484
485 static inline void __qdisc_reset_queue(struct Qdisc *sch,
486                                        struct sk_buff_head *list)
487 {
488         /*
489          * We do not know the backlog in bytes of this list, it
490          * is up to the caller to correct it
491          */
492         __skb_queue_purge(list);
493 }
494
495 static inline void qdisc_reset_queue(struct Qdisc *sch)
496 {
497         __qdisc_reset_queue(sch, &sch->q);
498         sch->qstats.backlog = 0;
499 }
500
501 static inline unsigned int __qdisc_queue_drop(struct Qdisc *sch,
502                                               struct sk_buff_head *list)
503 {
504         struct sk_buff *skb = __qdisc_dequeue_tail(sch, list);
505
506         if (likely(skb != NULL)) {
507                 unsigned int len = qdisc_pkt_len(skb);
508                 kfree_skb(skb);
509                 return len;
510         }
511
512         return 0;
513 }
514
515 static inline unsigned int qdisc_queue_drop(struct Qdisc *sch)
516 {
517         return __qdisc_queue_drop(sch, &sch->q);
518 }
519
520 static inline int qdisc_drop(struct sk_buff *skb, struct Qdisc *sch)
521 {
522         kfree_skb(skb);
523         sch->qstats.drops++;
524
525         return NET_XMIT_DROP;
526 }
527
528 static inline int qdisc_reshape_fail(struct sk_buff *skb, struct Qdisc *sch)
529 {
530         sch->qstats.drops++;
531
532 #ifdef CONFIG_NET_CLS_ACT
533         if (sch->reshape_fail == NULL || sch->reshape_fail(skb, sch))
534                 goto drop;
535
536         return NET_XMIT_SUCCESS;
537
538 drop:
539 #endif
540         kfree_skb(skb);
541         return NET_XMIT_DROP;
542 }
543
544 /* Length to Time (L2T) lookup in a qdisc_rate_table, to determine how
545    long it will take to send a packet given its size.
546  */
547 static inline u32 qdisc_l2t(struct qdisc_rate_table* rtab, unsigned int pktlen)
548 {
549         int slot = pktlen + rtab->rate.cell_align + rtab->rate.overhead;
550         if (slot < 0)
551                 slot = 0;
552         slot >>= rtab->rate.cell_log;
553         if (slot > 255)
554                 return (rtab->data[255]*(slot >> 8) + rtab->data[slot & 0xFF]);
555         return rtab->data[slot];
556 }
557
558 #ifdef CONFIG_NET_CLS_ACT
559 static inline struct sk_buff *skb_act_clone(struct sk_buff *skb, gfp_t gfp_mask)
560 {
561         struct sk_buff *n = skb_clone(skb, gfp_mask);
562
563         if (n) {
564                 n->tc_verd = SET_TC_VERD(n->tc_verd, 0);
565                 n->tc_verd = CLR_TC_OK2MUNGE(n->tc_verd);
566                 n->tc_verd = CLR_TC_MUNGED(n->tc_verd);
567         }
568         return n;
569 }
570 #endif
571
572 #endif