[NETLINK]: Use nlmsg_trim() where appropriate
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / net / sched / act_police.c
CommitLineData
1da177e4
LT
1/*
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>
1da177e4
LT
16#include <linux/module.h>
17#include <linux/types.h>
18#include <linux/kernel.h>
1da177e4
LT
19#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>
dc5fc579 33#include <net/netlink.h>
1da177e4 34
e9ce1cd3
DM
35#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])
1da177e4 37
e9ce1cd3
DM
38#define POL_TAB_MASK 15
39static struct tcf_common *tcf_police_ht[POL_TAB_MASK + 1];
40static u32 police_idx_gen;
41static DEFINE_RWLOCK(police_lock);
1da177e4 42
e9ce1cd3
DM
43static struct tcf_hashinfo police_hash_info = {
44 .htab = tcf_police_ht,
45 .hmask = POL_TAB_MASK,
46 .lock = &police_lock,
47};
1da177e4 48
1e9b3d53
PM
49/* 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
e9ce1cd3 61/* Each policer is serialized by its individual spinlock */
1da177e4
LT
62
63#ifdef CONFIG_NET_CLS_ACT
83b950c8 64static int tcf_act_police_walker(struct sk_buff *skb, struct netlink_callback *cb,
10297b99 65 int type, struct tc_action *a)
1da177e4 66{
e9ce1cd3 67 struct tcf_common *p;
1da177e4
LT
68 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
e9ce1cd3
DM
75 for (i = 0; i < (POL_TAB_MASK + 1); i++) {
76 p = tcf_police_ht[tcf_hash(i, POL_TAB_MASK)];
1da177e4 77
e9ce1cd3 78 for (; p; p = p->tcfc_next) {
1da177e4
LT
79 index++;
80 if (index < s_i)
81 continue;
82 a->priv = p;
83 a->order = index;
27a884dc 84 r = (struct rtattr *)skb_tail_pointer(skb);
1da177e4
LT
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--;
dc5fc579 92 nlmsg_trim(skb, r);
1da177e4
LT
93 goto done;
94 }
27a884dc 95 r->rta_len = skb_tail_pointer(skb) - (u8 *)r;
1da177e4
LT
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:
dc5fc579 106 nlmsg_trim(skb, r);
1da177e4
LT
107 goto done;
108}
1da177e4
LT
109#endif
110
1da177e4
LT
111void tcf_police_destroy(struct tcf_police *p)
112{
e9ce1cd3
DM
113 unsigned int h = tcf_hash(p->tcf_index, POL_TAB_MASK);
114 struct tcf_common **p1p;
10297b99 115
e9ce1cd3
DM
116 for (p1p = &tcf_police_ht[h]; *p1p; p1p = &(*p1p)->tcfc_next) {
117 if (*p1p == &p->common) {
1da177e4 118 write_lock_bh(&police_lock);
e9ce1cd3 119 *p1p = p->tcf_next;
1da177e4
LT
120 write_unlock_bh(&police_lock);
121#ifdef CONFIG_NET_ESTIMATOR
e9ce1cd3
DM
122 gen_kill_estimator(&p->tcf_bstats,
123 &p->tcf_rate_est);
1da177e4 124#endif
e9ce1cd3
DM
125 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);
1da177e4
LT
129 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,
10297b99 138 struct tc_action *a, int ovr, int bind)
1da177e4
LT
139{
140 unsigned h;
141 int ret = 0, err;
142 struct rtattr *tb[TCA_POLICE_MAX];
143 struct tc_police *parm;
e9ce1cd3 144 struct tcf_police *police;
1da177e4 145 struct qdisc_rate_table *R_tab = NULL, *P_tab = NULL;
1e9b3d53 146 int size;
1da177e4
LT
147
148 if (rta == NULL || rtattr_parse_nested(tb, TCA_POLICE_MAX, rta) < 0)
149 return -EINVAL;
150
1e9b3d53
PM
151 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))
1da177e4
LT
155 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
e9ce1cd3
DM
165 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;
1da177e4 179 }
1da177e4
LT
180 }
181
e9ce1cd3
DM
182 police = kzalloc(sizeof(*police), GFP_KERNEL);
183 if (police == NULL)
1da177e4 184 return -ENOMEM;
1da177e4 185 ret = ACT_P_CREATED;
e9ce1cd3
DM
186 police->tcf_refcnt = 1;
187 spin_lock_init(&police->tcf_lock);
188 police->tcf_stats_lock = &police->tcf_lock;
1da177e4 189 if (bind)
e9ce1cd3 190 police->tcf_bindcnt = 1;
1da177e4
LT
191override:
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]);
e9ce1cd3 200 if (P_tab == NULL) {
1da177e4
LT
201 qdisc_put_rtab(R_tab);
202 goto failure;
203 }
204 }
205 }
206 /* No failure allowed after this point */
e9ce1cd3 207 spin_lock_bh(&police->tcf_lock);
1da177e4 208 if (R_tab != NULL) {
e9ce1cd3
DM
209 qdisc_put_rtab(police->tcfp_R_tab);
210 police->tcfp_R_tab = R_tab;
1da177e4
LT
211 }
212 if (P_tab != NULL) {
e9ce1cd3
DM
213 qdisc_put_rtab(police->tcfp_P_tab);
214 police->tcfp_P_tab = P_tab;
1da177e4
LT
215 }
216
217 if (tb[TCA_POLICE_RESULT-1])
e9ce1cd3
DM
218 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;
1da177e4 225 }
e9ce1cd3
DM
226 if (police->tcfp_P_tab)
227 police->tcfp_ptoks = L2T_P(police, police->tcfp_mtu);
228 police->tcf_action = parm->action;
1da177e4
LT
229
230#ifdef CONFIG_NET_ESTIMATOR
231 if (tb[TCA_POLICE_AVRATE-1])
e9ce1cd3
DM
232 police->tcfp_ewma_rate =
233 *(u32*)RTA_DATA(tb[TCA_POLICE_AVRATE-1]);
1da177e4 234 if (est)
e9ce1cd3
DM
235 gen_replace_estimator(&police->tcf_bstats,
236 &police->tcf_rate_est,
237 police->tcf_stats_lock, est);
1da177e4
LT
238#endif
239
e9ce1cd3 240 spin_unlock_bh(&police->tcf_lock);
1da177e4
LT
241 if (ret != ACT_P_CREATED)
242 return ret;
243
e9ce1cd3
DM
244 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);
1da177e4 248 write_lock_bh(&police_lock);
e9ce1cd3
DM
249 police->tcf_next = tcf_police_ht[h];
250 tcf_police_ht[h] = &police->common;
1da177e4
LT
251 write_unlock_bh(&police_lock);
252
e9ce1cd3 253 a->priv = police;
1da177e4
LT
254 return ret;
255
256failure:
257 if (ret == ACT_P_CREATED)
e9ce1cd3 258 kfree(police);
1da177e4
LT
259 return err;
260}
261
262static int tcf_act_police_cleanup(struct tc_action *a, int bind)
263{
e9ce1cd3 264 struct tcf_police *p = a->priv;
1da177e4
LT
265
266 if (p != NULL)
267 return tcf_police_release(p, bind);
268 return 0;
269}
270
f43c5a0d 271static int tcf_act_police(struct sk_buff *skb, struct tc_action *a,
10297b99 272 struct tcf_result *res)
1da177e4 273{
e9ce1cd3 274 struct tcf_police *police = a->priv;
1da177e4 275 psched_time_t now;
1da177e4
LT
276 long toks;
277 long ptoks = 0;
278
e9ce1cd3 279 spin_lock(&police->tcf_lock);
1da177e4 280
e9ce1cd3
DM
281 police->tcf_bstats.bytes += skb->len;
282 police->tcf_bstats.packets++;
1da177e4
LT
283
284#ifdef CONFIG_NET_ESTIMATOR
e9ce1cd3
DM
285 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;
1da177e4
LT
290 }
291#endif
292
e9ce1cd3
DM
293 if (skb->len <= police->tcfp_mtu) {
294 if (police->tcfp_R_tab == NULL) {
295 spin_unlock(&police->tcf_lock);
296 return police->tcfp_result;
1da177e4
LT
297 }
298
299 PSCHED_GET_TIME(now);
300
e9ce1cd3
DM
301 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);
1da177e4 308 }
e9ce1cd3
DM
309 toks += police->tcfp_toks;
310 if (toks > (long)police->tcfp_burst)
311 toks = police->tcfp_burst;
312 toks -= L2T(police, skb->len);
1da177e4 313 if ((toks|ptoks) >= 0) {
e9ce1cd3
DM
314 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;
1da177e4
LT
319 }
320 }
321
e9ce1cd3
DM
322 police->tcf_qstats.overlimits++;
323 spin_unlock(&police->tcf_lock);
324 return police->tcf_action;
1da177e4
LT
325}
326
327static int
328tcf_act_police_dump(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
329{
27a884dc 330 unsigned char *b = skb_tail_pointer(skb);
e9ce1cd3 331 struct tcf_police *police = a->priv;
1da177e4 332 struct tc_police opt;
e9ce1cd3
DM
333
334 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;
1da177e4
LT
342 else
343 memset(&opt.rate, 0, sizeof(opt.rate));
e9ce1cd3
DM
344 if (police->tcfp_P_tab)
345 opt.peakrate = police->tcfp_P_tab->rate;
1da177e4
LT
346 else
347 memset(&opt.peakrate, 0, sizeof(opt.peakrate));
348 RTA_PUT(skb, TCA_POLICE_TBF, sizeof(opt), &opt);
e9ce1cd3
DM
349 if (police->tcfp_result)
350 RTA_PUT(skb, TCA_POLICE_RESULT, sizeof(int),
351 &police->tcfp_result);
1da177e4 352#ifdef CONFIG_NET_ESTIMATOR
e9ce1cd3
DM
353 if (police->tcfp_ewma_rate)
354 RTA_PUT(skb, TCA_POLICE_AVRATE, 4, &police->tcfp_ewma_rate);
1da177e4
LT
355#endif
356 return skb->len;
357
358rtattr_failure:
dc5fc579 359 nlmsg_trim(skb, b);
1da177e4
LT
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",
e9ce1cd3 369 .hinfo = &police_hash_info,
1da177e4
LT
370 .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,
e9ce1cd3 376 .lookup = tcf_hash_search,
1da177e4 377 .init = tcf_act_police_locate,
83b950c8 378 .walk = tcf_act_police_walker
1da177e4
LT
379};
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
31bd06eb 396#else /* CONFIG_NET_CLS_ACT */
1da177e4 397
e9ce1cd3 398static struct tcf_common *tcf_police_lookup(u32 index)
1da177e4 399{
e9ce1cd3
DM
400 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;
1da177e4
LT
431 struct rtattr *tb[TCA_POLICE_MAX];
432 struct tc_police *parm;
1e9b3d53 433 int size;
1da177e4
LT
434
435 if (rtattr_parse_nested(tb, TCA_POLICE_MAX, rta) < 0)
436 return NULL;
437
1e9b3d53
PM
438 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))
1da177e4
LT
442 return NULL;
443
444 parm = RTA_DATA(tb[TCA_POLICE_TBF-1]);
445
e9ce1cd3
DM
446 if (parm->index) {
447 struct tcf_common *pc;
1da177e4 448
e9ce1cd3
DM
449 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))
1da177e4
LT
458 return NULL;
459
e9ce1cd3
DM
460 police->tcf_refcnt = 1;
461 spin_lock_init(&police->tcf_lock);
462 police->tcf_stats_lock = &police->tcf_lock;
1da177e4 463 if (parm->rate.rate) {
e9ce1cd3
DM
464 police->tcfp_R_tab =
465 qdisc_get_rtab(&parm->rate, tb[TCA_POLICE_RATE-1]);
466 if (police->tcfp_R_tab == NULL)
1da177e4
LT
467 goto failure;
468 if (parm->peakrate.rate) {
e9ce1cd3
DM
469 police->tcfp_P_tab =
470 qdisc_get_rtab(&parm->peakrate,
471 tb[TCA_POLICE_PEAKRATE-1]);
472 if (police->tcfp_P_tab == NULL)
1da177e4
LT
473 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;
e9ce1cd3 479 police->tcfp_result = *(u32*)RTA_DATA(tb[TCA_POLICE_RESULT-1]);
1da177e4
LT
480 }
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;
e9ce1cd3
DM
485 police->tcfp_ewma_rate =
486 *(u32*)RTA_DATA(tb[TCA_POLICE_AVRATE-1]);
1da177e4
LT
487 }
488#endif
e9ce1cd3
DM
489 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;
1da177e4 495 }
e9ce1cd3
DM
496 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;
1da177e4
LT
502#ifdef CONFIG_NET_ESTIMATOR
503 if (est)
e9ce1cd3
DM
504 gen_new_estimator(&police->tcf_bstats, &police->tcf_rate_est,
505 police->tcf_stats_lock, est);
1da177e4 506#endif
e9ce1cd3 507 h = tcf_hash(police->tcf_index, POL_TAB_MASK);
1da177e4 508 write_lock_bh(&police_lock);
e9ce1cd3
DM
509 police->tcf_next = tcf_police_ht[h];
510 tcf_police_ht[h] = &police->common;
1da177e4 511 write_unlock_bh(&police_lock);
e9ce1cd3 512 return police;
1da177e4
LT
513
514failure:
e9ce1cd3
DM
515 if (police->tcfp_R_tab)
516 qdisc_put_rtab(police->tcfp_R_tab);
517 kfree(police);
1da177e4
LT
518 return NULL;
519}
520
e9ce1cd3 521int tcf_police(struct sk_buff *skb, struct tcf_police *police)
1da177e4
LT
522{
523 psched_time_t now;
524 long toks;
525 long ptoks = 0;
526
e9ce1cd3 527 spin_lock(&police->tcf_lock);
1da177e4 528
e9ce1cd3
DM
529 police->tcf_bstats.bytes += skb->len;
530 police->tcf_bstats.packets++;
1da177e4
LT
531
532#ifdef CONFIG_NET_ESTIMATOR
e9ce1cd3
DM
533 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;
1da177e4
LT
538 }
539#endif
e9ce1cd3
DM
540 if (skb->len <= police->tcfp_mtu) {
541 if (police->tcfp_R_tab == NULL) {
542 spin_unlock(&police->tcf_lock);
543 return police->tcfp_result;
1da177e4
LT
544 }
545
546 PSCHED_GET_TIME(now);
e9ce1cd3
DM
547 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);
1da177e4 554 }
e9ce1cd3
DM
555 toks += police->tcfp_toks;
556 if (toks > (long)police->tcfp_burst)
557 toks = police->tcfp_burst;
558 toks -= L2T(police, skb->len);
1da177e4 559 if ((toks|ptoks) >= 0) {
e9ce1cd3
DM
560 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;
1da177e4
LT
565 }
566 }
567
e9ce1cd3
DM
568 police->tcf_qstats.overlimits++;
569 spin_unlock(&police->tcf_lock);
570 return police->tcf_action;
1da177e4 571}
31bd06eb 572EXPORT_SYMBOL(tcf_police);
1da177e4 573
e9ce1cd3 574int tcf_police_dump(struct sk_buff *skb, struct tcf_police *police)
1da177e4 575{
27a884dc 576 unsigned char *b = skb_tail_pointer(skb);
1da177e4
LT
577 struct tc_police opt;
578
e9ce1cd3
DM
579 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;
1da177e4
LT
585 else
586 memset(&opt.rate, 0, sizeof(opt.rate));
e9ce1cd3
DM
587 if (police->tcfp_P_tab)
588 opt.peakrate = police->tcfp_P_tab->rate;
1da177e4
LT
589 else
590 memset(&opt.peakrate, 0, sizeof(opt.peakrate));
591 RTA_PUT(skb, TCA_POLICE_TBF, sizeof(opt), &opt);
e9ce1cd3
DM
592 if (police->tcfp_result)
593 RTA_PUT(skb, TCA_POLICE_RESULT, sizeof(int),
594 &police->tcfp_result);
1da177e4 595#ifdef CONFIG_NET_ESTIMATOR
e9ce1cd3
DM
596 if (police->tcfp_ewma_rate)
597 RTA_PUT(skb, TCA_POLICE_AVRATE, 4, &police->tcfp_ewma_rate);
1da177e4
LT
598#endif
599 return skb->len;
600
601rtattr_failure:
dc5fc579 602 nlmsg_trim(skb, b);
1da177e4
LT
603 return -1;
604}
605
e9ce1cd3 606int tcf_police_dump_stats(struct sk_buff *skb, struct tcf_police *police)
1da177e4
LT
607{
608 struct gnet_dump d;
10297b99 609
1da177e4 610 if (gnet_stats_start_copy_compat(skb, TCA_STATS2, TCA_STATS,
e9ce1cd3
DM
611 TCA_XSTATS, police->tcf_stats_lock,
612 &d) < 0)
1da177e4 613 goto errout;
10297b99 614
e9ce1cd3 615 if (gnet_stats_copy_basic(&d, &police->tcf_bstats) < 0 ||
1da177e4 616#ifdef CONFIG_NET_ESTIMATOR
e9ce1cd3 617 gnet_stats_copy_rate_est(&d, &police->tcf_rate_est) < 0 ||
1da177e4 618#endif
e9ce1cd3 619 gnet_stats_copy_queue(&d, &police->tcf_qstats) < 0)
1da177e4
LT
620 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
31bd06eb 631#endif /* CONFIG_NET_CLS_ACT */