]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - net/sched/act_police.c
Merge branch 'x86-seccomp-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[mirror_ubuntu-bionic-kernel.git] / net / sched / act_police.c
CommitLineData
1da177e4
LT
1/*
2 * net/sched/police.c Input police filter.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
9 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
10 * J Hadi Salim (action changes)
11 */
12
1da177e4
LT
13#include <linux/module.h>
14#include <linux/types.h>
15#include <linux/kernel.h>
1da177e4 16#include <linux/string.h>
1da177e4 17#include <linux/errno.h>
1da177e4 18#include <linux/skbuff.h>
1da177e4
LT
19#include <linux/rtnetlink.h>
20#include <linux/init.h>
5a0e3ad6 21#include <linux/slab.h>
1da177e4 22#include <net/act_api.h>
dc5fc579 23#include <net/netlink.h>
1da177e4 24
0e243218
JP
25struct tcf_police {
26 struct tcf_common common;
27 int tcfp_result;
28 u32 tcfp_ewma_rate;
c6d14ff1 29 s64 tcfp_burst;
0e243218 30 u32 tcfp_mtu;
c6d14ff1
JP
31 s64 tcfp_toks;
32 s64 tcfp_ptoks;
33 s64 tcfp_mtu_ptoks;
34 s64 tcfp_t_c;
35 struct psched_ratecfg rate;
36 bool rate_present;
37 struct psched_ratecfg peak;
38 bool peak_present;
0e243218
JP
39};
40#define to_police(pc) \
41 container_of(pc, struct tcf_police, common)
42
e9ce1cd3 43#define POL_TAB_MASK 15
1da177e4 44
1e9b3d53 45/* old policer structure from before tc actions */
cc7ec456 46struct tc_police_compat {
1e9b3d53
PM
47 u32 index;
48 int action;
49 u32 limit;
50 u32 burst;
51 u32 mtu;
52 struct tc_ratespec rate;
53 struct tc_ratespec peakrate;
54};
55
e9ce1cd3 56/* Each policer is serialized by its individual spinlock */
1da177e4 57
83b950c8 58static int tcf_act_police_walker(struct sk_buff *skb, struct netlink_callback *cb,
10297b99 59 int type, struct tc_action *a)
1da177e4 60{
c779f7af 61 struct tcf_hashinfo *hinfo = a->ops->hinfo;
89819dc0 62 struct hlist_head *head;
e9ce1cd3 63 struct tcf_common *p;
1da177e4 64 int err = 0, index = -1, i = 0, s_i = 0, n_i = 0;
4b3550ef 65 struct nlattr *nest;
1da177e4 66
c779f7af 67 spin_lock_bh(&hinfo->lock);
1da177e4
LT
68
69 s_i = cb->args[0];
70
e9ce1cd3 71 for (i = 0; i < (POL_TAB_MASK + 1); i++) {
c779f7af 72 head = &hinfo->htab[tcf_hash(i, POL_TAB_MASK)];
1da177e4 73
89819dc0 74 hlist_for_each_entry_rcu(p, head, tcfc_head) {
1da177e4
LT
75 index++;
76 if (index < s_i)
77 continue;
78 a->priv = p;
79 a->order = index;
4b3550ef
PM
80 nest = nla_nest_start(skb, a->order);
81 if (nest == NULL)
82 goto nla_put_failure;
1da177e4
LT
83 if (type == RTM_DELACTION)
84 err = tcf_action_dump_1(skb, a, 0, 1);
85 else
86 err = tcf_action_dump_1(skb, a, 0, 0);
87 if (err < 0) {
88 index--;
4b3550ef 89 nla_nest_cancel(skb, nest);
1da177e4
LT
90 goto done;
91 }
4b3550ef 92 nla_nest_end(skb, nest);
1da177e4
LT
93 n_i++;
94 }
95 }
96done:
c779f7af 97 spin_unlock_bh(&hinfo->lock);
1da177e4
LT
98 if (n_i)
99 cb->args[0] += n_i;
100 return n_i;
101
7ba699c6 102nla_put_failure:
4b3550ef 103 nla_nest_cancel(skb, nest);
1da177e4
LT
104 goto done;
105}
1da177e4 106
53b2bf3f
PM
107static const struct nla_policy police_policy[TCA_POLICE_MAX + 1] = {
108 [TCA_POLICE_RATE] = { .len = TC_RTAB_SIZE },
109 [TCA_POLICE_PEAKRATE] = { .len = TC_RTAB_SIZE },
110 [TCA_POLICE_AVRATE] = { .type = NLA_U32 },
111 [TCA_POLICE_RESULT] = { .type = NLA_U32 },
112};
113
c1b52739
BL
114static int tcf_act_police_locate(struct net *net, struct nlattr *nla,
115 struct nlattr *est, struct tc_action *a,
116 int ovr, int bind)
1da177e4 117{
cc7ec456 118 unsigned int h;
1da177e4 119 int ret = 0, err;
7ba699c6 120 struct nlattr *tb[TCA_POLICE_MAX + 1];
1da177e4 121 struct tc_police *parm;
e9ce1cd3 122 struct tcf_police *police;
1da177e4 123 struct qdisc_rate_table *R_tab = NULL, *P_tab = NULL;
c779f7af 124 struct tcf_hashinfo *hinfo = a->ops->hinfo;
1e9b3d53 125 int size;
1da177e4 126
cee63723 127 if (nla == NULL)
1da177e4
LT
128 return -EINVAL;
129
53b2bf3f 130 err = nla_parse_nested(tb, TCA_POLICE_MAX, nla, police_policy);
cee63723
PM
131 if (err < 0)
132 return err;
133
7ba699c6 134 if (tb[TCA_POLICE_TBF] == NULL)
1e9b3d53 135 return -EINVAL;
7ba699c6 136 size = nla_len(tb[TCA_POLICE_TBF]);
1e9b3d53 137 if (size != sizeof(*parm) && size != sizeof(struct tc_police_compat))
1da177e4 138 return -EINVAL;
7ba699c6 139 parm = nla_data(tb[TCA_POLICE_TBF]);
1da177e4 140
e9ce1cd3 141 if (parm->index) {
6e6a50c2
WC
142 if (tcf_hash_search(a, parm->index)) {
143 police = to_police(a->priv);
e9ce1cd3
DM
144 if (bind) {
145 police->tcf_bindcnt += 1;
146 police->tcf_refcnt += 1;
1a29321e 147 return 0;
e9ce1cd3
DM
148 }
149 if (ovr)
150 goto override;
1a29321e
JHS
151 /* not replacing */
152 return -EEXIST;
1da177e4 153 }
1da177e4
LT
154 }
155
e9ce1cd3
DM
156 police = kzalloc(sizeof(*police), GFP_KERNEL);
157 if (police == NULL)
1da177e4 158 return -ENOMEM;
1da177e4 159 ret = ACT_P_CREATED;
e9ce1cd3
DM
160 police->tcf_refcnt = 1;
161 spin_lock_init(&police->tcf_lock);
1da177e4 162 if (bind)
e9ce1cd3 163 police->tcf_bindcnt = 1;
1da177e4
LT
164override:
165 if (parm->rate.rate) {
166 err = -ENOMEM;
7ba699c6 167 R_tab = qdisc_get_rtab(&parm->rate, tb[TCA_POLICE_RATE]);
1da177e4
LT
168 if (R_tab == NULL)
169 goto failure;
c1b56878 170
1da177e4
LT
171 if (parm->peakrate.rate) {
172 P_tab = qdisc_get_rtab(&parm->peakrate,
7ba699c6 173 tb[TCA_POLICE_PEAKRATE]);
71bcb09a 174 if (P_tab == NULL)
1da177e4 175 goto failure;
1da177e4
LT
176 }
177 }
71bcb09a 178
e9ce1cd3 179 spin_lock_bh(&police->tcf_lock);
71bcb09a 180 if (est) {
22e0f8b9 181 err = gen_replace_estimator(&police->tcf_bstats, NULL,
71bcb09a
SH
182 &police->tcf_rate_est,
183 &police->tcf_lock, est);
184 if (err)
185 goto failure_unlock;
a883bf56
JP
186 } else if (tb[TCA_POLICE_AVRATE] &&
187 (ret == ACT_P_CREATED ||
188 !gen_estimator_active(&police->tcf_bstats,
189 &police->tcf_rate_est))) {
190 err = -EINVAL;
191 goto failure_unlock;
71bcb09a
SH
192 }
193
194 /* No failure allowed after this point */
c6d14ff1
JP
195 police->tcfp_mtu = parm->mtu;
196 if (police->tcfp_mtu == 0) {
197 police->tcfp_mtu = ~0;
198 if (R_tab)
199 police->tcfp_mtu = 255 << R_tab->rate.cell_log;
200 }
201 if (R_tab) {
202 police->rate_present = true;
3e1e3aae 203 psched_ratecfg_precompute(&police->rate, &R_tab->rate, 0);
c6d14ff1
JP
204 qdisc_put_rtab(R_tab);
205 } else {
206 police->rate_present = false;
1da177e4 207 }
c6d14ff1
JP
208 if (P_tab) {
209 police->peak_present = true;
3e1e3aae 210 psched_ratecfg_precompute(&police->peak, &P_tab->rate, 0);
c6d14ff1
JP
211 qdisc_put_rtab(P_tab);
212 } else {
213 police->peak_present = false;
1da177e4
LT
214 }
215
7ba699c6 216 if (tb[TCA_POLICE_RESULT])
1587bac4 217 police->tcfp_result = nla_get_u32(tb[TCA_POLICE_RESULT]);
c6d14ff1
JP
218 police->tcfp_burst = PSCHED_TICKS2NS(parm->burst);
219 police->tcfp_toks = police->tcfp_burst;
220 if (police->peak_present) {
221 police->tcfp_mtu_ptoks = (s64) psched_l2t_ns(&police->peak,
222 police->tcfp_mtu);
223 police->tcfp_ptoks = police->tcfp_mtu_ptoks;
1da177e4 224 }
e9ce1cd3 225 police->tcf_action = parm->action;
1da177e4 226
7ba699c6 227 if (tb[TCA_POLICE_AVRATE])
1587bac4 228 police->tcfp_ewma_rate = nla_get_u32(tb[TCA_POLICE_AVRATE]);
1da177e4 229
e9ce1cd3 230 spin_unlock_bh(&police->tcf_lock);
1da177e4
LT
231 if (ret != ACT_P_CREATED)
232 return ret;
233
d2de875c 234 police->tcfp_t_c = ktime_get_ns();
e9ce1cd3 235 police->tcf_index = parm->index ? parm->index :
4f1e9d89 236 tcf_hash_new_index(hinfo);
e9ce1cd3 237 h = tcf_hash(police->tcf_index, POL_TAB_MASK);
c779f7af
WC
238 spin_lock_bh(&hinfo->lock);
239 hlist_add_head(&police->tcf_head, &hinfo->htab[h]);
240 spin_unlock_bh(&hinfo->lock);
1da177e4 241
e9ce1cd3 242 a->priv = police;
1da177e4
LT
243 return ret;
244
71bcb09a
SH
245failure_unlock:
246 spin_unlock_bh(&police->tcf_lock);
1da177e4 247failure:
3b69a4c9
YY
248 qdisc_put_rtab(P_tab);
249 qdisc_put_rtab(R_tab);
1da177e4 250 if (ret == ACT_P_CREATED)
e9ce1cd3 251 kfree(police);
1da177e4
LT
252 return err;
253}
254
dc7f9f6e 255static int tcf_act_police(struct sk_buff *skb, const struct tc_action *a,
10297b99 256 struct tcf_result *res)
1da177e4 257{
e9ce1cd3 258 struct tcf_police *police = a->priv;
c6d14ff1
JP
259 s64 now;
260 s64 toks;
261 s64 ptoks = 0;
1da177e4 262
e9ce1cd3 263 spin_lock(&police->tcf_lock);
1da177e4 264
bfe0d029 265 bstats_update(&police->tcf_bstats, skb);
1da177e4 266
e9ce1cd3
DM
267 if (police->tcfp_ewma_rate &&
268 police->tcf_rate_est.bps >= police->tcfp_ewma_rate) {
269 police->tcf_qstats.overlimits++;
b9647580
JP
270 if (police->tcf_action == TC_ACT_SHOT)
271 police->tcf_qstats.drops++;
e9ce1cd3
DM
272 spin_unlock(&police->tcf_lock);
273 return police->tcf_action;
1da177e4 274 }
1da177e4 275
0abf77e5 276 if (qdisc_pkt_len(skb) <= police->tcfp_mtu) {
c6d14ff1 277 if (!police->rate_present) {
e9ce1cd3
DM
278 spin_unlock(&police->tcf_lock);
279 return police->tcfp_result;
1da177e4
LT
280 }
281
d2de875c 282 now = ktime_get_ns();
c6d14ff1
JP
283 toks = min_t(s64, now - police->tcfp_t_c,
284 police->tcfp_burst);
285 if (police->peak_present) {
e9ce1cd3 286 ptoks = toks + police->tcfp_ptoks;
c6d14ff1
JP
287 if (ptoks > police->tcfp_mtu_ptoks)
288 ptoks = police->tcfp_mtu_ptoks;
289 ptoks -= (s64) psched_l2t_ns(&police->peak,
290 qdisc_pkt_len(skb));
1da177e4 291 }
e9ce1cd3 292 toks += police->tcfp_toks;
c6d14ff1 293 if (toks > police->tcfp_burst)
e9ce1cd3 294 toks = police->tcfp_burst;
c6d14ff1 295 toks -= (s64) psched_l2t_ns(&police->rate, qdisc_pkt_len(skb));
1da177e4 296 if ((toks|ptoks) >= 0) {
e9ce1cd3
DM
297 police->tcfp_t_c = now;
298 police->tcfp_toks = toks;
299 police->tcfp_ptoks = ptoks;
300 spin_unlock(&police->tcf_lock);
301 return police->tcfp_result;
1da177e4
LT
302 }
303 }
304
e9ce1cd3 305 police->tcf_qstats.overlimits++;
b9647580
JP
306 if (police->tcf_action == TC_ACT_SHOT)
307 police->tcf_qstats.drops++;
e9ce1cd3
DM
308 spin_unlock(&police->tcf_lock);
309 return police->tcf_action;
1da177e4
LT
310}
311
312static int
313tcf_act_police_dump(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
314{
27a884dc 315 unsigned char *b = skb_tail_pointer(skb);
e9ce1cd3 316 struct tcf_police *police = a->priv;
0f04cfd0
JM
317 struct tc_police opt = {
318 .index = police->tcf_index,
319 .action = police->tcf_action,
320 .mtu = police->tcfp_mtu,
c6d14ff1 321 .burst = PSCHED_NS2TICKS(police->tcfp_burst),
0f04cfd0
JM
322 .refcnt = police->tcf_refcnt - ref,
323 .bindcnt = police->tcf_bindcnt - bind,
324 };
325
c6d14ff1 326 if (police->rate_present)
01cb71d2 327 psched_ratecfg_getrate(&opt.rate, &police->rate);
c6d14ff1 328 if (police->peak_present)
01cb71d2 329 psched_ratecfg_getrate(&opt.peakrate, &police->peak);
1b34ec43
DM
330 if (nla_put(skb, TCA_POLICE_TBF, sizeof(opt), &opt))
331 goto nla_put_failure;
332 if (police->tcfp_result &&
333 nla_put_u32(skb, TCA_POLICE_RESULT, police->tcfp_result))
334 goto nla_put_failure;
335 if (police->tcfp_ewma_rate &&
336 nla_put_u32(skb, TCA_POLICE_AVRATE, police->tcfp_ewma_rate))
337 goto nla_put_failure;
1da177e4
LT
338 return skb->len;
339
7ba699c6 340nla_put_failure:
dc5fc579 341 nlmsg_trim(skb, b);
1da177e4
LT
342 return -1;
343}
344
345MODULE_AUTHOR("Alexey Kuznetsov");
346MODULE_DESCRIPTION("Policing actions");
347MODULE_LICENSE("GPL");
348
349static struct tc_action_ops act_police_ops = {
350 .kind = "police",
351 .type = TCA_ID_POLICE,
1da177e4
LT
352 .owner = THIS_MODULE,
353 .act = tcf_act_police,
354 .dump = tcf_act_police_dump,
1da177e4 355 .init = tcf_act_police_locate,
83b950c8 356 .walk = tcf_act_police_walker
1da177e4
LT
357};
358
359static int __init
360police_init_module(void)
361{
4f1e9d89 362 return tcf_register_action(&act_police_ops, POL_TAB_MASK);
1da177e4
LT
363}
364
365static void __exit
366police_cleanup_module(void)
367{
368 tcf_unregister_action(&act_police_ops);
369}
370
371module_init(police_init_module);
372module_exit(police_cleanup_module);