blob: 037d128c28514fbf904ff6b63100a44cf4a144e4 [file] [log] [blame]
Thomas Graff4009232008-11-07 22:56:00 -08001/*
2 * net/sched/cls_cgroup.c Control Group Classifier
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
9 * Authors: Thomas Graf <tgraf@suug.ch>
10 */
11
12#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Thomas Graff4009232008-11-07 22:56:00 -080014#include <linux/skbuff.h>
Herbert Xuf8451722010-05-24 00:12:34 -070015#include <linux/rcupdate.h>
Thomas Graff4009232008-11-07 22:56:00 -080016#include <net/rtnetlink.h>
17#include <net/pkt_cls.h>
Herbert Xuf8451722010-05-24 00:12:34 -070018#include <net/sock.h>
19#include <net/cls_cgroup.h>
Thomas Graff4009232008-11-07 22:56:00 -080020
Eric Dumazetcc7ec452011-01-19 19:26:56 +000021struct cls_cgroup_head {
Thomas Graff4009232008-11-07 22:56:00 -080022 u32 handle;
23 struct tcf_exts exts;
24 struct tcf_ematch_tree ematches;
John Fastabend952313b2014-09-12 20:06:26 -070025 struct tcf_proto *tp;
Cong Wangaaa908f2018-05-23 15:26:53 -070026 struct rcu_work rwork;
Thomas Graff4009232008-11-07 22:56:00 -080027};
28
Eric Dumazetdc7f9f62011-07-05 23:25:42 +000029static int cls_cgroup_classify(struct sk_buff *skb, const struct tcf_proto *tp,
Thomas Graff4009232008-11-07 22:56:00 -080030 struct tcf_result *res)
31{
John Fastabend952313b2014-09-12 20:06:26 -070032 struct cls_cgroup_head *head = rcu_dereference_bh(tp->root);
Daniel Borkmannb87a1732015-07-15 14:21:41 +020033 u32 classid = task_get_classid(skb);
Thomas Graff4009232008-11-07 22:56:00 -080034
Paul Menagee65fcfd2009-05-26 20:47:02 -070035 if (!classid)
36 return -1;
Paul Menagee65fcfd2009-05-26 20:47:02 -070037 if (!tcf_em_tree_match(skb, &head->ematches, NULL))
38 return -1;
39
40 res->classid = classid;
41 res->class = 0;
Daniel Borkmannb87a1732015-07-15 14:21:41 +020042
Paul Menagee65fcfd2009-05-26 20:47:02 -070043 return tcf_exts_exec(skb, &head->exts, res);
Thomas Graff4009232008-11-07 22:56:00 -080044}
45
WANG Cong8113c092017-08-04 21:31:43 -070046static void *cls_cgroup_get(struct tcf_proto *tp, u32 handle)
Thomas Graff4009232008-11-07 22:56:00 -080047{
WANG Cong8113c092017-08-04 21:31:43 -070048 return NULL;
Thomas Graff4009232008-11-07 22:56:00 -080049}
50
Thomas Graff4009232008-11-07 22:56:00 -080051static int cls_cgroup_init(struct tcf_proto *tp)
52{
53 return 0;
54}
55
Thomas Graff4009232008-11-07 22:56:00 -080056static const struct nla_policy cgroup_policy[TCA_CGROUP_MAX + 1] = {
57 [TCA_CGROUP_EMATCHES] = { .type = NLA_NESTED },
58};
59
Cong Wanged148162017-11-06 13:47:22 -080060static void __cls_cgroup_destroy(struct cls_cgroup_head *head)
61{
62 tcf_exts_destroy(&head->exts);
63 tcf_em_tree_destroy(&head->ematches);
64 tcf_exts_put_net(&head->exts);
65 kfree(head);
66}
67
Cong Wangb1b5b042017-10-26 18:24:31 -070068static void cls_cgroup_destroy_work(struct work_struct *work)
69{
Cong Wangaaa908f2018-05-23 15:26:53 -070070 struct cls_cgroup_head *head = container_of(to_rcu_work(work),
Cong Wangb1b5b042017-10-26 18:24:31 -070071 struct cls_cgroup_head,
Cong Wangaaa908f2018-05-23 15:26:53 -070072 rwork);
Cong Wangb1b5b042017-10-26 18:24:31 -070073 rtnl_lock();
Cong Wanged148162017-11-06 13:47:22 -080074 __cls_cgroup_destroy(head);
Cong Wangb1b5b042017-10-26 18:24:31 -070075 rtnl_unlock();
76}
77
Benjamin LaHaisec1b52732013-01-14 05:15:39 +000078static int cls_cgroup_change(struct net *net, struct sk_buff *in_skb,
Eric W. Biedermanaf4c6642012-05-25 13:42:45 -060079 struct tcf_proto *tp, unsigned long base,
Thomas Graff4009232008-11-07 22:56:00 -080080 u32 handle, struct nlattr **tca,
Vlad Buslov12db03b2019-02-11 10:55:45 +020081 void **arg, bool ovr, bool rtnl_held,
Alexander Aring7306db32018-01-18 11:20:51 -050082 struct netlink_ext_ack *extack)
Thomas Graff4009232008-11-07 22:56:00 -080083{
Eric Dumazetcc7ec452011-01-19 19:26:56 +000084 struct nlattr *tb[TCA_CGROUP_MAX + 1];
John Fastabend952313b2014-09-12 20:06:26 -070085 struct cls_cgroup_head *head = rtnl_dereference(tp->root);
86 struct cls_cgroup_head *new;
Thomas Graff4009232008-11-07 22:56:00 -080087 int err;
88
Minoru Usui52ea3a52009-06-09 04:03:09 -070089 if (!tca[TCA_OPTIONS])
90 return -EINVAL;
91
John Fastabend952313b2014-09-12 20:06:26 -070092 if (!head && !handle)
93 return -EINVAL;
Thomas Graff4009232008-11-07 22:56:00 -080094
John Fastabend952313b2014-09-12 20:06:26 -070095 if (head && handle != head->handle)
Thomas Graff4009232008-11-07 22:56:00 -080096 return -ENOENT;
97
John Fastabend952313b2014-09-12 20:06:26 -070098 new = kzalloc(sizeof(*head), GFP_KERNEL);
99 if (!new)
100 return -ENOBUFS;
101
Cong Wang14215102019-02-20 21:37:42 -0800102 err = tcf_exts_init(&new->exts, net, TCA_CGROUP_ACT, TCA_CGROUP_POLICE);
WANG Congb9a24bb2016-08-19 12:36:54 -0700103 if (err < 0)
104 goto errout;
Jiri Pirko18b54272014-12-02 18:00:36 +0100105 new->handle = handle;
John Fastabend952313b2014-09-12 20:06:26 -0700106 new->tp = tp;
Johannes Berg8cb08172019-04-26 14:07:28 +0200107 err = nla_parse_nested_deprecated(tb, TCA_CGROUP_MAX,
108 tca[TCA_OPTIONS], cgroup_policy,
109 NULL);
Thomas Graff4009232008-11-07 22:56:00 -0800110 if (err < 0)
John Fastabendd14cbfc82014-09-15 23:31:17 -0700111 goto errout;
Thomas Graff4009232008-11-07 22:56:00 -0800112
Alexander Aring50a56192018-01-18 11:20:52 -0500113 err = tcf_exts_validate(net, tp, tb, tca[TCA_RATE], &new->exts, ovr,
Vlad Buslovec6743a2019-02-11 10:55:43 +0200114 true, extack);
Thomas Graff4009232008-11-07 22:56:00 -0800115 if (err < 0)
John Fastabendd14cbfc82014-09-15 23:31:17 -0700116 goto errout;
Thomas Graff4009232008-11-07 22:56:00 -0800117
Jiri Pirko4ebc1e32017-08-04 14:28:57 +0200118 err = tcf_em_tree_validate(tp, tb[TCA_CGROUP_EMATCHES], &new->ematches);
Jiri Pirko8cc62512017-08-04 14:29:11 +0200119 if (err < 0)
John Fastabendd14cbfc82014-09-15 23:31:17 -0700120 goto errout;
Thomas Graff4009232008-11-07 22:56:00 -0800121
John Fastabend952313b2014-09-12 20:06:26 -0700122 rcu_assign_pointer(tp->root, new);
Cong Wanged148162017-11-06 13:47:22 -0800123 if (head) {
124 tcf_exts_get_net(&head->exts);
Cong Wangaaa908f2018-05-23 15:26:53 -0700125 tcf_queue_work(&head->rwork, cls_cgroup_destroy_work);
Cong Wanged148162017-11-06 13:47:22 -0800126 }
Thomas Graff4009232008-11-07 22:56:00 -0800127 return 0;
John Fastabendd14cbfc82014-09-15 23:31:17 -0700128errout:
WANG Congb9a24bb2016-08-19 12:36:54 -0700129 tcf_exts_destroy(&new->exts);
John Fastabendd14cbfc82014-09-15 23:31:17 -0700130 kfree(new);
131 return err;
Thomas Graff4009232008-11-07 22:56:00 -0800132}
133
Vlad Buslov12db03b2019-02-11 10:55:45 +0200134static void cls_cgroup_destroy(struct tcf_proto *tp, bool rtnl_held,
Jakub Kicinski715df5e2018-01-24 12:54:13 -0800135 struct netlink_ext_ack *extack)
Thomas Graff4009232008-11-07 22:56:00 -0800136{
John Fastabend952313b2014-09-12 20:06:26 -0700137 struct cls_cgroup_head *head = rtnl_dereference(tp->root);
Thomas Graff4009232008-11-07 22:56:00 -0800138
Daniel Borkmannd9363772016-11-27 01:18:01 +0100139 /* Head can still be NULL due to cls_cgroup_init(). */
Cong Wanged148162017-11-06 13:47:22 -0800140 if (head) {
141 if (tcf_exts_get_net(&head->exts))
Cong Wangaaa908f2018-05-23 15:26:53 -0700142 tcf_queue_work(&head->rwork, cls_cgroup_destroy_work);
Cong Wanged148162017-11-06 13:47:22 -0800143 else
144 __cls_cgroup_destroy(head);
145 }
Thomas Graff4009232008-11-07 22:56:00 -0800146}
147
Alexander Aring571acf22018-01-18 11:20:53 -0500148static int cls_cgroup_delete(struct tcf_proto *tp, void *arg, bool *last,
Vlad Buslov12db03b2019-02-11 10:55:45 +0200149 bool rtnl_held, struct netlink_ext_ack *extack)
Thomas Graff4009232008-11-07 22:56:00 -0800150{
151 return -EOPNOTSUPP;
152}
153
Vlad Buslov12db03b2019-02-11 10:55:45 +0200154static void cls_cgroup_walk(struct tcf_proto *tp, struct tcf_walker *arg,
155 bool rtnl_held)
Thomas Graff4009232008-11-07 22:56:00 -0800156{
John Fastabend952313b2014-09-12 20:06:26 -0700157 struct cls_cgroup_head *head = rtnl_dereference(tp->root);
Thomas Graff4009232008-11-07 22:56:00 -0800158
159 if (arg->count < arg->skip)
160 goto skip;
161
Vlad Buslov8b58d122019-02-15 17:18:44 +0200162 if (!head)
163 return;
WANG Cong8113c092017-08-04 21:31:43 -0700164 if (arg->fn(tp, head, arg) < 0) {
Thomas Graff4009232008-11-07 22:56:00 -0800165 arg->stop = 1;
166 return;
167 }
168skip:
169 arg->count++;
170}
171
WANG Cong8113c092017-08-04 21:31:43 -0700172static int cls_cgroup_dump(struct net *net, struct tcf_proto *tp, void *fh,
Vlad Buslov12db03b2019-02-11 10:55:45 +0200173 struct sk_buff *skb, struct tcmsg *t, bool rtnl_held)
Thomas Graff4009232008-11-07 22:56:00 -0800174{
John Fastabend952313b2014-09-12 20:06:26 -0700175 struct cls_cgroup_head *head = rtnl_dereference(tp->root);
Thomas Graff4009232008-11-07 22:56:00 -0800176 struct nlattr *nest;
177
178 t->tcm_handle = head->handle;
179
Michal Kubecekae0be8d2019-04-26 11:13:06 +0200180 nest = nla_nest_start_noflag(skb, TCA_OPTIONS);
Thomas Graff4009232008-11-07 22:56:00 -0800181 if (nest == NULL)
182 goto nla_put_failure;
183
WANG Cong5da57f42013-12-15 20:15:07 -0800184 if (tcf_exts_dump(skb, &head->exts) < 0 ||
Thomas Graff4009232008-11-07 22:56:00 -0800185 tcf_em_tree_dump(skb, &head->ematches, TCA_CGROUP_EMATCHES) < 0)
186 goto nla_put_failure;
187
188 nla_nest_end(skb, nest);
189
WANG Cong5da57f42013-12-15 20:15:07 -0800190 if (tcf_exts_dump_stats(skb, &head->exts) < 0)
Thomas Graff4009232008-11-07 22:56:00 -0800191 goto nla_put_failure;
192
193 return skb->len;
194
195nla_put_failure:
Jiri Pirko6ea3b442014-12-09 22:23:29 +0100196 nla_nest_cancel(skb, nest);
Thomas Graff4009232008-11-07 22:56:00 -0800197 return -1;
198}
199
200static struct tcf_proto_ops cls_cgroup_ops __read_mostly = {
201 .kind = "cgroup",
202 .init = cls_cgroup_init,
203 .change = cls_cgroup_change,
204 .classify = cls_cgroup_classify,
205 .destroy = cls_cgroup_destroy,
206 .get = cls_cgroup_get,
Thomas Graff4009232008-11-07 22:56:00 -0800207 .delete = cls_cgroup_delete,
208 .walk = cls_cgroup_walk,
209 .dump = cls_cgroup_dump,
210 .owner = THIS_MODULE,
211};
212
213static int __init init_cgroup_cls(void)
214{
Daniel Borkmannfe1217c2013-12-29 18:27:10 +0100215 return register_tcf_proto_ops(&cls_cgroup_ops);
Thomas Graff4009232008-11-07 22:56:00 -0800216}
217
218static void __exit exit_cgroup_cls(void)
219{
220 unregister_tcf_proto_ops(&cls_cgroup_ops);
Thomas Graff4009232008-11-07 22:56:00 -0800221}
222
223module_init(init_cgroup_cls);
224module_exit(exit_cgroup_cls);
225MODULE_LICENSE("GPL");