blob: e29a48ef7fc348aefdc720cf08d1509ac5b53559 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jiri Pirko0c6965d2014-11-05 20:51:51 +01002 * net/sched/act_gact.c Generic actions
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
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 * copyright Jamal Hadi Salim (2002-4)
10 *
11 */
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/types.h>
14#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/skbuff.h>
18#include <linux/rtnetlink.h>
19#include <linux/module.h>
20#include <linux/init.h>
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070021#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <net/pkt_sched.h>
23#include <linux/tc_act/tc_gact.h>
24#include <net/tc_act/tc_gact.h>
25
Alexey Dobriyanc7d03a02016-11-17 04:58:21 +030026static unsigned int gact_net_id;
WANG Conga85a9702016-07-25 16:09:41 -070027static struct tc_action_ops act_gact_ops;
WANG Congddf97cc2016-02-22 15:57:53 -080028
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#ifdef CONFIG_GACT_PROB
David S. Millere9ce1cd2006-08-21 23:54:55 -070030static int gact_net_rand(struct tcf_gact *gact)
Linus Torvalds1da177e2005-04-16 15:20:36 -070031{
Eric Dumazetcef5ecf2015-07-06 05:18:05 -070032 smp_rmb(); /* coupled with smp_wmb() in tcf_gact_init() */
33 if (prandom_u32() % gact->tcfg_pval)
David S. Millere9ce1cd2006-08-21 23:54:55 -070034 return gact->tcf_action;
35 return gact->tcfg_paction;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036}
37
David S. Millere9ce1cd2006-08-21 23:54:55 -070038static int gact_determ(struct tcf_gact *gact)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039{
Eric Dumazetcc6510a2015-07-06 05:18:06 -070040 u32 pack = atomic_inc_return(&gact->packets);
41
Eric Dumazetcef5ecf2015-07-06 05:18:05 -070042 smp_rmb(); /* coupled with smp_wmb() in tcf_gact_init() */
Eric Dumazetcc6510a2015-07-06 05:18:06 -070043 if (pack % gact->tcfg_pval)
David S. Millere9ce1cd2006-08-21 23:54:55 -070044 return gact->tcf_action;
45 return gact->tcfg_paction;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046}
47
David S. Millere9ce1cd2006-08-21 23:54:55 -070048typedef int (*g_rand)(struct tcf_gact *gact);
Eric Dumazetcc7ec452011-01-19 19:26:56 +000049static g_rand gact_rand[MAX_RAND] = { NULL, gact_net_rand, gact_determ };
David S. Millere9ce1cd2006-08-21 23:54:55 -070050#endif /* CONFIG_GACT_PROB */
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Patrick McHardy53b2bf32008-01-23 20:36:30 -080052static const struct nla_policy gact_policy[TCA_GACT_MAX + 1] = {
53 [TCA_GACT_PARMS] = { .len = sizeof(struct tc_gact) },
54 [TCA_GACT_PROB] = { .len = sizeof(struct tc_gact_p) },
55};
56
Benjamin LaHaisec1b52732013-01-14 05:15:39 +000057static int tcf_gact_init(struct net *net, struct nlattr *nla,
WANG Conga85a9702016-07-25 16:09:41 -070058 struct nlattr *est, struct tc_action **a,
Benjamin LaHaisec1b52732013-01-14 05:15:39 +000059 int ovr, int bind)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060{
WANG Congddf97cc2016-02-22 15:57:53 -080061 struct tc_action_net *tn = net_generic(net, gact_net_id);
Patrick McHardy7ba699c2008-01-22 22:11:50 -080062 struct nlattr *tb[TCA_GACT_MAX + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 struct tc_gact *parm;
David S. Millere9ce1cd2006-08-21 23:54:55 -070064 struct tcf_gact *gact;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 int ret = 0;
Patrick McHardycee63722008-01-23 20:33:32 -080066 int err;
Hiroaki SHIMODA696ecdc2012-08-03 19:57:52 +090067#ifdef CONFIG_GACT_PROB
68 struct tc_gact_p *p_parm = NULL;
69#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Patrick McHardycee63722008-01-23 20:33:32 -080071 if (nla == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 return -EINVAL;
73
Johannes Bergfceb6432017-04-12 14:34:07 +020074 err = nla_parse_nested(tb, TCA_GACT_MAX, nla, gact_policy, NULL);
Patrick McHardycee63722008-01-23 20:33:32 -080075 if (err < 0)
76 return err;
77
Patrick McHardy53b2bf32008-01-23 20:36:30 -080078 if (tb[TCA_GACT_PARMS] == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 return -EINVAL;
Patrick McHardy7ba699c2008-01-22 22:11:50 -080080 parm = nla_data(tb[TCA_GACT_PARMS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Patrick McHardy53b2bf32008-01-23 20:36:30 -080082#ifndef CONFIG_GACT_PROB
Patrick McHardy7ba699c2008-01-22 22:11:50 -080083 if (tb[TCA_GACT_PROB] != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 return -EOPNOTSUPP;
Hiroaki SHIMODA696ecdc2012-08-03 19:57:52 +090085#else
86 if (tb[TCA_GACT_PROB]) {
87 p_parm = nla_data(tb[TCA_GACT_PROB]);
88 if (p_parm->ptype >= MAX_RAND)
89 return -EINVAL;
90 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070091#endif
92
Chris Mi65a206c2017-08-30 02:31:59 -040093 if (!tcf_idr_check(tn, parm->index, a, bind)) {
94 ret = tcf_idr_create(tn, parm->index, est, a,
95 &act_gact_ops, bind, true);
WANG Cong86062032014-02-11 17:07:31 -080096 if (ret)
97 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 ret = ACT_P_CREATED;
99 } else {
Jamal Hadi Salim1a293212013-12-23 08:02:11 -0500100 if (bind)/* dont override defaults */
101 return 0;
Chris Mi65a206c2017-08-30 02:31:59 -0400102 tcf_idr_release(*a, bind);
Jamal Hadi Salim1a293212013-12-23 08:02:11 -0500103 if (!ovr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 return -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 }
106
WANG Conga85a9702016-07-25 16:09:41 -0700107 gact = to_gact(*a);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700108
Eric Dumazet56e5d1c2015-07-06 05:18:08 -0700109 ASSERT_RTNL();
David S. Millere9ce1cd2006-08-21 23:54:55 -0700110 gact->tcf_action = parm->action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111#ifdef CONFIG_GACT_PROB
Hiroaki SHIMODA696ecdc2012-08-03 19:57:52 +0900112 if (p_parm) {
David S. Millere9ce1cd2006-08-21 23:54:55 -0700113 gact->tcfg_paction = p_parm->paction;
Eric Dumazetcef5ecf2015-07-06 05:18:05 -0700114 gact->tcfg_pval = max_t(u16, 1, p_parm->pval);
115 /* Make sure tcfg_pval is written before tcfg_ptype
116 * coupled with smp_rmb() in gact_net_rand() & gact_determ()
117 */
118 smp_wmb();
David S. Millere9ce1cd2006-08-21 23:54:55 -0700119 gact->tcfg_ptype = p_parm->ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 }
121#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 if (ret == ACT_P_CREATED)
Chris Mi65a206c2017-08-30 02:31:59 -0400123 tcf_idr_insert(tn, *a);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 return ret;
125}
126
Eric Dumazetdc7f9f62011-07-05 23:25:42 +0000127static int tcf_gact(struct sk_buff *skb, const struct tc_action *a,
128 struct tcf_result *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
WANG Conga85a9702016-07-25 16:09:41 -0700130 struct tcf_gact *gact = to_gact(a);
Eric Dumazet56e5d1c2015-07-06 05:18:08 -0700131 int action = READ_ONCE(gact->tcf_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133#ifdef CONFIG_GACT_PROB
Eric Dumazet8f2ae965b2015-07-06 05:18:07 -0700134 {
135 u32 ptype = READ_ONCE(gact->tcfg_ptype);
136
137 if (ptype)
138 action = gact_rand[ptype](gact);
139 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140#endif
Eric Dumazet56e5d1c2015-07-06 05:18:08 -0700141 bstats_cpu_update(this_cpu_ptr(gact->common.cpu_bstats), skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 if (action == TC_ACT_SHOT)
Eric Dumazet56e5d1c2015-07-06 05:18:08 -0700143 qstats_drop_inc(this_cpu_ptr(gact->common.cpu_qstats));
144
145 tcf_lastuse_update(&gact->tcf_tm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147 return action;
148}
149
Amir Vadai9fea47d2016-05-13 12:55:36 +0000150static void tcf_gact_stats_update(struct tc_action *a, u64 bytes, u32 packets,
151 u64 lastuse)
152{
WANG Conga85a9702016-07-25 16:09:41 -0700153 struct tcf_gact *gact = to_gact(a);
Amir Vadai9fea47d2016-05-13 12:55:36 +0000154 int action = READ_ONCE(gact->tcf_action);
155 struct tcf_t *tm = &gact->tcf_tm;
156
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400157 _bstats_cpu_update(this_cpu_ptr(gact->common.cpu_bstats), bytes,
158 packets);
Amir Vadai9fea47d2016-05-13 12:55:36 +0000159 if (action == TC_ACT_SHOT)
160 this_cpu_ptr(gact->common.cpu_qstats)->drops += packets;
161
162 tm->lastuse = lastuse;
163}
164
Jamal Hadi Salim0b0f43f2016-06-05 10:41:32 -0400165static int tcf_gact_dump(struct sk_buff *skb, struct tc_action *a,
166 int bind, int ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700168 unsigned char *b = skb_tail_pointer(skb);
WANG Conga85a9702016-07-25 16:09:41 -0700169 struct tcf_gact *gact = to_gact(a);
Eric Dumazet1c40be12010-08-16 20:04:22 +0000170 struct tc_gact opt = {
171 .index = gact->tcf_index,
172 .refcnt = gact->tcf_refcnt - ref,
173 .bindcnt = gact->tcf_bindcnt - bind,
174 .action = gact->tcf_action,
175 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 struct tcf_t t;
177
David S. Miller1b34ec42012-03-29 05:11:39 -0400178 if (nla_put(skb, TCA_GACT_PARMS, sizeof(opt), &opt))
179 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180#ifdef CONFIG_GACT_PROB
David S. Millere9ce1cd2006-08-21 23:54:55 -0700181 if (gact->tcfg_ptype) {
Eric Dumazet1c40be12010-08-16 20:04:22 +0000182 struct tc_gact_p p_opt = {
183 .paction = gact->tcfg_paction,
184 .pval = gact->tcfg_pval,
185 .ptype = gact->tcfg_ptype,
186 };
187
David S. Miller1b34ec42012-03-29 05:11:39 -0400188 if (nla_put(skb, TCA_GACT_PROB, sizeof(p_opt), &p_opt))
189 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 }
191#endif
Jamal Hadi Salim48d8ee12016-06-06 06:32:55 -0400192 tcf_tm_dump(&t, &gact->tcf_tm);
Nicolas Dichtel98545182016-04-26 10:06:18 +0200193 if (nla_put_64bit(skb, TCA_GACT_TM, sizeof(t), &t, TCA_GACT_PAD))
David S. Miller1b34ec42012-03-29 05:11:39 -0400194 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 return skb->len;
196
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800197nla_put_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -0700198 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 return -1;
200}
201
WANG Congddf97cc2016-02-22 15:57:53 -0800202static int tcf_gact_walker(struct net *net, struct sk_buff *skb,
203 struct netlink_callback *cb, int type,
WANG Conga85a9702016-07-25 16:09:41 -0700204 const struct tc_action_ops *ops)
WANG Congddf97cc2016-02-22 15:57:53 -0800205{
206 struct tc_action_net *tn = net_generic(net, gact_net_id);
207
WANG Conga85a9702016-07-25 16:09:41 -0700208 return tcf_generic_walker(tn, skb, cb, type, ops);
WANG Congddf97cc2016-02-22 15:57:53 -0800209}
210
WANG Conga85a9702016-07-25 16:09:41 -0700211static int tcf_gact_search(struct net *net, struct tc_action **a, u32 index)
WANG Congddf97cc2016-02-22 15:57:53 -0800212{
213 struct tc_action_net *tn = net_generic(net, gact_net_id);
214
Chris Mi65a206c2017-08-30 02:31:59 -0400215 return tcf_idr_search(tn, a, index);
WANG Congddf97cc2016-02-22 15:57:53 -0800216}
217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218static struct tc_action_ops act_gact_ops = {
219 .kind = "gact",
220 .type = TCA_ACT_GACT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 .owner = THIS_MODULE,
222 .act = tcf_gact,
Amir Vadai9fea47d2016-05-13 12:55:36 +0000223 .stats_update = tcf_gact_stats_update,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 .dump = tcf_gact_dump,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 .init = tcf_gact_init,
WANG Congddf97cc2016-02-22 15:57:53 -0800226 .walk = tcf_gact_walker,
227 .lookup = tcf_gact_search,
WANG Conga85a9702016-07-25 16:09:41 -0700228 .size = sizeof(struct tcf_gact),
WANG Congddf97cc2016-02-22 15:57:53 -0800229};
230
231static __net_init int gact_init_net(struct net *net)
232{
233 struct tc_action_net *tn = net_generic(net, gact_net_id);
234
Chris Mi65a206c2017-08-30 02:31:59 -0400235 return tc_action_net_init(tn, &act_gact_ops);
WANG Congddf97cc2016-02-22 15:57:53 -0800236}
237
238static void __net_exit gact_exit_net(struct net *net)
239{
240 struct tc_action_net *tn = net_generic(net, gact_net_id);
241
242 tc_action_net_exit(tn);
243}
244
245static struct pernet_operations gact_net_ops = {
246 .init = gact_init_net,
247 .exit = gact_exit_net,
248 .id = &gact_net_id,
249 .size = sizeof(struct tc_action_net),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250};
251
252MODULE_AUTHOR("Jamal Hadi Salim(2002-4)");
253MODULE_DESCRIPTION("Generic Classifier actions");
254MODULE_LICENSE("GPL");
255
David S. Millere9ce1cd2006-08-21 23:54:55 -0700256static int __init gact_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
258#ifdef CONFIG_GACT_PROB
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000259 pr_info("GACT probability on\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260#else
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000261 pr_info("GACT probability NOT on\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262#endif
WANG Congddf97cc2016-02-22 15:57:53 -0800263
264 return tcf_register_action(&act_gact_ops, &gact_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}
266
David S. Millere9ce1cd2006-08-21 23:54:55 -0700267static void __exit gact_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
WANG Congddf97cc2016-02-22 15:57:53 -0800269 tcf_unregister_action(&act_gact_ops, &gact_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
271
272module_init(gact_init_module);
273module_exit(gact_cleanup_module);