2 * net/sched/mirred.c packet mirroring and redirect actions
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.
9 * Authors: Jamal Hadi Salim (2002-4)
11 * TODO: Add ingress support (and socket redirect support)
15 #include <asm/uaccess.h>
16 #include <asm/system.h>
17 #include <asm/bitops.h>
18 #include <linux/types.h>
19 #include <linux/kernel.h>
20 #include <linux/string.h>
22 #include <linux/socket.h>
23 #include <linux/sockios.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>
34 #include <net/pkt_sched.h>
35 #include <linux/tc_act/tc_mirred.h>
36 #include <net/tc_act/tc_mirred.h>
38 #include <linux/etherdevice.h>
39 #include <linux/if_arp.h>
41 #define MIRRED_TAB_MASK 7
42 static struct tcf_common *tcf_mirred_ht[MIRRED_TAB_MASK + 1];
43 static u32 mirred_idx_gen;
44 static DEFINE_RWLOCK(mirred_lock);
46 static struct tcf_hashinfo mirred_hash_info = {
47 .htab = tcf_mirred_ht,
48 .hmask = MIRRED_TAB_MASK,
52 static inline int tcf_mirred_release(struct tcf_mirred *m, int bind)
58 if(!m->tcf_bindcnt && m->tcf_refcnt <= 0) {
60 tcf_hash_destroy(&m->common, &mirred_hash_info);
67 static int tcf_mirred_init(struct rtattr *rta, struct rtattr *est,
68 struct tc_action *a, int ovr, int bind)
70 struct rtattr *tb[TCA_MIRRED_MAX];
71 struct tc_mirred *parm;
73 struct tcf_common *pc;
74 struct net_device *dev = NULL;
78 if (rta == NULL || rtattr_parse_nested(tb, TCA_MIRRED_MAX, rta) < 0)
81 if (tb[TCA_MIRRED_PARMS-1] == NULL ||
82 RTA_PAYLOAD(tb[TCA_MIRRED_PARMS-1]) < sizeof(*parm))
84 parm = RTA_DATA(tb[TCA_MIRRED_PARMS-1]);
87 dev = __dev_get_by_index(parm->ifindex);
105 pc = tcf_hash_check(parm->index, a, bind, &mirred_hash_info);
109 pc = tcf_hash_create(parm->index, est, a, sizeof(*m), bind,
110 &mirred_idx_gen, &mirred_hash_info);
116 tcf_mirred_release(to_mirred(pc), bind);
122 spin_lock_bh(&m->tcf_lock);
123 m->tcf_action = parm->action;
124 m->tcfm_eaction = parm->eaction;
126 m->tcfm_ifindex = parm->ifindex;
127 if (ret != ACT_P_CREATED)
128 dev_put(m->tcfm_dev);
131 m->tcfm_ok_push = ok_push;
133 spin_unlock_bh(&m->tcf_lock);
134 if (ret == ACT_P_CREATED)
135 tcf_hash_insert(pc, &mirred_hash_info);
140 static int tcf_mirred_cleanup(struct tc_action *a, int bind)
142 struct tcf_mirred *m = a->priv;
145 return tcf_mirred_release(m, bind);
149 static int tcf_mirred(struct sk_buff *skb, struct tc_action *a,
150 struct tcf_result *res)
152 struct tcf_mirred *m = a->priv;
153 struct net_device *dev;
154 struct sk_buff *skb2 = NULL;
155 u32 at = G_TC_AT(skb->tc_verd);
157 spin_lock(&m->tcf_lock);
160 m->tcf_tm.lastuse = jiffies;
162 if (!(dev->flags&IFF_UP) ) {
164 printk("mirred to Houston: device %s is gone!\n",
169 m->tcf_qstats.overlimits++;
170 m->tcf_bstats.bytes += skb->len;
171 m->tcf_bstats.packets++;
172 spin_unlock(&m->tcf_lock);
173 /* should we be asking for packet to be dropped?
174 * may make sense for redirect case only
179 skb2 = skb_clone(skb, GFP_ATOMIC);
182 if (m->tcfm_eaction != TCA_EGRESS_MIRROR &&
183 m->tcfm_eaction != TCA_EGRESS_REDIR) {
185 printk("tcf_mirred unknown action %d\n",
190 m->tcf_bstats.bytes += skb2->len;
191 m->tcf_bstats.packets++;
192 if (!(at & AT_EGRESS))
194 skb_push(skb2, skb2->dev->hard_header_len);
196 /* mirror is always swallowed */
197 if (m->tcfm_eaction != TCA_EGRESS_MIRROR)
198 skb2->tc_verd = SET_TC_FROM(skb2->tc_verd, at);
201 skb2->input_dev = skb->dev;
202 dev_queue_xmit(skb2);
203 spin_unlock(&m->tcf_lock);
204 return m->tcf_action;
207 static int tcf_mirred_dump(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
209 unsigned char *b = skb->tail;
210 struct tcf_mirred *m = a->priv;
211 struct tc_mirred opt;
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;
220 RTA_PUT(skb, TCA_MIRRED_PARMS, sizeof(opt), &opt);
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);
224 RTA_PUT(skb, TCA_MIRRED_TM, sizeof(t), &t);
228 skb_trim(skb, b - skb->data);
232 static struct tc_action_ops act_mirred_ops = {
234 .hinfo = &mirred_hash_info,
235 .type = TCA_ACT_MIRRED,
236 .capab = TCA_CAP_NONE,
237 .owner = THIS_MODULE,
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
246 MODULE_AUTHOR("Jamal Hadi Salim(2002)");
247 MODULE_DESCRIPTION("Device Mirror/redirect actions");
248 MODULE_LICENSE("GPL");
250 static int __init mirred_init_module(void)
252 printk("Mirror/redirect action on\n");
253 return tcf_register_action(&act_mirred_ops);
256 static void __exit mirred_cleanup_module(void)
258 tcf_unregister_action(&act_mirred_ops);
261 module_init(mirred_init_module);
262 module_exit(mirred_cleanup_module);