blob: 3e8716dd738c1f682e03299eabb8a223e887b6a2 [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
13#include <asm/uaccess.h>
14#include <asm/system.h>
15#include <linux/bitops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/module.h>
17#include <linux/types.h>
18#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/string.h>
20#include <linux/mm.h>
21#include <linux/socket.h>
22#include <linux/sockios.h>
23#include <linux/in.h>
24#include <linux/errno.h>
25#include <linux/interrupt.h>
26#include <linux/netdevice.h>
27#include <linux/skbuff.h>
28#include <linux/module.h>
29#include <linux/rtnetlink.h>
30#include <linux/init.h>
31#include <net/sock.h>
32#include <net/act_api.h>
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070033#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
David S. Millere9ce1cd2006-08-21 23:54:55 -070035#define L2T(p,L) ((p)->tcfp_R_tab->data[(L)>>(p)->tcfp_R_tab->rate.cell_log])
36#define L2T_P(p,L) ((p)->tcfp_P_tab->data[(L)>>(p)->tcfp_P_tab->rate.cell_log])
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
David S. Millere9ce1cd2006-08-21 23:54:55 -070038#define POL_TAB_MASK 15
39static struct tcf_common *tcf_police_ht[POL_TAB_MASK + 1];
40static u32 police_idx_gen;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041static DEFINE_RWLOCK(police_lock);
42
David S. Millere9ce1cd2006-08-21 23:54:55 -070043static struct tcf_hashinfo police_hash_info = {
44 .htab = tcf_police_ht,
45 .hmask = POL_TAB_MASK,
46 .lock = &police_lock,
47};
48
Patrick McHardy1e9b3d52006-11-30 19:54:05 -080049/* old policer structure from before tc actions */
50struct tc_police_compat
51{
52 u32 index;
53 int action;
54 u32 limit;
55 u32 burst;
56 u32 mtu;
57 struct tc_ratespec rate;
58 struct tc_ratespec peakrate;
59};
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061/* Each policer is serialized by its individual spinlock */
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#ifdef CONFIG_NET_CLS_ACT
Jamal Hadi Salim83b950c2006-04-06 22:24:22 -070064static int tcf_act_police_walker(struct sk_buff *skb, struct netlink_callback *cb,
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +090065 int type, struct tc_action *a)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
David S. Millere9ce1cd2006-08-21 23:54:55 -070067 struct tcf_common *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 int err = 0, index = -1, i = 0, s_i = 0, n_i = 0;
69 struct rtattr *r;
70
71 read_lock(&police_lock);
72
73 s_i = cb->args[0];
74
David S. Millere9ce1cd2006-08-21 23:54:55 -070075 for (i = 0; i < (POL_TAB_MASK + 1); i++) {
76 p = tcf_police_ht[tcf_hash(i, POL_TAB_MASK)];
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
David S. Millere9ce1cd2006-08-21 23:54:55 -070078 for (; p; p = p->tcfc_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 index++;
80 if (index < s_i)
81 continue;
82 a->priv = p;
83 a->order = index;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -070084 r = (struct rtattr *)skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 RTA_PUT(skb, a->order, 0, NULL);
86 if (type == RTM_DELACTION)
87 err = tcf_action_dump_1(skb, a, 0, 1);
88 else
89 err = tcf_action_dump_1(skb, a, 0, 0);
90 if (err < 0) {
91 index--;
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070092 nlmsg_trim(skb, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 goto done;
94 }
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -070095 r->rta_len = skb_tail_pointer(skb) - (u8 *)r;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 n_i++;
97 }
98 }
99done:
100 read_unlock(&police_lock);
101 if (n_i)
102 cb->args[0] += n_i;
103 return n_i;
104
105rtattr_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -0700106 nlmsg_trim(skb, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 goto done;
108}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#endif
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111void tcf_police_destroy(struct tcf_police *p)
112{
David S. Millere9ce1cd2006-08-21 23:54:55 -0700113 unsigned int h = tcf_hash(p->tcf_index, POL_TAB_MASK);
114 struct tcf_common **p1p;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900115
David S. Millere9ce1cd2006-08-21 23:54:55 -0700116 for (p1p = &tcf_police_ht[h]; *p1p; p1p = &(*p1p)->tcfc_next) {
117 if (*p1p == &p->common) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 write_lock_bh(&police_lock);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700119 *p1p = p->tcf_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 write_unlock_bh(&police_lock);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700121 gen_kill_estimator(&p->tcf_bstats,
122 &p->tcf_rate_est);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700123 if (p->tcfp_R_tab)
124 qdisc_put_rtab(p->tcfp_R_tab);
125 if (p->tcfp_P_tab)
126 qdisc_put_rtab(p->tcfp_P_tab);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 kfree(p);
128 return;
129 }
130 }
131 BUG_TRAP(0);
132}
133
134#ifdef CONFIG_NET_CLS_ACT
135static int tcf_act_police_locate(struct rtattr *rta, struct rtattr *est,
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900136 struct tc_action *a, int ovr, int bind)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
138 unsigned h;
139 int ret = 0, err;
140 struct rtattr *tb[TCA_POLICE_MAX];
141 struct tc_police *parm;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700142 struct tcf_police *police;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 struct qdisc_rate_table *R_tab = NULL, *P_tab = NULL;
Patrick McHardy1e9b3d52006-11-30 19:54:05 -0800144 int size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146 if (rta == NULL || rtattr_parse_nested(tb, TCA_POLICE_MAX, rta) < 0)
147 return -EINVAL;
148
Patrick McHardy1e9b3d52006-11-30 19:54:05 -0800149 if (tb[TCA_POLICE_TBF-1] == NULL)
150 return -EINVAL;
151 size = RTA_PAYLOAD(tb[TCA_POLICE_TBF-1]);
152 if (size != sizeof(*parm) && size != sizeof(struct tc_police_compat))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 return -EINVAL;
154 parm = RTA_DATA(tb[TCA_POLICE_TBF-1]);
155
156 if (tb[TCA_POLICE_RESULT-1] != NULL &&
157 RTA_PAYLOAD(tb[TCA_POLICE_RESULT-1]) != sizeof(u32))
158 return -EINVAL;
159 if (tb[TCA_POLICE_RESULT-1] != NULL &&
160 RTA_PAYLOAD(tb[TCA_POLICE_RESULT-1]) != sizeof(u32))
161 return -EINVAL;
162
David S. Millere9ce1cd2006-08-21 23:54:55 -0700163 if (parm->index) {
164 struct tcf_common *pc;
165
166 pc = tcf_hash_lookup(parm->index, &police_hash_info);
167 if (pc != NULL) {
168 a->priv = pc;
169 police = to_police(pc);
170 if (bind) {
171 police->tcf_bindcnt += 1;
172 police->tcf_refcnt += 1;
173 }
174 if (ovr)
175 goto override;
176 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 }
179
David S. Millere9ce1cd2006-08-21 23:54:55 -0700180 police = kzalloc(sizeof(*police), GFP_KERNEL);
181 if (police == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 ret = ACT_P_CREATED;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700184 police->tcf_refcnt = 1;
185 spin_lock_init(&police->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 if (bind)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700187 police->tcf_bindcnt = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188override:
189 if (parm->rate.rate) {
190 err = -ENOMEM;
191 R_tab = qdisc_get_rtab(&parm->rate, tb[TCA_POLICE_RATE-1]);
192 if (R_tab == NULL)
193 goto failure;
194 if (parm->peakrate.rate) {
195 P_tab = qdisc_get_rtab(&parm->peakrate,
196 tb[TCA_POLICE_PEAKRATE-1]);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700197 if (P_tab == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 qdisc_put_rtab(R_tab);
199 goto failure;
200 }
201 }
202 }
203 /* No failure allowed after this point */
David S. Millere9ce1cd2006-08-21 23:54:55 -0700204 spin_lock_bh(&police->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 if (R_tab != NULL) {
David S. Millere9ce1cd2006-08-21 23:54:55 -0700206 qdisc_put_rtab(police->tcfp_R_tab);
207 police->tcfp_R_tab = R_tab;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 }
209 if (P_tab != NULL) {
David S. Millere9ce1cd2006-08-21 23:54:55 -0700210 qdisc_put_rtab(police->tcfp_P_tab);
211 police->tcfp_P_tab = P_tab;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 }
213
214 if (tb[TCA_POLICE_RESULT-1])
David S. Millere9ce1cd2006-08-21 23:54:55 -0700215 police->tcfp_result = *(u32*)RTA_DATA(tb[TCA_POLICE_RESULT-1]);
216 police->tcfp_toks = police->tcfp_burst = parm->burst;
217 police->tcfp_mtu = parm->mtu;
218 if (police->tcfp_mtu == 0) {
219 police->tcfp_mtu = ~0;
220 if (police->tcfp_R_tab)
221 police->tcfp_mtu = 255<<police->tcfp_R_tab->rate.cell_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 }
David S. Millere9ce1cd2006-08-21 23:54:55 -0700223 if (police->tcfp_P_tab)
224 police->tcfp_ptoks = L2T_P(police, police->tcfp_mtu);
225 police->tcf_action = parm->action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 if (tb[TCA_POLICE_AVRATE-1])
David S. Millere9ce1cd2006-08-21 23:54:55 -0700228 police->tcfp_ewma_rate =
229 *(u32*)RTA_DATA(tb[TCA_POLICE_AVRATE-1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 if (est)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700231 gen_replace_estimator(&police->tcf_bstats,
232 &police->tcf_rate_est,
Patrick McHardy4bdf3992007-07-02 22:47:37 -0700233 &police->tcf_lock, est);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
David S. Millere9ce1cd2006-08-21 23:54:55 -0700235 spin_unlock_bh(&police->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 if (ret != ACT_P_CREATED)
237 return ret;
238
Patrick McHardy3bebcda2007-03-23 11:29:25 -0700239 police->tcfp_t_c = psched_get_time();
David S. Millere9ce1cd2006-08-21 23:54:55 -0700240 police->tcf_index = parm->index ? parm->index :
241 tcf_hash_new_index(&police_idx_gen, &police_hash_info);
242 h = tcf_hash(police->tcf_index, POL_TAB_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 write_lock_bh(&police_lock);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700244 police->tcf_next = tcf_police_ht[h];
245 tcf_police_ht[h] = &police->common;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 write_unlock_bh(&police_lock);
247
David S. Millere9ce1cd2006-08-21 23:54:55 -0700248 a->priv = police;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 return ret;
250
251failure:
252 if (ret == ACT_P_CREATED)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700253 kfree(police);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 return err;
255}
256
257static int tcf_act_police_cleanup(struct tc_action *a, int bind)
258{
David S. Millere9ce1cd2006-08-21 23:54:55 -0700259 struct tcf_police *p = a->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261 if (p != NULL)
262 return tcf_police_release(p, bind);
263 return 0;
264}
265
Patrick McHardyf43c5a02006-01-08 22:15:34 -0800266static int tcf_act_police(struct sk_buff *skb, struct tc_action *a,
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900267 struct tcf_result *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
David S. Millere9ce1cd2006-08-21 23:54:55 -0700269 struct tcf_police *police = a->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 psched_time_t now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 long toks;
272 long ptoks = 0;
273
David S. Millere9ce1cd2006-08-21 23:54:55 -0700274 spin_lock(&police->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
David S. Millere9ce1cd2006-08-21 23:54:55 -0700276 police->tcf_bstats.bytes += skb->len;
277 police->tcf_bstats.packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
David S. Millere9ce1cd2006-08-21 23:54:55 -0700279 if (police->tcfp_ewma_rate &&
280 police->tcf_rate_est.bps >= police->tcfp_ewma_rate) {
281 police->tcf_qstats.overlimits++;
282 spin_unlock(&police->tcf_lock);
283 return police->tcf_action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
David S. Millere9ce1cd2006-08-21 23:54:55 -0700286 if (skb->len <= police->tcfp_mtu) {
287 if (police->tcfp_R_tab == NULL) {
288 spin_unlock(&police->tcf_lock);
289 return police->tcfp_result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 }
291
Patrick McHardy3bebcda2007-03-23 11:29:25 -0700292 now = psched_get_time();
Patrick McHardy03cc45c2007-03-23 11:29:11 -0700293 toks = psched_tdiff_bounded(now, police->tcfp_t_c,
294 police->tcfp_burst);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700295 if (police->tcfp_P_tab) {
296 ptoks = toks + police->tcfp_ptoks;
297 if (ptoks > (long)L2T_P(police, police->tcfp_mtu))
298 ptoks = (long)L2T_P(police, police->tcfp_mtu);
299 ptoks -= L2T_P(police, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 }
David S. Millere9ce1cd2006-08-21 23:54:55 -0700301 toks += police->tcfp_toks;
302 if (toks > (long)police->tcfp_burst)
303 toks = police->tcfp_burst;
304 toks -= L2T(police, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 if ((toks|ptoks) >= 0) {
David S. Millere9ce1cd2006-08-21 23:54:55 -0700306 police->tcfp_t_c = now;
307 police->tcfp_toks = toks;
308 police->tcfp_ptoks = ptoks;
309 spin_unlock(&police->tcf_lock);
310 return police->tcfp_result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 }
312 }
313
David S. Millere9ce1cd2006-08-21 23:54:55 -0700314 police->tcf_qstats.overlimits++;
315 spin_unlock(&police->tcf_lock);
316 return police->tcf_action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317}
318
319static int
320tcf_act_police_dump(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
321{
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700322 unsigned char *b = skb_tail_pointer(skb);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700323 struct tcf_police *police = a->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 struct tc_police opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
David S. Millere9ce1cd2006-08-21 23:54:55 -0700326 opt.index = police->tcf_index;
327 opt.action = police->tcf_action;
328 opt.mtu = police->tcfp_mtu;
329 opt.burst = police->tcfp_burst;
330 opt.refcnt = police->tcf_refcnt - ref;
331 opt.bindcnt = police->tcf_bindcnt - bind;
332 if (police->tcfp_R_tab)
333 opt.rate = police->tcfp_R_tab->rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 else
335 memset(&opt.rate, 0, sizeof(opt.rate));
David S. Millere9ce1cd2006-08-21 23:54:55 -0700336 if (police->tcfp_P_tab)
337 opt.peakrate = police->tcfp_P_tab->rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 else
339 memset(&opt.peakrate, 0, sizeof(opt.peakrate));
340 RTA_PUT(skb, TCA_POLICE_TBF, sizeof(opt), &opt);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700341 if (police->tcfp_result)
342 RTA_PUT(skb, TCA_POLICE_RESULT, sizeof(int),
343 &police->tcfp_result);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700344 if (police->tcfp_ewma_rate)
345 RTA_PUT(skb, TCA_POLICE_AVRATE, 4, &police->tcfp_ewma_rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 return skb->len;
347
348rtattr_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -0700349 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 return -1;
351}
352
353MODULE_AUTHOR("Alexey Kuznetsov");
354MODULE_DESCRIPTION("Policing actions");
355MODULE_LICENSE("GPL");
356
357static struct tc_action_ops act_police_ops = {
358 .kind = "police",
David S. Millere9ce1cd2006-08-21 23:54:55 -0700359 .hinfo = &police_hash_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 .type = TCA_ID_POLICE,
361 .capab = TCA_CAP_NONE,
362 .owner = THIS_MODULE,
363 .act = tcf_act_police,
364 .dump = tcf_act_police_dump,
365 .cleanup = tcf_act_police_cleanup,
David S. Millere9ce1cd2006-08-21 23:54:55 -0700366 .lookup = tcf_hash_search,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 .init = tcf_act_police_locate,
Jamal Hadi Salim83b950c2006-04-06 22:24:22 -0700368 .walk = tcf_act_police_walker
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369};
370
371static int __init
372police_init_module(void)
373{
374 return tcf_register_action(&act_police_ops);
375}
376
377static void __exit
378police_cleanup_module(void)
379{
380 tcf_unregister_action(&act_police_ops);
381}
382
383module_init(police_init_module);
384module_exit(police_cleanup_module);
385
Patrick McHardy31bd06e2006-01-08 22:16:25 -0800386#else /* CONFIG_NET_CLS_ACT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
David S. Millere9ce1cd2006-08-21 23:54:55 -0700388static struct tcf_common *tcf_police_lookup(u32 index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
David S. Millere9ce1cd2006-08-21 23:54:55 -0700390 struct tcf_hashinfo *hinfo = &police_hash_info;
391 struct tcf_common *p;
392
393 read_lock(hinfo->lock);
394 for (p = hinfo->htab[tcf_hash(index, hinfo->hmask)]; p;
395 p = p->tcfc_next) {
396 if (p->tcfc_index == index)
397 break;
398 }
399 read_unlock(hinfo->lock);
400
401 return p;
402}
403
404static u32 tcf_police_new_index(void)
405{
406 u32 *idx_gen = &police_idx_gen;
407 u32 val = *idx_gen;
408
409 do {
410 if (++val == 0)
411 val = 1;
412 } while (tcf_police_lookup(val));
413
414 return (*idx_gen = val);
415}
416
417struct tcf_police *tcf_police_locate(struct rtattr *rta, struct rtattr *est)
418{
419 unsigned int h;
420 struct tcf_police *police;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 struct rtattr *tb[TCA_POLICE_MAX];
422 struct tc_police *parm;
Patrick McHardy1e9b3d52006-11-30 19:54:05 -0800423 int size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
425 if (rtattr_parse_nested(tb, TCA_POLICE_MAX, rta) < 0)
426 return NULL;
427
Patrick McHardy1e9b3d52006-11-30 19:54:05 -0800428 if (tb[TCA_POLICE_TBF-1] == NULL)
429 return NULL;
430 size = RTA_PAYLOAD(tb[TCA_POLICE_TBF-1]);
431 if (size != sizeof(*parm) && size != sizeof(struct tc_police_compat))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 return NULL;
433
434 parm = RTA_DATA(tb[TCA_POLICE_TBF-1]);
435
David S. Millere9ce1cd2006-08-21 23:54:55 -0700436 if (parm->index) {
437 struct tcf_common *pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
David S. Millere9ce1cd2006-08-21 23:54:55 -0700439 pc = tcf_police_lookup(parm->index);
440 if (pc) {
441 police = to_police(pc);
442 police->tcf_refcnt++;
443 return police;
444 }
445 }
446 police = kzalloc(sizeof(*police), GFP_KERNEL);
447 if (unlikely(!police))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 return NULL;
449
David S. Millere9ce1cd2006-08-21 23:54:55 -0700450 police->tcf_refcnt = 1;
451 spin_lock_init(&police->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 if (parm->rate.rate) {
David S. Millere9ce1cd2006-08-21 23:54:55 -0700453 police->tcfp_R_tab =
454 qdisc_get_rtab(&parm->rate, tb[TCA_POLICE_RATE-1]);
455 if (police->tcfp_R_tab == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 goto failure;
457 if (parm->peakrate.rate) {
David S. Millere9ce1cd2006-08-21 23:54:55 -0700458 police->tcfp_P_tab =
459 qdisc_get_rtab(&parm->peakrate,
460 tb[TCA_POLICE_PEAKRATE-1]);
461 if (police->tcfp_P_tab == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 goto failure;
463 }
464 }
465 if (tb[TCA_POLICE_RESULT-1]) {
466 if (RTA_PAYLOAD(tb[TCA_POLICE_RESULT-1]) != sizeof(u32))
467 goto failure;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700468 police->tcfp_result = *(u32*)RTA_DATA(tb[TCA_POLICE_RESULT-1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 if (tb[TCA_POLICE_AVRATE-1]) {
471 if (RTA_PAYLOAD(tb[TCA_POLICE_AVRATE-1]) != sizeof(u32))
472 goto failure;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700473 police->tcfp_ewma_rate =
474 *(u32*)RTA_DATA(tb[TCA_POLICE_AVRATE-1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 }
David S. Millere9ce1cd2006-08-21 23:54:55 -0700476 police->tcfp_toks = police->tcfp_burst = parm->burst;
477 police->tcfp_mtu = parm->mtu;
478 if (police->tcfp_mtu == 0) {
479 police->tcfp_mtu = ~0;
480 if (police->tcfp_R_tab)
481 police->tcfp_mtu = 255<<police->tcfp_R_tab->rate.cell_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 }
David S. Millere9ce1cd2006-08-21 23:54:55 -0700483 if (police->tcfp_P_tab)
484 police->tcfp_ptoks = L2T_P(police, police->tcfp_mtu);
Patrick McHardy3bebcda2007-03-23 11:29:25 -0700485 police->tcfp_t_c = psched_get_time();
David S. Millere9ce1cd2006-08-21 23:54:55 -0700486 police->tcf_index = parm->index ? parm->index :
487 tcf_police_new_index();
488 police->tcf_action = parm->action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 if (est)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700490 gen_new_estimator(&police->tcf_bstats, &police->tcf_rate_est,
Patrick McHardy4bdf3992007-07-02 22:47:37 -0700491 &police->tcf_lock, est);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700492 h = tcf_hash(police->tcf_index, POL_TAB_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 write_lock_bh(&police_lock);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700494 police->tcf_next = tcf_police_ht[h];
495 tcf_police_ht[h] = &police->common;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 write_unlock_bh(&police_lock);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700497 return police;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
499failure:
David S. Millere9ce1cd2006-08-21 23:54:55 -0700500 if (police->tcfp_R_tab)
501 qdisc_put_rtab(police->tcfp_R_tab);
502 kfree(police);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 return NULL;
504}
505
David S. Millere9ce1cd2006-08-21 23:54:55 -0700506int tcf_police(struct sk_buff *skb, struct tcf_police *police)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507{
508 psched_time_t now;
509 long toks;
510 long ptoks = 0;
511
David S. Millere9ce1cd2006-08-21 23:54:55 -0700512 spin_lock(&police->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
David S. Millere9ce1cd2006-08-21 23:54:55 -0700514 police->tcf_bstats.bytes += skb->len;
515 police->tcf_bstats.packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
David S. Millere9ce1cd2006-08-21 23:54:55 -0700517 if (police->tcfp_ewma_rate &&
518 police->tcf_rate_est.bps >= police->tcfp_ewma_rate) {
519 police->tcf_qstats.overlimits++;
520 spin_unlock(&police->tcf_lock);
521 return police->tcf_action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 }
David S. Millere9ce1cd2006-08-21 23:54:55 -0700523 if (skb->len <= police->tcfp_mtu) {
524 if (police->tcfp_R_tab == NULL) {
525 spin_unlock(&police->tcf_lock);
526 return police->tcfp_result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 }
528
Patrick McHardy3bebcda2007-03-23 11:29:25 -0700529 now = psched_get_time();
Patrick McHardy03cc45c2007-03-23 11:29:11 -0700530 toks = psched_tdiff_bounded(now, police->tcfp_t_c,
531 police->tcfp_burst);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700532 if (police->tcfp_P_tab) {
533 ptoks = toks + police->tcfp_ptoks;
534 if (ptoks > (long)L2T_P(police, police->tcfp_mtu))
535 ptoks = (long)L2T_P(police, police->tcfp_mtu);
536 ptoks -= L2T_P(police, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 }
David S. Millere9ce1cd2006-08-21 23:54:55 -0700538 toks += police->tcfp_toks;
539 if (toks > (long)police->tcfp_burst)
540 toks = police->tcfp_burst;
541 toks -= L2T(police, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 if ((toks|ptoks) >= 0) {
David S. Millere9ce1cd2006-08-21 23:54:55 -0700543 police->tcfp_t_c = now;
544 police->tcfp_toks = toks;
545 police->tcfp_ptoks = ptoks;
546 spin_unlock(&police->tcf_lock);
547 return police->tcfp_result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 }
549 }
550
David S. Millere9ce1cd2006-08-21 23:54:55 -0700551 police->tcf_qstats.overlimits++;
552 spin_unlock(&police->tcf_lock);
553 return police->tcf_action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554}
Patrick McHardy31bd06e2006-01-08 22:16:25 -0800555EXPORT_SYMBOL(tcf_police);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
David S. Millere9ce1cd2006-08-21 23:54:55 -0700557int tcf_police_dump(struct sk_buff *skb, struct tcf_police *police)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700559 unsigned char *b = skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 struct tc_police opt;
561
David S. Millere9ce1cd2006-08-21 23:54:55 -0700562 opt.index = police->tcf_index;
563 opt.action = police->tcf_action;
564 opt.mtu = police->tcfp_mtu;
565 opt.burst = police->tcfp_burst;
566 if (police->tcfp_R_tab)
567 opt.rate = police->tcfp_R_tab->rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 else
569 memset(&opt.rate, 0, sizeof(opt.rate));
David S. Millere9ce1cd2006-08-21 23:54:55 -0700570 if (police->tcfp_P_tab)
571 opt.peakrate = police->tcfp_P_tab->rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 else
573 memset(&opt.peakrate, 0, sizeof(opt.peakrate));
574 RTA_PUT(skb, TCA_POLICE_TBF, sizeof(opt), &opt);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700575 if (police->tcfp_result)
576 RTA_PUT(skb, TCA_POLICE_RESULT, sizeof(int),
577 &police->tcfp_result);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700578 if (police->tcfp_ewma_rate)
579 RTA_PUT(skb, TCA_POLICE_AVRATE, 4, &police->tcfp_ewma_rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 return skb->len;
581
582rtattr_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -0700583 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 return -1;
585}
586
David S. Millere9ce1cd2006-08-21 23:54:55 -0700587int tcf_police_dump_stats(struct sk_buff *skb, struct tcf_police *police)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
589 struct gnet_dump d;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 if (gnet_stats_start_copy_compat(skb, TCA_STATS2, TCA_STATS,
Patrick McHardy4bdf3992007-07-02 22:47:37 -0700592 TCA_XSTATS, &police->tcf_lock,
David S. Millere9ce1cd2006-08-21 23:54:55 -0700593 &d) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 goto errout;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900595
David S. Millere9ce1cd2006-08-21 23:54:55 -0700596 if (gnet_stats_copy_basic(&d, &police->tcf_bstats) < 0 ||
David S. Millere9ce1cd2006-08-21 23:54:55 -0700597 gnet_stats_copy_rate_est(&d, &police->tcf_rate_est) < 0 ||
David S. Millere9ce1cd2006-08-21 23:54:55 -0700598 gnet_stats_copy_queue(&d, &police->tcf_qstats) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 goto errout;
600
601 if (gnet_stats_finish_copy(&d) < 0)
602 goto errout;
603
604 return 0;
605
606errout:
607 return -1;
608}
609
Patrick McHardy31bd06e2006-01-08 22:16:25 -0800610#endif /* CONFIG_NET_CLS_ACT */