Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Jiri Pirko | 0c6965d | 2014-11-05 20:51:51 +0100 | [diff] [blame] | 2 | * net/sched/act_gact.c Generic actions |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/types.h> |
| 14 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/string.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/errno.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/skbuff.h> |
| 18 | #include <linux/rtnetlink.h> |
| 19 | #include <linux/module.h> |
| 20 | #include <linux/init.h> |
Arnaldo Carvalho de Melo | dc5fc57 | 2007-03-25 23:06:12 -0700 | [diff] [blame] | 21 | #include <net/netlink.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <net/pkt_sched.h> |
| 23 | #include <linux/tc_act/tc_gact.h> |
| 24 | #include <net/tc_act/tc_gact.h> |
| 25 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 26 | #define GACT_TAB_MASK 15 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
| 28 | #ifdef CONFIG_GACT_PROB |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 29 | static int gact_net_rand(struct tcf_gact *gact) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | { |
Eric Dumazet | cef5ecf | 2015-07-06 05:18:05 -0700 | [diff] [blame] | 31 | smp_rmb(); /* coupled with smp_wmb() in tcf_gact_init() */ |
| 32 | if (prandom_u32() % gact->tcfg_pval) |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 33 | return gact->tcf_action; |
| 34 | return gact->tcfg_paction; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | } |
| 36 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 37 | static int gact_determ(struct tcf_gact *gact) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | { |
Eric Dumazet | cc6510a | 2015-07-06 05:18:06 -0700 | [diff] [blame] | 39 | u32 pack = atomic_inc_return(&gact->packets); |
| 40 | |
Eric Dumazet | cef5ecf | 2015-07-06 05:18:05 -0700 | [diff] [blame] | 41 | smp_rmb(); /* coupled with smp_wmb() in tcf_gact_init() */ |
Eric Dumazet | cc6510a | 2015-07-06 05:18:06 -0700 | [diff] [blame] | 42 | if (pack % gact->tcfg_pval) |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 43 | return gact->tcf_action; |
| 44 | return gact->tcfg_paction; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | } |
| 46 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 47 | typedef int (*g_rand)(struct tcf_gact *gact); |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 48 | static g_rand gact_rand[MAX_RAND] = { NULL, gact_net_rand, gact_determ }; |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 49 | #endif /* CONFIG_GACT_PROB */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
Patrick McHardy | 53b2bf3 | 2008-01-23 20:36:30 -0800 | [diff] [blame] | 51 | static 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 LaHaise | c1b5273 | 2013-01-14 05:15:39 +0000 | [diff] [blame] | 56 | static int tcf_gact_init(struct net *net, struct nlattr *nla, |
| 57 | struct nlattr *est, struct tc_action *a, |
| 58 | int ovr, int bind) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | { |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 60 | struct nlattr *tb[TCA_GACT_MAX + 1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | struct tc_gact *parm; |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 62 | struct tcf_gact *gact; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | int ret = 0; |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 64 | int err; |
Hiroaki SHIMODA | 696ecdc | 2012-08-03 19:57:52 +0900 | [diff] [blame] | 65 | #ifdef CONFIG_GACT_PROB |
| 66 | struct tc_gact_p *p_parm = NULL; |
| 67 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 69 | if (nla == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | return -EINVAL; |
| 71 | |
Patrick McHardy | 53b2bf3 | 2008-01-23 20:36:30 -0800 | [diff] [blame] | 72 | err = nla_parse_nested(tb, TCA_GACT_MAX, nla, gact_policy); |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 73 | if (err < 0) |
| 74 | return err; |
| 75 | |
Patrick McHardy | 53b2bf3 | 2008-01-23 20:36:30 -0800 | [diff] [blame] | 76 | if (tb[TCA_GACT_PARMS] == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | return -EINVAL; |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 78 | parm = nla_data(tb[TCA_GACT_PARMS]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
Patrick McHardy | 53b2bf3 | 2008-01-23 20:36:30 -0800 | [diff] [blame] | 80 | #ifndef CONFIG_GACT_PROB |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 81 | if (tb[TCA_GACT_PROB] != NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | return -EOPNOTSUPP; |
Hiroaki SHIMODA | 696ecdc | 2012-08-03 19:57:52 +0900 | [diff] [blame] | 83 | #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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | #endif |
| 90 | |
WANG Cong | 8606203 | 2014-02-11 17:07:31 -0800 | [diff] [blame] | 91 | if (!tcf_hash_check(parm->index, a, bind)) { |
Eric Dumazet | 519c818 | 2015-07-06 05:18:04 -0700 | [diff] [blame] | 92 | ret = tcf_hash_create(parm->index, est, a, sizeof(*gact), |
Eric Dumazet | 56e5d1c | 2015-07-06 05:18:08 -0700 | [diff] [blame] | 93 | bind, true); |
WANG Cong | 8606203 | 2014-02-11 17:07:31 -0800 | [diff] [blame] | 94 | if (ret) |
| 95 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | ret = ACT_P_CREATED; |
| 97 | } else { |
Jamal Hadi Salim | 1a29321 | 2013-12-23 08:02:11 -0500 | [diff] [blame] | 98 | if (bind)/* dont override defaults */ |
| 99 | return 0; |
WANG Cong | 8606203 | 2014-02-11 17:07:31 -0800 | [diff] [blame] | 100 | tcf_hash_release(a, bind); |
Jamal Hadi Salim | 1a29321 | 2013-12-23 08:02:11 -0500 | [diff] [blame] | 101 | if (!ovr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | return -EEXIST; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | } |
| 104 | |
WANG Cong | 8606203 | 2014-02-11 17:07:31 -0800 | [diff] [blame] | 105 | gact = to_gact(a); |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 106 | |
Eric Dumazet | 56e5d1c | 2015-07-06 05:18:08 -0700 | [diff] [blame] | 107 | ASSERT_RTNL(); |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 108 | gact->tcf_action = parm->action; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | #ifdef CONFIG_GACT_PROB |
Hiroaki SHIMODA | 696ecdc | 2012-08-03 19:57:52 +0900 | [diff] [blame] | 110 | if (p_parm) { |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 111 | gact->tcfg_paction = p_parm->paction; |
Eric Dumazet | cef5ecf | 2015-07-06 05:18:05 -0700 | [diff] [blame] | 112 | 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. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 117 | gact->tcfg_ptype = p_parm->ptype; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | } |
| 119 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | if (ret == ACT_P_CREATED) |
WANG Cong | 8606203 | 2014-02-11 17:07:31 -0800 | [diff] [blame] | 121 | tcf_hash_insert(a); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | return ret; |
| 123 | } |
| 124 | |
Eric Dumazet | dc7f9f6 | 2011-07-05 23:25:42 +0000 | [diff] [blame] | 125 | static int tcf_gact(struct sk_buff *skb, const struct tc_action *a, |
| 126 | struct tcf_result *res) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | { |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 128 | struct tcf_gact *gact = a->priv; |
Eric Dumazet | 56e5d1c | 2015-07-06 05:18:08 -0700 | [diff] [blame] | 129 | int action = READ_ONCE(gact->tcf_action); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | #ifdef CONFIG_GACT_PROB |
Eric Dumazet | 8f2ae965b | 2015-07-06 05:18:07 -0700 | [diff] [blame] | 132 | { |
| 133 | u32 ptype = READ_ONCE(gact->tcfg_ptype); |
| 134 | |
| 135 | if (ptype) |
| 136 | action = gact_rand[ptype](gact); |
| 137 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | #endif |
Eric Dumazet | 56e5d1c | 2015-07-06 05:18:08 -0700 | [diff] [blame] | 139 | bstats_cpu_update(this_cpu_ptr(gact->common.cpu_bstats), skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | if (action == TC_ACT_SHOT) |
Eric Dumazet | 56e5d1c | 2015-07-06 05:18:08 -0700 | [diff] [blame] | 141 | qstats_drop_inc(this_cpu_ptr(gact->common.cpu_qstats)); |
| 142 | |
| 143 | tcf_lastuse_update(&gact->tcf_tm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | |
| 145 | return action; |
| 146 | } |
| 147 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 148 | static int tcf_gact_dump(struct sk_buff *skb, struct tc_action *a, int bind, int ref) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | { |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 150 | unsigned char *b = skb_tail_pointer(skb); |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 151 | struct tcf_gact *gact = a->priv; |
Eric Dumazet | 1c40be1 | 2010-08-16 20:04:22 +0000 | [diff] [blame] | 152 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | struct tcf_t t; |
| 159 | |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 160 | if (nla_put(skb, TCA_GACT_PARMS, sizeof(opt), &opt)) |
| 161 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | #ifdef CONFIG_GACT_PROB |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 163 | if (gact->tcfg_ptype) { |
Eric Dumazet | 1c40be1 | 2010-08-16 20:04:22 +0000 | [diff] [blame] | 164 | 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. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 170 | if (nla_put(skb, TCA_GACT_PROB, sizeof(p_opt), &p_opt)) |
| 171 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | } |
| 173 | #endif |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 174 | 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. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 177 | if (nla_put(skb, TCA_GACT_TM, sizeof(t), &t)) |
| 178 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | return skb->len; |
| 180 | |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 181 | nla_put_failure: |
Arnaldo Carvalho de Melo | dc5fc57 | 2007-03-25 23:06:12 -0700 | [diff] [blame] | 182 | nlmsg_trim(skb, b); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | return -1; |
| 184 | } |
| 185 | |
| 186 | static struct tc_action_ops act_gact_ops = { |
| 187 | .kind = "gact", |
| 188 | .type = TCA_ACT_GACT, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | .owner = THIS_MODULE, |
| 190 | .act = tcf_gact, |
| 191 | .dump = tcf_gact_dump, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | .init = tcf_gact_init, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | }; |
| 194 | |
| 195 | MODULE_AUTHOR("Jamal Hadi Salim(2002-4)"); |
| 196 | MODULE_DESCRIPTION("Generic Classifier actions"); |
| 197 | MODULE_LICENSE("GPL"); |
| 198 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 199 | static int __init gact_init_module(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | { |
| 201 | #ifdef CONFIG_GACT_PROB |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 202 | pr_info("GACT probability on\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | #else |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 204 | pr_info("GACT probability NOT on\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | #endif |
WANG Cong | 4f1e9d8 | 2014-02-11 17:07:33 -0800 | [diff] [blame] | 206 | return tcf_register_action(&act_gact_ops, GACT_TAB_MASK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | } |
| 208 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 209 | static void __exit gact_cleanup_module(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | { |
| 211 | tcf_unregister_action(&act_gact_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | } |
| 213 | |
| 214 | module_init(gact_init_module); |
| 215 | module_exit(gact_cleanup_module); |