blob: 9617b42aaf20745d1c96857c8288ddbfebabd9c8 [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
David S. Millere9ce1cd2006-08-21 23:54:55 -070026#define GACT_TAB_MASK 15
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
WANG Congddf97cc2016-02-22 15:57:53 -080028static int gact_net_id;
WANG Conga85a9702016-07-25 16:09:41 -070029static struct tc_action_ops act_gact_ops;
WANG Congddf97cc2016-02-22 15:57:53 -080030
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#ifdef CONFIG_GACT_PROB
David S. Millere9ce1cd2006-08-21 23:54:55 -070032static int gact_net_rand(struct tcf_gact *gact)
Linus Torvalds1da177e2005-04-16 15:20:36 -070033{
Eric Dumazetcef5ecf2015-07-06 05:18:05 -070034 smp_rmb(); /* coupled with smp_wmb() in tcf_gact_init() */
35 if (prandom_u32() % gact->tcfg_pval)
David S. Millere9ce1cd2006-08-21 23:54:55 -070036 return gact->tcf_action;
37 return gact->tcfg_paction;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038}
39
David S. Millere9ce1cd2006-08-21 23:54:55 -070040static int gact_determ(struct tcf_gact *gact)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
Eric Dumazetcc6510a2015-07-06 05:18:06 -070042 u32 pack = atomic_inc_return(&gact->packets);
43
Eric Dumazetcef5ecf2015-07-06 05:18:05 -070044 smp_rmb(); /* coupled with smp_wmb() in tcf_gact_init() */
Eric Dumazetcc6510a2015-07-06 05:18:06 -070045 if (pack % gact->tcfg_pval)
David S. Millere9ce1cd2006-08-21 23:54:55 -070046 return gact->tcf_action;
47 return gact->tcfg_paction;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048}
49
David S. Millere9ce1cd2006-08-21 23:54:55 -070050typedef int (*g_rand)(struct tcf_gact *gact);
Eric Dumazetcc7ec452011-01-19 19:26:56 +000051static g_rand gact_rand[MAX_RAND] = { NULL, gact_net_rand, gact_determ };
David S. Millere9ce1cd2006-08-21 23:54:55 -070052#endif /* CONFIG_GACT_PROB */
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Patrick McHardy53b2bf32008-01-23 20:36:30 -080054static const struct nla_policy gact_policy[TCA_GACT_MAX + 1] = {
55 [TCA_GACT_PARMS] = { .len = sizeof(struct tc_gact) },
56 [TCA_GACT_PROB] = { .len = sizeof(struct tc_gact_p) },
57};
58
Benjamin LaHaisec1b52732013-01-14 05:15:39 +000059static int tcf_gact_init(struct net *net, struct nlattr *nla,
WANG Conga85a9702016-07-25 16:09:41 -070060 struct nlattr *est, struct tc_action **a,
Benjamin LaHaisec1b52732013-01-14 05:15:39 +000061 int ovr, int bind)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{
WANG Congddf97cc2016-02-22 15:57:53 -080063 struct tc_action_net *tn = net_generic(net, gact_net_id);
Patrick McHardy7ba699c2008-01-22 22:11:50 -080064 struct nlattr *tb[TCA_GACT_MAX + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 struct tc_gact *parm;
David S. Millere9ce1cd2006-08-21 23:54:55 -070066 struct tcf_gact *gact;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 int ret = 0;
Patrick McHardycee63722008-01-23 20:33:32 -080068 int err;
Hiroaki SHIMODA696ecdc2012-08-03 19:57:52 +090069#ifdef CONFIG_GACT_PROB
70 struct tc_gact_p *p_parm = NULL;
71#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Patrick McHardycee63722008-01-23 20:33:32 -080073 if (nla == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 return -EINVAL;
75
Patrick McHardy53b2bf32008-01-23 20:36:30 -080076 err = nla_parse_nested(tb, TCA_GACT_MAX, nla, gact_policy);
Patrick McHardycee63722008-01-23 20:33:32 -080077 if (err < 0)
78 return err;
79
Patrick McHardy53b2bf32008-01-23 20:36:30 -080080 if (tb[TCA_GACT_PARMS] == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 return -EINVAL;
Patrick McHardy7ba699c2008-01-22 22:11:50 -080082 parm = nla_data(tb[TCA_GACT_PARMS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Patrick McHardy53b2bf32008-01-23 20:36:30 -080084#ifndef CONFIG_GACT_PROB
Patrick McHardy7ba699c2008-01-22 22:11:50 -080085 if (tb[TCA_GACT_PROB] != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 return -EOPNOTSUPP;
Hiroaki SHIMODA696ecdc2012-08-03 19:57:52 +090087#else
88 if (tb[TCA_GACT_PROB]) {
89 p_parm = nla_data(tb[TCA_GACT_PROB]);
90 if (p_parm->ptype >= MAX_RAND)
91 return -EINVAL;
92 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#endif
94
WANG Congddf97cc2016-02-22 15:57:53 -080095 if (!tcf_hash_check(tn, parm->index, a, bind)) {
96 ret = tcf_hash_create(tn, parm->index, est, a,
WANG Conga85a9702016-07-25 16:09:41 -070097 &act_gact_ops, bind, true);
WANG Cong86062032014-02-11 17:07:31 -080098 if (ret)
99 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 ret = ACT_P_CREATED;
101 } else {
Jamal Hadi Salim1a293212013-12-23 08:02:11 -0500102 if (bind)/* dont override defaults */
103 return 0;
WANG Conga85a9702016-07-25 16:09:41 -0700104 tcf_hash_release(*a, bind);
Jamal Hadi Salim1a293212013-12-23 08:02:11 -0500105 if (!ovr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 return -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 }
108
WANG Conga85a9702016-07-25 16:09:41 -0700109 gact = to_gact(*a);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700110
Eric Dumazet56e5d1c2015-07-06 05:18:08 -0700111 ASSERT_RTNL();
David S. Millere9ce1cd2006-08-21 23:54:55 -0700112 gact->tcf_action = parm->action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113#ifdef CONFIG_GACT_PROB
Hiroaki SHIMODA696ecdc2012-08-03 19:57:52 +0900114 if (p_parm) {
David S. Millere9ce1cd2006-08-21 23:54:55 -0700115 gact->tcfg_paction = p_parm->paction;
Eric Dumazetcef5ecf2015-07-06 05:18:05 -0700116 gact->tcfg_pval = max_t(u16, 1, p_parm->pval);
117 /* Make sure tcfg_pval is written before tcfg_ptype
118 * coupled with smp_rmb() in gact_net_rand() & gact_determ()
119 */
120 smp_wmb();
David S. Millere9ce1cd2006-08-21 23:54:55 -0700121 gact->tcfg_ptype = p_parm->ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 }
123#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 if (ret == ACT_P_CREATED)
WANG Conga85a9702016-07-25 16:09:41 -0700125 tcf_hash_insert(tn, *a);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 return ret;
127}
128
Eric Dumazetdc7f9f62011-07-05 23:25:42 +0000129static int tcf_gact(struct sk_buff *skb, const struct tc_action *a,
130 struct tcf_result *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
WANG Conga85a9702016-07-25 16:09:41 -0700132 struct tcf_gact *gact = to_gact(a);
Eric Dumazet56e5d1c2015-07-06 05:18:08 -0700133 int action = READ_ONCE(gact->tcf_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135#ifdef CONFIG_GACT_PROB
Eric Dumazet8f2ae965b2015-07-06 05:18:07 -0700136 {
137 u32 ptype = READ_ONCE(gact->tcfg_ptype);
138
139 if (ptype)
140 action = gact_rand[ptype](gact);
141 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142#endif
Eric Dumazet56e5d1c2015-07-06 05:18:08 -0700143 bstats_cpu_update(this_cpu_ptr(gact->common.cpu_bstats), skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 if (action == TC_ACT_SHOT)
Eric Dumazet56e5d1c2015-07-06 05:18:08 -0700145 qstats_drop_inc(this_cpu_ptr(gact->common.cpu_qstats));
146
147 tcf_lastuse_update(&gact->tcf_tm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 return action;
150}
151
Amir Vadai9fea47d2016-05-13 12:55:36 +0000152static void tcf_gact_stats_update(struct tc_action *a, u64 bytes, u32 packets,
153 u64 lastuse)
154{
WANG Conga85a9702016-07-25 16:09:41 -0700155 struct tcf_gact *gact = to_gact(a);
Amir Vadai9fea47d2016-05-13 12:55:36 +0000156 int action = READ_ONCE(gact->tcf_action);
157 struct tcf_t *tm = &gact->tcf_tm;
158
Jamal Hadi Salim5a7a5552016-09-18 08:45:33 -0400159 _bstats_cpu_update(this_cpu_ptr(gact->common.cpu_bstats), bytes,
160 packets);
Amir Vadai9fea47d2016-05-13 12:55:36 +0000161 if (action == TC_ACT_SHOT)
162 this_cpu_ptr(gact->common.cpu_qstats)->drops += packets;
163
Roi Dayanb28394c2017-12-26 07:48:51 +0200164 tm->lastuse = max_t(u64, tm->lastuse, lastuse);
Amir Vadai9fea47d2016-05-13 12:55:36 +0000165}
166
Jamal Hadi Salim0b0f43f2016-06-05 10:41:32 -0400167static int tcf_gact_dump(struct sk_buff *skb, struct tc_action *a,
168 int bind, int ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700170 unsigned char *b = skb_tail_pointer(skb);
WANG Conga85a9702016-07-25 16:09:41 -0700171 struct tcf_gact *gact = to_gact(a);
Eric Dumazet1c40be12010-08-16 20:04:22 +0000172 struct tc_gact opt = {
173 .index = gact->tcf_index,
174 .refcnt = gact->tcf_refcnt - ref,
175 .bindcnt = gact->tcf_bindcnt - bind,
176 .action = gact->tcf_action,
177 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 struct tcf_t t;
179
David S. Miller1b34ec42012-03-29 05:11:39 -0400180 if (nla_put(skb, TCA_GACT_PARMS, sizeof(opt), &opt))
181 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182#ifdef CONFIG_GACT_PROB
David S. Millere9ce1cd2006-08-21 23:54:55 -0700183 if (gact->tcfg_ptype) {
Eric Dumazet1c40be12010-08-16 20:04:22 +0000184 struct tc_gact_p p_opt = {
185 .paction = gact->tcfg_paction,
186 .pval = gact->tcfg_pval,
187 .ptype = gact->tcfg_ptype,
188 };
189
David S. Miller1b34ec42012-03-29 05:11:39 -0400190 if (nla_put(skb, TCA_GACT_PROB, sizeof(p_opt), &p_opt))
191 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 }
193#endif
Jamal Hadi Salim48d8ee12016-06-06 06:32:55 -0400194 tcf_tm_dump(&t, &gact->tcf_tm);
Nicolas Dichtel98545182016-04-26 10:06:18 +0200195 if (nla_put_64bit(skb, TCA_GACT_TM, sizeof(t), &t, TCA_GACT_PAD))
David S. Miller1b34ec42012-03-29 05:11:39 -0400196 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 return skb->len;
198
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800199nla_put_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -0700200 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 return -1;
202}
203
WANG Congddf97cc2016-02-22 15:57:53 -0800204static int tcf_gact_walker(struct net *net, struct sk_buff *skb,
205 struct netlink_callback *cb, int type,
WANG Conga85a9702016-07-25 16:09:41 -0700206 const struct tc_action_ops *ops)
WANG Congddf97cc2016-02-22 15:57:53 -0800207{
208 struct tc_action_net *tn = net_generic(net, gact_net_id);
209
WANG Conga85a9702016-07-25 16:09:41 -0700210 return tcf_generic_walker(tn, skb, cb, type, ops);
WANG Congddf97cc2016-02-22 15:57:53 -0800211}
212
WANG Conga85a9702016-07-25 16:09:41 -0700213static int tcf_gact_search(struct net *net, struct tc_action **a, u32 index)
WANG Congddf97cc2016-02-22 15:57:53 -0800214{
215 struct tc_action_net *tn = net_generic(net, gact_net_id);
216
217 return tcf_hash_search(tn, a, index);
218}
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220static struct tc_action_ops act_gact_ops = {
221 .kind = "gact",
222 .type = TCA_ACT_GACT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 .owner = THIS_MODULE,
224 .act = tcf_gact,
Amir Vadai9fea47d2016-05-13 12:55:36 +0000225 .stats_update = tcf_gact_stats_update,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 .dump = tcf_gact_dump,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 .init = tcf_gact_init,
WANG Congddf97cc2016-02-22 15:57:53 -0800228 .walk = tcf_gact_walker,
229 .lookup = tcf_gact_search,
WANG Conga85a9702016-07-25 16:09:41 -0700230 .size = sizeof(struct tcf_gact),
WANG Congddf97cc2016-02-22 15:57:53 -0800231};
232
233static __net_init int gact_init_net(struct net *net)
234{
235 struct tc_action_net *tn = net_generic(net, gact_net_id);
236
237 return tc_action_net_init(tn, &act_gact_ops, GACT_TAB_MASK);
238}
239
240static void __net_exit gact_exit_net(struct net *net)
241{
242 struct tc_action_net *tn = net_generic(net, gact_net_id);
243
244 tc_action_net_exit(tn);
245}
246
247static struct pernet_operations gact_net_ops = {
248 .init = gact_init_net,
249 .exit = gact_exit_net,
250 .id = &gact_net_id,
251 .size = sizeof(struct tc_action_net),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252};
253
254MODULE_AUTHOR("Jamal Hadi Salim(2002-4)");
255MODULE_DESCRIPTION("Generic Classifier actions");
256MODULE_LICENSE("GPL");
257
David S. Millere9ce1cd2006-08-21 23:54:55 -0700258static int __init gact_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
260#ifdef CONFIG_GACT_PROB
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000261 pr_info("GACT probability on\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262#else
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000263 pr_info("GACT probability NOT on\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264#endif
WANG Congddf97cc2016-02-22 15:57:53 -0800265
266 return tcf_register_action(&act_gact_ops, &gact_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
David S. Millere9ce1cd2006-08-21 23:54:55 -0700269static void __exit gact_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
WANG Congddf97cc2016-02-22 15:57:53 -0800271 tcf_unregister_action(&act_gact_ops, &gact_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272}
273
274module_init(gact_init_module);
275module_exit(gact_cleanup_module);