]> Pileus Git - ~andy/linux/blob - net/sched/act_mirred.c
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec...
[~andy/linux] / net / sched / act_mirred.c
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 <linux/types.h>
16 #include <linux/kernel.h>
17 #include <linux/string.h>
18 #include <linux/errno.h>
19 #include <linux/skbuff.h>
20 #include <linux/rtnetlink.h>
21 #include <linux/module.h>
22 #include <linux/init.h>
23 #include <linux/gfp.h>
24 #include <net/net_namespace.h>
25 #include <net/netlink.h>
26 #include <net/pkt_sched.h>
27 #include <linux/tc_act/tc_mirred.h>
28 #include <net/tc_act/tc_mirred.h>
29
30 #include <linux/if_arp.h>
31
32 #define MIRRED_TAB_MASK     7
33 static LIST_HEAD(mirred_list);
34 static struct tcf_hashinfo mirred_hash_info;
35
36 static int tcf_mirred_release(struct tcf_mirred *m, int bind)
37 {
38         if (m) {
39                 if (bind)
40                         m->tcf_bindcnt--;
41                 m->tcf_refcnt--;
42                 if (!m->tcf_bindcnt && m->tcf_refcnt <= 0) {
43                         list_del(&m->tcfm_list);
44                         if (m->tcfm_dev)
45                                 dev_put(m->tcfm_dev);
46                         tcf_hash_destroy(&m->common, &mirred_hash_info);
47                         return 1;
48                 }
49         }
50         return 0;
51 }
52
53 static const struct nla_policy mirred_policy[TCA_MIRRED_MAX + 1] = {
54         [TCA_MIRRED_PARMS]      = { .len = sizeof(struct tc_mirred) },
55 };
56
57 static int tcf_mirred_init(struct net *net, struct nlattr *nla,
58                            struct nlattr *est, struct tc_action *a, int ovr,
59                            int bind)
60 {
61         struct nlattr *tb[TCA_MIRRED_MAX + 1];
62         struct tc_mirred *parm;
63         struct tcf_mirred *m;
64         struct tcf_common *pc;
65         struct net_device *dev;
66         int ret, ok_push = 0;
67
68         if (nla == NULL)
69                 return -EINVAL;
70         ret = nla_parse_nested(tb, TCA_MIRRED_MAX, nla, mirred_policy);
71         if (ret < 0)
72                 return ret;
73         if (tb[TCA_MIRRED_PARMS] == NULL)
74                 return -EINVAL;
75         parm = nla_data(tb[TCA_MIRRED_PARMS]);
76         switch (parm->eaction) {
77         case TCA_EGRESS_MIRROR:
78         case TCA_EGRESS_REDIR:
79                 break;
80         default:
81                 return -EINVAL;
82         }
83         if (parm->ifindex) {
84                 dev = __dev_get_by_index(net, parm->ifindex);
85                 if (dev == NULL)
86                         return -ENODEV;
87                 switch (dev->type) {
88                 case ARPHRD_TUNNEL:
89                 case ARPHRD_TUNNEL6:
90                 case ARPHRD_SIT:
91                 case ARPHRD_IPGRE:
92                 case ARPHRD_VOID:
93                 case ARPHRD_NONE:
94                         ok_push = 0;
95                         break;
96                 default:
97                         ok_push = 1;
98                         break;
99                 }
100         } else {
101                 dev = NULL;
102         }
103
104         pc = tcf_hash_check(parm->index, a, bind, &mirred_hash_info);
105         if (!pc) {
106                 if (dev == NULL)
107                         return -EINVAL;
108                 pc = tcf_hash_create(parm->index, est, a, sizeof(*m), bind,
109                                      &mirred_hash_info);
110                 if (IS_ERR(pc))
111                         return PTR_ERR(pc);
112                 ret = ACT_P_CREATED;
113         } else {
114                 if (!ovr) {
115                         tcf_mirred_release(to_mirred(pc), bind);
116                         return -EEXIST;
117                 }
118         }
119         m = to_mirred(pc);
120
121         spin_lock_bh(&m->tcf_lock);
122         m->tcf_action = parm->action;
123         m->tcfm_eaction = parm->eaction;
124         if (dev != NULL) {
125                 m->tcfm_ifindex = parm->ifindex;
126                 if (ret != ACT_P_CREATED)
127                         dev_put(m->tcfm_dev);
128                 dev_hold(dev);
129                 m->tcfm_dev = dev;
130                 m->tcfm_ok_push = ok_push;
131         }
132         spin_unlock_bh(&m->tcf_lock);
133         if (ret == ACT_P_CREATED) {
134                 list_add(&m->tcfm_list, &mirred_list);
135                 tcf_hash_insert(pc, &mirred_hash_info);
136         }
137
138         return ret;
139 }
140
141 static int tcf_mirred_cleanup(struct tc_action *a, int bind)
142 {
143         struct tcf_mirred *m = a->priv;
144
145         if (m)
146                 return tcf_mirred_release(m, bind);
147         return 0;
148 }
149
150 static int tcf_mirred(struct sk_buff *skb, const struct tc_action *a,
151                       struct tcf_result *res)
152 {
153         struct tcf_mirred *m = a->priv;
154         struct net_device *dev;
155         struct sk_buff *skb2;
156         u32 at;
157         int retval, err = 1;
158
159         spin_lock(&m->tcf_lock);
160         m->tcf_tm.lastuse = jiffies;
161         bstats_update(&m->tcf_bstats, skb);
162
163         dev = m->tcfm_dev;
164         if (!dev) {
165                 printk_once(KERN_NOTICE "tc mirred: target device is gone\n");
166                 goto out;
167         }
168
169         if (!(dev->flags & IFF_UP)) {
170                 net_notice_ratelimited("tc mirred to Houston: device %s is down\n",
171                                        dev->name);
172                 goto out;
173         }
174
175         at = G_TC_AT(skb->tc_verd);
176         skb2 = skb_act_clone(skb, GFP_ATOMIC, m->tcf_action);
177         if (skb2 == NULL)
178                 goto out;
179
180         if (!(at & AT_EGRESS)) {
181                 if (m->tcfm_ok_push)
182                         skb_push(skb2, skb2->dev->hard_header_len);
183         }
184
185         /* mirror is always swallowed */
186         if (m->tcfm_eaction != TCA_EGRESS_MIRROR)
187                 skb2->tc_verd = SET_TC_FROM(skb2->tc_verd, at);
188
189         skb2->skb_iif = skb->dev->ifindex;
190         skb2->dev = dev;
191         err = dev_queue_xmit(skb2);
192
193 out:
194         if (err) {
195                 m->tcf_qstats.overlimits++;
196                 if (m->tcfm_eaction != TCA_EGRESS_MIRROR)
197                         retval = TC_ACT_SHOT;
198                 else
199                         retval = m->tcf_action;
200         } else
201                 retval = m->tcf_action;
202         spin_unlock(&m->tcf_lock);
203
204         return retval;
205 }
206
207 static int tcf_mirred_dump(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
208 {
209         unsigned char *b = skb_tail_pointer(skb);
210         struct tcf_mirred *m = a->priv;
211         struct tc_mirred opt = {
212                 .index   = m->tcf_index,
213                 .action  = m->tcf_action,
214                 .refcnt  = m->tcf_refcnt - ref,
215                 .bindcnt = m->tcf_bindcnt - bind,
216                 .eaction = m->tcfm_eaction,
217                 .ifindex = m->tcfm_ifindex,
218         };
219         struct tcf_t t;
220
221         if (nla_put(skb, TCA_MIRRED_PARMS, sizeof(opt), &opt))
222                 goto nla_put_failure;
223         t.install = jiffies_to_clock_t(jiffies - m->tcf_tm.install);
224         t.lastuse = jiffies_to_clock_t(jiffies - m->tcf_tm.lastuse);
225         t.expires = jiffies_to_clock_t(m->tcf_tm.expires);
226         if (nla_put(skb, TCA_MIRRED_TM, sizeof(t), &t))
227                 goto nla_put_failure;
228         return skb->len;
229
230 nla_put_failure:
231         nlmsg_trim(skb, b);
232         return -1;
233 }
234
235 static int mirred_device_event(struct notifier_block *unused,
236                                unsigned long event, void *ptr)
237 {
238         struct net_device *dev = netdev_notifier_info_to_dev(ptr);
239         struct tcf_mirred *m;
240
241         if (event == NETDEV_UNREGISTER)
242                 list_for_each_entry(m, &mirred_list, tcfm_list) {
243                         if (m->tcfm_dev == dev) {
244                                 dev_put(dev);
245                                 m->tcfm_dev = NULL;
246                         }
247                 }
248
249         return NOTIFY_DONE;
250 }
251
252 static struct notifier_block mirred_device_notifier = {
253         .notifier_call = mirred_device_event,
254 };
255
256 static struct tc_action_ops act_mirred_ops = {
257         .kind           =       "mirred",
258         .hinfo          =       &mirred_hash_info,
259         .type           =       TCA_ACT_MIRRED,
260         .capab          =       TCA_CAP_NONE,
261         .owner          =       THIS_MODULE,
262         .act            =       tcf_mirred,
263         .dump           =       tcf_mirred_dump,
264         .cleanup        =       tcf_mirred_cleanup,
265         .init           =       tcf_mirred_init,
266 };
267
268 MODULE_AUTHOR("Jamal Hadi Salim(2002)");
269 MODULE_DESCRIPTION("Device Mirror/redirect actions");
270 MODULE_LICENSE("GPL");
271
272 static int __init mirred_init_module(void)
273 {
274         int err = register_netdevice_notifier(&mirred_device_notifier);
275         if (err)
276                 return err;
277
278         err = tcf_hashinfo_init(&mirred_hash_info, MIRRED_TAB_MASK);
279         if (err) {
280                 unregister_netdevice_notifier(&mirred_device_notifier);
281                 return err;
282         }
283         pr_info("Mirror/redirect action on\n");
284         return tcf_register_action(&act_mirred_ops);
285 }
286
287 static void __exit mirred_cleanup_module(void)
288 {
289         tcf_unregister_action(&act_mirred_ops);
290         tcf_hashinfo_destroy(&mirred_hash_info);
291         unregister_netdevice_notifier(&mirred_device_notifier);
292 }
293
294 module_init(mirred_init_module);
295 module_exit(mirred_cleanup_module);