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/sched.h>
21 #include <linux/string.h>
23 #include <linux/socket.h>
24 #include <linux/sockios.h>
26 #include <linux/errno.h>
27 #include <linux/interrupt.h>
28 #include <linux/netdevice.h>
29 #include <linux/skbuff.h>
30 #include <linux/rtnetlink.h>
31 #include <linux/module.h>
32 #include <linux/init.h>
33 #include <linux/proc_fs.h>
35 #include <net/pkt_sched.h>
36 #include <linux/tc_act/tc_mirred.h>
37 #include <net/tc_act/tc_mirred.h>
39 #include <linux/etherdevice.h>
40 #include <linux/if_arp.h>
42 #define MIRRED_TAB_MASK 7
43 static struct tcf_common
*tcf_mirred_ht
[MIRRED_TAB_MASK
+ 1];
44 static u32 mirred_idx_gen
;
45 static DEFINE_RWLOCK(mirred_lock
);
47 static struct tcf_hashinfo mirred_hash_info
= {
48 .htab
= tcf_mirred_ht
,
49 .hmask
= MIRRED_TAB_MASK
,
53 static inline int tcf_mirred_release(struct tcf_mirred
*m
, int bind
)
59 if(!m
->tcf_bindcnt
&& m
->tcf_refcnt
<= 0) {
61 tcf_hash_destroy(&m
->common
, &mirred_hash_info
);
68 static int tcf_mirred_init(struct rtattr
*rta
, struct rtattr
*est
,
69 struct tc_action
*a
, int ovr
, int bind
)
71 struct rtattr
*tb
[TCA_MIRRED_MAX
];
72 struct tc_mirred
*parm
;
74 struct tcf_common
*pc
;
75 struct net_device
*dev
= NULL
;
79 if (rta
== NULL
|| rtattr_parse_nested(tb
, TCA_MIRRED_MAX
, rta
) < 0)
82 if (tb
[TCA_MIRRED_PARMS
-1] == NULL
||
83 RTA_PAYLOAD(tb
[TCA_MIRRED_PARMS
-1]) < sizeof(*parm
))
85 parm
= RTA_DATA(tb
[TCA_MIRRED_PARMS
-1]);
88 dev
= __dev_get_by_index(parm
->ifindex
);
106 pc
= tcf_hash_check(parm
->index
, a
, bind
, &mirred_hash_info
);
110 pc
= tcf_hash_create(parm
->index
, est
, a
, sizeof(*m
), bind
,
111 &mirred_idx_gen
, &mirred_hash_info
);
117 tcf_mirred_release(to_mirred(pc
), bind
);
123 spin_lock_bh(&m
->tcf_lock
);
124 m
->tcf_action
= parm
->action
;
125 m
->tcfm_eaction
= parm
->eaction
;
127 m
->tcfm_ifindex
= parm
->ifindex
;
128 if (ret
!= ACT_P_CREATED
)
129 dev_put(m
->tcfm_dev
);
132 m
->tcfm_ok_push
= ok_push
;
134 spin_unlock_bh(&m
->tcf_lock
);
135 if (ret
== ACT_P_CREATED
)
136 tcf_hash_insert(pc
, &mirred_hash_info
);
141 static int tcf_mirred_cleanup(struct tc_action
*a
, int bind
)
143 struct tcf_mirred
*m
= a
->priv
;
146 return tcf_mirred_release(m
, bind
);
150 static int tcf_mirred(struct sk_buff
*skb
, struct tc_action
*a
,
151 struct tcf_result
*res
)
153 struct tcf_mirred
*m
= a
->priv
;
154 struct net_device
*dev
;
155 struct sk_buff
*skb2
= NULL
;
156 u32 at
= G_TC_AT(skb
->tc_verd
);
158 spin_lock(&m
->tcf_lock
);
161 m
->tcf_tm
.lastuse
= jiffies
;
163 if (!(dev
->flags
&IFF_UP
) ) {
165 printk("mirred to Houston: device %s is gone!\n",
170 m
->tcf_qstats
.overlimits
++;
171 m
->tcf_bstats
.bytes
+= skb
->len
;
172 m
->tcf_bstats
.packets
++;
173 spin_unlock(&m
->tcf_lock
);
174 /* should we be asking for packet to be dropped?
175 * may make sense for redirect case only
180 skb2
= skb_clone(skb
, GFP_ATOMIC
);
183 if (m
->tcfm_eaction
!= TCA_EGRESS_MIRROR
&&
184 m
->tcfm_eaction
!= TCA_EGRESS_REDIR
) {
186 printk("tcf_mirred unknown action %d\n",
191 m
->tcf_bstats
.bytes
+= skb2
->len
;
192 m
->tcf_bstats
.packets
++;
193 if (!(at
& AT_EGRESS
))
195 skb_push(skb2
, skb2
->dev
->hard_header_len
);
197 /* mirror is always swallowed */
198 if (m
->tcfm_eaction
!= TCA_EGRESS_MIRROR
)
199 skb2
->tc_verd
= SET_TC_FROM(skb2
->tc_verd
, at
);
202 skb2
->input_dev
= skb
->dev
;
203 dev_queue_xmit(skb2
);
204 spin_unlock(&m
->tcf_lock
);
205 return m
->tcf_action
;
208 static int tcf_mirred_dump(struct sk_buff
*skb
, struct tc_action
*a
, int bind
, int ref
)
210 unsigned char *b
= skb
->tail
;
211 struct tcf_mirred
*m
= a
->priv
;
212 struct tc_mirred opt
;
215 opt
.index
= m
->tcf_index
;
216 opt
.action
= m
->tcf_action
;
217 opt
.refcnt
= m
->tcf_refcnt
- ref
;
218 opt
.bindcnt
= m
->tcf_bindcnt
- bind
;
219 opt
.eaction
= m
->tcfm_eaction
;
220 opt
.ifindex
= m
->tcfm_ifindex
;
221 RTA_PUT(skb
, TCA_MIRRED_PARMS
, sizeof(opt
), &opt
);
222 t
.install
= jiffies_to_clock_t(jiffies
- m
->tcf_tm
.install
);
223 t
.lastuse
= jiffies_to_clock_t(jiffies
- m
->tcf_tm
.lastuse
);
224 t
.expires
= jiffies_to_clock_t(m
->tcf_tm
.expires
);
225 RTA_PUT(skb
, TCA_MIRRED_TM
, sizeof(t
), &t
);
229 skb_trim(skb
, b
- skb
->data
);
233 static struct tc_action_ops act_mirred_ops
= {
235 .hinfo
= &mirred_hash_info
,
236 .type
= TCA_ACT_MIRRED
,
237 .capab
= TCA_CAP_NONE
,
238 .owner
= THIS_MODULE
,
240 .dump
= tcf_mirred_dump
,
241 .cleanup
= tcf_mirred_cleanup
,
242 .lookup
= tcf_hash_search
,
243 .init
= tcf_mirred_init
,
244 .walk
= tcf_generic_walker
247 MODULE_AUTHOR("Jamal Hadi Salim(2002)");
248 MODULE_DESCRIPTION("Device Mirror/redirect actions");
249 MODULE_LICENSE("GPL");
251 static int __init
mirred_init_module(void)
253 printk("Mirror/redirect action on\n");
254 return tcf_register_action(&act_mirred_ops
);
257 static void __exit
mirred_cleanup_module(void)
259 tcf_unregister_action(&act_mirred_ops
);
262 module_init(mirred_init_module
);
263 module_exit(mirred_cleanup_module
);