net/sched: act_police: Add extack messages for offload failure
[linux-2.6-block.git] / net / sched / act_police.c
CommitLineData
2874c5fd 1// SPDX-License-Identifier: GPL-2.0-or-later
1da177e4 2/*
0c6965dd 3 * net/sched/act_police.c Input police filter
1da177e4 4 *
1da177e4
LT
5 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
6 * J Hadi Salim (action changes)
7 */
8
1da177e4
LT
9#include <linux/module.h>
10#include <linux/types.h>
11#include <linux/kernel.h>
1da177e4 12#include <linux/string.h>
1da177e4 13#include <linux/errno.h>
1da177e4 14#include <linux/skbuff.h>
1da177e4
LT
15#include <linux/rtnetlink.h>
16#include <linux/init.h>
5a0e3ad6 17#include <linux/slab.h>
1da177e4 18#include <net/act_api.h>
dc5fc579 19#include <net/netlink.h>
d6124d6b 20#include <net/pkt_cls.h>
fa762da9 21#include <net/tc_act/tc_police.h>
1e9b3d53 22
e9ce1cd3 23/* Each policer is serialized by its individual spinlock */
1da177e4 24
c7d03a00 25static unsigned int police_net_id;
a85a970a 26static struct tc_action_ops act_police_ops;
ddf97ccd 27
2ac06347 28static int tcf_police_walker(struct net *net, struct sk_buff *skb,
ddf97ccd 29 struct netlink_callback *cb, int type,
41780105
AA
30 const struct tc_action_ops *ops,
31 struct netlink_ext_ack *extack)
1da177e4 32{
ddf97ccd 33 struct tc_action_net *tn = net_generic(net, police_net_id);
1da177e4 34
b3620145 35 return tcf_generic_walker(tn, skb, cb, type, ops, extack);
1da177e4 36}
1da177e4 37
53b2bf3f
PM
38static const struct nla_policy police_policy[TCA_POLICE_MAX + 1] = {
39 [TCA_POLICE_RATE] = { .len = TC_RTAB_SIZE },
40 [TCA_POLICE_PEAKRATE] = { .len = TC_RTAB_SIZE },
41 [TCA_POLICE_AVRATE] = { .type = NLA_U32 },
42 [TCA_POLICE_RESULT] = { .type = NLA_U32 },
d1967e49
DD
43 [TCA_POLICE_RATE64] = { .type = NLA_U64 },
44 [TCA_POLICE_PEAKRATE64] = { .type = NLA_U64 },
2ffe0395
BZ
45 [TCA_POLICE_PKTRATE64] = { .type = NLA_U64, .min = 1 },
46 [TCA_POLICE_PKTBURST64] = { .type = NLA_U64, .min = 1 },
53b2bf3f
PM
47};
48
2ac06347 49static int tcf_police_init(struct net *net, struct nlattr *nla,
a85a970a 50 struct nlattr *est, struct tc_action **a,
abbb0d33 51 struct tcf_proto *tp, u32 flags,
589dad6d 52 struct netlink_ext_ack *extack)
1da177e4 53{
fd6d4338 54 int ret = 0, tcfp_result = TC_ACT_OK, err, size;
695176bf 55 bool bind = flags & TCA_ACT_FLAGS_BIND;
7ba699c6 56 struct nlattr *tb[TCA_POLICE_MAX + 1];
d6124d6b 57 struct tcf_chain *goto_ch = NULL;
1da177e4 58 struct tc_police *parm;
e9ce1cd3 59 struct tcf_police *police;
1da177e4 60 struct qdisc_rate_table *R_tab = NULL, *P_tab = NULL;
ddf97ccd 61 struct tc_action_net *tn = net_generic(net, police_net_id);
2d550dba 62 struct tcf_police_params *new;
0852e455 63 bool exists = false;
7be8ef2c 64 u32 index;
d1967e49 65 u64 rate64, prate64;
2ffe0395 66 u64 pps, ppsburst;
1da177e4 67
cee63723 68 if (nla == NULL)
1da177e4
LT
69 return -EINVAL;
70
8cb08174
JB
71 err = nla_parse_nested_deprecated(tb, TCA_POLICE_MAX, nla,
72 police_policy, NULL);
cee63723
PM
73 if (err < 0)
74 return err;
75
7ba699c6 76 if (tb[TCA_POLICE_TBF] == NULL)
1e9b3d53 77 return -EINVAL;
7ba699c6 78 size = nla_len(tb[TCA_POLICE_TBF]);
1e9b3d53 79 if (size != sizeof(*parm) && size != sizeof(struct tc_police_compat))
1da177e4 80 return -EINVAL;
0852e455 81
7ba699c6 82 parm = nla_data(tb[TCA_POLICE_TBF]);
7be8ef2c
DL
83 index = parm->index;
84 err = tcf_idr_check_alloc(tn, &index, a, bind);
0190c1d4
VB
85 if (err < 0)
86 return err;
87 exists = err;
0852e455
WC
88 if (exists && bind)
89 return 0;
1da177e4 90
0852e455 91 if (!exists) {
7be8ef2c 92 ret = tcf_idr_create(tn, index, NULL, a,
40bd094d 93 &act_police_ops, bind, true, flags);
0190c1d4 94 if (ret) {
7be8ef2c 95 tcf_idr_cleanup(tn, index);
a03e6fe5 96 return ret;
0190c1d4 97 }
a03e6fe5 98 ret = ACT_P_CREATED;
484afd1b 99 spin_lock_init(&(to_police(*a)->tcfp_lock));
695176bf 100 } else if (!(flags & TCA_ACT_FLAGS_REPLACE)) {
65a206c0 101 tcf_idr_release(*a, bind);
4e8ddd7f 102 return -EEXIST;
1da177e4 103 }
d6124d6b
DC
104 err = tcf_action_check_ctrlact(parm->action, tp, &goto_ch, extack);
105 if (err < 0)
106 goto release_idr;
1da177e4 107
a85a970a 108 police = to_police(*a);
1da177e4
LT
109 if (parm->rate.rate) {
110 err = -ENOMEM;
e9bc3fa2 111 R_tab = qdisc_get_rtab(&parm->rate, tb[TCA_POLICE_RATE], NULL);
1da177e4
LT
112 if (R_tab == NULL)
113 goto failure;
c1b56878 114
1da177e4
LT
115 if (parm->peakrate.rate) {
116 P_tab = qdisc_get_rtab(&parm->peakrate,
e9bc3fa2 117 tb[TCA_POLICE_PEAKRATE], NULL);
71bcb09a 118 if (P_tab == NULL)
1da177e4 119 goto failure;
1da177e4
LT
120 }
121 }
71bcb09a 122
71bcb09a 123 if (est) {
93be42f9
DC
124 err = gen_replace_estimator(&police->tcf_bstats,
125 police->common.cpu_bstats,
71bcb09a 126 &police->tcf_rate_est,
edb09eb1 127 &police->tcf_lock,
29cbcd85 128 false, est);
71bcb09a 129 if (err)
74030603 130 goto failure;
a883bf56
JP
131 } else if (tb[TCA_POLICE_AVRATE] &&
132 (ret == ACT_P_CREATED ||
1c0d32fd 133 !gen_estimator_active(&police->tcf_rate_est))) {
a883bf56 134 err = -EINVAL;
74030603 135 goto failure;
71bcb09a
SH
136 }
137
fd6d4338
DC
138 if (tb[TCA_POLICE_RESULT]) {
139 tcfp_result = nla_get_u32(tb[TCA_POLICE_RESULT]);
140 if (TC_ACT_EXT_CMP(tcfp_result, TC_ACT_GOTO_CHAIN)) {
141 NL_SET_ERR_MSG(extack,
142 "goto chain not allowed on fallback");
143 err = -EINVAL;
144 goto failure;
145 }
146 }
147
2ffe0395
BZ
148 if ((tb[TCA_POLICE_PKTRATE64] && !tb[TCA_POLICE_PKTBURST64]) ||
149 (!tb[TCA_POLICE_PKTRATE64] && tb[TCA_POLICE_PKTBURST64])) {
150 NL_SET_ERR_MSG(extack,
151 "Both or neither packet-per-second burst and rate must be provided");
152 err = -EINVAL;
153 goto failure;
154 }
155
156 if (tb[TCA_POLICE_PKTRATE64] && R_tab) {
157 NL_SET_ERR_MSG(extack,
158 "packet-per-second and byte-per-second rate limits not allowed in same action");
159 err = -EINVAL;
160 goto failure;
161 }
162
2d550dba
DC
163 new = kzalloc(sizeof(*new), GFP_KERNEL);
164 if (unlikely(!new)) {
165 err = -ENOMEM;
166 goto failure;
167 }
168
71bcb09a 169 /* No failure allowed after this point */
fd6d4338 170 new->tcfp_result = tcfp_result;
2d550dba
DC
171 new->tcfp_mtu = parm->mtu;
172 if (!new->tcfp_mtu) {
173 new->tcfp_mtu = ~0;
c6d14ff1 174 if (R_tab)
2d550dba 175 new->tcfp_mtu = 255 << R_tab->rate.cell_log;
c6d14ff1
JP
176 }
177 if (R_tab) {
2d550dba 178 new->rate_present = true;
d1967e49
DD
179 rate64 = tb[TCA_POLICE_RATE64] ?
180 nla_get_u64(tb[TCA_POLICE_RATE64]) : 0;
181 psched_ratecfg_precompute(&new->rate, &R_tab->rate, rate64);
c6d14ff1
JP
182 qdisc_put_rtab(R_tab);
183 } else {
2d550dba 184 new->rate_present = false;
1da177e4 185 }
c6d14ff1 186 if (P_tab) {
2d550dba 187 new->peak_present = true;
d1967e49
DD
188 prate64 = tb[TCA_POLICE_PEAKRATE64] ?
189 nla_get_u64(tb[TCA_POLICE_PEAKRATE64]) : 0;
190 psched_ratecfg_precompute(&new->peak, &P_tab->rate, prate64);
c6d14ff1
JP
191 qdisc_put_rtab(P_tab);
192 } else {
2d550dba 193 new->peak_present = false;
1da177e4
LT
194 }
195
2d550dba 196 new->tcfp_burst = PSCHED_TICKS2NS(parm->burst);
f2cbd485 197 if (new->peak_present)
2d550dba
DC
198 new->tcfp_mtu_ptoks = (s64)psched_l2t_ns(&new->peak,
199 new->tcfp_mtu);
1da177e4 200
7ba699c6 201 if (tb[TCA_POLICE_AVRATE])
2d550dba 202 new->tcfp_ewma_rate = nla_get_u32(tb[TCA_POLICE_AVRATE]);
1da177e4 203
2ffe0395
BZ
204 if (tb[TCA_POLICE_PKTRATE64]) {
205 pps = nla_get_u64(tb[TCA_POLICE_PKTRATE64]);
206 ppsburst = nla_get_u64(tb[TCA_POLICE_PKTBURST64]);
207 new->pps_present = true;
208 new->tcfp_pkt_burst = PSCHED_TICKS2NS(ppsburst);
209 psched_ppscfg_precompute(&new->ppsrate, pps);
210 }
211
2d550dba 212 spin_lock_bh(&police->tcf_lock);
f2cbd485
DC
213 spin_lock_bh(&police->tcfp_lock);
214 police->tcfp_t_c = ktime_get_ns();
215 police->tcfp_toks = new->tcfp_burst;
216 if (new->peak_present)
217 police->tcfp_ptoks = new->tcfp_mtu_ptoks;
218 spin_unlock_bh(&police->tcfp_lock);
d6124d6b 219 goto_ch = tcf_action_set_ctrlact(*a, parm->action, goto_ch);
445d3749
PM
220 new = rcu_replace_pointer(police->params,
221 new,
222 lockdep_is_held(&police->tcf_lock));
e9ce1cd3 223 spin_unlock_bh(&police->tcf_lock);
1da177e4 224
d6124d6b
DC
225 if (goto_ch)
226 tcf_chain_put_by_act(goto_ch);
2d550dba
DC
227 if (new)
228 kfree_rcu(new, rcu);
1da177e4 229
1da177e4
LT
230 return ret;
231
232failure:
3b69a4c9
YY
233 qdisc_put_rtab(P_tab);
234 qdisc_put_rtab(R_tab);
d6124d6b
DC
235 if (goto_ch)
236 tcf_chain_put_by_act(goto_ch);
237release_idr:
4e8ddd7f 238 tcf_idr_release(*a, bind);
1da177e4
LT
239 return err;
240}
241
4ddc844e
DC
242static bool tcf_police_mtu_check(struct sk_buff *skb, u32 limit)
243{
244 u32 len;
245
246 if (skb_is_gso(skb))
247 return skb_gso_validate_mac_len(skb, limit);
248
249 len = qdisc_pkt_len(skb);
250 if (skb_at_tc_ingress(skb))
251 len += skb->mac_len;
252
253 return len <= limit;
254}
255
2ac06347 256static int tcf_police_act(struct sk_buff *skb, const struct tc_action *a,
10297b99 257 struct tcf_result *res)
1da177e4 258{
a85a970a 259 struct tcf_police *police = to_police(a);
2ffe0395 260 s64 now, toks, ppstoks = 0, ptoks = 0;
2d550dba 261 struct tcf_police_params *p;
93be42f9 262 int ret;
1da177e4 263
3d3ed181 264 tcf_lastuse_update(&police->tcf_tm);
50dc9a85 265 bstats_update(this_cpu_ptr(police->common.cpu_bstats), skb);
1da177e4 266
2d550dba
DC
267 ret = READ_ONCE(police->tcf_action);
268 p = rcu_dereference_bh(police->params);
269
270 if (p->tcfp_ewma_rate) {
1c0d32fd
ED
271 struct gnet_stats_rate_est64 sample;
272
273 if (!gen_estimator_read(&police->tcf_rate_est, &sample) ||
2d550dba 274 sample.bps >= p->tcfp_ewma_rate)
93be42f9 275 goto inc_overlimits;
1da177e4 276 }
1da177e4 277
4ddc844e 278 if (tcf_police_mtu_check(skb, p->tcfp_mtu)) {
2ffe0395 279 if (!p->rate_present && !p->pps_present) {
2d550dba
DC
280 ret = p->tcfp_result;
281 goto end;
1da177e4
LT
282 }
283
d2de875c 284 now = ktime_get_ns();
f2cbd485
DC
285 spin_lock_bh(&police->tcfp_lock);
286 toks = min_t(s64, now - police->tcfp_t_c, p->tcfp_burst);
2d550dba 287 if (p->peak_present) {
f2cbd485 288 ptoks = toks + police->tcfp_ptoks;
2d550dba
DC
289 if (ptoks > p->tcfp_mtu_ptoks)
290 ptoks = p->tcfp_mtu_ptoks;
291 ptoks -= (s64)psched_l2t_ns(&p->peak,
292 qdisc_pkt_len(skb));
1da177e4 293 }
2ffe0395
BZ
294 if (p->rate_present) {
295 toks += police->tcfp_toks;
296 if (toks > p->tcfp_burst)
297 toks = p->tcfp_burst;
298 toks -= (s64)psched_l2t_ns(&p->rate, qdisc_pkt_len(skb));
299 } else if (p->pps_present) {
300 ppstoks = min_t(s64, now - police->tcfp_t_c, p->tcfp_pkt_burst);
301 ppstoks += police->tcfp_pkttoks;
302 if (ppstoks > p->tcfp_pkt_burst)
303 ppstoks = p->tcfp_pkt_burst;
304 ppstoks -= (s64)psched_pkt2t_ns(&p->ppsrate, 1);
305 }
306 if ((toks | ptoks | ppstoks) >= 0) {
f2cbd485
DC
307 police->tcfp_t_c = now;
308 police->tcfp_toks = toks;
309 police->tcfp_ptoks = ptoks;
2ffe0395 310 police->tcfp_pkttoks = ppstoks;
f2cbd485 311 spin_unlock_bh(&police->tcfp_lock);
2d550dba 312 ret = p->tcfp_result;
93be42f9 313 goto inc_drops;
1da177e4 314 }
f2cbd485 315 spin_unlock_bh(&police->tcfp_lock);
1da177e4 316 }
93be42f9
DC
317
318inc_overlimits:
319 qstats_overlimit_inc(this_cpu_ptr(police->common.cpu_qstats));
320inc_drops:
321 if (ret == TC_ACT_SHOT)
322 qstats_drop_inc(this_cpu_ptr(police->common.cpu_qstats));
2d550dba 323end:
93be42f9 324 return ret;
1da177e4
LT
325}
326
2d550dba
DC
327static void tcf_police_cleanup(struct tc_action *a)
328{
329 struct tcf_police *police = to_police(a);
330 struct tcf_police_params *p;
331
332 p = rcu_dereference_protected(police->params, 1);
333 if (p)
334 kfree_rcu(p, rcu);
335}
336
12f02b6b 337static void tcf_police_stats_update(struct tc_action *a,
4b61d3e8 338 u64 bytes, u64 packets, u64 drops,
12f02b6b
PJV
339 u64 lastuse, bool hw)
340{
341 struct tcf_police *police = to_police(a);
342 struct tcf_t *tm = &police->tcf_tm;
343
4b61d3e8 344 tcf_action_update_stats(a, bytes, packets, drops, hw);
12f02b6b
PJV
345 tm->lastuse = max_t(u64, tm->lastuse, lastuse);
346}
347
2ac06347 348static int tcf_police_dump(struct sk_buff *skb, struct tc_action *a,
5a7a5555 349 int bind, int ref)
1da177e4 350{
27a884dc 351 unsigned char *b = skb_tail_pointer(skb);
a85a970a 352 struct tcf_police *police = to_police(a);
2d550dba 353 struct tcf_police_params *p;
0f04cfd0
JM
354 struct tc_police opt = {
355 .index = police->tcf_index,
036bb443
VB
356 .refcnt = refcount_read(&police->tcf_refcnt) - ref,
357 .bindcnt = atomic_read(&police->tcf_bindcnt) - bind,
0f04cfd0 358 };
3d3ed181 359 struct tcf_t t;
0f04cfd0 360
e329bc42
VB
361 spin_lock_bh(&police->tcf_lock);
362 opt.action = police->tcf_action;
2d550dba
DC
363 p = rcu_dereference_protected(police->params,
364 lockdep_is_held(&police->tcf_lock));
365 opt.mtu = p->tcfp_mtu;
366 opt.burst = PSCHED_NS2TICKS(p->tcfp_burst);
d1967e49 367 if (p->rate_present) {
2d550dba 368 psched_ratecfg_getrate(&opt.rate, &p->rate);
d1967e49
DD
369 if ((police->params->rate.rate_bytes_ps >= (1ULL << 32)) &&
370 nla_put_u64_64bit(skb, TCA_POLICE_RATE64,
371 police->params->rate.rate_bytes_ps,
372 TCA_POLICE_PAD))
373 goto nla_put_failure;
374 }
375 if (p->peak_present) {
2d550dba 376 psched_ratecfg_getrate(&opt.peakrate, &p->peak);
d1967e49
DD
377 if ((police->params->peak.rate_bytes_ps >= (1ULL << 32)) &&
378 nla_put_u64_64bit(skb, TCA_POLICE_PEAKRATE64,
379 police->params->peak.rate_bytes_ps,
380 TCA_POLICE_PAD))
381 goto nla_put_failure;
382 }
2ffe0395
BZ
383 if (p->pps_present) {
384 if (nla_put_u64_64bit(skb, TCA_POLICE_PKTRATE64,
385 police->params->ppsrate.rate_pkts_ps,
386 TCA_POLICE_PAD))
387 goto nla_put_failure;
388 if (nla_put_u64_64bit(skb, TCA_POLICE_PKTBURST64,
389 PSCHED_NS2TICKS(p->tcfp_pkt_burst),
390 TCA_POLICE_PAD))
391 goto nla_put_failure;
392 }
1b34ec43
DM
393 if (nla_put(skb, TCA_POLICE_TBF, sizeof(opt), &opt))
394 goto nla_put_failure;
2d550dba
DC
395 if (p->tcfp_result &&
396 nla_put_u32(skb, TCA_POLICE_RESULT, p->tcfp_result))
1b34ec43 397 goto nla_put_failure;
2d550dba
DC
398 if (p->tcfp_ewma_rate &&
399 nla_put_u32(skb, TCA_POLICE_AVRATE, p->tcfp_ewma_rate))
1b34ec43 400 goto nla_put_failure;
3d3ed181 401
985fd98a 402 tcf_tm_dump(&t, &police->tcf_tm);
3d3ed181
JHS
403 if (nla_put_64bit(skb, TCA_POLICE_TM, sizeof(t), &t, TCA_POLICE_PAD))
404 goto nla_put_failure;
e329bc42 405 spin_unlock_bh(&police->tcf_lock);
3d3ed181 406
1da177e4
LT
407 return skb->len;
408
7ba699c6 409nla_put_failure:
e329bc42 410 spin_unlock_bh(&police->tcf_lock);
dc5fc579 411 nlmsg_trim(skb, b);
1da177e4
LT
412 return -1;
413}
414
f061b48c 415static int tcf_police_search(struct net *net, struct tc_action **a, u32 index)
ddf97ccd
WC
416{
417 struct tc_action_net *tn = net_generic(net, police_net_id);
418
65a206c0 419 return tcf_idr_search(tn, a, index);
ddf97ccd
WC
420}
421
b50e462b
IS
422static int tcf_police_act_to_flow_act(int tc_act, u32 *extval,
423 struct netlink_ext_ack *extack)
b8cd5831
JL
424{
425 int act_id = -EOPNOTSUPP;
426
427 if (!TC_ACT_EXT_OPCODE(tc_act)) {
428 if (tc_act == TC_ACT_OK)
429 act_id = FLOW_ACTION_ACCEPT;
430 else if (tc_act == TC_ACT_SHOT)
431 act_id = FLOW_ACTION_DROP;
432 else if (tc_act == TC_ACT_PIPE)
433 act_id = FLOW_ACTION_PIPE;
b50e462b
IS
434 else if (tc_act == TC_ACT_RECLASSIFY)
435 NL_SET_ERR_MSG_MOD(extack, "Offload not supported when conform/exceed action is \"reclassify\"");
436 else
437 NL_SET_ERR_MSG_MOD(extack, "Unsupported conform/exceed action offload");
b8cd5831
JL
438 } else if (TC_ACT_EXT_CMP(tc_act, TC_ACT_GOTO_CHAIN)) {
439 act_id = FLOW_ACTION_GOTO;
440 *extval = tc_act & TC_ACT_EXT_VAL_MASK;
441 } else if (TC_ACT_EXT_CMP(tc_act, TC_ACT_JUMP)) {
442 act_id = FLOW_ACTION_JUMP;
443 *extval = tc_act & TC_ACT_EXT_VAL_MASK;
b50e462b
IS
444 } else if (tc_act == TC_ACT_UNSPEC) {
445 NL_SET_ERR_MSG_MOD(extack, "Offload not supported when conform/exceed action is \"continue\"");
446 } else {
447 NL_SET_ERR_MSG_MOD(extack, "Unsupported conform/exceed action offload");
b8cd5831
JL
448 }
449
450 return act_id;
451}
452
c54e1d92 453static int tcf_police_offload_act_setup(struct tc_action *act, void *entry_data,
c2ccf84e
IS
454 u32 *index_inc, bool bind,
455 struct netlink_ext_ack *extack)
c54e1d92
BZ
456{
457 if (bind) {
458 struct flow_action_entry *entry = entry_data;
b8cd5831
JL
459 struct tcf_police *police = to_police(act);
460 struct tcf_police_params *p;
461 int act_id;
462
463 p = rcu_dereference_protected(police->params,
464 lockdep_is_held(&police->tcf_lock));
c54e1d92
BZ
465
466 entry->id = FLOW_ACTION_POLICE;
467 entry->police.burst = tcf_police_burst(act);
468 entry->police.rate_bytes_ps =
469 tcf_police_rate_bytes_ps(act);
b8cd5831
JL
470 entry->police.peakrate_bytes_ps = tcf_police_peakrate_bytes_ps(act);
471 entry->police.avrate = tcf_police_tcfp_ewma_rate(act);
472 entry->police.overhead = tcf_police_rate_overhead(act);
c54e1d92
BZ
473 entry->police.burst_pkt = tcf_police_burst_pkt(act);
474 entry->police.rate_pkt_ps =
475 tcf_police_rate_pkt_ps(act);
476 entry->police.mtu = tcf_police_tcfp_mtu(act);
b8cd5831
JL
477
478 act_id = tcf_police_act_to_flow_act(police->tcf_action,
b50e462b
IS
479 &entry->police.exceed.extval,
480 extack);
b8cd5831
JL
481 if (act_id < 0)
482 return act_id;
483
484 entry->police.exceed.act_id = act_id;
485
486 act_id = tcf_police_act_to_flow_act(p->tcfp_result,
b50e462b
IS
487 &entry->police.notexceed.extval,
488 extack);
b8cd5831
JL
489 if (act_id < 0)
490 return act_id;
491
492 entry->police.notexceed.act_id = act_id;
493
c54e1d92
BZ
494 *index_inc = 1;
495 } else {
8cbfe939
BZ
496 struct flow_offload_action *fl_action = entry_data;
497
498 fl_action->id = FLOW_ACTION_POLICE;
c54e1d92
BZ
499 }
500
501 return 0;
502}
503
1da177e4
LT
504MODULE_AUTHOR("Alexey Kuznetsov");
505MODULE_DESCRIPTION("Policing actions");
506MODULE_LICENSE("GPL");
507
508static struct tc_action_ops act_police_ops = {
509 .kind = "police",
eddd2cf1 510 .id = TCA_ID_POLICE,
1da177e4 511 .owner = THIS_MODULE,
12f02b6b 512 .stats_update = tcf_police_stats_update,
2ac06347
JHS
513 .act = tcf_police_act,
514 .dump = tcf_police_dump,
515 .init = tcf_police_init,
516 .walk = tcf_police_walker,
ddf97ccd 517 .lookup = tcf_police_search,
2d550dba 518 .cleanup = tcf_police_cleanup,
c54e1d92 519 .offload_act_setup = tcf_police_offload_act_setup,
a85a970a 520 .size = sizeof(struct tcf_police),
ddf97ccd
WC
521};
522
523static __net_init int police_init_net(struct net *net)
524{
525 struct tc_action_net *tn = net_generic(net, police_net_id);
526
981471bd 527 return tc_action_net_init(net, tn, &act_police_ops);
ddf97ccd
WC
528}
529
039af9c6 530static void __net_exit police_exit_net(struct list_head *net_list)
ddf97ccd 531{
039af9c6 532 tc_action_net_exit(net_list, police_net_id);
ddf97ccd
WC
533}
534
535static struct pernet_operations police_net_ops = {
536 .init = police_init_net,
039af9c6 537 .exit_batch = police_exit_net,
ddf97ccd
WC
538 .id = &police_net_id,
539 .size = sizeof(struct tc_action_net),
1da177e4
LT
540};
541
5a7a5555 542static int __init police_init_module(void)
1da177e4 543{
ddf97ccd 544 return tcf_register_action(&act_police_ops, &police_net_ops);
1da177e4
LT
545}
546
5a7a5555 547static void __exit police_cleanup_module(void)
1da177e4 548{
ddf97ccd 549 tcf_unregister_action(&act_police_ops, &police_net_ops);
1da177e4
LT
550}
551
552module_init(police_init_module);
553module_exit(police_cleanup_module);