net: sched: introduce chain object to uapi
[linux-2.6-microblaze.git] / include / net / sch_generic.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __NET_SCHED_GENERIC_H
3 #define __NET_SCHED_GENERIC_H
4
5 #include <linux/netdevice.h>
6 #include <linux/types.h>
7 #include <linux/rcupdate.h>
8 #include <linux/pkt_sched.h>
9 #include <linux/pkt_cls.h>
10 #include <linux/percpu.h>
11 #include <linux/dynamic_queue_limits.h>
12 #include <linux/list.h>
13 #include <linux/refcount.h>
14 #include <linux/workqueue.h>
15 #include <net/gen_stats.h>
16 #include <net/rtnetlink.h>
17
18 struct Qdisc_ops;
19 struct qdisc_walker;
20 struct tcf_walker;
21 struct module;
22
23 typedef int tc_setup_cb_t(enum tc_setup_type type,
24                           void *type_data, void *cb_priv);
25
26 struct qdisc_rate_table {
27         struct tc_ratespec rate;
28         u32             data[256];
29         struct qdisc_rate_table *next;
30         int             refcnt;
31 };
32
33 enum qdisc_state_t {
34         __QDISC_STATE_SCHED,
35         __QDISC_STATE_DEACTIVATED,
36 };
37
38 struct qdisc_size_table {
39         struct rcu_head         rcu;
40         struct list_head        list;
41         struct tc_sizespec      szopts;
42         int                     refcnt;
43         u16                     data[];
44 };
45
46 /* similar to sk_buff_head, but skb->prev pointer is undefined. */
47 struct qdisc_skb_head {
48         struct sk_buff  *head;
49         struct sk_buff  *tail;
50         __u32           qlen;
51         spinlock_t      lock;
52 };
53
54 struct Qdisc {
55         int                     (*enqueue)(struct sk_buff *skb,
56                                            struct Qdisc *sch,
57                                            struct sk_buff **to_free);
58         struct sk_buff *        (*dequeue)(struct Qdisc *sch);
59         unsigned int            flags;
60 #define TCQ_F_BUILTIN           1
61 #define TCQ_F_INGRESS           2
62 #define TCQ_F_CAN_BYPASS        4
63 #define TCQ_F_MQROOT            8
64 #define TCQ_F_ONETXQUEUE        0x10 /* dequeue_skb() can assume all skbs are for
65                                       * q->dev_queue : It can test
66                                       * netif_xmit_frozen_or_stopped() before
67                                       * dequeueing next packet.
68                                       * Its true for MQ/MQPRIO slaves, or non
69                                       * multiqueue device.
70                                       */
71 #define TCQ_F_WARN_NONWC        (1 << 16)
72 #define TCQ_F_CPUSTATS          0x20 /* run using percpu statistics */
73 #define TCQ_F_NOPARENT          0x40 /* root of its hierarchy :
74                                       * qdisc_tree_decrease_qlen() should stop.
75                                       */
76 #define TCQ_F_INVISIBLE         0x80 /* invisible by default in dump */
77 #define TCQ_F_NOLOCK            0x100 /* qdisc does not require locking */
78 #define TCQ_F_OFFLOADED         0x200 /* qdisc is offloaded to HW */
79         u32                     limit;
80         const struct Qdisc_ops  *ops;
81         struct qdisc_size_table __rcu *stab;
82         struct hlist_node       hash;
83         u32                     handle;
84         u32                     parent;
85
86         struct netdev_queue     *dev_queue;
87
88         struct net_rate_estimator __rcu *rate_est;
89         struct gnet_stats_basic_cpu __percpu *cpu_bstats;
90         struct gnet_stats_queue __percpu *cpu_qstats;
91         int                     padded;
92         refcount_t              refcnt;
93
94         /*
95          * For performance sake on SMP, we put highly modified fields at the end
96          */
97         struct sk_buff_head     gso_skb ____cacheline_aligned_in_smp;
98         struct qdisc_skb_head   q;
99         struct gnet_stats_basic_packed bstats;
100         seqcount_t              running;
101         struct gnet_stats_queue qstats;
102         unsigned long           state;
103         struct Qdisc            *next_sched;
104         struct sk_buff_head     skb_bad_txq;
105
106         spinlock_t              busylock ____cacheline_aligned_in_smp;
107         spinlock_t              seqlock;
108 };
109
110 static inline void qdisc_refcount_inc(struct Qdisc *qdisc)
111 {
112         if (qdisc->flags & TCQ_F_BUILTIN)
113                 return;
114         refcount_inc(&qdisc->refcnt);
115 }
116
117 static inline bool qdisc_is_running(struct Qdisc *qdisc)
118 {
119         if (qdisc->flags & TCQ_F_NOLOCK)
120                 return spin_is_locked(&qdisc->seqlock);
121         return (raw_read_seqcount(&qdisc->running) & 1) ? true : false;
122 }
123
124 static inline bool qdisc_run_begin(struct Qdisc *qdisc)
125 {
126         if (qdisc->flags & TCQ_F_NOLOCK) {
127                 if (!spin_trylock(&qdisc->seqlock))
128                         return false;
129         } else if (qdisc_is_running(qdisc)) {
130                 return false;
131         }
132         /* Variant of write_seqcount_begin() telling lockdep a trylock
133          * was attempted.
134          */
135         raw_write_seqcount_begin(&qdisc->running);
136         seqcount_acquire(&qdisc->running.dep_map, 0, 1, _RET_IP_);
137         return true;
138 }
139
140 static inline void qdisc_run_end(struct Qdisc *qdisc)
141 {
142         write_seqcount_end(&qdisc->running);
143         if (qdisc->flags & TCQ_F_NOLOCK)
144                 spin_unlock(&qdisc->seqlock);
145 }
146
147 static inline bool qdisc_may_bulk(const struct Qdisc *qdisc)
148 {
149         return qdisc->flags & TCQ_F_ONETXQUEUE;
150 }
151
152 static inline int qdisc_avail_bulklimit(const struct netdev_queue *txq)
153 {
154 #ifdef CONFIG_BQL
155         /* Non-BQL migrated drivers will return 0, too. */
156         return dql_avail(&txq->dql);
157 #else
158         return 0;
159 #endif
160 }
161
162 struct Qdisc_class_ops {
163         /* Child qdisc manipulation */
164         struct netdev_queue *   (*select_queue)(struct Qdisc *, struct tcmsg *);
165         int                     (*graft)(struct Qdisc *, unsigned long cl,
166                                         struct Qdisc *, struct Qdisc **,
167                                         struct netlink_ext_ack *extack);
168         struct Qdisc *          (*leaf)(struct Qdisc *, unsigned long cl);
169         void                    (*qlen_notify)(struct Qdisc *, unsigned long);
170
171         /* Class manipulation routines */
172         unsigned long           (*find)(struct Qdisc *, u32 classid);
173         int                     (*change)(struct Qdisc *, u32, u32,
174                                         struct nlattr **, unsigned long *,
175                                         struct netlink_ext_ack *);
176         int                     (*delete)(struct Qdisc *, unsigned long);
177         void                    (*walk)(struct Qdisc *, struct qdisc_walker * arg);
178
179         /* Filter manipulation */
180         struct tcf_block *      (*tcf_block)(struct Qdisc *sch,
181                                              unsigned long arg,
182                                              struct netlink_ext_ack *extack);
183         unsigned long           (*bind_tcf)(struct Qdisc *, unsigned long,
184                                         u32 classid);
185         void                    (*unbind_tcf)(struct Qdisc *, unsigned long);
186
187         /* rtnetlink specific */
188         int                     (*dump)(struct Qdisc *, unsigned long,
189                                         struct sk_buff *skb, struct tcmsg*);
190         int                     (*dump_stats)(struct Qdisc *, unsigned long,
191                                         struct gnet_dump *);
192 };
193
194 struct Qdisc_ops {
195         struct Qdisc_ops        *next;
196         const struct Qdisc_class_ops    *cl_ops;
197         char                    id[IFNAMSIZ];
198         int                     priv_size;
199         unsigned int            static_flags;
200
201         int                     (*enqueue)(struct sk_buff *skb,
202                                            struct Qdisc *sch,
203                                            struct sk_buff **to_free);
204         struct sk_buff *        (*dequeue)(struct Qdisc *);
205         struct sk_buff *        (*peek)(struct Qdisc *);
206
207         int                     (*init)(struct Qdisc *sch, struct nlattr *arg,
208                                         struct netlink_ext_ack *extack);
209         void                    (*reset)(struct Qdisc *);
210         void                    (*destroy)(struct Qdisc *);
211         int                     (*change)(struct Qdisc *sch,
212                                           struct nlattr *arg,
213                                           struct netlink_ext_ack *extack);
214         void                    (*attach)(struct Qdisc *sch);
215         int                     (*change_tx_queue_len)(struct Qdisc *, unsigned int);
216
217         int                     (*dump)(struct Qdisc *, struct sk_buff *);
218         int                     (*dump_stats)(struct Qdisc *, struct gnet_dump *);
219
220         void                    (*ingress_block_set)(struct Qdisc *sch,
221                                                      u32 block_index);
222         void                    (*egress_block_set)(struct Qdisc *sch,
223                                                     u32 block_index);
224         u32                     (*ingress_block_get)(struct Qdisc *sch);
225         u32                     (*egress_block_get)(struct Qdisc *sch);
226
227         struct module           *owner;
228 };
229
230
231 struct tcf_result {
232         union {
233                 struct {
234                         unsigned long   class;
235                         u32             classid;
236                 };
237                 const struct tcf_proto *goto_tp;
238         };
239 };
240
241 struct tcf_proto_ops {
242         struct list_head        head;
243         char                    kind[IFNAMSIZ];
244
245         int                     (*classify)(struct sk_buff *,
246                                             const struct tcf_proto *,
247                                             struct tcf_result *);
248         int                     (*init)(struct tcf_proto*);
249         void                    (*destroy)(struct tcf_proto *tp,
250                                            struct netlink_ext_ack *extack);
251
252         void*                   (*get)(struct tcf_proto*, u32 handle);
253         int                     (*change)(struct net *net, struct sk_buff *,
254                                         struct tcf_proto*, unsigned long,
255                                         u32 handle, struct nlattr **,
256                                         void **, bool,
257                                         struct netlink_ext_ack *);
258         int                     (*delete)(struct tcf_proto *tp, void *arg,
259                                           bool *last,
260                                           struct netlink_ext_ack *);
261         void                    (*walk)(struct tcf_proto*, struct tcf_walker *arg);
262         int                     (*reoffload)(struct tcf_proto *tp, bool add,
263                                              tc_setup_cb_t *cb, void *cb_priv,
264                                              struct netlink_ext_ack *extack);
265         void                    (*bind_class)(void *, u32, unsigned long);
266
267         /* rtnetlink specific */
268         int                     (*dump)(struct net*, struct tcf_proto*, void *,
269                                         struct sk_buff *skb, struct tcmsg*);
270
271         struct module           *owner;
272 };
273
274 struct tcf_proto {
275         /* Fast access part */
276         struct tcf_proto __rcu  *next;
277         void __rcu              *root;
278         int                     (*classify)(struct sk_buff *,
279                                             const struct tcf_proto *,
280                                             struct tcf_result *);
281         __be16                  protocol;
282
283         /* All the rest */
284         u32                     prio;
285         void                    *data;
286         const struct tcf_proto_ops      *ops;
287         struct tcf_chain        *chain;
288         struct rcu_head         rcu;
289 };
290
291 struct qdisc_skb_cb {
292         unsigned int            pkt_len;
293         u16                     slave_dev_queue_mapping;
294         u16                     tc_classid;
295 #define QDISC_CB_PRIV_LEN 20
296         unsigned char           data[QDISC_CB_PRIV_LEN];
297 };
298
299 typedef void tcf_chain_head_change_t(struct tcf_proto *tp_head, void *priv);
300
301 struct tcf_chain {
302         struct tcf_proto __rcu *filter_chain;
303         struct list_head list;
304         struct tcf_block *block;
305         u32 index; /* chain index */
306         unsigned int refcnt;
307         bool explicitly_created;
308 };
309
310 struct tcf_block {
311         struct list_head chain_list;
312         u32 index; /* block index for shared blocks */
313         unsigned int refcnt;
314         struct net *net;
315         struct Qdisc *q;
316         struct list_head cb_list;
317         struct list_head owner_list;
318         bool keep_dst;
319         unsigned int offloadcnt; /* Number of oddloaded filters */
320         unsigned int nooffloaddevcnt; /* Number of devs unable to do offload */
321         struct {
322                 struct tcf_chain *chain;
323                 struct list_head filter_chain_list;
324         } chain0;
325 };
326
327 static inline void tcf_block_offload_inc(struct tcf_block *block, u32 *flags)
328 {
329         if (*flags & TCA_CLS_FLAGS_IN_HW)
330                 return;
331         *flags |= TCA_CLS_FLAGS_IN_HW;
332         block->offloadcnt++;
333 }
334
335 static inline void tcf_block_offload_dec(struct tcf_block *block, u32 *flags)
336 {
337         if (!(*flags & TCA_CLS_FLAGS_IN_HW))
338                 return;
339         *flags &= ~TCA_CLS_FLAGS_IN_HW;
340         block->offloadcnt--;
341 }
342
343 static inline void
344 tc_cls_offload_cnt_update(struct tcf_block *block, unsigned int *cnt,
345                           u32 *flags, bool add)
346 {
347         if (add) {
348                 if (!*cnt)
349                         tcf_block_offload_inc(block, flags);
350                 (*cnt)++;
351         } else {
352                 (*cnt)--;
353                 if (!*cnt)
354                         tcf_block_offload_dec(block, flags);
355         }
356 }
357
358 static inline void qdisc_cb_private_validate(const struct sk_buff *skb, int sz)
359 {
360         struct qdisc_skb_cb *qcb;
361
362         BUILD_BUG_ON(sizeof(skb->cb) < offsetof(struct qdisc_skb_cb, data) + sz);
363         BUILD_BUG_ON(sizeof(qcb->data) < sz);
364 }
365
366 static inline int qdisc_qlen_cpu(const struct Qdisc *q)
367 {
368         return this_cpu_ptr(q->cpu_qstats)->qlen;
369 }
370
371 static inline int qdisc_qlen(const struct Qdisc *q)
372 {
373         return q->q.qlen;
374 }
375
376 static inline int qdisc_qlen_sum(const struct Qdisc *q)
377 {
378         __u32 qlen = q->qstats.qlen;
379         int i;
380
381         if (q->flags & TCQ_F_NOLOCK) {
382                 for_each_possible_cpu(i)
383                         qlen += per_cpu_ptr(q->cpu_qstats, i)->qlen;
384         } else {
385                 qlen += q->q.qlen;
386         }
387
388         return qlen;
389 }
390
391 static inline struct qdisc_skb_cb *qdisc_skb_cb(const struct sk_buff *skb)
392 {
393         return (struct qdisc_skb_cb *)skb->cb;
394 }
395
396 static inline spinlock_t *qdisc_lock(struct Qdisc *qdisc)
397 {
398         return &qdisc->q.lock;
399 }
400
401 static inline struct Qdisc *qdisc_root(const struct Qdisc *qdisc)
402 {
403         struct Qdisc *q = rcu_dereference_rtnl(qdisc->dev_queue->qdisc);
404
405         return q;
406 }
407
408 static inline struct Qdisc *qdisc_root_sleeping(const struct Qdisc *qdisc)
409 {
410         return qdisc->dev_queue->qdisc_sleeping;
411 }
412
413 /* The qdisc root lock is a mechanism by which to top level
414  * of a qdisc tree can be locked from any qdisc node in the
415  * forest.  This allows changing the configuration of some
416  * aspect of the qdisc tree while blocking out asynchronous
417  * qdisc access in the packet processing paths.
418  *
419  * It is only legal to do this when the root will not change
420  * on us.  Otherwise we'll potentially lock the wrong qdisc
421  * root.  This is enforced by holding the RTNL semaphore, which
422  * all users of this lock accessor must do.
423  */
424 static inline spinlock_t *qdisc_root_lock(const struct Qdisc *qdisc)
425 {
426         struct Qdisc *root = qdisc_root(qdisc);
427
428         ASSERT_RTNL();
429         return qdisc_lock(root);
430 }
431
432 static inline spinlock_t *qdisc_root_sleeping_lock(const struct Qdisc *qdisc)
433 {
434         struct Qdisc *root = qdisc_root_sleeping(qdisc);
435
436         ASSERT_RTNL();
437         return qdisc_lock(root);
438 }
439
440 static inline seqcount_t *qdisc_root_sleeping_running(const struct Qdisc *qdisc)
441 {
442         struct Qdisc *root = qdisc_root_sleeping(qdisc);
443
444         ASSERT_RTNL();
445         return &root->running;
446 }
447
448 static inline struct net_device *qdisc_dev(const struct Qdisc *qdisc)
449 {
450         return qdisc->dev_queue->dev;
451 }
452
453 static inline void sch_tree_lock(const struct Qdisc *q)
454 {
455         spin_lock_bh(qdisc_root_sleeping_lock(q));
456 }
457
458 static inline void sch_tree_unlock(const struct Qdisc *q)
459 {
460         spin_unlock_bh(qdisc_root_sleeping_lock(q));
461 }
462
463 extern struct Qdisc noop_qdisc;
464 extern struct Qdisc_ops noop_qdisc_ops;
465 extern struct Qdisc_ops pfifo_fast_ops;
466 extern struct Qdisc_ops mq_qdisc_ops;
467 extern struct Qdisc_ops noqueue_qdisc_ops;
468 extern const struct Qdisc_ops *default_qdisc_ops;
469 static inline const struct Qdisc_ops *
470 get_default_qdisc_ops(const struct net_device *dev, int ntx)
471 {
472         return ntx < dev->real_num_tx_queues ?
473                         default_qdisc_ops : &pfifo_fast_ops;
474 }
475
476 struct Qdisc_class_common {
477         u32                     classid;
478         struct hlist_node       hnode;
479 };
480
481 struct Qdisc_class_hash {
482         struct hlist_head       *hash;
483         unsigned int            hashsize;
484         unsigned int            hashmask;
485         unsigned int            hashelems;
486 };
487
488 static inline unsigned int qdisc_class_hash(u32 id, u32 mask)
489 {
490         id ^= id >> 8;
491         id ^= id >> 4;
492         return id & mask;
493 }
494
495 static inline struct Qdisc_class_common *
496 qdisc_class_find(const struct Qdisc_class_hash *hash, u32 id)
497 {
498         struct Qdisc_class_common *cl;
499         unsigned int h;
500
501         if (!id)
502                 return NULL;
503
504         h = qdisc_class_hash(id, hash->hashmask);
505         hlist_for_each_entry(cl, &hash->hash[h], hnode) {
506                 if (cl->classid == id)
507                         return cl;
508         }
509         return NULL;
510 }
511
512 static inline int tc_classid_to_hwtc(struct net_device *dev, u32 classid)
513 {
514         u32 hwtc = TC_H_MIN(classid) - TC_H_MIN_PRIORITY;
515
516         return (hwtc < netdev_get_num_tc(dev)) ? hwtc : -EINVAL;
517 }
518
519 int qdisc_class_hash_init(struct Qdisc_class_hash *);
520 void qdisc_class_hash_insert(struct Qdisc_class_hash *,
521                              struct Qdisc_class_common *);
522 void qdisc_class_hash_remove(struct Qdisc_class_hash *,
523                              struct Qdisc_class_common *);
524 void qdisc_class_hash_grow(struct Qdisc *, struct Qdisc_class_hash *);
525 void qdisc_class_hash_destroy(struct Qdisc_class_hash *);
526
527 int dev_qdisc_change_tx_queue_len(struct net_device *dev);
528 void dev_init_scheduler(struct net_device *dev);
529 void dev_shutdown(struct net_device *dev);
530 void dev_activate(struct net_device *dev);
531 void dev_deactivate(struct net_device *dev);
532 void dev_deactivate_many(struct list_head *head);
533 struct Qdisc *dev_graft_qdisc(struct netdev_queue *dev_queue,
534                               struct Qdisc *qdisc);
535 void qdisc_reset(struct Qdisc *qdisc);
536 void qdisc_destroy(struct Qdisc *qdisc);
537 void qdisc_tree_reduce_backlog(struct Qdisc *qdisc, unsigned int n,
538                                unsigned int len);
539 struct Qdisc *qdisc_alloc(struct netdev_queue *dev_queue,
540                           const struct Qdisc_ops *ops,
541                           struct netlink_ext_ack *extack);
542 void qdisc_free(struct Qdisc *qdisc);
543 struct Qdisc *qdisc_create_dflt(struct netdev_queue *dev_queue,
544                                 const struct Qdisc_ops *ops, u32 parentid,
545                                 struct netlink_ext_ack *extack);
546 void __qdisc_calculate_pkt_len(struct sk_buff *skb,
547                                const struct qdisc_size_table *stab);
548 int skb_do_redirect(struct sk_buff *);
549
550 static inline void skb_reset_tc(struct sk_buff *skb)
551 {
552 #ifdef CONFIG_NET_CLS_ACT
553         skb->tc_redirected = 0;
554 #endif
555 }
556
557 static inline bool skb_at_tc_ingress(const struct sk_buff *skb)
558 {
559 #ifdef CONFIG_NET_CLS_ACT
560         return skb->tc_at_ingress;
561 #else
562         return false;
563 #endif
564 }
565
566 static inline bool skb_skip_tc_classify(struct sk_buff *skb)
567 {
568 #ifdef CONFIG_NET_CLS_ACT
569         if (skb->tc_skip_classify) {
570                 skb->tc_skip_classify = 0;
571                 return true;
572         }
573 #endif
574         return false;
575 }
576
577 /* Reset all TX qdiscs greater than index of a device.  */
578 static inline void qdisc_reset_all_tx_gt(struct net_device *dev, unsigned int i)
579 {
580         struct Qdisc *qdisc;
581
582         for (; i < dev->num_tx_queues; i++) {
583                 qdisc = rtnl_dereference(netdev_get_tx_queue(dev, i)->qdisc);
584                 if (qdisc) {
585                         spin_lock_bh(qdisc_lock(qdisc));
586                         qdisc_reset(qdisc);
587                         spin_unlock_bh(qdisc_lock(qdisc));
588                 }
589         }
590 }
591
592 static inline void qdisc_reset_all_tx(struct net_device *dev)
593 {
594         qdisc_reset_all_tx_gt(dev, 0);
595 }
596
597 /* Are all TX queues of the device empty?  */
598 static inline bool qdisc_all_tx_empty(const struct net_device *dev)
599 {
600         unsigned int i;
601
602         rcu_read_lock();
603         for (i = 0; i < dev->num_tx_queues; i++) {
604                 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
605                 const struct Qdisc *q = rcu_dereference(txq->qdisc);
606
607                 if (q->q.qlen) {
608                         rcu_read_unlock();
609                         return false;
610                 }
611         }
612         rcu_read_unlock();
613         return true;
614 }
615
616 /* Are any of the TX qdiscs changing?  */
617 static inline bool qdisc_tx_changing(const struct net_device *dev)
618 {
619         unsigned int i;
620
621         for (i = 0; i < dev->num_tx_queues; i++) {
622                 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
623                 if (rcu_access_pointer(txq->qdisc) != txq->qdisc_sleeping)
624                         return true;
625         }
626         return false;
627 }
628
629 /* Is the device using the noop qdisc on all queues?  */
630 static inline bool qdisc_tx_is_noop(const struct net_device *dev)
631 {
632         unsigned int i;
633
634         for (i = 0; i < dev->num_tx_queues; i++) {
635                 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
636                 if (rcu_access_pointer(txq->qdisc) != &noop_qdisc)
637                         return false;
638         }
639         return true;
640 }
641
642 static inline unsigned int qdisc_pkt_len(const struct sk_buff *skb)
643 {
644         return qdisc_skb_cb(skb)->pkt_len;
645 }
646
647 /* additional qdisc xmit flags (NET_XMIT_MASK in linux/netdevice.h) */
648 enum net_xmit_qdisc_t {
649         __NET_XMIT_STOLEN = 0x00010000,
650         __NET_XMIT_BYPASS = 0x00020000,
651 };
652
653 #ifdef CONFIG_NET_CLS_ACT
654 #define net_xmit_drop_count(e)  ((e) & __NET_XMIT_STOLEN ? 0 : 1)
655 #else
656 #define net_xmit_drop_count(e)  (1)
657 #endif
658
659 static inline void qdisc_calculate_pkt_len(struct sk_buff *skb,
660                                            const struct Qdisc *sch)
661 {
662 #ifdef CONFIG_NET_SCHED
663         struct qdisc_size_table *stab = rcu_dereference_bh(sch->stab);
664
665         if (stab)
666                 __qdisc_calculate_pkt_len(skb, stab);
667 #endif
668 }
669
670 static inline int qdisc_enqueue(struct sk_buff *skb, struct Qdisc *sch,
671                                 struct sk_buff **to_free)
672 {
673         qdisc_calculate_pkt_len(skb, sch);
674         return sch->enqueue(skb, sch, to_free);
675 }
676
677 static inline bool qdisc_is_percpu_stats(const struct Qdisc *q)
678 {
679         return q->flags & TCQ_F_CPUSTATS;
680 }
681
682 static inline void _bstats_update(struct gnet_stats_basic_packed *bstats,
683                                   __u64 bytes, __u32 packets)
684 {
685         bstats->bytes += bytes;
686         bstats->packets += packets;
687 }
688
689 static inline void bstats_update(struct gnet_stats_basic_packed *bstats,
690                                  const struct sk_buff *skb)
691 {
692         _bstats_update(bstats,
693                        qdisc_pkt_len(skb),
694                        skb_is_gso(skb) ? skb_shinfo(skb)->gso_segs : 1);
695 }
696
697 static inline void _bstats_cpu_update(struct gnet_stats_basic_cpu *bstats,
698                                       __u64 bytes, __u32 packets)
699 {
700         u64_stats_update_begin(&bstats->syncp);
701         _bstats_update(&bstats->bstats, bytes, packets);
702         u64_stats_update_end(&bstats->syncp);
703 }
704
705 static inline void bstats_cpu_update(struct gnet_stats_basic_cpu *bstats,
706                                      const struct sk_buff *skb)
707 {
708         u64_stats_update_begin(&bstats->syncp);
709         bstats_update(&bstats->bstats, skb);
710         u64_stats_update_end(&bstats->syncp);
711 }
712
713 static inline void qdisc_bstats_cpu_update(struct Qdisc *sch,
714                                            const struct sk_buff *skb)
715 {
716         bstats_cpu_update(this_cpu_ptr(sch->cpu_bstats), skb);
717 }
718
719 static inline void qdisc_bstats_update(struct Qdisc *sch,
720                                        const struct sk_buff *skb)
721 {
722         bstats_update(&sch->bstats, skb);
723 }
724
725 static inline void qdisc_qstats_backlog_dec(struct Qdisc *sch,
726                                             const struct sk_buff *skb)
727 {
728         sch->qstats.backlog -= qdisc_pkt_len(skb);
729 }
730
731 static inline void qdisc_qstats_cpu_backlog_dec(struct Qdisc *sch,
732                                                 const struct sk_buff *skb)
733 {
734         this_cpu_sub(sch->cpu_qstats->backlog, qdisc_pkt_len(skb));
735 }
736
737 static inline void qdisc_qstats_backlog_inc(struct Qdisc *sch,
738                                             const struct sk_buff *skb)
739 {
740         sch->qstats.backlog += qdisc_pkt_len(skb);
741 }
742
743 static inline void qdisc_qstats_cpu_backlog_inc(struct Qdisc *sch,
744                                                 const struct sk_buff *skb)
745 {
746         this_cpu_add(sch->cpu_qstats->backlog, qdisc_pkt_len(skb));
747 }
748
749 static inline void qdisc_qstats_cpu_qlen_inc(struct Qdisc *sch)
750 {
751         this_cpu_inc(sch->cpu_qstats->qlen);
752 }
753
754 static inline void qdisc_qstats_cpu_qlen_dec(struct Qdisc *sch)
755 {
756         this_cpu_dec(sch->cpu_qstats->qlen);
757 }
758
759 static inline void qdisc_qstats_cpu_requeues_inc(struct Qdisc *sch)
760 {
761         this_cpu_inc(sch->cpu_qstats->requeues);
762 }
763
764 static inline void __qdisc_qstats_drop(struct Qdisc *sch, int count)
765 {
766         sch->qstats.drops += count;
767 }
768
769 static inline void qstats_drop_inc(struct gnet_stats_queue *qstats)
770 {
771         qstats->drops++;
772 }
773
774 static inline void qstats_overlimit_inc(struct gnet_stats_queue *qstats)
775 {
776         qstats->overlimits++;
777 }
778
779 static inline void qdisc_qstats_drop(struct Qdisc *sch)
780 {
781         qstats_drop_inc(&sch->qstats);
782 }
783
784 static inline void qdisc_qstats_cpu_drop(struct Qdisc *sch)
785 {
786         this_cpu_inc(sch->cpu_qstats->drops);
787 }
788
789 static inline void qdisc_qstats_overlimit(struct Qdisc *sch)
790 {
791         sch->qstats.overlimits++;
792 }
793
794 static inline void qdisc_skb_head_init(struct qdisc_skb_head *qh)
795 {
796         qh->head = NULL;
797         qh->tail = NULL;
798         qh->qlen = 0;
799 }
800
801 static inline int __qdisc_enqueue_tail(struct sk_buff *skb, struct Qdisc *sch,
802                                        struct qdisc_skb_head *qh)
803 {
804         struct sk_buff *last = qh->tail;
805
806         if (last) {
807                 skb->next = NULL;
808                 last->next = skb;
809                 qh->tail = skb;
810         } else {
811                 qh->tail = skb;
812                 qh->head = skb;
813         }
814         qh->qlen++;
815         qdisc_qstats_backlog_inc(sch, skb);
816
817         return NET_XMIT_SUCCESS;
818 }
819
820 static inline int qdisc_enqueue_tail(struct sk_buff *skb, struct Qdisc *sch)
821 {
822         return __qdisc_enqueue_tail(skb, sch, &sch->q);
823 }
824
825 static inline struct sk_buff *__qdisc_dequeue_head(struct qdisc_skb_head *qh)
826 {
827         struct sk_buff *skb = qh->head;
828
829         if (likely(skb != NULL)) {
830                 qh->head = skb->next;
831                 qh->qlen--;
832                 if (qh->head == NULL)
833                         qh->tail = NULL;
834                 skb->next = NULL;
835         }
836
837         return skb;
838 }
839
840 static inline struct sk_buff *qdisc_dequeue_head(struct Qdisc *sch)
841 {
842         struct sk_buff *skb = __qdisc_dequeue_head(&sch->q);
843
844         if (likely(skb != NULL)) {
845                 qdisc_qstats_backlog_dec(sch, skb);
846                 qdisc_bstats_update(sch, skb);
847         }
848
849         return skb;
850 }
851
852 /* Instead of calling kfree_skb() while root qdisc lock is held,
853  * queue the skb for future freeing at end of __dev_xmit_skb()
854  */
855 static inline void __qdisc_drop(struct sk_buff *skb, struct sk_buff **to_free)
856 {
857         skb->next = *to_free;
858         *to_free = skb;
859 }
860
861 static inline void __qdisc_drop_all(struct sk_buff *skb,
862                                     struct sk_buff **to_free)
863 {
864         if (skb->prev)
865                 skb->prev->next = *to_free;
866         else
867                 skb->next = *to_free;
868         *to_free = skb;
869 }
870
871 static inline unsigned int __qdisc_queue_drop_head(struct Qdisc *sch,
872                                                    struct qdisc_skb_head *qh,
873                                                    struct sk_buff **to_free)
874 {
875         struct sk_buff *skb = __qdisc_dequeue_head(qh);
876
877         if (likely(skb != NULL)) {
878                 unsigned int len = qdisc_pkt_len(skb);
879
880                 qdisc_qstats_backlog_dec(sch, skb);
881                 __qdisc_drop(skb, to_free);
882                 return len;
883         }
884
885         return 0;
886 }
887
888 static inline unsigned int qdisc_queue_drop_head(struct Qdisc *sch,
889                                                  struct sk_buff **to_free)
890 {
891         return __qdisc_queue_drop_head(sch, &sch->q, to_free);
892 }
893
894 static inline struct sk_buff *qdisc_peek_head(struct Qdisc *sch)
895 {
896         const struct qdisc_skb_head *qh = &sch->q;
897
898         return qh->head;
899 }
900
901 /* generic pseudo peek method for non-work-conserving qdisc */
902 static inline struct sk_buff *qdisc_peek_dequeued(struct Qdisc *sch)
903 {
904         struct sk_buff *skb = skb_peek(&sch->gso_skb);
905
906         /* we can reuse ->gso_skb because peek isn't called for root qdiscs */
907         if (!skb) {
908                 skb = sch->dequeue(sch);
909
910                 if (skb) {
911                         __skb_queue_head(&sch->gso_skb, skb);
912                         /* it's still part of the queue */
913                         qdisc_qstats_backlog_inc(sch, skb);
914                         sch->q.qlen++;
915                 }
916         }
917
918         return skb;
919 }
920
921 /* use instead of qdisc->dequeue() for all qdiscs queried with ->peek() */
922 static inline struct sk_buff *qdisc_dequeue_peeked(struct Qdisc *sch)
923 {
924         struct sk_buff *skb = skb_peek(&sch->gso_skb);
925
926         if (skb) {
927                 skb = __skb_dequeue(&sch->gso_skb);
928                 qdisc_qstats_backlog_dec(sch, skb);
929                 sch->q.qlen--;
930         } else {
931                 skb = sch->dequeue(sch);
932         }
933
934         return skb;
935 }
936
937 static inline void __qdisc_reset_queue(struct qdisc_skb_head *qh)
938 {
939         /*
940          * We do not know the backlog in bytes of this list, it
941          * is up to the caller to correct it
942          */
943         ASSERT_RTNL();
944         if (qh->qlen) {
945                 rtnl_kfree_skbs(qh->head, qh->tail);
946
947                 qh->head = NULL;
948                 qh->tail = NULL;
949                 qh->qlen = 0;
950         }
951 }
952
953 static inline void qdisc_reset_queue(struct Qdisc *sch)
954 {
955         __qdisc_reset_queue(&sch->q);
956         sch->qstats.backlog = 0;
957 }
958
959 static inline struct Qdisc *qdisc_replace(struct Qdisc *sch, struct Qdisc *new,
960                                           struct Qdisc **pold)
961 {
962         struct Qdisc *old;
963
964         sch_tree_lock(sch);
965         old = *pold;
966         *pold = new;
967         if (old != NULL) {
968                 unsigned int qlen = old->q.qlen;
969                 unsigned int backlog = old->qstats.backlog;
970
971                 qdisc_reset(old);
972                 qdisc_tree_reduce_backlog(old, qlen, backlog);
973         }
974         sch_tree_unlock(sch);
975
976         return old;
977 }
978
979 static inline void rtnl_qdisc_drop(struct sk_buff *skb, struct Qdisc *sch)
980 {
981         rtnl_kfree_skbs(skb, skb);
982         qdisc_qstats_drop(sch);
983 }
984
985 static inline int qdisc_drop_cpu(struct sk_buff *skb, struct Qdisc *sch,
986                                  struct sk_buff **to_free)
987 {
988         __qdisc_drop(skb, to_free);
989         qdisc_qstats_cpu_drop(sch);
990
991         return NET_XMIT_DROP;
992 }
993
994 static inline int qdisc_drop(struct sk_buff *skb, struct Qdisc *sch,
995                              struct sk_buff **to_free)
996 {
997         __qdisc_drop(skb, to_free);
998         qdisc_qstats_drop(sch);
999
1000         return NET_XMIT_DROP;
1001 }
1002
1003 static inline int qdisc_drop_all(struct sk_buff *skb, struct Qdisc *sch,
1004                                  struct sk_buff **to_free)
1005 {
1006         __qdisc_drop_all(skb, to_free);
1007         qdisc_qstats_drop(sch);
1008
1009         return NET_XMIT_DROP;
1010 }
1011
1012 /* Length to Time (L2T) lookup in a qdisc_rate_table, to determine how
1013    long it will take to send a packet given its size.
1014  */
1015 static inline u32 qdisc_l2t(struct qdisc_rate_table* rtab, unsigned int pktlen)
1016 {
1017         int slot = pktlen + rtab->rate.cell_align + rtab->rate.overhead;
1018         if (slot < 0)
1019                 slot = 0;
1020         slot >>= rtab->rate.cell_log;
1021         if (slot > 255)
1022                 return rtab->data[255]*(slot >> 8) + rtab->data[slot & 0xFF];
1023         return rtab->data[slot];
1024 }
1025
1026 struct psched_ratecfg {
1027         u64     rate_bytes_ps; /* bytes per second */
1028         u32     mult;
1029         u16     overhead;
1030         u8      linklayer;
1031         u8      shift;
1032 };
1033
1034 static inline u64 psched_l2t_ns(const struct psched_ratecfg *r,
1035                                 unsigned int len)
1036 {
1037         len += r->overhead;
1038
1039         if (unlikely(r->linklayer == TC_LINKLAYER_ATM))
1040                 return ((u64)(DIV_ROUND_UP(len,48)*53) * r->mult) >> r->shift;
1041
1042         return ((u64)len * r->mult) >> r->shift;
1043 }
1044
1045 void psched_ratecfg_precompute(struct psched_ratecfg *r,
1046                                const struct tc_ratespec *conf,
1047                                u64 rate64);
1048
1049 static inline void psched_ratecfg_getrate(struct tc_ratespec *res,
1050                                           const struct psched_ratecfg *r)
1051 {
1052         memset(res, 0, sizeof(*res));
1053
1054         /* legacy struct tc_ratespec has a 32bit @rate field
1055          * Qdisc using 64bit rate should add new attributes
1056          * in order to maintain compatibility.
1057          */
1058         res->rate = min_t(u64, r->rate_bytes_ps, ~0U);
1059
1060         res->overhead = r->overhead;
1061         res->linklayer = (r->linklayer & TC_LINKLAYER_MASK);
1062 }
1063
1064 /* Mini Qdisc serves for specific needs of ingress/clsact Qdisc.
1065  * The fast path only needs to access filter list and to update stats
1066  */
1067 struct mini_Qdisc {
1068         struct tcf_proto *filter_list;
1069         struct gnet_stats_basic_cpu __percpu *cpu_bstats;
1070         struct gnet_stats_queue __percpu *cpu_qstats;
1071         struct rcu_head rcu;
1072 };
1073
1074 static inline void mini_qdisc_bstats_cpu_update(struct mini_Qdisc *miniq,
1075                                                 const struct sk_buff *skb)
1076 {
1077         bstats_cpu_update(this_cpu_ptr(miniq->cpu_bstats), skb);
1078 }
1079
1080 static inline void mini_qdisc_qstats_cpu_drop(struct mini_Qdisc *miniq)
1081 {
1082         this_cpu_inc(miniq->cpu_qstats->drops);
1083 }
1084
1085 struct mini_Qdisc_pair {
1086         struct mini_Qdisc miniq1;
1087         struct mini_Qdisc miniq2;
1088         struct mini_Qdisc __rcu **p_miniq;
1089 };
1090
1091 void mini_qdisc_pair_swap(struct mini_Qdisc_pair *miniqp,
1092                           struct tcf_proto *tp_head);
1093 void mini_qdisc_pair_init(struct mini_Qdisc_pair *miniqp, struct Qdisc *qdisc,
1094                           struct mini_Qdisc __rcu **p_miniq);
1095
1096 #endif