blob: 62871c14e1f93fef31e5795ad2b8ae2f064399a4 [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{
Linus Torvalds1da177e2005-04-16 15:20:36 -070047}
48
Patrick McHardy58f4df42008-01-21 00:11:01 -080049static struct tcf_proto **ingress_find_tcf(struct Qdisc *sch, unsigned long cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050{
Patrick McHardycb53c042008-01-21 00:11:48 -080051 struct ingress_qdisc_data *p = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53 return &p->filter_list;
54}
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056/* --------------------------- Qdisc operations ---------------------------- */
57
Patrick McHardy58f4df42008-01-21 00:11:01 -080058static int ingress_enqueue(struct sk_buff *skb, struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059{
Patrick McHardycb53c042008-01-21 00:11:48 -080060 struct ingress_qdisc_data *p = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 struct tcf_result res;
62 int result;
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 result = tc_classify(skb, p->filter_list, &res);
Patrick McHardya4781222008-01-21 00:11:21 -080065
Eric Dumazetbfe0d022011-01-09 08:30:54 +000066 qdisc_bstats_update(sch, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 switch (result) {
Patrick McHardy58f4df42008-01-21 00:11:01 -080068 case TC_ACT_SHOT:
69 result = TC_ACT_SHOT;
70 sch->qstats.drops++;
71 break;
72 case TC_ACT_STOLEN:
73 case TC_ACT_QUEUED:
74 result = TC_ACT_STOLEN;
75 break;
76 case TC_ACT_RECLASSIFY:
77 case TC_ACT_OK:
78 skb->tc_index = TC_H_MIN(res.classid);
79 default:
80 result = TC_ACT_OK;
81 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -070082 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84 return result;
85}
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087/* ------------------------------------------------------------- */
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089static void ingress_destroy(struct Qdisc *sch)
90{
Patrick McHardycb53c042008-01-21 00:11:48 -080091 struct ingress_qdisc_data *p = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Patrick McHardyff31ab52008-07-01 19:52:38 -070093 tcf_destroy_chain(&p->filter_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094}
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096static int ingress_dump(struct Qdisc *sch, struct sk_buff *skb)
97{
Patrick McHardy4b3550ef2008-01-23 20:34:11 -080098 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800100 nest = nla_nest_start(skb, TCA_OPTIONS);
101 if (nest == NULL)
102 goto nla_put_failure;
Yang Yingliangd59b7d82014-03-12 10:20:32 +0800103 return nla_nest_end(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Patrick McHardy1e904742008-01-22 22:11:17 -0800105nla_put_failure:
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800106 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 return -1;
108}
109
Eric Dumazet20fea082007-11-14 01:44:41 -0800110static const struct Qdisc_class_ops ingress_class_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 .leaf = ingress_leaf,
112 .get = ingress_get,
113 .put = ingress_put,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 .walk = ingress_walk,
115 .tcf_chain = ingress_find_tcf,
116 .bind_tcf = ingress_bind_filter,
117 .unbind_tcf = ingress_put,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118};
119
Eric Dumazet20fea082007-11-14 01:44:41 -0800120static struct Qdisc_ops ingress_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 .cl_ops = &ingress_class_ops,
122 .id = "ingress",
123 .priv_size = sizeof(struct ingress_qdisc_data),
124 .enqueue = ingress_enqueue,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 .destroy = ingress_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 .dump = ingress_dump,
127 .owner = THIS_MODULE,
128};
129
130static int __init ingress_module_init(void)
131{
Patrick McHardy89168762008-01-21 00:14:05 -0800132 return register_qdisc(&ingress_qdisc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133}
Patrick McHardy58f4df42008-01-21 00:11:01 -0800134
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900135static void __exit ingress_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
137 unregister_qdisc(&ingress_qdisc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138}
Patrick McHardy58f4df42008-01-21 00:11:01 -0800139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140module_init(ingress_module_init)
141module_exit(ingress_module_exit)
142MODULE_LICENSE("GPL");