blob: a9e646bdb605138ce8d5ec1435c8acb36c1c4667 [file] [log] [blame]
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +09001/* net/sched/sch_ingress.c - Ingress qdisc
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * 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.
6 *
7 * Authors: Jamal Hadi Salim 1999
8 */
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/module.h>
11#include <linux/types.h>
Patrick McHardy0ba48052007-07-02 22:49:07 -070012#include <linux/list.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/rtnetlink.h>
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070015#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <net/pkt_sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019struct ingress_qdisc_data {
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 struct tcf_proto *filter_list;
21};
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023/* ------------------------- Class/flow operations ------------------------- */
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025static struct Qdisc *ingress_leaf(struct Qdisc *sch, unsigned long arg)
26{
27 return NULL;
28}
29
Patrick McHardy58f4df42008-01-21 00:11:01 -080030static unsigned long ingress_get(struct Qdisc *sch, u32 classid)
Linus Torvalds1da177e2005-04-16 15:20:36 -070031{
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 return TC_H_MIN(classid) + 1;
33}
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035static unsigned long ingress_bind_filter(struct Qdisc *sch,
Patrick McHardy58f4df42008-01-21 00:11:01 -080036 unsigned long parent, u32 classid)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037{
38 return ingress_get(sch, classid);
39}
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041static void ingress_put(struct Qdisc *sch, unsigned long cl)
42{
43}
44
Patrick McHardy58f4df42008-01-21 00:11:01 -080045static void ingress_walk(struct Qdisc *sch, struct qdisc_walker *walker)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
Patrick McHardya4781222008-01-21 00:11:21 -080047 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048}
49
Patrick McHardy58f4df42008-01-21 00:11:01 -080050static struct tcf_proto **ingress_find_tcf(struct Qdisc *sch, unsigned long cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
Patrick McHardycb53c042008-01-21 00:11:48 -080052 struct ingress_qdisc_data *p = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54 return &p->filter_list;
55}
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057/* --------------------------- Qdisc operations ---------------------------- */
58
Patrick McHardy58f4df42008-01-21 00:11:01 -080059static int ingress_enqueue(struct sk_buff *skb, struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060{
Patrick McHardycb53c042008-01-21 00:11:48 -080061 struct ingress_qdisc_data *p = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 struct tcf_result res;
63 int result;
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 result = tc_classify(skb, p->filter_list, &res);
Patrick McHardya4781222008-01-21 00:11:21 -080066
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 sch->bstats.packets++;
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -070068 sch->bstats.bytes += qdisc_pkt_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 switch (result) {
Patrick McHardy58f4df42008-01-21 00:11:01 -080070 case TC_ACT_SHOT:
71 result = TC_ACT_SHOT;
72 sch->qstats.drops++;
73 break;
74 case TC_ACT_STOLEN:
75 case TC_ACT_QUEUED:
76 result = TC_ACT_STOLEN;
77 break;
78 case TC_ACT_RECLASSIFY:
79 case TC_ACT_OK:
80 skb->tc_index = TC_H_MIN(res.classid);
81 default:
82 result = TC_ACT_OK;
83 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -070084 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86 return result;
87}
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089/* ------------------------------------------------------------- */
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091static void ingress_destroy(struct Qdisc *sch)
92{
Patrick McHardycb53c042008-01-21 00:11:48 -080093 struct ingress_qdisc_data *p = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Patrick McHardyff31ab52008-07-01 19:52:38 -070095 tcf_destroy_chain(&p->filter_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096}
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098static int ingress_dump(struct Qdisc *sch, struct sk_buff *skb)
99{
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800100 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800102 nest = nla_nest_start(skb, TCA_OPTIONS);
103 if (nest == NULL)
104 goto nla_put_failure;
105 nla_nest_end(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 return skb->len;
107
Patrick McHardy1e904742008-01-22 22:11:17 -0800108nla_put_failure:
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800109 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 return -1;
111}
112
Eric Dumazet20fea082007-11-14 01:44:41 -0800113static const struct Qdisc_class_ops ingress_class_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 .leaf = ingress_leaf,
115 .get = ingress_get,
116 .put = ingress_put,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 .walk = ingress_walk,
118 .tcf_chain = ingress_find_tcf,
119 .bind_tcf = ingress_bind_filter,
120 .unbind_tcf = ingress_put,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121};
122
Eric Dumazet20fea082007-11-14 01:44:41 -0800123static struct Qdisc_ops ingress_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 .cl_ops = &ingress_class_ops,
125 .id = "ingress",
126 .priv_size = sizeof(struct ingress_qdisc_data),
127 .enqueue = ingress_enqueue,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 .destroy = ingress_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 .dump = ingress_dump,
130 .owner = THIS_MODULE,
131};
132
133static int __init ingress_module_init(void)
134{
Patrick McHardy89168762008-01-21 00:14:05 -0800135 return register_qdisc(&ingress_qdisc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
Patrick McHardy58f4df42008-01-21 00:11:01 -0800137
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900138static void __exit ingress_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
140 unregister_qdisc(&ingress_qdisc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
Patrick McHardy58f4df42008-01-21 00:11:01 -0800142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143module_init(ingress_module_init)
144module_exit(ingress_module_exit)
145MODULE_LICENSE("GPL");