Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 1 | /* |
| 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 Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 13 | #include <linux/slab.h> |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 14 | #include <linux/skbuff.h> |
Herbert Xu | f845172 | 2010-05-24 00:12:34 -0700 | [diff] [blame] | 15 | #include <linux/rcupdate.h> |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 16 | #include <net/rtnetlink.h> |
| 17 | #include <net/pkt_cls.h> |
Herbert Xu | f845172 | 2010-05-24 00:12:34 -0700 | [diff] [blame] | 18 | #include <net/sock.h> |
| 19 | #include <net/cls_cgroup.h> |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 20 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 21 | struct cls_cgroup_head { |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 22 | u32 handle; |
| 23 | struct tcf_exts exts; |
| 24 | struct tcf_ematch_tree ematches; |
John Fastabend | 952313b | 2014-09-12 20:06:26 -0700 | [diff] [blame] | 25 | struct tcf_proto *tp; |
Cong Wang | aaa908f | 2018-05-23 15:26:53 -0700 | [diff] [blame] | 26 | struct rcu_work rwork; |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 27 | }; |
| 28 | |
Eric Dumazet | dc7f9f6 | 2011-07-05 23:25:42 +0000 | [diff] [blame] | 29 | static int cls_cgroup_classify(struct sk_buff *skb, const struct tcf_proto *tp, |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 30 | struct tcf_result *res) |
| 31 | { |
John Fastabend | 952313b | 2014-09-12 20:06:26 -0700 | [diff] [blame] | 32 | struct cls_cgroup_head *head = rcu_dereference_bh(tp->root); |
Daniel Borkmann | b87a173 | 2015-07-15 14:21:41 +0200 | [diff] [blame] | 33 | u32 classid = task_get_classid(skb); |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 34 | |
Paul Menage | e65fcfd | 2009-05-26 20:47:02 -0700 | [diff] [blame] | 35 | if (!classid) |
| 36 | return -1; |
Paul Menage | e65fcfd | 2009-05-26 20:47:02 -0700 | [diff] [blame] | 37 | if (!tcf_em_tree_match(skb, &head->ematches, NULL)) |
| 38 | return -1; |
| 39 | |
| 40 | res->classid = classid; |
| 41 | res->class = 0; |
Daniel Borkmann | b87a173 | 2015-07-15 14:21:41 +0200 | [diff] [blame] | 42 | |
Paul Menage | e65fcfd | 2009-05-26 20:47:02 -0700 | [diff] [blame] | 43 | return tcf_exts_exec(skb, &head->exts, res); |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 44 | } |
| 45 | |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 46 | static void *cls_cgroup_get(struct tcf_proto *tp, u32 handle) |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 47 | { |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 48 | return NULL; |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 49 | } |
| 50 | |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 51 | static int cls_cgroup_init(struct tcf_proto *tp) |
| 52 | { |
| 53 | return 0; |
| 54 | } |
| 55 | |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 56 | static const struct nla_policy cgroup_policy[TCA_CGROUP_MAX + 1] = { |
| 57 | [TCA_CGROUP_EMATCHES] = { .type = NLA_NESTED }, |
| 58 | }; |
| 59 | |
Cong Wang | ed14816 | 2017-11-06 13:47:22 -0800 | [diff] [blame] | 60 | static 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 Wang | b1b5b04 | 2017-10-26 18:24:31 -0700 | [diff] [blame] | 68 | static void cls_cgroup_destroy_work(struct work_struct *work) |
| 69 | { |
Cong Wang | aaa908f | 2018-05-23 15:26:53 -0700 | [diff] [blame] | 70 | struct cls_cgroup_head *head = container_of(to_rcu_work(work), |
Cong Wang | b1b5b04 | 2017-10-26 18:24:31 -0700 | [diff] [blame] | 71 | struct cls_cgroup_head, |
Cong Wang | aaa908f | 2018-05-23 15:26:53 -0700 | [diff] [blame] | 72 | rwork); |
Cong Wang | b1b5b04 | 2017-10-26 18:24:31 -0700 | [diff] [blame] | 73 | rtnl_lock(); |
Cong Wang | ed14816 | 2017-11-06 13:47:22 -0800 | [diff] [blame] | 74 | __cls_cgroup_destroy(head); |
Cong Wang | b1b5b04 | 2017-10-26 18:24:31 -0700 | [diff] [blame] | 75 | rtnl_unlock(); |
| 76 | } |
| 77 | |
Benjamin LaHaise | c1b5273 | 2013-01-14 05:15:39 +0000 | [diff] [blame] | 78 | static int cls_cgroup_change(struct net *net, struct sk_buff *in_skb, |
Eric W. Biederman | af4c664 | 2012-05-25 13:42:45 -0600 | [diff] [blame] | 79 | struct tcf_proto *tp, unsigned long base, |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 80 | u32 handle, struct nlattr **tca, |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 81 | void **arg, bool ovr, bool rtnl_held, |
Alexander Aring | 7306db3 | 2018-01-18 11:20:51 -0500 | [diff] [blame] | 82 | struct netlink_ext_ack *extack) |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 83 | { |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 84 | struct nlattr *tb[TCA_CGROUP_MAX + 1]; |
John Fastabend | 952313b | 2014-09-12 20:06:26 -0700 | [diff] [blame] | 85 | struct cls_cgroup_head *head = rtnl_dereference(tp->root); |
| 86 | struct cls_cgroup_head *new; |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 87 | int err; |
| 88 | |
Minoru Usui | 52ea3a5 | 2009-06-09 04:03:09 -0700 | [diff] [blame] | 89 | if (!tca[TCA_OPTIONS]) |
| 90 | return -EINVAL; |
| 91 | |
John Fastabend | 952313b | 2014-09-12 20:06:26 -0700 | [diff] [blame] | 92 | if (!head && !handle) |
| 93 | return -EINVAL; |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 94 | |
John Fastabend | 952313b | 2014-09-12 20:06:26 -0700 | [diff] [blame] | 95 | if (head && handle != head->handle) |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 96 | return -ENOENT; |
| 97 | |
John Fastabend | 952313b | 2014-09-12 20:06:26 -0700 | [diff] [blame] | 98 | new = kzalloc(sizeof(*head), GFP_KERNEL); |
| 99 | if (!new) |
| 100 | return -ENOBUFS; |
| 101 | |
Cong Wang | 1421510 | 2019-02-20 21:37:42 -0800 | [diff] [blame] | 102 | err = tcf_exts_init(&new->exts, net, TCA_CGROUP_ACT, TCA_CGROUP_POLICE); |
WANG Cong | b9a24bb | 2016-08-19 12:36:54 -0700 | [diff] [blame] | 103 | if (err < 0) |
| 104 | goto errout; |
Jiri Pirko | 18b5427 | 2014-12-02 18:00:36 +0100 | [diff] [blame] | 105 | new->handle = handle; |
John Fastabend | 952313b | 2014-09-12 20:06:26 -0700 | [diff] [blame] | 106 | new->tp = tp; |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame^] | 107 | err = nla_parse_nested_deprecated(tb, TCA_CGROUP_MAX, |
| 108 | tca[TCA_OPTIONS], cgroup_policy, |
| 109 | NULL); |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 110 | if (err < 0) |
John Fastabend | d14cbfc8 | 2014-09-15 23:31:17 -0700 | [diff] [blame] | 111 | goto errout; |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 112 | |
Alexander Aring | 50a5619 | 2018-01-18 11:20:52 -0500 | [diff] [blame] | 113 | err = tcf_exts_validate(net, tp, tb, tca[TCA_RATE], &new->exts, ovr, |
Vlad Buslov | ec6743a | 2019-02-11 10:55:43 +0200 | [diff] [blame] | 114 | true, extack); |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 115 | if (err < 0) |
John Fastabend | d14cbfc8 | 2014-09-15 23:31:17 -0700 | [diff] [blame] | 116 | goto errout; |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 117 | |
Jiri Pirko | 4ebc1e3 | 2017-08-04 14:28:57 +0200 | [diff] [blame] | 118 | err = tcf_em_tree_validate(tp, tb[TCA_CGROUP_EMATCHES], &new->ematches); |
Jiri Pirko | 8cc6251 | 2017-08-04 14:29:11 +0200 | [diff] [blame] | 119 | if (err < 0) |
John Fastabend | d14cbfc8 | 2014-09-15 23:31:17 -0700 | [diff] [blame] | 120 | goto errout; |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 121 | |
John Fastabend | 952313b | 2014-09-12 20:06:26 -0700 | [diff] [blame] | 122 | rcu_assign_pointer(tp->root, new); |
Cong Wang | ed14816 | 2017-11-06 13:47:22 -0800 | [diff] [blame] | 123 | if (head) { |
| 124 | tcf_exts_get_net(&head->exts); |
Cong Wang | aaa908f | 2018-05-23 15:26:53 -0700 | [diff] [blame] | 125 | tcf_queue_work(&head->rwork, cls_cgroup_destroy_work); |
Cong Wang | ed14816 | 2017-11-06 13:47:22 -0800 | [diff] [blame] | 126 | } |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 127 | return 0; |
John Fastabend | d14cbfc8 | 2014-09-15 23:31:17 -0700 | [diff] [blame] | 128 | errout: |
WANG Cong | b9a24bb | 2016-08-19 12:36:54 -0700 | [diff] [blame] | 129 | tcf_exts_destroy(&new->exts); |
John Fastabend | d14cbfc8 | 2014-09-15 23:31:17 -0700 | [diff] [blame] | 130 | kfree(new); |
| 131 | return err; |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 132 | } |
| 133 | |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 134 | static void cls_cgroup_destroy(struct tcf_proto *tp, bool rtnl_held, |
Jakub Kicinski | 715df5e | 2018-01-24 12:54:13 -0800 | [diff] [blame] | 135 | struct netlink_ext_ack *extack) |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 136 | { |
John Fastabend | 952313b | 2014-09-12 20:06:26 -0700 | [diff] [blame] | 137 | struct cls_cgroup_head *head = rtnl_dereference(tp->root); |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 138 | |
Daniel Borkmann | d936377 | 2016-11-27 01:18:01 +0100 | [diff] [blame] | 139 | /* Head can still be NULL due to cls_cgroup_init(). */ |
Cong Wang | ed14816 | 2017-11-06 13:47:22 -0800 | [diff] [blame] | 140 | if (head) { |
| 141 | if (tcf_exts_get_net(&head->exts)) |
Cong Wang | aaa908f | 2018-05-23 15:26:53 -0700 | [diff] [blame] | 142 | tcf_queue_work(&head->rwork, cls_cgroup_destroy_work); |
Cong Wang | ed14816 | 2017-11-06 13:47:22 -0800 | [diff] [blame] | 143 | else |
| 144 | __cls_cgroup_destroy(head); |
| 145 | } |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 146 | } |
| 147 | |
Alexander Aring | 571acf2 | 2018-01-18 11:20:53 -0500 | [diff] [blame] | 148 | static int cls_cgroup_delete(struct tcf_proto *tp, void *arg, bool *last, |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 149 | bool rtnl_held, struct netlink_ext_ack *extack) |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 150 | { |
| 151 | return -EOPNOTSUPP; |
| 152 | } |
| 153 | |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 154 | static void cls_cgroup_walk(struct tcf_proto *tp, struct tcf_walker *arg, |
| 155 | bool rtnl_held) |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 156 | { |
John Fastabend | 952313b | 2014-09-12 20:06:26 -0700 | [diff] [blame] | 157 | struct cls_cgroup_head *head = rtnl_dereference(tp->root); |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 158 | |
| 159 | if (arg->count < arg->skip) |
| 160 | goto skip; |
| 161 | |
Vlad Buslov | 8b58d12 | 2019-02-15 17:18:44 +0200 | [diff] [blame] | 162 | if (!head) |
| 163 | return; |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 164 | if (arg->fn(tp, head, arg) < 0) { |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 165 | arg->stop = 1; |
| 166 | return; |
| 167 | } |
| 168 | skip: |
| 169 | arg->count++; |
| 170 | } |
| 171 | |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 172 | static int cls_cgroup_dump(struct net *net, struct tcf_proto *tp, void *fh, |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 173 | struct sk_buff *skb, struct tcmsg *t, bool rtnl_held) |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 174 | { |
John Fastabend | 952313b | 2014-09-12 20:06:26 -0700 | [diff] [blame] | 175 | struct cls_cgroup_head *head = rtnl_dereference(tp->root); |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 176 | struct nlattr *nest; |
| 177 | |
| 178 | t->tcm_handle = head->handle; |
| 179 | |
Michal Kubecek | ae0be8d | 2019-04-26 11:13:06 +0200 | [diff] [blame] | 180 | nest = nla_nest_start_noflag(skb, TCA_OPTIONS); |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 181 | if (nest == NULL) |
| 182 | goto nla_put_failure; |
| 183 | |
WANG Cong | 5da57f4 | 2013-12-15 20:15:07 -0800 | [diff] [blame] | 184 | if (tcf_exts_dump(skb, &head->exts) < 0 || |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 185 | 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 Cong | 5da57f4 | 2013-12-15 20:15:07 -0800 | [diff] [blame] | 190 | if (tcf_exts_dump_stats(skb, &head->exts) < 0) |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 191 | goto nla_put_failure; |
| 192 | |
| 193 | return skb->len; |
| 194 | |
| 195 | nla_put_failure: |
Jiri Pirko | 6ea3b44 | 2014-12-09 22:23:29 +0100 | [diff] [blame] | 196 | nla_nest_cancel(skb, nest); |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 197 | return -1; |
| 198 | } |
| 199 | |
| 200 | static 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 Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 207 | .delete = cls_cgroup_delete, |
| 208 | .walk = cls_cgroup_walk, |
| 209 | .dump = cls_cgroup_dump, |
| 210 | .owner = THIS_MODULE, |
| 211 | }; |
| 212 | |
| 213 | static int __init init_cgroup_cls(void) |
| 214 | { |
Daniel Borkmann | fe1217c | 2013-12-29 18:27:10 +0100 | [diff] [blame] | 215 | return register_tcf_proto_ops(&cls_cgroup_ops); |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 216 | } |
| 217 | |
| 218 | static void __exit exit_cgroup_cls(void) |
| 219 | { |
| 220 | unregister_tcf_proto_ops(&cls_cgroup_ops); |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 221 | } |
| 222 | |
| 223 | module_init(init_cgroup_cls); |
| 224 | module_exit(exit_cgroup_cls); |
| 225 | MODULE_LICENSE("GPL"); |