blob: bf90e60f8411c1ff49281bef88360a98f2a32188 [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>
19#include <linux/module.h>
20#include <linux/rtnetlink.h>
21#include <linux/init.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
David S. Millere9ce1cd2006-08-21 23:54:55 -070025#define L2T(p,L) ((p)->tcfp_R_tab->data[(L)>>(p)->tcfp_R_tab->rate.cell_log])
26#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 -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 */
40struct tc_police_compat
41{
42 u32 index;
43 int action;
44 u32 limit;
45 u32 burst;
46 u32 mtu;
47 struct tc_ratespec rate;
48 struct tc_ratespec peakrate;
49};
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051/* Each policer is serialized by its individual spinlock */
52
Jamal Hadi Salim83b950c2006-04-06 22:24:22 -070053static int tcf_act_police_walker(struct sk_buff *skb, struct netlink_callback *cb,
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +090054 int type, struct tc_action *a)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055{
David S. Millere9ce1cd2006-08-21 23:54:55 -070056 struct tcf_common *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 int err = 0, index = -1, i = 0, s_i = 0, n_i = 0;
58 struct rtattr *r;
59
60 read_lock(&police_lock);
61
62 s_i = cb->args[0];
63
David S. Millere9ce1cd2006-08-21 23:54:55 -070064 for (i = 0; i < (POL_TAB_MASK + 1); i++) {
65 p = tcf_police_ht[tcf_hash(i, POL_TAB_MASK)];
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
David S. Millere9ce1cd2006-08-21 23:54:55 -070067 for (; p; p = p->tcfc_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 index++;
69 if (index < s_i)
70 continue;
71 a->priv = p;
72 a->order = index;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -070073 r = (struct rtattr *)skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 RTA_PUT(skb, a->order, 0, NULL);
75 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--;
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070081 nlmsg_trim(skb, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 goto done;
83 }
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -070084 r->rta_len = skb_tail_pointer(skb) - (u8 *)r;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 n_i++;
86 }
87 }
88done:
89 read_unlock(&police_lock);
90 if (n_i)
91 cb->args[0] += n_i;
92 return n_i;
93
94rtattr_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070095 nlmsg_trim(skb, r);
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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 kfree(p);
116 return;
117 }
118 }
119 BUG_TRAP(0);
120}
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122static int tcf_act_police_locate(struct rtattr *rta, struct rtattr *est,
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900123 struct tc_action *a, int ovr, int bind)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
125 unsigned h;
126 int ret = 0, err;
127 struct rtattr *tb[TCA_POLICE_MAX];
128 struct tc_police *parm;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700129 struct tcf_police *police;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 struct qdisc_rate_table *R_tab = NULL, *P_tab = NULL;
Patrick McHardy1e9b3d52006-11-30 19:54:05 -0800131 int size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 if (rta == NULL || rtattr_parse_nested(tb, TCA_POLICE_MAX, rta) < 0)
134 return -EINVAL;
135
Patrick McHardy1e9b3d52006-11-30 19:54:05 -0800136 if (tb[TCA_POLICE_TBF-1] == NULL)
137 return -EINVAL;
138 size = RTA_PAYLOAD(tb[TCA_POLICE_TBF-1]);
139 if (size != sizeof(*parm) && size != sizeof(struct tc_police_compat))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 return -EINVAL;
141 parm = RTA_DATA(tb[TCA_POLICE_TBF-1]);
142
143 if (tb[TCA_POLICE_RESULT-1] != NULL &&
144 RTA_PAYLOAD(tb[TCA_POLICE_RESULT-1]) != sizeof(u32))
145 return -EINVAL;
146 if (tb[TCA_POLICE_RESULT-1] != NULL &&
147 RTA_PAYLOAD(tb[TCA_POLICE_RESULT-1]) != sizeof(u32))
148 return -EINVAL;
149
David S. Millere9ce1cd2006-08-21 23:54:55 -0700150 if (parm->index) {
151 struct tcf_common *pc;
152
153 pc = tcf_hash_lookup(parm->index, &police_hash_info);
154 if (pc != NULL) {
155 a->priv = pc;
156 police = to_police(pc);
157 if (bind) {
158 police->tcf_bindcnt += 1;
159 police->tcf_refcnt += 1;
160 }
161 if (ovr)
162 goto override;
163 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 }
166
David S. Millere9ce1cd2006-08-21 23:54:55 -0700167 police = kzalloc(sizeof(*police), GFP_KERNEL);
168 if (police == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 ret = ACT_P_CREATED;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700171 police->tcf_refcnt = 1;
172 spin_lock_init(&police->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 if (bind)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700174 police->tcf_bindcnt = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175override:
176 if (parm->rate.rate) {
177 err = -ENOMEM;
178 R_tab = qdisc_get_rtab(&parm->rate, tb[TCA_POLICE_RATE-1]);
179 if (R_tab == NULL)
180 goto failure;
181 if (parm->peakrate.rate) {
182 P_tab = qdisc_get_rtab(&parm->peakrate,
183 tb[TCA_POLICE_PEAKRATE-1]);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700184 if (P_tab == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 qdisc_put_rtab(R_tab);
186 goto failure;
187 }
188 }
189 }
190 /* No failure allowed after this point */
David S. Millere9ce1cd2006-08-21 23:54:55 -0700191 spin_lock_bh(&police->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 if (R_tab != NULL) {
David S. Millere9ce1cd2006-08-21 23:54:55 -0700193 qdisc_put_rtab(police->tcfp_R_tab);
194 police->tcfp_R_tab = R_tab;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 }
196 if (P_tab != NULL) {
David S. Millere9ce1cd2006-08-21 23:54:55 -0700197 qdisc_put_rtab(police->tcfp_P_tab);
198 police->tcfp_P_tab = P_tab;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 }
200
201 if (tb[TCA_POLICE_RESULT-1])
David S. Millere9ce1cd2006-08-21 23:54:55 -0700202 police->tcfp_result = *(u32*)RTA_DATA(tb[TCA_POLICE_RESULT-1]);
203 police->tcfp_toks = police->tcfp_burst = parm->burst;
204 police->tcfp_mtu = parm->mtu;
205 if (police->tcfp_mtu == 0) {
206 police->tcfp_mtu = ~0;
207 if (police->tcfp_R_tab)
208 police->tcfp_mtu = 255<<police->tcfp_R_tab->rate.cell_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 }
David S. Millere9ce1cd2006-08-21 23:54:55 -0700210 if (police->tcfp_P_tab)
211 police->tcfp_ptoks = L2T_P(police, police->tcfp_mtu);
212 police->tcf_action = parm->action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 if (tb[TCA_POLICE_AVRATE-1])
David S. Millere9ce1cd2006-08-21 23:54:55 -0700215 police->tcfp_ewma_rate =
216 *(u32*)RTA_DATA(tb[TCA_POLICE_AVRATE-1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 if (est)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700218 gen_replace_estimator(&police->tcf_bstats,
219 &police->tcf_rate_est,
Patrick McHardy4bdf3992007-07-02 22:47:37 -0700220 &police->tcf_lock, est);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
David S. Millere9ce1cd2006-08-21 23:54:55 -0700222 spin_unlock_bh(&police->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 if (ret != ACT_P_CREATED)
224 return ret;
225
Patrick McHardy3bebcda2007-03-23 11:29:25 -0700226 police->tcfp_t_c = psched_get_time();
David S. Millere9ce1cd2006-08-21 23:54:55 -0700227 police->tcf_index = parm->index ? parm->index :
228 tcf_hash_new_index(&police_idx_gen, &police_hash_info);
229 h = tcf_hash(police->tcf_index, POL_TAB_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 write_lock_bh(&police_lock);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700231 police->tcf_next = tcf_police_ht[h];
232 tcf_police_ht[h] = &police->common;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 write_unlock_bh(&police_lock);
234
David S. Millere9ce1cd2006-08-21 23:54:55 -0700235 a->priv = police;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 return ret;
237
238failure:
239 if (ret == ACT_P_CREATED)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700240 kfree(police);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 return err;
242}
243
244static int tcf_act_police_cleanup(struct tc_action *a, int bind)
245{
David S. Millere9ce1cd2006-08-21 23:54:55 -0700246 struct tcf_police *p = a->priv;
Patrick McHardyc3bc7cf2007-07-15 00:03:05 -0700247 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Patrick McHardyc3bc7cf2007-07-15 00:03:05 -0700249 if (p != NULL) {
250 if (bind)
251 p->tcf_bindcnt--;
252
253 p->tcf_refcnt--;
254 if (p->tcf_refcnt <= 0 && !p->tcf_bindcnt) {
255 tcf_police_destroy(p);
256 ret = 1;
257 }
258 }
259 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
261
Patrick McHardyf43c5a02006-01-08 22:15:34 -0800262static int tcf_act_police(struct sk_buff *skb, struct tc_action *a,
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900263 struct tcf_result *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
David S. Millere9ce1cd2006-08-21 23:54:55 -0700265 struct tcf_police *police = a->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 psched_time_t now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 long toks;
268 long ptoks = 0;
269
David S. Millere9ce1cd2006-08-21 23:54:55 -0700270 spin_lock(&police->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
David S. Millere9ce1cd2006-08-21 23:54:55 -0700272 police->tcf_bstats.bytes += skb->len;
273 police->tcf_bstats.packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
David S. Millere9ce1cd2006-08-21 23:54:55 -0700275 if (police->tcfp_ewma_rate &&
276 police->tcf_rate_est.bps >= police->tcfp_ewma_rate) {
277 police->tcf_qstats.overlimits++;
278 spin_unlock(&police->tcf_lock);
279 return police->tcf_action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
David S. Millere9ce1cd2006-08-21 23:54:55 -0700282 if (skb->len <= police->tcfp_mtu) {
283 if (police->tcfp_R_tab == NULL) {
284 spin_unlock(&police->tcf_lock);
285 return police->tcfp_result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 }
287
Patrick McHardy3bebcda2007-03-23 11:29:25 -0700288 now = psched_get_time();
Patrick McHardy03cc45c2007-03-23 11:29:11 -0700289 toks = psched_tdiff_bounded(now, police->tcfp_t_c,
290 police->tcfp_burst);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700291 if (police->tcfp_P_tab) {
292 ptoks = toks + police->tcfp_ptoks;
293 if (ptoks > (long)L2T_P(police, police->tcfp_mtu))
294 ptoks = (long)L2T_P(police, police->tcfp_mtu);
295 ptoks -= L2T_P(police, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 }
David S. Millere9ce1cd2006-08-21 23:54:55 -0700297 toks += police->tcfp_toks;
298 if (toks > (long)police->tcfp_burst)
299 toks = police->tcfp_burst;
300 toks -= L2T(police, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 if ((toks|ptoks) >= 0) {
David S. Millere9ce1cd2006-08-21 23:54:55 -0700302 police->tcfp_t_c = now;
303 police->tcfp_toks = toks;
304 police->tcfp_ptoks = ptoks;
305 spin_unlock(&police->tcf_lock);
306 return police->tcfp_result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 }
308 }
309
David S. Millere9ce1cd2006-08-21 23:54:55 -0700310 police->tcf_qstats.overlimits++;
311 spin_unlock(&police->tcf_lock);
312 return police->tcf_action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313}
314
315static int
316tcf_act_police_dump(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
317{
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700318 unsigned char *b = skb_tail_pointer(skb);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700319 struct tcf_police *police = a->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 struct tc_police opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
David S. Millere9ce1cd2006-08-21 23:54:55 -0700322 opt.index = police->tcf_index;
323 opt.action = police->tcf_action;
324 opt.mtu = police->tcfp_mtu;
325 opt.burst = police->tcfp_burst;
326 opt.refcnt = police->tcf_refcnt - ref;
327 opt.bindcnt = police->tcf_bindcnt - bind;
328 if (police->tcfp_R_tab)
329 opt.rate = police->tcfp_R_tab->rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 else
331 memset(&opt.rate, 0, sizeof(opt.rate));
David S. Millere9ce1cd2006-08-21 23:54:55 -0700332 if (police->tcfp_P_tab)
333 opt.peakrate = police->tcfp_P_tab->rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 else
335 memset(&opt.peakrate, 0, sizeof(opt.peakrate));
336 RTA_PUT(skb, TCA_POLICE_TBF, sizeof(opt), &opt);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700337 if (police->tcfp_result)
338 RTA_PUT(skb, TCA_POLICE_RESULT, sizeof(int),
339 &police->tcfp_result);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700340 if (police->tcfp_ewma_rate)
341 RTA_PUT(skb, TCA_POLICE_AVRATE, 4, &police->tcfp_ewma_rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 return skb->len;
343
344rtattr_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -0700345 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 return -1;
347}
348
349MODULE_AUTHOR("Alexey Kuznetsov");
350MODULE_DESCRIPTION("Policing actions");
351MODULE_LICENSE("GPL");
352
353static struct tc_action_ops act_police_ops = {
354 .kind = "police",
David S. Millere9ce1cd2006-08-21 23:54:55 -0700355 .hinfo = &police_hash_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 .type = TCA_ID_POLICE,
357 .capab = TCA_CAP_NONE,
358 .owner = THIS_MODULE,
359 .act = tcf_act_police,
360 .dump = tcf_act_police_dump,
361 .cleanup = tcf_act_police_cleanup,
David S. Millere9ce1cd2006-08-21 23:54:55 -0700362 .lookup = tcf_hash_search,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 .init = tcf_act_police_locate,
Jamal Hadi Salim83b950c2006-04-06 22:24:22 -0700364 .walk = tcf_act_police_walker
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365};
366
367static int __init
368police_init_module(void)
369{
370 return tcf_register_action(&act_police_ops);
371}
372
373static void __exit
374police_cleanup_module(void)
375{
376 tcf_unregister_action(&act_police_ops);
377}
378
379module_init(police_init_module);
380module_exit(police_cleanup_module);