Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * net/sched/cls_api.c Packet classifier API. |
| 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: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru> |
| 10 | * |
| 11 | * Changes: |
| 12 | * |
| 13 | * Eduardo J. Blanco <ejbs@netlabs.com.uy> :990222: kmod support |
| 14 | * |
| 15 | */ |
| 16 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/module.h> |
| 18 | #include <linux/types.h> |
| 19 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/string.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/errno.h> |
Jiri Pirko | 33a4892 | 2017-02-09 14:38:57 +0100 | [diff] [blame] | 22 | #include <linux/err.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <linux/skbuff.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/init.h> |
| 25 | #include <linux/kmod.h> |
Patrick McHardy | ab27cfb | 2008-01-23 20:33:13 -0800 | [diff] [blame] | 26 | #include <linux/err.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 27 | #include <linux/slab.h> |
Denis V. Lunev | b854272 | 2007-12-01 00:21:31 +1100 | [diff] [blame] | 28 | #include <net/net_namespace.h> |
| 29 | #include <net/sock.h> |
Arnaldo Carvalho de Melo | dc5fc57 | 2007-03-25 23:06:12 -0700 | [diff] [blame] | 30 | #include <net/netlink.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <net/pkt_sched.h> |
| 32 | #include <net/pkt_cls.h> |
| 33 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | /* The list of all installed classifier types */ |
WANG Cong | 3627287 | 2013-12-15 20:15:11 -0800 | [diff] [blame] | 35 | static LIST_HEAD(tcf_proto_base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | |
| 37 | /* Protects list of registered TC modules. It is pure SMP lock. */ |
| 38 | static DEFINE_RWLOCK(cls_mod_lock); |
| 39 | |
| 40 | /* Find classifier type by string name */ |
| 41 | |
Jiri Pirko | 33a4892 | 2017-02-09 14:38:57 +0100 | [diff] [blame] | 42 | static const struct tcf_proto_ops *tcf_proto_lookup_ops(const char *kind) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | { |
Eric Dumazet | dcd7608 | 2013-12-20 10:04:18 -0800 | [diff] [blame] | 44 | const struct tcf_proto_ops *t, *res = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
| 46 | if (kind) { |
| 47 | read_lock(&cls_mod_lock); |
WANG Cong | 3627287 | 2013-12-15 20:15:11 -0800 | [diff] [blame] | 48 | list_for_each_entry(t, &tcf_proto_base, head) { |
Jiri Pirko | 33a4892 | 2017-02-09 14:38:57 +0100 | [diff] [blame] | 49 | if (strcmp(kind, t->kind) == 0) { |
Eric Dumazet | dcd7608 | 2013-12-20 10:04:18 -0800 | [diff] [blame] | 50 | if (try_module_get(t->owner)) |
| 51 | res = t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | break; |
| 53 | } |
| 54 | } |
| 55 | read_unlock(&cls_mod_lock); |
| 56 | } |
Eric Dumazet | dcd7608 | 2013-12-20 10:04:18 -0800 | [diff] [blame] | 57 | return res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | } |
| 59 | |
| 60 | /* Register(unregister) new classifier type */ |
| 61 | |
| 62 | int register_tcf_proto_ops(struct tcf_proto_ops *ops) |
| 63 | { |
WANG Cong | 3627287 | 2013-12-15 20:15:11 -0800 | [diff] [blame] | 64 | struct tcf_proto_ops *t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | int rc = -EEXIST; |
| 66 | |
| 67 | write_lock(&cls_mod_lock); |
WANG Cong | 3627287 | 2013-12-15 20:15:11 -0800 | [diff] [blame] | 68 | list_for_each_entry(t, &tcf_proto_base, head) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | if (!strcmp(ops->kind, t->kind)) |
| 70 | goto out; |
| 71 | |
WANG Cong | 3627287 | 2013-12-15 20:15:11 -0800 | [diff] [blame] | 72 | list_add_tail(&ops->head, &tcf_proto_base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | rc = 0; |
| 74 | out: |
| 75 | write_unlock(&cls_mod_lock); |
| 76 | return rc; |
| 77 | } |
Stephen Hemminger | aa767bf | 2008-01-21 02:26:41 -0800 | [diff] [blame] | 78 | EXPORT_SYMBOL(register_tcf_proto_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
| 80 | int unregister_tcf_proto_ops(struct tcf_proto_ops *ops) |
| 81 | { |
WANG Cong | 3627287 | 2013-12-15 20:15:11 -0800 | [diff] [blame] | 82 | struct tcf_proto_ops *t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | int rc = -ENOENT; |
| 84 | |
Daniel Borkmann | c78e174 | 2015-05-20 17:13:33 +0200 | [diff] [blame] | 85 | /* Wait for outstanding call_rcu()s, if any, from a |
| 86 | * tcf_proto_ops's destroy() handler. |
| 87 | */ |
| 88 | rcu_barrier(); |
| 89 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | write_lock(&cls_mod_lock); |
Eric Dumazet | dcd7608 | 2013-12-20 10:04:18 -0800 | [diff] [blame] | 91 | list_for_each_entry(t, &tcf_proto_base, head) { |
| 92 | if (t == ops) { |
| 93 | list_del(&t->head); |
| 94 | rc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | break; |
Eric Dumazet | dcd7608 | 2013-12-20 10:04:18 -0800 | [diff] [blame] | 96 | } |
| 97 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | write_unlock(&cls_mod_lock); |
| 99 | return rc; |
| 100 | } |
Stephen Hemminger | aa767bf | 2008-01-21 02:26:41 -0800 | [diff] [blame] | 101 | EXPORT_SYMBOL(unregister_tcf_proto_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | |
Tom Goff | 7316ae8 | 2010-03-19 15:40:13 +0000 | [diff] [blame] | 103 | static int tfilter_notify(struct net *net, struct sk_buff *oskb, |
| 104 | struct nlmsghdr *n, struct tcf_proto *tp, |
Eric Dumazet | fa59b27 | 2016-10-09 20:25:55 -0700 | [diff] [blame] | 105 | unsigned long fh, int event, bool unicast); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | |
WANG Cong | 54df2cf | 2017-08-04 21:31:42 -0700 | [diff] [blame^] | 107 | static int tfilter_del_notify(struct net *net, struct sk_buff *oskb, |
| 108 | struct nlmsghdr *n, struct tcf_proto *tp, |
| 109 | unsigned long fh, bool unicast, bool *last); |
| 110 | |
Daniel Borkmann | ea7f827 | 2016-06-10 23:10:22 +0200 | [diff] [blame] | 111 | static void tfilter_notify_chain(struct net *net, struct sk_buff *oskb, |
| 112 | struct nlmsghdr *n, |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 113 | struct tcf_chain *chain, int event) |
Daniel Borkmann | ea7f827 | 2016-06-10 23:10:22 +0200 | [diff] [blame] | 114 | { |
Daniel Borkmann | ea7f827 | 2016-06-10 23:10:22 +0200 | [diff] [blame] | 115 | struct tcf_proto *tp; |
| 116 | |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 117 | for (tp = rtnl_dereference(chain->filter_chain); |
| 118 | tp; tp = rtnl_dereference(tp->next)) |
Roman Mashak | 19a8bb2 | 2016-11-22 20:57:04 -0500 | [diff] [blame] | 119 | tfilter_notify(net, oskb, n, tp, 0, event, false); |
Daniel Borkmann | ea7f827 | 2016-06-10 23:10:22 +0200 | [diff] [blame] | 120 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | |
| 122 | /* Select new prio value from the range, managed by kernel. */ |
| 123 | |
Stephen Hemminger | aa767bf | 2008-01-21 02:26:41 -0800 | [diff] [blame] | 124 | static inline u32 tcf_auto_prio(struct tcf_proto *tp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | { |
Stephen Hemminger | aa767bf | 2008-01-21 02:26:41 -0800 | [diff] [blame] | 126 | u32 first = TC_H_MAKE(0xC0000000U, 0U); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | |
| 128 | if (tp) |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 129 | first = tp->prio - 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | |
Jiri Pirko | 7961973 | 2017-05-17 11:07:58 +0200 | [diff] [blame] | 131 | return TC_H_MAJ(first); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | } |
| 133 | |
Jiri Pirko | 33a4892 | 2017-02-09 14:38:57 +0100 | [diff] [blame] | 134 | static struct tcf_proto *tcf_proto_create(const char *kind, u32 protocol, |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 135 | u32 prio, u32 parent, struct Qdisc *q, |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 136 | struct tcf_chain *chain) |
Jiri Pirko | 33a4892 | 2017-02-09 14:38:57 +0100 | [diff] [blame] | 137 | { |
| 138 | struct tcf_proto *tp; |
| 139 | int err; |
| 140 | |
| 141 | tp = kzalloc(sizeof(*tp), GFP_KERNEL); |
| 142 | if (!tp) |
| 143 | return ERR_PTR(-ENOBUFS); |
| 144 | |
| 145 | err = -ENOENT; |
| 146 | tp->ops = tcf_proto_lookup_ops(kind); |
| 147 | if (!tp->ops) { |
| 148 | #ifdef CONFIG_MODULES |
| 149 | rtnl_unlock(); |
| 150 | request_module("cls_%s", kind); |
| 151 | rtnl_lock(); |
| 152 | tp->ops = tcf_proto_lookup_ops(kind); |
| 153 | /* We dropped the RTNL semaphore in order to perform |
| 154 | * the module load. So, even if we succeeded in loading |
| 155 | * the module we have to replay the request. We indicate |
| 156 | * this using -EAGAIN. |
| 157 | */ |
| 158 | if (tp->ops) { |
| 159 | module_put(tp->ops->owner); |
| 160 | err = -EAGAIN; |
| 161 | } else { |
| 162 | err = -ENOENT; |
| 163 | } |
| 164 | goto errout; |
| 165 | #endif |
| 166 | } |
| 167 | tp->classify = tp->ops->classify; |
| 168 | tp->protocol = protocol; |
| 169 | tp->prio = prio; |
| 170 | tp->classid = parent; |
| 171 | tp->q = q; |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 172 | tp->chain = chain; |
Jiri Pirko | 33a4892 | 2017-02-09 14:38:57 +0100 | [diff] [blame] | 173 | |
| 174 | err = tp->ops->init(tp); |
| 175 | if (err) { |
| 176 | module_put(tp->ops->owner); |
| 177 | goto errout; |
| 178 | } |
| 179 | return tp; |
| 180 | |
| 181 | errout: |
| 182 | kfree(tp); |
| 183 | return ERR_PTR(err); |
| 184 | } |
| 185 | |
WANG Cong | 763dbf6 | 2017-04-19 14:21:21 -0700 | [diff] [blame] | 186 | static void tcf_proto_destroy(struct tcf_proto *tp) |
Jiri Pirko | cf1facd | 2017-02-09 14:38:56 +0100 | [diff] [blame] | 187 | { |
WANG Cong | 763dbf6 | 2017-04-19 14:21:21 -0700 | [diff] [blame] | 188 | tp->ops->destroy(tp); |
| 189 | module_put(tp->ops->owner); |
| 190 | kfree_rcu(tp, rcu); |
Jiri Pirko | cf1facd | 2017-02-09 14:38:56 +0100 | [diff] [blame] | 191 | } |
| 192 | |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 193 | static struct tcf_chain *tcf_chain_create(struct tcf_block *block, |
| 194 | u32 chain_index) |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 195 | { |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 196 | struct tcf_chain *chain; |
| 197 | |
| 198 | chain = kzalloc(sizeof(*chain), GFP_KERNEL); |
| 199 | if (!chain) |
| 200 | return NULL; |
| 201 | list_add_tail(&chain->list, &block->chain_list); |
| 202 | chain->block = block; |
| 203 | chain->index = chain_index; |
| 204 | chain->refcnt = 1; |
| 205 | return chain; |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 206 | } |
| 207 | |
Jiri Pirko | f93e1cd | 2017-05-20 15:01:32 +0200 | [diff] [blame] | 208 | static void tcf_chain_flush(struct tcf_chain *chain) |
Jiri Pirko | cf1facd | 2017-02-09 14:38:56 +0100 | [diff] [blame] | 209 | { |
| 210 | struct tcf_proto *tp; |
| 211 | |
Jiri Pirko | f93e1cd | 2017-05-20 15:01:32 +0200 | [diff] [blame] | 212 | if (*chain->p_filter_chain) |
| 213 | RCU_INIT_POINTER(*chain->p_filter_chain, NULL); |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 214 | while ((tp = rtnl_dereference(chain->filter_chain)) != NULL) { |
| 215 | RCU_INIT_POINTER(chain->filter_chain, tp->next); |
WANG Cong | 763dbf6 | 2017-04-19 14:21:21 -0700 | [diff] [blame] | 216 | tcf_proto_destroy(tp); |
Jiri Pirko | cf1facd | 2017-02-09 14:38:56 +0100 | [diff] [blame] | 217 | } |
Jiri Pirko | f93e1cd | 2017-05-20 15:01:32 +0200 | [diff] [blame] | 218 | } |
| 219 | |
| 220 | static void tcf_chain_destroy(struct tcf_chain *chain) |
| 221 | { |
| 222 | list_del(&chain->list); |
| 223 | tcf_chain_flush(chain); |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 224 | kfree(chain); |
| 225 | } |
| 226 | |
WANG Cong | 367a8ce | 2017-05-23 09:42:37 -0700 | [diff] [blame] | 227 | struct tcf_chain *tcf_chain_get(struct tcf_block *block, u32 chain_index, |
| 228 | bool create) |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 229 | { |
| 230 | struct tcf_chain *chain; |
| 231 | |
| 232 | list_for_each_entry(chain, &block->chain_list, list) { |
| 233 | if (chain->index == chain_index) { |
| 234 | chain->refcnt++; |
| 235 | return chain; |
| 236 | } |
| 237 | } |
WANG Cong | 367a8ce | 2017-05-23 09:42:37 -0700 | [diff] [blame] | 238 | if (create) |
| 239 | return tcf_chain_create(block, chain_index); |
| 240 | else |
| 241 | return NULL; |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 242 | } |
| 243 | EXPORT_SYMBOL(tcf_chain_get); |
| 244 | |
| 245 | void tcf_chain_put(struct tcf_chain *chain) |
| 246 | { |
| 247 | /* Destroy unused chain, with exception of chain 0, which is the |
| 248 | * default one and has to be always present. |
| 249 | */ |
| 250 | if (--chain->refcnt == 0 && !chain->filter_chain && chain->index != 0) |
| 251 | tcf_chain_destroy(chain); |
| 252 | } |
| 253 | EXPORT_SYMBOL(tcf_chain_put); |
| 254 | |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 255 | static void |
| 256 | tcf_chain_filter_chain_ptr_set(struct tcf_chain *chain, |
| 257 | struct tcf_proto __rcu **p_filter_chain) |
| 258 | { |
| 259 | chain->p_filter_chain = p_filter_chain; |
Jiri Pirko | cf1facd | 2017-02-09 14:38:56 +0100 | [diff] [blame] | 260 | } |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 261 | |
| 262 | int tcf_block_get(struct tcf_block **p_block, |
| 263 | struct tcf_proto __rcu **p_filter_chain) |
| 264 | { |
| 265 | struct tcf_block *block = kzalloc(sizeof(*block), GFP_KERNEL); |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 266 | struct tcf_chain *chain; |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 267 | int err; |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 268 | |
| 269 | if (!block) |
| 270 | return -ENOMEM; |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 271 | INIT_LIST_HEAD(&block->chain_list); |
| 272 | /* Create chain 0 by default, it has to be always present. */ |
| 273 | chain = tcf_chain_create(block, 0); |
| 274 | if (!chain) { |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 275 | err = -ENOMEM; |
| 276 | goto err_chain_create; |
| 277 | } |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 278 | tcf_chain_filter_chain_ptr_set(chain, p_filter_chain); |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 279 | *p_block = block; |
| 280 | return 0; |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 281 | |
| 282 | err_chain_create: |
| 283 | kfree(block); |
| 284 | return err; |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 285 | } |
| 286 | EXPORT_SYMBOL(tcf_block_get); |
| 287 | |
| 288 | void tcf_block_put(struct tcf_block *block) |
| 289 | { |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 290 | struct tcf_chain *chain, *tmp; |
| 291 | |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 292 | if (!block) |
| 293 | return; |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 294 | |
| 295 | list_for_each_entry_safe(chain, tmp, &block->chain_list, list) |
| 296 | tcf_chain_destroy(chain); |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 297 | kfree(block); |
| 298 | } |
| 299 | EXPORT_SYMBOL(tcf_block_put); |
Jiri Pirko | cf1facd | 2017-02-09 14:38:56 +0100 | [diff] [blame] | 300 | |
Jiri Pirko | 87d8309 | 2017-05-17 11:07:54 +0200 | [diff] [blame] | 301 | /* Main classifier routine: scans classifier chain attached |
| 302 | * to this qdisc, (optionally) tests for protocol and asks |
| 303 | * specific classifiers. |
| 304 | */ |
| 305 | int tcf_classify(struct sk_buff *skb, const struct tcf_proto *tp, |
| 306 | struct tcf_result *res, bool compat_mode) |
| 307 | { |
| 308 | __be16 protocol = tc_skb_protocol(skb); |
| 309 | #ifdef CONFIG_NET_CLS_ACT |
| 310 | const int max_reclassify_loop = 4; |
Jiri Pirko | ee538dc | 2017-05-23 09:11:59 +0200 | [diff] [blame] | 311 | const struct tcf_proto *orig_tp = tp; |
| 312 | const struct tcf_proto *first_tp; |
Jiri Pirko | 87d8309 | 2017-05-17 11:07:54 +0200 | [diff] [blame] | 313 | int limit = 0; |
| 314 | |
| 315 | reclassify: |
| 316 | #endif |
| 317 | for (; tp; tp = rcu_dereference_bh(tp->next)) { |
| 318 | int err; |
| 319 | |
| 320 | if (tp->protocol != protocol && |
| 321 | tp->protocol != htons(ETH_P_ALL)) |
| 322 | continue; |
| 323 | |
| 324 | err = tp->classify(skb, tp, res); |
| 325 | #ifdef CONFIG_NET_CLS_ACT |
Jiri Pirko | db50514 | 2017-05-17 11:08:03 +0200 | [diff] [blame] | 326 | if (unlikely(err == TC_ACT_RECLASSIFY && !compat_mode)) { |
Jiri Pirko | ee538dc | 2017-05-23 09:11:59 +0200 | [diff] [blame] | 327 | first_tp = orig_tp; |
Jiri Pirko | 87d8309 | 2017-05-17 11:07:54 +0200 | [diff] [blame] | 328 | goto reset; |
Jiri Pirko | db50514 | 2017-05-17 11:08:03 +0200 | [diff] [blame] | 329 | } else if (unlikely(TC_ACT_EXT_CMP(err, TC_ACT_GOTO_CHAIN))) { |
Jiri Pirko | ee538dc | 2017-05-23 09:11:59 +0200 | [diff] [blame] | 330 | first_tp = res->goto_tp; |
Jiri Pirko | db50514 | 2017-05-17 11:08:03 +0200 | [diff] [blame] | 331 | goto reset; |
| 332 | } |
Jiri Pirko | 87d8309 | 2017-05-17 11:07:54 +0200 | [diff] [blame] | 333 | #endif |
| 334 | if (err >= 0) |
| 335 | return err; |
| 336 | } |
| 337 | |
| 338 | return TC_ACT_UNSPEC; /* signal: continue lookup */ |
| 339 | #ifdef CONFIG_NET_CLS_ACT |
| 340 | reset: |
| 341 | if (unlikely(limit++ >= max_reclassify_loop)) { |
| 342 | net_notice_ratelimited("%s: reclassify loop, rule prio %u, protocol %02x\n", |
| 343 | tp->q->ops->id, tp->prio & 0xffff, |
| 344 | ntohs(tp->protocol)); |
| 345 | return TC_ACT_SHOT; |
| 346 | } |
| 347 | |
Jiri Pirko | ee538dc | 2017-05-23 09:11:59 +0200 | [diff] [blame] | 348 | tp = first_tp; |
Jiri Pirko | 87d8309 | 2017-05-17 11:07:54 +0200 | [diff] [blame] | 349 | protocol = tc_skb_protocol(skb); |
| 350 | goto reclassify; |
| 351 | #endif |
| 352 | } |
| 353 | EXPORT_SYMBOL(tcf_classify); |
| 354 | |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 355 | struct tcf_chain_info { |
| 356 | struct tcf_proto __rcu **pprev; |
| 357 | struct tcf_proto __rcu *next; |
| 358 | }; |
| 359 | |
| 360 | static struct tcf_proto *tcf_chain_tp_prev(struct tcf_chain_info *chain_info) |
| 361 | { |
| 362 | return rtnl_dereference(*chain_info->pprev); |
| 363 | } |
| 364 | |
| 365 | static void tcf_chain_tp_insert(struct tcf_chain *chain, |
| 366 | struct tcf_chain_info *chain_info, |
| 367 | struct tcf_proto *tp) |
| 368 | { |
| 369 | if (chain->p_filter_chain && |
| 370 | *chain_info->pprev == chain->filter_chain) |
Jiri Pirko | 31efcc2 | 2017-05-20 15:01:31 +0200 | [diff] [blame] | 371 | rcu_assign_pointer(*chain->p_filter_chain, tp); |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 372 | RCU_INIT_POINTER(tp->next, tcf_chain_tp_prev(chain_info)); |
| 373 | rcu_assign_pointer(*chain_info->pprev, tp); |
| 374 | } |
| 375 | |
| 376 | static void tcf_chain_tp_remove(struct tcf_chain *chain, |
| 377 | struct tcf_chain_info *chain_info, |
| 378 | struct tcf_proto *tp) |
| 379 | { |
| 380 | struct tcf_proto *next = rtnl_dereference(chain_info->next); |
| 381 | |
| 382 | if (chain->p_filter_chain && tp == chain->filter_chain) |
Jiri Pirko | 31efcc2 | 2017-05-20 15:01:31 +0200 | [diff] [blame] | 383 | RCU_INIT_POINTER(*chain->p_filter_chain, next); |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 384 | RCU_INIT_POINTER(*chain_info->pprev, next); |
| 385 | } |
| 386 | |
| 387 | static struct tcf_proto *tcf_chain_tp_find(struct tcf_chain *chain, |
| 388 | struct tcf_chain_info *chain_info, |
| 389 | u32 protocol, u32 prio, |
| 390 | bool prio_allocate) |
| 391 | { |
| 392 | struct tcf_proto **pprev; |
| 393 | struct tcf_proto *tp; |
| 394 | |
| 395 | /* Check the chain for existence of proto-tcf with this priority */ |
| 396 | for (pprev = &chain->filter_chain; |
| 397 | (tp = rtnl_dereference(*pprev)); pprev = &tp->next) { |
| 398 | if (tp->prio >= prio) { |
| 399 | if (tp->prio == prio) { |
| 400 | if (prio_allocate || |
| 401 | (tp->protocol != protocol && protocol)) |
| 402 | return ERR_PTR(-EINVAL); |
| 403 | } else { |
| 404 | tp = NULL; |
| 405 | } |
| 406 | break; |
| 407 | } |
| 408 | } |
| 409 | chain_info->pprev = pprev; |
| 410 | chain_info->next = tp ? tp->next : NULL; |
| 411 | return tp; |
| 412 | } |
| 413 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | /* Add/change/delete/get a filter node */ |
| 415 | |
David Ahern | c21ef3e | 2017-04-16 09:48:24 -0700 | [diff] [blame] | 416 | static int tc_ctl_tfilter(struct sk_buff *skb, struct nlmsghdr *n, |
| 417 | struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 419 | struct net *net = sock_net(skb->sk); |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 420 | struct nlattr *tca[TCA_MAX + 1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | struct tcmsg *t; |
| 422 | u32 protocol; |
| 423 | u32 prio; |
Jiri Pirko | 9d36d9e | 2017-05-17 11:07:57 +0200 | [diff] [blame] | 424 | bool prio_allocate; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | u32 parent; |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 426 | u32 chain_index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | struct net_device *dev; |
| 428 | struct Qdisc *q; |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 429 | struct tcf_chain_info chain_info; |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 430 | struct tcf_chain *chain = NULL; |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 431 | struct tcf_block *block; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | struct tcf_proto *tp; |
Eric Dumazet | 20fea08 | 2007-11-14 01:44:41 -0800 | [diff] [blame] | 433 | const struct Qdisc_class_ops *cops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | unsigned long cl; |
| 435 | unsigned long fh; |
| 436 | int err; |
Daniel Borkmann | 628185c | 2016-12-21 18:04:11 +0100 | [diff] [blame] | 437 | int tp_created; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | |
Stéphane Graber | 4e8bbb8 | 2014-04-30 11:25:43 -0400 | [diff] [blame] | 439 | if ((n->nlmsg_type != RTM_GETTFILTER) && |
David S. Miller | 5f013c9b | 2014-05-12 13:19:14 -0400 | [diff] [blame] | 440 | !netlink_ns_capable(skb, net->user_ns, CAP_NET_ADMIN)) |
Eric W. Biederman | dfc47ef | 2012-11-16 03:03:00 +0000 | [diff] [blame] | 441 | return -EPERM; |
Hong zhi guo | de179c8 | 2013-03-25 17:36:33 +0000 | [diff] [blame] | 442 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | replay: |
Daniel Borkmann | 628185c | 2016-12-21 18:04:11 +0100 | [diff] [blame] | 444 | tp_created = 0; |
| 445 | |
David Ahern | c21ef3e | 2017-04-16 09:48:24 -0700 | [diff] [blame] | 446 | err = nlmsg_parse(n, sizeof(*t), tca, TCA_MAX, NULL, extack); |
Hong zhi guo | de179c8 | 2013-03-25 17:36:33 +0000 | [diff] [blame] | 447 | if (err < 0) |
| 448 | return err; |
| 449 | |
David S. Miller | 942b816 | 2012-06-26 21:48:50 -0700 | [diff] [blame] | 450 | t = nlmsg_data(n); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | protocol = TC_H_MIN(t->tcm_info); |
| 452 | prio = TC_H_MAJ(t->tcm_info); |
Jiri Pirko | 9d36d9e | 2017-05-17 11:07:57 +0200 | [diff] [blame] | 453 | prio_allocate = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | parent = t->tcm_parent; |
| 455 | cl = 0; |
| 456 | |
| 457 | if (prio == 0) { |
Daniel Borkmann | ea7f827 | 2016-06-10 23:10:22 +0200 | [diff] [blame] | 458 | switch (n->nlmsg_type) { |
| 459 | case RTM_DELTFILTER: |
Daniel Borkmann | 9f6ed03 | 2016-06-16 23:19:29 +0200 | [diff] [blame] | 460 | if (protocol || t->tcm_handle || tca[TCA_KIND]) |
Daniel Borkmann | ea7f827 | 2016-06-10 23:10:22 +0200 | [diff] [blame] | 461 | return -ENOENT; |
| 462 | break; |
| 463 | case RTM_NEWTFILTER: |
| 464 | /* If no priority is provided by the user, |
| 465 | * we allocate one. |
| 466 | */ |
| 467 | if (n->nlmsg_flags & NLM_F_CREATE) { |
| 468 | prio = TC_H_MAKE(0x80000000U, 0U); |
Jiri Pirko | 9d36d9e | 2017-05-17 11:07:57 +0200 | [diff] [blame] | 469 | prio_allocate = true; |
Daniel Borkmann | ea7f827 | 2016-06-10 23:10:22 +0200 | [diff] [blame] | 470 | break; |
| 471 | } |
| 472 | /* fall-through */ |
| 473 | default: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | return -ENOENT; |
Daniel Borkmann | ea7f827 | 2016-06-10 23:10:22 +0200 | [diff] [blame] | 475 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | } |
| 477 | |
| 478 | /* Find head of filter chain. */ |
| 479 | |
| 480 | /* Find link */ |
Tom Goff | 7316ae8 | 2010-03-19 15:40:13 +0000 | [diff] [blame] | 481 | dev = __dev_get_by_index(net, t->tcm_ifindex); |
Stephen Hemminger | aa767bf | 2008-01-21 02:26:41 -0800 | [diff] [blame] | 482 | if (dev == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | return -ENODEV; |
| 484 | |
| 485 | /* Find qdisc */ |
| 486 | if (!parent) { |
Patrick McHardy | af356af | 2009-09-04 06:41:18 +0000 | [diff] [blame] | 487 | q = dev->qdisc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | parent = q->handle; |
Stephen Hemminger | aa767bf | 2008-01-21 02:26:41 -0800 | [diff] [blame] | 489 | } else { |
| 490 | q = qdisc_lookup(dev, TC_H_MAJ(t->tcm_parent)); |
| 491 | if (q == NULL) |
| 492 | return -EINVAL; |
| 493 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | |
| 495 | /* Is it classful? */ |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 496 | cops = q->ops->cl_ops; |
| 497 | if (!cops) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | return -EINVAL; |
| 499 | |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 500 | if (!cops->tcf_block) |
Patrick McHardy | 71ebe5e | 2009-09-04 06:41:15 +0000 | [diff] [blame] | 501 | return -EOPNOTSUPP; |
| 502 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | /* Do we search for filter, attached to class? */ |
| 504 | if (TC_H_MIN(parent)) { |
| 505 | cl = cops->get(q, parent); |
| 506 | if (cl == 0) |
| 507 | return -ENOENT; |
| 508 | } |
| 509 | |
| 510 | /* And the last stroke */ |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 511 | block = cops->tcf_block(q, cl); |
| 512 | if (!block) { |
Jiri Pirko | 6bb16e7 | 2017-02-09 14:38:58 +0100 | [diff] [blame] | 513 | err = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | goto errout; |
Jiri Pirko | 6bb16e7 | 2017-02-09 14:38:58 +0100 | [diff] [blame] | 515 | } |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 516 | |
| 517 | chain_index = tca[TCA_CHAIN] ? nla_get_u32(tca[TCA_CHAIN]) : 0; |
| 518 | if (chain_index > TC_ACT_EXT_VAL_MASK) { |
| 519 | err = -EINVAL; |
| 520 | goto errout; |
| 521 | } |
WANG Cong | 367a8ce | 2017-05-23 09:42:37 -0700 | [diff] [blame] | 522 | chain = tcf_chain_get(block, chain_index, |
| 523 | n->nlmsg_type == RTM_NEWTFILTER); |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 524 | if (!chain) { |
WANG Cong | 367a8ce | 2017-05-23 09:42:37 -0700 | [diff] [blame] | 525 | err = n->nlmsg_type == RTM_NEWTFILTER ? -ENOMEM : -EINVAL; |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 526 | goto errout; |
| 527 | } |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 528 | |
Daniel Borkmann | ea7f827 | 2016-06-10 23:10:22 +0200 | [diff] [blame] | 529 | if (n->nlmsg_type == RTM_DELTFILTER && prio == 0) { |
| 530 | tfilter_notify_chain(net, skb, n, chain, RTM_DELTFILTER); |
Jiri Pirko | f93e1cd | 2017-05-20 15:01:32 +0200 | [diff] [blame] | 531 | tcf_chain_flush(chain); |
Daniel Borkmann | ea7f827 | 2016-06-10 23:10:22 +0200 | [diff] [blame] | 532 | err = 0; |
| 533 | goto errout; |
| 534 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 536 | tp = tcf_chain_tp_find(chain, &chain_info, protocol, |
| 537 | prio, prio_allocate); |
| 538 | if (IS_ERR(tp)) { |
| 539 | err = PTR_ERR(tp); |
| 540 | goto errout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | } |
| 542 | |
| 543 | if (tp == NULL) { |
| 544 | /* Proto-tcf does not exist, create new one */ |
| 545 | |
Jiri Pirko | 6bb16e7 | 2017-02-09 14:38:58 +0100 | [diff] [blame] | 546 | if (tca[TCA_KIND] == NULL || !protocol) { |
| 547 | err = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | goto errout; |
Jiri Pirko | 6bb16e7 | 2017-02-09 14:38:58 +0100 | [diff] [blame] | 549 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 551 | if (n->nlmsg_type != RTM_NEWTFILTER || |
Jiri Pirko | 6bb16e7 | 2017-02-09 14:38:58 +0100 | [diff] [blame] | 552 | !(n->nlmsg_flags & NLM_F_CREATE)) { |
| 553 | err = -ENOENT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | goto errout; |
Jiri Pirko | 6bb16e7 | 2017-02-09 14:38:58 +0100 | [diff] [blame] | 555 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | |
Jiri Pirko | 9d36d9e | 2017-05-17 11:07:57 +0200 | [diff] [blame] | 557 | if (prio_allocate) |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 558 | prio = tcf_auto_prio(tcf_chain_tp_prev(&chain_info)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | |
Jiri Pirko | 33a4892 | 2017-02-09 14:38:57 +0100 | [diff] [blame] | 560 | tp = tcf_proto_create(nla_data(tca[TCA_KIND]), |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 561 | protocol, prio, parent, q, chain); |
Jiri Pirko | 33a4892 | 2017-02-09 14:38:57 +0100 | [diff] [blame] | 562 | if (IS_ERR(tp)) { |
| 563 | err = PTR_ERR(tp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | goto errout; |
| 565 | } |
Minoru Usui | 12186be | 2009-06-02 02:17:34 -0700 | [diff] [blame] | 566 | tp_created = 1; |
Jiri Pirko | 6bb16e7 | 2017-02-09 14:38:58 +0100 | [diff] [blame] | 567 | } else if (tca[TCA_KIND] && nla_strcmp(tca[TCA_KIND], tp->ops->kind)) { |
| 568 | err = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | goto errout; |
Jiri Pirko | 6bb16e7 | 2017-02-09 14:38:58 +0100 | [diff] [blame] | 570 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | |
| 572 | fh = tp->ops->get(tp, t->tcm_handle); |
| 573 | |
| 574 | if (fh == 0) { |
| 575 | if (n->nlmsg_type == RTM_DELTFILTER && t->tcm_handle == 0) { |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 576 | tcf_chain_tp_remove(chain, &chain_info, tp); |
Eric Dumazet | fa59b27 | 2016-10-09 20:25:55 -0700 | [diff] [blame] | 577 | tfilter_notify(net, skb, n, tp, fh, |
| 578 | RTM_DELTFILTER, false); |
WANG Cong | 763dbf6 | 2017-04-19 14:21:21 -0700 | [diff] [blame] | 579 | tcf_proto_destroy(tp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | err = 0; |
| 581 | goto errout; |
| 582 | } |
| 583 | |
Stephen Hemminger | aa767bf | 2008-01-21 02:26:41 -0800 | [diff] [blame] | 584 | if (n->nlmsg_type != RTM_NEWTFILTER || |
Jiri Pirko | 6bb16e7 | 2017-02-09 14:38:58 +0100 | [diff] [blame] | 585 | !(n->nlmsg_flags & NLM_F_CREATE)) { |
| 586 | err = -ENOENT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | goto errout; |
Jiri Pirko | 6bb16e7 | 2017-02-09 14:38:58 +0100 | [diff] [blame] | 588 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | } else { |
WANG Cong | 763dbf6 | 2017-04-19 14:21:21 -0700 | [diff] [blame] | 590 | bool last; |
| 591 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | switch (n->nlmsg_type) { |
YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 593 | case RTM_NEWTFILTER: |
Minoru Usui | 12186be | 2009-06-02 02:17:34 -0700 | [diff] [blame] | 594 | if (n->nlmsg_flags & NLM_F_EXCL) { |
| 595 | if (tp_created) |
WANG Cong | 763dbf6 | 2017-04-19 14:21:21 -0700 | [diff] [blame] | 596 | tcf_proto_destroy(tp); |
Jiri Pirko | 6bb16e7 | 2017-02-09 14:38:58 +0100 | [diff] [blame] | 597 | err = -EEXIST; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | goto errout; |
Minoru Usui | 12186be | 2009-06-02 02:17:34 -0700 | [diff] [blame] | 599 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | break; |
| 601 | case RTM_DELTFILTER: |
WANG Cong | 54df2cf | 2017-08-04 21:31:42 -0700 | [diff] [blame^] | 602 | err = tfilter_del_notify(net, skb, n, tp, fh, false, |
| 603 | &last); |
Jiri Pirko | 40c81b2 | 2017-02-09 14:39:00 +0100 | [diff] [blame] | 604 | if (err) |
| 605 | goto errout; |
WANG Cong | 763dbf6 | 2017-04-19 14:21:21 -0700 | [diff] [blame] | 606 | if (last) { |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 607 | tcf_chain_tp_remove(chain, &chain_info, tp); |
WANG Cong | 763dbf6 | 2017-04-19 14:21:21 -0700 | [diff] [blame] | 608 | tcf_proto_destroy(tp); |
| 609 | } |
Jiri Pirko | d7cf52c | 2017-02-14 16:27:13 +0100 | [diff] [blame] | 610 | goto errout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | case RTM_GETTFILTER: |
Jamal Hadi Salim | 5a7a555 | 2016-09-18 08:45:33 -0400 | [diff] [blame] | 612 | err = tfilter_notify(net, skb, n, tp, fh, |
Eric Dumazet | fa59b27 | 2016-10-09 20:25:55 -0700 | [diff] [blame] | 613 | RTM_NEWTFILTER, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | goto errout; |
| 615 | default: |
| 616 | err = -EINVAL; |
| 617 | goto errout; |
| 618 | } |
| 619 | } |
| 620 | |
Cong Wang | 2f7ef2f | 2014-04-25 13:54:06 -0700 | [diff] [blame] | 621 | err = tp->ops->change(net, skb, tp, cl, t->tcm_handle, tca, &fh, |
| 622 | n->nlmsg_flags & NLM_F_CREATE ? TCA_ACT_NOREPLACE : TCA_ACT_REPLACE); |
Minoru Usui | 12186be | 2009-06-02 02:17:34 -0700 | [diff] [blame] | 623 | if (err == 0) { |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 624 | if (tp_created) |
| 625 | tcf_chain_tp_insert(chain, &chain_info, tp); |
Eric Dumazet | fa59b27 | 2016-10-09 20:25:55 -0700 | [diff] [blame] | 626 | tfilter_notify(net, skb, n, tp, fh, RTM_NEWTFILTER, false); |
Minoru Usui | 12186be | 2009-06-02 02:17:34 -0700 | [diff] [blame] | 627 | } else { |
| 628 | if (tp_created) |
WANG Cong | 763dbf6 | 2017-04-19 14:21:21 -0700 | [diff] [blame] | 629 | tcf_proto_destroy(tp); |
Minoru Usui | 12186be | 2009-06-02 02:17:34 -0700 | [diff] [blame] | 630 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | |
| 632 | errout: |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 633 | if (chain) |
| 634 | tcf_chain_put(chain); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 635 | if (cl) |
| 636 | cops->put(q, cl); |
| 637 | if (err == -EAGAIN) |
| 638 | /* Replay the request. */ |
| 639 | goto replay; |
| 640 | return err; |
| 641 | } |
| 642 | |
Jamal Hadi Salim | 0b0f43f | 2016-06-05 10:41:32 -0400 | [diff] [blame] | 643 | static int tcf_fill_node(struct net *net, struct sk_buff *skb, |
| 644 | struct tcf_proto *tp, unsigned long fh, u32 portid, |
| 645 | u32 seq, u16 flags, int event) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | { |
| 647 | struct tcmsg *tcm; |
| 648 | struct nlmsghdr *nlh; |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 649 | unsigned char *b = skb_tail_pointer(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 651 | nlh = nlmsg_put(skb, portid, seq, event, sizeof(*tcm), flags); |
David S. Miller | 942b816 | 2012-06-26 21:48:50 -0700 | [diff] [blame] | 652 | if (!nlh) |
| 653 | goto out_nlmsg_trim; |
| 654 | tcm = nlmsg_data(nlh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | tcm->tcm_family = AF_UNSPEC; |
Patrick McHardy | 9ef1d4c | 2005-06-28 12:55:30 -0700 | [diff] [blame] | 656 | tcm->tcm__pad1 = 0; |
Jiri Pirko | ad61df9 | 2009-10-08 01:21:46 -0700 | [diff] [blame] | 657 | tcm->tcm__pad2 = 0; |
David S. Miller | 5ce2d48 | 2008-07-08 17:06:30 -0700 | [diff] [blame] | 658 | tcm->tcm_ifindex = qdisc_dev(tp->q)->ifindex; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | tcm->tcm_parent = tp->classid; |
| 660 | tcm->tcm_info = TC_H_MAKE(tp->prio, tp->protocol); |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 661 | if (nla_put_string(skb, TCA_KIND, tp->ops->kind)) |
| 662 | goto nla_put_failure; |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 663 | if (nla_put_u32(skb, TCA_CHAIN, tp->chain->index)) |
| 664 | goto nla_put_failure; |
WANG Cong | 54df2cf | 2017-08-04 21:31:42 -0700 | [diff] [blame^] | 665 | if (!fh) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | tcm->tcm_handle = 0; |
WANG Cong | 54df2cf | 2017-08-04 21:31:42 -0700 | [diff] [blame^] | 667 | } else { |
WANG Cong | 832d1d5 | 2014-01-09 16:14:01 -0800 | [diff] [blame] | 668 | if (tp->ops->dump && tp->ops->dump(net, tp, fh, skb, tcm) < 0) |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 669 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | } |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 671 | nlh->nlmsg_len = skb_tail_pointer(skb) - b; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | return skb->len; |
| 673 | |
David S. Miller | 942b816 | 2012-06-26 21:48:50 -0700 | [diff] [blame] | 674 | out_nlmsg_trim: |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 675 | nla_put_failure: |
Arnaldo Carvalho de Melo | dc5fc57 | 2007-03-25 23:06:12 -0700 | [diff] [blame] | 676 | nlmsg_trim(skb, b); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | return -1; |
| 678 | } |
| 679 | |
Tom Goff | 7316ae8 | 2010-03-19 15:40:13 +0000 | [diff] [blame] | 680 | static int tfilter_notify(struct net *net, struct sk_buff *oskb, |
| 681 | struct nlmsghdr *n, struct tcf_proto *tp, |
Eric Dumazet | fa59b27 | 2016-10-09 20:25:55 -0700 | [diff] [blame] | 682 | unsigned long fh, int event, bool unicast) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | { |
| 684 | struct sk_buff *skb; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 685 | u32 portid = oskb ? NETLINK_CB(oskb).portid : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | |
| 687 | skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL); |
| 688 | if (!skb) |
| 689 | return -ENOBUFS; |
| 690 | |
Roman Mashak | 30a391a | 2016-11-16 17:16:10 -0500 | [diff] [blame] | 691 | if (tcf_fill_node(net, skb, tp, fh, portid, n->nlmsg_seq, |
| 692 | n->nlmsg_flags, event) <= 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | kfree_skb(skb); |
| 694 | return -EINVAL; |
| 695 | } |
| 696 | |
Eric Dumazet | fa59b27 | 2016-10-09 20:25:55 -0700 | [diff] [blame] | 697 | if (unicast) |
| 698 | return netlink_unicast(net->rtnl, skb, portid, MSG_DONTWAIT); |
| 699 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 700 | return rtnetlink_send(skb, net, portid, RTNLGRP_TC, |
Stephen Hemminger | aa767bf | 2008-01-21 02:26:41 -0800 | [diff] [blame] | 701 | n->nlmsg_flags & NLM_F_ECHO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | } |
| 703 | |
WANG Cong | 54df2cf | 2017-08-04 21:31:42 -0700 | [diff] [blame^] | 704 | static int tfilter_del_notify(struct net *net, struct sk_buff *oskb, |
| 705 | struct nlmsghdr *n, struct tcf_proto *tp, |
| 706 | unsigned long fh, bool unicast, bool *last) |
| 707 | { |
| 708 | struct sk_buff *skb; |
| 709 | u32 portid = oskb ? NETLINK_CB(oskb).portid : 0; |
| 710 | int err; |
| 711 | |
| 712 | skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL); |
| 713 | if (!skb) |
| 714 | return -ENOBUFS; |
| 715 | |
| 716 | if (tcf_fill_node(net, skb, tp, fh, portid, n->nlmsg_seq, |
| 717 | n->nlmsg_flags, RTM_DELTFILTER) <= 0) { |
| 718 | kfree_skb(skb); |
| 719 | return -EINVAL; |
| 720 | } |
| 721 | |
| 722 | err = tp->ops->delete(tp, fh, last); |
| 723 | if (err) { |
| 724 | kfree_skb(skb); |
| 725 | return err; |
| 726 | } |
| 727 | |
| 728 | if (unicast) |
| 729 | return netlink_unicast(net->rtnl, skb, portid, MSG_DONTWAIT); |
| 730 | |
| 731 | return rtnetlink_send(skb, net, portid, RTNLGRP_TC, |
| 732 | n->nlmsg_flags & NLM_F_ECHO); |
| 733 | } |
| 734 | |
Stephen Hemminger | aa767bf | 2008-01-21 02:26:41 -0800 | [diff] [blame] | 735 | struct tcf_dump_args { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | struct tcf_walker w; |
| 737 | struct sk_buff *skb; |
| 738 | struct netlink_callback *cb; |
| 739 | }; |
| 740 | |
Stephen Hemminger | aa767bf | 2008-01-21 02:26:41 -0800 | [diff] [blame] | 741 | static int tcf_node_dump(struct tcf_proto *tp, unsigned long n, |
| 742 | struct tcf_walker *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | { |
Stephen Hemminger | aa767bf | 2008-01-21 02:26:41 -0800 | [diff] [blame] | 744 | struct tcf_dump_args *a = (void *)arg; |
WANG Cong | 832d1d5 | 2014-01-09 16:14:01 -0800 | [diff] [blame] | 745 | struct net *net = sock_net(a->skb->sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | |
WANG Cong | 832d1d5 | 2014-01-09 16:14:01 -0800 | [diff] [blame] | 747 | return tcf_fill_node(net, a->skb, tp, n, NETLINK_CB(a->cb->skb).portid, |
Jamal Hadi Salim | 5a7a555 | 2016-09-18 08:45:33 -0400 | [diff] [blame] | 748 | a->cb->nlh->nlmsg_seq, NLM_F_MULTI, |
| 749 | RTM_NEWTFILTER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | } |
| 751 | |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 752 | static bool tcf_chain_dump(struct tcf_chain *chain, struct sk_buff *skb, |
Jiri Pirko | acb31fa | 2017-05-17 11:08:00 +0200 | [diff] [blame] | 753 | struct netlink_callback *cb, |
| 754 | long index_start, long *p_index) |
| 755 | { |
| 756 | struct net *net = sock_net(skb->sk); |
| 757 | struct tcmsg *tcm = nlmsg_data(cb->nlh); |
| 758 | struct tcf_dump_args arg; |
| 759 | struct tcf_proto *tp; |
| 760 | |
| 761 | for (tp = rtnl_dereference(chain->filter_chain); |
| 762 | tp; tp = rtnl_dereference(tp->next), (*p_index)++) { |
| 763 | if (*p_index < index_start) |
| 764 | continue; |
| 765 | if (TC_H_MAJ(tcm->tcm_info) && |
| 766 | TC_H_MAJ(tcm->tcm_info) != tp->prio) |
| 767 | continue; |
| 768 | if (TC_H_MIN(tcm->tcm_info) && |
| 769 | TC_H_MIN(tcm->tcm_info) != tp->protocol) |
| 770 | continue; |
| 771 | if (*p_index > index_start) |
| 772 | memset(&cb->args[1], 0, |
| 773 | sizeof(cb->args) - sizeof(cb->args[0])); |
| 774 | if (cb->args[1] == 0) { |
| 775 | if (tcf_fill_node(net, skb, tp, 0, |
| 776 | NETLINK_CB(cb->skb).portid, |
| 777 | cb->nlh->nlmsg_seq, NLM_F_MULTI, |
| 778 | RTM_NEWTFILTER) <= 0) |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 779 | return false; |
Jiri Pirko | acb31fa | 2017-05-17 11:08:00 +0200 | [diff] [blame] | 780 | |
| 781 | cb->args[1] = 1; |
| 782 | } |
| 783 | if (!tp->ops->walk) |
| 784 | continue; |
| 785 | arg.w.fn = tcf_node_dump; |
| 786 | arg.skb = skb; |
| 787 | arg.cb = cb; |
| 788 | arg.w.stop = 0; |
| 789 | arg.w.skip = cb->args[1] - 1; |
| 790 | arg.w.count = 0; |
| 791 | tp->ops->walk(tp, &arg.w); |
| 792 | cb->args[1] = arg.w.count + 1; |
| 793 | if (arg.w.stop) |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 794 | return false; |
Jiri Pirko | acb31fa | 2017-05-17 11:08:00 +0200 | [diff] [blame] | 795 | } |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 796 | return true; |
Jiri Pirko | acb31fa | 2017-05-17 11:08:00 +0200 | [diff] [blame] | 797 | } |
| 798 | |
Eric Dumazet | bd27a87 | 2009-11-05 20:57:26 -0800 | [diff] [blame] | 799 | /* called with RTNL */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | static int tc_dump_tfilter(struct sk_buff *skb, struct netlink_callback *cb) |
| 801 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 802 | struct net *net = sock_net(skb->sk); |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 803 | struct nlattr *tca[TCA_MAX + 1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | struct net_device *dev; |
| 805 | struct Qdisc *q; |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 806 | struct tcf_block *block; |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 807 | struct tcf_chain *chain; |
David S. Miller | 942b816 | 2012-06-26 21:48:50 -0700 | [diff] [blame] | 808 | struct tcmsg *tcm = nlmsg_data(cb->nlh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | unsigned long cl = 0; |
Eric Dumazet | 20fea08 | 2007-11-14 01:44:41 -0800 | [diff] [blame] | 810 | const struct Qdisc_class_ops *cops; |
Jiri Pirko | acb31fa | 2017-05-17 11:08:00 +0200 | [diff] [blame] | 811 | long index_start; |
| 812 | long index; |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 813 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | |
Hong zhi guo | 573ce26 | 2013-03-27 06:47:04 +0000 | [diff] [blame] | 815 | if (nlmsg_len(cb->nlh) < sizeof(*tcm)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | return skb->len; |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 817 | |
| 818 | err = nlmsg_parse(cb->nlh, sizeof(*tcm), tca, TCA_MAX, NULL, NULL); |
| 819 | if (err) |
| 820 | return err; |
| 821 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 822 | dev = __dev_get_by_index(net, tcm->tcm_ifindex); |
| 823 | if (!dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | return skb->len; |
| 825 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | if (!tcm->tcm_parent) |
Patrick McHardy | af356af | 2009-09-04 06:41:18 +0000 | [diff] [blame] | 827 | q = dev->qdisc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | else |
| 829 | q = qdisc_lookup(dev, TC_H_MAJ(tcm->tcm_parent)); |
| 830 | if (!q) |
| 831 | goto out; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 832 | cops = q->ops->cl_ops; |
| 833 | if (!cops) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | goto errout; |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 835 | if (!cops->tcf_block) |
Patrick McHardy | 71ebe5e | 2009-09-04 06:41:15 +0000 | [diff] [blame] | 836 | goto errout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | if (TC_H_MIN(tcm->tcm_parent)) { |
| 838 | cl = cops->get(q, tcm->tcm_parent); |
| 839 | if (cl == 0) |
| 840 | goto errout; |
| 841 | } |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 842 | block = cops->tcf_block(q, cl); |
| 843 | if (!block) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 844 | goto errout; |
| 845 | |
Jiri Pirko | acb31fa | 2017-05-17 11:08:00 +0200 | [diff] [blame] | 846 | index_start = cb->args[0]; |
| 847 | index = 0; |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 848 | |
| 849 | list_for_each_entry(chain, &block->chain_list, list) { |
| 850 | if (tca[TCA_CHAIN] && |
| 851 | nla_get_u32(tca[TCA_CHAIN]) != chain->index) |
| 852 | continue; |
| 853 | if (!tcf_chain_dump(chain, skb, cb, index_start, &index)) |
| 854 | break; |
| 855 | } |
| 856 | |
Jiri Pirko | acb31fa | 2017-05-17 11:08:00 +0200 | [diff] [blame] | 857 | cb->args[0] = index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | |
| 859 | errout: |
| 860 | if (cl) |
| 861 | cops->put(q, cl); |
| 862 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | return skb->len; |
| 864 | } |
| 865 | |
WANG Cong | 18d0264 | 2014-09-25 10:26:37 -0700 | [diff] [blame] | 866 | void tcf_exts_destroy(struct tcf_exts *exts) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 867 | { |
| 868 | #ifdef CONFIG_NET_CLS_ACT |
WANG Cong | 22dc13c | 2016-08-13 22:35:00 -0700 | [diff] [blame] | 869 | LIST_HEAD(actions); |
| 870 | |
| 871 | tcf_exts_to_list(exts, &actions); |
| 872 | tcf_action_destroy(&actions, TCA_ACT_UNBIND); |
| 873 | kfree(exts->actions); |
| 874 | exts->nr_actions = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | #endif |
| 876 | } |
Stephen Hemminger | aa767bf | 2008-01-21 02:26:41 -0800 | [diff] [blame] | 877 | EXPORT_SYMBOL(tcf_exts_destroy); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | |
Benjamin LaHaise | c1b5273 | 2013-01-14 05:15:39 +0000 | [diff] [blame] | 879 | int tcf_exts_validate(struct net *net, struct tcf_proto *tp, struct nlattr **tb, |
Jamal Hadi Salim | 5a7a555 | 2016-09-18 08:45:33 -0400 | [diff] [blame] | 880 | struct nlattr *rate_tlv, struct tcf_exts *exts, bool ovr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 881 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | #ifdef CONFIG_NET_CLS_ACT |
| 883 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 884 | struct tc_action *act; |
| 885 | |
WANG Cong | 5da57f4 | 2013-12-15 20:15:07 -0800 | [diff] [blame] | 886 | if (exts->police && tb[exts->police]) { |
Jiri Pirko | 9fb9f25 | 2017-05-17 11:08:02 +0200 | [diff] [blame] | 887 | act = tcf_action_init_1(net, tp, tb[exts->police], |
| 888 | rate_tlv, "police", ovr, |
| 889 | TCA_ACT_BIND); |
Patrick McHardy | ab27cfb | 2008-01-23 20:33:13 -0800 | [diff] [blame] | 890 | if (IS_ERR(act)) |
| 891 | return PTR_ERR(act); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | |
WANG Cong | 33be627 | 2013-12-15 20:15:05 -0800 | [diff] [blame] | 893 | act->type = exts->type = TCA_OLD_COMPAT; |
WANG Cong | 22dc13c | 2016-08-13 22:35:00 -0700 | [diff] [blame] | 894 | exts->actions[0] = act; |
| 895 | exts->nr_actions = 1; |
WANG Cong | 5da57f4 | 2013-12-15 20:15:07 -0800 | [diff] [blame] | 896 | } else if (exts->action && tb[exts->action]) { |
WANG Cong | 22dc13c | 2016-08-13 22:35:00 -0700 | [diff] [blame] | 897 | LIST_HEAD(actions); |
| 898 | int err, i = 0; |
| 899 | |
Jiri Pirko | 9fb9f25 | 2017-05-17 11:08:02 +0200 | [diff] [blame] | 900 | err = tcf_action_init(net, tp, tb[exts->action], |
| 901 | rate_tlv, NULL, ovr, TCA_ACT_BIND, |
Jamal Hadi Salim | 5a7a555 | 2016-09-18 08:45:33 -0400 | [diff] [blame] | 902 | &actions); |
WANG Cong | 33be627 | 2013-12-15 20:15:05 -0800 | [diff] [blame] | 903 | if (err) |
| 904 | return err; |
WANG Cong | 22dc13c | 2016-08-13 22:35:00 -0700 | [diff] [blame] | 905 | list_for_each_entry(act, &actions, list) |
| 906 | exts->actions[i++] = act; |
| 907 | exts->nr_actions = i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | } |
| 909 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 910 | #else |
WANG Cong | 5da57f4 | 2013-12-15 20:15:07 -0800 | [diff] [blame] | 911 | if ((exts->action && tb[exts->action]) || |
| 912 | (exts->police && tb[exts->police])) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 913 | return -EOPNOTSUPP; |
| 914 | #endif |
| 915 | |
| 916 | return 0; |
| 917 | } |
Stephen Hemminger | aa767bf | 2008-01-21 02:26:41 -0800 | [diff] [blame] | 918 | EXPORT_SYMBOL(tcf_exts_validate); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | |
Jiri Pirko | 9b0d444 | 2017-08-04 14:29:15 +0200 | [diff] [blame] | 920 | void tcf_exts_change(struct tcf_exts *dst, struct tcf_exts *src) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | { |
| 922 | #ifdef CONFIG_NET_CLS_ACT |
WANG Cong | 22dc13c | 2016-08-13 22:35:00 -0700 | [diff] [blame] | 923 | struct tcf_exts old = *dst; |
| 924 | |
Jiri Pirko | 9b0d444 | 2017-08-04 14:29:15 +0200 | [diff] [blame] | 925 | *dst = *src; |
WANG Cong | 22dc13c | 2016-08-13 22:35:00 -0700 | [diff] [blame] | 926 | tcf_exts_destroy(&old); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | #endif |
| 928 | } |
Stephen Hemminger | aa767bf | 2008-01-21 02:26:41 -0800 | [diff] [blame] | 929 | EXPORT_SYMBOL(tcf_exts_change); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | |
WANG Cong | 22dc13c | 2016-08-13 22:35:00 -0700 | [diff] [blame] | 931 | #ifdef CONFIG_NET_CLS_ACT |
| 932 | static struct tc_action *tcf_exts_first_act(struct tcf_exts *exts) |
| 933 | { |
| 934 | if (exts->nr_actions == 0) |
| 935 | return NULL; |
| 936 | else |
| 937 | return exts->actions[0]; |
| 938 | } |
| 939 | #endif |
WANG Cong | 33be627 | 2013-12-15 20:15:05 -0800 | [diff] [blame] | 940 | |
WANG Cong | 5da57f4 | 2013-12-15 20:15:07 -0800 | [diff] [blame] | 941 | int tcf_exts_dump(struct sk_buff *skb, struct tcf_exts *exts) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | { |
| 943 | #ifdef CONFIG_NET_CLS_ACT |
Cong Wang | 9cc63db | 2014-07-16 14:25:30 -0700 | [diff] [blame] | 944 | struct nlattr *nest; |
| 945 | |
Jiri Pirko | 978dfd8 | 2017-08-04 14:29:03 +0200 | [diff] [blame] | 946 | if (exts->action && tcf_exts_has_actions(exts)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 947 | /* |
| 948 | * again for backward compatible mode - we want |
| 949 | * to work with both old and new modes of entering |
| 950 | * tc data even if iproute2 was newer - jhs |
| 951 | */ |
WANG Cong | 33be627 | 2013-12-15 20:15:05 -0800 | [diff] [blame] | 952 | if (exts->type != TCA_OLD_COMPAT) { |
WANG Cong | 22dc13c | 2016-08-13 22:35:00 -0700 | [diff] [blame] | 953 | LIST_HEAD(actions); |
| 954 | |
WANG Cong | 5da57f4 | 2013-12-15 20:15:07 -0800 | [diff] [blame] | 955 | nest = nla_nest_start(skb, exts->action); |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 956 | if (nest == NULL) |
| 957 | goto nla_put_failure; |
WANG Cong | 22dc13c | 2016-08-13 22:35:00 -0700 | [diff] [blame] | 958 | |
| 959 | tcf_exts_to_list(exts, &actions); |
| 960 | if (tcf_action_dump(skb, &actions, 0, 0) < 0) |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 961 | goto nla_put_failure; |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 962 | nla_nest_end(skb, nest); |
WANG Cong | 5da57f4 | 2013-12-15 20:15:07 -0800 | [diff] [blame] | 963 | } else if (exts->police) { |
WANG Cong | 33be627 | 2013-12-15 20:15:05 -0800 | [diff] [blame] | 964 | struct tc_action *act = tcf_exts_first_act(exts); |
WANG Cong | 5da57f4 | 2013-12-15 20:15:07 -0800 | [diff] [blame] | 965 | nest = nla_nest_start(skb, exts->police); |
Jamal Hadi Salim | 63acd68 | 2013-12-23 08:02:12 -0500 | [diff] [blame] | 966 | if (nest == NULL || !act) |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 967 | goto nla_put_failure; |
WANG Cong | 33be627 | 2013-12-15 20:15:05 -0800 | [diff] [blame] | 968 | if (tcf_action_dump_old(skb, act, 0, 0) < 0) |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 969 | goto nla_put_failure; |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 970 | nla_nest_end(skb, nest); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 971 | } |
| 972 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | return 0; |
Cong Wang | 9cc63db | 2014-07-16 14:25:30 -0700 | [diff] [blame] | 974 | |
| 975 | nla_put_failure: |
| 976 | nla_nest_cancel(skb, nest); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | return -1; |
Cong Wang | 9cc63db | 2014-07-16 14:25:30 -0700 | [diff] [blame] | 978 | #else |
| 979 | return 0; |
| 980 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | } |
Stephen Hemminger | aa767bf | 2008-01-21 02:26:41 -0800 | [diff] [blame] | 982 | EXPORT_SYMBOL(tcf_exts_dump); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 983 | |
Stephen Hemminger | aa767bf | 2008-01-21 02:26:41 -0800 | [diff] [blame] | 984 | |
WANG Cong | 5da57f4 | 2013-12-15 20:15:07 -0800 | [diff] [blame] | 985 | int tcf_exts_dump_stats(struct sk_buff *skb, struct tcf_exts *exts) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 986 | { |
| 987 | #ifdef CONFIG_NET_CLS_ACT |
WANG Cong | 33be627 | 2013-12-15 20:15:05 -0800 | [diff] [blame] | 988 | struct tc_action *a = tcf_exts_first_act(exts); |
Ignacy Gawędzki | b057df2 | 2015-02-03 19:05:18 +0100 | [diff] [blame] | 989 | if (a != NULL && tcf_action_copy_stats(skb, a, 1) < 0) |
WANG Cong | 33be627 | 2013-12-15 20:15:05 -0800 | [diff] [blame] | 990 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | #endif |
| 992 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 993 | } |
Stephen Hemminger | aa767bf | 2008-01-21 02:26:41 -0800 | [diff] [blame] | 994 | EXPORT_SYMBOL(tcf_exts_dump_stats); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 995 | |
Hadar Hen Zion | 7091d8c | 2016-12-01 14:06:37 +0200 | [diff] [blame] | 996 | int tcf_exts_get_dev(struct net_device *dev, struct tcf_exts *exts, |
| 997 | struct net_device **hw_dev) |
| 998 | { |
| 999 | #ifdef CONFIG_NET_CLS_ACT |
| 1000 | const struct tc_action *a; |
| 1001 | LIST_HEAD(actions); |
| 1002 | |
Jiri Pirko | 3bcc0ce | 2017-08-04 14:28:58 +0200 | [diff] [blame] | 1003 | if (!tcf_exts_has_actions(exts)) |
Hadar Hen Zion | 7091d8c | 2016-12-01 14:06:37 +0200 | [diff] [blame] | 1004 | return -EINVAL; |
| 1005 | |
| 1006 | tcf_exts_to_list(exts, &actions); |
| 1007 | list_for_each_entry(a, &actions, list) { |
| 1008 | if (a->ops->get_dev) { |
| 1009 | a->ops->get_dev(a, dev_net(dev), hw_dev); |
| 1010 | break; |
| 1011 | } |
| 1012 | } |
| 1013 | if (*hw_dev) |
| 1014 | return 0; |
| 1015 | #endif |
| 1016 | return -EOPNOTSUPP; |
| 1017 | } |
| 1018 | EXPORT_SYMBOL(tcf_exts_get_dev); |
| 1019 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1020 | static int __init tc_filter_init(void) |
| 1021 | { |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 1022 | rtnl_register(PF_UNSPEC, RTM_NEWTFILTER, tc_ctl_tfilter, NULL, NULL); |
| 1023 | rtnl_register(PF_UNSPEC, RTM_DELTFILTER, tc_ctl_tfilter, NULL, NULL); |
Thomas Graf | 82623c0 | 2007-03-22 11:56:22 -0700 | [diff] [blame] | 1024 | rtnl_register(PF_UNSPEC, RTM_GETTFILTER, tc_ctl_tfilter, |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 1025 | tc_dump_tfilter, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1026 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1027 | return 0; |
| 1028 | } |
| 1029 | |
| 1030 | subsys_initcall(tc_filter_init); |