Daniel Borkmann | 1f211a1 | 2016-01-07 22:29:47 +0100 | [diff] [blame] | 1 | /* net/sched/sch_ingress.c - Ingress and clsact qdisc |
| 2 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * This program is free software; you can redistribute it and/or |
| 4 | * modify it under the terms of the GNU General Public License |
| 5 | * as published by the Free Software Foundation; either version |
| 6 | * 2 of the License, or (at your option) any later version. |
| 7 | * |
| 8 | * Authors: Jamal Hadi Salim 1999 |
| 9 | */ |
| 10 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/module.h> |
| 12 | #include <linux/types.h> |
Patrick McHardy | 0ba4805 | 2007-07-02 22:49:07 -0700 | [diff] [blame] | 13 | #include <linux/list.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/skbuff.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/rtnetlink.h> |
Daniel Borkmann | d2788d3 | 2015-05-09 22:51:32 +0200 | [diff] [blame] | 16 | |
Arnaldo Carvalho de Melo | dc5fc57 | 2007-03-25 23:06:12 -0700 | [diff] [blame] | 17 | #include <net/netlink.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <net/pkt_sched.h> |
Jiri Pirko | cf1facd | 2017-02-09 14:38:56 +0100 | [diff] [blame] | 19 | #include <net/pkt_cls.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 21 | struct ingress_sched_data { |
| 22 | struct tcf_block *block; |
| 23 | }; |
| 24 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | static struct Qdisc *ingress_leaf(struct Qdisc *sch, unsigned long arg) |
| 26 | { |
| 27 | return NULL; |
| 28 | } |
| 29 | |
Patrick McHardy | 58f4df4 | 2008-01-21 00:11:01 -0800 | [diff] [blame] | 30 | static unsigned long ingress_get(struct Qdisc *sch, u32 classid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | return TC_H_MIN(classid) + 1; |
| 33 | } |
| 34 | |
Daniel Borkmann | 92c075d | 2016-06-06 22:50:39 +0200 | [diff] [blame] | 35 | static bool ingress_cl_offload(u32 classid) |
| 36 | { |
| 37 | return true; |
| 38 | } |
| 39 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | static unsigned long ingress_bind_filter(struct Qdisc *sch, |
Patrick McHardy | 58f4df4 | 2008-01-21 00:11:01 -0800 | [diff] [blame] | 41 | unsigned long parent, u32 classid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | { |
| 43 | return ingress_get(sch, classid); |
| 44 | } |
| 45 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | static void ingress_put(struct Qdisc *sch, unsigned long cl) |
| 47 | { |
| 48 | } |
| 49 | |
Patrick McHardy | 58f4df4 | 2008-01-21 00:11:01 -0800 | [diff] [blame] | 50 | static void ingress_walk(struct Qdisc *sch, struct qdisc_walker *walker) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | } |
| 53 | |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 54 | static struct tcf_block *ingress_tcf_block(struct Qdisc *sch, unsigned long cl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | { |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 56 | struct ingress_sched_data *q = qdisc_priv(sch); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 58 | return q->block; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | } |
| 60 | |
Daniel Borkmann | 4577139 | 2015-04-10 23:07:54 +0200 | [diff] [blame] | 61 | static int ingress_init(struct Qdisc *sch, struct nlattr *opt) |
| 62 | { |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 63 | struct ingress_sched_data *q = qdisc_priv(sch); |
| 64 | struct net_device *dev = qdisc_dev(sch); |
| 65 | int err; |
| 66 | |
| 67 | err = tcf_block_get(&q->block, &dev->ingress_cl_list); |
| 68 | if (err) |
| 69 | return err; |
| 70 | |
Daniel Borkmann | 4577139 | 2015-04-10 23:07:54 +0200 | [diff] [blame] | 71 | net_inc_ingress_queue(); |
Alexei Starovoitov | 087c1a6 | 2015-04-30 20:14:07 -0700 | [diff] [blame] | 72 | sch->flags |= TCQ_F_CPUSTATS; |
Daniel Borkmann | 4577139 | 2015-04-10 23:07:54 +0200 | [diff] [blame] | 73 | |
| 74 | return 0; |
| 75 | } |
| 76 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | static void ingress_destroy(struct Qdisc *sch) |
| 78 | { |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 79 | struct ingress_sched_data *q = qdisc_priv(sch); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 81 | tcf_block_put(q->block); |
Daniel Borkmann | 4577139 | 2015-04-10 23:07:54 +0200 | [diff] [blame] | 82 | net_dec_ingress_queue(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | } |
| 84 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | static int ingress_dump(struct Qdisc *sch, struct sk_buff *skb) |
| 86 | { |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 87 | struct nlattr *nest; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 89 | nest = nla_nest_start(skb, TCA_OPTIONS); |
| 90 | if (nest == NULL) |
| 91 | goto nla_put_failure; |
Daniel Borkmann | d2788d3 | 2015-05-09 22:51:32 +0200 | [diff] [blame] | 92 | |
Yang Yingliang | d59b7d8 | 2014-03-12 10:20:32 +0800 | [diff] [blame] | 93 | return nla_nest_end(skb, nest); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 95 | nla_put_failure: |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 96 | nla_nest_cancel(skb, nest); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | return -1; |
| 98 | } |
| 99 | |
Eric Dumazet | 20fea08 | 2007-11-14 01:44:41 -0800 | [diff] [blame] | 100 | static const struct Qdisc_class_ops ingress_class_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | .leaf = ingress_leaf, |
| 102 | .get = ingress_get, |
| 103 | .put = ingress_put, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | .walk = ingress_walk, |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 105 | .tcf_block = ingress_tcf_block, |
Daniel Borkmann | 92c075d | 2016-06-06 22:50:39 +0200 | [diff] [blame] | 106 | .tcf_cl_offload = ingress_cl_offload, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | .bind_tcf = ingress_bind_filter, |
| 108 | .unbind_tcf = ingress_put, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | }; |
| 110 | |
Eric Dumazet | 20fea08 | 2007-11-14 01:44:41 -0800 | [diff] [blame] | 111 | static struct Qdisc_ops ingress_qdisc_ops __read_mostly = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | .cl_ops = &ingress_class_ops, |
| 113 | .id = "ingress", |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 114 | .priv_size = sizeof(struct ingress_sched_data), |
Daniel Borkmann | 4577139 | 2015-04-10 23:07:54 +0200 | [diff] [blame] | 115 | .init = ingress_init, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | .destroy = ingress_destroy, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | .dump = ingress_dump, |
| 118 | .owner = THIS_MODULE, |
| 119 | }; |
| 120 | |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 121 | struct clsact_sched_data { |
| 122 | struct tcf_block *ingress_block; |
| 123 | struct tcf_block *egress_block; |
| 124 | }; |
| 125 | |
Daniel Borkmann | 1f211a1 | 2016-01-07 22:29:47 +0100 | [diff] [blame] | 126 | static unsigned long clsact_get(struct Qdisc *sch, u32 classid) |
| 127 | { |
| 128 | switch (TC_H_MIN(classid)) { |
| 129 | case TC_H_MIN(TC_H_MIN_INGRESS): |
| 130 | case TC_H_MIN(TC_H_MIN_EGRESS): |
| 131 | return TC_H_MIN(classid); |
| 132 | default: |
| 133 | return 0; |
| 134 | } |
| 135 | } |
| 136 | |
Daniel Borkmann | 92c075d | 2016-06-06 22:50:39 +0200 | [diff] [blame] | 137 | static bool clsact_cl_offload(u32 classid) |
| 138 | { |
| 139 | return TC_H_MIN(classid) == TC_H_MIN(TC_H_MIN_INGRESS); |
| 140 | } |
| 141 | |
Daniel Borkmann | 1f211a1 | 2016-01-07 22:29:47 +0100 | [diff] [blame] | 142 | static unsigned long clsact_bind_filter(struct Qdisc *sch, |
| 143 | unsigned long parent, u32 classid) |
| 144 | { |
| 145 | return clsact_get(sch, classid); |
| 146 | } |
| 147 | |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 148 | static struct tcf_block *clsact_tcf_block(struct Qdisc *sch, unsigned long cl) |
Daniel Borkmann | 1f211a1 | 2016-01-07 22:29:47 +0100 | [diff] [blame] | 149 | { |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 150 | struct clsact_sched_data *q = qdisc_priv(sch); |
Daniel Borkmann | 1f211a1 | 2016-01-07 22:29:47 +0100 | [diff] [blame] | 151 | |
| 152 | switch (cl) { |
| 153 | case TC_H_MIN(TC_H_MIN_INGRESS): |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 154 | return q->ingress_block; |
Daniel Borkmann | 1f211a1 | 2016-01-07 22:29:47 +0100 | [diff] [blame] | 155 | case TC_H_MIN(TC_H_MIN_EGRESS): |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 156 | return q->egress_block; |
Daniel Borkmann | 1f211a1 | 2016-01-07 22:29:47 +0100 | [diff] [blame] | 157 | default: |
| 158 | return NULL; |
| 159 | } |
| 160 | } |
| 161 | |
| 162 | static int clsact_init(struct Qdisc *sch, struct nlattr *opt) |
| 163 | { |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 164 | struct clsact_sched_data *q = qdisc_priv(sch); |
| 165 | struct net_device *dev = qdisc_dev(sch); |
| 166 | int err; |
| 167 | |
| 168 | err = tcf_block_get(&q->ingress_block, &dev->ingress_cl_list); |
| 169 | if (err) |
| 170 | return err; |
| 171 | |
| 172 | err = tcf_block_get(&q->egress_block, &dev->egress_cl_list); |
| 173 | if (err) |
| 174 | return err; |
| 175 | |
Daniel Borkmann | 1f211a1 | 2016-01-07 22:29:47 +0100 | [diff] [blame] | 176 | net_inc_ingress_queue(); |
| 177 | net_inc_egress_queue(); |
| 178 | |
| 179 | sch->flags |= TCQ_F_CPUSTATS; |
| 180 | |
| 181 | return 0; |
| 182 | } |
| 183 | |
| 184 | static void clsact_destroy(struct Qdisc *sch) |
| 185 | { |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 186 | struct clsact_sched_data *q = qdisc_priv(sch); |
Daniel Borkmann | 1f211a1 | 2016-01-07 22:29:47 +0100 | [diff] [blame] | 187 | |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 188 | tcf_block_put(q->egress_block); |
| 189 | tcf_block_put(q->ingress_block); |
Daniel Borkmann | 1f211a1 | 2016-01-07 22:29:47 +0100 | [diff] [blame] | 190 | |
| 191 | net_dec_ingress_queue(); |
| 192 | net_dec_egress_queue(); |
| 193 | } |
| 194 | |
| 195 | static const struct Qdisc_class_ops clsact_class_ops = { |
| 196 | .leaf = ingress_leaf, |
| 197 | .get = clsact_get, |
| 198 | .put = ingress_put, |
| 199 | .walk = ingress_walk, |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 200 | .tcf_block = clsact_tcf_block, |
Daniel Borkmann | 92c075d | 2016-06-06 22:50:39 +0200 | [diff] [blame] | 201 | .tcf_cl_offload = clsact_cl_offload, |
Daniel Borkmann | 1f211a1 | 2016-01-07 22:29:47 +0100 | [diff] [blame] | 202 | .bind_tcf = clsact_bind_filter, |
| 203 | .unbind_tcf = ingress_put, |
| 204 | }; |
| 205 | |
| 206 | static struct Qdisc_ops clsact_qdisc_ops __read_mostly = { |
| 207 | .cl_ops = &clsact_class_ops, |
| 208 | .id = "clsact", |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 209 | .priv_size = sizeof(struct clsact_sched_data), |
Daniel Borkmann | 1f211a1 | 2016-01-07 22:29:47 +0100 | [diff] [blame] | 210 | .init = clsact_init, |
| 211 | .destroy = clsact_destroy, |
| 212 | .dump = ingress_dump, |
| 213 | .owner = THIS_MODULE, |
| 214 | }; |
| 215 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | static int __init ingress_module_init(void) |
| 217 | { |
Daniel Borkmann | 1f211a1 | 2016-01-07 22:29:47 +0100 | [diff] [blame] | 218 | int ret; |
| 219 | |
| 220 | ret = register_qdisc(&ingress_qdisc_ops); |
| 221 | if (!ret) { |
| 222 | ret = register_qdisc(&clsact_qdisc_ops); |
| 223 | if (ret) |
| 224 | unregister_qdisc(&ingress_qdisc_ops); |
| 225 | } |
| 226 | |
| 227 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | } |
Patrick McHardy | 58f4df4 | 2008-01-21 00:11:01 -0800 | [diff] [blame] | 229 | |
YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 230 | static void __exit ingress_module_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | { |
| 232 | unregister_qdisc(&ingress_qdisc_ops); |
Daniel Borkmann | 1f211a1 | 2016-01-07 22:29:47 +0100 | [diff] [blame] | 233 | unregister_qdisc(&clsact_qdisc_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | } |
Patrick McHardy | 58f4df4 | 2008-01-21 00:11:01 -0800 | [diff] [blame] | 235 | |
Daniel Borkmann | d2788d3 | 2015-05-09 22:51:32 +0200 | [diff] [blame] | 236 | module_init(ingress_module_init); |
| 237 | module_exit(ingress_module_exit); |
| 238 | |
Daniel Borkmann | 1f211a1 | 2016-01-07 22:29:47 +0100 | [diff] [blame] | 239 | MODULE_ALIAS("sch_clsact"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | MODULE_LICENSE("GPL"); |