blob: 22a3a61aa090e60b15749083b4eb28fc5798d0e8 [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 Dumazetcef5ecf2015-07-06 05:18:05 -070039 smp_rmb(); /* coupled with smp_wmb() in tcf_gact_init() */
40 if (gact->tcf_bstats.packets % gact->tcfg_pval)
David S. Millere9ce1cd2006-08-21 23:54:55 -070041 return gact->tcf_action;
42 return gact->tcfg_paction;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043}
44
David S. Millere9ce1cd2006-08-21 23:54:55 -070045typedef int (*g_rand)(struct tcf_gact *gact);
Eric Dumazetcc7ec452011-01-19 19:26:56 +000046static g_rand gact_rand[MAX_RAND] = { NULL, gact_net_rand, gact_determ };
David S. Millere9ce1cd2006-08-21 23:54:55 -070047#endif /* CONFIG_GACT_PROB */
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Patrick McHardy53b2bf32008-01-23 20:36:30 -080049static const struct nla_policy gact_policy[TCA_GACT_MAX + 1] = {
50 [TCA_GACT_PARMS] = { .len = sizeof(struct tc_gact) },
51 [TCA_GACT_PROB] = { .len = sizeof(struct tc_gact_p) },
52};
53
Benjamin LaHaisec1b52732013-01-14 05:15:39 +000054static int tcf_gact_init(struct net *net, struct nlattr *nla,
55 struct nlattr *est, struct tc_action *a,
56 int ovr, int bind)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057{
Patrick McHardy7ba699c2008-01-22 22:11:50 -080058 struct nlattr *tb[TCA_GACT_MAX + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 struct tc_gact *parm;
David S. Millere9ce1cd2006-08-21 23:54:55 -070060 struct tcf_gact *gact;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 int ret = 0;
Patrick McHardycee63722008-01-23 20:33:32 -080062 int err;
Hiroaki SHIMODA696ecdc2012-08-03 19:57:52 +090063#ifdef CONFIG_GACT_PROB
64 struct tc_gact_p *p_parm = NULL;
65#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Patrick McHardycee63722008-01-23 20:33:32 -080067 if (nla == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 return -EINVAL;
69
Patrick McHardy53b2bf32008-01-23 20:36:30 -080070 err = nla_parse_nested(tb, TCA_GACT_MAX, nla, gact_policy);
Patrick McHardycee63722008-01-23 20:33:32 -080071 if (err < 0)
72 return err;
73
Patrick McHardy53b2bf32008-01-23 20:36:30 -080074 if (tb[TCA_GACT_PARMS] == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 return -EINVAL;
Patrick McHardy7ba699c2008-01-22 22:11:50 -080076 parm = nla_data(tb[TCA_GACT_PARMS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Patrick McHardy53b2bf32008-01-23 20:36:30 -080078#ifndef CONFIG_GACT_PROB
Patrick McHardy7ba699c2008-01-22 22:11:50 -080079 if (tb[TCA_GACT_PROB] != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 return -EOPNOTSUPP;
Hiroaki SHIMODA696ecdc2012-08-03 19:57:52 +090081#else
82 if (tb[TCA_GACT_PROB]) {
83 p_parm = nla_data(tb[TCA_GACT_PROB]);
84 if (p_parm->ptype >= MAX_RAND)
85 return -EINVAL;
86 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#endif
88
WANG Cong86062032014-02-11 17:07:31 -080089 if (!tcf_hash_check(parm->index, a, bind)) {
Eric Dumazet519c8182015-07-06 05:18:04 -070090 ret = tcf_hash_create(parm->index, est, a, sizeof(*gact),
91 bind, false);
WANG Cong86062032014-02-11 17:07:31 -080092 if (ret)
93 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 ret = ACT_P_CREATED;
95 } else {
Jamal Hadi Salim1a293212013-12-23 08:02:11 -050096 if (bind)/* dont override defaults */
97 return 0;
WANG Cong86062032014-02-11 17:07:31 -080098 tcf_hash_release(a, bind);
Jamal Hadi Salim1a293212013-12-23 08:02:11 -050099 if (!ovr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 return -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 }
102
WANG Cong86062032014-02-11 17:07:31 -0800103 gact = to_gact(a);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700104
105 spin_lock_bh(&gact->tcf_lock);
106 gact->tcf_action = parm->action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107#ifdef CONFIG_GACT_PROB
Hiroaki SHIMODA696ecdc2012-08-03 19:57:52 +0900108 if (p_parm) {
David S. Millere9ce1cd2006-08-21 23:54:55 -0700109 gact->tcfg_paction = p_parm->paction;
Eric Dumazetcef5ecf2015-07-06 05:18:05 -0700110 gact->tcfg_pval = max_t(u16, 1, p_parm->pval);
111 /* Make sure tcfg_pval is written before tcfg_ptype
112 * coupled with smp_rmb() in gact_net_rand() & gact_determ()
113 */
114 smp_wmb();
David S. Millere9ce1cd2006-08-21 23:54:55 -0700115 gact->tcfg_ptype = p_parm->ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 }
117#endif
David S. Millere9ce1cd2006-08-21 23:54:55 -0700118 spin_unlock_bh(&gact->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 if (ret == ACT_P_CREATED)
WANG Cong86062032014-02-11 17:07:31 -0800120 tcf_hash_insert(a);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 return ret;
122}
123
Eric Dumazetdc7f9f62011-07-05 23:25:42 +0000124static int tcf_gact(struct sk_buff *skb, const struct tc_action *a,
125 struct tcf_result *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
David S. Millere9ce1cd2006-08-21 23:54:55 -0700127 struct tcf_gact *gact = a->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 int action = TC_ACT_SHOT;
129
David S. Millere9ce1cd2006-08-21 23:54:55 -0700130 spin_lock(&gact->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131#ifdef CONFIG_GACT_PROB
Hiroaki SHIMODA696ecdc2012-08-03 19:57:52 +0900132 if (gact->tcfg_ptype)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700133 action = gact_rand[gact->tcfg_ptype](gact);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 else
David S. Millere9ce1cd2006-08-21 23:54:55 -0700135 action = gact->tcf_action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136#else
David S. Millere9ce1cd2006-08-21 23:54:55 -0700137 action = gact->tcf_action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138#endif
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700139 gact->tcf_bstats.bytes += qdisc_pkt_len(skb);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700140 gact->tcf_bstats.packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 if (action == TC_ACT_SHOT)
David S. Millere9ce1cd2006-08-21 23:54:55 -0700142 gact->tcf_qstats.drops++;
143 gact->tcf_tm.lastuse = jiffies;
144 spin_unlock(&gact->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146 return action;
147}
148
David S. Millere9ce1cd2006-08-21 23:54:55 -0700149static int tcf_gact_dump(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700151 unsigned char *b = skb_tail_pointer(skb);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700152 struct tcf_gact *gact = a->priv;
Eric Dumazet1c40be12010-08-16 20:04:22 +0000153 struct tc_gact opt = {
154 .index = gact->tcf_index,
155 .refcnt = gact->tcf_refcnt - ref,
156 .bindcnt = gact->tcf_bindcnt - bind,
157 .action = gact->tcf_action,
158 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 struct tcf_t t;
160
David S. Miller1b34ec42012-03-29 05:11:39 -0400161 if (nla_put(skb, TCA_GACT_PARMS, sizeof(opt), &opt))
162 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163#ifdef CONFIG_GACT_PROB
David S. Millere9ce1cd2006-08-21 23:54:55 -0700164 if (gact->tcfg_ptype) {
Eric Dumazet1c40be12010-08-16 20:04:22 +0000165 struct tc_gact_p p_opt = {
166 .paction = gact->tcfg_paction,
167 .pval = gact->tcfg_pval,
168 .ptype = gact->tcfg_ptype,
169 };
170
David S. Miller1b34ec42012-03-29 05:11:39 -0400171 if (nla_put(skb, TCA_GACT_PROB, sizeof(p_opt), &p_opt))
172 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 }
174#endif
David S. Millere9ce1cd2006-08-21 23:54:55 -0700175 t.install = jiffies_to_clock_t(jiffies - gact->tcf_tm.install);
176 t.lastuse = jiffies_to_clock_t(jiffies - gact->tcf_tm.lastuse);
177 t.expires = jiffies_to_clock_t(gact->tcf_tm.expires);
David S. Miller1b34ec42012-03-29 05:11:39 -0400178 if (nla_put(skb, TCA_GACT_TM, sizeof(t), &t))
179 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 return skb->len;
181
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800182nla_put_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -0700183 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 return -1;
185}
186
187static struct tc_action_ops act_gact_ops = {
188 .kind = "gact",
189 .type = TCA_ACT_GACT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 .owner = THIS_MODULE,
191 .act = tcf_gact,
192 .dump = tcf_gact_dump,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 .init = tcf_gact_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194};
195
196MODULE_AUTHOR("Jamal Hadi Salim(2002-4)");
197MODULE_DESCRIPTION("Generic Classifier actions");
198MODULE_LICENSE("GPL");
199
David S. Millere9ce1cd2006-08-21 23:54:55 -0700200static int __init gact_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
202#ifdef CONFIG_GACT_PROB
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000203 pr_info("GACT probability on\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204#else
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000205 pr_info("GACT probability NOT on\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206#endif
WANG Cong4f1e9d82014-02-11 17:07:33 -0800207 return tcf_register_action(&act_gact_ops, GACT_TAB_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208}
209
David S. Millere9ce1cd2006-08-21 23:54:55 -0700210static void __exit gact_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
212 tcf_unregister_action(&act_gact_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213}
214
215module_init(gact_init_module);
216module_exit(gact_cleanup_module);