blob: eb5b8445fef989c1f331fa1485fa39c649181a82 [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 {
John Fastabend25d8c0d2014-09-12 20:05:27 -070020 struct tcf_proto __rcu *filter_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070021};
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
John Fastabend25d8c0d2014-09-12 20:05:27 -070049static struct tcf_proto __rcu **ingress_find_tcf(struct Qdisc *sch,
50 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;
John Fastabend25d8c0d2014-09-12 20:05:27 -070063 struct tcf_proto *fl = rcu_dereference_bh(p->filter_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 int result;
65
John Fastabend25d8c0d2014-09-12 20:05:27 -070066 result = tc_classify(skb, fl, &res);
Patrick McHardya4781222008-01-21 00:11:21 -080067
Eric Dumazetbfe0d022011-01-09 08:30:54 +000068 qdisc_bstats_update(sch, 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;
John Fastabend25331d62014-09-28 11:53:29 -070072 qdisc_qstats_drop(sch);
Patrick McHardy58f4df42008-01-21 00:11:01 -080073 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;
Yang Yingliangd59b7d82014-03-12 10:20:32 +0800105 return nla_nest_end(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Patrick McHardy1e904742008-01-22 22:11:17 -0800107nla_put_failure:
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800108 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 return -1;
110}
111
Eric Dumazet20fea082007-11-14 01:44:41 -0800112static const struct Qdisc_class_ops ingress_class_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 .leaf = ingress_leaf,
114 .get = ingress_get,
115 .put = ingress_put,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 .walk = ingress_walk,
117 .tcf_chain = ingress_find_tcf,
118 .bind_tcf = ingress_bind_filter,
119 .unbind_tcf = ingress_put,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120};
121
Eric Dumazet20fea082007-11-14 01:44:41 -0800122static struct Qdisc_ops ingress_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 .cl_ops = &ingress_class_ops,
124 .id = "ingress",
125 .priv_size = sizeof(struct ingress_qdisc_data),
126 .enqueue = ingress_enqueue,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 .destroy = ingress_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 .dump = ingress_dump,
129 .owner = THIS_MODULE,
130};
131
132static int __init ingress_module_init(void)
133{
Patrick McHardy89168762008-01-21 00:14:05 -0800134 return register_qdisc(&ingress_qdisc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
Patrick McHardy58f4df42008-01-21 00:11:01 -0800136
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900137static void __exit ingress_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
139 unregister_qdisc(&ingress_qdisc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
Patrick McHardy58f4df42008-01-21 00:11:01 -0800141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142module_init(ingress_module_init)
143module_exit(ingress_module_exit)
144MODULE_LICENSE("GPL");