sch_ingress.c 3.4 KB
Newer Older
1
/* net/sched/sch_ingress.c - Ingress qdisc
L
Linus Torvalds 已提交
2 3 4 5 6 7 8 9 10 11
 *              This program is free software; you can redistribute it and/or
 *              modify it under the terms of the GNU General Public License
 *              as published by the Free Software Foundation; either version
 *              2 of the License, or (at your option) any later version.
 *
 * Authors:     Jamal Hadi Salim 1999
 */

#include <linux/module.h>
#include <linux/types.h>
12
#include <linux/list.h>
L
Linus Torvalds 已提交
13 14
#include <linux/skbuff.h>
#include <linux/rtnetlink.h>
15
#include <net/netlink.h>
L
Linus Torvalds 已提交
16 17 18 19
#include <net/pkt_sched.h>


struct ingress_qdisc_data {
J
John Fastabend 已提交
20
	struct tcf_proto __rcu	*filter_list;
L
Linus Torvalds 已提交
21 22 23 24 25 26 27 28 29
};

/* ------------------------- Class/flow operations ------------------------- */

static struct Qdisc *ingress_leaf(struct Qdisc *sch, unsigned long arg)
{
	return NULL;
}

30
static unsigned long ingress_get(struct Qdisc *sch, u32 classid)
L
Linus Torvalds 已提交
31 32 33 34 35
{
	return TC_H_MIN(classid) + 1;
}

static unsigned long ingress_bind_filter(struct Qdisc *sch,
36
					 unsigned long parent, u32 classid)
L
Linus Torvalds 已提交
37 38 39 40 41 42 43 44
{
	return ingress_get(sch, classid);
}

static void ingress_put(struct Qdisc *sch, unsigned long cl)
{
}

45
static void ingress_walk(struct Qdisc *sch, struct qdisc_walker *walker)
L
Linus Torvalds 已提交
46 47 48
{
}

J
John Fastabend 已提交
49 50
static struct tcf_proto __rcu **ingress_find_tcf(struct Qdisc *sch,
						 unsigned long cl)
L
Linus Torvalds 已提交
51
{
52
	struct ingress_qdisc_data *p = qdisc_priv(sch);
L
Linus Torvalds 已提交
53 54 55 56 57 58

	return &p->filter_list;
}

/* --------------------------- Qdisc operations ---------------------------- */

59
static int ingress_enqueue(struct sk_buff *skb, struct Qdisc *sch)
L
Linus Torvalds 已提交
60
{
61
	struct ingress_qdisc_data *p = qdisc_priv(sch);
L
Linus Torvalds 已提交
62
	struct tcf_result res;
J
John Fastabend 已提交
63
	struct tcf_proto *fl = rcu_dereference_bh(p->filter_list);
L
Linus Torvalds 已提交
64 65
	int result;

J
John Fastabend 已提交
66
	result = tc_classify(skb, fl, &res);
67

68
	qdisc_bstats_update_cpu(sch, skb);
L
Linus Torvalds 已提交
69
	switch (result) {
70 71
	case TC_ACT_SHOT:
		result = TC_ACT_SHOT;
72
		qdisc_qstats_drop_cpu(sch);
73 74 75 76 77 78 79 80 81 82 83
		break;
	case TC_ACT_STOLEN:
	case TC_ACT_QUEUED:
		result = TC_ACT_STOLEN;
		break;
	case TC_ACT_RECLASSIFY:
	case TC_ACT_OK:
		skb->tc_index = TC_H_MIN(res.classid);
	default:
		result = TC_ACT_OK;
		break;
84
	}
L
Linus Torvalds 已提交
85 86 87 88 89 90

	return result;
}

/* ------------------------------------------------------------- */

91 92 93
static int ingress_init(struct Qdisc *sch, struct nlattr *opt)
{
	net_inc_ingress_queue();
94
	sch->flags |= TCQ_F_CPUSTATS;
95 96 97 98

	return 0;
}

L
Linus Torvalds 已提交
99 100
static void ingress_destroy(struct Qdisc *sch)
{
101
	struct ingress_qdisc_data *p = qdisc_priv(sch);
L
Linus Torvalds 已提交
102

103
	tcf_destroy_chain(&p->filter_list);
104
	net_dec_ingress_queue();
L
Linus Torvalds 已提交
105 106 107 108
}

static int ingress_dump(struct Qdisc *sch, struct sk_buff *skb)
{
109
	struct nlattr *nest;
L
Linus Torvalds 已提交
110

111 112 113
	nest = nla_nest_start(skb, TCA_OPTIONS);
	if (nest == NULL)
		goto nla_put_failure;
114
	return nla_nest_end(skb, nest);
L
Linus Torvalds 已提交
115

116
nla_put_failure:
117
	nla_nest_cancel(skb, nest);
L
Linus Torvalds 已提交
118 119 120
	return -1;
}

121
static const struct Qdisc_class_ops ingress_class_ops = {
L
Linus Torvalds 已提交
122 123 124 125 126 127 128 129 130
	.leaf		=	ingress_leaf,
	.get		=	ingress_get,
	.put		=	ingress_put,
	.walk		=	ingress_walk,
	.tcf_chain	=	ingress_find_tcf,
	.bind_tcf	=	ingress_bind_filter,
	.unbind_tcf	=	ingress_put,
};

131
static struct Qdisc_ops ingress_qdisc_ops __read_mostly = {
L
Linus Torvalds 已提交
132 133 134 135
	.cl_ops		=	&ingress_class_ops,
	.id		=	"ingress",
	.priv_size	=	sizeof(struct ingress_qdisc_data),
	.enqueue	=	ingress_enqueue,
136
	.init		=	ingress_init,
L
Linus Torvalds 已提交
137 138 139 140 141 142 143
	.destroy	=	ingress_destroy,
	.dump		=	ingress_dump,
	.owner		=	THIS_MODULE,
};

static int __init ingress_module_init(void)
{
144
	return register_qdisc(&ingress_qdisc_ops);
L
Linus Torvalds 已提交
145
}
146

147
static void __exit ingress_module_exit(void)
L
Linus Torvalds 已提交
148 149 150
{
	unregister_qdisc(&ingress_qdisc_ops);
}
151

L
Linus Torvalds 已提交
152 153 154
module_init(ingress_module_init)
module_exit(ingress_module_exit)
MODULE_LICENSE("GPL");