]> git.ipfire.org Git - thirdparty/linux.git/blame - net/sched/act_mirred.c
[SK_BUFF]: Convert skb->tail to sk_buff_data_t
[thirdparty/linux.git] / net / sched / act_mirred.c
CommitLineData
1da177e4
LT
1/*
2 * net/sched/mirred.c packet mirroring and redirect 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 * Authors: Jamal Hadi Salim (2002-4)
10 *
11 * TODO: Add ingress support (and socket redirect support)
12 *
13 */
14
15#include <asm/uaccess.h>
16#include <asm/system.h>
17#include <asm/bitops.h>
1da177e4
LT
18#include <linux/types.h>
19#include <linux/kernel.h>
1da177e4
LT
20#include <linux/string.h>
21#include <linux/mm.h>
22#include <linux/socket.h>
23#include <linux/sockios.h>
24#include <linux/in.h>
25#include <linux/errno.h>
26#include <linux/interrupt.h>
27#include <linux/netdevice.h>
28#include <linux/skbuff.h>
29#include <linux/rtnetlink.h>
30#include <linux/module.h>
31#include <linux/init.h>
32#include <linux/proc_fs.h>
33#include <net/sock.h>
34#include <net/pkt_sched.h>
35#include <linux/tc_act/tc_mirred.h>
36#include <net/tc_act/tc_mirred.h>
37
38#include <linux/etherdevice.h>
39#include <linux/if_arp.h>
40
e9ce1cd3
DM
41#define MIRRED_TAB_MASK 7
42static struct tcf_common *tcf_mirred_ht[MIRRED_TAB_MASK + 1];
43static u32 mirred_idx_gen;
1da177e4
LT
44static DEFINE_RWLOCK(mirred_lock);
45
e9ce1cd3
DM
46static struct tcf_hashinfo mirred_hash_info = {
47 .htab = tcf_mirred_ht,
48 .hmask = MIRRED_TAB_MASK,
49 .lock = &mirred_lock,
50};
1da177e4 51
e9ce1cd3 52static inline int tcf_mirred_release(struct tcf_mirred *m, int bind)
1da177e4 53{
e9ce1cd3 54 if (m) {
1da177e4 55 if (bind)
e9ce1cd3
DM
56 m->tcf_bindcnt--;
57 m->tcf_refcnt--;
58 if(!m->tcf_bindcnt && m->tcf_refcnt <= 0) {
59 dev_put(m->tcfm_dev);
60 tcf_hash_destroy(&m->common, &mirred_hash_info);
1da177e4
LT
61 return 1;
62 }
63 }
64 return 0;
65}
66
e9ce1cd3
DM
67static int tcf_mirred_init(struct rtattr *rta, struct rtattr *est,
68 struct tc_action *a, int ovr, int bind)
1da177e4
LT
69{
70 struct rtattr *tb[TCA_MIRRED_MAX];
71 struct tc_mirred *parm;
e9ce1cd3
DM
72 struct tcf_mirred *m;
73 struct tcf_common *pc;
1da177e4
LT
74 struct net_device *dev = NULL;
75 int ret = 0;
76 int ok_push = 0;
77
78 if (rta == NULL || rtattr_parse_nested(tb, TCA_MIRRED_MAX, rta) < 0)
79 return -EINVAL;
80
81 if (tb[TCA_MIRRED_PARMS-1] == NULL ||
82 RTA_PAYLOAD(tb[TCA_MIRRED_PARMS-1]) < sizeof(*parm))
83 return -EINVAL;
84 parm = RTA_DATA(tb[TCA_MIRRED_PARMS-1]);
85
86 if (parm->ifindex) {
87 dev = __dev_get_by_index(parm->ifindex);
88 if (dev == NULL)
89 return -ENODEV;
90 switch (dev->type) {
91 case ARPHRD_TUNNEL:
92 case ARPHRD_TUNNEL6:
93 case ARPHRD_SIT:
94 case ARPHRD_IPGRE:
95 case ARPHRD_VOID:
96 case ARPHRD_NONE:
97 ok_push = 0;
98 break;
99 default:
100 ok_push = 1;
101 break;
102 }
103 }
104
e9ce1cd3
DM
105 pc = tcf_hash_check(parm->index, a, bind, &mirred_hash_info);
106 if (!pc) {
1da177e4
LT
107 if (!parm->ifindex)
108 return -EINVAL;
e9ce1cd3
DM
109 pc = tcf_hash_create(parm->index, est, a, sizeof(*m), bind,
110 &mirred_idx_gen, &mirred_hash_info);
111 if (unlikely(!pc))
1da177e4
LT
112 return -ENOMEM;
113 ret = ACT_P_CREATED;
114 } else {
115 if (!ovr) {
e9ce1cd3 116 tcf_mirred_release(to_mirred(pc), bind);
1da177e4
LT
117 return -EEXIST;
118 }
119 }
e9ce1cd3 120 m = to_mirred(pc);
1da177e4 121
e9ce1cd3
DM
122 spin_lock_bh(&m->tcf_lock);
123 m->tcf_action = parm->action;
124 m->tcfm_eaction = parm->eaction;
1da177e4 125 if (parm->ifindex) {
e9ce1cd3 126 m->tcfm_ifindex = parm->ifindex;
1da177e4 127 if (ret != ACT_P_CREATED)
e9ce1cd3
DM
128 dev_put(m->tcfm_dev);
129 m->tcfm_dev = dev;
1da177e4 130 dev_hold(dev);
e9ce1cd3 131 m->tcfm_ok_push = ok_push;
1da177e4 132 }
e9ce1cd3 133 spin_unlock_bh(&m->tcf_lock);
1da177e4 134 if (ret == ACT_P_CREATED)
e9ce1cd3 135 tcf_hash_insert(pc, &mirred_hash_info);
1da177e4 136
1da177e4
LT
137 return ret;
138}
139
e9ce1cd3 140static int tcf_mirred_cleanup(struct tc_action *a, int bind)
1da177e4 141{
e9ce1cd3 142 struct tcf_mirred *m = a->priv;
1da177e4 143
e9ce1cd3
DM
144 if (m)
145 return tcf_mirred_release(m, bind);
1da177e4
LT
146 return 0;
147}
148
e9ce1cd3
DM
149static int tcf_mirred(struct sk_buff *skb, struct tc_action *a,
150 struct tcf_result *res)
1da177e4 151{
e9ce1cd3 152 struct tcf_mirred *m = a->priv;
1da177e4
LT
153 struct net_device *dev;
154 struct sk_buff *skb2 = NULL;
1da177e4
LT
155 u32 at = G_TC_AT(skb->tc_verd);
156
e9ce1cd3 157 spin_lock(&m->tcf_lock);
1da177e4 158
e9ce1cd3
DM
159 dev = m->tcfm_dev;
160 m->tcf_tm.lastuse = jiffies;
1da177e4
LT
161
162 if (!(dev->flags&IFF_UP) ) {
163 if (net_ratelimit())
164 printk("mirred to Houston: device %s is gone!\n",
165 dev->name);
166bad_mirred:
167 if (skb2 != NULL)
168 kfree_skb(skb2);
e9ce1cd3
DM
169 m->tcf_qstats.overlimits++;
170 m->tcf_bstats.bytes += skb->len;
171 m->tcf_bstats.packets++;
172 spin_unlock(&m->tcf_lock);
1da177e4
LT
173 /* should we be asking for packet to be dropped?
174 * may make sense for redirect case only
175 */
176 return TC_ACT_SHOT;
177 }
178
179 skb2 = skb_clone(skb, GFP_ATOMIC);
180 if (skb2 == NULL)
181 goto bad_mirred;
e9ce1cd3
DM
182 if (m->tcfm_eaction != TCA_EGRESS_MIRROR &&
183 m->tcfm_eaction != TCA_EGRESS_REDIR) {
1da177e4 184 if (net_ratelimit())
e9ce1cd3
DM
185 printk("tcf_mirred unknown action %d\n",
186 m->tcfm_eaction);
1da177e4
LT
187 goto bad_mirred;
188 }
189
e9ce1cd3
DM
190 m->tcf_bstats.bytes += skb2->len;
191 m->tcf_bstats.packets++;
1da177e4 192 if (!(at & AT_EGRESS))
e9ce1cd3 193 if (m->tcfm_ok_push)
1da177e4
LT
194 skb_push(skb2, skb2->dev->hard_header_len);
195
196 /* mirror is always swallowed */
e9ce1cd3 197 if (m->tcfm_eaction != TCA_EGRESS_MIRROR)
1da177e4
LT
198 skb2->tc_verd = SET_TC_FROM(skb2->tc_verd, at);
199
200 skb2->dev = dev;
c01003c2 201 skb2->iif = skb->dev->ifindex;
1da177e4 202 dev_queue_xmit(skb2);
e9ce1cd3
DM
203 spin_unlock(&m->tcf_lock);
204 return m->tcf_action;
1da177e4
LT
205}
206
e9ce1cd3 207static int tcf_mirred_dump(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
1da177e4 208{
27a884dc 209 unsigned char *b = skb_tail_pointer(skb);
e9ce1cd3 210 struct tcf_mirred *m = a->priv;
1da177e4 211 struct tc_mirred opt;
1da177e4
LT
212 struct tcf_t t;
213
e9ce1cd3
DM
214 opt.index = m->tcf_index;
215 opt.action = m->tcf_action;
216 opt.refcnt = m->tcf_refcnt - ref;
217 opt.bindcnt = m->tcf_bindcnt - bind;
218 opt.eaction = m->tcfm_eaction;
219 opt.ifindex = m->tcfm_ifindex;
1da177e4 220 RTA_PUT(skb, TCA_MIRRED_PARMS, sizeof(opt), &opt);
e9ce1cd3
DM
221 t.install = jiffies_to_clock_t(jiffies - m->tcf_tm.install);
222 t.lastuse = jiffies_to_clock_t(jiffies - m->tcf_tm.lastuse);
223 t.expires = jiffies_to_clock_t(m->tcf_tm.expires);
1da177e4
LT
224 RTA_PUT(skb, TCA_MIRRED_TM, sizeof(t), &t);
225 return skb->len;
226
e9ce1cd3 227rtattr_failure:
1da177e4
LT
228 skb_trim(skb, b - skb->data);
229 return -1;
230}
231
232static struct tc_action_ops act_mirred_ops = {
233 .kind = "mirred",
e9ce1cd3 234 .hinfo = &mirred_hash_info,
1da177e4
LT
235 .type = TCA_ACT_MIRRED,
236 .capab = TCA_CAP_NONE,
237 .owner = THIS_MODULE,
238 .act = tcf_mirred,
239 .dump = tcf_mirred_dump,
240 .cleanup = tcf_mirred_cleanup,
241 .lookup = tcf_hash_search,
242 .init = tcf_mirred_init,
243 .walk = tcf_generic_walker
244};
245
246MODULE_AUTHOR("Jamal Hadi Salim(2002)");
247MODULE_DESCRIPTION("Device Mirror/redirect actions");
248MODULE_LICENSE("GPL");
249
e9ce1cd3 250static int __init mirred_init_module(void)
1da177e4
LT
251{
252 printk("Mirror/redirect action on\n");
253 return tcf_register_action(&act_mirred_ops);
254}
255
e9ce1cd3 256static void __exit mirred_cleanup_module(void)
1da177e4
LT
257{
258 tcf_unregister_action(&act_mirred_ops);
259}
260
261module_init(mirred_init_module);
262module_exit(mirred_cleanup_module);