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, |
Alexander Aring | 7306db3 | 2018-01-18 11:20:51 -0500 | [diff] [blame] | 81 | void **arg, bool ovr, |
| 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 | |
WANG Cong | b9a24bb | 2016-08-19 12:36:54 -0700 | [diff] [blame] | 102 | err = tcf_exts_init(&new->exts, TCA_CGROUP_ACT, TCA_CGROUP_POLICE); |
| 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; |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 107 | err = nla_parse_nested(tb, TCA_CGROUP_MAX, tca[TCA_OPTIONS], |
Johannes Berg | fceb643 | 2017-04-12 14:34:07 +0200 | [diff] [blame] | 108 | cgroup_policy, NULL); |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 109 | if (err < 0) |
John Fastabend | d14cbfc8 | 2014-09-15 23:31:17 -0700 | [diff] [blame] | 110 | goto errout; |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 111 | |
Alexander Aring | 50a5619 | 2018-01-18 11:20:52 -0500 | [diff] [blame] | 112 | err = tcf_exts_validate(net, tp, tb, tca[TCA_RATE], &new->exts, ovr, |
| 113 | extack); |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 114 | if (err < 0) |
John Fastabend | d14cbfc8 | 2014-09-15 23:31:17 -0700 | [diff] [blame] | 115 | goto errout; |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 116 | |
Jiri Pirko | 4ebc1e3 | 2017-08-04 14:28:57 +0200 | [diff] [blame] | 117 | err = tcf_em_tree_validate(tp, tb[TCA_CGROUP_EMATCHES], &new->ematches); |
Jiri Pirko | 8cc6251 | 2017-08-04 14:29:11 +0200 | [diff] [blame] | 118 | if (err < 0) |
John Fastabend | d14cbfc8 | 2014-09-15 23:31:17 -0700 | [diff] [blame] | 119 | goto errout; |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 120 | |
John Fastabend | 952313b | 2014-09-12 20:06:26 -0700 | [diff] [blame] | 121 | rcu_assign_pointer(tp->root, new); |
Cong Wang | ed14816 | 2017-11-06 13:47:22 -0800 | [diff] [blame] | 122 | if (head) { |
| 123 | tcf_exts_get_net(&head->exts); |
Cong Wang | aaa908f | 2018-05-23 15:26:53 -0700 | [diff] [blame] | 124 | tcf_queue_work(&head->rwork, cls_cgroup_destroy_work); |
Cong Wang | ed14816 | 2017-11-06 13:47:22 -0800 | [diff] [blame] | 125 | } |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 126 | return 0; |
John Fastabend | d14cbfc8 | 2014-09-15 23:31:17 -0700 | [diff] [blame] | 127 | errout: |
WANG Cong | b9a24bb | 2016-08-19 12:36:54 -0700 | [diff] [blame] | 128 | tcf_exts_destroy(&new->exts); |
John Fastabend | d14cbfc8 | 2014-09-15 23:31:17 -0700 | [diff] [blame] | 129 | kfree(new); |
| 130 | return err; |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 131 | } |
| 132 | |
Jakub Kicinski | 715df5e | 2018-01-24 12:54:13 -0800 | [diff] [blame] | 133 | static void cls_cgroup_destroy(struct tcf_proto *tp, |
| 134 | struct netlink_ext_ack *extack) |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 135 | { |
John Fastabend | 952313b | 2014-09-12 20:06:26 -0700 | [diff] [blame] | 136 | struct cls_cgroup_head *head = rtnl_dereference(tp->root); |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 137 | |
Daniel Borkmann | d936377 | 2016-11-27 01:18:01 +0100 | [diff] [blame] | 138 | /* Head can still be NULL due to cls_cgroup_init(). */ |
Cong Wang | ed14816 | 2017-11-06 13:47:22 -0800 | [diff] [blame] | 139 | if (head) { |
| 140 | if (tcf_exts_get_net(&head->exts)) |
Cong Wang | aaa908f | 2018-05-23 15:26:53 -0700 | [diff] [blame] | 141 | tcf_queue_work(&head->rwork, cls_cgroup_destroy_work); |
Cong Wang | ed14816 | 2017-11-06 13:47:22 -0800 | [diff] [blame] | 142 | else |
| 143 | __cls_cgroup_destroy(head); |
| 144 | } |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 145 | } |
| 146 | |
Alexander Aring | 571acf2 | 2018-01-18 11:20:53 -0500 | [diff] [blame] | 147 | static int cls_cgroup_delete(struct tcf_proto *tp, void *arg, bool *last, |
| 148 | struct netlink_ext_ack *extack) |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 149 | { |
| 150 | return -EOPNOTSUPP; |
| 151 | } |
| 152 | |
| 153 | static void cls_cgroup_walk(struct tcf_proto *tp, struct tcf_walker *arg) |
| 154 | { |
John Fastabend | 952313b | 2014-09-12 20:06:26 -0700 | [diff] [blame] | 155 | struct cls_cgroup_head *head = rtnl_dereference(tp->root); |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 156 | |
| 157 | if (arg->count < arg->skip) |
| 158 | goto skip; |
| 159 | |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 160 | if (arg->fn(tp, head, arg) < 0) { |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 161 | arg->stop = 1; |
| 162 | return; |
| 163 | } |
| 164 | skip: |
| 165 | arg->count++; |
| 166 | } |
| 167 | |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 168 | static int cls_cgroup_dump(struct net *net, struct tcf_proto *tp, void *fh, |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 169 | struct sk_buff *skb, struct tcmsg *t) |
| 170 | { |
John Fastabend | 952313b | 2014-09-12 20:06:26 -0700 | [diff] [blame] | 171 | struct cls_cgroup_head *head = rtnl_dereference(tp->root); |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 172 | struct nlattr *nest; |
| 173 | |
| 174 | t->tcm_handle = head->handle; |
| 175 | |
| 176 | nest = nla_nest_start(skb, TCA_OPTIONS); |
| 177 | if (nest == NULL) |
| 178 | goto nla_put_failure; |
| 179 | |
WANG Cong | 5da57f4 | 2013-12-15 20:15:07 -0800 | [diff] [blame] | 180 | if (tcf_exts_dump(skb, &head->exts) < 0 || |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 181 | tcf_em_tree_dump(skb, &head->ematches, TCA_CGROUP_EMATCHES) < 0) |
| 182 | goto nla_put_failure; |
| 183 | |
| 184 | nla_nest_end(skb, nest); |
| 185 | |
WANG Cong | 5da57f4 | 2013-12-15 20:15:07 -0800 | [diff] [blame] | 186 | if (tcf_exts_dump_stats(skb, &head->exts) < 0) |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 187 | goto nla_put_failure; |
| 188 | |
| 189 | return skb->len; |
| 190 | |
| 191 | nla_put_failure: |
Jiri Pirko | 6ea3b44 | 2014-12-09 22:23:29 +0100 | [diff] [blame] | 192 | nla_nest_cancel(skb, nest); |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 193 | return -1; |
| 194 | } |
| 195 | |
| 196 | static struct tcf_proto_ops cls_cgroup_ops __read_mostly = { |
| 197 | .kind = "cgroup", |
| 198 | .init = cls_cgroup_init, |
| 199 | .change = cls_cgroup_change, |
| 200 | .classify = cls_cgroup_classify, |
| 201 | .destroy = cls_cgroup_destroy, |
| 202 | .get = cls_cgroup_get, |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 203 | .delete = cls_cgroup_delete, |
| 204 | .walk = cls_cgroup_walk, |
| 205 | .dump = cls_cgroup_dump, |
| 206 | .owner = THIS_MODULE, |
| 207 | }; |
| 208 | |
| 209 | static int __init init_cgroup_cls(void) |
| 210 | { |
Daniel Borkmann | fe1217c | 2013-12-29 18:27:10 +0100 | [diff] [blame] | 211 | return register_tcf_proto_ops(&cls_cgroup_ops); |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 212 | } |
| 213 | |
| 214 | static void __exit exit_cgroup_cls(void) |
| 215 | { |
| 216 | unregister_tcf_proto_ops(&cls_cgroup_ops); |
Thomas Graf | f400923 | 2008-11-07 22:56:00 -0800 | [diff] [blame] | 217 | } |
| 218 | |
| 219 | module_init(init_cgroup_cls); |
| 220 | module_exit(exit_cgroup_cls); |
| 221 | MODULE_LICENSE("GPL"); |