1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * net/sched/act_gact.c Generic actions
5 * copyright Jamal Hadi Salim (2002-4)
8 #include <linux/types.h>
9 #include <linux/kernel.h>
10 #include <linux/string.h>
11 #include <linux/errno.h>
12 #include <linux/skbuff.h>
13 #include <linux/rtnetlink.h>
14 #include <linux/module.h>
15 #include <linux/init.h>
16 #include <net/netlink.h>
17 #include <net/pkt_sched.h>
18 #include <net/pkt_cls.h>
19 #include <linux/tc_act/tc_gact.h>
20 #include <net/tc_act/tc_gact.h>
22 static struct tc_action_ops act_gact_ops;
24 #ifdef CONFIG_GACT_PROB
25 static int gact_net_rand(struct tcf_gact *gact)
27 smp_rmb(); /* coupled with smp_wmb() in tcf_gact_init() */
28 if (prandom_u32() % gact->tcfg_pval)
29 return gact->tcf_action;
30 return gact->tcfg_paction;
33 static int gact_determ(struct tcf_gact *gact)
35 u32 pack = atomic_inc_return(&gact->packets);
37 smp_rmb(); /* coupled with smp_wmb() in tcf_gact_init() */
38 if (pack % gact->tcfg_pval)
39 return gact->tcf_action;
40 return gact->tcfg_paction;
43 typedef int (*g_rand)(struct tcf_gact *gact);
44 static g_rand gact_rand[MAX_RAND] = { NULL, gact_net_rand, gact_determ };
45 #endif /* CONFIG_GACT_PROB */
47 static const struct nla_policy gact_policy[TCA_GACT_MAX + 1] = {
48 [TCA_GACT_PARMS] = { .len = sizeof(struct tc_gact) },
49 [TCA_GACT_PROB] = { .len = sizeof(struct tc_gact_p) },
52 static int tcf_gact_init(struct net *net, struct nlattr *nla,
53 struct nlattr *est, struct tc_action **a,
54 struct tcf_proto *tp, u32 flags,
55 struct netlink_ext_ack *extack)
57 struct tc_action_net *tn = net_generic(net, act_gact_ops.net_id);
58 bool bind = flags & TCA_ACT_FLAGS_BIND;
59 struct nlattr *tb[TCA_GACT_MAX + 1];
60 struct tcf_chain *goto_ch = NULL;
62 struct tcf_gact *gact;
66 #ifdef CONFIG_GACT_PROB
67 struct tc_gact_p *p_parm = NULL;
73 err = nla_parse_nested_deprecated(tb, TCA_GACT_MAX, nla, gact_policy,
78 if (tb[TCA_GACT_PARMS] == NULL)
80 parm = nla_data(tb[TCA_GACT_PARMS]);
83 #ifndef CONFIG_GACT_PROB
84 if (tb[TCA_GACT_PROB] != NULL)
87 if (tb[TCA_GACT_PROB]) {
88 p_parm = nla_data(tb[TCA_GACT_PROB]);
89 if (p_parm->ptype >= MAX_RAND)
91 if (TC_ACT_EXT_CMP(p_parm->paction, TC_ACT_GOTO_CHAIN)) {
92 NL_SET_ERR_MSG(extack,
93 "goto chain not allowed on fallback");
99 err = tcf_idr_check_alloc(tn, &index, a, bind);
101 ret = tcf_idr_create_from_flags(tn, index, est, a,
102 &act_gact_ops, bind, flags);
104 tcf_idr_cleanup(tn, index);
108 } else if (err > 0) {
109 if (bind)/* dont override defaults */
111 if (!(flags & TCA_ACT_FLAGS_REPLACE)) {
112 tcf_idr_release(*a, bind);
119 err = tcf_action_check_ctrlact(parm->action, tp, &goto_ch, extack);
124 spin_lock_bh(&gact->tcf_lock);
125 goto_ch = tcf_action_set_ctrlact(*a, parm->action, goto_ch);
126 #ifdef CONFIG_GACT_PROB
128 gact->tcfg_paction = p_parm->paction;
129 gact->tcfg_pval = max_t(u16, 1, p_parm->pval);
130 /* Make sure tcfg_pval is written before tcfg_ptype
131 * coupled with smp_rmb() in gact_net_rand() & gact_determ()
134 gact->tcfg_ptype = p_parm->ptype;
137 spin_unlock_bh(&gact->tcf_lock);
140 tcf_chain_put_by_act(goto_ch);
144 tcf_idr_release(*a, bind);
148 static int tcf_gact_act(struct sk_buff *skb, const struct tc_action *a,
149 struct tcf_result *res)
151 struct tcf_gact *gact = to_gact(a);
152 int action = READ_ONCE(gact->tcf_action);
154 #ifdef CONFIG_GACT_PROB
156 u32 ptype = READ_ONCE(gact->tcfg_ptype);
159 action = gact_rand[ptype](gact);
162 tcf_action_update_bstats(&gact->common, skb);
163 if (action == TC_ACT_SHOT)
164 tcf_action_inc_drop_qstats(&gact->common);
166 tcf_lastuse_update(&gact->tcf_tm);
171 static void tcf_gact_stats_update(struct tc_action *a, u64 bytes, u64 packets,
172 u64 drops, u64 lastuse, bool hw)
174 struct tcf_gact *gact = to_gact(a);
175 int action = READ_ONCE(gact->tcf_action);
176 struct tcf_t *tm = &gact->tcf_tm;
178 tcf_action_update_stats(a, bytes, packets,
179 action == TC_ACT_SHOT ? packets : drops, hw);
180 tm->lastuse = max_t(u64, tm->lastuse, lastuse);
183 static int tcf_gact_dump(struct sk_buff *skb, struct tc_action *a,
186 unsigned char *b = skb_tail_pointer(skb);
187 struct tcf_gact *gact = to_gact(a);
188 struct tc_gact opt = {
189 .index = gact->tcf_index,
190 .refcnt = refcount_read(&gact->tcf_refcnt) - ref,
191 .bindcnt = atomic_read(&gact->tcf_bindcnt) - bind,
195 spin_lock_bh(&gact->tcf_lock);
196 opt.action = gact->tcf_action;
197 if (nla_put(skb, TCA_GACT_PARMS, sizeof(opt), &opt))
198 goto nla_put_failure;
199 #ifdef CONFIG_GACT_PROB
200 if (gact->tcfg_ptype) {
201 struct tc_gact_p p_opt = {
202 .paction = gact->tcfg_paction,
203 .pval = gact->tcfg_pval,
204 .ptype = gact->tcfg_ptype,
207 if (nla_put(skb, TCA_GACT_PROB, sizeof(p_opt), &p_opt))
208 goto nla_put_failure;
211 tcf_tm_dump(&t, &gact->tcf_tm);
212 if (nla_put_64bit(skb, TCA_GACT_TM, sizeof(t), &t, TCA_GACT_PAD))
213 goto nla_put_failure;
214 spin_unlock_bh(&gact->tcf_lock);
219 spin_unlock_bh(&gact->tcf_lock);
224 static size_t tcf_gact_get_fill_size(const struct tc_action *act)
226 size_t sz = nla_total_size(sizeof(struct tc_gact)); /* TCA_GACT_PARMS */
228 #ifdef CONFIG_GACT_PROB
229 if (to_gact(act)->tcfg_ptype)
231 sz += nla_total_size(sizeof(struct tc_gact_p));
237 static int tcf_gact_offload_act_setup(struct tc_action *act, void *entry_data,
238 u32 *index_inc, bool bind,
239 struct netlink_ext_ack *extack)
242 struct flow_action_entry *entry = entry_data;
244 if (is_tcf_gact_ok(act)) {
245 entry->id = FLOW_ACTION_ACCEPT;
246 } else if (is_tcf_gact_shot(act)) {
247 entry->id = FLOW_ACTION_DROP;
248 } else if (is_tcf_gact_trap(act)) {
249 entry->id = FLOW_ACTION_TRAP;
250 } else if (is_tcf_gact_goto_chain(act)) {
251 entry->id = FLOW_ACTION_GOTO;
252 entry->chain_index = tcf_gact_goto_chain_index(act);
253 } else if (is_tcf_gact_continue(act)) {
254 NL_SET_ERR_MSG_MOD(extack, "Offload of \"continue\" action is not supported");
256 } else if (is_tcf_gact_reclassify(act)) {
257 NL_SET_ERR_MSG_MOD(extack, "Offload of \"reclassify\" action is not supported");
259 } else if (is_tcf_gact_pipe(act)) {
260 NL_SET_ERR_MSG_MOD(extack, "Offload of \"pipe\" action is not supported");
263 NL_SET_ERR_MSG_MOD(extack, "Unsupported generic action offload");
268 struct flow_offload_action *fl_action = entry_data;
270 if (is_tcf_gact_ok(act))
271 fl_action->id = FLOW_ACTION_ACCEPT;
272 else if (is_tcf_gact_shot(act))
273 fl_action->id = FLOW_ACTION_DROP;
274 else if (is_tcf_gact_trap(act))
275 fl_action->id = FLOW_ACTION_TRAP;
276 else if (is_tcf_gact_goto_chain(act))
277 fl_action->id = FLOW_ACTION_GOTO;
285 static struct tc_action_ops act_gact_ops = {
288 .owner = THIS_MODULE,
290 .stats_update = tcf_gact_stats_update,
291 .dump = tcf_gact_dump,
292 .init = tcf_gact_init,
293 .get_fill_size = tcf_gact_get_fill_size,
294 .offload_act_setup = tcf_gact_offload_act_setup,
295 .size = sizeof(struct tcf_gact),
298 static __net_init int gact_init_net(struct net *net)
300 struct tc_action_net *tn = net_generic(net, act_gact_ops.net_id);
302 return tc_action_net_init(net, tn, &act_gact_ops);
305 static void __net_exit gact_exit_net(struct list_head *net_list)
307 tc_action_net_exit(net_list, act_gact_ops.net_id);
310 static struct pernet_operations gact_net_ops = {
311 .init = gact_init_net,
312 .exit_batch = gact_exit_net,
313 .id = &act_gact_ops.net_id,
314 .size = sizeof(struct tc_action_net),
317 MODULE_AUTHOR("Jamal Hadi Salim(2002-4)");
318 MODULE_DESCRIPTION("Generic Classifier actions");
319 MODULE_LICENSE("GPL");
321 static int __init gact_init_module(void)
323 #ifdef CONFIG_GACT_PROB
324 pr_info("GACT probability on\n");
326 pr_info("GACT probability NOT on\n");
329 return tcf_register_action(&act_gact_ops, &gact_net_ops);
332 static void __exit gact_cleanup_module(void)
334 tcf_unregister_action(&act_gact_ops, &gact_net_ops);
337 module_init(gact_init_module);
338 module_exit(gact_cleanup_module);