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 | |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 28 | static int gact_net_id; |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 29 | static struct tc_action_ops act_gact_ops; |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 30 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #ifdef CONFIG_GACT_PROB |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 32 | static int gact_net_rand(struct tcf_gact *gact) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | { |
Eric Dumazet | cef5ecf | 2015-07-06 05:18:05 -0700 | [diff] [blame] | 34 | smp_rmb(); /* coupled with smp_wmb() in tcf_gact_init() */ |
| 35 | if (prandom_u32() % gact->tcfg_pval) |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 36 | return gact->tcf_action; |
| 37 | return gact->tcfg_paction; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | } |
| 39 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 40 | static int gact_determ(struct tcf_gact *gact) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | { |
Eric Dumazet | cc6510a | 2015-07-06 05:18:06 -0700 | [diff] [blame] | 42 | u32 pack = atomic_inc_return(&gact->packets); |
| 43 | |
Eric Dumazet | cef5ecf | 2015-07-06 05:18:05 -0700 | [diff] [blame] | 44 | smp_rmb(); /* coupled with smp_wmb() in tcf_gact_init() */ |
Eric Dumazet | cc6510a | 2015-07-06 05:18:06 -0700 | [diff] [blame] | 45 | if (pack % gact->tcfg_pval) |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 46 | return gact->tcf_action; |
| 47 | return gact->tcfg_paction; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | } |
| 49 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 50 | typedef int (*g_rand)(struct tcf_gact *gact); |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 51 | 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] | 52 | #endif /* CONFIG_GACT_PROB */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
Patrick McHardy | 53b2bf3 | 2008-01-23 20:36:30 -0800 | [diff] [blame] | 54 | static 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 LaHaise | c1b5273 | 2013-01-14 05:15:39 +0000 | [diff] [blame] | 59 | static int tcf_gact_init(struct net *net, struct nlattr *nla, |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 60 | struct nlattr *est, struct tc_action **a, |
Benjamin LaHaise | c1b5273 | 2013-01-14 05:15:39 +0000 | [diff] [blame] | 61 | int ovr, int bind) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | { |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 63 | struct tc_action_net *tn = net_generic(net, gact_net_id); |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 64 | struct nlattr *tb[TCA_GACT_MAX + 1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | struct tc_gact *parm; |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 66 | struct tcf_gact *gact; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | int ret = 0; |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 68 | int err; |
Hiroaki SHIMODA | 696ecdc | 2012-08-03 19:57:52 +0900 | [diff] [blame] | 69 | #ifdef CONFIG_GACT_PROB |
| 70 | struct tc_gact_p *p_parm = NULL; |
| 71 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 73 | if (nla == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | return -EINVAL; |
| 75 | |
Patrick McHardy | 53b2bf3 | 2008-01-23 20:36:30 -0800 | [diff] [blame] | 76 | err = nla_parse_nested(tb, TCA_GACT_MAX, nla, gact_policy); |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 77 | if (err < 0) |
| 78 | return err; |
| 79 | |
Patrick McHardy | 53b2bf3 | 2008-01-23 20:36:30 -0800 | [diff] [blame] | 80 | if (tb[TCA_GACT_PARMS] == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | return -EINVAL; |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 82 | parm = nla_data(tb[TCA_GACT_PARMS]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | |
Patrick McHardy | 53b2bf3 | 2008-01-23 20:36:30 -0800 | [diff] [blame] | 84 | #ifndef CONFIG_GACT_PROB |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 85 | if (tb[TCA_GACT_PROB] != NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | return -EOPNOTSUPP; |
Hiroaki SHIMODA | 696ecdc | 2012-08-03 19:57:52 +0900 | [diff] [blame] | 87 | #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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | #endif |
| 94 | |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 95 | if (!tcf_hash_check(tn, parm->index, a, bind)) { |
| 96 | ret = tcf_hash_create(tn, parm->index, est, a, |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 97 | &act_gact_ops, bind, true); |
WANG Cong | 8606203 | 2014-02-11 17:07:31 -0800 | [diff] [blame] | 98 | if (ret) |
| 99 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | ret = ACT_P_CREATED; |
| 101 | } else { |
Jamal Hadi Salim | 1a29321 | 2013-12-23 08:02:11 -0500 | [diff] [blame] | 102 | if (bind)/* dont override defaults */ |
| 103 | return 0; |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 104 | tcf_hash_release(*a, bind); |
Jamal Hadi Salim | 1a29321 | 2013-12-23 08:02:11 -0500 | [diff] [blame] | 105 | if (!ovr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | return -EEXIST; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | } |
| 108 | |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 109 | gact = to_gact(*a); |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 110 | |
Eric Dumazet | 56e5d1c | 2015-07-06 05:18:08 -0700 | [diff] [blame] | 111 | ASSERT_RTNL(); |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 112 | gact->tcf_action = parm->action; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | #ifdef CONFIG_GACT_PROB |
Hiroaki SHIMODA | 696ecdc | 2012-08-03 19:57:52 +0900 | [diff] [blame] | 114 | if (p_parm) { |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 115 | gact->tcfg_paction = p_parm->paction; |
Eric Dumazet | cef5ecf | 2015-07-06 05:18:05 -0700 | [diff] [blame] | 116 | 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. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 121 | gact->tcfg_ptype = p_parm->ptype; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | } |
| 123 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | if (ret == ACT_P_CREATED) |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 125 | tcf_hash_insert(tn, *a); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | return ret; |
| 127 | } |
| 128 | |
Eric Dumazet | dc7f9f6 | 2011-07-05 23:25:42 +0000 | [diff] [blame] | 129 | static int tcf_gact(struct sk_buff *skb, const struct tc_action *a, |
| 130 | struct tcf_result *res) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | { |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 132 | struct tcf_gact *gact = to_gact(a); |
Eric Dumazet | 56e5d1c | 2015-07-06 05:18:08 -0700 | [diff] [blame] | 133 | int action = READ_ONCE(gact->tcf_action); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | #ifdef CONFIG_GACT_PROB |
Eric Dumazet | 8f2ae965b | 2015-07-06 05:18:07 -0700 | [diff] [blame] | 136 | { |
| 137 | u32 ptype = READ_ONCE(gact->tcfg_ptype); |
| 138 | |
| 139 | if (ptype) |
| 140 | action = gact_rand[ptype](gact); |
| 141 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | #endif |
Eric Dumazet | 56e5d1c | 2015-07-06 05:18:08 -0700 | [diff] [blame] | 143 | bstats_cpu_update(this_cpu_ptr(gact->common.cpu_bstats), skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | if (action == TC_ACT_SHOT) |
Eric Dumazet | 56e5d1c | 2015-07-06 05:18:08 -0700 | [diff] [blame] | 145 | qstats_drop_inc(this_cpu_ptr(gact->common.cpu_qstats)); |
| 146 | |
| 147 | tcf_lastuse_update(&gact->tcf_tm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | |
| 149 | return action; |
| 150 | } |
| 151 | |
Amir Vadai | 9fea47d | 2016-05-13 12:55:36 +0000 | [diff] [blame] | 152 | static void tcf_gact_stats_update(struct tc_action *a, u64 bytes, u32 packets, |
| 153 | u64 lastuse) |
| 154 | { |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 155 | struct tcf_gact *gact = to_gact(a); |
Amir Vadai | 9fea47d | 2016-05-13 12:55:36 +0000 | [diff] [blame] | 156 | int action = READ_ONCE(gact->tcf_action); |
| 157 | struct tcf_t *tm = &gact->tcf_tm; |
| 158 | |
Jamal Hadi Salim | 5a7a555 | 2016-09-18 08:45:33 -0400 | [diff] [blame] | 159 | _bstats_cpu_update(this_cpu_ptr(gact->common.cpu_bstats), bytes, |
| 160 | packets); |
Amir Vadai | 9fea47d | 2016-05-13 12:55:36 +0000 | [diff] [blame] | 161 | if (action == TC_ACT_SHOT) |
| 162 | this_cpu_ptr(gact->common.cpu_qstats)->drops += packets; |
| 163 | |
Roi Dayan | b28394c | 2017-12-26 07:48:51 +0200 | [diff] [blame] | 164 | tm->lastuse = max_t(u64, tm->lastuse, lastuse); |
Amir Vadai | 9fea47d | 2016-05-13 12:55:36 +0000 | [diff] [blame] | 165 | } |
| 166 | |
Jamal Hadi Salim | 0b0f43f | 2016-06-05 10:41:32 -0400 | [diff] [blame] | 167 | static int tcf_gact_dump(struct sk_buff *skb, struct tc_action *a, |
| 168 | int bind, int ref) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | { |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 170 | unsigned char *b = skb_tail_pointer(skb); |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 171 | struct tcf_gact *gact = to_gact(a); |
Eric Dumazet | 1c40be1 | 2010-08-16 20:04:22 +0000 | [diff] [blame] | 172 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | struct tcf_t t; |
| 179 | |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 180 | if (nla_put(skb, TCA_GACT_PARMS, sizeof(opt), &opt)) |
| 181 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | #ifdef CONFIG_GACT_PROB |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 183 | if (gact->tcfg_ptype) { |
Eric Dumazet | 1c40be1 | 2010-08-16 20:04:22 +0000 | [diff] [blame] | 184 | 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. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 190 | if (nla_put(skb, TCA_GACT_PROB, sizeof(p_opt), &p_opt)) |
| 191 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | } |
| 193 | #endif |
Jamal Hadi Salim | 48d8ee1 | 2016-06-06 06:32:55 -0400 | [diff] [blame] | 194 | tcf_tm_dump(&t, &gact->tcf_tm); |
Nicolas Dichtel | 9854518 | 2016-04-26 10:06:18 +0200 | [diff] [blame] | 195 | 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] | 196 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | return skb->len; |
| 198 | |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 199 | nla_put_failure: |
Arnaldo Carvalho de Melo | dc5fc57 | 2007-03-25 23:06:12 -0700 | [diff] [blame] | 200 | nlmsg_trim(skb, b); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | return -1; |
| 202 | } |
| 203 | |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 204 | static int tcf_gact_walker(struct net *net, struct sk_buff *skb, |
| 205 | struct netlink_callback *cb, int type, |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 206 | const struct tc_action_ops *ops) |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 207 | { |
| 208 | struct tc_action_net *tn = net_generic(net, gact_net_id); |
| 209 | |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 210 | return tcf_generic_walker(tn, skb, cb, type, ops); |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 211 | } |
| 212 | |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 213 | 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] | 214 | { |
| 215 | struct tc_action_net *tn = net_generic(net, gact_net_id); |
| 216 | |
| 217 | return tcf_hash_search(tn, a, index); |
| 218 | } |
| 219 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | static struct tc_action_ops act_gact_ops = { |
| 221 | .kind = "gact", |
| 222 | .type = TCA_ACT_GACT, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | .owner = THIS_MODULE, |
| 224 | .act = tcf_gact, |
Amir Vadai | 9fea47d | 2016-05-13 12:55:36 +0000 | [diff] [blame] | 225 | .stats_update = tcf_gact_stats_update, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | .dump = tcf_gact_dump, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | .init = tcf_gact_init, |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 228 | .walk = tcf_gact_walker, |
| 229 | .lookup = tcf_gact_search, |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 230 | .size = sizeof(struct tcf_gact), |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 231 | }; |
| 232 | |
| 233 | static __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 | |
| 240 | static 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 | |
| 247 | static 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | }; |
| 253 | |
| 254 | MODULE_AUTHOR("Jamal Hadi Salim(2002-4)"); |
| 255 | MODULE_DESCRIPTION("Generic Classifier actions"); |
| 256 | MODULE_LICENSE("GPL"); |
| 257 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 258 | static int __init gact_init_module(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | { |
| 260 | #ifdef CONFIG_GACT_PROB |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 261 | pr_info("GACT probability on\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | #else |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 263 | pr_info("GACT probability NOT on\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | #endif |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 265 | |
| 266 | return tcf_register_action(&act_gact_ops, &gact_net_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | } |
| 268 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 269 | static void __exit gact_cleanup_module(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | { |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 271 | tcf_unregister_action(&act_gact_ops, &gact_net_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | } |
| 273 | |
| 274 | module_init(gact_init_module); |
| 275 | module_exit(gact_cleanup_module); |