blob: 378a6494ba5a781b10be63d6d263e9db036f8d0d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/module.h>
14#include <linux/types.h>
15#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/rtnetlink.h>
20#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <net/act_api.h>
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070023#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Jiri Pirko0e243212013-02-12 00:12:06 +000025struct tcf_police {
26 struct tcf_common common;
27 int tcfp_result;
28 u32 tcfp_ewma_rate;
29 u32 tcfp_burst;
30 u32 tcfp_mtu;
31 u32 tcfp_toks;
32 u32 tcfp_ptoks;
33 psched_time_t tcfp_t_c;
34 struct qdisc_rate_table *tcfp_R_tab;
35 struct qdisc_rate_table *tcfp_P_tab;
36};
37#define to_police(pc) \
38 container_of(pc, struct tcf_police, common)
39
Eric Dumazetcc7ec452011-01-19 19:26:56 +000040#define L2T(p, L) qdisc_l2t((p)->tcfp_R_tab, L)
41#define L2T_P(p, L) qdisc_l2t((p)->tcfp_P_tab, L)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
David S. Millere9ce1cd2006-08-21 23:54:55 -070043#define POL_TAB_MASK 15
44static struct tcf_common *tcf_police_ht[POL_TAB_MASK + 1];
45static u32 police_idx_gen;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046static DEFINE_RWLOCK(police_lock);
47
David S. Millere9ce1cd2006-08-21 23:54:55 -070048static struct tcf_hashinfo police_hash_info = {
49 .htab = tcf_police_ht,
50 .hmask = POL_TAB_MASK,
51 .lock = &police_lock,
52};
53
Patrick McHardy1e9b3d52006-11-30 19:54:05 -080054/* old policer structure from before tc actions */
Eric Dumazetcc7ec452011-01-19 19:26:56 +000055struct tc_police_compat {
Patrick McHardy1e9b3d52006-11-30 19:54:05 -080056 u32 index;
57 int action;
58 u32 limit;
59 u32 burst;
60 u32 mtu;
61 struct tc_ratespec rate;
62 struct tc_ratespec peakrate;
63};
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065/* Each policer is serialized by its individual spinlock */
66
Jamal Hadi Salim83b950c2006-04-06 22:24:22 -070067static int tcf_act_police_walker(struct sk_buff *skb, struct netlink_callback *cb,
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +090068 int type, struct tc_action *a)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
David S. Millere9ce1cd2006-08-21 23:54:55 -070070 struct tcf_common *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 int err = 0, index = -1, i = 0, s_i = 0, n_i = 0;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -080072 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Jamal Hadi Salime1e992e2007-09-12 16:32:59 +020074 read_lock_bh(&police_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76 s_i = cb->args[0];
77
David S. Millere9ce1cd2006-08-21 23:54:55 -070078 for (i = 0; i < (POL_TAB_MASK + 1); i++) {
79 p = tcf_police_ht[tcf_hash(i, POL_TAB_MASK)];
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
David S. Millere9ce1cd2006-08-21 23:54:55 -070081 for (; p; p = p->tcfc_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 index++;
83 if (index < s_i)
84 continue;
85 a->priv = p;
86 a->order = index;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -080087 nest = nla_nest_start(skb, a->order);
88 if (nest == NULL)
89 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 if (type == RTM_DELACTION)
91 err = tcf_action_dump_1(skb, a, 0, 1);
92 else
93 err = tcf_action_dump_1(skb, a, 0, 0);
94 if (err < 0) {
95 index--;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -080096 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 goto done;
98 }
Patrick McHardy4b3550ef2008-01-23 20:34:11 -080099 nla_nest_end(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 n_i++;
101 }
102 }
103done:
Jamal Hadi Salime1e992e2007-09-12 16:32:59 +0200104 read_unlock_bh(&police_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 if (n_i)
106 cb->args[0] += n_i;
107 return n_i;
108
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800109nla_put_failure:
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800110 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 goto done;
112}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Patrick McHardyc3bc7cf2007-07-15 00:03:05 -0700114static void tcf_police_destroy(struct tcf_police *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
David S. Millere9ce1cd2006-08-21 23:54:55 -0700116 unsigned int h = tcf_hash(p->tcf_index, POL_TAB_MASK);
117 struct tcf_common **p1p;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900118
David S. Millere9ce1cd2006-08-21 23:54:55 -0700119 for (p1p = &tcf_police_ht[h]; *p1p; p1p = &(*p1p)->tcfc_next) {
120 if (*p1p == &p->common) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 write_lock_bh(&police_lock);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700122 *p1p = p->tcf_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 write_unlock_bh(&police_lock);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700124 gen_kill_estimator(&p->tcf_bstats,
125 &p->tcf_rate_est);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700126 if (p->tcfp_R_tab)
127 qdisc_put_rtab(p->tcfp_R_tab);
128 if (p->tcfp_P_tab)
129 qdisc_put_rtab(p->tcfp_P_tab);
Eric Dumazetc7de2cf2010-06-09 02:09:23 +0000130 /*
131 * gen_estimator est_timer() might access p->tcf_lock
132 * or bstats, wait a RCU grace period before freeing p
133 */
Lai Jiangshan5957b1a2011-03-15 17:58:00 +0800134 kfree_rcu(p, tcf_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 return;
136 }
137 }
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700138 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139}
140
Patrick McHardy53b2bf32008-01-23 20:36:30 -0800141static const struct nla_policy police_policy[TCA_POLICE_MAX + 1] = {
142 [TCA_POLICE_RATE] = { .len = TC_RTAB_SIZE },
143 [TCA_POLICE_PEAKRATE] = { .len = TC_RTAB_SIZE },
144 [TCA_POLICE_AVRATE] = { .type = NLA_U32 },
145 [TCA_POLICE_RESULT] = { .type = NLA_U32 },
146};
147
Benjamin LaHaisec1b52732013-01-14 05:15:39 +0000148static int tcf_act_police_locate(struct net *net, struct nlattr *nla,
149 struct nlattr *est, struct tc_action *a,
150 int ovr, int bind)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000152 unsigned int h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 int ret = 0, err;
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800154 struct nlattr *tb[TCA_POLICE_MAX + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 struct tc_police *parm;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700156 struct tcf_police *police;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 struct qdisc_rate_table *R_tab = NULL, *P_tab = NULL;
Patrick McHardy1e9b3d52006-11-30 19:54:05 -0800158 int size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Patrick McHardycee63722008-01-23 20:33:32 -0800160 if (nla == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 return -EINVAL;
162
Patrick McHardy53b2bf32008-01-23 20:36:30 -0800163 err = nla_parse_nested(tb, TCA_POLICE_MAX, nla, police_policy);
Patrick McHardycee63722008-01-23 20:33:32 -0800164 if (err < 0)
165 return err;
166
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800167 if (tb[TCA_POLICE_TBF] == NULL)
Patrick McHardy1e9b3d52006-11-30 19:54:05 -0800168 return -EINVAL;
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800169 size = nla_len(tb[TCA_POLICE_TBF]);
Patrick McHardy1e9b3d52006-11-30 19:54:05 -0800170 if (size != sizeof(*parm) && size != sizeof(struct tc_police_compat))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 return -EINVAL;
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800172 parm = nla_data(tb[TCA_POLICE_TBF]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
David S. Millere9ce1cd2006-08-21 23:54:55 -0700174 if (parm->index) {
175 struct tcf_common *pc;
176
177 pc = tcf_hash_lookup(parm->index, &police_hash_info);
178 if (pc != NULL) {
179 a->priv = pc;
180 police = to_police(pc);
181 if (bind) {
182 police->tcf_bindcnt += 1;
183 police->tcf_refcnt += 1;
184 }
185 if (ovr)
186 goto override;
187 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
190
David S. Millere9ce1cd2006-08-21 23:54:55 -0700191 police = kzalloc(sizeof(*police), GFP_KERNEL);
192 if (police == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 ret = ACT_P_CREATED;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700195 police->tcf_refcnt = 1;
196 spin_lock_init(&police->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 if (bind)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700198 police->tcf_bindcnt = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199override:
200 if (parm->rate.rate) {
201 err = -ENOMEM;
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800202 R_tab = qdisc_get_rtab(&parm->rate, tb[TCA_POLICE_RATE]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 if (R_tab == NULL)
204 goto failure;
Stephen Hemmingerc1b56872008-11-25 21:14:06 -0800205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 if (parm->peakrate.rate) {
207 P_tab = qdisc_get_rtab(&parm->peakrate,
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800208 tb[TCA_POLICE_PEAKRATE]);
Stephen Hemminger71bcb092008-11-25 21:13:31 -0800209 if (P_tab == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 goto failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 }
212 }
Stephen Hemminger71bcb092008-11-25 21:13:31 -0800213
David S. Millere9ce1cd2006-08-21 23:54:55 -0700214 spin_lock_bh(&police->tcf_lock);
Stephen Hemminger71bcb092008-11-25 21:13:31 -0800215 if (est) {
216 err = gen_replace_estimator(&police->tcf_bstats,
217 &police->tcf_rate_est,
218 &police->tcf_lock, est);
219 if (err)
220 goto failure_unlock;
Jarek Poplawskia883bf52009-03-04 17:38:10 -0800221 } else if (tb[TCA_POLICE_AVRATE] &&
222 (ret == ACT_P_CREATED ||
223 !gen_estimator_active(&police->tcf_bstats,
224 &police->tcf_rate_est))) {
225 err = -EINVAL;
226 goto failure_unlock;
Stephen Hemminger71bcb092008-11-25 21:13:31 -0800227 }
228
229 /* No failure allowed after this point */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 if (R_tab != NULL) {
David S. Millere9ce1cd2006-08-21 23:54:55 -0700231 qdisc_put_rtab(police->tcfp_R_tab);
232 police->tcfp_R_tab = R_tab;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 }
234 if (P_tab != NULL) {
David S. Millere9ce1cd2006-08-21 23:54:55 -0700235 qdisc_put_rtab(police->tcfp_P_tab);
236 police->tcfp_P_tab = P_tab;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 }
238
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800239 if (tb[TCA_POLICE_RESULT])
Patrick McHardy1587bac2008-01-23 20:35:03 -0800240 police->tcfp_result = nla_get_u32(tb[TCA_POLICE_RESULT]);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700241 police->tcfp_toks = police->tcfp_burst = parm->burst;
242 police->tcfp_mtu = parm->mtu;
243 if (police->tcfp_mtu == 0) {
244 police->tcfp_mtu = ~0;
245 if (police->tcfp_R_tab)
246 police->tcfp_mtu = 255<<police->tcfp_R_tab->rate.cell_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 }
David S. Millere9ce1cd2006-08-21 23:54:55 -0700248 if (police->tcfp_P_tab)
249 police->tcfp_ptoks = L2T_P(police, police->tcfp_mtu);
250 police->tcf_action = parm->action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800252 if (tb[TCA_POLICE_AVRATE])
Patrick McHardy1587bac2008-01-23 20:35:03 -0800253 police->tcfp_ewma_rate = nla_get_u32(tb[TCA_POLICE_AVRATE]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
David S. Millere9ce1cd2006-08-21 23:54:55 -0700255 spin_unlock_bh(&police->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 if (ret != ACT_P_CREATED)
257 return ret;
258
Patrick McHardy3bebcda2007-03-23 11:29:25 -0700259 police->tcfp_t_c = psched_get_time();
David S. Millere9ce1cd2006-08-21 23:54:55 -0700260 police->tcf_index = parm->index ? parm->index :
261 tcf_hash_new_index(&police_idx_gen, &police_hash_info);
262 h = tcf_hash(police->tcf_index, POL_TAB_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 write_lock_bh(&police_lock);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700264 police->tcf_next = tcf_police_ht[h];
265 tcf_police_ht[h] = &police->common;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 write_unlock_bh(&police_lock);
267
David S. Millere9ce1cd2006-08-21 23:54:55 -0700268 a->priv = police;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 return ret;
270
Stephen Hemminger71bcb092008-11-25 21:13:31 -0800271failure_unlock:
272 spin_unlock_bh(&police->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273failure:
Stephen Hemminger71bcb092008-11-25 21:13:31 -0800274 if (P_tab)
275 qdisc_put_rtab(P_tab);
276 if (R_tab)
277 qdisc_put_rtab(R_tab);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 if (ret == ACT_P_CREATED)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700279 kfree(police);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 return err;
281}
282
283static int tcf_act_police_cleanup(struct tc_action *a, int bind)
284{
David S. Millere9ce1cd2006-08-21 23:54:55 -0700285 struct tcf_police *p = a->priv;
Patrick McHardyc3bc7cf2007-07-15 00:03:05 -0700286 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Patrick McHardyc3bc7cf2007-07-15 00:03:05 -0700288 if (p != NULL) {
289 if (bind)
290 p->tcf_bindcnt--;
291
292 p->tcf_refcnt--;
293 if (p->tcf_refcnt <= 0 && !p->tcf_bindcnt) {
294 tcf_police_destroy(p);
295 ret = 1;
296 }
297 }
298 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299}
300
Eric Dumazetdc7f9f62011-07-05 23:25:42 +0000301static int tcf_act_police(struct sk_buff *skb, const struct tc_action *a,
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900302 struct tcf_result *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
David S. Millere9ce1cd2006-08-21 23:54:55 -0700304 struct tcf_police *police = a->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 psched_time_t now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 long toks;
307 long ptoks = 0;
308
David S. Millere9ce1cd2006-08-21 23:54:55 -0700309 spin_lock(&police->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Eric Dumazetbfe0d022011-01-09 08:30:54 +0000311 bstats_update(&police->tcf_bstats, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
David S. Millere9ce1cd2006-08-21 23:54:55 -0700313 if (police->tcfp_ewma_rate &&
314 police->tcf_rate_est.bps >= police->tcfp_ewma_rate) {
315 police->tcf_qstats.overlimits++;
Jarek Poplawskib9647582009-06-16 08:33:55 +0000316 if (police->tcf_action == TC_ACT_SHOT)
317 police->tcf_qstats.drops++;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700318 spin_unlock(&police->tcf_lock);
319 return police->tcf_action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700322 if (qdisc_pkt_len(skb) <= police->tcfp_mtu) {
David S. Millere9ce1cd2006-08-21 23:54:55 -0700323 if (police->tcfp_R_tab == NULL) {
324 spin_unlock(&police->tcf_lock);
325 return police->tcfp_result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 }
327
Patrick McHardy3bebcda2007-03-23 11:29:25 -0700328 now = psched_get_time();
Patrick McHardy03cc45c2007-03-23 11:29:11 -0700329 toks = psched_tdiff_bounded(now, police->tcfp_t_c,
330 police->tcfp_burst);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700331 if (police->tcfp_P_tab) {
332 ptoks = toks + police->tcfp_ptoks;
333 if (ptoks > (long)L2T_P(police, police->tcfp_mtu))
334 ptoks = (long)L2T_P(police, police->tcfp_mtu);
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700335 ptoks -= L2T_P(police, qdisc_pkt_len(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 }
David S. Millere9ce1cd2006-08-21 23:54:55 -0700337 toks += police->tcfp_toks;
338 if (toks > (long)police->tcfp_burst)
339 toks = police->tcfp_burst;
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700340 toks -= L2T(police, qdisc_pkt_len(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 if ((toks|ptoks) >= 0) {
David S. Millere9ce1cd2006-08-21 23:54:55 -0700342 police->tcfp_t_c = now;
343 police->tcfp_toks = toks;
344 police->tcfp_ptoks = ptoks;
345 spin_unlock(&police->tcf_lock);
346 return police->tcfp_result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 }
348 }
349
David S. Millere9ce1cd2006-08-21 23:54:55 -0700350 police->tcf_qstats.overlimits++;
Jarek Poplawskib9647582009-06-16 08:33:55 +0000351 if (police->tcf_action == TC_ACT_SHOT)
352 police->tcf_qstats.drops++;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700353 spin_unlock(&police->tcf_lock);
354 return police->tcf_action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}
356
357static int
358tcf_act_police_dump(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
359{
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700360 unsigned char *b = skb_tail_pointer(skb);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700361 struct tcf_police *police = a->priv;
Jeff Mahoney0f04cfd2010-08-31 13:21:42 +0000362 struct tc_police opt = {
363 .index = police->tcf_index,
364 .action = police->tcf_action,
365 .mtu = police->tcfp_mtu,
366 .burst = police->tcfp_burst,
367 .refcnt = police->tcf_refcnt - ref,
368 .bindcnt = police->tcf_bindcnt - bind,
369 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
David S. Millere9ce1cd2006-08-21 23:54:55 -0700371 if (police->tcfp_R_tab)
372 opt.rate = police->tcfp_R_tab->rate;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700373 if (police->tcfp_P_tab)
374 opt.peakrate = police->tcfp_P_tab->rate;
David S. Miller1b34ec42012-03-29 05:11:39 -0400375 if (nla_put(skb, TCA_POLICE_TBF, sizeof(opt), &opt))
376 goto nla_put_failure;
377 if (police->tcfp_result &&
378 nla_put_u32(skb, TCA_POLICE_RESULT, police->tcfp_result))
379 goto nla_put_failure;
380 if (police->tcfp_ewma_rate &&
381 nla_put_u32(skb, TCA_POLICE_AVRATE, police->tcfp_ewma_rate))
382 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 return skb->len;
384
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800385nla_put_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -0700386 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 return -1;
388}
389
390MODULE_AUTHOR("Alexey Kuznetsov");
391MODULE_DESCRIPTION("Policing actions");
392MODULE_LICENSE("GPL");
393
394static struct tc_action_ops act_police_ops = {
395 .kind = "police",
David S. Millere9ce1cd2006-08-21 23:54:55 -0700396 .hinfo = &police_hash_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 .type = TCA_ID_POLICE,
398 .capab = TCA_CAP_NONE,
399 .owner = THIS_MODULE,
400 .act = tcf_act_police,
401 .dump = tcf_act_police_dump,
402 .cleanup = tcf_act_police_cleanup,
David S. Millere9ce1cd2006-08-21 23:54:55 -0700403 .lookup = tcf_hash_search,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 .init = tcf_act_police_locate,
Jamal Hadi Salim83b950c2006-04-06 22:24:22 -0700405 .walk = tcf_act_police_walker
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406};
407
408static int __init
409police_init_module(void)
410{
411 return tcf_register_action(&act_police_ops);
412}
413
414static void __exit
415police_cleanup_module(void)
416{
417 tcf_unregister_action(&act_police_ops);
418}
419
420module_init(police_init_module);
421module_exit(police_cleanup_module);