initial commit with v2.6.9
[linux-2.6.9-moxart.git] / net / sched / sch_ingress.c
blob13b5c3414794b0210ba1dfb29a202806c45c858e
1 /* net/sched/sch_ingress.c - Ingress qdisc
2 * This program is free software; you can redistribute it and/or
3 * modify it under the terms of the GNU General Public License
4 * as published by the Free Software Foundation; either version
5 * 2 of the License, or (at your option) any later version.
7 * Authors: Jamal Hadi Salim 1999
8 */
10 #include <linux/config.h>
11 #include <linux/module.h>
12 #include <linux/types.h>
13 #include <linux/skbuff.h>
14 #include <linux/netdevice.h>
15 #include <linux/rtnetlink.h>
16 #include <linux/netfilter_ipv4.h>
17 #include <linux/netfilter.h>
18 #include <linux/smp.h>
19 #include <net/pkt_sched.h>
20 #include <asm/byteorder.h>
21 #include <asm/uaccess.h>
22 #include <linux/kmod.h>
23 #include <linux/stat.h>
24 #include <linux/interrupt.h>
25 #include <linux/list.h>
28 #undef DEBUG_INGRESS
30 #ifdef DEBUG_INGRESS /* control */
31 #define DPRINTK(format,args...) printk(KERN_DEBUG format,##args)
32 #else
33 #define DPRINTK(format,args...)
34 #endif
36 #if 0 /* data */
37 #define D2PRINTK(format,args...) printk(KERN_DEBUG format,##args)
38 #else
39 #define D2PRINTK(format,args...)
40 #endif
43 #define PRIV(sch) qdisc_priv(sch)
46 /* Thanks to Doron Oz for this hack
48 #ifndef CONFIG_NET_CLS_ACT
49 #ifdef CONFIG_NETFILTER
50 static int nf_registered;
51 #endif
52 #endif
54 struct ingress_qdisc_data {
55 struct Qdisc *q;
56 struct tcf_proto *filter_list;
60 /* ------------------------- Class/flow operations ------------------------- */
63 static int ingress_graft(struct Qdisc *sch,unsigned long arg,
64 struct Qdisc *new,struct Qdisc **old)
66 #ifdef DEBUG_INGRESS
67 struct ingress_qdisc_data *p = PRIV(sch);
68 #endif
70 DPRINTK("ingress_graft(sch %p,[qdisc %p],new %p,old %p)\n",
71 sch, p, new, old);
72 DPRINTK("\n ingress_graft: You cannot add qdiscs to classes");
73 return 1;
77 static struct Qdisc *ingress_leaf(struct Qdisc *sch, unsigned long arg)
79 return NULL;
83 static unsigned long ingress_get(struct Qdisc *sch,u32 classid)
85 #ifdef DEBUG_INGRESS
86 struct ingress_qdisc_data *p = PRIV(sch);
87 #endif
88 DPRINTK("ingress_get(sch %p,[qdisc %p],classid %x)\n", sch, p, classid);
89 return TC_H_MIN(classid) + 1;
93 static unsigned long ingress_bind_filter(struct Qdisc *sch,
94 unsigned long parent, u32 classid)
96 return ingress_get(sch, classid);
100 static void ingress_put(struct Qdisc *sch, unsigned long cl)
105 static int ingress_change(struct Qdisc *sch, u32 classid, u32 parent,
106 struct rtattr **tca, unsigned long *arg)
108 #ifdef DEBUG_INGRESS
109 struct ingress_qdisc_data *p = PRIV(sch);
110 #endif
111 DPRINTK("ingress_change(sch %p,[qdisc %p],classid %x,parent %x),"
112 "arg 0x%lx\n", sch, p, classid, parent, *arg);
113 DPRINTK("No effect. sch_ingress doesn't maintain classes at the moment");
114 return 0;
119 static void ingress_walk(struct Qdisc *sch,struct qdisc_walker *walker)
121 #ifdef DEBUG_INGRESS
122 struct ingress_qdisc_data *p = PRIV(sch);
123 #endif
124 DPRINTK("ingress_walk(sch %p,[qdisc %p],walker %p)\n", sch, p, walker);
125 DPRINTK("No effect. sch_ingress doesn't maintain classes at the moment");
129 static struct tcf_proto **ingress_find_tcf(struct Qdisc *sch,unsigned long cl)
131 struct ingress_qdisc_data *p = PRIV(sch);
133 return &p->filter_list;
137 /* --------------------------- Qdisc operations ---------------------------- */
140 static int ingress_enqueue(struct sk_buff *skb,struct Qdisc *sch)
142 struct ingress_qdisc_data *p = PRIV(sch);
143 struct tcf_result res;
144 int result;
146 D2PRINTK("ingress_enqueue(skb %p,sch %p,[qdisc %p])\n", skb, sch, p);
147 result = tc_classify(skb, p->filter_list, &res);
148 D2PRINTK("result %d class 0x%04x\n", result, res.classid);
150 * Unlike normal "enqueue" functions, ingress_enqueue returns a
151 * firewall FW_* code.
153 #ifdef CONFIG_NET_CLS_ACT
154 sch->stats.packets++;
155 sch->stats.bytes += skb->len;
156 switch (result) {
157 case TC_ACT_SHOT:
158 result = TC_ACT_SHOT;
159 sch->stats.drops++;
160 break;
161 case TC_ACT_STOLEN:
162 case TC_ACT_QUEUED:
163 result = TC_ACT_STOLEN;
164 break;
165 case TC_ACT_RECLASSIFY:
166 case TC_ACT_OK:
167 case TC_ACT_UNSPEC:
168 default:
169 skb->tc_index = TC_H_MIN(res.classid);
170 result = TC_ACT_OK;
171 break;
173 /* backward compat */
174 #else
175 #ifdef CONFIG_NET_CLS_POLICE
176 switch (result) {
177 case TC_POLICE_SHOT:
178 result = NF_DROP;
179 sch->stats.drops++;
180 break;
181 case TC_POLICE_RECLASSIFY: /* DSCP remarking here ? */
182 case TC_POLICE_OK:
183 case TC_POLICE_UNSPEC:
184 default:
185 sch->stats.packets++;
186 sch->stats.bytes += skb->len;
187 result = NF_ACCEPT;
188 break;
191 #else
192 D2PRINTK("Overriding result to ACCEPT\n");
193 result = NF_ACCEPT;
194 sch->stats.packets++;
195 sch->stats.bytes += skb->len;
196 #endif
197 #endif
199 return result;
203 static struct sk_buff *ingress_dequeue(struct Qdisc *sch)
206 struct ingress_qdisc_data *p = PRIV(sch);
207 D2PRINTK("ingress_dequeue(sch %p,[qdisc %p])\n",sch,PRIV(p));
209 return NULL;
213 static int ingress_requeue(struct sk_buff *skb,struct Qdisc *sch)
216 struct ingress_qdisc_data *p = PRIV(sch);
217 D2PRINTK("ingress_requeue(skb %p,sch %p,[qdisc %p])\n",skb,sch,PRIV(p));
219 return 0;
222 static unsigned int ingress_drop(struct Qdisc *sch)
224 #ifdef DEBUG_INGRESS
225 struct ingress_qdisc_data *p = PRIV(sch);
226 #endif
227 DPRINTK("ingress_drop(sch %p,[qdisc %p])\n", sch, p);
228 return 0;
231 #ifndef CONFIG_NET_CLS_ACT
232 #ifdef CONFIG_NETFILTER
233 static unsigned int
234 ing_hook(unsigned int hook, struct sk_buff **pskb,
235 const struct net_device *indev,
236 const struct net_device *outdev,
237 int (*okfn)(struct sk_buff *))
240 struct Qdisc *q;
241 struct sk_buff *skb = *pskb;
242 struct net_device *dev = skb->dev;
243 int fwres=NF_ACCEPT;
245 DPRINTK("ing_hook: skb %s dev=%s len=%u\n",
246 skb->sk ? "(owned)" : "(unowned)",
247 skb->dev ? (*pskb)->dev->name : "(no dev)",
248 skb->len);
251 revisit later: Use a private since lock dev->queue_lock is also
252 used on the egress (might slow things for an iota)
255 if (dev->qdisc_ingress) {
256 spin_lock(&dev->queue_lock);
257 if ((q = dev->qdisc_ingress) != NULL)
258 fwres = q->enqueue(skb, q);
259 spin_unlock(&dev->queue_lock);
262 return fwres;
265 /* after ipt_filter */
266 static struct nf_hook_ops ing_ops = {
267 .hook = ing_hook,
268 .owner = THIS_MODULE,
269 .pf = PF_INET,
270 .hooknum = NF_IP_PRE_ROUTING,
271 .priority = NF_IP_PRI_FILTER + 1,
274 #endif
275 #endif
277 int ingress_init(struct Qdisc *sch,struct rtattr *opt)
279 struct ingress_qdisc_data *p = PRIV(sch);
281 /* Make sure either netfilter or preferably CLS_ACT is
282 * compiled in */
283 #ifndef CONFIG_NET_CLS_ACT
284 #ifndef CONFIG_NETFILTER
285 printk("You MUST compile classifier actions into the kernel\n");
286 return -EINVAL;
287 #else
288 printk("Ingress scheduler: Classifier actions prefered over netfilter\n");
289 #endif
290 #endif
292 #ifndef CONFIG_NET_CLS_ACT
293 #ifdef CONFIG_NETFILTER
294 if (!nf_registered) {
295 if (nf_register_hook(&ing_ops) < 0) {
296 printk("ingress qdisc registration error \n");
297 return -EINVAL;
299 nf_registered++;
301 #endif
302 #endif
304 DPRINTK("ingress_init(sch %p,[qdisc %p],opt %p)\n",sch,p,opt);
305 p->q = &noop_qdisc;
306 return 0;
310 static void ingress_reset(struct Qdisc *sch)
312 struct ingress_qdisc_data *p = PRIV(sch);
314 DPRINTK("ingress_reset(sch %p,[qdisc %p])\n", sch, p);
317 #if 0
319 /* for future use */
320 qdisc_reset(p->q);
322 #endif
326 /* ------------------------------------------------------------- */
329 /* ------------------------------------------------------------- */
331 static void ingress_destroy(struct Qdisc *sch)
333 struct ingress_qdisc_data *p = PRIV(sch);
334 struct tcf_proto *tp;
336 DPRINTK("ingress_destroy(sch %p,[qdisc %p])\n", sch, p);
337 while (p->filter_list) {
338 tp = p->filter_list;
339 p->filter_list = tp->next;
340 tcf_destroy(tp);
342 #if 0
343 /* for future use */
344 qdisc_destroy(p->q);
345 #endif
349 static int ingress_dump(struct Qdisc *sch, struct sk_buff *skb)
351 unsigned char *b = skb->tail;
352 struct rtattr *rta;
354 rta = (struct rtattr *) b;
355 RTA_PUT(skb, TCA_OPTIONS, 0, NULL);
356 rta->rta_len = skb->tail - b;
357 return skb->len;
359 rtattr_failure:
360 skb_trim(skb, b - skb->data);
361 return -1;
364 static struct Qdisc_class_ops ingress_class_ops = {
365 .graft = ingress_graft,
366 .leaf = ingress_leaf,
367 .get = ingress_get,
368 .put = ingress_put,
369 .change = ingress_change,
370 .delete = NULL,
371 .walk = ingress_walk,
372 .tcf_chain = ingress_find_tcf,
373 .bind_tcf = ingress_bind_filter,
374 .unbind_tcf = ingress_put,
375 .dump = NULL,
378 static struct Qdisc_ops ingress_qdisc_ops = {
379 .next = NULL,
380 .cl_ops = &ingress_class_ops,
381 .id = "ingress",
382 .priv_size = sizeof(struct ingress_qdisc_data),
383 .enqueue = ingress_enqueue,
384 .dequeue = ingress_dequeue,
385 .requeue = ingress_requeue,
386 .drop = ingress_drop,
387 .init = ingress_init,
388 .reset = ingress_reset,
389 .destroy = ingress_destroy,
390 .change = NULL,
391 .dump = ingress_dump,
392 .owner = THIS_MODULE,
395 static int __init ingress_module_init(void)
397 int ret = 0;
399 if ((ret = register_qdisc(&ingress_qdisc_ops)) < 0) {
400 printk("Unable to register Ingress qdisc\n");
401 return ret;
404 return ret;
406 static void __exit ingress_module_exit(void)
408 unregister_qdisc(&ingress_qdisc_ops);
409 #ifndef CONFIG_NET_CLS_ACT
410 #ifdef CONFIG_NETFILTER
411 if (nf_registered)
412 nf_unregister_hook(&ing_ops);
413 #endif
414 #endif
416 module_init(ingress_module_init)
417 module_exit(ingress_module_exit)
418 MODULE_LICENSE("GPL");