Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Jiri Pirko | 0c6965d | 2014-11-05 20:51:51 +0100 | [diff] [blame] | 3 | * net/sched/act_gact.c Generic actions |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * copyright Jamal Hadi Salim (2002-4) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | */ |
| 7 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | #include <linux/types.h> |
| 9 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/string.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/errno.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/skbuff.h> |
| 13 | #include <linux/rtnetlink.h> |
| 14 | #include <linux/module.h> |
| 15 | #include <linux/init.h> |
Arnaldo Carvalho de Melo | dc5fc57 | 2007-03-25 23:06:12 -0700 | [diff] [blame] | 16 | #include <net/netlink.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <net/pkt_sched.h> |
Davide Caratti | 0da2dbd | 2019-03-20 15:00:02 +0100 | [diff] [blame] | 18 | #include <net/pkt_cls.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/tc_act/tc_gact.h> |
| 20 | #include <net/tc_act/tc_gact.h> |
| 21 | |
Alexey Dobriyan | c7d03a0 | 2016-11-17 04:58:21 +0300 | [diff] [blame] | 22 | static unsigned int gact_net_id; |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 23 | static struct tc_action_ops act_gact_ops; |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 24 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #ifdef CONFIG_GACT_PROB |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 26 | static int gact_net_rand(struct tcf_gact *gact) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | { |
Eric Dumazet | cef5ecf | 2015-07-06 05:18:05 -0700 | [diff] [blame] | 28 | smp_rmb(); /* coupled with smp_wmb() in tcf_gact_init() */ |
| 29 | if (prandom_u32() % gact->tcfg_pval) |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 30 | return gact->tcf_action; |
| 31 | return gact->tcfg_paction; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | } |
| 33 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 34 | static int gact_determ(struct tcf_gact *gact) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | { |
Eric Dumazet | cc6510a | 2015-07-06 05:18:06 -0700 | [diff] [blame] | 36 | u32 pack = atomic_inc_return(&gact->packets); |
| 37 | |
Eric Dumazet | cef5ecf | 2015-07-06 05:18:05 -0700 | [diff] [blame] | 38 | smp_rmb(); /* coupled with smp_wmb() in tcf_gact_init() */ |
Eric Dumazet | cc6510a | 2015-07-06 05:18:06 -0700 | [diff] [blame] | 39 | if (pack % gact->tcfg_pval) |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 40 | return gact->tcf_action; |
| 41 | return gact->tcfg_paction; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | } |
| 43 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 44 | typedef int (*g_rand)(struct tcf_gact *gact); |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 45 | 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] | 46 | #endif /* CONFIG_GACT_PROB */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
Patrick McHardy | 53b2bf3 | 2008-01-23 20:36:30 -0800 | [diff] [blame] | 48 | static const struct nla_policy gact_policy[TCA_GACT_MAX + 1] = { |
| 49 | [TCA_GACT_PARMS] = { .len = sizeof(struct tc_gact) }, |
| 50 | [TCA_GACT_PROB] = { .len = sizeof(struct tc_gact_p) }, |
| 51 | }; |
| 52 | |
Benjamin LaHaise | c1b5273 | 2013-01-14 05:15:39 +0000 | [diff] [blame] | 53 | static int tcf_gact_init(struct net *net, struct nlattr *nla, |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 54 | struct nlattr *est, struct tc_action **a, |
Vlad Buslov | 789871b | 2018-07-05 17:24:25 +0300 | [diff] [blame] | 55 | int ovr, int bind, bool rtnl_held, |
Davide Caratti | 85d0966 | 2019-03-20 14:59:59 +0100 | [diff] [blame] | 56 | struct tcf_proto *tp, struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | { |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 58 | struct tc_action_net *tn = net_generic(net, gact_net_id); |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 59 | struct nlattr *tb[TCA_GACT_MAX + 1]; |
Davide Caratti | 0da2dbd | 2019-03-20 15:00:02 +0100 | [diff] [blame] | 60 | struct tcf_chain *goto_ch = NULL; |
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; |
Dmytro Linkin | 7be8ef2 | 2019-08-01 13:02:51 +0000 | [diff] [blame] | 64 | u32 index; |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 65 | int err; |
Hiroaki SHIMODA | 696ecdc | 2012-08-03 19:57:52 +0900 | [diff] [blame] | 66 | #ifdef CONFIG_GACT_PROB |
| 67 | struct tc_gact_p *p_parm = NULL; |
| 68 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 70 | if (nla == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | return -EINVAL; |
| 72 | |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 73 | err = nla_parse_nested_deprecated(tb, TCA_GACT_MAX, nla, gact_policy, |
| 74 | NULL); |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 75 | if (err < 0) |
| 76 | return err; |
| 77 | |
Patrick McHardy | 53b2bf3 | 2008-01-23 20:36:30 -0800 | [diff] [blame] | 78 | if (tb[TCA_GACT_PARMS] == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | return -EINVAL; |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 80 | parm = nla_data(tb[TCA_GACT_PARMS]); |
Dmytro Linkin | 7be8ef2 | 2019-08-01 13:02:51 +0000 | [diff] [blame] | 81 | index = parm->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | |
Patrick McHardy | 53b2bf3 | 2008-01-23 20:36:30 -0800 | [diff] [blame] | 83 | #ifndef CONFIG_GACT_PROB |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 84 | if (tb[TCA_GACT_PROB] != NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | return -EOPNOTSUPP; |
Hiroaki SHIMODA | 696ecdc | 2012-08-03 19:57:52 +0900 | [diff] [blame] | 86 | #else |
| 87 | if (tb[TCA_GACT_PROB]) { |
| 88 | p_parm = nla_data(tb[TCA_GACT_PROB]); |
| 89 | if (p_parm->ptype >= MAX_RAND) |
| 90 | return -EINVAL; |
Davide Caratti | 9469f37 | 2018-10-20 23:33:07 +0200 | [diff] [blame] | 91 | if (TC_ACT_EXT_CMP(p_parm->paction, TC_ACT_GOTO_CHAIN)) { |
| 92 | NL_SET_ERR_MSG(extack, |
| 93 | "goto chain not allowed on fallback"); |
| 94 | return -EINVAL; |
| 95 | } |
Hiroaki SHIMODA | 696ecdc | 2012-08-03 19:57:52 +0900 | [diff] [blame] | 96 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | #endif |
| 98 | |
Dmytro Linkin | 7be8ef2 | 2019-08-01 13:02:51 +0000 | [diff] [blame] | 99 | err = tcf_idr_check_alloc(tn, &index, a, bind); |
Vlad Buslov | 0190c1d | 2018-07-05 17:24:32 +0300 | [diff] [blame] | 100 | if (!err) { |
Dmytro Linkin | 7be8ef2 | 2019-08-01 13:02:51 +0000 | [diff] [blame] | 101 | ret = tcf_idr_create(tn, index, est, a, |
Chris Mi | 65a206c | 2017-08-30 02:31:59 -0400 | [diff] [blame] | 102 | &act_gact_ops, bind, true); |
Vlad Buslov | 0190c1d | 2018-07-05 17:24:32 +0300 | [diff] [blame] | 103 | if (ret) { |
Dmytro Linkin | 7be8ef2 | 2019-08-01 13:02:51 +0000 | [diff] [blame] | 104 | tcf_idr_cleanup(tn, index); |
WANG Cong | 8606203 | 2014-02-11 17:07:31 -0800 | [diff] [blame] | 105 | return ret; |
Vlad Buslov | 0190c1d | 2018-07-05 17:24:32 +0300 | [diff] [blame] | 106 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | ret = ACT_P_CREATED; |
Vlad Buslov | 0190c1d | 2018-07-05 17:24:32 +0300 | [diff] [blame] | 108 | } else if (err > 0) { |
Jamal Hadi Salim | 1a29321 | 2013-12-23 08:02:11 -0500 | [diff] [blame] | 109 | if (bind)/* dont override defaults */ |
| 110 | return 0; |
Vlad Buslov | 4e8ddd7 | 2018-07-05 17:24:30 +0300 | [diff] [blame] | 111 | if (!ovr) { |
| 112 | tcf_idr_release(*a, bind); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | return -EEXIST; |
Vlad Buslov | 4e8ddd7 | 2018-07-05 17:24:30 +0300 | [diff] [blame] | 114 | } |
Vlad Buslov | 0190c1d | 2018-07-05 17:24:32 +0300 | [diff] [blame] | 115 | } else { |
| 116 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | } |
| 118 | |
Davide Caratti | 0da2dbd | 2019-03-20 15:00:02 +0100 | [diff] [blame] | 119 | err = tcf_action_check_ctrlact(parm->action, tp, &goto_ch, extack); |
| 120 | if (err < 0) |
| 121 | goto release_idr; |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 122 | gact = to_gact(*a); |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 123 | |
Vlad Buslov | 653cd28 | 2018-08-14 21:46:16 +0300 | [diff] [blame] | 124 | spin_lock_bh(&gact->tcf_lock); |
Davide Caratti | 0da2dbd | 2019-03-20 15:00:02 +0100 | [diff] [blame] | 125 | goto_ch = tcf_action_set_ctrlact(*a, parm->action, goto_ch); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | #ifdef CONFIG_GACT_PROB |
Hiroaki SHIMODA | 696ecdc | 2012-08-03 19:57:52 +0900 | [diff] [blame] | 127 | if (p_parm) { |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 128 | gact->tcfg_paction = p_parm->paction; |
Eric Dumazet | cef5ecf | 2015-07-06 05:18:05 -0700 | [diff] [blame] | 129 | gact->tcfg_pval = max_t(u16, 1, p_parm->pval); |
| 130 | /* Make sure tcfg_pval is written before tcfg_ptype |
| 131 | * coupled with smp_rmb() in gact_net_rand() & gact_determ() |
| 132 | */ |
| 133 | smp_wmb(); |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 134 | gact->tcfg_ptype = p_parm->ptype; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | } |
| 136 | #endif |
Vlad Buslov | 653cd28 | 2018-08-14 21:46:16 +0300 | [diff] [blame] | 137 | spin_unlock_bh(&gact->tcf_lock); |
Vlad Buslov | e8917f4 | 2018-08-10 20:51:43 +0300 | [diff] [blame] | 138 | |
Davide Caratti | 0da2dbd | 2019-03-20 15:00:02 +0100 | [diff] [blame] | 139 | if (goto_ch) |
| 140 | tcf_chain_put_by_act(goto_ch); |
| 141 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | if (ret == ACT_P_CREATED) |
Chris Mi | 65a206c | 2017-08-30 02:31:59 -0400 | [diff] [blame] | 143 | tcf_idr_insert(tn, *a); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | return ret; |
Davide Caratti | 0da2dbd | 2019-03-20 15:00:02 +0100 | [diff] [blame] | 145 | release_idr: |
| 146 | tcf_idr_release(*a, bind); |
| 147 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | } |
| 149 | |
Jamal Hadi Salim | 1740005 | 2018-08-12 09:34:52 -0400 | [diff] [blame] | 150 | static int tcf_gact_act(struct sk_buff *skb, const struct tc_action *a, |
| 151 | struct tcf_result *res) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | { |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 153 | struct tcf_gact *gact = to_gact(a); |
Eric Dumazet | 56e5d1c | 2015-07-06 05:18:08 -0700 | [diff] [blame] | 154 | int action = READ_ONCE(gact->tcf_action); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | #ifdef CONFIG_GACT_PROB |
Eric Dumazet | 8f2ae965b | 2015-07-06 05:18:07 -0700 | [diff] [blame] | 157 | { |
| 158 | u32 ptype = READ_ONCE(gact->tcfg_ptype); |
| 159 | |
| 160 | if (ptype) |
| 161 | action = gact_rand[ptype](gact); |
| 162 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | #endif |
Eric Dumazet | 56e5d1c | 2015-07-06 05:18:08 -0700 | [diff] [blame] | 164 | bstats_cpu_update(this_cpu_ptr(gact->common.cpu_bstats), skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | if (action == TC_ACT_SHOT) |
Eric Dumazet | 56e5d1c | 2015-07-06 05:18:08 -0700 | [diff] [blame] | 166 | qstats_drop_inc(this_cpu_ptr(gact->common.cpu_qstats)); |
| 167 | |
| 168 | tcf_lastuse_update(&gact->tcf_tm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | |
| 170 | return action; |
| 171 | } |
| 172 | |
Amir Vadai | 9fea47d | 2016-05-13 12:55:36 +0000 | [diff] [blame] | 173 | static void tcf_gact_stats_update(struct tc_action *a, u64 bytes, u32 packets, |
Eelco Chaudron | 28169ab | 2018-09-21 07:14:02 -0400 | [diff] [blame] | 174 | u64 lastuse, bool hw) |
Amir Vadai | 9fea47d | 2016-05-13 12:55:36 +0000 | [diff] [blame] | 175 | { |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 176 | struct tcf_gact *gact = to_gact(a); |
Amir Vadai | 9fea47d | 2016-05-13 12:55:36 +0000 | [diff] [blame] | 177 | int action = READ_ONCE(gact->tcf_action); |
| 178 | struct tcf_t *tm = &gact->tcf_tm; |
| 179 | |
Jamal Hadi Salim | 5a7a555 | 2016-09-18 08:45:33 -0400 | [diff] [blame] | 180 | _bstats_cpu_update(this_cpu_ptr(gact->common.cpu_bstats), bytes, |
| 181 | packets); |
Amir Vadai | 9fea47d | 2016-05-13 12:55:36 +0000 | [diff] [blame] | 182 | if (action == TC_ACT_SHOT) |
| 183 | this_cpu_ptr(gact->common.cpu_qstats)->drops += packets; |
| 184 | |
Eelco Chaudron | 28169ab | 2018-09-21 07:14:02 -0400 | [diff] [blame] | 185 | if (hw) |
| 186 | _bstats_cpu_update(this_cpu_ptr(gact->common.cpu_bstats_hw), |
| 187 | bytes, packets); |
| 188 | |
Roi Dayan | 3bb2342 | 2017-12-26 07:48:51 +0200 | [diff] [blame] | 189 | tm->lastuse = max_t(u64, tm->lastuse, lastuse); |
Amir Vadai | 9fea47d | 2016-05-13 12:55:36 +0000 | [diff] [blame] | 190 | } |
| 191 | |
Jamal Hadi Salim | 0b0f43f | 2016-06-05 10:41:32 -0400 | [diff] [blame] | 192 | static int tcf_gact_dump(struct sk_buff *skb, struct tc_action *a, |
| 193 | int bind, int ref) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | { |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 195 | unsigned char *b = skb_tail_pointer(skb); |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 196 | struct tcf_gact *gact = to_gact(a); |
Eric Dumazet | 1c40be1 | 2010-08-16 20:04:22 +0000 | [diff] [blame] | 197 | struct tc_gact opt = { |
| 198 | .index = gact->tcf_index, |
Vlad Buslov | 036bb44 | 2018-07-05 17:24:24 +0300 | [diff] [blame] | 199 | .refcnt = refcount_read(&gact->tcf_refcnt) - ref, |
| 200 | .bindcnt = atomic_read(&gact->tcf_bindcnt) - bind, |
Eric Dumazet | 1c40be1 | 2010-08-16 20:04:22 +0000 | [diff] [blame] | 201 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | struct tcf_t t; |
| 203 | |
Vlad Buslov | 653cd28 | 2018-08-14 21:46:16 +0300 | [diff] [blame] | 204 | spin_lock_bh(&gact->tcf_lock); |
Vlad Buslov | e8917f4 | 2018-08-10 20:51:43 +0300 | [diff] [blame] | 205 | opt.action = gact->tcf_action; |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 206 | if (nla_put(skb, TCA_GACT_PARMS, sizeof(opt), &opt)) |
| 207 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | #ifdef CONFIG_GACT_PROB |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 209 | if (gact->tcfg_ptype) { |
Eric Dumazet | 1c40be1 | 2010-08-16 20:04:22 +0000 | [diff] [blame] | 210 | struct tc_gact_p p_opt = { |
| 211 | .paction = gact->tcfg_paction, |
| 212 | .pval = gact->tcfg_pval, |
| 213 | .ptype = gact->tcfg_ptype, |
| 214 | }; |
| 215 | |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 216 | if (nla_put(skb, TCA_GACT_PROB, sizeof(p_opt), &p_opt)) |
| 217 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | } |
| 219 | #endif |
Jamal Hadi Salim | 48d8ee1 | 2016-06-06 06:32:55 -0400 | [diff] [blame] | 220 | tcf_tm_dump(&t, &gact->tcf_tm); |
Nicolas Dichtel | 9854518e | 2016-04-26 10:06:18 +0200 | [diff] [blame] | 221 | if (nla_put_64bit(skb, TCA_GACT_TM, sizeof(t), &t, TCA_GACT_PAD)) |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 222 | goto nla_put_failure; |
Vlad Buslov | 653cd28 | 2018-08-14 21:46:16 +0300 | [diff] [blame] | 223 | spin_unlock_bh(&gact->tcf_lock); |
Vlad Buslov | e8917f4 | 2018-08-10 20:51:43 +0300 | [diff] [blame] | 224 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | return skb->len; |
| 226 | |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 227 | nla_put_failure: |
Vlad Buslov | 653cd28 | 2018-08-14 21:46:16 +0300 | [diff] [blame] | 228 | spin_unlock_bh(&gact->tcf_lock); |
Arnaldo Carvalho de Melo | dc5fc57 | 2007-03-25 23:06:12 -0700 | [diff] [blame] | 229 | nlmsg_trim(skb, b); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | return -1; |
| 231 | } |
| 232 | |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 233 | static int tcf_gact_walker(struct net *net, struct sk_buff *skb, |
| 234 | struct netlink_callback *cb, int type, |
Alexander Aring | 4178010 | 2018-02-15 10:54:58 -0500 | [diff] [blame] | 235 | const struct tc_action_ops *ops, |
| 236 | struct netlink_ext_ack *extack) |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 237 | { |
| 238 | struct tc_action_net *tn = net_generic(net, gact_net_id); |
| 239 | |
Alexander Aring | b362014 | 2018-02-15 10:54:59 -0500 | [diff] [blame] | 240 | return tcf_generic_walker(tn, skb, cb, type, ops, extack); |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 241 | } |
| 242 | |
Cong Wang | f061b48 | 2018-08-29 10:15:35 -0700 | [diff] [blame] | 243 | static int tcf_gact_search(struct net *net, struct tc_action **a, u32 index) |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 244 | { |
| 245 | struct tc_action_net *tn = net_generic(net, gact_net_id); |
| 246 | |
Chris Mi | 65a206c | 2017-08-30 02:31:59 -0400 | [diff] [blame] | 247 | return tcf_idr_search(tn, a, index); |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 248 | } |
| 249 | |
Roman Mashak | 9c5c9c5 | 2018-03-08 16:59:20 -0500 | [diff] [blame] | 250 | static size_t tcf_gact_get_fill_size(const struct tc_action *act) |
| 251 | { |
| 252 | size_t sz = nla_total_size(sizeof(struct tc_gact)); /* TCA_GACT_PARMS */ |
| 253 | |
| 254 | #ifdef CONFIG_GACT_PROB |
| 255 | if (to_gact(act)->tcfg_ptype) |
| 256 | /* TCA_GACT_PROB */ |
| 257 | sz += nla_total_size(sizeof(struct tc_gact_p)); |
| 258 | #endif |
| 259 | |
| 260 | return sz; |
| 261 | } |
| 262 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | static struct tc_action_ops act_gact_ops = { |
| 264 | .kind = "gact", |
Eli Cohen | eddd2cf | 2019-02-10 14:25:00 +0200 | [diff] [blame] | 265 | .id = TCA_ID_GACT, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | .owner = THIS_MODULE, |
Jamal Hadi Salim | 1740005 | 2018-08-12 09:34:52 -0400 | [diff] [blame] | 267 | .act = tcf_gact_act, |
Amir Vadai | 9fea47d | 2016-05-13 12:55:36 +0000 | [diff] [blame] | 268 | .stats_update = tcf_gact_stats_update, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | .dump = tcf_gact_dump, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | .init = tcf_gact_init, |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 271 | .walk = tcf_gact_walker, |
| 272 | .lookup = tcf_gact_search, |
Roman Mashak | 9c5c9c5 | 2018-03-08 16:59:20 -0500 | [diff] [blame] | 273 | .get_fill_size = tcf_gact_get_fill_size, |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 274 | .size = sizeof(struct tcf_gact), |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 275 | }; |
| 276 | |
| 277 | static __net_init int gact_init_net(struct net *net) |
| 278 | { |
| 279 | struct tc_action_net *tn = net_generic(net, gact_net_id); |
| 280 | |
Cong Wang | 981471bd | 2019-08-25 10:01:32 -0700 | [diff] [blame] | 281 | return tc_action_net_init(net, tn, &act_gact_ops); |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 282 | } |
| 283 | |
Cong Wang | 039af9c | 2017-12-11 15:35:03 -0800 | [diff] [blame] | 284 | static void __net_exit gact_exit_net(struct list_head *net_list) |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 285 | { |
Cong Wang | 039af9c | 2017-12-11 15:35:03 -0800 | [diff] [blame] | 286 | tc_action_net_exit(net_list, gact_net_id); |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 287 | } |
| 288 | |
| 289 | static struct pernet_operations gact_net_ops = { |
| 290 | .init = gact_init_net, |
Cong Wang | 039af9c | 2017-12-11 15:35:03 -0800 | [diff] [blame] | 291 | .exit_batch = gact_exit_net, |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 292 | .id = &gact_net_id, |
| 293 | .size = sizeof(struct tc_action_net), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | }; |
| 295 | |
| 296 | MODULE_AUTHOR("Jamal Hadi Salim(2002-4)"); |
| 297 | MODULE_DESCRIPTION("Generic Classifier actions"); |
| 298 | MODULE_LICENSE("GPL"); |
| 299 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 300 | static int __init gact_init_module(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | { |
| 302 | #ifdef CONFIG_GACT_PROB |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 303 | pr_info("GACT probability on\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | #else |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 305 | pr_info("GACT probability NOT on\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | #endif |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 307 | |
| 308 | return tcf_register_action(&act_gact_ops, &gact_net_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | } |
| 310 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 311 | static void __exit gact_cleanup_module(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | { |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 313 | tcf_unregister_action(&act_gact_ops, &gact_net_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | } |
| 315 | |
| 316 | module_init(gact_init_module); |
| 317 | module_exit(gact_cleanup_module); |