blob: 5c1b051707363e19a779fcca2de6ae38ba0239fe [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
28#ifdef CONFIG_GACT_PROB
David S. Millere9ce1cd2006-08-21 23:54:55 -070029static int gact_net_rand(struct tcf_gact *gact)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030{
Eric Dumazetcef5ecf2015-07-06 05:18:05 -070031 smp_rmb(); /* coupled with smp_wmb() in tcf_gact_init() */
32 if (prandom_u32() % gact->tcfg_pval)
David S. Millere9ce1cd2006-08-21 23:54:55 -070033 return gact->tcf_action;
34 return gact->tcfg_paction;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035}
36
David S. Millere9ce1cd2006-08-21 23:54:55 -070037static int gact_determ(struct tcf_gact *gact)
Linus Torvalds1da177e2005-04-16 15:20:36 -070038{
Eric Dumazetcc6510a2015-07-06 05:18:06 -070039 u32 pack = atomic_inc_return(&gact->packets);
40
Eric Dumazetcef5ecf2015-07-06 05:18:05 -070041 smp_rmb(); /* coupled with smp_wmb() in tcf_gact_init() */
Eric Dumazetcc6510a2015-07-06 05:18:06 -070042 if (pack % gact->tcfg_pval)
David S. Millere9ce1cd2006-08-21 23:54:55 -070043 return gact->tcf_action;
44 return gact->tcfg_paction;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045}
46
David S. Millere9ce1cd2006-08-21 23:54:55 -070047typedef int (*g_rand)(struct tcf_gact *gact);
Eric Dumazetcc7ec452011-01-19 19:26:56 +000048static g_rand gact_rand[MAX_RAND] = { NULL, gact_net_rand, gact_determ };
David S. Millere9ce1cd2006-08-21 23:54:55 -070049#endif /* CONFIG_GACT_PROB */
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Patrick McHardy53b2bf32008-01-23 20:36:30 -080051static const struct nla_policy gact_policy[TCA_GACT_MAX + 1] = {
52 [TCA_GACT_PARMS] = { .len = sizeof(struct tc_gact) },
53 [TCA_GACT_PROB] = { .len = sizeof(struct tc_gact_p) },
54};
55
Benjamin LaHaisec1b52732013-01-14 05:15:39 +000056static int tcf_gact_init(struct net *net, struct nlattr *nla,
57 struct nlattr *est, struct tc_action *a,
58 int ovr, int bind)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059{
Patrick McHardy7ba699c2008-01-22 22:11:50 -080060 struct nlattr *tb[TCA_GACT_MAX + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 struct tc_gact *parm;
David S. Millere9ce1cd2006-08-21 23:54:55 -070062 struct tcf_gact *gact;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 int ret = 0;
Patrick McHardycee63722008-01-23 20:33:32 -080064 int err;
Hiroaki SHIMODA696ecdc2012-08-03 19:57:52 +090065#ifdef CONFIG_GACT_PROB
66 struct tc_gact_p *p_parm = NULL;
67#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Patrick McHardycee63722008-01-23 20:33:32 -080069 if (nla == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 return -EINVAL;
71
Patrick McHardy53b2bf32008-01-23 20:36:30 -080072 err = nla_parse_nested(tb, TCA_GACT_MAX, nla, gact_policy);
Patrick McHardycee63722008-01-23 20:33:32 -080073 if (err < 0)
74 return err;
75
Patrick McHardy53b2bf32008-01-23 20:36:30 -080076 if (tb[TCA_GACT_PARMS] == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 return -EINVAL;
Patrick McHardy7ba699c2008-01-22 22:11:50 -080078 parm = nla_data(tb[TCA_GACT_PARMS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Patrick McHardy53b2bf32008-01-23 20:36:30 -080080#ifndef CONFIG_GACT_PROB
Patrick McHardy7ba699c2008-01-22 22:11:50 -080081 if (tb[TCA_GACT_PROB] != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 return -EOPNOTSUPP;
Hiroaki SHIMODA696ecdc2012-08-03 19:57:52 +090083#else
84 if (tb[TCA_GACT_PROB]) {
85 p_parm = nla_data(tb[TCA_GACT_PROB]);
86 if (p_parm->ptype >= MAX_RAND)
87 return -EINVAL;
88 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#endif
90
WANG Cong86062032014-02-11 17:07:31 -080091 if (!tcf_hash_check(parm->index, a, bind)) {
Eric Dumazet519c8182015-07-06 05:18:04 -070092 ret = tcf_hash_create(parm->index, est, a, sizeof(*gact),
Eric Dumazet56e5d1c2015-07-06 05:18:08 -070093 bind, true);
WANG Cong86062032014-02-11 17:07:31 -080094 if (ret)
95 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 ret = ACT_P_CREATED;
97 } else {
Jamal Hadi Salim1a293212013-12-23 08:02:11 -050098 if (bind)/* dont override defaults */
99 return 0;
WANG Cong86062032014-02-11 17:07:31 -0800100 tcf_hash_release(a, bind);
Jamal Hadi Salim1a293212013-12-23 08:02:11 -0500101 if (!ovr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 return -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 }
104
WANG Cong86062032014-02-11 17:07:31 -0800105 gact = to_gact(a);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700106
Eric Dumazet56e5d1c2015-07-06 05:18:08 -0700107 ASSERT_RTNL();
David S. Millere9ce1cd2006-08-21 23:54:55 -0700108 gact->tcf_action = parm->action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#ifdef CONFIG_GACT_PROB
Hiroaki SHIMODA696ecdc2012-08-03 19:57:52 +0900110 if (p_parm) {
David S. Millere9ce1cd2006-08-21 23:54:55 -0700111 gact->tcfg_paction = p_parm->paction;
Eric Dumazetcef5ecf2015-07-06 05:18:05 -0700112 gact->tcfg_pval = max_t(u16, 1, p_parm->pval);
113 /* Make sure tcfg_pval is written before tcfg_ptype
114 * coupled with smp_rmb() in gact_net_rand() & gact_determ()
115 */
116 smp_wmb();
David S. Millere9ce1cd2006-08-21 23:54:55 -0700117 gact->tcfg_ptype = p_parm->ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 }
119#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 if (ret == ACT_P_CREATED)
WANG Cong86062032014-02-11 17:07:31 -0800121 tcf_hash_insert(a);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 return ret;
123}
124
Eric Dumazetdc7f9f62011-07-05 23:25:42 +0000125static int tcf_gact(struct sk_buff *skb, const struct tc_action *a,
126 struct tcf_result *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127{
David S. Millere9ce1cd2006-08-21 23:54:55 -0700128 struct tcf_gact *gact = a->priv;
Eric Dumazet56e5d1c2015-07-06 05:18:08 -0700129 int action = READ_ONCE(gact->tcf_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131#ifdef CONFIG_GACT_PROB
Eric Dumazet8f2ae965b2015-07-06 05:18:07 -0700132 {
133 u32 ptype = READ_ONCE(gact->tcfg_ptype);
134
135 if (ptype)
136 action = gact_rand[ptype](gact);
137 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138#endif
Eric Dumazet56e5d1c2015-07-06 05:18:08 -0700139 bstats_cpu_update(this_cpu_ptr(gact->common.cpu_bstats), skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 if (action == TC_ACT_SHOT)
Eric Dumazet56e5d1c2015-07-06 05:18:08 -0700141 qstats_drop_inc(this_cpu_ptr(gact->common.cpu_qstats));
142
143 tcf_lastuse_update(&gact->tcf_tm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145 return action;
146}
147
David S. Millere9ce1cd2006-08-21 23:54:55 -0700148static int tcf_gact_dump(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700150 unsigned char *b = skb_tail_pointer(skb);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700151 struct tcf_gact *gact = a->priv;
Eric Dumazet1c40be12010-08-16 20:04:22 +0000152 struct tc_gact opt = {
153 .index = gact->tcf_index,
154 .refcnt = gact->tcf_refcnt - ref,
155 .bindcnt = gact->tcf_bindcnt - bind,
156 .action = gact->tcf_action,
157 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 struct tcf_t t;
159
David S. Miller1b34ec42012-03-29 05:11:39 -0400160 if (nla_put(skb, TCA_GACT_PARMS, sizeof(opt), &opt))
161 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162#ifdef CONFIG_GACT_PROB
David S. Millere9ce1cd2006-08-21 23:54:55 -0700163 if (gact->tcfg_ptype) {
Eric Dumazet1c40be12010-08-16 20:04:22 +0000164 struct tc_gact_p p_opt = {
165 .paction = gact->tcfg_paction,
166 .pval = gact->tcfg_pval,
167 .ptype = gact->tcfg_ptype,
168 };
169
David S. Miller1b34ec42012-03-29 05:11:39 -0400170 if (nla_put(skb, TCA_GACT_PROB, sizeof(p_opt), &p_opt))
171 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 }
173#endif
David S. Millere9ce1cd2006-08-21 23:54:55 -0700174 t.install = jiffies_to_clock_t(jiffies - gact->tcf_tm.install);
175 t.lastuse = jiffies_to_clock_t(jiffies - gact->tcf_tm.lastuse);
176 t.expires = jiffies_to_clock_t(gact->tcf_tm.expires);
David S. Miller1b34ec42012-03-29 05:11:39 -0400177 if (nla_put(skb, TCA_GACT_TM, sizeof(t), &t))
178 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 return skb->len;
180
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800181nla_put_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -0700182 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 return -1;
184}
185
186static struct tc_action_ops act_gact_ops = {
187 .kind = "gact",
188 .type = TCA_ACT_GACT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 .owner = THIS_MODULE,
190 .act = tcf_gact,
191 .dump = tcf_gact_dump,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 .init = tcf_gact_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193};
194
195MODULE_AUTHOR("Jamal Hadi Salim(2002-4)");
196MODULE_DESCRIPTION("Generic Classifier actions");
197MODULE_LICENSE("GPL");
198
David S. Millere9ce1cd2006-08-21 23:54:55 -0700199static int __init gact_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
201#ifdef CONFIG_GACT_PROB
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000202 pr_info("GACT probability on\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203#else
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000204 pr_info("GACT probability NOT on\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205#endif
WANG Cong4f1e9d82014-02-11 17:07:33 -0800206 return tcf_register_action(&act_gact_ops, GACT_TAB_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207}
208
David S. Millere9ce1cd2006-08-21 23:54:55 -0700209static void __exit gact_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
211 tcf_unregister_action(&act_gact_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212}
213
214module_init(gact_init_module);
215module_exit(gact_cleanup_module);