]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - net/sched/act_gact.c
[VLAN] vlan_dev: Use skb_reset_network_header().
[mirror_ubuntu-artful-kernel.git] / net / sched / act_gact.c
CommitLineData
1da177e4
LT
1/*
2 * net/sched/gact.c Generic actions
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
13#include <asm/uaccess.h>
14#include <asm/system.h>
15#include <linux/bitops.h>
1da177e4
LT
16#include <linux/types.h>
17#include <linux/kernel.h>
1da177e4
LT
18#include <linux/string.h>
19#include <linux/mm.h>
20#include <linux/socket.h>
21#include <linux/sockios.h>
22#include <linux/in.h>
23#include <linux/errno.h>
24#include <linux/interrupt.h>
25#include <linux/netdevice.h>
26#include <linux/skbuff.h>
27#include <linux/rtnetlink.h>
28#include <linux/module.h>
29#include <linux/init.h>
30#include <linux/proc_fs.h>
31#include <net/sock.h>
32#include <net/pkt_sched.h>
33#include <linux/tc_act/tc_gact.h>
34#include <net/tc_act/tc_gact.h>
35
e9ce1cd3
DM
36#define GACT_TAB_MASK 15
37static struct tcf_common *tcf_gact_ht[GACT_TAB_MASK + 1];
38static u32 gact_idx_gen;
1da177e4
LT
39static DEFINE_RWLOCK(gact_lock);
40
e9ce1cd3
DM
41static struct tcf_hashinfo gact_hash_info = {
42 .htab = tcf_gact_ht,
43 .hmask = GACT_TAB_MASK,
44 .lock = &gact_lock,
45};
1da177e4
LT
46
47#ifdef CONFIG_GACT_PROB
e9ce1cd3 48static int gact_net_rand(struct tcf_gact *gact)
1da177e4 49{
a163148c 50 if (!gact->tcfg_pval || net_random() % gact->tcfg_pval)
e9ce1cd3
DM
51 return gact->tcf_action;
52 return gact->tcfg_paction;
1da177e4
LT
53}
54
e9ce1cd3 55static int gact_determ(struct tcf_gact *gact)
1da177e4 56{
a163148c 57 if (!gact->tcfg_pval || gact->tcf_bstats.packets % gact->tcfg_pval)
e9ce1cd3
DM
58 return gact->tcf_action;
59 return gact->tcfg_paction;
1da177e4
LT
60}
61
e9ce1cd3 62typedef int (*g_rand)(struct tcf_gact *gact);
1da177e4 63static g_rand gact_rand[MAX_RAND]= { NULL, gact_net_rand, gact_determ };
e9ce1cd3 64#endif /* CONFIG_GACT_PROB */
1da177e4
LT
65
66static int tcf_gact_init(struct rtattr *rta, struct rtattr *est,
10297b99 67 struct tc_action *a, int ovr, int bind)
1da177e4
LT
68{
69 struct rtattr *tb[TCA_GACT_MAX];
70 struct tc_gact *parm;
e9ce1cd3
DM
71 struct tcf_gact *gact;
72 struct tcf_common *pc;
1da177e4
LT
73 int ret = 0;
74
75 if (rta == NULL || rtattr_parse_nested(tb, TCA_GACT_MAX, rta) < 0)
76 return -EINVAL;
77
78 if (tb[TCA_GACT_PARMS - 1] == NULL ||
79 RTA_PAYLOAD(tb[TCA_GACT_PARMS - 1]) < sizeof(*parm))
80 return -EINVAL;
81 parm = RTA_DATA(tb[TCA_GACT_PARMS - 1]);
82
83 if (tb[TCA_GACT_PROB-1] != NULL)
84#ifdef CONFIG_GACT_PROB
85 if (RTA_PAYLOAD(tb[TCA_GACT_PROB-1]) < sizeof(struct tc_gact_p))
86 return -EINVAL;
87#else
88 return -EOPNOTSUPP;
89#endif
90
e9ce1cd3
DM
91 pc = tcf_hash_check(parm->index, a, bind, &gact_hash_info);
92 if (!pc) {
93 pc = tcf_hash_create(parm->index, est, a, sizeof(*gact),
94 bind, &gact_idx_gen, &gact_hash_info);
95 if (unlikely(!pc))
1da177e4
LT
96 return -ENOMEM;
97 ret = ACT_P_CREATED;
98 } else {
99 if (!ovr) {
e9ce1cd3 100 tcf_hash_release(pc, bind, &gact_hash_info);
1da177e4
LT
101 return -EEXIST;
102 }
103 }
104
e9ce1cd3
DM
105 gact = to_gact(pc);
106
107 spin_lock_bh(&gact->tcf_lock);
108 gact->tcf_action = parm->action;
1da177e4
LT
109#ifdef CONFIG_GACT_PROB
110 if (tb[TCA_GACT_PROB-1] != NULL) {
111 struct tc_gact_p *p_parm = RTA_DATA(tb[TCA_GACT_PROB-1]);
e9ce1cd3
DM
112 gact->tcfg_paction = p_parm->paction;
113 gact->tcfg_pval = p_parm->pval;
114 gact->tcfg_ptype = p_parm->ptype;
1da177e4
LT
115 }
116#endif
e9ce1cd3 117 spin_unlock_bh(&gact->tcf_lock);
1da177e4 118 if (ret == ACT_P_CREATED)
e9ce1cd3 119 tcf_hash_insert(pc, &gact_hash_info);
1da177e4
LT
120 return ret;
121}
122
e9ce1cd3 123static int tcf_gact_cleanup(struct tc_action *a, int bind)
1da177e4 124{
e9ce1cd3 125 struct tcf_gact *gact = a->priv;
1da177e4 126
e9ce1cd3
DM
127 if (gact)
128 return tcf_hash_release(&gact->common, bind, &gact_hash_info);
1da177e4
LT
129 return 0;
130}
131
e9ce1cd3 132static int tcf_gact(struct sk_buff *skb, struct tc_action *a, struct tcf_result *res)
1da177e4 133{
e9ce1cd3 134 struct tcf_gact *gact = a->priv;
1da177e4
LT
135 int action = TC_ACT_SHOT;
136
e9ce1cd3 137 spin_lock(&gact->tcf_lock);
1da177e4 138#ifdef CONFIG_GACT_PROB
e9ce1cd3
DM
139 if (gact->tcfg_ptype && gact_rand[gact->tcfg_ptype] != NULL)
140 action = gact_rand[gact->tcfg_ptype](gact);
1da177e4 141 else
e9ce1cd3 142 action = gact->tcf_action;
1da177e4 143#else
e9ce1cd3 144 action = gact->tcf_action;
1da177e4 145#endif
e9ce1cd3
DM
146 gact->tcf_bstats.bytes += skb->len;
147 gact->tcf_bstats.packets++;
1da177e4 148 if (action == TC_ACT_SHOT)
e9ce1cd3
DM
149 gact->tcf_qstats.drops++;
150 gact->tcf_tm.lastuse = jiffies;
151 spin_unlock(&gact->tcf_lock);
1da177e4
LT
152
153 return action;
154}
155
e9ce1cd3 156static int tcf_gact_dump(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
1da177e4
LT
157{
158 unsigned char *b = skb->tail;
159 struct tc_gact opt;
e9ce1cd3 160 struct tcf_gact *gact = a->priv;
1da177e4
LT
161 struct tcf_t t;
162
e9ce1cd3
DM
163 opt.index = gact->tcf_index;
164 opt.refcnt = gact->tcf_refcnt - ref;
165 opt.bindcnt = gact->tcf_bindcnt - bind;
166 opt.action = gact->tcf_action;
1da177e4
LT
167 RTA_PUT(skb, TCA_GACT_PARMS, sizeof(opt), &opt);
168#ifdef CONFIG_GACT_PROB
e9ce1cd3 169 if (gact->tcfg_ptype) {
1da177e4 170 struct tc_gact_p p_opt;
e9ce1cd3
DM
171 p_opt.paction = gact->tcfg_paction;
172 p_opt.pval = gact->tcfg_pval;
173 p_opt.ptype = gact->tcfg_ptype;
1da177e4
LT
174 RTA_PUT(skb, TCA_GACT_PROB, sizeof(p_opt), &p_opt);
175 }
176#endif
e9ce1cd3
DM
177 t.install = jiffies_to_clock_t(jiffies - gact->tcf_tm.install);
178 t.lastuse = jiffies_to_clock_t(jiffies - gact->tcf_tm.lastuse);
179 t.expires = jiffies_to_clock_t(gact->tcf_tm.expires);
1da177e4
LT
180 RTA_PUT(skb, TCA_GACT_TM, sizeof(t), &t);
181 return skb->len;
182
e9ce1cd3 183rtattr_failure:
1da177e4
LT
184 skb_trim(skb, b - skb->data);
185 return -1;
186}
187
188static struct tc_action_ops act_gact_ops = {
189 .kind = "gact",
e9ce1cd3 190 .hinfo = &gact_hash_info,
1da177e4
LT
191 .type = TCA_ACT_GACT,
192 .capab = TCA_CAP_NONE,
193 .owner = THIS_MODULE,
194 .act = tcf_gact,
195 .dump = tcf_gact_dump,
196 .cleanup = tcf_gact_cleanup,
197 .lookup = tcf_hash_search,
198 .init = tcf_gact_init,
199 .walk = tcf_generic_walker
200};
201
202MODULE_AUTHOR("Jamal Hadi Salim(2002-4)");
203MODULE_DESCRIPTION("Generic Classifier actions");
204MODULE_LICENSE("GPL");
205
e9ce1cd3 206static int __init gact_init_module(void)
1da177e4
LT
207{
208#ifdef CONFIG_GACT_PROB
209 printk("GACT probability on\n");
210#else
211 printk("GACT probability NOT on\n");
212#endif
213 return tcf_register_action(&act_gact_ops);
214}
215
e9ce1cd3 216static void __exit gact_cleanup_module(void)
1da177e4
LT
217{
218 tcf_unregister_action(&act_gact_ops);
219}
220
221module_init(gact_init_module);
222module_exit(gact_cleanup_module);