blob: 8dbd695c160bc7c1e55c3d07a41d150b963dc032 [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
Eric Dumazetcc7ec452011-01-19 19:26:56 +000025#define L2T(p, L) qdisc_l2t((p)->tcfp_R_tab, L)
26#define L2T_P(p, L) qdisc_l2t((p)->tcfp_P_tab, L)
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
David S. Millere9ce1cd2006-08-21 23:54:55 -070028#define POL_TAB_MASK 15
29static struct tcf_common *tcf_police_ht[POL_TAB_MASK + 1];
30static u32 police_idx_gen;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031static DEFINE_RWLOCK(police_lock);
32
David S. Millere9ce1cd2006-08-21 23:54:55 -070033static struct tcf_hashinfo police_hash_info = {
34 .htab = tcf_police_ht,
35 .hmask = POL_TAB_MASK,
36 .lock = &police_lock,
37};
38
Patrick McHardy1e9b3d52006-11-30 19:54:05 -080039/* old policer structure from before tc actions */
Eric Dumazetcc7ec452011-01-19 19:26:56 +000040struct tc_police_compat {
Patrick McHardy1e9b3d52006-11-30 19:54:05 -080041 u32 index;
42 int action;
43 u32 limit;
44 u32 burst;
45 u32 mtu;
46 struct tc_ratespec rate;
47 struct tc_ratespec peakrate;
48};
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050/* Each policer is serialized by its individual spinlock */
51
Jamal Hadi Salim83b950c2006-04-06 22:24:22 -070052static int tcf_act_police_walker(struct sk_buff *skb, struct netlink_callback *cb,
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +090053 int type, struct tc_action *a)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054{
David S. Millere9ce1cd2006-08-21 23:54:55 -070055 struct tcf_common *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 int err = 0, index = -1, i = 0, s_i = 0, n_i = 0;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -080057 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Jamal Hadi Salime1e992e2007-09-12 16:32:59 +020059 read_lock_bh(&police_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61 s_i = cb->args[0];
62
David S. Millere9ce1cd2006-08-21 23:54:55 -070063 for (i = 0; i < (POL_TAB_MASK + 1); i++) {
64 p = tcf_police_ht[tcf_hash(i, POL_TAB_MASK)];
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
David S. Millere9ce1cd2006-08-21 23:54:55 -070066 for (; p; p = p->tcfc_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 index++;
68 if (index < s_i)
69 continue;
70 a->priv = p;
71 a->order = index;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -080072 nest = nla_nest_start(skb, a->order);
73 if (nest == NULL)
74 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 if (type == RTM_DELACTION)
76 err = tcf_action_dump_1(skb, a, 0, 1);
77 else
78 err = tcf_action_dump_1(skb, a, 0, 0);
79 if (err < 0) {
80 index--;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -080081 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 goto done;
83 }
Patrick McHardy4b3550ef2008-01-23 20:34:11 -080084 nla_nest_end(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 n_i++;
86 }
87 }
88done:
Jamal Hadi Salime1e992e2007-09-12 16:32:59 +020089 read_unlock_bh(&police_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 if (n_i)
91 cb->args[0] += n_i;
92 return n_i;
93
Patrick McHardy7ba699c2008-01-22 22:11:50 -080094nla_put_failure:
Patrick McHardy4b3550ef2008-01-23 20:34:11 -080095 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 goto done;
97}
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Patrick McHardyc3bc7cf2007-07-15 00:03:05 -070099static void tcf_police_destroy(struct tcf_police *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
David S. Millere9ce1cd2006-08-21 23:54:55 -0700101 unsigned int h = tcf_hash(p->tcf_index, POL_TAB_MASK);
102 struct tcf_common **p1p;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900103
David S. Millere9ce1cd2006-08-21 23:54:55 -0700104 for (p1p = &tcf_police_ht[h]; *p1p; p1p = &(*p1p)->tcfc_next) {
105 if (*p1p == &p->common) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 write_lock_bh(&police_lock);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700107 *p1p = p->tcf_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 write_unlock_bh(&police_lock);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700109 gen_kill_estimator(&p->tcf_bstats,
110 &p->tcf_rate_est);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700111 if (p->tcfp_R_tab)
112 qdisc_put_rtab(p->tcfp_R_tab);
113 if (p->tcfp_P_tab)
114 qdisc_put_rtab(p->tcfp_P_tab);
Eric Dumazetc7de2cf2010-06-09 02:09:23 +0000115 /*
116 * gen_estimator est_timer() might access p->tcf_lock
117 * or bstats, wait a RCU grace period before freeing p
118 */
Lai Jiangshan5957b1a2011-03-15 17:58:00 +0800119 kfree_rcu(p, tcf_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 return;
121 }
122 }
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700123 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124}
125
Patrick McHardy53b2bf32008-01-23 20:36:30 -0800126static const struct nla_policy police_policy[TCA_POLICE_MAX + 1] = {
127 [TCA_POLICE_RATE] = { .len = TC_RTAB_SIZE },
128 [TCA_POLICE_PEAKRATE] = { .len = TC_RTAB_SIZE },
129 [TCA_POLICE_AVRATE] = { .type = NLA_U32 },
130 [TCA_POLICE_RESULT] = { .type = NLA_U32 },
131};
132
Benjamin LaHaisec1b52732013-01-14 05:15:39 +0000133static int tcf_act_police_locate(struct net *net, struct nlattr *nla,
134 struct nlattr *est, struct tc_action *a,
135 int ovr, int bind)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000137 unsigned int h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 int ret = 0, err;
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800139 struct nlattr *tb[TCA_POLICE_MAX + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 struct tc_police *parm;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700141 struct tcf_police *police;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 struct qdisc_rate_table *R_tab = NULL, *P_tab = NULL;
Patrick McHardy1e9b3d52006-11-30 19:54:05 -0800143 int size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Patrick McHardycee63722008-01-23 20:33:32 -0800145 if (nla == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 return -EINVAL;
147
Patrick McHardy53b2bf32008-01-23 20:36:30 -0800148 err = nla_parse_nested(tb, TCA_POLICE_MAX, nla, police_policy);
Patrick McHardycee63722008-01-23 20:33:32 -0800149 if (err < 0)
150 return err;
151
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800152 if (tb[TCA_POLICE_TBF] == NULL)
Patrick McHardy1e9b3d52006-11-30 19:54:05 -0800153 return -EINVAL;
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800154 size = nla_len(tb[TCA_POLICE_TBF]);
Patrick McHardy1e9b3d52006-11-30 19:54:05 -0800155 if (size != sizeof(*parm) && size != sizeof(struct tc_police_compat))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 return -EINVAL;
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800157 parm = nla_data(tb[TCA_POLICE_TBF]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
David S. Millere9ce1cd2006-08-21 23:54:55 -0700159 if (parm->index) {
160 struct tcf_common *pc;
161
162 pc = tcf_hash_lookup(parm->index, &police_hash_info);
163 if (pc != NULL) {
164 a->priv = pc;
165 police = to_police(pc);
166 if (bind) {
167 police->tcf_bindcnt += 1;
168 police->tcf_refcnt += 1;
169 }
170 if (ovr)
171 goto override;
172 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 }
175
David S. Millere9ce1cd2006-08-21 23:54:55 -0700176 police = kzalloc(sizeof(*police), GFP_KERNEL);
177 if (police == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 ret = ACT_P_CREATED;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700180 police->tcf_refcnt = 1;
181 spin_lock_init(&police->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 if (bind)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700183 police->tcf_bindcnt = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184override:
185 if (parm->rate.rate) {
186 err = -ENOMEM;
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800187 R_tab = qdisc_get_rtab(&parm->rate, tb[TCA_POLICE_RATE]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 if (R_tab == NULL)
189 goto failure;
Stephen Hemmingerc1b56872008-11-25 21:14:06 -0800190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 if (parm->peakrate.rate) {
192 P_tab = qdisc_get_rtab(&parm->peakrate,
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800193 tb[TCA_POLICE_PEAKRATE]);
Stephen Hemminger71bcb092008-11-25 21:13:31 -0800194 if (P_tab == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 goto failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 }
197 }
Stephen Hemminger71bcb092008-11-25 21:13:31 -0800198
David S. Millere9ce1cd2006-08-21 23:54:55 -0700199 spin_lock_bh(&police->tcf_lock);
Stephen Hemminger71bcb092008-11-25 21:13:31 -0800200 if (est) {
201 err = gen_replace_estimator(&police->tcf_bstats,
202 &police->tcf_rate_est,
203 &police->tcf_lock, est);
204 if (err)
205 goto failure_unlock;
Jarek Poplawskia883bf52009-03-04 17:38:10 -0800206 } else if (tb[TCA_POLICE_AVRATE] &&
207 (ret == ACT_P_CREATED ||
208 !gen_estimator_active(&police->tcf_bstats,
209 &police->tcf_rate_est))) {
210 err = -EINVAL;
211 goto failure_unlock;
Stephen Hemminger71bcb092008-11-25 21:13:31 -0800212 }
213
214 /* No failure allowed after this point */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 if (R_tab != NULL) {
David S. Millere9ce1cd2006-08-21 23:54:55 -0700216 qdisc_put_rtab(police->tcfp_R_tab);
217 police->tcfp_R_tab = R_tab;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 }
219 if (P_tab != NULL) {
David S. Millere9ce1cd2006-08-21 23:54:55 -0700220 qdisc_put_rtab(police->tcfp_P_tab);
221 police->tcfp_P_tab = P_tab;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 }
223
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800224 if (tb[TCA_POLICE_RESULT])
Patrick McHardy1587bac2008-01-23 20:35:03 -0800225 police->tcfp_result = nla_get_u32(tb[TCA_POLICE_RESULT]);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700226 police->tcfp_toks = police->tcfp_burst = parm->burst;
227 police->tcfp_mtu = parm->mtu;
228 if (police->tcfp_mtu == 0) {
229 police->tcfp_mtu = ~0;
230 if (police->tcfp_R_tab)
231 police->tcfp_mtu = 255<<police->tcfp_R_tab->rate.cell_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 }
David S. Millere9ce1cd2006-08-21 23:54:55 -0700233 if (police->tcfp_P_tab)
234 police->tcfp_ptoks = L2T_P(police, police->tcfp_mtu);
235 police->tcf_action = parm->action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800237 if (tb[TCA_POLICE_AVRATE])
Patrick McHardy1587bac2008-01-23 20:35:03 -0800238 police->tcfp_ewma_rate = nla_get_u32(tb[TCA_POLICE_AVRATE]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
David S. Millere9ce1cd2006-08-21 23:54:55 -0700240 spin_unlock_bh(&police->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 if (ret != ACT_P_CREATED)
242 return ret;
243
Patrick McHardy3bebcda2007-03-23 11:29:25 -0700244 police->tcfp_t_c = psched_get_time();
David S. Millere9ce1cd2006-08-21 23:54:55 -0700245 police->tcf_index = parm->index ? parm->index :
246 tcf_hash_new_index(&police_idx_gen, &police_hash_info);
247 h = tcf_hash(police->tcf_index, POL_TAB_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 write_lock_bh(&police_lock);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700249 police->tcf_next = tcf_police_ht[h];
250 tcf_police_ht[h] = &police->common;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 write_unlock_bh(&police_lock);
252
David S. Millere9ce1cd2006-08-21 23:54:55 -0700253 a->priv = police;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 return ret;
255
Stephen Hemminger71bcb092008-11-25 21:13:31 -0800256failure_unlock:
257 spin_unlock_bh(&police->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258failure:
Stephen Hemminger71bcb092008-11-25 21:13:31 -0800259 if (P_tab)
260 qdisc_put_rtab(P_tab);
261 if (R_tab)
262 qdisc_put_rtab(R_tab);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 if (ret == ACT_P_CREATED)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700264 kfree(police);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 return err;
266}
267
268static int tcf_act_police_cleanup(struct tc_action *a, int bind)
269{
David S. Millere9ce1cd2006-08-21 23:54:55 -0700270 struct tcf_police *p = a->priv;
Patrick McHardyc3bc7cf2007-07-15 00:03:05 -0700271 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Patrick McHardyc3bc7cf2007-07-15 00:03:05 -0700273 if (p != NULL) {
274 if (bind)
275 p->tcf_bindcnt--;
276
277 p->tcf_refcnt--;
278 if (p->tcf_refcnt <= 0 && !p->tcf_bindcnt) {
279 tcf_police_destroy(p);
280 ret = 1;
281 }
282 }
283 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
Eric Dumazetdc7f9f62011-07-05 23:25:42 +0000286static int tcf_act_police(struct sk_buff *skb, const struct tc_action *a,
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900287 struct tcf_result *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
David S. Millere9ce1cd2006-08-21 23:54:55 -0700289 struct tcf_police *police = a->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 psched_time_t now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 long toks;
292 long ptoks = 0;
293
David S. Millere9ce1cd2006-08-21 23:54:55 -0700294 spin_lock(&police->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Eric Dumazetbfe0d022011-01-09 08:30:54 +0000296 bstats_update(&police->tcf_bstats, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
David S. Millere9ce1cd2006-08-21 23:54:55 -0700298 if (police->tcfp_ewma_rate &&
299 police->tcf_rate_est.bps >= police->tcfp_ewma_rate) {
300 police->tcf_qstats.overlimits++;
Jarek Poplawskib9647582009-06-16 08:33:55 +0000301 if (police->tcf_action == TC_ACT_SHOT)
302 police->tcf_qstats.drops++;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700303 spin_unlock(&police->tcf_lock);
304 return police->tcf_action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700307 if (qdisc_pkt_len(skb) <= police->tcfp_mtu) {
David S. Millere9ce1cd2006-08-21 23:54:55 -0700308 if (police->tcfp_R_tab == NULL) {
309 spin_unlock(&police->tcf_lock);
310 return police->tcfp_result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 }
312
Patrick McHardy3bebcda2007-03-23 11:29:25 -0700313 now = psched_get_time();
Patrick McHardy03cc45c2007-03-23 11:29:11 -0700314 toks = psched_tdiff_bounded(now, police->tcfp_t_c,
315 police->tcfp_burst);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700316 if (police->tcfp_P_tab) {
317 ptoks = toks + police->tcfp_ptoks;
318 if (ptoks > (long)L2T_P(police, police->tcfp_mtu))
319 ptoks = (long)L2T_P(police, police->tcfp_mtu);
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700320 ptoks -= L2T_P(police, qdisc_pkt_len(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
David S. Millere9ce1cd2006-08-21 23:54:55 -0700322 toks += police->tcfp_toks;
323 if (toks > (long)police->tcfp_burst)
324 toks = police->tcfp_burst;
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700325 toks -= L2T(police, qdisc_pkt_len(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 if ((toks|ptoks) >= 0) {
David S. Millere9ce1cd2006-08-21 23:54:55 -0700327 police->tcfp_t_c = now;
328 police->tcfp_toks = toks;
329 police->tcfp_ptoks = ptoks;
330 spin_unlock(&police->tcf_lock);
331 return police->tcfp_result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 }
333 }
334
David S. Millere9ce1cd2006-08-21 23:54:55 -0700335 police->tcf_qstats.overlimits++;
Jarek Poplawskib9647582009-06-16 08:33:55 +0000336 if (police->tcf_action == TC_ACT_SHOT)
337 police->tcf_qstats.drops++;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700338 spin_unlock(&police->tcf_lock);
339 return police->tcf_action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
342static int
343tcf_act_police_dump(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
344{
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700345 unsigned char *b = skb_tail_pointer(skb);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700346 struct tcf_police *police = a->priv;
Jeff Mahoney0f04cfd2010-08-31 13:21:42 +0000347 struct tc_police opt = {
348 .index = police->tcf_index,
349 .action = police->tcf_action,
350 .mtu = police->tcfp_mtu,
351 .burst = police->tcfp_burst,
352 .refcnt = police->tcf_refcnt - ref,
353 .bindcnt = police->tcf_bindcnt - bind,
354 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
David S. Millere9ce1cd2006-08-21 23:54:55 -0700356 if (police->tcfp_R_tab)
357 opt.rate = police->tcfp_R_tab->rate;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700358 if (police->tcfp_P_tab)
359 opt.peakrate = police->tcfp_P_tab->rate;
David S. Miller1b34ec42012-03-29 05:11:39 -0400360 if (nla_put(skb, TCA_POLICE_TBF, sizeof(opt), &opt))
361 goto nla_put_failure;
362 if (police->tcfp_result &&
363 nla_put_u32(skb, TCA_POLICE_RESULT, police->tcfp_result))
364 goto nla_put_failure;
365 if (police->tcfp_ewma_rate &&
366 nla_put_u32(skb, TCA_POLICE_AVRATE, police->tcfp_ewma_rate))
367 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 return skb->len;
369
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800370nla_put_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -0700371 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 return -1;
373}
374
375MODULE_AUTHOR("Alexey Kuznetsov");
376MODULE_DESCRIPTION("Policing actions");
377MODULE_LICENSE("GPL");
378
379static struct tc_action_ops act_police_ops = {
380 .kind = "police",
David S. Millere9ce1cd2006-08-21 23:54:55 -0700381 .hinfo = &police_hash_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 .type = TCA_ID_POLICE,
383 .capab = TCA_CAP_NONE,
384 .owner = THIS_MODULE,
385 .act = tcf_act_police,
386 .dump = tcf_act_police_dump,
387 .cleanup = tcf_act_police_cleanup,
David S. Millere9ce1cd2006-08-21 23:54:55 -0700388 .lookup = tcf_hash_search,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 .init = tcf_act_police_locate,
Jamal Hadi Salim83b950c2006-04-06 22:24:22 -0700390 .walk = tcf_act_police_walker
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391};
392
393static int __init
394police_init_module(void)
395{
396 return tcf_register_action(&act_police_ops);
397}
398
399static void __exit
400police_cleanup_module(void)
401{
402 tcf_unregister_action(&act_police_ops);
403}
404
405module_init(police_init_module);
406module_exit(police_cleanup_module);