blob: af68e1e83251080789bccce4e8b7c950d8115b24 [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>
19#include <linux/sched.h>
20#include <linux/string.h>
21#include <linux/mm.h>
22#include <linux/socket.h>
23#include <linux/sockios.h>
24#include <linux/in.h>
25#include <linux/errno.h>
26#include <linux/interrupt.h>
27#include <linux/netdevice.h>
28#include <linux/skbuff.h>
29#include <linux/module.h>
30#include <linux/rtnetlink.h>
31#include <linux/init.h>
32#include <net/sock.h>
33#include <net/act_api.h>
34
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,
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 int type, struct tc_action *a)
66{
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;
84 r = (struct rtattr*) skb->tail;
85 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--;
92 skb_trim(skb, (u8*)r - skb->data);
93 goto done;
94 }
95 r->rta_len = skb->tail - (u8*)r;
96 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:
106 skb_trim(skb, (u8*)r - skb->data);
107 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
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);
121#ifdef CONFIG_NET_ESTIMATOR
David S. Millere9ce1cd2006-08-21 23:54:55 -0700122 gen_kill_estimator(&p->tcf_bstats,
123 &p->tcf_rate_est);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124#endif
David S. Millere9ce1cd2006-08-21 23:54:55 -0700125 if (p->tcfp_R_tab)
126 qdisc_put_rtab(p->tcfp_R_tab);
127 if (p->tcfp_P_tab)
128 qdisc_put_rtab(p->tcfp_P_tab);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 kfree(p);
130 return;
131 }
132 }
133 BUG_TRAP(0);
134}
135
136#ifdef CONFIG_NET_CLS_ACT
137static int tcf_act_police_locate(struct rtattr *rta, struct rtattr *est,
138 struct tc_action *a, int ovr, int bind)
139{
140 unsigned h;
141 int ret = 0, err;
142 struct rtattr *tb[TCA_POLICE_MAX];
143 struct tc_police *parm;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700144 struct tcf_police *police;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 struct qdisc_rate_table *R_tab = NULL, *P_tab = NULL;
Patrick McHardy1e9b3d52006-11-30 19:54:05 -0800146 int size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 if (rta == NULL || rtattr_parse_nested(tb, TCA_POLICE_MAX, rta) < 0)
149 return -EINVAL;
150
Patrick McHardy1e9b3d52006-11-30 19:54:05 -0800151 if (tb[TCA_POLICE_TBF-1] == NULL)
152 return -EINVAL;
153 size = RTA_PAYLOAD(tb[TCA_POLICE_TBF-1]);
154 if (size != sizeof(*parm) && size != sizeof(struct tc_police_compat))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 return -EINVAL;
156 parm = RTA_DATA(tb[TCA_POLICE_TBF-1]);
157
158 if (tb[TCA_POLICE_RESULT-1] != NULL &&
159 RTA_PAYLOAD(tb[TCA_POLICE_RESULT-1]) != sizeof(u32))
160 return -EINVAL;
161 if (tb[TCA_POLICE_RESULT-1] != NULL &&
162 RTA_PAYLOAD(tb[TCA_POLICE_RESULT-1]) != sizeof(u32))
163 return -EINVAL;
164
David S. Millere9ce1cd2006-08-21 23:54:55 -0700165 if (parm->index) {
166 struct tcf_common *pc;
167
168 pc = tcf_hash_lookup(parm->index, &police_hash_info);
169 if (pc != NULL) {
170 a->priv = pc;
171 police = to_police(pc);
172 if (bind) {
173 police->tcf_bindcnt += 1;
174 police->tcf_refcnt += 1;
175 }
176 if (ovr)
177 goto override;
178 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 }
181
David S. Millere9ce1cd2006-08-21 23:54:55 -0700182 police = kzalloc(sizeof(*police), GFP_KERNEL);
183 if (police == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 ret = ACT_P_CREATED;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700186 police->tcf_refcnt = 1;
187 spin_lock_init(&police->tcf_lock);
188 police->tcf_stats_lock = &police->tcf_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 if (bind)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700190 police->tcf_bindcnt = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191override:
192 if (parm->rate.rate) {
193 err = -ENOMEM;
194 R_tab = qdisc_get_rtab(&parm->rate, tb[TCA_POLICE_RATE-1]);
195 if (R_tab == NULL)
196 goto failure;
197 if (parm->peakrate.rate) {
198 P_tab = qdisc_get_rtab(&parm->peakrate,
199 tb[TCA_POLICE_PEAKRATE-1]);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700200 if (P_tab == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 qdisc_put_rtab(R_tab);
202 goto failure;
203 }
204 }
205 }
206 /* No failure allowed after this point */
David S. Millere9ce1cd2006-08-21 23:54:55 -0700207 spin_lock_bh(&police->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 if (R_tab != NULL) {
David S. Millere9ce1cd2006-08-21 23:54:55 -0700209 qdisc_put_rtab(police->tcfp_R_tab);
210 police->tcfp_R_tab = R_tab;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 }
212 if (P_tab != NULL) {
David S. Millere9ce1cd2006-08-21 23:54:55 -0700213 qdisc_put_rtab(police->tcfp_P_tab);
214 police->tcfp_P_tab = P_tab;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
216
217 if (tb[TCA_POLICE_RESULT-1])
David S. Millere9ce1cd2006-08-21 23:54:55 -0700218 police->tcfp_result = *(u32*)RTA_DATA(tb[TCA_POLICE_RESULT-1]);
219 police->tcfp_toks = police->tcfp_burst = parm->burst;
220 police->tcfp_mtu = parm->mtu;
221 if (police->tcfp_mtu == 0) {
222 police->tcfp_mtu = ~0;
223 if (police->tcfp_R_tab)
224 police->tcfp_mtu = 255<<police->tcfp_R_tab->rate.cell_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 }
David S. Millere9ce1cd2006-08-21 23:54:55 -0700226 if (police->tcfp_P_tab)
227 police->tcfp_ptoks = L2T_P(police, police->tcfp_mtu);
228 police->tcf_action = parm->action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230#ifdef CONFIG_NET_ESTIMATOR
231 if (tb[TCA_POLICE_AVRATE-1])
David S. Millere9ce1cd2006-08-21 23:54:55 -0700232 police->tcfp_ewma_rate =
233 *(u32*)RTA_DATA(tb[TCA_POLICE_AVRATE-1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 if (est)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700235 gen_replace_estimator(&police->tcf_bstats,
236 &police->tcf_rate_est,
237 police->tcf_stats_lock, est);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238#endif
239
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
David S. Millere9ce1cd2006-08-21 23:54:55 -0700244 PSCHED_GET_TIME(police->tcfp_t_c);
245 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
256failure:
257 if (ret == ACT_P_CREATED)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700258 kfree(police);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 return err;
260}
261
262static int tcf_act_police_cleanup(struct tc_action *a, int bind)
263{
David S. Millere9ce1cd2006-08-21 23:54:55 -0700264 struct tcf_police *p = a->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 if (p != NULL)
267 return tcf_police_release(p, bind);
268 return 0;
269}
270
Patrick McHardyf43c5a02006-01-08 22:15:34 -0800271static int tcf_act_police(struct sk_buff *skb, struct tc_action *a,
Patrick McHardyabc3bc52005-08-09 19:25:56 -0700272 struct tcf_result *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
David S. Millere9ce1cd2006-08-21 23:54:55 -0700274 struct tcf_police *police = a->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 psched_time_t now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 long toks;
277 long ptoks = 0;
278
David S. Millere9ce1cd2006-08-21 23:54:55 -0700279 spin_lock(&police->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
David S. Millere9ce1cd2006-08-21 23:54:55 -0700281 police->tcf_bstats.bytes += skb->len;
282 police->tcf_bstats.packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284#ifdef CONFIG_NET_ESTIMATOR
David S. Millere9ce1cd2006-08-21 23:54:55 -0700285 if (police->tcfp_ewma_rate &&
286 police->tcf_rate_est.bps >= police->tcfp_ewma_rate) {
287 police->tcf_qstats.overlimits++;
288 spin_unlock(&police->tcf_lock);
289 return police->tcf_action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 }
291#endif
292
David S. Millere9ce1cd2006-08-21 23:54:55 -0700293 if (skb->len <= police->tcfp_mtu) {
294 if (police->tcfp_R_tab == NULL) {
295 spin_unlock(&police->tcf_lock);
296 return police->tcfp_result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 }
298
299 PSCHED_GET_TIME(now);
300
David S. Millere9ce1cd2006-08-21 23:54:55 -0700301 toks = PSCHED_TDIFF_SAFE(now, police->tcfp_t_c,
302 police->tcfp_burst);
303 if (police->tcfp_P_tab) {
304 ptoks = toks + police->tcfp_ptoks;
305 if (ptoks > (long)L2T_P(police, police->tcfp_mtu))
306 ptoks = (long)L2T_P(police, police->tcfp_mtu);
307 ptoks -= L2T_P(police, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 }
David S. Millere9ce1cd2006-08-21 23:54:55 -0700309 toks += police->tcfp_toks;
310 if (toks > (long)police->tcfp_burst)
311 toks = police->tcfp_burst;
312 toks -= L2T(police, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 if ((toks|ptoks) >= 0) {
David S. Millere9ce1cd2006-08-21 23:54:55 -0700314 police->tcfp_t_c = now;
315 police->tcfp_toks = toks;
316 police->tcfp_ptoks = ptoks;
317 spin_unlock(&police->tcf_lock);
318 return police->tcfp_result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 }
320 }
321
David S. Millere9ce1cd2006-08-21 23:54:55 -0700322 police->tcf_qstats.overlimits++;
323 spin_unlock(&police->tcf_lock);
324 return police->tcf_action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
326
327static int
328tcf_act_police_dump(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
329{
330 unsigned char *b = skb->tail;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700331 struct tcf_police *police = a->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 struct tc_police opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
David S. Millere9ce1cd2006-08-21 23:54:55 -0700334 opt.index = police->tcf_index;
335 opt.action = police->tcf_action;
336 opt.mtu = police->tcfp_mtu;
337 opt.burst = police->tcfp_burst;
338 opt.refcnt = police->tcf_refcnt - ref;
339 opt.bindcnt = police->tcf_bindcnt - bind;
340 if (police->tcfp_R_tab)
341 opt.rate = police->tcfp_R_tab->rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 else
343 memset(&opt.rate, 0, sizeof(opt.rate));
David S. Millere9ce1cd2006-08-21 23:54:55 -0700344 if (police->tcfp_P_tab)
345 opt.peakrate = police->tcfp_P_tab->rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 else
347 memset(&opt.peakrate, 0, sizeof(opt.peakrate));
348 RTA_PUT(skb, TCA_POLICE_TBF, sizeof(opt), &opt);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700349 if (police->tcfp_result)
350 RTA_PUT(skb, TCA_POLICE_RESULT, sizeof(int),
351 &police->tcfp_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352#ifdef CONFIG_NET_ESTIMATOR
David S. Millere9ce1cd2006-08-21 23:54:55 -0700353 if (police->tcfp_ewma_rate)
354 RTA_PUT(skb, TCA_POLICE_AVRATE, 4, &police->tcfp_ewma_rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355#endif
356 return skb->len;
357
358rtattr_failure:
359 skb_trim(skb, b - skb->data);
360 return -1;
361}
362
363MODULE_AUTHOR("Alexey Kuznetsov");
364MODULE_DESCRIPTION("Policing actions");
365MODULE_LICENSE("GPL");
366
367static struct tc_action_ops act_police_ops = {
368 .kind = "police",
David S. Millere9ce1cd2006-08-21 23:54:55 -0700369 .hinfo = &police_hash_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 .type = TCA_ID_POLICE,
371 .capab = TCA_CAP_NONE,
372 .owner = THIS_MODULE,
373 .act = tcf_act_police,
374 .dump = tcf_act_police_dump,
375 .cleanup = tcf_act_police_cleanup,
David S. Millere9ce1cd2006-08-21 23:54:55 -0700376 .lookup = tcf_hash_search,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 .init = tcf_act_police_locate,
Jamal Hadi Salim83b950c2006-04-06 22:24:22 -0700378 .walk = tcf_act_police_walker
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379};
380
381static int __init
382police_init_module(void)
383{
384 return tcf_register_action(&act_police_ops);
385}
386
387static void __exit
388police_cleanup_module(void)
389{
390 tcf_unregister_action(&act_police_ops);
391}
392
393module_init(police_init_module);
394module_exit(police_cleanup_module);
395
Patrick McHardy31bd06e2006-01-08 22:16:25 -0800396#else /* CONFIG_NET_CLS_ACT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
David S. Millere9ce1cd2006-08-21 23:54:55 -0700398static struct tcf_common *tcf_police_lookup(u32 index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
David S. Millere9ce1cd2006-08-21 23:54:55 -0700400 struct tcf_hashinfo *hinfo = &police_hash_info;
401 struct tcf_common *p;
402
403 read_lock(hinfo->lock);
404 for (p = hinfo->htab[tcf_hash(index, hinfo->hmask)]; p;
405 p = p->tcfc_next) {
406 if (p->tcfc_index == index)
407 break;
408 }
409 read_unlock(hinfo->lock);
410
411 return p;
412}
413
414static u32 tcf_police_new_index(void)
415{
416 u32 *idx_gen = &police_idx_gen;
417 u32 val = *idx_gen;
418
419 do {
420 if (++val == 0)
421 val = 1;
422 } while (tcf_police_lookup(val));
423
424 return (*idx_gen = val);
425}
426
427struct tcf_police *tcf_police_locate(struct rtattr *rta, struct rtattr *est)
428{
429 unsigned int h;
430 struct tcf_police *police;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 struct rtattr *tb[TCA_POLICE_MAX];
432 struct tc_police *parm;
Patrick McHardy1e9b3d52006-11-30 19:54:05 -0800433 int size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
435 if (rtattr_parse_nested(tb, TCA_POLICE_MAX, rta) < 0)
436 return NULL;
437
Patrick McHardy1e9b3d52006-11-30 19:54:05 -0800438 if (tb[TCA_POLICE_TBF-1] == NULL)
439 return NULL;
440 size = RTA_PAYLOAD(tb[TCA_POLICE_TBF-1]);
441 if (size != sizeof(*parm) && size != sizeof(struct tc_police_compat))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 return NULL;
443
444 parm = RTA_DATA(tb[TCA_POLICE_TBF-1]);
445
David S. Millere9ce1cd2006-08-21 23:54:55 -0700446 if (parm->index) {
447 struct tcf_common *pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
David S. Millere9ce1cd2006-08-21 23:54:55 -0700449 pc = tcf_police_lookup(parm->index);
450 if (pc) {
451 police = to_police(pc);
452 police->tcf_refcnt++;
453 return police;
454 }
455 }
456 police = kzalloc(sizeof(*police), GFP_KERNEL);
457 if (unlikely(!police))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 return NULL;
459
David S. Millere9ce1cd2006-08-21 23:54:55 -0700460 police->tcf_refcnt = 1;
461 spin_lock_init(&police->tcf_lock);
462 police->tcf_stats_lock = &police->tcf_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 if (parm->rate.rate) {
David S. Millere9ce1cd2006-08-21 23:54:55 -0700464 police->tcfp_R_tab =
465 qdisc_get_rtab(&parm->rate, tb[TCA_POLICE_RATE-1]);
466 if (police->tcfp_R_tab == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 goto failure;
468 if (parm->peakrate.rate) {
David S. Millere9ce1cd2006-08-21 23:54:55 -0700469 police->tcfp_P_tab =
470 qdisc_get_rtab(&parm->peakrate,
471 tb[TCA_POLICE_PEAKRATE-1]);
472 if (police->tcfp_P_tab == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 goto failure;
474 }
475 }
476 if (tb[TCA_POLICE_RESULT-1]) {
477 if (RTA_PAYLOAD(tb[TCA_POLICE_RESULT-1]) != sizeof(u32))
478 goto failure;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700479 police->tcfp_result = *(u32*)RTA_DATA(tb[TCA_POLICE_RESULT-1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 }
481#ifdef CONFIG_NET_ESTIMATOR
482 if (tb[TCA_POLICE_AVRATE-1]) {
483 if (RTA_PAYLOAD(tb[TCA_POLICE_AVRATE-1]) != sizeof(u32))
484 goto failure;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700485 police->tcfp_ewma_rate =
486 *(u32*)RTA_DATA(tb[TCA_POLICE_AVRATE-1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 }
488#endif
David S. Millere9ce1cd2006-08-21 23:54:55 -0700489 police->tcfp_toks = police->tcfp_burst = parm->burst;
490 police->tcfp_mtu = parm->mtu;
491 if (police->tcfp_mtu == 0) {
492 police->tcfp_mtu = ~0;
493 if (police->tcfp_R_tab)
494 police->tcfp_mtu = 255<<police->tcfp_R_tab->rate.cell_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 }
David S. Millere9ce1cd2006-08-21 23:54:55 -0700496 if (police->tcfp_P_tab)
497 police->tcfp_ptoks = L2T_P(police, police->tcfp_mtu);
498 PSCHED_GET_TIME(police->tcfp_t_c);
499 police->tcf_index = parm->index ? parm->index :
500 tcf_police_new_index();
501 police->tcf_action = parm->action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502#ifdef CONFIG_NET_ESTIMATOR
503 if (est)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700504 gen_new_estimator(&police->tcf_bstats, &police->tcf_rate_est,
505 police->tcf_stats_lock, est);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506#endif
David S. Millere9ce1cd2006-08-21 23:54:55 -0700507 h = tcf_hash(police->tcf_index, POL_TAB_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 write_lock_bh(&police_lock);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700509 police->tcf_next = tcf_police_ht[h];
510 tcf_police_ht[h] = &police->common;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 write_unlock_bh(&police_lock);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700512 return police;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514failure:
David S. Millere9ce1cd2006-08-21 23:54:55 -0700515 if (police->tcfp_R_tab)
516 qdisc_put_rtab(police->tcfp_R_tab);
517 kfree(police);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 return NULL;
519}
520
David S. Millere9ce1cd2006-08-21 23:54:55 -0700521int tcf_police(struct sk_buff *skb, struct tcf_police *police)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522{
523 psched_time_t now;
524 long toks;
525 long ptoks = 0;
526
David S. Millere9ce1cd2006-08-21 23:54:55 -0700527 spin_lock(&police->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
David S. Millere9ce1cd2006-08-21 23:54:55 -0700529 police->tcf_bstats.bytes += skb->len;
530 police->tcf_bstats.packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
532#ifdef CONFIG_NET_ESTIMATOR
David S. Millere9ce1cd2006-08-21 23:54:55 -0700533 if (police->tcfp_ewma_rate &&
534 police->tcf_rate_est.bps >= police->tcfp_ewma_rate) {
535 police->tcf_qstats.overlimits++;
536 spin_unlock(&police->tcf_lock);
537 return police->tcf_action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 }
539#endif
David S. Millere9ce1cd2006-08-21 23:54:55 -0700540 if (skb->len <= police->tcfp_mtu) {
541 if (police->tcfp_R_tab == NULL) {
542 spin_unlock(&police->tcf_lock);
543 return police->tcfp_result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 }
545
546 PSCHED_GET_TIME(now);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700547 toks = PSCHED_TDIFF_SAFE(now, police->tcfp_t_c,
548 police->tcfp_burst);
549 if (police->tcfp_P_tab) {
550 ptoks = toks + police->tcfp_ptoks;
551 if (ptoks > (long)L2T_P(police, police->tcfp_mtu))
552 ptoks = (long)L2T_P(police, police->tcfp_mtu);
553 ptoks -= L2T_P(police, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 }
David S. Millere9ce1cd2006-08-21 23:54:55 -0700555 toks += police->tcfp_toks;
556 if (toks > (long)police->tcfp_burst)
557 toks = police->tcfp_burst;
558 toks -= L2T(police, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 if ((toks|ptoks) >= 0) {
David S. Millere9ce1cd2006-08-21 23:54:55 -0700560 police->tcfp_t_c = now;
561 police->tcfp_toks = toks;
562 police->tcfp_ptoks = ptoks;
563 spin_unlock(&police->tcf_lock);
564 return police->tcfp_result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 }
566 }
567
David S. Millere9ce1cd2006-08-21 23:54:55 -0700568 police->tcf_qstats.overlimits++;
569 spin_unlock(&police->tcf_lock);
570 return police->tcf_action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571}
Patrick McHardy31bd06e2006-01-08 22:16:25 -0800572EXPORT_SYMBOL(tcf_police);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
David S. Millere9ce1cd2006-08-21 23:54:55 -0700574int tcf_police_dump(struct sk_buff *skb, struct tcf_police *police)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575{
David S. Millere9ce1cd2006-08-21 23:54:55 -0700576 unsigned char *b = skb->tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 struct tc_police opt;
578
David S. Millere9ce1cd2006-08-21 23:54:55 -0700579 opt.index = police->tcf_index;
580 opt.action = police->tcf_action;
581 opt.mtu = police->tcfp_mtu;
582 opt.burst = police->tcfp_burst;
583 if (police->tcfp_R_tab)
584 opt.rate = police->tcfp_R_tab->rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 else
586 memset(&opt.rate, 0, sizeof(opt.rate));
David S. Millere9ce1cd2006-08-21 23:54:55 -0700587 if (police->tcfp_P_tab)
588 opt.peakrate = police->tcfp_P_tab->rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 else
590 memset(&opt.peakrate, 0, sizeof(opt.peakrate));
591 RTA_PUT(skb, TCA_POLICE_TBF, sizeof(opt), &opt);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700592 if (police->tcfp_result)
593 RTA_PUT(skb, TCA_POLICE_RESULT, sizeof(int),
594 &police->tcfp_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595#ifdef CONFIG_NET_ESTIMATOR
David S. Millere9ce1cd2006-08-21 23:54:55 -0700596 if (police->tcfp_ewma_rate)
597 RTA_PUT(skb, TCA_POLICE_AVRATE, 4, &police->tcfp_ewma_rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598#endif
599 return skb->len;
600
601rtattr_failure:
602 skb_trim(skb, b - skb->data);
603 return -1;
604}
605
David S. Millere9ce1cd2006-08-21 23:54:55 -0700606int tcf_police_dump_stats(struct sk_buff *skb, struct tcf_police *police)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607{
608 struct gnet_dump d;
609
610 if (gnet_stats_start_copy_compat(skb, TCA_STATS2, TCA_STATS,
David S. Millere9ce1cd2006-08-21 23:54:55 -0700611 TCA_XSTATS, police->tcf_stats_lock,
612 &d) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 goto errout;
614
David S. Millere9ce1cd2006-08-21 23:54:55 -0700615 if (gnet_stats_copy_basic(&d, &police->tcf_bstats) < 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616#ifdef CONFIG_NET_ESTIMATOR
David S. Millere9ce1cd2006-08-21 23:54:55 -0700617 gnet_stats_copy_rate_est(&d, &police->tcf_rate_est) < 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618#endif
David S. Millere9ce1cd2006-08-21 23:54:55 -0700619 gnet_stats_copy_queue(&d, &police->tcf_qstats) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 goto errout;
621
622 if (gnet_stats_finish_copy(&d) < 0)
623 goto errout;
624
625 return 0;
626
627errout:
628 return -1;
629}
630
Patrick McHardy31bd06e2006-01-08 22:16:25 -0800631#endif /* CONFIG_NET_CLS_ACT */