2 * net/sched/act_police.c Input police filter
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.
9 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
10 * J Hadi Salim (action changes)
13 #include <linux/module.h>
14 #include <linux/types.h>
15 #include <linux/kernel.h>
16 #include <linux/string.h>
17 #include <linux/errno.h>
18 #include <linux/skbuff.h>
19 #include <linux/rtnetlink.h>
20 #include <linux/init.h>
21 #include <linux/slab.h>
22 #include <net/act_api.h>
23 #include <net/netlink.h>
25 struct tcf_police_params {
34 struct psched_ratecfg rate;
36 struct psched_ratecfg peak;
42 struct tc_action common;
43 struct tcf_police_params __rcu *params;
46 #define to_police(pc) ((struct tcf_police *)pc)
48 /* old policer structure from before tc actions */
49 struct tc_police_compat {
55 struct tc_ratespec rate;
56 struct tc_ratespec peakrate;
59 /* Each policer is serialized by its individual spinlock */
61 static unsigned int police_net_id;
62 static struct tc_action_ops act_police_ops;
64 static int tcf_police_walker(struct net *net, struct sk_buff *skb,
65 struct netlink_callback *cb, int type,
66 const struct tc_action_ops *ops,
67 struct netlink_ext_ack *extack)
69 struct tc_action_net *tn = net_generic(net, police_net_id);
71 return tcf_generic_walker(tn, skb, cb, type, ops, extack);
74 static const struct nla_policy police_policy[TCA_POLICE_MAX + 1] = {
75 [TCA_POLICE_RATE] = { .len = TC_RTAB_SIZE },
76 [TCA_POLICE_PEAKRATE] = { .len = TC_RTAB_SIZE },
77 [TCA_POLICE_AVRATE] = { .type = NLA_U32 },
78 [TCA_POLICE_RESULT] = { .type = NLA_U32 },
81 static int tcf_police_init(struct net *net, struct nlattr *nla,
82 struct nlattr *est, struct tc_action **a,
83 int ovr, int bind, bool rtnl_held,
84 struct netlink_ext_ack *extack)
87 struct nlattr *tb[TCA_POLICE_MAX + 1];
88 struct tc_police *parm;
89 struct tcf_police *police;
90 struct qdisc_rate_table *R_tab = NULL, *P_tab = NULL;
91 struct tc_action_net *tn = net_generic(net, police_net_id);
92 struct tcf_police_params *new;
99 err = nla_parse_nested(tb, TCA_POLICE_MAX, nla, police_policy, NULL);
103 if (tb[TCA_POLICE_TBF] == NULL)
105 size = nla_len(tb[TCA_POLICE_TBF]);
106 if (size != sizeof(*parm) && size != sizeof(struct tc_police_compat))
109 parm = nla_data(tb[TCA_POLICE_TBF]);
110 err = tcf_idr_check_alloc(tn, &parm->index, a, bind);
118 ret = tcf_idr_create(tn, parm->index, NULL, a,
119 &act_police_ops, bind, true);
121 tcf_idr_cleanup(tn, parm->index);
126 tcf_idr_release(*a, bind);
130 police = to_police(*a);
131 if (parm->rate.rate) {
133 R_tab = qdisc_get_rtab(&parm->rate, tb[TCA_POLICE_RATE], NULL);
137 if (parm->peakrate.rate) {
138 P_tab = qdisc_get_rtab(&parm->peakrate,
139 tb[TCA_POLICE_PEAKRATE], NULL);
146 err = gen_replace_estimator(&police->tcf_bstats,
147 police->common.cpu_bstats,
148 &police->tcf_rate_est,
153 } else if (tb[TCA_POLICE_AVRATE] &&
154 (ret == ACT_P_CREATED ||
155 !gen_estimator_active(&police->tcf_rate_est))) {
160 new = kzalloc(sizeof(*new), GFP_KERNEL);
161 if (unlikely(!new)) {
166 /* No failure allowed after this point */
167 new->tcfp_mtu = parm->mtu;
168 if (!new->tcfp_mtu) {
171 new->tcfp_mtu = 255 << R_tab->rate.cell_log;
174 new->rate_present = true;
175 psched_ratecfg_precompute(&new->rate, &R_tab->rate, 0);
176 qdisc_put_rtab(R_tab);
178 new->rate_present = false;
181 new->peak_present = true;
182 psched_ratecfg_precompute(&new->peak, &P_tab->rate, 0);
183 qdisc_put_rtab(P_tab);
185 new->peak_present = false;
188 if (tb[TCA_POLICE_RESULT])
189 new->tcfp_result = nla_get_u32(tb[TCA_POLICE_RESULT]);
190 new->tcfp_burst = PSCHED_TICKS2NS(parm->burst);
191 new->tcfp_toks = new->tcfp_burst;
192 if (new->peak_present) {
193 new->tcfp_mtu_ptoks = (s64)psched_l2t_ns(&new->peak,
195 new->tcfp_ptoks = new->tcfp_mtu_ptoks;
198 if (tb[TCA_POLICE_AVRATE])
199 new->tcfp_ewma_rate = nla_get_u32(tb[TCA_POLICE_AVRATE]);
201 spin_lock_bh(&police->tcf_lock);
202 new->tcfp_t_c = ktime_get_ns();
203 police->tcf_action = parm->action;
204 rcu_swap_protected(police->params,
206 lockdep_is_held(&police->tcf_lock));
207 spin_unlock_bh(&police->tcf_lock);
212 if (ret == ACT_P_CREATED)
213 tcf_idr_insert(tn, *a);
217 qdisc_put_rtab(P_tab);
218 qdisc_put_rtab(R_tab);
219 tcf_idr_release(*a, bind);
223 static int tcf_police_act(struct sk_buff *skb, const struct tc_action *a,
224 struct tcf_result *res)
226 struct tcf_police *police = to_police(a);
227 struct tcf_police_params *p;
228 s64 now, toks, ptoks = 0;
231 tcf_lastuse_update(&police->tcf_tm);
232 bstats_cpu_update(this_cpu_ptr(police->common.cpu_bstats), skb);
234 ret = READ_ONCE(police->tcf_action);
235 p = rcu_dereference_bh(police->params);
237 if (p->tcfp_ewma_rate) {
238 struct gnet_stats_rate_est64 sample;
240 if (!gen_estimator_read(&police->tcf_rate_est, &sample) ||
241 sample.bps >= p->tcfp_ewma_rate)
245 if (qdisc_pkt_len(skb) <= p->tcfp_mtu) {
246 if (!p->rate_present) {
247 ret = p->tcfp_result;
251 now = ktime_get_ns();
252 toks = min_t(s64, now - p->tcfp_t_c, p->tcfp_burst);
253 if (p->peak_present) {
254 ptoks = toks + p->tcfp_ptoks;
255 if (ptoks > p->tcfp_mtu_ptoks)
256 ptoks = p->tcfp_mtu_ptoks;
257 ptoks -= (s64)psched_l2t_ns(&p->peak,
260 toks += p->tcfp_toks;
261 if (toks > p->tcfp_burst)
262 toks = p->tcfp_burst;
263 toks -= (s64)psched_l2t_ns(&p->rate, qdisc_pkt_len(skb));
264 if ((toks|ptoks) >= 0) {
267 p->tcfp_ptoks = ptoks;
268 ret = p->tcfp_result;
274 qstats_overlimit_inc(this_cpu_ptr(police->common.cpu_qstats));
276 if (ret == TC_ACT_SHOT)
277 qstats_drop_inc(this_cpu_ptr(police->common.cpu_qstats));
282 static void tcf_police_cleanup(struct tc_action *a)
284 struct tcf_police *police = to_police(a);
285 struct tcf_police_params *p;
287 p = rcu_dereference_protected(police->params, 1);
292 static int tcf_police_dump(struct sk_buff *skb, struct tc_action *a,
295 unsigned char *b = skb_tail_pointer(skb);
296 struct tcf_police *police = to_police(a);
297 struct tcf_police_params *p;
298 struct tc_police opt = {
299 .index = police->tcf_index,
300 .refcnt = refcount_read(&police->tcf_refcnt) - ref,
301 .bindcnt = atomic_read(&police->tcf_bindcnt) - bind,
305 spin_lock_bh(&police->tcf_lock);
306 opt.action = police->tcf_action;
307 p = rcu_dereference_protected(police->params,
308 lockdep_is_held(&police->tcf_lock));
309 opt.mtu = p->tcfp_mtu;
310 opt.burst = PSCHED_NS2TICKS(p->tcfp_burst);
312 psched_ratecfg_getrate(&opt.rate, &p->rate);
314 psched_ratecfg_getrate(&opt.peakrate, &p->peak);
315 if (nla_put(skb, TCA_POLICE_TBF, sizeof(opt), &opt))
316 goto nla_put_failure;
317 if (p->tcfp_result &&
318 nla_put_u32(skb, TCA_POLICE_RESULT, p->tcfp_result))
319 goto nla_put_failure;
320 if (p->tcfp_ewma_rate &&
321 nla_put_u32(skb, TCA_POLICE_AVRATE, p->tcfp_ewma_rate))
322 goto nla_put_failure;
324 t.install = jiffies_to_clock_t(jiffies - police->tcf_tm.install);
325 t.lastuse = jiffies_to_clock_t(jiffies - police->tcf_tm.lastuse);
326 t.firstuse = jiffies_to_clock_t(jiffies - police->tcf_tm.firstuse);
327 t.expires = jiffies_to_clock_t(police->tcf_tm.expires);
328 if (nla_put_64bit(skb, TCA_POLICE_TM, sizeof(t), &t, TCA_POLICE_PAD))
329 goto nla_put_failure;
330 spin_unlock_bh(&police->tcf_lock);
335 spin_unlock_bh(&police->tcf_lock);
340 static int tcf_police_search(struct net *net, struct tc_action **a, u32 index)
342 struct tc_action_net *tn = net_generic(net, police_net_id);
344 return tcf_idr_search(tn, a, index);
347 MODULE_AUTHOR("Alexey Kuznetsov");
348 MODULE_DESCRIPTION("Policing actions");
349 MODULE_LICENSE("GPL");
351 static struct tc_action_ops act_police_ops = {
353 .type = TCA_ID_POLICE,
354 .owner = THIS_MODULE,
355 .act = tcf_police_act,
356 .dump = tcf_police_dump,
357 .init = tcf_police_init,
358 .walk = tcf_police_walker,
359 .lookup = tcf_police_search,
360 .cleanup = tcf_police_cleanup,
361 .size = sizeof(struct tcf_police),
364 static __net_init int police_init_net(struct net *net)
366 struct tc_action_net *tn = net_generic(net, police_net_id);
368 return tc_action_net_init(tn, &act_police_ops);
371 static void __net_exit police_exit_net(struct list_head *net_list)
373 tc_action_net_exit(net_list, police_net_id);
376 static struct pernet_operations police_net_ops = {
377 .init = police_init_net,
378 .exit_batch = police_exit_net,
379 .id = &police_net_id,
380 .size = sizeof(struct tc_action_net),
383 static int __init police_init_module(void)
385 return tcf_register_action(&act_police_ops, &police_net_ops);
388 static void __exit police_cleanup_module(void)
390 tcf_unregister_action(&act_police_ops, &police_net_ops);
393 module_init(police_init_module);
394 module_exit(police_cleanup_module);