Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * net/sched/cls_api.c Packet classifier API. |
| 4 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru> |
| 6 | * |
| 7 | * Changes: |
| 8 | * |
| 9 | * Eduardo J. Blanco <ejbs@netlabs.com.uy> :990222: kmod support |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | */ |
| 11 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/module.h> |
| 13 | #include <linux/types.h> |
| 14 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/string.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/errno.h> |
Jiri Pirko | 33a4892 | 2017-02-09 14:38:57 +0100 | [diff] [blame] | 17 | #include <linux/err.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/skbuff.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/init.h> |
| 20 | #include <linux/kmod.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 21 | #include <linux/slab.h> |
Jiri Pirko | 4861738 | 2018-01-17 11:46:46 +0100 | [diff] [blame] | 22 | #include <linux/idr.h> |
John Hurley | 59eb87c | 2019-11-02 14:17:47 +0000 | [diff] [blame] | 23 | #include <linux/jhash.h> |
Paul Blakey | 4371929 | 2020-02-16 12:01:23 +0200 | [diff] [blame] | 24 | #include <linux/rculist.h> |
Denis V. Lunev | b854272 | 2007-12-01 00:21:31 +1100 | [diff] [blame] | 25 | #include <net/net_namespace.h> |
| 26 | #include <net/sock.h> |
Arnaldo Carvalho de Melo | dc5fc57 | 2007-03-25 23:06:12 -0700 | [diff] [blame] | 27 | #include <net/netlink.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <net/pkt_sched.h> |
| 29 | #include <net/pkt_cls.h> |
Pablo Neira Ayuso | e3ab786 | 2019-02-02 12:50:45 +0100 | [diff] [blame] | 30 | #include <net/tc_act/tc_pedit.h> |
Pablo Neira Ayuso | 3a7b686 | 2019-02-02 12:50:46 +0100 | [diff] [blame] | 31 | #include <net/tc_act/tc_mirred.h> |
| 32 | #include <net/tc_act/tc_vlan.h> |
| 33 | #include <net/tc_act/tc_tunnel_key.h> |
| 34 | #include <net/tc_act/tc_csum.h> |
| 35 | #include <net/tc_act/tc_gact.h> |
Pieter Jansen van Vuuren | 8c8cfc6 | 2019-05-04 04:46:22 -0700 | [diff] [blame] | 36 | #include <net/tc_act/tc_police.h> |
Pieter Jansen van Vuuren | a7a7be6 | 2019-05-04 04:46:16 -0700 | [diff] [blame] | 37 | #include <net/tc_act/tc_sample.h> |
Pablo Neira Ayuso | 3a7b686 | 2019-02-02 12:50:46 +0100 | [diff] [blame] | 38 | #include <net/tc_act/tc_skbedit.h> |
Paul Blakey | b57dc7c | 2019-07-09 10:30:48 +0300 | [diff] [blame] | 39 | #include <net/tc_act/tc_ct.h> |
John Hurley | 6749d590 | 2019-07-23 15:33:59 +0100 | [diff] [blame] | 40 | #include <net/tc_act/tc_mpls.h> |
Po Liu | d29bdd6 | 2020-05-01 08:53:16 +0800 | [diff] [blame] | 41 | #include <net/tc_act/tc_gate.h> |
wenxu | 4e48190 | 2019-08-07 09:13:52 +0800 | [diff] [blame] | 42 | #include <net/flow_offload.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
Davide Caratti | e331473 | 2018-10-10 22:00:58 +0200 | [diff] [blame] | 44 | extern const struct nla_policy rtm_tca_policy[TCA_MAX + 1]; |
| 45 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | /* The list of all installed classifier types */ |
WANG Cong | 3627287 | 2013-12-15 20:15:11 -0800 | [diff] [blame] | 47 | static LIST_HEAD(tcf_proto_base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
| 49 | /* Protects list of registered TC modules. It is pure SMP lock. */ |
| 50 | static DEFINE_RWLOCK(cls_mod_lock); |
| 51 | |
John Hurley | 59eb87c | 2019-11-02 14:17:47 +0000 | [diff] [blame] | 52 | static u32 destroy_obj_hashfn(const struct tcf_proto *tp) |
| 53 | { |
| 54 | return jhash_3words(tp->chain->index, tp->prio, |
| 55 | (__force __u32)tp->protocol, 0); |
| 56 | } |
| 57 | |
| 58 | static void tcf_proto_signal_destroying(struct tcf_chain *chain, |
| 59 | struct tcf_proto *tp) |
| 60 | { |
| 61 | struct tcf_block *block = chain->block; |
| 62 | |
| 63 | mutex_lock(&block->proto_destroy_lock); |
| 64 | hash_add_rcu(block->proto_destroy_ht, &tp->destroy_ht_node, |
| 65 | destroy_obj_hashfn(tp)); |
| 66 | mutex_unlock(&block->proto_destroy_lock); |
| 67 | } |
| 68 | |
| 69 | static bool tcf_proto_cmp(const struct tcf_proto *tp1, |
| 70 | const struct tcf_proto *tp2) |
| 71 | { |
| 72 | return tp1->chain->index == tp2->chain->index && |
| 73 | tp1->prio == tp2->prio && |
| 74 | tp1->protocol == tp2->protocol; |
| 75 | } |
| 76 | |
| 77 | static bool tcf_proto_exists_destroying(struct tcf_chain *chain, |
| 78 | struct tcf_proto *tp) |
| 79 | { |
| 80 | u32 hash = destroy_obj_hashfn(tp); |
| 81 | struct tcf_proto *iter; |
| 82 | bool found = false; |
| 83 | |
| 84 | rcu_read_lock(); |
| 85 | hash_for_each_possible_rcu(chain->block->proto_destroy_ht, iter, |
| 86 | destroy_ht_node, hash) { |
| 87 | if (tcf_proto_cmp(tp, iter)) { |
| 88 | found = true; |
| 89 | break; |
| 90 | } |
| 91 | } |
| 92 | rcu_read_unlock(); |
| 93 | |
| 94 | return found; |
| 95 | } |
| 96 | |
| 97 | static void |
| 98 | tcf_proto_signal_destroyed(struct tcf_chain *chain, struct tcf_proto *tp) |
| 99 | { |
| 100 | struct tcf_block *block = chain->block; |
| 101 | |
| 102 | mutex_lock(&block->proto_destroy_lock); |
| 103 | if (hash_hashed(&tp->destroy_ht_node)) |
| 104 | hash_del_rcu(&tp->destroy_ht_node); |
| 105 | mutex_unlock(&block->proto_destroy_lock); |
| 106 | } |
| 107 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | /* Find classifier type by string name */ |
| 109 | |
Jiri Pirko | f34e8bf | 2018-07-23 09:23:04 +0200 | [diff] [blame] | 110 | 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] | 111 | { |
Eric Dumazet | dcd7608 | 2013-12-20 10:04:18 -0800 | [diff] [blame] | 112 | const struct tcf_proto_ops *t, *res = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | |
| 114 | if (kind) { |
| 115 | read_lock(&cls_mod_lock); |
WANG Cong | 3627287 | 2013-12-15 20:15:11 -0800 | [diff] [blame] | 116 | list_for_each_entry(t, &tcf_proto_base, head) { |
Jiri Pirko | 33a4892 | 2017-02-09 14:38:57 +0100 | [diff] [blame] | 117 | if (strcmp(kind, t->kind) == 0) { |
Eric Dumazet | dcd7608 | 2013-12-20 10:04:18 -0800 | [diff] [blame] | 118 | if (try_module_get(t->owner)) |
| 119 | res = t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | break; |
| 121 | } |
| 122 | } |
| 123 | read_unlock(&cls_mod_lock); |
| 124 | } |
Eric Dumazet | dcd7608 | 2013-12-20 10:04:18 -0800 | [diff] [blame] | 125 | return res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | } |
| 127 | |
Jiri Pirko | f34e8bf | 2018-07-23 09:23:04 +0200 | [diff] [blame] | 128 | static const struct tcf_proto_ops * |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 129 | tcf_proto_lookup_ops(const char *kind, bool rtnl_held, |
| 130 | struct netlink_ext_ack *extack) |
Jiri Pirko | f34e8bf | 2018-07-23 09:23:04 +0200 | [diff] [blame] | 131 | { |
| 132 | const struct tcf_proto_ops *ops; |
| 133 | |
| 134 | ops = __tcf_proto_lookup_ops(kind); |
| 135 | if (ops) |
| 136 | return ops; |
| 137 | #ifdef CONFIG_MODULES |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 138 | if (rtnl_held) |
| 139 | rtnl_unlock(); |
Jiri Pirko | f34e8bf | 2018-07-23 09:23:04 +0200 | [diff] [blame] | 140 | request_module("cls_%s", kind); |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 141 | if (rtnl_held) |
| 142 | rtnl_lock(); |
Jiri Pirko | f34e8bf | 2018-07-23 09:23:04 +0200 | [diff] [blame] | 143 | ops = __tcf_proto_lookup_ops(kind); |
| 144 | /* We dropped the RTNL semaphore in order to perform |
| 145 | * the module load. So, even if we succeeded in loading |
| 146 | * the module we have to replay the request. We indicate |
| 147 | * this using -EAGAIN. |
| 148 | */ |
| 149 | if (ops) { |
| 150 | module_put(ops->owner); |
| 151 | return ERR_PTR(-EAGAIN); |
| 152 | } |
| 153 | #endif |
| 154 | NL_SET_ERR_MSG(extack, "TC classifier not found"); |
| 155 | return ERR_PTR(-ENOENT); |
| 156 | } |
| 157 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | /* Register(unregister) new classifier type */ |
| 159 | |
| 160 | int register_tcf_proto_ops(struct tcf_proto_ops *ops) |
| 161 | { |
WANG Cong | 3627287 | 2013-12-15 20:15:11 -0800 | [diff] [blame] | 162 | struct tcf_proto_ops *t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | int rc = -EEXIST; |
| 164 | |
| 165 | write_lock(&cls_mod_lock); |
WANG Cong | 3627287 | 2013-12-15 20:15:11 -0800 | [diff] [blame] | 166 | list_for_each_entry(t, &tcf_proto_base, head) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | if (!strcmp(ops->kind, t->kind)) |
| 168 | goto out; |
| 169 | |
WANG Cong | 3627287 | 2013-12-15 20:15:11 -0800 | [diff] [blame] | 170 | list_add_tail(&ops->head, &tcf_proto_base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | rc = 0; |
| 172 | out: |
| 173 | write_unlock(&cls_mod_lock); |
| 174 | return rc; |
| 175 | } |
Stephen Hemminger | aa767bf | 2008-01-21 02:26:41 -0800 | [diff] [blame] | 176 | EXPORT_SYMBOL(register_tcf_proto_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | |
Cong Wang | 7aa0045 | 2017-10-26 18:24:28 -0700 | [diff] [blame] | 178 | static struct workqueue_struct *tc_filter_wq; |
| 179 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | int unregister_tcf_proto_ops(struct tcf_proto_ops *ops) |
| 181 | { |
WANG Cong | 3627287 | 2013-12-15 20:15:11 -0800 | [diff] [blame] | 182 | struct tcf_proto_ops *t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | int rc = -ENOENT; |
| 184 | |
Daniel Borkmann | c78e174 | 2015-05-20 17:13:33 +0200 | [diff] [blame] | 185 | /* Wait for outstanding call_rcu()s, if any, from a |
| 186 | * tcf_proto_ops's destroy() handler. |
| 187 | */ |
| 188 | rcu_barrier(); |
Cong Wang | 7aa0045 | 2017-10-26 18:24:28 -0700 | [diff] [blame] | 189 | flush_workqueue(tc_filter_wq); |
Daniel Borkmann | c78e174 | 2015-05-20 17:13:33 +0200 | [diff] [blame] | 190 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | write_lock(&cls_mod_lock); |
Eric Dumazet | dcd7608 | 2013-12-20 10:04:18 -0800 | [diff] [blame] | 192 | list_for_each_entry(t, &tcf_proto_base, head) { |
| 193 | if (t == ops) { |
| 194 | list_del(&t->head); |
| 195 | rc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | break; |
Eric Dumazet | dcd7608 | 2013-12-20 10:04:18 -0800 | [diff] [blame] | 197 | } |
| 198 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | write_unlock(&cls_mod_lock); |
| 200 | return rc; |
| 201 | } |
Stephen Hemminger | aa767bf | 2008-01-21 02:26:41 -0800 | [diff] [blame] | 202 | EXPORT_SYMBOL(unregister_tcf_proto_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | |
Cong Wang | aaa908f | 2018-05-23 15:26:53 -0700 | [diff] [blame] | 204 | bool tcf_queue_work(struct rcu_work *rwork, work_func_t func) |
Cong Wang | 7aa0045 | 2017-10-26 18:24:28 -0700 | [diff] [blame] | 205 | { |
Cong Wang | aaa908f | 2018-05-23 15:26:53 -0700 | [diff] [blame] | 206 | INIT_RCU_WORK(rwork, func); |
| 207 | return queue_rcu_work(tc_filter_wq, rwork); |
Cong Wang | 7aa0045 | 2017-10-26 18:24:28 -0700 | [diff] [blame] | 208 | } |
| 209 | EXPORT_SYMBOL(tcf_queue_work); |
| 210 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | /* Select new prio value from the range, managed by kernel. */ |
| 212 | |
Stephen Hemminger | aa767bf | 2008-01-21 02:26:41 -0800 | [diff] [blame] | 213 | static inline u32 tcf_auto_prio(struct tcf_proto *tp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | { |
Stephen Hemminger | aa767bf | 2008-01-21 02:26:41 -0800 | [diff] [blame] | 215 | u32 first = TC_H_MAKE(0xC0000000U, 0U); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | |
| 217 | if (tp) |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 218 | first = tp->prio - 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | |
Jiri Pirko | 7961973 | 2017-05-17 11:07:58 +0200 | [diff] [blame] | 220 | return TC_H_MAJ(first); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | } |
| 222 | |
Cong Wang | 6f96c3c | 2019-10-07 13:26:28 -0700 | [diff] [blame] | 223 | static bool tcf_proto_check_kind(struct nlattr *kind, char *name) |
| 224 | { |
| 225 | if (kind) |
Francis Laniel | 872f690 | 2020-11-15 18:08:06 +0100 | [diff] [blame] | 226 | return nla_strscpy(name, kind, IFNAMSIZ) < 0; |
Cong Wang | 6f96c3c | 2019-10-07 13:26:28 -0700 | [diff] [blame] | 227 | memset(name, 0, IFNAMSIZ); |
| 228 | return false; |
| 229 | } |
| 230 | |
Vlad Buslov | 470502d | 2019-02-11 10:55:48 +0200 | [diff] [blame] | 231 | static bool tcf_proto_is_unlocked(const char *kind) |
| 232 | { |
| 233 | const struct tcf_proto_ops *ops; |
| 234 | bool ret; |
| 235 | |
Cong Wang | 6f96c3c | 2019-10-07 13:26:28 -0700 | [diff] [blame] | 236 | if (strlen(kind) == 0) |
| 237 | return false; |
| 238 | |
Vlad Buslov | 470502d | 2019-02-11 10:55:48 +0200 | [diff] [blame] | 239 | ops = tcf_proto_lookup_ops(kind, false, NULL); |
| 240 | /* On error return false to take rtnl lock. Proto lookup/create |
| 241 | * functions will perform lookup again and properly handle errors. |
| 242 | */ |
| 243 | if (IS_ERR(ops)) |
| 244 | return false; |
| 245 | |
| 246 | ret = !!(ops->flags & TCF_PROTO_OPS_DOIT_UNLOCKED); |
| 247 | module_put(ops->owner); |
| 248 | return ret; |
| 249 | } |
| 250 | |
Jiri Pirko | 33a4892 | 2017-02-09 14:38:57 +0100 | [diff] [blame] | 251 | static struct tcf_proto *tcf_proto_create(const char *kind, u32 protocol, |
Alexander Aring | c35a4ac | 2018-01-18 11:20:50 -0500 | [diff] [blame] | 252 | u32 prio, struct tcf_chain *chain, |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 253 | bool rtnl_held, |
Alexander Aring | c35a4ac | 2018-01-18 11:20:50 -0500 | [diff] [blame] | 254 | struct netlink_ext_ack *extack) |
Jiri Pirko | 33a4892 | 2017-02-09 14:38:57 +0100 | [diff] [blame] | 255 | { |
| 256 | struct tcf_proto *tp; |
| 257 | int err; |
| 258 | |
| 259 | tp = kzalloc(sizeof(*tp), GFP_KERNEL); |
| 260 | if (!tp) |
| 261 | return ERR_PTR(-ENOBUFS); |
| 262 | |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 263 | tp->ops = tcf_proto_lookup_ops(kind, rtnl_held, extack); |
Jiri Pirko | f34e8bf | 2018-07-23 09:23:04 +0200 | [diff] [blame] | 264 | if (IS_ERR(tp->ops)) { |
| 265 | err = PTR_ERR(tp->ops); |
Jiri Pirko | d68d75f | 2018-05-11 17:45:32 +0200 | [diff] [blame] | 266 | goto errout; |
Jiri Pirko | 33a4892 | 2017-02-09 14:38:57 +0100 | [diff] [blame] | 267 | } |
| 268 | tp->classify = tp->ops->classify; |
| 269 | tp->protocol = protocol; |
| 270 | tp->prio = prio; |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 271 | tp->chain = chain; |
Vlad Buslov | 8b64678 | 2019-02-11 10:55:41 +0200 | [diff] [blame] | 272 | spin_lock_init(&tp->lock); |
Vlad Buslov | 4dbfa76 | 2019-02-11 10:55:39 +0200 | [diff] [blame] | 273 | refcount_set(&tp->refcnt, 1); |
Jiri Pirko | 33a4892 | 2017-02-09 14:38:57 +0100 | [diff] [blame] | 274 | |
| 275 | err = tp->ops->init(tp); |
| 276 | if (err) { |
| 277 | module_put(tp->ops->owner); |
| 278 | goto errout; |
| 279 | } |
| 280 | return tp; |
| 281 | |
| 282 | errout: |
| 283 | kfree(tp); |
| 284 | return ERR_PTR(err); |
| 285 | } |
| 286 | |
Vlad Buslov | 4dbfa76 | 2019-02-11 10:55:39 +0200 | [diff] [blame] | 287 | static void tcf_proto_get(struct tcf_proto *tp) |
| 288 | { |
| 289 | refcount_inc(&tp->refcnt); |
| 290 | } |
| 291 | |
| 292 | static void tcf_chain_put(struct tcf_chain *chain); |
| 293 | |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 294 | static void tcf_proto_destroy(struct tcf_proto *tp, bool rtnl_held, |
John Hurley | 59eb87c | 2019-11-02 14:17:47 +0000 | [diff] [blame] | 295 | bool sig_destroy, struct netlink_ext_ack *extack) |
Jiri Pirko | cf1facd | 2017-02-09 14:38:56 +0100 | [diff] [blame] | 296 | { |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 297 | tp->ops->destroy(tp, rtnl_held, extack); |
John Hurley | 59eb87c | 2019-11-02 14:17:47 +0000 | [diff] [blame] | 298 | if (sig_destroy) |
| 299 | tcf_proto_signal_destroyed(tp->chain, tp); |
Vlad Buslov | 4dbfa76 | 2019-02-11 10:55:39 +0200 | [diff] [blame] | 300 | tcf_chain_put(tp->chain); |
WANG Cong | 763dbf6 | 2017-04-19 14:21:21 -0700 | [diff] [blame] | 301 | module_put(tp->ops->owner); |
| 302 | kfree_rcu(tp, rcu); |
Jiri Pirko | cf1facd | 2017-02-09 14:38:56 +0100 | [diff] [blame] | 303 | } |
| 304 | |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 305 | static void tcf_proto_put(struct tcf_proto *tp, bool rtnl_held, |
Vlad Buslov | 4dbfa76 | 2019-02-11 10:55:39 +0200 | [diff] [blame] | 306 | struct netlink_ext_ack *extack) |
| 307 | { |
| 308 | if (refcount_dec_and_test(&tp->refcnt)) |
John Hurley | 59eb87c | 2019-11-02 14:17:47 +0000 | [diff] [blame] | 309 | tcf_proto_destroy(tp, rtnl_held, true, extack); |
Vlad Buslov | 4dbfa76 | 2019-02-11 10:55:39 +0200 | [diff] [blame] | 310 | } |
| 311 | |
Davide Caratti | a5b72a0 | 2019-12-28 16:36:58 +0100 | [diff] [blame] | 312 | static bool tcf_proto_check_delete(struct tcf_proto *tp) |
Vlad Buslov | 8b64678 | 2019-02-11 10:55:41 +0200 | [diff] [blame] | 313 | { |
Davide Caratti | a5b72a0 | 2019-12-28 16:36:58 +0100 | [diff] [blame] | 314 | if (tp->ops->delete_empty) |
| 315 | return tp->ops->delete_empty(tp); |
Vlad Buslov | 8b64678 | 2019-02-11 10:55:41 +0200 | [diff] [blame] | 316 | |
Davide Caratti | a5b72a0 | 2019-12-28 16:36:58 +0100 | [diff] [blame] | 317 | tp->deleting = true; |
Vlad Buslov | 8b64678 | 2019-02-11 10:55:41 +0200 | [diff] [blame] | 318 | return tp->deleting; |
| 319 | } |
| 320 | |
| 321 | static void tcf_proto_mark_delete(struct tcf_proto *tp) |
| 322 | { |
| 323 | spin_lock(&tp->lock); |
| 324 | tp->deleting = true; |
| 325 | spin_unlock(&tp->lock); |
| 326 | } |
| 327 | |
| 328 | static bool tcf_proto_is_deleting(struct tcf_proto *tp) |
| 329 | { |
| 330 | bool deleting; |
| 331 | |
| 332 | spin_lock(&tp->lock); |
| 333 | deleting = tp->deleting; |
| 334 | spin_unlock(&tp->lock); |
| 335 | |
| 336 | return deleting; |
| 337 | } |
| 338 | |
Vlad Buslov | c266f64 | 2019-02-11 10:55:32 +0200 | [diff] [blame] | 339 | #define ASSERT_BLOCK_LOCKED(block) \ |
| 340 | lockdep_assert_held(&(block)->lock) |
| 341 | |
Jiri Pirko | a9b1944 | 2018-01-17 11:46:45 +0100 | [diff] [blame] | 342 | struct tcf_filter_chain_list_item { |
| 343 | struct list_head list; |
| 344 | tcf_chain_head_change_t *chain_head_change; |
| 345 | void *chain_head_change_priv; |
| 346 | }; |
| 347 | |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 348 | static struct tcf_chain *tcf_chain_create(struct tcf_block *block, |
| 349 | u32 chain_index) |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 350 | { |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 351 | struct tcf_chain *chain; |
| 352 | |
Vlad Buslov | c266f64 | 2019-02-11 10:55:32 +0200 | [diff] [blame] | 353 | ASSERT_BLOCK_LOCKED(block); |
| 354 | |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 355 | chain = kzalloc(sizeof(*chain), GFP_KERNEL); |
| 356 | if (!chain) |
| 357 | return NULL; |
Paul Blakey | 4371929 | 2020-02-16 12:01:23 +0200 | [diff] [blame] | 358 | list_add_tail_rcu(&chain->list, &block->chain_list); |
Vlad Buslov | ed76f5e | 2019-02-11 10:55:38 +0200 | [diff] [blame] | 359 | mutex_init(&chain->filter_chain_lock); |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 360 | chain->block = block; |
| 361 | chain->index = chain_index; |
Cong Wang | e2ef754 | 2017-09-11 16:33:31 -0700 | [diff] [blame] | 362 | chain->refcnt = 1; |
Jiri Pirko | f71e0ca4 | 2018-07-23 09:23:05 +0200 | [diff] [blame] | 363 | if (!chain->index) |
| 364 | block->chain0.chain = chain; |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 365 | return chain; |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 366 | } |
| 367 | |
Jiri Pirko | a9b1944 | 2018-01-17 11:46:45 +0100 | [diff] [blame] | 368 | static void tcf_chain_head_change_item(struct tcf_filter_chain_list_item *item, |
| 369 | struct tcf_proto *tp_head) |
| 370 | { |
| 371 | if (item->chain_head_change) |
| 372 | item->chain_head_change(tp_head, item->chain_head_change_priv); |
| 373 | } |
Jiri Pirko | f71e0ca4 | 2018-07-23 09:23:05 +0200 | [diff] [blame] | 374 | |
| 375 | static void tcf_chain0_head_change(struct tcf_chain *chain, |
| 376 | struct tcf_proto *tp_head) |
Jiri Pirko | c7eb7d7 | 2017-11-03 11:46:24 +0100 | [diff] [blame] | 377 | { |
Jiri Pirko | a9b1944 | 2018-01-17 11:46:45 +0100 | [diff] [blame] | 378 | struct tcf_filter_chain_list_item *item; |
Jiri Pirko | f71e0ca4 | 2018-07-23 09:23:05 +0200 | [diff] [blame] | 379 | struct tcf_block *block = chain->block; |
Jiri Pirko | a9b1944 | 2018-01-17 11:46:45 +0100 | [diff] [blame] | 380 | |
Jiri Pirko | f71e0ca4 | 2018-07-23 09:23:05 +0200 | [diff] [blame] | 381 | if (chain->index) |
| 382 | return; |
Vlad Buslov | 165f013 | 2019-02-11 10:55:35 +0200 | [diff] [blame] | 383 | |
| 384 | mutex_lock(&block->lock); |
Jiri Pirko | f71e0ca4 | 2018-07-23 09:23:05 +0200 | [diff] [blame] | 385 | list_for_each_entry(item, &block->chain0.filter_chain_list, list) |
Jiri Pirko | a9b1944 | 2018-01-17 11:46:45 +0100 | [diff] [blame] | 386 | tcf_chain_head_change_item(item, tp_head); |
Vlad Buslov | 165f013 | 2019-02-11 10:55:35 +0200 | [diff] [blame] | 387 | mutex_unlock(&block->lock); |
Jiri Pirko | c7eb7d7 | 2017-11-03 11:46:24 +0100 | [diff] [blame] | 388 | } |
| 389 | |
Vlad Buslov | c266f64 | 2019-02-11 10:55:32 +0200 | [diff] [blame] | 390 | /* Returns true if block can be safely freed. */ |
| 391 | |
| 392 | static bool tcf_chain_detach(struct tcf_chain *chain) |
Jiri Pirko | f93e1cd | 2017-05-20 15:01:32 +0200 | [diff] [blame] | 393 | { |
Cong Wang | efbf789 | 2017-12-04 10:48:18 -0800 | [diff] [blame] | 394 | struct tcf_block *block = chain->block; |
| 395 | |
Vlad Buslov | c266f64 | 2019-02-11 10:55:32 +0200 | [diff] [blame] | 396 | ASSERT_BLOCK_LOCKED(block); |
| 397 | |
Paul Blakey | 4371929 | 2020-02-16 12:01:23 +0200 | [diff] [blame] | 398 | list_del_rcu(&chain->list); |
Jiri Pirko | f71e0ca4 | 2018-07-23 09:23:05 +0200 | [diff] [blame] | 399 | if (!chain->index) |
| 400 | block->chain0.chain = NULL; |
Vlad Buslov | c266f64 | 2019-02-11 10:55:32 +0200 | [diff] [blame] | 401 | |
| 402 | if (list_empty(&block->chain_list) && |
| 403 | refcount_read(&block->refcnt) == 0) |
| 404 | return true; |
| 405 | |
| 406 | return false; |
| 407 | } |
| 408 | |
| 409 | static void tcf_block_destroy(struct tcf_block *block) |
| 410 | { |
| 411 | mutex_destroy(&block->lock); |
John Hurley | 59eb87c | 2019-11-02 14:17:47 +0000 | [diff] [blame] | 412 | mutex_destroy(&block->proto_destroy_lock); |
Vlad Buslov | c266f64 | 2019-02-11 10:55:32 +0200 | [diff] [blame] | 413 | kfree_rcu(block, rcu); |
| 414 | } |
| 415 | |
| 416 | static void tcf_chain_destroy(struct tcf_chain *chain, bool free_block) |
| 417 | { |
| 418 | struct tcf_block *block = chain->block; |
| 419 | |
Vlad Buslov | ed76f5e | 2019-02-11 10:55:38 +0200 | [diff] [blame] | 420 | mutex_destroy(&chain->filter_chain_lock); |
Davide Caratti | ee3bbfe | 2019-03-20 15:00:16 +0100 | [diff] [blame] | 421 | kfree_rcu(chain, rcu); |
Vlad Buslov | c266f64 | 2019-02-11 10:55:32 +0200 | [diff] [blame] | 422 | if (free_block) |
| 423 | tcf_block_destroy(block); |
Cong Wang | e2ef754 | 2017-09-11 16:33:31 -0700 | [diff] [blame] | 424 | } |
Jiri Pirko | 744a4cf | 2017-08-22 22:46:49 +0200 | [diff] [blame] | 425 | |
Cong Wang | e2ef754 | 2017-09-11 16:33:31 -0700 | [diff] [blame] | 426 | static void tcf_chain_hold(struct tcf_chain *chain) |
| 427 | { |
Vlad Buslov | c266f64 | 2019-02-11 10:55:32 +0200 | [diff] [blame] | 428 | ASSERT_BLOCK_LOCKED(chain->block); |
| 429 | |
Cong Wang | e2ef754 | 2017-09-11 16:33:31 -0700 | [diff] [blame] | 430 | ++chain->refcnt; |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 431 | } |
| 432 | |
Jiri Pirko | 3d32f4c | 2018-08-01 12:36:55 +0200 | [diff] [blame] | 433 | static bool tcf_chain_held_by_acts_only(struct tcf_chain *chain) |
Jiri Pirko | 1f3ed38 | 2018-07-27 09:45:05 +0200 | [diff] [blame] | 434 | { |
Vlad Buslov | c266f64 | 2019-02-11 10:55:32 +0200 | [diff] [blame] | 435 | ASSERT_BLOCK_LOCKED(chain->block); |
| 436 | |
Jiri Pirko | 1f3ed38 | 2018-07-27 09:45:05 +0200 | [diff] [blame] | 437 | /* In case all the references are action references, this |
Jiri Pirko | 3d32f4c | 2018-08-01 12:36:55 +0200 | [diff] [blame] | 438 | * chain should not be shown to the user. |
Jiri Pirko | 1f3ed38 | 2018-07-27 09:45:05 +0200 | [diff] [blame] | 439 | */ |
| 440 | return chain->refcnt == chain->action_refcnt; |
| 441 | } |
| 442 | |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 443 | static struct tcf_chain *tcf_chain_lookup(struct tcf_block *block, |
| 444 | u32 chain_index) |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 445 | { |
| 446 | struct tcf_chain *chain; |
| 447 | |
Vlad Buslov | c266f64 | 2019-02-11 10:55:32 +0200 | [diff] [blame] | 448 | ASSERT_BLOCK_LOCKED(block); |
| 449 | |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 450 | list_for_each_entry(chain, &block->chain_list, list) { |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 451 | if (chain->index == chain_index) |
Cong Wang | e2ef754 | 2017-09-11 16:33:31 -0700 | [diff] [blame] | 452 | return chain; |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 453 | } |
| 454 | return NULL; |
| 455 | } |
| 456 | |
Paul Blakey | af69962 | 2020-02-16 12:01:24 +0200 | [diff] [blame] | 457 | #if IS_ENABLED(CONFIG_NET_TC_SKB_EXT) |
| 458 | static struct tcf_chain *tcf_chain_lookup_rcu(const struct tcf_block *block, |
| 459 | u32 chain_index) |
| 460 | { |
| 461 | struct tcf_chain *chain; |
| 462 | |
| 463 | list_for_each_entry_rcu(chain, &block->chain_list, list) { |
| 464 | if (chain->index == chain_index) |
| 465 | return chain; |
| 466 | } |
| 467 | return NULL; |
| 468 | } |
| 469 | #endif |
| 470 | |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 471 | static int tc_chain_notify(struct tcf_chain *chain, struct sk_buff *oskb, |
| 472 | u32 seq, u16 flags, int event, bool unicast); |
| 473 | |
Jiri Pirko | 5368140 | 2018-08-01 12:36:56 +0200 | [diff] [blame] | 474 | static struct tcf_chain *__tcf_chain_get(struct tcf_block *block, |
| 475 | u32 chain_index, bool create, |
| 476 | bool by_act) |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 477 | { |
Vlad Buslov | c266f64 | 2019-02-11 10:55:32 +0200 | [diff] [blame] | 478 | struct tcf_chain *chain = NULL; |
| 479 | bool is_first_reference; |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 480 | |
Vlad Buslov | c266f64 | 2019-02-11 10:55:32 +0200 | [diff] [blame] | 481 | mutex_lock(&block->lock); |
| 482 | chain = tcf_chain_lookup(block, chain_index); |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 483 | if (chain) { |
| 484 | tcf_chain_hold(chain); |
Jiri Pirko | 5368140 | 2018-08-01 12:36:56 +0200 | [diff] [blame] | 485 | } else { |
| 486 | if (!create) |
Vlad Buslov | c266f64 | 2019-02-11 10:55:32 +0200 | [diff] [blame] | 487 | goto errout; |
Jiri Pirko | 5368140 | 2018-08-01 12:36:56 +0200 | [diff] [blame] | 488 | chain = tcf_chain_create(block, chain_index); |
| 489 | if (!chain) |
Vlad Buslov | c266f64 | 2019-02-11 10:55:32 +0200 | [diff] [blame] | 490 | goto errout; |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 491 | } |
Jiri Pirko | 8053238 | 2017-09-06 13:14:19 +0200 | [diff] [blame] | 492 | |
Jiri Pirko | 5368140 | 2018-08-01 12:36:56 +0200 | [diff] [blame] | 493 | if (by_act) |
| 494 | ++chain->action_refcnt; |
Vlad Buslov | c266f64 | 2019-02-11 10:55:32 +0200 | [diff] [blame] | 495 | is_first_reference = chain->refcnt - chain->action_refcnt == 1; |
| 496 | mutex_unlock(&block->lock); |
Jiri Pirko | 5368140 | 2018-08-01 12:36:56 +0200 | [diff] [blame] | 497 | |
| 498 | /* Send notification only in case we got the first |
| 499 | * non-action reference. Until then, the chain acts only as |
| 500 | * a placeholder for actions pointing to it and user ought |
| 501 | * not know about them. |
| 502 | */ |
Vlad Buslov | c266f64 | 2019-02-11 10:55:32 +0200 | [diff] [blame] | 503 | if (is_first_reference && !by_act) |
Jiri Pirko | 5368140 | 2018-08-01 12:36:56 +0200 | [diff] [blame] | 504 | tc_chain_notify(chain, NULL, 0, NLM_F_CREATE | NLM_F_EXCL, |
| 505 | RTM_NEWCHAIN, false); |
| 506 | |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 507 | return chain; |
Vlad Buslov | c266f64 | 2019-02-11 10:55:32 +0200 | [diff] [blame] | 508 | |
| 509 | errout: |
| 510 | mutex_unlock(&block->lock); |
| 511 | return chain; |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 512 | } |
Jiri Pirko | 5368140 | 2018-08-01 12:36:56 +0200 | [diff] [blame] | 513 | |
Jiri Pirko | 290b1c8 | 2018-08-01 12:36:57 +0200 | [diff] [blame] | 514 | static struct tcf_chain *tcf_chain_get(struct tcf_block *block, u32 chain_index, |
| 515 | bool create) |
Jiri Pirko | 5368140 | 2018-08-01 12:36:56 +0200 | [diff] [blame] | 516 | { |
| 517 | return __tcf_chain_get(block, chain_index, create, false); |
| 518 | } |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 519 | |
Jiri Pirko | 1f3ed38 | 2018-07-27 09:45:05 +0200 | [diff] [blame] | 520 | struct tcf_chain *tcf_chain_get_by_act(struct tcf_block *block, u32 chain_index) |
| 521 | { |
Jiri Pirko | 5368140 | 2018-08-01 12:36:56 +0200 | [diff] [blame] | 522 | return __tcf_chain_get(block, chain_index, true, true); |
Jiri Pirko | 1f3ed38 | 2018-07-27 09:45:05 +0200 | [diff] [blame] | 523 | } |
| 524 | EXPORT_SYMBOL(tcf_chain_get_by_act); |
| 525 | |
Vlad Buslov | a565482 | 2019-02-11 10:55:37 +0200 | [diff] [blame] | 526 | static void tc_chain_tmplt_del(const struct tcf_proto_ops *tmplt_ops, |
| 527 | void *tmplt_priv); |
| 528 | static int tc_chain_notify_delete(const struct tcf_proto_ops *tmplt_ops, |
| 529 | void *tmplt_priv, u32 chain_index, |
| 530 | struct tcf_block *block, struct sk_buff *oskb, |
| 531 | u32 seq, u16 flags, bool unicast); |
Jiri Pirko | 9f407f1 | 2018-07-23 09:23:07 +0200 | [diff] [blame] | 532 | |
Vlad Buslov | 91052fa | 2019-02-11 10:55:33 +0200 | [diff] [blame] | 533 | static void __tcf_chain_put(struct tcf_chain *chain, bool by_act, |
| 534 | bool explicitly_created) |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 535 | { |
Vlad Buslov | c266f64 | 2019-02-11 10:55:32 +0200 | [diff] [blame] | 536 | struct tcf_block *block = chain->block; |
Vlad Buslov | a565482 | 2019-02-11 10:55:37 +0200 | [diff] [blame] | 537 | const struct tcf_proto_ops *tmplt_ops; |
Vlad Buslov | b62989f | 2019-03-06 17:50:43 +0200 | [diff] [blame] | 538 | bool free_block = false; |
Vlad Buslov | c266f64 | 2019-02-11 10:55:32 +0200 | [diff] [blame] | 539 | unsigned int refcnt; |
Vlad Buslov | a565482 | 2019-02-11 10:55:37 +0200 | [diff] [blame] | 540 | void *tmplt_priv; |
Vlad Buslov | c266f64 | 2019-02-11 10:55:32 +0200 | [diff] [blame] | 541 | |
| 542 | mutex_lock(&block->lock); |
Vlad Buslov | 91052fa | 2019-02-11 10:55:33 +0200 | [diff] [blame] | 543 | if (explicitly_created) { |
| 544 | if (!chain->explicitly_created) { |
| 545 | mutex_unlock(&block->lock); |
| 546 | return; |
| 547 | } |
| 548 | chain->explicitly_created = false; |
| 549 | } |
| 550 | |
Jiri Pirko | 5368140 | 2018-08-01 12:36:56 +0200 | [diff] [blame] | 551 | if (by_act) |
| 552 | chain->action_refcnt--; |
Vlad Buslov | c266f64 | 2019-02-11 10:55:32 +0200 | [diff] [blame] | 553 | |
| 554 | /* tc_chain_notify_delete can't be called while holding block lock. |
| 555 | * However, when block is unlocked chain can be changed concurrently, so |
| 556 | * save these to temporary variables. |
| 557 | */ |
| 558 | refcnt = --chain->refcnt; |
Vlad Buslov | a565482 | 2019-02-11 10:55:37 +0200 | [diff] [blame] | 559 | tmplt_ops = chain->tmplt_ops; |
| 560 | tmplt_priv = chain->tmplt_priv; |
Jiri Pirko | 5368140 | 2018-08-01 12:36:56 +0200 | [diff] [blame] | 561 | |
| 562 | /* The last dropped non-action reference will trigger notification. */ |
Vlad Buslov | b62989f | 2019-03-06 17:50:43 +0200 | [diff] [blame] | 563 | if (refcnt - chain->action_refcnt == 0 && !by_act) { |
| 564 | tc_chain_notify_delete(tmplt_ops, tmplt_priv, chain->index, |
Vlad Buslov | a565482 | 2019-02-11 10:55:37 +0200 | [diff] [blame] | 565 | block, NULL, 0, 0, false); |
Vlad Buslov | 726d0612 | 2019-02-11 10:55:42 +0200 | [diff] [blame] | 566 | /* Last reference to chain, no need to lock. */ |
| 567 | chain->flushing = false; |
| 568 | } |
Jiri Pirko | 5368140 | 2018-08-01 12:36:56 +0200 | [diff] [blame] | 569 | |
Vlad Buslov | b62989f | 2019-03-06 17:50:43 +0200 | [diff] [blame] | 570 | if (refcnt == 0) |
| 571 | free_block = tcf_chain_detach(chain); |
| 572 | mutex_unlock(&block->lock); |
| 573 | |
Vlad Buslov | c266f64 | 2019-02-11 10:55:32 +0200 | [diff] [blame] | 574 | if (refcnt == 0) { |
Vlad Buslov | a565482 | 2019-02-11 10:55:37 +0200 | [diff] [blame] | 575 | tc_chain_tmplt_del(tmplt_ops, tmplt_priv); |
Vlad Buslov | c266f64 | 2019-02-11 10:55:32 +0200 | [diff] [blame] | 576 | tcf_chain_destroy(chain, free_block); |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 577 | } |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 578 | } |
Jiri Pirko | 5368140 | 2018-08-01 12:36:56 +0200 | [diff] [blame] | 579 | |
Jiri Pirko | 290b1c8 | 2018-08-01 12:36:57 +0200 | [diff] [blame] | 580 | static void tcf_chain_put(struct tcf_chain *chain) |
Jiri Pirko | 5368140 | 2018-08-01 12:36:56 +0200 | [diff] [blame] | 581 | { |
Vlad Buslov | 91052fa | 2019-02-11 10:55:33 +0200 | [diff] [blame] | 582 | __tcf_chain_put(chain, false, false); |
Jiri Pirko | 5368140 | 2018-08-01 12:36:56 +0200 | [diff] [blame] | 583 | } |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 584 | |
Jiri Pirko | 1f3ed38 | 2018-07-27 09:45:05 +0200 | [diff] [blame] | 585 | void tcf_chain_put_by_act(struct tcf_chain *chain) |
| 586 | { |
Vlad Buslov | 91052fa | 2019-02-11 10:55:33 +0200 | [diff] [blame] | 587 | __tcf_chain_put(chain, true, false); |
Jiri Pirko | 1f3ed38 | 2018-07-27 09:45:05 +0200 | [diff] [blame] | 588 | } |
| 589 | EXPORT_SYMBOL(tcf_chain_put_by_act); |
| 590 | |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 591 | static void tcf_chain_put_explicitly_created(struct tcf_chain *chain) |
| 592 | { |
Vlad Buslov | 91052fa | 2019-02-11 10:55:33 +0200 | [diff] [blame] | 593 | __tcf_chain_put(chain, false, true); |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 594 | } |
| 595 | |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 596 | static void tcf_chain_flush(struct tcf_chain *chain, bool rtnl_held) |
Jiri Pirko | 290b1c8 | 2018-08-01 12:36:57 +0200 | [diff] [blame] | 597 | { |
Vlad Buslov | 4dbfa76 | 2019-02-11 10:55:39 +0200 | [diff] [blame] | 598 | struct tcf_proto *tp, *tp_next; |
Jiri Pirko | 290b1c8 | 2018-08-01 12:36:57 +0200 | [diff] [blame] | 599 | |
Vlad Buslov | ed76f5e | 2019-02-11 10:55:38 +0200 | [diff] [blame] | 600 | mutex_lock(&chain->filter_chain_lock); |
| 601 | tp = tcf_chain_dereference(chain->filter_chain, chain); |
John Hurley | 59eb87c | 2019-11-02 14:17:47 +0000 | [diff] [blame] | 602 | while (tp) { |
| 603 | tp_next = rcu_dereference_protected(tp->next, 1); |
| 604 | tcf_proto_signal_destroying(chain, tp); |
| 605 | tp = tp_next; |
| 606 | } |
| 607 | tp = tcf_chain_dereference(chain->filter_chain, chain); |
Vlad Buslov | 4dbfa76 | 2019-02-11 10:55:39 +0200 | [diff] [blame] | 608 | RCU_INIT_POINTER(chain->filter_chain, NULL); |
Jiri Pirko | 290b1c8 | 2018-08-01 12:36:57 +0200 | [diff] [blame] | 609 | tcf_chain0_head_change(chain, NULL); |
Vlad Buslov | 726d0612 | 2019-02-11 10:55:42 +0200 | [diff] [blame] | 610 | chain->flushing = true; |
Vlad Buslov | ed76f5e | 2019-02-11 10:55:38 +0200 | [diff] [blame] | 611 | mutex_unlock(&chain->filter_chain_lock); |
| 612 | |
Jiri Pirko | 290b1c8 | 2018-08-01 12:36:57 +0200 | [diff] [blame] | 613 | while (tp) { |
Vlad Buslov | 4dbfa76 | 2019-02-11 10:55:39 +0200 | [diff] [blame] | 614 | tp_next = rcu_dereference_protected(tp->next, 1); |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 615 | tcf_proto_put(tp, rtnl_held, NULL); |
Vlad Buslov | 4dbfa76 | 2019-02-11 10:55:39 +0200 | [diff] [blame] | 616 | tp = tp_next; |
Jiri Pirko | 290b1c8 | 2018-08-01 12:36:57 +0200 | [diff] [blame] | 617 | } |
| 618 | } |
| 619 | |
wenxu | 4e48190 | 2019-08-07 09:13:52 +0800 | [diff] [blame] | 620 | static int tcf_block_setup(struct tcf_block *block, |
| 621 | struct flow_block_offload *bo); |
| 622 | |
Pablo Neira Ayuso | 324a823 | 2020-05-29 02:25:36 +0200 | [diff] [blame] | 623 | static void tcf_block_offload_init(struct flow_block_offload *bo, |
Petr Machata | c40f4e5 | 2020-07-11 00:55:03 +0300 | [diff] [blame] | 624 | struct net_device *dev, struct Qdisc *sch, |
Pablo Neira Ayuso | 324a823 | 2020-05-29 02:25:36 +0200 | [diff] [blame] | 625 | enum flow_block_command command, |
| 626 | enum flow_block_binder_type binder_type, |
| 627 | struct flow_block *flow_block, |
| 628 | bool shared, struct netlink_ext_ack *extack) |
| 629 | { |
| 630 | bo->net = dev_net(dev); |
| 631 | bo->command = command; |
| 632 | bo->binder_type = binder_type; |
| 633 | bo->block = flow_block; |
| 634 | bo->block_shared = shared; |
| 635 | bo->extack = extack; |
Petr Machata | c40f4e5 | 2020-07-11 00:55:03 +0300 | [diff] [blame] | 636 | bo->sch = sch; |
Eli Cohen | 74fc4f8 | 2021-08-17 20:05:18 +0300 | [diff] [blame] | 637 | bo->cb_list_head = &flow_block->cb_list; |
Pablo Neira Ayuso | 324a823 | 2020-05-29 02:25:36 +0200 | [diff] [blame] | 638 | INIT_LIST_HEAD(&bo->cb_list); |
| 639 | } |
| 640 | |
Pablo Neira Ayuso | 0fdcf78 | 2020-05-29 02:25:37 +0200 | [diff] [blame] | 641 | static void tcf_block_unbind(struct tcf_block *block, |
| 642 | struct flow_block_offload *bo); |
John Hurley | 7f76fa3 | 2018-11-09 21:21:26 -0800 | [diff] [blame] | 643 | |
Pablo Neira Ayuso | 0fdcf78 | 2020-05-29 02:25:37 +0200 | [diff] [blame] | 644 | static void tc_block_indr_cleanup(struct flow_block_cb *block_cb) |
| 645 | { |
| 646 | struct tcf_block *block = block_cb->indr.data; |
| 647 | struct net_device *dev = block_cb->indr.dev; |
Petr Machata | c40f4e5 | 2020-07-11 00:55:03 +0300 | [diff] [blame] | 648 | struct Qdisc *sch = block_cb->indr.sch; |
Pablo Neira Ayuso | 0fdcf78 | 2020-05-29 02:25:37 +0200 | [diff] [blame] | 649 | struct netlink_ext_ack extack = {}; |
Yunjian Wang | 990b03b | 2021-04-01 12:52:48 +0800 | [diff] [blame] | 650 | struct flow_block_offload bo = {}; |
Pablo Neira Ayuso | 0fdcf78 | 2020-05-29 02:25:37 +0200 | [diff] [blame] | 651 | |
Petr Machata | c40f4e5 | 2020-07-11 00:55:03 +0300 | [diff] [blame] | 652 | tcf_block_offload_init(&bo, dev, sch, FLOW_BLOCK_UNBIND, |
Pablo Neira Ayuso | 0fdcf78 | 2020-05-29 02:25:37 +0200 | [diff] [blame] | 653 | block_cb->indr.binder_type, |
| 654 | &block->flow_block, tcf_block_shared(block), |
| 655 | &extack); |
Leon Romanovsky | d6535dc | 2020-10-26 14:33:27 +0200 | [diff] [blame] | 656 | rtnl_lock(); |
Pablo Neira Ayuso | 0fdcf78 | 2020-05-29 02:25:37 +0200 | [diff] [blame] | 657 | down_write(&block->cb_lock); |
wenxu | a1db217 | 2020-06-18 20:49:10 +0800 | [diff] [blame] | 658 | list_del(&block_cb->driver_list); |
Pablo Neira Ayuso | 0fdcf78 | 2020-05-29 02:25:37 +0200 | [diff] [blame] | 659 | list_move(&block_cb->list, &bo.cb_list); |
Pablo Neira Ayuso | 0fdcf78 | 2020-05-29 02:25:37 +0200 | [diff] [blame] | 660 | tcf_block_unbind(block, &bo); |
Leon Romanovsky | d6535dc | 2020-10-26 14:33:27 +0200 | [diff] [blame] | 661 | up_write(&block->cb_lock); |
Pablo Neira Ayuso | 0fdcf78 | 2020-05-29 02:25:37 +0200 | [diff] [blame] | 662 | rtnl_unlock(); |
John Hurley | 7f76fa3 | 2018-11-09 21:21:26 -0800 | [diff] [blame] | 663 | } |
| 664 | |
Jiri Pirko | caa7260 | 2018-01-17 11:46:50 +0100 | [diff] [blame] | 665 | static bool tcf_block_offload_in_use(struct tcf_block *block) |
Jiri Pirko | 8c4083b | 2017-10-19 15:50:29 +0200 | [diff] [blame] | 666 | { |
Vlad Buslov | 97394be | 2019-08-26 16:44:58 +0300 | [diff] [blame] | 667 | return atomic_read(&block->offloadcnt); |
Jiri Pirko | caa7260 | 2018-01-17 11:46:50 +0100 | [diff] [blame] | 668 | } |
| 669 | |
| 670 | static int tcf_block_offload_cmd(struct tcf_block *block, |
Petr Machata | c40f4e5 | 2020-07-11 00:55:03 +0300 | [diff] [blame] | 671 | struct net_device *dev, struct Qdisc *sch, |
Jiri Pirko | caa7260 | 2018-01-17 11:46:50 +0100 | [diff] [blame] | 672 | struct tcf_block_ext_info *ei, |
Pablo Neira Ayuso | 9c0e189 | 2019-07-09 22:55:40 +0200 | [diff] [blame] | 673 | enum flow_block_command command, |
John Hurley | 60513bd | 2018-06-25 14:30:04 -0700 | [diff] [blame] | 674 | struct netlink_ext_ack *extack) |
Jiri Pirko | caa7260 | 2018-01-17 11:46:50 +0100 | [diff] [blame] | 675 | { |
Pablo Neira Ayuso | 955bcb6 | 2019-07-09 22:55:46 +0200 | [diff] [blame] | 676 | struct flow_block_offload bo = {}; |
Jiri Pirko | 8c4083b | 2017-10-19 15:50:29 +0200 | [diff] [blame] | 677 | |
Petr Machata | c40f4e5 | 2020-07-11 00:55:03 +0300 | [diff] [blame] | 678 | tcf_block_offload_init(&bo, dev, sch, command, ei->binder_type, |
Pablo Neira Ayuso | 324a823 | 2020-05-29 02:25:36 +0200 | [diff] [blame] | 679 | &block->flow_block, tcf_block_shared(block), |
| 680 | extack); |
Pablo Neira Ayuso | 59094b1 | 2019-07-09 22:55:45 +0200 | [diff] [blame] | 681 | |
wenxu | 3c00511 | 2020-06-18 20:49:11 +0800 | [diff] [blame] | 682 | if (dev->netdev_ops->ndo_setup_tc) { |
| 683 | int err; |
Pablo Neira Ayuso | 0fdcf78 | 2020-05-29 02:25:37 +0200 | [diff] [blame] | 684 | |
wenxu | 3c00511 | 2020-06-18 20:49:11 +0800 | [diff] [blame] | 685 | err = dev->netdev_ops->ndo_setup_tc(dev, TC_SETUP_BLOCK, &bo); |
| 686 | if (err < 0) { |
| 687 | if (err != -EOPNOTSUPP) |
| 688 | NL_SET_ERR_MSG(extack, "Driver ndo_setup_tc failed"); |
| 689 | return err; |
| 690 | } |
| 691 | |
| 692 | return tcf_block_setup(block, &bo); |
Jesper Dangaard Brouer | b70ba69 | 2020-04-23 16:57:45 +0200 | [diff] [blame] | 693 | } |
Pablo Neira Ayuso | 59094b1 | 2019-07-09 22:55:45 +0200 | [diff] [blame] | 694 | |
Petr Machata | c40f4e5 | 2020-07-11 00:55:03 +0300 | [diff] [blame] | 695 | flow_indr_dev_setup_offload(dev, sch, TC_SETUP_BLOCK, block, &bo, |
wenxu | 3c00511 | 2020-06-18 20:49:11 +0800 | [diff] [blame] | 696 | tc_block_indr_cleanup); |
| 697 | tcf_block_setup(block, &bo); |
| 698 | |
| 699 | return -EOPNOTSUPP; |
Jiri Pirko | 8c4083b | 2017-10-19 15:50:29 +0200 | [diff] [blame] | 700 | } |
| 701 | |
Jiri Pirko | caa7260 | 2018-01-17 11:46:50 +0100 | [diff] [blame] | 702 | static int tcf_block_offload_bind(struct tcf_block *block, struct Qdisc *q, |
John Hurley | 60513bd | 2018-06-25 14:30:04 -0700 | [diff] [blame] | 703 | struct tcf_block_ext_info *ei, |
| 704 | struct netlink_ext_ack *extack) |
Jiri Pirko | 8c4083b | 2017-10-19 15:50:29 +0200 | [diff] [blame] | 705 | { |
Jiri Pirko | caa7260 | 2018-01-17 11:46:50 +0100 | [diff] [blame] | 706 | struct net_device *dev = q->dev_queue->dev; |
| 707 | int err; |
| 708 | |
Vlad Buslov | 4f8116c | 2019-08-26 16:44:57 +0300 | [diff] [blame] | 709 | down_write(&block->cb_lock); |
Jiri Pirko | caa7260 | 2018-01-17 11:46:50 +0100 | [diff] [blame] | 710 | |
| 711 | /* If tc offload feature is disabled and the block we try to bind |
| 712 | * to already has some offloaded filters, forbid to bind. |
| 713 | */ |
Pablo Neira Ayuso | 0fdcf78 | 2020-05-29 02:25:37 +0200 | [diff] [blame] | 714 | if (dev->netdev_ops->ndo_setup_tc && |
| 715 | !tc_can_offload(dev) && |
| 716 | tcf_block_offload_in_use(block)) { |
John Hurley | 60513bd | 2018-06-25 14:30:04 -0700 | [diff] [blame] | 717 | NL_SET_ERR_MSG(extack, "Bind to offloaded block failed as dev has offload disabled"); |
Vlad Buslov | 4f8116c | 2019-08-26 16:44:57 +0300 | [diff] [blame] | 718 | err = -EOPNOTSUPP; |
| 719 | goto err_unlock; |
John Hurley | 60513bd | 2018-06-25 14:30:04 -0700 | [diff] [blame] | 720 | } |
Jiri Pirko | caa7260 | 2018-01-17 11:46:50 +0100 | [diff] [blame] | 721 | |
Petr Machata | c40f4e5 | 2020-07-11 00:55:03 +0300 | [diff] [blame] | 722 | err = tcf_block_offload_cmd(block, dev, q, ei, FLOW_BLOCK_BIND, extack); |
Jiri Pirko | caa7260 | 2018-01-17 11:46:50 +0100 | [diff] [blame] | 723 | if (err == -EOPNOTSUPP) |
| 724 | goto no_offload_dev_inc; |
John Hurley | 7f76fa3 | 2018-11-09 21:21:26 -0800 | [diff] [blame] | 725 | if (err) |
Vlad Buslov | 4f8116c | 2019-08-26 16:44:57 +0300 | [diff] [blame] | 726 | goto err_unlock; |
John Hurley | 7f76fa3 | 2018-11-09 21:21:26 -0800 | [diff] [blame] | 727 | |
Vlad Buslov | 4f8116c | 2019-08-26 16:44:57 +0300 | [diff] [blame] | 728 | up_write(&block->cb_lock); |
John Hurley | 7f76fa3 | 2018-11-09 21:21:26 -0800 | [diff] [blame] | 729 | return 0; |
Jiri Pirko | caa7260 | 2018-01-17 11:46:50 +0100 | [diff] [blame] | 730 | |
| 731 | no_offload_dev_inc: |
Pablo Neira Ayuso | 0fdcf78 | 2020-05-29 02:25:37 +0200 | [diff] [blame] | 732 | if (tcf_block_offload_in_use(block)) |
Vlad Buslov | 4f8116c | 2019-08-26 16:44:57 +0300 | [diff] [blame] | 733 | goto err_unlock; |
Pablo Neira Ayuso | 0fdcf78 | 2020-05-29 02:25:37 +0200 | [diff] [blame] | 734 | |
Vlad Buslov | 4f8116c | 2019-08-26 16:44:57 +0300 | [diff] [blame] | 735 | err = 0; |
Jiri Pirko | caa7260 | 2018-01-17 11:46:50 +0100 | [diff] [blame] | 736 | block->nooffloaddevcnt++; |
Vlad Buslov | 4f8116c | 2019-08-26 16:44:57 +0300 | [diff] [blame] | 737 | err_unlock: |
| 738 | up_write(&block->cb_lock); |
| 739 | return err; |
Jiri Pirko | 8c4083b | 2017-10-19 15:50:29 +0200 | [diff] [blame] | 740 | } |
| 741 | |
| 742 | static void tcf_block_offload_unbind(struct tcf_block *block, struct Qdisc *q, |
| 743 | struct tcf_block_ext_info *ei) |
| 744 | { |
Jiri Pirko | caa7260 | 2018-01-17 11:46:50 +0100 | [diff] [blame] | 745 | struct net_device *dev = q->dev_queue->dev; |
| 746 | int err; |
| 747 | |
Vlad Buslov | 4f8116c | 2019-08-26 16:44:57 +0300 | [diff] [blame] | 748 | down_write(&block->cb_lock); |
Petr Machata | c40f4e5 | 2020-07-11 00:55:03 +0300 | [diff] [blame] | 749 | err = tcf_block_offload_cmd(block, dev, q, ei, FLOW_BLOCK_UNBIND, NULL); |
Jiri Pirko | caa7260 | 2018-01-17 11:46:50 +0100 | [diff] [blame] | 750 | if (err == -EOPNOTSUPP) |
| 751 | goto no_offload_dev_dec; |
Vlad Buslov | 4f8116c | 2019-08-26 16:44:57 +0300 | [diff] [blame] | 752 | up_write(&block->cb_lock); |
Jiri Pirko | caa7260 | 2018-01-17 11:46:50 +0100 | [diff] [blame] | 753 | return; |
| 754 | |
| 755 | no_offload_dev_dec: |
| 756 | WARN_ON(block->nooffloaddevcnt-- == 0); |
Vlad Buslov | 4f8116c | 2019-08-26 16:44:57 +0300 | [diff] [blame] | 757 | up_write(&block->cb_lock); |
Jiri Pirko | 8c4083b | 2017-10-19 15:50:29 +0200 | [diff] [blame] | 758 | } |
| 759 | |
Jiri Pirko | a9b1944 | 2018-01-17 11:46:45 +0100 | [diff] [blame] | 760 | static int |
Jiri Pirko | f71e0ca4 | 2018-07-23 09:23:05 +0200 | [diff] [blame] | 761 | tcf_chain0_head_change_cb_add(struct tcf_block *block, |
| 762 | struct tcf_block_ext_info *ei, |
| 763 | struct netlink_ext_ack *extack) |
Jiri Pirko | a9b1944 | 2018-01-17 11:46:45 +0100 | [diff] [blame] | 764 | { |
| 765 | struct tcf_filter_chain_list_item *item; |
Vlad Buslov | 165f013 | 2019-02-11 10:55:35 +0200 | [diff] [blame] | 766 | struct tcf_chain *chain0; |
Jiri Pirko | a9b1944 | 2018-01-17 11:46:45 +0100 | [diff] [blame] | 767 | |
| 768 | item = kmalloc(sizeof(*item), GFP_KERNEL); |
| 769 | if (!item) { |
| 770 | NL_SET_ERR_MSG(extack, "Memory allocation for head change callback item failed"); |
| 771 | return -ENOMEM; |
| 772 | } |
| 773 | item->chain_head_change = ei->chain_head_change; |
| 774 | item->chain_head_change_priv = ei->chain_head_change_priv; |
Vlad Buslov | 165f013 | 2019-02-11 10:55:35 +0200 | [diff] [blame] | 775 | |
| 776 | mutex_lock(&block->lock); |
| 777 | chain0 = block->chain0.chain; |
Vlad Buslov | ed76f5e | 2019-02-11 10:55:38 +0200 | [diff] [blame] | 778 | if (chain0) |
| 779 | tcf_chain_hold(chain0); |
| 780 | else |
| 781 | list_add(&item->list, &block->chain0.filter_chain_list); |
Vlad Buslov | 165f013 | 2019-02-11 10:55:35 +0200 | [diff] [blame] | 782 | mutex_unlock(&block->lock); |
| 783 | |
Vlad Buslov | ed76f5e | 2019-02-11 10:55:38 +0200 | [diff] [blame] | 784 | if (chain0) { |
| 785 | struct tcf_proto *tp_head; |
| 786 | |
| 787 | mutex_lock(&chain0->filter_chain_lock); |
| 788 | |
| 789 | tp_head = tcf_chain_dereference(chain0->filter_chain, chain0); |
| 790 | if (tp_head) |
| 791 | tcf_chain_head_change_item(item, tp_head); |
| 792 | |
| 793 | mutex_lock(&block->lock); |
| 794 | list_add(&item->list, &block->chain0.filter_chain_list); |
| 795 | mutex_unlock(&block->lock); |
| 796 | |
| 797 | mutex_unlock(&chain0->filter_chain_lock); |
| 798 | tcf_chain_put(chain0); |
| 799 | } |
| 800 | |
Jiri Pirko | a9b1944 | 2018-01-17 11:46:45 +0100 | [diff] [blame] | 801 | return 0; |
| 802 | } |
| 803 | |
| 804 | static void |
Jiri Pirko | f71e0ca4 | 2018-07-23 09:23:05 +0200 | [diff] [blame] | 805 | tcf_chain0_head_change_cb_del(struct tcf_block *block, |
| 806 | struct tcf_block_ext_info *ei) |
Jiri Pirko | a9b1944 | 2018-01-17 11:46:45 +0100 | [diff] [blame] | 807 | { |
| 808 | struct tcf_filter_chain_list_item *item; |
| 809 | |
Vlad Buslov | 165f013 | 2019-02-11 10:55:35 +0200 | [diff] [blame] | 810 | mutex_lock(&block->lock); |
Jiri Pirko | f71e0ca4 | 2018-07-23 09:23:05 +0200 | [diff] [blame] | 811 | list_for_each_entry(item, &block->chain0.filter_chain_list, list) { |
Jiri Pirko | a9b1944 | 2018-01-17 11:46:45 +0100 | [diff] [blame] | 812 | if ((!ei->chain_head_change && !ei->chain_head_change_priv) || |
| 813 | (item->chain_head_change == ei->chain_head_change && |
| 814 | item->chain_head_change_priv == ei->chain_head_change_priv)) { |
Vlad Buslov | 165f013 | 2019-02-11 10:55:35 +0200 | [diff] [blame] | 815 | if (block->chain0.chain) |
Jiri Pirko | f71e0ca4 | 2018-07-23 09:23:05 +0200 | [diff] [blame] | 816 | tcf_chain_head_change_item(item, NULL); |
Jiri Pirko | a9b1944 | 2018-01-17 11:46:45 +0100 | [diff] [blame] | 817 | list_del(&item->list); |
Vlad Buslov | 165f013 | 2019-02-11 10:55:35 +0200 | [diff] [blame] | 818 | mutex_unlock(&block->lock); |
| 819 | |
Jiri Pirko | a9b1944 | 2018-01-17 11:46:45 +0100 | [diff] [blame] | 820 | kfree(item); |
| 821 | return; |
| 822 | } |
| 823 | } |
Vlad Buslov | 165f013 | 2019-02-11 10:55:35 +0200 | [diff] [blame] | 824 | mutex_unlock(&block->lock); |
Jiri Pirko | a9b1944 | 2018-01-17 11:46:45 +0100 | [diff] [blame] | 825 | WARN_ON(1); |
| 826 | } |
| 827 | |
Jiri Pirko | 4861738 | 2018-01-17 11:46:46 +0100 | [diff] [blame] | 828 | struct tcf_net { |
Vlad Buslov | ab28162 | 2018-09-24 19:22:56 +0300 | [diff] [blame] | 829 | spinlock_t idr_lock; /* Protects idr */ |
Jiri Pirko | 4861738 | 2018-01-17 11:46:46 +0100 | [diff] [blame] | 830 | struct idr idr; |
| 831 | }; |
| 832 | |
| 833 | static unsigned int tcf_net_id; |
| 834 | |
| 835 | static int tcf_block_insert(struct tcf_block *block, struct net *net, |
Jiri Pirko | bb047dd | 2018-02-13 12:00:16 +0100 | [diff] [blame] | 836 | struct netlink_ext_ack *extack) |
Jiri Pirko | a9b1944 | 2018-01-17 11:46:45 +0100 | [diff] [blame] | 837 | { |
Jiri Pirko | 4861738 | 2018-01-17 11:46:46 +0100 | [diff] [blame] | 838 | struct tcf_net *tn = net_generic(net, tcf_net_id); |
Vlad Buslov | ab28162 | 2018-09-24 19:22:56 +0300 | [diff] [blame] | 839 | int err; |
Jiri Pirko | 4861738 | 2018-01-17 11:46:46 +0100 | [diff] [blame] | 840 | |
Vlad Buslov | ab28162 | 2018-09-24 19:22:56 +0300 | [diff] [blame] | 841 | idr_preload(GFP_KERNEL); |
| 842 | spin_lock(&tn->idr_lock); |
| 843 | err = idr_alloc_u32(&tn->idr, block, &block->index, block->index, |
| 844 | GFP_NOWAIT); |
| 845 | spin_unlock(&tn->idr_lock); |
| 846 | idr_preload_end(); |
| 847 | |
| 848 | return err; |
Jiri Pirko | a9b1944 | 2018-01-17 11:46:45 +0100 | [diff] [blame] | 849 | } |
| 850 | |
Jiri Pirko | 4861738 | 2018-01-17 11:46:46 +0100 | [diff] [blame] | 851 | static void tcf_block_remove(struct tcf_block *block, struct net *net) |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 852 | { |
Jiri Pirko | 4861738 | 2018-01-17 11:46:46 +0100 | [diff] [blame] | 853 | struct tcf_net *tn = net_generic(net, tcf_net_id); |
| 854 | |
Vlad Buslov | ab28162 | 2018-09-24 19:22:56 +0300 | [diff] [blame] | 855 | spin_lock(&tn->idr_lock); |
Matthew Wilcox | 9c16094 | 2017-11-28 09:48:43 -0500 | [diff] [blame] | 856 | idr_remove(&tn->idr, block->index); |
Vlad Buslov | ab28162 | 2018-09-24 19:22:56 +0300 | [diff] [blame] | 857 | spin_unlock(&tn->idr_lock); |
Jiri Pirko | 4861738 | 2018-01-17 11:46:46 +0100 | [diff] [blame] | 858 | } |
| 859 | |
| 860 | static struct tcf_block *tcf_block_create(struct net *net, struct Qdisc *q, |
Jiri Pirko | bb047dd | 2018-02-13 12:00:16 +0100 | [diff] [blame] | 861 | u32 block_index, |
Jiri Pirko | 4861738 | 2018-01-17 11:46:46 +0100 | [diff] [blame] | 862 | struct netlink_ext_ack *extack) |
| 863 | { |
| 864 | struct tcf_block *block; |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 865 | |
Jiri Pirko | 4861738 | 2018-01-17 11:46:46 +0100 | [diff] [blame] | 866 | block = kzalloc(sizeof(*block), GFP_KERNEL); |
Alexander Aring | 8d1a77f | 2017-12-20 12:35:19 -0500 | [diff] [blame] | 867 | if (!block) { |
| 868 | NL_SET_ERR_MSG(extack, "Memory allocation for block failed"); |
Jiri Pirko | 4861738 | 2018-01-17 11:46:46 +0100 | [diff] [blame] | 869 | return ERR_PTR(-ENOMEM); |
Alexander Aring | 8d1a77f | 2017-12-20 12:35:19 -0500 | [diff] [blame] | 870 | } |
Vlad Buslov | c266f64 | 2019-02-11 10:55:32 +0200 | [diff] [blame] | 871 | mutex_init(&block->lock); |
John Hurley | 59eb87c | 2019-11-02 14:17:47 +0000 | [diff] [blame] | 872 | mutex_init(&block->proto_destroy_lock); |
Vlad Buslov | 4f8116c | 2019-08-26 16:44:57 +0300 | [diff] [blame] | 873 | init_rwsem(&block->cb_lock); |
Pablo Neira Ayuso | 14bfb13 | 2019-07-19 18:20:16 +0200 | [diff] [blame] | 874 | flow_block_init(&block->flow_block); |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 875 | INIT_LIST_HEAD(&block->chain_list); |
Jiri Pirko | f36fe1c | 2018-01-17 11:46:48 +0100 | [diff] [blame] | 876 | INIT_LIST_HEAD(&block->owner_list); |
Jiri Pirko | f71e0ca4 | 2018-07-23 09:23:05 +0200 | [diff] [blame] | 877 | INIT_LIST_HEAD(&block->chain0.filter_chain_list); |
Jiri Pirko | acb6744 | 2017-10-19 15:50:31 +0200 | [diff] [blame] | 878 | |
Vlad Buslov | cfebd7e | 2018-09-24 19:22:54 +0300 | [diff] [blame] | 879 | refcount_set(&block->refcnt, 1); |
Jiri Pirko | 4861738 | 2018-01-17 11:46:46 +0100 | [diff] [blame] | 880 | block->net = net; |
Jiri Pirko | bb047dd | 2018-02-13 12:00:16 +0100 | [diff] [blame] | 881 | block->index = block_index; |
| 882 | |
| 883 | /* Don't store q pointer for blocks which are shared */ |
| 884 | if (!tcf_block_shared(block)) |
| 885 | block->q = q; |
Jiri Pirko | 4861738 | 2018-01-17 11:46:46 +0100 | [diff] [blame] | 886 | return block; |
Jiri Pirko | 4861738 | 2018-01-17 11:46:46 +0100 | [diff] [blame] | 887 | } |
| 888 | |
| 889 | static struct tcf_block *tcf_block_lookup(struct net *net, u32 block_index) |
| 890 | { |
| 891 | struct tcf_net *tn = net_generic(net, tcf_net_id); |
| 892 | |
Matthew Wilcox | 322d884 | 2017-11-28 10:01:24 -0500 | [diff] [blame] | 893 | return idr_find(&tn->idr, block_index); |
Jiri Pirko | 4861738 | 2018-01-17 11:46:46 +0100 | [diff] [blame] | 894 | } |
| 895 | |
Vlad Buslov | 0607e43 | 2018-09-24 19:22:57 +0300 | [diff] [blame] | 896 | static struct tcf_block *tcf_block_refcnt_get(struct net *net, u32 block_index) |
| 897 | { |
| 898 | struct tcf_block *block; |
| 899 | |
| 900 | rcu_read_lock(); |
| 901 | block = tcf_block_lookup(net, block_index); |
| 902 | if (block && !refcount_inc_not_zero(&block->refcnt)) |
| 903 | block = NULL; |
| 904 | rcu_read_unlock(); |
| 905 | |
| 906 | return block; |
| 907 | } |
| 908 | |
Vlad Buslov | bbf7383 | 2019-02-11 10:55:36 +0200 | [diff] [blame] | 909 | static struct tcf_chain * |
| 910 | __tcf_get_next_chain(struct tcf_block *block, struct tcf_chain *chain) |
| 911 | { |
| 912 | mutex_lock(&block->lock); |
| 913 | if (chain) |
| 914 | chain = list_is_last(&chain->list, &block->chain_list) ? |
| 915 | NULL : list_next_entry(chain, list); |
| 916 | else |
| 917 | chain = list_first_entry_or_null(&block->chain_list, |
| 918 | struct tcf_chain, list); |
| 919 | |
| 920 | /* skip all action-only chains */ |
| 921 | while (chain && tcf_chain_held_by_acts_only(chain)) |
| 922 | chain = list_is_last(&chain->list, &block->chain_list) ? |
| 923 | NULL : list_next_entry(chain, list); |
| 924 | |
| 925 | if (chain) |
| 926 | tcf_chain_hold(chain); |
| 927 | mutex_unlock(&block->lock); |
| 928 | |
| 929 | return chain; |
| 930 | } |
| 931 | |
| 932 | /* Function to be used by all clients that want to iterate over all chains on |
| 933 | * block. It properly obtains block->lock and takes reference to chain before |
| 934 | * returning it. Users of this function must be tolerant to concurrent chain |
| 935 | * insertion/deletion or ensure that no concurrent chain modification is |
| 936 | * possible. Note that all netlink dump callbacks cannot guarantee to provide |
| 937 | * consistent dump because rtnl lock is released each time skb is filled with |
| 938 | * data and sent to user-space. |
| 939 | */ |
| 940 | |
| 941 | struct tcf_chain * |
| 942 | tcf_get_next_chain(struct tcf_block *block, struct tcf_chain *chain) |
| 943 | { |
| 944 | struct tcf_chain *chain_next = __tcf_get_next_chain(block, chain); |
| 945 | |
| 946 | if (chain) |
| 947 | tcf_chain_put(chain); |
| 948 | |
| 949 | return chain_next; |
| 950 | } |
| 951 | EXPORT_SYMBOL(tcf_get_next_chain); |
| 952 | |
Vlad Buslov | fe2923a | 2019-02-11 10:55:40 +0200 | [diff] [blame] | 953 | static struct tcf_proto * |
| 954 | __tcf_get_next_proto(struct tcf_chain *chain, struct tcf_proto *tp) |
| 955 | { |
Vlad Buslov | 8b64678 | 2019-02-11 10:55:41 +0200 | [diff] [blame] | 956 | u32 prio = 0; |
| 957 | |
Vlad Buslov | fe2923a | 2019-02-11 10:55:40 +0200 | [diff] [blame] | 958 | ASSERT_RTNL(); |
| 959 | mutex_lock(&chain->filter_chain_lock); |
| 960 | |
Vlad Buslov | 8b64678 | 2019-02-11 10:55:41 +0200 | [diff] [blame] | 961 | if (!tp) { |
Vlad Buslov | fe2923a | 2019-02-11 10:55:40 +0200 | [diff] [blame] | 962 | tp = tcf_chain_dereference(chain->filter_chain, chain); |
Vlad Buslov | 8b64678 | 2019-02-11 10:55:41 +0200 | [diff] [blame] | 963 | } else if (tcf_proto_is_deleting(tp)) { |
| 964 | /* 'deleting' flag is set and chain->filter_chain_lock was |
| 965 | * unlocked, which means next pointer could be invalid. Restart |
| 966 | * search. |
| 967 | */ |
| 968 | prio = tp->prio + 1; |
| 969 | tp = tcf_chain_dereference(chain->filter_chain, chain); |
| 970 | |
| 971 | for (; tp; tp = tcf_chain_dereference(tp->next, chain)) |
| 972 | if (!tp->deleting && tp->prio >= prio) |
| 973 | break; |
| 974 | } else { |
Vlad Buslov | fe2923a | 2019-02-11 10:55:40 +0200 | [diff] [blame] | 975 | tp = tcf_chain_dereference(tp->next, chain); |
Vlad Buslov | 8b64678 | 2019-02-11 10:55:41 +0200 | [diff] [blame] | 976 | } |
Vlad Buslov | fe2923a | 2019-02-11 10:55:40 +0200 | [diff] [blame] | 977 | |
| 978 | if (tp) |
| 979 | tcf_proto_get(tp); |
| 980 | |
| 981 | mutex_unlock(&chain->filter_chain_lock); |
| 982 | |
| 983 | return tp; |
| 984 | } |
| 985 | |
| 986 | /* Function to be used by all clients that want to iterate over all tp's on |
| 987 | * chain. Users of this function must be tolerant to concurrent tp |
| 988 | * insertion/deletion or ensure that no concurrent chain modification is |
| 989 | * possible. Note that all netlink dump callbacks cannot guarantee to provide |
| 990 | * consistent dump because rtnl lock is released each time skb is filled with |
| 991 | * data and sent to user-space. |
| 992 | */ |
| 993 | |
| 994 | struct tcf_proto * |
Vlad Buslov | 0fca55e | 2020-11-27 17:12:05 +0200 | [diff] [blame] | 995 | tcf_get_next_proto(struct tcf_chain *chain, struct tcf_proto *tp) |
Vlad Buslov | fe2923a | 2019-02-11 10:55:40 +0200 | [diff] [blame] | 996 | { |
| 997 | struct tcf_proto *tp_next = __tcf_get_next_proto(chain, tp); |
| 998 | |
| 999 | if (tp) |
Vlad Buslov | 0fca55e | 2020-11-27 17:12:05 +0200 | [diff] [blame] | 1000 | tcf_proto_put(tp, true, NULL); |
Vlad Buslov | fe2923a | 2019-02-11 10:55:40 +0200 | [diff] [blame] | 1001 | |
| 1002 | return tp_next; |
| 1003 | } |
| 1004 | EXPORT_SYMBOL(tcf_get_next_proto); |
| 1005 | |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 1006 | static void tcf_block_flush_all_chains(struct tcf_block *block, bool rtnl_held) |
Vlad Buslov | f002343 | 2018-09-24 19:22:55 +0300 | [diff] [blame] | 1007 | { |
| 1008 | struct tcf_chain *chain; |
| 1009 | |
Vlad Buslov | bbf7383 | 2019-02-11 10:55:36 +0200 | [diff] [blame] | 1010 | /* Last reference to block. At this point chains cannot be added or |
| 1011 | * removed concurrently. |
Vlad Buslov | f002343 | 2018-09-24 19:22:55 +0300 | [diff] [blame] | 1012 | */ |
Vlad Buslov | bbf7383 | 2019-02-11 10:55:36 +0200 | [diff] [blame] | 1013 | for (chain = tcf_get_next_chain(block, NULL); |
| 1014 | chain; |
| 1015 | chain = tcf_get_next_chain(block, chain)) { |
Vlad Buslov | f002343 | 2018-09-24 19:22:55 +0300 | [diff] [blame] | 1016 | tcf_chain_put_explicitly_created(chain); |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 1017 | tcf_chain_flush(chain, rtnl_held); |
Vlad Buslov | f002343 | 2018-09-24 19:22:55 +0300 | [diff] [blame] | 1018 | } |
| 1019 | } |
| 1020 | |
Vlad Buslov | 18d3eef | 2019-02-11 10:55:47 +0200 | [diff] [blame] | 1021 | /* Lookup Qdisc and increments its reference counter. |
| 1022 | * Set parent, if necessary. |
| 1023 | */ |
| 1024 | |
| 1025 | static int __tcf_qdisc_find(struct net *net, struct Qdisc **q, |
| 1026 | u32 *parent, int ifindex, bool rtnl_held, |
| 1027 | struct netlink_ext_ack *extack) |
| 1028 | { |
| 1029 | const struct Qdisc_class_ops *cops; |
| 1030 | struct net_device *dev; |
| 1031 | int err = 0; |
| 1032 | |
| 1033 | if (ifindex == TCM_IFINDEX_MAGIC_BLOCK) |
| 1034 | return 0; |
| 1035 | |
| 1036 | rcu_read_lock(); |
| 1037 | |
| 1038 | /* Find link */ |
| 1039 | dev = dev_get_by_index_rcu(net, ifindex); |
| 1040 | if (!dev) { |
| 1041 | rcu_read_unlock(); |
| 1042 | return -ENODEV; |
| 1043 | } |
| 1044 | |
| 1045 | /* Find qdisc */ |
| 1046 | if (!*parent) { |
| 1047 | *q = dev->qdisc; |
| 1048 | *parent = (*q)->handle; |
| 1049 | } else { |
| 1050 | *q = qdisc_lookup_rcu(dev, TC_H_MAJ(*parent)); |
| 1051 | if (!*q) { |
| 1052 | NL_SET_ERR_MSG(extack, "Parent Qdisc doesn't exists"); |
| 1053 | err = -EINVAL; |
| 1054 | goto errout_rcu; |
| 1055 | } |
| 1056 | } |
| 1057 | |
| 1058 | *q = qdisc_refcount_inc_nz(*q); |
| 1059 | if (!*q) { |
| 1060 | NL_SET_ERR_MSG(extack, "Parent Qdisc doesn't exists"); |
| 1061 | err = -EINVAL; |
| 1062 | goto errout_rcu; |
| 1063 | } |
| 1064 | |
| 1065 | /* Is it classful? */ |
| 1066 | cops = (*q)->ops->cl_ops; |
| 1067 | if (!cops) { |
| 1068 | NL_SET_ERR_MSG(extack, "Qdisc not classful"); |
| 1069 | err = -EINVAL; |
| 1070 | goto errout_qdisc; |
| 1071 | } |
| 1072 | |
| 1073 | if (!cops->tcf_block) { |
| 1074 | NL_SET_ERR_MSG(extack, "Class doesn't support blocks"); |
| 1075 | err = -EOPNOTSUPP; |
| 1076 | goto errout_qdisc; |
| 1077 | } |
| 1078 | |
| 1079 | errout_rcu: |
| 1080 | /* At this point we know that qdisc is not noop_qdisc, |
| 1081 | * which means that qdisc holds a reference to net_device |
| 1082 | * and we hold a reference to qdisc, so it is safe to release |
| 1083 | * rcu read lock. |
| 1084 | */ |
| 1085 | rcu_read_unlock(); |
| 1086 | return err; |
| 1087 | |
| 1088 | errout_qdisc: |
| 1089 | rcu_read_unlock(); |
| 1090 | |
| 1091 | if (rtnl_held) |
| 1092 | qdisc_put(*q); |
| 1093 | else |
| 1094 | qdisc_put_unlocked(*q); |
| 1095 | *q = NULL; |
| 1096 | |
| 1097 | return err; |
| 1098 | } |
| 1099 | |
| 1100 | static int __tcf_qdisc_cl_find(struct Qdisc *q, u32 parent, unsigned long *cl, |
| 1101 | int ifindex, struct netlink_ext_ack *extack) |
| 1102 | { |
| 1103 | if (ifindex == TCM_IFINDEX_MAGIC_BLOCK) |
| 1104 | return 0; |
| 1105 | |
| 1106 | /* Do we search for filter, attached to class? */ |
| 1107 | if (TC_H_MIN(parent)) { |
| 1108 | const struct Qdisc_class_ops *cops = q->ops->cl_ops; |
| 1109 | |
| 1110 | *cl = cops->find(q, parent); |
| 1111 | if (*cl == 0) { |
| 1112 | NL_SET_ERR_MSG(extack, "Specified class doesn't exist"); |
| 1113 | return -ENOENT; |
| 1114 | } |
| 1115 | } |
| 1116 | |
| 1117 | return 0; |
| 1118 | } |
| 1119 | |
| 1120 | static struct tcf_block *__tcf_block_find(struct net *net, struct Qdisc *q, |
| 1121 | unsigned long cl, int ifindex, |
| 1122 | u32 block_index, |
| 1123 | struct netlink_ext_ack *extack) |
| 1124 | { |
| 1125 | struct tcf_block *block; |
| 1126 | |
| 1127 | if (ifindex == TCM_IFINDEX_MAGIC_BLOCK) { |
| 1128 | block = tcf_block_refcnt_get(net, block_index); |
| 1129 | if (!block) { |
| 1130 | NL_SET_ERR_MSG(extack, "Block of given index was not found"); |
| 1131 | return ERR_PTR(-EINVAL); |
| 1132 | } |
| 1133 | } else { |
| 1134 | const struct Qdisc_class_ops *cops = q->ops->cl_ops; |
| 1135 | |
| 1136 | block = cops->tcf_block(q, cl, extack); |
| 1137 | if (!block) |
| 1138 | return ERR_PTR(-EINVAL); |
| 1139 | |
| 1140 | if (tcf_block_shared(block)) { |
| 1141 | NL_SET_ERR_MSG(extack, "This filter block is shared. Please use the block index to manipulate the filters"); |
| 1142 | return ERR_PTR(-EOPNOTSUPP); |
| 1143 | } |
| 1144 | |
| 1145 | /* Always take reference to block in order to support execution |
| 1146 | * of rules update path of cls API without rtnl lock. Caller |
| 1147 | * must release block when it is finished using it. 'if' block |
| 1148 | * of this conditional obtain reference to block by calling |
| 1149 | * tcf_block_refcnt_get(). |
| 1150 | */ |
| 1151 | refcount_inc(&block->refcnt); |
| 1152 | } |
| 1153 | |
| 1154 | return block; |
| 1155 | } |
| 1156 | |
Vlad Buslov | 0607e43 | 2018-09-24 19:22:57 +0300 | [diff] [blame] | 1157 | static void __tcf_block_put(struct tcf_block *block, struct Qdisc *q, |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 1158 | struct tcf_block_ext_info *ei, bool rtnl_held) |
Vlad Buslov | 0607e43 | 2018-09-24 19:22:57 +0300 | [diff] [blame] | 1159 | { |
Vlad Buslov | c266f64 | 2019-02-11 10:55:32 +0200 | [diff] [blame] | 1160 | if (refcount_dec_and_mutex_lock(&block->refcnt, &block->lock)) { |
Vlad Buslov | 0607e43 | 2018-09-24 19:22:57 +0300 | [diff] [blame] | 1161 | /* Flushing/putting all chains will cause the block to be |
| 1162 | * deallocated when last chain is freed. However, if chain_list |
| 1163 | * is empty, block has to be manually deallocated. After block |
| 1164 | * reference counter reached 0, it is no longer possible to |
| 1165 | * increment it or add new chains to block. |
| 1166 | */ |
| 1167 | bool free_block = list_empty(&block->chain_list); |
| 1168 | |
Vlad Buslov | c266f64 | 2019-02-11 10:55:32 +0200 | [diff] [blame] | 1169 | mutex_unlock(&block->lock); |
Vlad Buslov | 0607e43 | 2018-09-24 19:22:57 +0300 | [diff] [blame] | 1170 | if (tcf_block_shared(block)) |
| 1171 | tcf_block_remove(block, block->net); |
Vlad Buslov | 0607e43 | 2018-09-24 19:22:57 +0300 | [diff] [blame] | 1172 | |
| 1173 | if (q) |
| 1174 | tcf_block_offload_unbind(block, q, ei); |
| 1175 | |
| 1176 | if (free_block) |
Vlad Buslov | c266f64 | 2019-02-11 10:55:32 +0200 | [diff] [blame] | 1177 | tcf_block_destroy(block); |
Vlad Buslov | 0607e43 | 2018-09-24 19:22:57 +0300 | [diff] [blame] | 1178 | else |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 1179 | tcf_block_flush_all_chains(block, rtnl_held); |
Vlad Buslov | 0607e43 | 2018-09-24 19:22:57 +0300 | [diff] [blame] | 1180 | } else if (q) { |
| 1181 | tcf_block_offload_unbind(block, q, ei); |
| 1182 | } |
| 1183 | } |
| 1184 | |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 1185 | static void tcf_block_refcnt_put(struct tcf_block *block, bool rtnl_held) |
Vlad Buslov | 0607e43 | 2018-09-24 19:22:57 +0300 | [diff] [blame] | 1186 | { |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 1187 | __tcf_block_put(block, NULL, NULL, rtnl_held); |
Vlad Buslov | 0607e43 | 2018-09-24 19:22:57 +0300 | [diff] [blame] | 1188 | } |
| 1189 | |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 1190 | /* Find tcf block. |
| 1191 | * Set q, parent, cl when appropriate. |
| 1192 | */ |
| 1193 | |
| 1194 | static struct tcf_block *tcf_block_find(struct net *net, struct Qdisc **q, |
| 1195 | u32 *parent, unsigned long *cl, |
| 1196 | int ifindex, u32 block_index, |
| 1197 | struct netlink_ext_ack *extack) |
| 1198 | { |
| 1199 | struct tcf_block *block; |
Vlad Buslov | e368fdb | 2018-09-24 19:22:53 +0300 | [diff] [blame] | 1200 | int err = 0; |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 1201 | |
Vlad Buslov | 18d3eef | 2019-02-11 10:55:47 +0200 | [diff] [blame] | 1202 | ASSERT_RTNL(); |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 1203 | |
Vlad Buslov | 18d3eef | 2019-02-11 10:55:47 +0200 | [diff] [blame] | 1204 | err = __tcf_qdisc_find(net, q, parent, ifindex, true, extack); |
| 1205 | if (err) |
| 1206 | goto errout; |
Vlad Buslov | e368fdb | 2018-09-24 19:22:53 +0300 | [diff] [blame] | 1207 | |
Vlad Buslov | 18d3eef | 2019-02-11 10:55:47 +0200 | [diff] [blame] | 1208 | err = __tcf_qdisc_cl_find(*q, *parent, cl, ifindex, extack); |
| 1209 | if (err) |
| 1210 | goto errout_qdisc; |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 1211 | |
Vlad Buslov | 18d3eef | 2019-02-11 10:55:47 +0200 | [diff] [blame] | 1212 | block = __tcf_block_find(net, *q, *cl, ifindex, block_index, extack); |
Dan Carpenter | af736bf | 2019-02-18 12:26:32 +0300 | [diff] [blame] | 1213 | if (IS_ERR(block)) { |
| 1214 | err = PTR_ERR(block); |
Vlad Buslov | 18d3eef | 2019-02-11 10:55:47 +0200 | [diff] [blame] | 1215 | goto errout_qdisc; |
Dan Carpenter | af736bf | 2019-02-18 12:26:32 +0300 | [diff] [blame] | 1216 | } |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 1217 | |
| 1218 | return block; |
Vlad Buslov | e368fdb | 2018-09-24 19:22:53 +0300 | [diff] [blame] | 1219 | |
Vlad Buslov | e368fdb | 2018-09-24 19:22:53 +0300 | [diff] [blame] | 1220 | errout_qdisc: |
Vlad Buslov | 18d3eef | 2019-02-11 10:55:47 +0200 | [diff] [blame] | 1221 | if (*q) |
Vlad Buslov | e368fdb | 2018-09-24 19:22:53 +0300 | [diff] [blame] | 1222 | qdisc_put(*q); |
Vlad Buslov | 18d3eef | 2019-02-11 10:55:47 +0200 | [diff] [blame] | 1223 | errout: |
| 1224 | *q = NULL; |
Vlad Buslov | e368fdb | 2018-09-24 19:22:53 +0300 | [diff] [blame] | 1225 | return ERR_PTR(err); |
| 1226 | } |
| 1227 | |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 1228 | static void tcf_block_release(struct Qdisc *q, struct tcf_block *block, |
| 1229 | bool rtnl_held) |
Vlad Buslov | e368fdb | 2018-09-24 19:22:53 +0300 | [diff] [blame] | 1230 | { |
Vlad Buslov | 787ce6d | 2018-09-24 19:22:58 +0300 | [diff] [blame] | 1231 | if (!IS_ERR_OR_NULL(block)) |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 1232 | tcf_block_refcnt_put(block, rtnl_held); |
Vlad Buslov | 787ce6d | 2018-09-24 19:22:58 +0300 | [diff] [blame] | 1233 | |
Vlad Buslov | 470502d | 2019-02-11 10:55:48 +0200 | [diff] [blame] | 1234 | if (q) { |
| 1235 | if (rtnl_held) |
| 1236 | qdisc_put(q); |
| 1237 | else |
| 1238 | qdisc_put_unlocked(q); |
| 1239 | } |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 1240 | } |
| 1241 | |
Jiri Pirko | f36fe1c | 2018-01-17 11:46:48 +0100 | [diff] [blame] | 1242 | struct tcf_block_owner_item { |
| 1243 | struct list_head list; |
| 1244 | struct Qdisc *q; |
Pablo Neira Ayuso | 32f8c40 | 2019-07-09 22:55:41 +0200 | [diff] [blame] | 1245 | enum flow_block_binder_type binder_type; |
Jiri Pirko | f36fe1c | 2018-01-17 11:46:48 +0100 | [diff] [blame] | 1246 | }; |
| 1247 | |
| 1248 | static void |
| 1249 | tcf_block_owner_netif_keep_dst(struct tcf_block *block, |
| 1250 | struct Qdisc *q, |
Pablo Neira Ayuso | 32f8c40 | 2019-07-09 22:55:41 +0200 | [diff] [blame] | 1251 | enum flow_block_binder_type binder_type) |
Jiri Pirko | f36fe1c | 2018-01-17 11:46:48 +0100 | [diff] [blame] | 1252 | { |
| 1253 | if (block->keep_dst && |
Pablo Neira Ayuso | 32f8c40 | 2019-07-09 22:55:41 +0200 | [diff] [blame] | 1254 | binder_type != FLOW_BLOCK_BINDER_TYPE_CLSACT_INGRESS && |
| 1255 | binder_type != FLOW_BLOCK_BINDER_TYPE_CLSACT_EGRESS) |
Jiri Pirko | f36fe1c | 2018-01-17 11:46:48 +0100 | [diff] [blame] | 1256 | netif_keep_dst(qdisc_dev(q)); |
| 1257 | } |
| 1258 | |
| 1259 | void tcf_block_netif_keep_dst(struct tcf_block *block) |
| 1260 | { |
| 1261 | struct tcf_block_owner_item *item; |
| 1262 | |
| 1263 | block->keep_dst = true; |
| 1264 | list_for_each_entry(item, &block->owner_list, list) |
| 1265 | tcf_block_owner_netif_keep_dst(block, item->q, |
| 1266 | item->binder_type); |
| 1267 | } |
| 1268 | EXPORT_SYMBOL(tcf_block_netif_keep_dst); |
| 1269 | |
| 1270 | static int tcf_block_owner_add(struct tcf_block *block, |
| 1271 | struct Qdisc *q, |
Pablo Neira Ayuso | 32f8c40 | 2019-07-09 22:55:41 +0200 | [diff] [blame] | 1272 | enum flow_block_binder_type binder_type) |
Jiri Pirko | f36fe1c | 2018-01-17 11:46:48 +0100 | [diff] [blame] | 1273 | { |
| 1274 | struct tcf_block_owner_item *item; |
| 1275 | |
| 1276 | item = kmalloc(sizeof(*item), GFP_KERNEL); |
| 1277 | if (!item) |
| 1278 | return -ENOMEM; |
| 1279 | item->q = q; |
| 1280 | item->binder_type = binder_type; |
| 1281 | list_add(&item->list, &block->owner_list); |
| 1282 | return 0; |
| 1283 | } |
| 1284 | |
| 1285 | static void tcf_block_owner_del(struct tcf_block *block, |
| 1286 | struct Qdisc *q, |
Pablo Neira Ayuso | 32f8c40 | 2019-07-09 22:55:41 +0200 | [diff] [blame] | 1287 | enum flow_block_binder_type binder_type) |
Jiri Pirko | f36fe1c | 2018-01-17 11:46:48 +0100 | [diff] [blame] | 1288 | { |
| 1289 | struct tcf_block_owner_item *item; |
| 1290 | |
| 1291 | list_for_each_entry(item, &block->owner_list, list) { |
| 1292 | if (item->q == q && item->binder_type == binder_type) { |
| 1293 | list_del(&item->list); |
| 1294 | kfree(item); |
| 1295 | return; |
| 1296 | } |
| 1297 | } |
| 1298 | WARN_ON(1); |
| 1299 | } |
| 1300 | |
Jiri Pirko | 4861738 | 2018-01-17 11:46:46 +0100 | [diff] [blame] | 1301 | int tcf_block_get_ext(struct tcf_block **p_block, struct Qdisc *q, |
| 1302 | struct tcf_block_ext_info *ei, |
| 1303 | struct netlink_ext_ack *extack) |
| 1304 | { |
| 1305 | struct net *net = qdisc_net(q); |
| 1306 | struct tcf_block *block = NULL; |
Jiri Pirko | 4861738 | 2018-01-17 11:46:46 +0100 | [diff] [blame] | 1307 | int err; |
| 1308 | |
Vlad Buslov | 787ce6d | 2018-09-24 19:22:58 +0300 | [diff] [blame] | 1309 | if (ei->block_index) |
Jiri Pirko | 4861738 | 2018-01-17 11:46:46 +0100 | [diff] [blame] | 1310 | /* block_index not 0 means the shared block is requested */ |
Vlad Buslov | 787ce6d | 2018-09-24 19:22:58 +0300 | [diff] [blame] | 1311 | block = tcf_block_refcnt_get(net, ei->block_index); |
Jiri Pirko | 4861738 | 2018-01-17 11:46:46 +0100 | [diff] [blame] | 1312 | |
| 1313 | if (!block) { |
Jiri Pirko | bb047dd | 2018-02-13 12:00:16 +0100 | [diff] [blame] | 1314 | block = tcf_block_create(net, q, ei->block_index, extack); |
Jiri Pirko | 4861738 | 2018-01-17 11:46:46 +0100 | [diff] [blame] | 1315 | if (IS_ERR(block)) |
| 1316 | return PTR_ERR(block); |
Jiri Pirko | bb047dd | 2018-02-13 12:00:16 +0100 | [diff] [blame] | 1317 | if (tcf_block_shared(block)) { |
| 1318 | err = tcf_block_insert(block, net, extack); |
Jiri Pirko | 4861738 | 2018-01-17 11:46:46 +0100 | [diff] [blame] | 1319 | if (err) |
| 1320 | goto err_block_insert; |
| 1321 | } |
| 1322 | } |
| 1323 | |
Jiri Pirko | f36fe1c | 2018-01-17 11:46:48 +0100 | [diff] [blame] | 1324 | err = tcf_block_owner_add(block, q, ei->binder_type); |
| 1325 | if (err) |
| 1326 | goto err_block_owner_add; |
| 1327 | |
| 1328 | tcf_block_owner_netif_keep_dst(block, q, ei->binder_type); |
| 1329 | |
Jiri Pirko | f71e0ca4 | 2018-07-23 09:23:05 +0200 | [diff] [blame] | 1330 | err = tcf_chain0_head_change_cb_add(block, ei, extack); |
Jiri Pirko | a9b1944 | 2018-01-17 11:46:45 +0100 | [diff] [blame] | 1331 | if (err) |
Jiri Pirko | f71e0ca4 | 2018-07-23 09:23:05 +0200 | [diff] [blame] | 1332 | goto err_chain0_head_change_cb_add; |
Jiri Pirko | caa7260 | 2018-01-17 11:46:50 +0100 | [diff] [blame] | 1333 | |
John Hurley | 60513bd | 2018-06-25 14:30:04 -0700 | [diff] [blame] | 1334 | err = tcf_block_offload_bind(block, q, ei, extack); |
Jiri Pirko | caa7260 | 2018-01-17 11:46:50 +0100 | [diff] [blame] | 1335 | if (err) |
| 1336 | goto err_block_offload_bind; |
| 1337 | |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 1338 | *p_block = block; |
| 1339 | return 0; |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 1340 | |
Jiri Pirko | caa7260 | 2018-01-17 11:46:50 +0100 | [diff] [blame] | 1341 | err_block_offload_bind: |
Jiri Pirko | f71e0ca4 | 2018-07-23 09:23:05 +0200 | [diff] [blame] | 1342 | tcf_chain0_head_change_cb_del(block, ei); |
| 1343 | err_chain0_head_change_cb_add: |
Jiri Pirko | f36fe1c | 2018-01-17 11:46:48 +0100 | [diff] [blame] | 1344 | tcf_block_owner_del(block, q, ei->binder_type); |
| 1345 | err_block_owner_add: |
Jiri Pirko | 4861738 | 2018-01-17 11:46:46 +0100 | [diff] [blame] | 1346 | err_block_insert: |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 1347 | tcf_block_refcnt_put(block, true); |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 1348 | return err; |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 1349 | } |
Jiri Pirko | 8c4083b | 2017-10-19 15:50:29 +0200 | [diff] [blame] | 1350 | EXPORT_SYMBOL(tcf_block_get_ext); |
| 1351 | |
Jiri Pirko | c7eb7d7 | 2017-11-03 11:46:24 +0100 | [diff] [blame] | 1352 | static void tcf_chain_head_change_dflt(struct tcf_proto *tp_head, void *priv) |
| 1353 | { |
| 1354 | struct tcf_proto __rcu **p_filter_chain = priv; |
| 1355 | |
| 1356 | rcu_assign_pointer(*p_filter_chain, tp_head); |
| 1357 | } |
| 1358 | |
Jiri Pirko | 8c4083b | 2017-10-19 15:50:29 +0200 | [diff] [blame] | 1359 | int tcf_block_get(struct tcf_block **p_block, |
Alexander Aring | 8d1a77f | 2017-12-20 12:35:19 -0500 | [diff] [blame] | 1360 | struct tcf_proto __rcu **p_filter_chain, struct Qdisc *q, |
| 1361 | struct netlink_ext_ack *extack) |
Jiri Pirko | 8c4083b | 2017-10-19 15:50:29 +0200 | [diff] [blame] | 1362 | { |
Jiri Pirko | c7eb7d7 | 2017-11-03 11:46:24 +0100 | [diff] [blame] | 1363 | struct tcf_block_ext_info ei = { |
| 1364 | .chain_head_change = tcf_chain_head_change_dflt, |
| 1365 | .chain_head_change_priv = p_filter_chain, |
| 1366 | }; |
Jiri Pirko | 8c4083b | 2017-10-19 15:50:29 +0200 | [diff] [blame] | 1367 | |
Jiri Pirko | c7eb7d7 | 2017-11-03 11:46:24 +0100 | [diff] [blame] | 1368 | WARN_ON(!p_filter_chain); |
Alexander Aring | 8d1a77f | 2017-12-20 12:35:19 -0500 | [diff] [blame] | 1369 | return tcf_block_get_ext(p_block, q, &ei, extack); |
Jiri Pirko | 8c4083b | 2017-10-19 15:50:29 +0200 | [diff] [blame] | 1370 | } |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 1371 | EXPORT_SYMBOL(tcf_block_get); |
| 1372 | |
Cong Wang | 7aa0045 | 2017-10-26 18:24:28 -0700 | [diff] [blame] | 1373 | /* XXX: Standalone actions are not allowed to jump to any chain, and bound |
Roman Kapl | a60b3f5 | 2017-11-24 12:27:58 +0100 | [diff] [blame] | 1374 | * actions should be all removed after flushing. |
Cong Wang | 7aa0045 | 2017-10-26 18:24:28 -0700 | [diff] [blame] | 1375 | */ |
Jiri Pirko | c7eb7d7 | 2017-11-03 11:46:24 +0100 | [diff] [blame] | 1376 | void tcf_block_put_ext(struct tcf_block *block, struct Qdisc *q, |
David S. Miller | e1ea2f9 | 2017-10-30 14:10:01 +0900 | [diff] [blame] | 1377 | struct tcf_block_ext_info *ei) |
Cong Wang | 7aa0045 | 2017-10-26 18:24:28 -0700 | [diff] [blame] | 1378 | { |
David S. Miller | c30abd5 | 2017-12-16 22:11:55 -0500 | [diff] [blame] | 1379 | if (!block) |
| 1380 | return; |
Jiri Pirko | f71e0ca4 | 2018-07-23 09:23:05 +0200 | [diff] [blame] | 1381 | tcf_chain0_head_change_cb_del(block, ei); |
Jiri Pirko | f36fe1c | 2018-01-17 11:46:48 +0100 | [diff] [blame] | 1382 | tcf_block_owner_del(block, q, ei->binder_type); |
Roman Kapl | a60b3f5 | 2017-11-24 12:27:58 +0100 | [diff] [blame] | 1383 | |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 1384 | __tcf_block_put(block, q, ei, true); |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 1385 | } |
Jiri Pirko | 8c4083b | 2017-10-19 15:50:29 +0200 | [diff] [blame] | 1386 | EXPORT_SYMBOL(tcf_block_put_ext); |
| 1387 | |
| 1388 | void tcf_block_put(struct tcf_block *block) |
| 1389 | { |
| 1390 | struct tcf_block_ext_info ei = {0, }; |
| 1391 | |
Jiri Pirko | 4853f12 | 2017-12-21 13:13:59 +0100 | [diff] [blame] | 1392 | if (!block) |
| 1393 | return; |
Jiri Pirko | c7eb7d7 | 2017-11-03 11:46:24 +0100 | [diff] [blame] | 1394 | tcf_block_put_ext(block, block->q, &ei); |
Jiri Pirko | 8c4083b | 2017-10-19 15:50:29 +0200 | [diff] [blame] | 1395 | } |
David S. Miller | e1ea2f9 | 2017-10-30 14:10:01 +0900 | [diff] [blame] | 1396 | |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 1397 | EXPORT_SYMBOL(tcf_block_put); |
Jiri Pirko | cf1facd | 2017-02-09 14:38:56 +0100 | [diff] [blame] | 1398 | |
John Hurley | 3263674 | 2018-06-25 14:30:10 -0700 | [diff] [blame] | 1399 | static int |
Pablo Neira Ayuso | a732331 | 2019-07-19 18:20:15 +0200 | [diff] [blame] | 1400 | tcf_block_playback_offloads(struct tcf_block *block, flow_setup_cb_t *cb, |
John Hurley | 3263674 | 2018-06-25 14:30:10 -0700 | [diff] [blame] | 1401 | void *cb_priv, bool add, bool offload_in_use, |
| 1402 | struct netlink_ext_ack *extack) |
| 1403 | { |
Vlad Buslov | bbf7383 | 2019-02-11 10:55:36 +0200 | [diff] [blame] | 1404 | struct tcf_chain *chain, *chain_prev; |
Vlad Buslov | fe2923a | 2019-02-11 10:55:40 +0200 | [diff] [blame] | 1405 | struct tcf_proto *tp, *tp_prev; |
John Hurley | 3263674 | 2018-06-25 14:30:10 -0700 | [diff] [blame] | 1406 | int err; |
| 1407 | |
Vlad Buslov | 4f8116c | 2019-08-26 16:44:57 +0300 | [diff] [blame] | 1408 | lockdep_assert_held(&block->cb_lock); |
| 1409 | |
Vlad Buslov | bbf7383 | 2019-02-11 10:55:36 +0200 | [diff] [blame] | 1410 | for (chain = __tcf_get_next_chain(block, NULL); |
| 1411 | chain; |
| 1412 | chain_prev = chain, |
| 1413 | chain = __tcf_get_next_chain(block, chain), |
| 1414 | tcf_chain_put(chain_prev)) { |
Vlad Buslov | fe2923a | 2019-02-11 10:55:40 +0200 | [diff] [blame] | 1415 | for (tp = __tcf_get_next_proto(chain, NULL); tp; |
| 1416 | tp_prev = tp, |
| 1417 | tp = __tcf_get_next_proto(chain, tp), |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 1418 | tcf_proto_put(tp_prev, true, NULL)) { |
John Hurley | 3263674 | 2018-06-25 14:30:10 -0700 | [diff] [blame] | 1419 | if (tp->ops->reoffload) { |
| 1420 | err = tp->ops->reoffload(tp, add, cb, cb_priv, |
| 1421 | extack); |
| 1422 | if (err && add) |
| 1423 | goto err_playback_remove; |
| 1424 | } else if (add && offload_in_use) { |
| 1425 | err = -EOPNOTSUPP; |
| 1426 | NL_SET_ERR_MSG(extack, "Filter HW offload failed - classifier without re-offloading support"); |
| 1427 | goto err_playback_remove; |
| 1428 | } |
| 1429 | } |
| 1430 | } |
| 1431 | |
| 1432 | return 0; |
| 1433 | |
| 1434 | err_playback_remove: |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 1435 | tcf_proto_put(tp, true, NULL); |
Vlad Buslov | bbf7383 | 2019-02-11 10:55:36 +0200 | [diff] [blame] | 1436 | tcf_chain_put(chain); |
John Hurley | 3263674 | 2018-06-25 14:30:10 -0700 | [diff] [blame] | 1437 | tcf_block_playback_offloads(block, cb, cb_priv, false, offload_in_use, |
| 1438 | extack); |
| 1439 | return err; |
| 1440 | } |
| 1441 | |
Pablo Neira Ayuso | 59094b1 | 2019-07-09 22:55:45 +0200 | [diff] [blame] | 1442 | static int tcf_block_bind(struct tcf_block *block, |
| 1443 | struct flow_block_offload *bo) |
| 1444 | { |
| 1445 | struct flow_block_cb *block_cb, *next; |
| 1446 | int err, i = 0; |
| 1447 | |
Vlad Buslov | 4f8116c | 2019-08-26 16:44:57 +0300 | [diff] [blame] | 1448 | lockdep_assert_held(&block->cb_lock); |
| 1449 | |
Pablo Neira Ayuso | 59094b1 | 2019-07-09 22:55:45 +0200 | [diff] [blame] | 1450 | list_for_each_entry(block_cb, &bo->cb_list, list) { |
| 1451 | err = tcf_block_playback_offloads(block, block_cb->cb, |
| 1452 | block_cb->cb_priv, true, |
| 1453 | tcf_block_offload_in_use(block), |
| 1454 | bo->extack); |
| 1455 | if (err) |
| 1456 | goto err_unroll; |
Vlad Buslov | c9f1447 | 2019-08-26 16:45:01 +0300 | [diff] [blame] | 1457 | if (!bo->unlocked_driver_cb) |
| 1458 | block->lockeddevcnt++; |
Pablo Neira Ayuso | 59094b1 | 2019-07-09 22:55:45 +0200 | [diff] [blame] | 1459 | |
| 1460 | i++; |
| 1461 | } |
Pablo Neira Ayuso | 14bfb13 | 2019-07-19 18:20:16 +0200 | [diff] [blame] | 1462 | list_splice(&bo->cb_list, &block->flow_block.cb_list); |
Pablo Neira Ayuso | 59094b1 | 2019-07-09 22:55:45 +0200 | [diff] [blame] | 1463 | |
| 1464 | return 0; |
| 1465 | |
| 1466 | err_unroll: |
| 1467 | list_for_each_entry_safe(block_cb, next, &bo->cb_list, list) { |
| 1468 | if (i-- > 0) { |
| 1469 | list_del(&block_cb->list); |
| 1470 | tcf_block_playback_offloads(block, block_cb->cb, |
| 1471 | block_cb->cb_priv, false, |
| 1472 | tcf_block_offload_in_use(block), |
| 1473 | NULL); |
Vlad Buslov | c9f1447 | 2019-08-26 16:45:01 +0300 | [diff] [blame] | 1474 | if (!bo->unlocked_driver_cb) |
| 1475 | block->lockeddevcnt--; |
Pablo Neira Ayuso | 59094b1 | 2019-07-09 22:55:45 +0200 | [diff] [blame] | 1476 | } |
| 1477 | flow_block_cb_free(block_cb); |
| 1478 | } |
| 1479 | |
| 1480 | return err; |
| 1481 | } |
| 1482 | |
| 1483 | static void tcf_block_unbind(struct tcf_block *block, |
| 1484 | struct flow_block_offload *bo) |
| 1485 | { |
| 1486 | struct flow_block_cb *block_cb, *next; |
| 1487 | |
Vlad Buslov | 4f8116c | 2019-08-26 16:44:57 +0300 | [diff] [blame] | 1488 | lockdep_assert_held(&block->cb_lock); |
| 1489 | |
Pablo Neira Ayuso | 59094b1 | 2019-07-09 22:55:45 +0200 | [diff] [blame] | 1490 | list_for_each_entry_safe(block_cb, next, &bo->cb_list, list) { |
| 1491 | tcf_block_playback_offloads(block, block_cb->cb, |
| 1492 | block_cb->cb_priv, false, |
| 1493 | tcf_block_offload_in_use(block), |
| 1494 | NULL); |
| 1495 | list_del(&block_cb->list); |
| 1496 | flow_block_cb_free(block_cb); |
Vlad Buslov | c9f1447 | 2019-08-26 16:45:01 +0300 | [diff] [blame] | 1497 | if (!bo->unlocked_driver_cb) |
| 1498 | block->lockeddevcnt--; |
Pablo Neira Ayuso | 59094b1 | 2019-07-09 22:55:45 +0200 | [diff] [blame] | 1499 | } |
| 1500 | } |
| 1501 | |
| 1502 | static int tcf_block_setup(struct tcf_block *block, |
| 1503 | struct flow_block_offload *bo) |
| 1504 | { |
| 1505 | int err; |
| 1506 | |
| 1507 | switch (bo->command) { |
| 1508 | case FLOW_BLOCK_BIND: |
| 1509 | err = tcf_block_bind(block, bo); |
| 1510 | break; |
| 1511 | case FLOW_BLOCK_UNBIND: |
| 1512 | err = 0; |
| 1513 | tcf_block_unbind(block, bo); |
| 1514 | break; |
| 1515 | default: |
| 1516 | WARN_ON_ONCE(1); |
| 1517 | err = -EOPNOTSUPP; |
| 1518 | } |
| 1519 | |
| 1520 | return err; |
| 1521 | } |
| 1522 | |
Jiri Pirko | 87d8309 | 2017-05-17 11:07:54 +0200 | [diff] [blame] | 1523 | /* Main classifier routine: scans classifier chain attached |
| 1524 | * to this qdisc, (optionally) tests for protocol and asks |
| 1525 | * specific classifiers. |
| 1526 | */ |
Paul Blakey | 9410c94 | 2020-02-16 12:01:21 +0200 | [diff] [blame] | 1527 | static inline int __tcf_classify(struct sk_buff *skb, |
| 1528 | const struct tcf_proto *tp, |
Paul Blakey | af69962 | 2020-02-16 12:01:24 +0200 | [diff] [blame] | 1529 | const struct tcf_proto *orig_tp, |
Paul Blakey | 9410c94 | 2020-02-16 12:01:21 +0200 | [diff] [blame] | 1530 | struct tcf_result *res, |
| 1531 | bool compat_mode, |
| 1532 | u32 *last_executed_chain) |
Jiri Pirko | 87d8309 | 2017-05-17 11:07:54 +0200 | [diff] [blame] | 1533 | { |
Jiri Pirko | 87d8309 | 2017-05-17 11:07:54 +0200 | [diff] [blame] | 1534 | #ifdef CONFIG_NET_CLS_ACT |
Davide Caratti | 05ff843 | 2021-05-19 15:17:21 +0200 | [diff] [blame] | 1535 | const int max_reclassify_loop = 16; |
Jiri Pirko | ee538dc | 2017-05-23 09:11:59 +0200 | [diff] [blame] | 1536 | const struct tcf_proto *first_tp; |
Jiri Pirko | 87d8309 | 2017-05-17 11:07:54 +0200 | [diff] [blame] | 1537 | int limit = 0; |
| 1538 | |
| 1539 | reclassify: |
| 1540 | #endif |
| 1541 | for (; tp; tp = rcu_dereference_bh(tp->next)) { |
Toke Høiland-Jørgensen | d7bf2eb | 2020-07-03 22:26:43 +0200 | [diff] [blame] | 1542 | __be16 protocol = skb_protocol(skb, false); |
Jiri Pirko | 87d8309 | 2017-05-17 11:07:54 +0200 | [diff] [blame] | 1543 | int err; |
| 1544 | |
| 1545 | if (tp->protocol != protocol && |
| 1546 | tp->protocol != htons(ETH_P_ALL)) |
| 1547 | continue; |
| 1548 | |
| 1549 | err = tp->classify(skb, tp, res); |
| 1550 | #ifdef CONFIG_NET_CLS_ACT |
Jiri Pirko | db50514 | 2017-05-17 11:08:03 +0200 | [diff] [blame] | 1551 | if (unlikely(err == TC_ACT_RECLASSIFY && !compat_mode)) { |
Jiri Pirko | ee538dc | 2017-05-23 09:11:59 +0200 | [diff] [blame] | 1552 | first_tp = orig_tp; |
Paul Blakey | 9410c94 | 2020-02-16 12:01:21 +0200 | [diff] [blame] | 1553 | *last_executed_chain = first_tp->chain->index; |
Jiri Pirko | 87d8309 | 2017-05-17 11:07:54 +0200 | [diff] [blame] | 1554 | goto reset; |
Jiri Pirko | db50514 | 2017-05-17 11:08:03 +0200 | [diff] [blame] | 1555 | } else if (unlikely(TC_ACT_EXT_CMP(err, TC_ACT_GOTO_CHAIN))) { |
Jiri Pirko | ee538dc | 2017-05-23 09:11:59 +0200 | [diff] [blame] | 1556 | first_tp = res->goto_tp; |
Paul Blakey | 9410c94 | 2020-02-16 12:01:21 +0200 | [diff] [blame] | 1557 | *last_executed_chain = err & TC_ACT_EXT_VAL_MASK; |
Jiri Pirko | db50514 | 2017-05-17 11:08:03 +0200 | [diff] [blame] | 1558 | goto reset; |
| 1559 | } |
Jiri Pirko | 87d8309 | 2017-05-17 11:07:54 +0200 | [diff] [blame] | 1560 | #endif |
| 1561 | if (err >= 0) |
| 1562 | return err; |
| 1563 | } |
| 1564 | |
| 1565 | return TC_ACT_UNSPEC; /* signal: continue lookup */ |
| 1566 | #ifdef CONFIG_NET_CLS_ACT |
| 1567 | reset: |
| 1568 | if (unlikely(limit++ >= max_reclassify_loop)) { |
Jiri Pirko | 9d3aaff | 2018-01-17 11:46:47 +0100 | [diff] [blame] | 1569 | net_notice_ratelimited("%u: reclassify loop, rule prio %u, protocol %02x\n", |
| 1570 | tp->chain->block->index, |
| 1571 | tp->prio & 0xffff, |
Jiri Pirko | 87d8309 | 2017-05-17 11:07:54 +0200 | [diff] [blame] | 1572 | ntohs(tp->protocol)); |
| 1573 | return TC_ACT_SHOT; |
| 1574 | } |
| 1575 | |
Jiri Pirko | ee538dc | 2017-05-23 09:11:59 +0200 | [diff] [blame] | 1576 | tp = first_tp; |
Jiri Pirko | 87d8309 | 2017-05-17 11:07:54 +0200 | [diff] [blame] | 1577 | goto reclassify; |
| 1578 | #endif |
| 1579 | } |
Paul Blakey | 9410c94 | 2020-02-16 12:01:21 +0200 | [diff] [blame] | 1580 | |
Davide Caratti | 3aa2605 | 2021-07-28 20:08:00 +0200 | [diff] [blame] | 1581 | int tcf_classify(struct sk_buff *skb, |
| 1582 | const struct tcf_block *block, |
| 1583 | const struct tcf_proto *tp, |
Paul Blakey | 9410c94 | 2020-02-16 12:01:21 +0200 | [diff] [blame] | 1584 | struct tcf_result *res, bool compat_mode) |
| 1585 | { |
Paul Blakey | 9410c94 | 2020-02-16 12:01:21 +0200 | [diff] [blame] | 1586 | #if !IS_ENABLED(CONFIG_NET_TC_SKB_EXT) |
| 1587 | u32 last_executed_chain = 0; |
| 1588 | |
Paul Blakey | af69962 | 2020-02-16 12:01:24 +0200 | [diff] [blame] | 1589 | return __tcf_classify(skb, tp, tp, res, compat_mode, |
Paul Blakey | 9410c94 | 2020-02-16 12:01:21 +0200 | [diff] [blame] | 1590 | &last_executed_chain); |
| 1591 | #else |
| 1592 | u32 last_executed_chain = tp ? tp->chain->index : 0; |
Paul Blakey | af69962 | 2020-02-16 12:01:24 +0200 | [diff] [blame] | 1593 | const struct tcf_proto *orig_tp = tp; |
Paul Blakey | 9410c94 | 2020-02-16 12:01:21 +0200 | [diff] [blame] | 1594 | struct tc_skb_ext *ext; |
| 1595 | int ret; |
| 1596 | |
Davide Caratti | 3aa2605 | 2021-07-28 20:08:00 +0200 | [diff] [blame] | 1597 | if (block) { |
| 1598 | ext = skb_ext_find(skb, TC_SKB_EXT); |
Paul Blakey | af69962 | 2020-02-16 12:01:24 +0200 | [diff] [blame] | 1599 | |
Davide Caratti | 3aa2605 | 2021-07-28 20:08:00 +0200 | [diff] [blame] | 1600 | if (ext && ext->chain) { |
| 1601 | struct tcf_chain *fchain; |
Paul Blakey | af69962 | 2020-02-16 12:01:24 +0200 | [diff] [blame] | 1602 | |
Davide Caratti | 3aa2605 | 2021-07-28 20:08:00 +0200 | [diff] [blame] | 1603 | fchain = tcf_chain_lookup_rcu(block, ext->chain); |
| 1604 | if (!fchain) |
| 1605 | return TC_ACT_SHOT; |
Paul Blakey | af69962 | 2020-02-16 12:01:24 +0200 | [diff] [blame] | 1606 | |
Davide Caratti | 3aa2605 | 2021-07-28 20:08:00 +0200 | [diff] [blame] | 1607 | /* Consume, so cloned/redirect skbs won't inherit ext */ |
| 1608 | skb_ext_del(skb, TC_SKB_EXT); |
Paul Blakey | af69962 | 2020-02-16 12:01:24 +0200 | [diff] [blame] | 1609 | |
Davide Caratti | 3aa2605 | 2021-07-28 20:08:00 +0200 | [diff] [blame] | 1610 | tp = rcu_dereference_bh(fchain->filter_chain); |
| 1611 | last_executed_chain = fchain->index; |
| 1612 | } |
Paul Blakey | af69962 | 2020-02-16 12:01:24 +0200 | [diff] [blame] | 1613 | } |
| 1614 | |
| 1615 | ret = __tcf_classify(skb, tp, orig_tp, res, compat_mode, |
| 1616 | &last_executed_chain); |
Paul Blakey | 9410c94 | 2020-02-16 12:01:21 +0200 | [diff] [blame] | 1617 | |
| 1618 | /* If we missed on some chain */ |
| 1619 | if (ret == TC_ACT_UNSPEC && last_executed_chain) { |
Paul Blakey | ec624fe | 2021-12-14 19:24:33 +0200 | [diff] [blame] | 1620 | struct tc_skb_cb *cb = tc_skb_cb(skb); |
| 1621 | |
Vlad Buslov | 9453d45 | 2021-05-25 16:21:52 +0300 | [diff] [blame] | 1622 | ext = tc_skb_ext_alloc(skb); |
Paul Blakey | 9410c94 | 2020-02-16 12:01:21 +0200 | [diff] [blame] | 1623 | if (WARN_ON_ONCE(!ext)) |
| 1624 | return TC_ACT_SHOT; |
| 1625 | ext->chain = last_executed_chain; |
Paul Blakey | ec624fe | 2021-12-14 19:24:33 +0200 | [diff] [blame] | 1626 | ext->mru = cb->mru; |
| 1627 | ext->post_ct = cb->post_ct; |
Paul Blakey | 6f022c2 | 2022-01-06 17:38:04 +0200 | [diff] [blame] | 1628 | ext->post_ct_snat = cb->post_ct_snat; |
| 1629 | ext->post_ct_dnat = cb->post_ct_dnat; |
Paul Blakey | 635d448 | 2021-12-14 19:24:35 +0200 | [diff] [blame] | 1630 | ext->zone = cb->zone; |
Paul Blakey | 9410c94 | 2020-02-16 12:01:21 +0200 | [diff] [blame] | 1631 | } |
| 1632 | |
| 1633 | return ret; |
| 1634 | #endif |
| 1635 | } |
Davide Caratti | 3aa2605 | 2021-07-28 20:08:00 +0200 | [diff] [blame] | 1636 | EXPORT_SYMBOL(tcf_classify); |
Paul Blakey | 9410c94 | 2020-02-16 12:01:21 +0200 | [diff] [blame] | 1637 | |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 1638 | struct tcf_chain_info { |
| 1639 | struct tcf_proto __rcu **pprev; |
| 1640 | struct tcf_proto __rcu *next; |
| 1641 | }; |
| 1642 | |
Vlad Buslov | ed76f5e | 2019-02-11 10:55:38 +0200 | [diff] [blame] | 1643 | static struct tcf_proto *tcf_chain_tp_prev(struct tcf_chain *chain, |
| 1644 | struct tcf_chain_info *chain_info) |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 1645 | { |
Vlad Buslov | ed76f5e | 2019-02-11 10:55:38 +0200 | [diff] [blame] | 1646 | return tcf_chain_dereference(*chain_info->pprev, chain); |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 1647 | } |
| 1648 | |
Vlad Buslov | 726d0612 | 2019-02-11 10:55:42 +0200 | [diff] [blame] | 1649 | static int tcf_chain_tp_insert(struct tcf_chain *chain, |
| 1650 | struct tcf_chain_info *chain_info, |
| 1651 | struct tcf_proto *tp) |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 1652 | { |
Vlad Buslov | 726d0612 | 2019-02-11 10:55:42 +0200 | [diff] [blame] | 1653 | if (chain->flushing) |
| 1654 | return -EAGAIN; |
| 1655 | |
Jiri Pirko | c7eb7d7 | 2017-11-03 11:46:24 +0100 | [diff] [blame] | 1656 | if (*chain_info->pprev == chain->filter_chain) |
Jiri Pirko | f71e0ca4 | 2018-07-23 09:23:05 +0200 | [diff] [blame] | 1657 | tcf_chain0_head_change(chain, tp); |
Vlad Buslov | 4dbfa76 | 2019-02-11 10:55:39 +0200 | [diff] [blame] | 1658 | tcf_proto_get(tp); |
Vlad Buslov | ed76f5e | 2019-02-11 10:55:38 +0200 | [diff] [blame] | 1659 | RCU_INIT_POINTER(tp->next, tcf_chain_tp_prev(chain, chain_info)); |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 1660 | rcu_assign_pointer(*chain_info->pprev, tp); |
Vlad Buslov | 726d0612 | 2019-02-11 10:55:42 +0200 | [diff] [blame] | 1661 | |
| 1662 | return 0; |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 1663 | } |
| 1664 | |
| 1665 | static void tcf_chain_tp_remove(struct tcf_chain *chain, |
| 1666 | struct tcf_chain_info *chain_info, |
| 1667 | struct tcf_proto *tp) |
| 1668 | { |
Vlad Buslov | ed76f5e | 2019-02-11 10:55:38 +0200 | [diff] [blame] | 1669 | struct tcf_proto *next = tcf_chain_dereference(chain_info->next, chain); |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 1670 | |
Vlad Buslov | 8b64678 | 2019-02-11 10:55:41 +0200 | [diff] [blame] | 1671 | tcf_proto_mark_delete(tp); |
Jiri Pirko | c7eb7d7 | 2017-11-03 11:46:24 +0100 | [diff] [blame] | 1672 | if (tp == chain->filter_chain) |
Jiri Pirko | f71e0ca4 | 2018-07-23 09:23:05 +0200 | [diff] [blame] | 1673 | tcf_chain0_head_change(chain, next); |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 1674 | RCU_INIT_POINTER(*chain_info->pprev, next); |
| 1675 | } |
| 1676 | |
| 1677 | static struct tcf_proto *tcf_chain_tp_find(struct tcf_chain *chain, |
| 1678 | struct tcf_chain_info *chain_info, |
| 1679 | u32 protocol, u32 prio, |
Vlad Buslov | 8b64678 | 2019-02-11 10:55:41 +0200 | [diff] [blame] | 1680 | bool prio_allocate); |
| 1681 | |
| 1682 | /* Try to insert new proto. |
| 1683 | * If proto with specified priority already exists, free new proto |
| 1684 | * and return existing one. |
| 1685 | */ |
| 1686 | |
| 1687 | static struct tcf_proto *tcf_chain_tp_insert_unique(struct tcf_chain *chain, |
| 1688 | struct tcf_proto *tp_new, |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 1689 | u32 protocol, u32 prio, |
| 1690 | bool rtnl_held) |
Vlad Buslov | 8b64678 | 2019-02-11 10:55:41 +0200 | [diff] [blame] | 1691 | { |
| 1692 | struct tcf_chain_info chain_info; |
| 1693 | struct tcf_proto *tp; |
Vlad Buslov | 726d0612 | 2019-02-11 10:55:42 +0200 | [diff] [blame] | 1694 | int err = 0; |
Vlad Buslov | 8b64678 | 2019-02-11 10:55:41 +0200 | [diff] [blame] | 1695 | |
| 1696 | mutex_lock(&chain->filter_chain_lock); |
| 1697 | |
John Hurley | 59eb87c | 2019-11-02 14:17:47 +0000 | [diff] [blame] | 1698 | if (tcf_proto_exists_destroying(chain, tp_new)) { |
| 1699 | mutex_unlock(&chain->filter_chain_lock); |
| 1700 | tcf_proto_destroy(tp_new, rtnl_held, false, NULL); |
| 1701 | return ERR_PTR(-EAGAIN); |
| 1702 | } |
| 1703 | |
Vlad Buslov | 8b64678 | 2019-02-11 10:55:41 +0200 | [diff] [blame] | 1704 | tp = tcf_chain_tp_find(chain, &chain_info, |
| 1705 | protocol, prio, false); |
| 1706 | if (!tp) |
Vlad Buslov | 726d0612 | 2019-02-11 10:55:42 +0200 | [diff] [blame] | 1707 | err = tcf_chain_tp_insert(chain, &chain_info, tp_new); |
Vlad Buslov | 8b64678 | 2019-02-11 10:55:41 +0200 | [diff] [blame] | 1708 | mutex_unlock(&chain->filter_chain_lock); |
| 1709 | |
| 1710 | if (tp) { |
John Hurley | 59eb87c | 2019-11-02 14:17:47 +0000 | [diff] [blame] | 1711 | tcf_proto_destroy(tp_new, rtnl_held, false, NULL); |
Vlad Buslov | 8b64678 | 2019-02-11 10:55:41 +0200 | [diff] [blame] | 1712 | tp_new = tp; |
Vlad Buslov | 726d0612 | 2019-02-11 10:55:42 +0200 | [diff] [blame] | 1713 | } else if (err) { |
John Hurley | 59eb87c | 2019-11-02 14:17:47 +0000 | [diff] [blame] | 1714 | tcf_proto_destroy(tp_new, rtnl_held, false, NULL); |
Vlad Buslov | 726d0612 | 2019-02-11 10:55:42 +0200 | [diff] [blame] | 1715 | tp_new = ERR_PTR(err); |
Vlad Buslov | 8b64678 | 2019-02-11 10:55:41 +0200 | [diff] [blame] | 1716 | } |
| 1717 | |
| 1718 | return tp_new; |
| 1719 | } |
| 1720 | |
| 1721 | static void tcf_chain_tp_delete_empty(struct tcf_chain *chain, |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 1722 | struct tcf_proto *tp, bool rtnl_held, |
Vlad Buslov | 8b64678 | 2019-02-11 10:55:41 +0200 | [diff] [blame] | 1723 | struct netlink_ext_ack *extack) |
| 1724 | { |
| 1725 | struct tcf_chain_info chain_info; |
| 1726 | struct tcf_proto *tp_iter; |
| 1727 | struct tcf_proto **pprev; |
| 1728 | struct tcf_proto *next; |
| 1729 | |
| 1730 | mutex_lock(&chain->filter_chain_lock); |
| 1731 | |
| 1732 | /* Atomically find and remove tp from chain. */ |
| 1733 | for (pprev = &chain->filter_chain; |
| 1734 | (tp_iter = tcf_chain_dereference(*pprev, chain)); |
| 1735 | pprev = &tp_iter->next) { |
| 1736 | if (tp_iter == tp) { |
| 1737 | chain_info.pprev = pprev; |
| 1738 | chain_info.next = tp_iter->next; |
| 1739 | WARN_ON(tp_iter->deleting); |
| 1740 | break; |
| 1741 | } |
| 1742 | } |
| 1743 | /* Verify that tp still exists and no new filters were inserted |
| 1744 | * concurrently. |
| 1745 | * Mark tp for deletion if it is empty. |
| 1746 | */ |
Davide Caratti | a5b72a0 | 2019-12-28 16:36:58 +0100 | [diff] [blame] | 1747 | if (!tp_iter || !tcf_proto_check_delete(tp)) { |
Vlad Buslov | 8b64678 | 2019-02-11 10:55:41 +0200 | [diff] [blame] | 1748 | mutex_unlock(&chain->filter_chain_lock); |
| 1749 | return; |
| 1750 | } |
| 1751 | |
John Hurley | 59eb87c | 2019-11-02 14:17:47 +0000 | [diff] [blame] | 1752 | tcf_proto_signal_destroying(chain, tp); |
Vlad Buslov | 8b64678 | 2019-02-11 10:55:41 +0200 | [diff] [blame] | 1753 | next = tcf_chain_dereference(chain_info.next, chain); |
| 1754 | if (tp == chain->filter_chain) |
| 1755 | tcf_chain0_head_change(chain, next); |
| 1756 | RCU_INIT_POINTER(*chain_info.pprev, next); |
| 1757 | mutex_unlock(&chain->filter_chain_lock); |
| 1758 | |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 1759 | tcf_proto_put(tp, rtnl_held, extack); |
Vlad Buslov | 8b64678 | 2019-02-11 10:55:41 +0200 | [diff] [blame] | 1760 | } |
| 1761 | |
| 1762 | static struct tcf_proto *tcf_chain_tp_find(struct tcf_chain *chain, |
| 1763 | struct tcf_chain_info *chain_info, |
| 1764 | u32 protocol, u32 prio, |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 1765 | bool prio_allocate) |
| 1766 | { |
| 1767 | struct tcf_proto **pprev; |
| 1768 | struct tcf_proto *tp; |
| 1769 | |
| 1770 | /* Check the chain for existence of proto-tcf with this priority */ |
| 1771 | for (pprev = &chain->filter_chain; |
Vlad Buslov | ed76f5e | 2019-02-11 10:55:38 +0200 | [diff] [blame] | 1772 | (tp = tcf_chain_dereference(*pprev, chain)); |
| 1773 | pprev = &tp->next) { |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 1774 | if (tp->prio >= prio) { |
| 1775 | if (tp->prio == prio) { |
| 1776 | if (prio_allocate || |
| 1777 | (tp->protocol != protocol && protocol)) |
| 1778 | return ERR_PTR(-EINVAL); |
| 1779 | } else { |
| 1780 | tp = NULL; |
| 1781 | } |
| 1782 | break; |
| 1783 | } |
| 1784 | } |
| 1785 | chain_info->pprev = pprev; |
Vlad Buslov | 4dbfa76 | 2019-02-11 10:55:39 +0200 | [diff] [blame] | 1786 | if (tp) { |
| 1787 | chain_info->next = tp->next; |
| 1788 | tcf_proto_get(tp); |
| 1789 | } else { |
| 1790 | chain_info->next = NULL; |
| 1791 | } |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 1792 | return tp; |
| 1793 | } |
| 1794 | |
WANG Cong | 7120371 | 2017-08-07 15:26:50 -0700 | [diff] [blame] | 1795 | static int tcf_fill_node(struct net *net, struct sk_buff *skb, |
Jiri Pirko | 7960d1d | 2018-01-17 11:46:51 +0100 | [diff] [blame] | 1796 | struct tcf_proto *tp, struct tcf_block *block, |
| 1797 | struct Qdisc *q, u32 parent, void *fh, |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 1798 | u32 portid, u32 seq, u16 flags, int event, |
Vlad Buslov | f8ab180 | 2020-05-15 14:40:11 +0300 | [diff] [blame] | 1799 | bool terse_dump, bool rtnl_held) |
WANG Cong | 7120371 | 2017-08-07 15:26:50 -0700 | [diff] [blame] | 1800 | { |
| 1801 | struct tcmsg *tcm; |
| 1802 | struct nlmsghdr *nlh; |
| 1803 | unsigned char *b = skb_tail_pointer(skb); |
| 1804 | |
| 1805 | nlh = nlmsg_put(skb, portid, seq, event, sizeof(*tcm), flags); |
| 1806 | if (!nlh) |
| 1807 | goto out_nlmsg_trim; |
| 1808 | tcm = nlmsg_data(nlh); |
| 1809 | tcm->tcm_family = AF_UNSPEC; |
| 1810 | tcm->tcm__pad1 = 0; |
| 1811 | tcm->tcm__pad2 = 0; |
Jiri Pirko | 7960d1d | 2018-01-17 11:46:51 +0100 | [diff] [blame] | 1812 | if (q) { |
| 1813 | tcm->tcm_ifindex = qdisc_dev(q)->ifindex; |
| 1814 | tcm->tcm_parent = parent; |
| 1815 | } else { |
| 1816 | tcm->tcm_ifindex = TCM_IFINDEX_MAGIC_BLOCK; |
| 1817 | tcm->tcm_block_index = block->index; |
| 1818 | } |
WANG Cong | 7120371 | 2017-08-07 15:26:50 -0700 | [diff] [blame] | 1819 | tcm->tcm_info = TC_H_MAKE(tp->prio, tp->protocol); |
| 1820 | if (nla_put_string(skb, TCA_KIND, tp->ops->kind)) |
| 1821 | goto nla_put_failure; |
| 1822 | if (nla_put_u32(skb, TCA_CHAIN, tp->chain->index)) |
| 1823 | goto nla_put_failure; |
| 1824 | if (!fh) { |
| 1825 | tcm->tcm_handle = 0; |
Vlad Buslov | f8ab180 | 2020-05-15 14:40:11 +0300 | [diff] [blame] | 1826 | } else if (terse_dump) { |
| 1827 | if (tp->ops->terse_dump) { |
| 1828 | if (tp->ops->terse_dump(net, tp, fh, skb, tcm, |
| 1829 | rtnl_held) < 0) |
| 1830 | goto nla_put_failure; |
| 1831 | } else { |
| 1832 | goto cls_op_not_supp; |
| 1833 | } |
WANG Cong | 7120371 | 2017-08-07 15:26:50 -0700 | [diff] [blame] | 1834 | } else { |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 1835 | if (tp->ops->dump && |
| 1836 | tp->ops->dump(net, tp, fh, skb, tcm, rtnl_held) < 0) |
WANG Cong | 7120371 | 2017-08-07 15:26:50 -0700 | [diff] [blame] | 1837 | goto nla_put_failure; |
| 1838 | } |
| 1839 | nlh->nlmsg_len = skb_tail_pointer(skb) - b; |
| 1840 | return skb->len; |
| 1841 | |
| 1842 | out_nlmsg_trim: |
| 1843 | nla_put_failure: |
Vlad Buslov | f8ab180 | 2020-05-15 14:40:11 +0300 | [diff] [blame] | 1844 | cls_op_not_supp: |
WANG Cong | 7120371 | 2017-08-07 15:26:50 -0700 | [diff] [blame] | 1845 | nlmsg_trim(skb, b); |
| 1846 | return -1; |
| 1847 | } |
| 1848 | |
| 1849 | static int tfilter_notify(struct net *net, struct sk_buff *oskb, |
| 1850 | struct nlmsghdr *n, struct tcf_proto *tp, |
Jiri Pirko | 7960d1d | 2018-01-17 11:46:51 +0100 | [diff] [blame] | 1851 | struct tcf_block *block, struct Qdisc *q, |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 1852 | u32 parent, void *fh, int event, bool unicast, |
| 1853 | bool rtnl_held) |
WANG Cong | 7120371 | 2017-08-07 15:26:50 -0700 | [diff] [blame] | 1854 | { |
| 1855 | struct sk_buff *skb; |
| 1856 | u32 portid = oskb ? NETLINK_CB(oskb).portid : 0; |
Zhike Wang | 5b5f99b | 2019-03-11 03:15:54 -0700 | [diff] [blame] | 1857 | int err = 0; |
WANG Cong | 7120371 | 2017-08-07 15:26:50 -0700 | [diff] [blame] | 1858 | |
| 1859 | skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL); |
| 1860 | if (!skb) |
| 1861 | return -ENOBUFS; |
| 1862 | |
Jiri Pirko | 7960d1d | 2018-01-17 11:46:51 +0100 | [diff] [blame] | 1863 | if (tcf_fill_node(net, skb, tp, block, q, parent, fh, portid, |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 1864 | n->nlmsg_seq, n->nlmsg_flags, event, |
Vlad Buslov | f8ab180 | 2020-05-15 14:40:11 +0300 | [diff] [blame] | 1865 | false, rtnl_held) <= 0) { |
WANG Cong | 7120371 | 2017-08-07 15:26:50 -0700 | [diff] [blame] | 1866 | kfree_skb(skb); |
| 1867 | return -EINVAL; |
| 1868 | } |
| 1869 | |
| 1870 | if (unicast) |
Yajun Deng | f79a3bc | 2021-07-15 20:24:24 +0800 | [diff] [blame] | 1871 | err = rtnl_unicast(skb, net, portid); |
Zhike Wang | 5b5f99b | 2019-03-11 03:15:54 -0700 | [diff] [blame] | 1872 | else |
| 1873 | err = rtnetlink_send(skb, net, portid, RTNLGRP_TC, |
| 1874 | n->nlmsg_flags & NLM_F_ECHO); |
Zhike Wang | 5b5f99b | 2019-03-11 03:15:54 -0700 | [diff] [blame] | 1875 | return err; |
WANG Cong | 7120371 | 2017-08-07 15:26:50 -0700 | [diff] [blame] | 1876 | } |
| 1877 | |
| 1878 | static int tfilter_del_notify(struct net *net, struct sk_buff *oskb, |
| 1879 | struct nlmsghdr *n, struct tcf_proto *tp, |
Jiri Pirko | 7960d1d | 2018-01-17 11:46:51 +0100 | [diff] [blame] | 1880 | struct tcf_block *block, struct Qdisc *q, |
Alexander Aring | c35a4ac | 2018-01-18 11:20:50 -0500 | [diff] [blame] | 1881 | u32 parent, void *fh, bool unicast, bool *last, |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 1882 | bool rtnl_held, struct netlink_ext_ack *extack) |
WANG Cong | 7120371 | 2017-08-07 15:26:50 -0700 | [diff] [blame] | 1883 | { |
| 1884 | struct sk_buff *skb; |
| 1885 | u32 portid = oskb ? NETLINK_CB(oskb).portid : 0; |
| 1886 | int err; |
| 1887 | |
| 1888 | skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL); |
| 1889 | if (!skb) |
| 1890 | return -ENOBUFS; |
| 1891 | |
Jiri Pirko | 7960d1d | 2018-01-17 11:46:51 +0100 | [diff] [blame] | 1892 | if (tcf_fill_node(net, skb, tp, block, q, parent, fh, portid, |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 1893 | n->nlmsg_seq, n->nlmsg_flags, RTM_DELTFILTER, |
Vlad Buslov | f8ab180 | 2020-05-15 14:40:11 +0300 | [diff] [blame] | 1894 | false, rtnl_held) <= 0) { |
Alexander Aring | c35a4ac | 2018-01-18 11:20:50 -0500 | [diff] [blame] | 1895 | NL_SET_ERR_MSG(extack, "Failed to build del event notification"); |
WANG Cong | 7120371 | 2017-08-07 15:26:50 -0700 | [diff] [blame] | 1896 | kfree_skb(skb); |
| 1897 | return -EINVAL; |
| 1898 | } |
| 1899 | |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 1900 | err = tp->ops->delete(tp, fh, last, rtnl_held, extack); |
WANG Cong | 7120371 | 2017-08-07 15:26:50 -0700 | [diff] [blame] | 1901 | if (err) { |
| 1902 | kfree_skb(skb); |
| 1903 | return err; |
| 1904 | } |
| 1905 | |
| 1906 | if (unicast) |
Yajun Deng | f79a3bc | 2021-07-15 20:24:24 +0800 | [diff] [blame] | 1907 | err = rtnl_unicast(skb, net, portid); |
Zhike Wang | 5b5f99b | 2019-03-11 03:15:54 -0700 | [diff] [blame] | 1908 | else |
| 1909 | err = rtnetlink_send(skb, net, portid, RTNLGRP_TC, |
| 1910 | n->nlmsg_flags & NLM_F_ECHO); |
Alexander Aring | c35a4ac | 2018-01-18 11:20:50 -0500 | [diff] [blame] | 1911 | if (err < 0) |
| 1912 | NL_SET_ERR_MSG(extack, "Failed to send filter delete notification"); |
Zhike Wang | 5b5f99b | 2019-03-11 03:15:54 -0700 | [diff] [blame] | 1913 | |
Alexander Aring | c35a4ac | 2018-01-18 11:20:50 -0500 | [diff] [blame] | 1914 | return err; |
WANG Cong | 7120371 | 2017-08-07 15:26:50 -0700 | [diff] [blame] | 1915 | } |
| 1916 | |
| 1917 | static void tfilter_notify_chain(struct net *net, struct sk_buff *oskb, |
Jiri Pirko | 7960d1d | 2018-01-17 11:46:51 +0100 | [diff] [blame] | 1918 | struct tcf_block *block, struct Qdisc *q, |
| 1919 | u32 parent, struct nlmsghdr *n, |
Vlad Buslov | 0fca55e | 2020-11-27 17:12:05 +0200 | [diff] [blame] | 1920 | struct tcf_chain *chain, int event) |
WANG Cong | 7120371 | 2017-08-07 15:26:50 -0700 | [diff] [blame] | 1921 | { |
| 1922 | struct tcf_proto *tp; |
| 1923 | |
Vlad Buslov | 0fca55e | 2020-11-27 17:12:05 +0200 | [diff] [blame] | 1924 | for (tp = tcf_get_next_proto(chain, NULL); |
| 1925 | tp; tp = tcf_get_next_proto(chain, tp)) |
Jiri Pirko | 7960d1d | 2018-01-17 11:46:51 +0100 | [diff] [blame] | 1926 | tfilter_notify(net, oskb, n, tp, block, |
Vlad Buslov | 0fca55e | 2020-11-27 17:12:05 +0200 | [diff] [blame] | 1927 | q, parent, NULL, event, false, true); |
WANG Cong | 7120371 | 2017-08-07 15:26:50 -0700 | [diff] [blame] | 1928 | } |
| 1929 | |
Vlad Buslov | 7d5509f | 2019-02-11 10:55:44 +0200 | [diff] [blame] | 1930 | static void tfilter_put(struct tcf_proto *tp, void *fh) |
| 1931 | { |
| 1932 | if (tp->ops->put && fh) |
| 1933 | tp->ops->put(tp, fh); |
| 1934 | } |
| 1935 | |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 1936 | static int tc_new_tfilter(struct sk_buff *skb, struct nlmsghdr *n, |
David Ahern | c21ef3e | 2017-04-16 09:48:24 -0700 | [diff] [blame] | 1937 | struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1938 | { |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 1939 | struct net *net = sock_net(skb->sk); |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 1940 | struct nlattr *tca[TCA_MAX + 1]; |
Cong Wang | 6f96c3c | 2019-10-07 13:26:28 -0700 | [diff] [blame] | 1941 | char name[IFNAMSIZ]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1942 | struct tcmsg *t; |
| 1943 | u32 protocol; |
| 1944 | u32 prio; |
Jiri Pirko | 9d36d9e | 2017-05-17 11:07:57 +0200 | [diff] [blame] | 1945 | bool prio_allocate; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1946 | u32 parent; |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 1947 | u32 chain_index; |
Eric Dumazet | 04c2a47 | 2022-01-31 09:20:18 -0800 | [diff] [blame] | 1948 | struct Qdisc *q; |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 1949 | struct tcf_chain_info chain_info; |
Eric Dumazet | 04c2a47 | 2022-01-31 09:20:18 -0800 | [diff] [blame] | 1950 | struct tcf_chain *chain; |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 1951 | struct tcf_block *block; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1952 | struct tcf_proto *tp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1953 | unsigned long cl; |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 1954 | void *fh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1955 | int err; |
Daniel Borkmann | 628185c | 2016-12-21 18:04:11 +0100 | [diff] [blame] | 1956 | int tp_created; |
Vlad Buslov | 470502d | 2019-02-11 10:55:48 +0200 | [diff] [blame] | 1957 | bool rtnl_held = false; |
Mark Bloch | a5397d6 | 2021-08-10 03:43:05 +0000 | [diff] [blame] | 1958 | u32 flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1959 | |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 1960 | if (!netlink_ns_capable(skb, net->user_ns, CAP_NET_ADMIN)) |
Eric W. Biederman | dfc47ef | 2012-11-16 03:03:00 +0000 | [diff] [blame] | 1961 | return -EPERM; |
Hong zhi guo | de179c8 | 2013-03-25 17:36:33 +0000 | [diff] [blame] | 1962 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1963 | replay: |
Daniel Borkmann | 628185c | 2016-12-21 18:04:11 +0100 | [diff] [blame] | 1964 | tp_created = 0; |
| 1965 | |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 1966 | err = nlmsg_parse_deprecated(n, sizeof(*t), tca, TCA_MAX, |
| 1967 | rtm_tca_policy, extack); |
Hong zhi guo | de179c8 | 2013-03-25 17:36:33 +0000 | [diff] [blame] | 1968 | if (err < 0) |
| 1969 | return err; |
| 1970 | |
David S. Miller | 942b816 | 2012-06-26 21:48:50 -0700 | [diff] [blame] | 1971 | t = nlmsg_data(n); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1972 | protocol = TC_H_MIN(t->tcm_info); |
| 1973 | prio = TC_H_MAJ(t->tcm_info); |
Jiri Pirko | 9d36d9e | 2017-05-17 11:07:57 +0200 | [diff] [blame] | 1974 | prio_allocate = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1975 | parent = t->tcm_parent; |
Vlad Buslov | 4dbfa76 | 2019-02-11 10:55:39 +0200 | [diff] [blame] | 1976 | tp = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1977 | cl = 0; |
Vlad Buslov | 470502d | 2019-02-11 10:55:48 +0200 | [diff] [blame] | 1978 | block = NULL; |
Eric Dumazet | 04c2a47 | 2022-01-31 09:20:18 -0800 | [diff] [blame] | 1979 | q = NULL; |
| 1980 | chain = NULL; |
Mark Bloch | a5397d6 | 2021-08-10 03:43:05 +0000 | [diff] [blame] | 1981 | flags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1982 | |
| 1983 | if (prio == 0) { |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 1984 | /* If no priority is provided by the user, |
| 1985 | * we allocate one. |
| 1986 | */ |
| 1987 | if (n->nlmsg_flags & NLM_F_CREATE) { |
| 1988 | prio = TC_H_MAKE(0x80000000U, 0U); |
| 1989 | prio_allocate = true; |
| 1990 | } else { |
Alexander Aring | c35a4ac | 2018-01-18 11:20:50 -0500 | [diff] [blame] | 1991 | NL_SET_ERR_MSG(extack, "Invalid filter command with priority of zero"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1992 | return -ENOENT; |
Daniel Borkmann | ea7f827 | 2016-06-10 23:10:22 +0200 | [diff] [blame] | 1993 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1994 | } |
| 1995 | |
| 1996 | /* Find head of filter chain. */ |
| 1997 | |
Vlad Buslov | 470502d | 2019-02-11 10:55:48 +0200 | [diff] [blame] | 1998 | err = __tcf_qdisc_find(net, &q, &parent, t->tcm_ifindex, false, extack); |
| 1999 | if (err) |
| 2000 | return err; |
| 2001 | |
Cong Wang | 6f96c3c | 2019-10-07 13:26:28 -0700 | [diff] [blame] | 2002 | if (tcf_proto_check_kind(tca[TCA_KIND], name)) { |
| 2003 | NL_SET_ERR_MSG(extack, "Specified TC filter name too long"); |
| 2004 | err = -EINVAL; |
| 2005 | goto errout; |
| 2006 | } |
| 2007 | |
Vlad Buslov | 470502d | 2019-02-11 10:55:48 +0200 | [diff] [blame] | 2008 | /* Take rtnl mutex if rtnl_held was set to true on previous iteration, |
| 2009 | * block is shared (no qdisc found), qdisc is not unlocked, classifier |
| 2010 | * type is not specified, classifier is not unlocked. |
| 2011 | */ |
| 2012 | if (rtnl_held || |
| 2013 | (q && !(q->ops->cl_ops->flags & QDISC_CLASS_OPS_DOIT_UNLOCKED)) || |
Cong Wang | 6f96c3c | 2019-10-07 13:26:28 -0700 | [diff] [blame] | 2014 | !tcf_proto_is_unlocked(name)) { |
Vlad Buslov | 470502d | 2019-02-11 10:55:48 +0200 | [diff] [blame] | 2015 | rtnl_held = true; |
| 2016 | rtnl_lock(); |
| 2017 | } |
| 2018 | |
| 2019 | err = __tcf_qdisc_cl_find(q, parent, &cl, t->tcm_ifindex, extack); |
| 2020 | if (err) |
| 2021 | goto errout; |
| 2022 | |
| 2023 | block = __tcf_block_find(net, q, cl, t->tcm_ifindex, t->tcm_block_index, |
| 2024 | extack); |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2025 | if (IS_ERR(block)) { |
| 2026 | err = PTR_ERR(block); |
| 2027 | goto errout; |
Jiri Pirko | 6bb16e7 | 2017-02-09 14:38:58 +0100 | [diff] [blame] | 2028 | } |
Cong Wang | a7df487 | 2020-04-30 20:53:49 -0700 | [diff] [blame] | 2029 | block->classid = parent; |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 2030 | |
| 2031 | chain_index = tca[TCA_CHAIN] ? nla_get_u32(tca[TCA_CHAIN]) : 0; |
| 2032 | if (chain_index > TC_ACT_EXT_VAL_MASK) { |
Alexander Aring | c35a4ac | 2018-01-18 11:20:50 -0500 | [diff] [blame] | 2033 | NL_SET_ERR_MSG(extack, "Specified chain index exceeds upper limit"); |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 2034 | err = -EINVAL; |
| 2035 | goto errout; |
| 2036 | } |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2037 | chain = tcf_chain_get(block, chain_index, true); |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 2038 | if (!chain) { |
Jiri Pirko | d5ed72a | 2018-08-27 20:58:43 +0200 | [diff] [blame] | 2039 | NL_SET_ERR_MSG(extack, "Cannot create specified filter chain"); |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2040 | err = -ENOMEM; |
Daniel Borkmann | ea7f827 | 2016-06-10 23:10:22 +0200 | [diff] [blame] | 2041 | goto errout; |
| 2042 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2043 | |
Vlad Buslov | ed76f5e | 2019-02-11 10:55:38 +0200 | [diff] [blame] | 2044 | mutex_lock(&chain->filter_chain_lock); |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 2045 | tp = tcf_chain_tp_find(chain, &chain_info, protocol, |
| 2046 | prio, prio_allocate); |
| 2047 | if (IS_ERR(tp)) { |
Alexander Aring | c35a4ac | 2018-01-18 11:20:50 -0500 | [diff] [blame] | 2048 | NL_SET_ERR_MSG(extack, "Filter with specified priority/protocol not found"); |
Jiri Pirko | 2190d1d | 2017-05-17 11:07:59 +0200 | [diff] [blame] | 2049 | err = PTR_ERR(tp); |
Vlad Buslov | ed76f5e | 2019-02-11 10:55:38 +0200 | [diff] [blame] | 2050 | goto errout_locked; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2051 | } |
| 2052 | |
| 2053 | if (tp == NULL) { |
Vlad Buslov | 8b64678 | 2019-02-11 10:55:41 +0200 | [diff] [blame] | 2054 | struct tcf_proto *tp_new = NULL; |
| 2055 | |
Vlad Buslov | 726d0612 | 2019-02-11 10:55:42 +0200 | [diff] [blame] | 2056 | if (chain->flushing) { |
| 2057 | err = -EAGAIN; |
| 2058 | goto errout_locked; |
| 2059 | } |
| 2060 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2061 | /* Proto-tcf does not exist, create new one */ |
| 2062 | |
Jiri Pirko | 6bb16e7 | 2017-02-09 14:38:58 +0100 | [diff] [blame] | 2063 | if (tca[TCA_KIND] == NULL || !protocol) { |
Alexander Aring | c35a4ac | 2018-01-18 11:20:50 -0500 | [diff] [blame] | 2064 | NL_SET_ERR_MSG(extack, "Filter kind and protocol must be specified"); |
Jiri Pirko | 6bb16e7 | 2017-02-09 14:38:58 +0100 | [diff] [blame] | 2065 | err = -EINVAL; |
Vlad Buslov | ed76f5e | 2019-02-11 10:55:38 +0200 | [diff] [blame] | 2066 | goto errout_locked; |
Jiri Pirko | 6bb16e7 | 2017-02-09 14:38:58 +0100 | [diff] [blame] | 2067 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2068 | |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2069 | if (!(n->nlmsg_flags & NLM_F_CREATE)) { |
Alexander Aring | c35a4ac | 2018-01-18 11:20:50 -0500 | [diff] [blame] | 2070 | NL_SET_ERR_MSG(extack, "Need both RTM_NEWTFILTER and NLM_F_CREATE to create a new filter"); |
Jiri Pirko | 6bb16e7 | 2017-02-09 14:38:58 +0100 | [diff] [blame] | 2071 | err = -ENOENT; |
Vlad Buslov | ed76f5e | 2019-02-11 10:55:38 +0200 | [diff] [blame] | 2072 | goto errout_locked; |
Jiri Pirko | 6bb16e7 | 2017-02-09 14:38:58 +0100 | [diff] [blame] | 2073 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2074 | |
Jiri Pirko | 9d36d9e | 2017-05-17 11:07:57 +0200 | [diff] [blame] | 2075 | if (prio_allocate) |
Vlad Buslov | ed76f5e | 2019-02-11 10:55:38 +0200 | [diff] [blame] | 2076 | prio = tcf_auto_prio(tcf_chain_tp_prev(chain, |
| 2077 | &chain_info)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2078 | |
Vlad Buslov | ed76f5e | 2019-02-11 10:55:38 +0200 | [diff] [blame] | 2079 | mutex_unlock(&chain->filter_chain_lock); |
Eric Dumazet | 36d79af | 2020-01-21 11:02:20 -0800 | [diff] [blame] | 2080 | tp_new = tcf_proto_create(name, protocol, prio, chain, |
| 2081 | rtnl_held, extack); |
Vlad Buslov | 8b64678 | 2019-02-11 10:55:41 +0200 | [diff] [blame] | 2082 | if (IS_ERR(tp_new)) { |
| 2083 | err = PTR_ERR(tp_new); |
Vlad Buslov | 726d0612 | 2019-02-11 10:55:42 +0200 | [diff] [blame] | 2084 | goto errout_tp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2085 | } |
Vlad Buslov | ed76f5e | 2019-02-11 10:55:38 +0200 | [diff] [blame] | 2086 | |
Minoru Usui | 12186be | 2009-06-02 02:17:34 -0700 | [diff] [blame] | 2087 | tp_created = 1; |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 2088 | tp = tcf_chain_tp_insert_unique(chain, tp_new, protocol, prio, |
| 2089 | rtnl_held); |
Vlad Buslov | 726d0612 | 2019-02-11 10:55:42 +0200 | [diff] [blame] | 2090 | if (IS_ERR(tp)) { |
| 2091 | err = PTR_ERR(tp); |
| 2092 | goto errout_tp; |
| 2093 | } |
Vlad Buslov | ed76f5e | 2019-02-11 10:55:38 +0200 | [diff] [blame] | 2094 | } else { |
| 2095 | mutex_unlock(&chain->filter_chain_lock); |
Jiri Pirko | 6bb16e7 | 2017-02-09 14:38:58 +0100 | [diff] [blame] | 2096 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2097 | |
Vlad Buslov | 8b64678 | 2019-02-11 10:55:41 +0200 | [diff] [blame] | 2098 | if (tca[TCA_KIND] && nla_strcmp(tca[TCA_KIND], tp->ops->kind)) { |
| 2099 | NL_SET_ERR_MSG(extack, "Specified filter kind does not match existing one"); |
| 2100 | err = -EINVAL; |
| 2101 | goto errout; |
| 2102 | } |
| 2103 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2104 | fh = tp->ops->get(tp, t->tcm_handle); |
| 2105 | |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 2106 | if (!fh) { |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2107 | if (!(n->nlmsg_flags & NLM_F_CREATE)) { |
Alexander Aring | c35a4ac | 2018-01-18 11:20:50 -0500 | [diff] [blame] | 2108 | NL_SET_ERR_MSG(extack, "Need both RTM_NEWTFILTER and NLM_F_CREATE to create a new filter"); |
Jiri Pirko | 6bb16e7 | 2017-02-09 14:38:58 +0100 | [diff] [blame] | 2109 | err = -ENOENT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2110 | goto errout; |
Jiri Pirko | 6bb16e7 | 2017-02-09 14:38:58 +0100 | [diff] [blame] | 2111 | } |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2112 | } else if (n->nlmsg_flags & NLM_F_EXCL) { |
Vlad Buslov | 7d5509f | 2019-02-11 10:55:44 +0200 | [diff] [blame] | 2113 | tfilter_put(tp, fh); |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2114 | NL_SET_ERR_MSG(extack, "Filter already exists"); |
| 2115 | err = -EEXIST; |
| 2116 | goto errout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2117 | } |
| 2118 | |
Jiri Pirko | 9f407f1 | 2018-07-23 09:23:07 +0200 | [diff] [blame] | 2119 | if (chain->tmplt_ops && chain->tmplt_ops != tp->ops) { |
| 2120 | NL_SET_ERR_MSG(extack, "Chain template is set to a different filter kind"); |
| 2121 | err = -EINVAL; |
| 2122 | goto errout; |
| 2123 | } |
| 2124 | |
Cong Wang | 695176b | 2021-07-29 16:12:14 -0700 | [diff] [blame] | 2125 | if (!(n->nlmsg_flags & NLM_F_CREATE)) |
| 2126 | flags |= TCA_ACT_FLAGS_REPLACE; |
| 2127 | if (!rtnl_held) |
| 2128 | flags |= TCA_ACT_FLAGS_NO_RTNL; |
Cong Wang | 2f7ef2f | 2014-04-25 13:54:06 -0700 | [diff] [blame] | 2129 | err = tp->ops->change(net, skb, tp, cl, t->tcm_handle, tca, &fh, |
Cong Wang | 695176b | 2021-07-29 16:12:14 -0700 | [diff] [blame] | 2130 | flags, extack); |
Vlad Buslov | 7d5509f | 2019-02-11 10:55:44 +0200 | [diff] [blame] | 2131 | if (err == 0) { |
Jiri Pirko | 7960d1d | 2018-01-17 11:46:51 +0100 | [diff] [blame] | 2132 | tfilter_notify(net, skb, n, tp, block, q, parent, fh, |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 2133 | RTM_NEWTFILTER, false, rtnl_held); |
Vlad Buslov | 7d5509f | 2019-02-11 10:55:44 +0200 | [diff] [blame] | 2134 | tfilter_put(tp, fh); |
Vlad Buslov | 503d81d | 2019-07-21 17:44:12 +0300 | [diff] [blame] | 2135 | /* q pointer is NULL for shared blocks */ |
| 2136 | if (q) |
| 2137 | q->flags &= ~TCQ_F_CAN_BYPASS; |
Vlad Buslov | 7d5509f | 2019-02-11 10:55:44 +0200 | [diff] [blame] | 2138 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2139 | |
| 2140 | errout: |
Vlad Buslov | 8b64678 | 2019-02-11 10:55:41 +0200 | [diff] [blame] | 2141 | if (err && tp_created) |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 2142 | tcf_chain_tp_delete_empty(chain, tp, rtnl_held, NULL); |
Vlad Buslov | 726d0612 | 2019-02-11 10:55:42 +0200 | [diff] [blame] | 2143 | errout_tp: |
Vlad Buslov | 4dbfa76 | 2019-02-11 10:55:39 +0200 | [diff] [blame] | 2144 | if (chain) { |
| 2145 | if (tp && !IS_ERR(tp)) |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 2146 | tcf_proto_put(tp, rtnl_held, NULL); |
Vlad Buslov | 4dbfa76 | 2019-02-11 10:55:39 +0200 | [diff] [blame] | 2147 | if (!tp_created) |
| 2148 | tcf_chain_put(chain); |
| 2149 | } |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 2150 | tcf_block_release(q, block, rtnl_held); |
Vlad Buslov | 470502d | 2019-02-11 10:55:48 +0200 | [diff] [blame] | 2151 | |
| 2152 | if (rtnl_held) |
| 2153 | rtnl_unlock(); |
| 2154 | |
| 2155 | if (err == -EAGAIN) { |
| 2156 | /* Take rtnl lock in case EAGAIN is caused by concurrent flush |
| 2157 | * of target chain. |
| 2158 | */ |
| 2159 | rtnl_held = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2160 | /* Replay the request. */ |
| 2161 | goto replay; |
Vlad Buslov | 470502d | 2019-02-11 10:55:48 +0200 | [diff] [blame] | 2162 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2163 | return err; |
Vlad Buslov | ed76f5e | 2019-02-11 10:55:38 +0200 | [diff] [blame] | 2164 | |
| 2165 | errout_locked: |
| 2166 | mutex_unlock(&chain->filter_chain_lock); |
| 2167 | goto errout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2168 | } |
| 2169 | |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2170 | static int tc_del_tfilter(struct sk_buff *skb, struct nlmsghdr *n, |
| 2171 | struct netlink_ext_ack *extack) |
| 2172 | { |
| 2173 | struct net *net = sock_net(skb->sk); |
| 2174 | struct nlattr *tca[TCA_MAX + 1]; |
Cong Wang | 6f96c3c | 2019-10-07 13:26:28 -0700 | [diff] [blame] | 2175 | char name[IFNAMSIZ]; |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2176 | struct tcmsg *t; |
| 2177 | u32 protocol; |
| 2178 | u32 prio; |
| 2179 | u32 parent; |
| 2180 | u32 chain_index; |
| 2181 | struct Qdisc *q = NULL; |
| 2182 | struct tcf_chain_info chain_info; |
| 2183 | struct tcf_chain *chain = NULL; |
Vlad Buslov | 470502d | 2019-02-11 10:55:48 +0200 | [diff] [blame] | 2184 | struct tcf_block *block = NULL; |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2185 | struct tcf_proto *tp = NULL; |
| 2186 | unsigned long cl = 0; |
| 2187 | void *fh = NULL; |
| 2188 | int err; |
Vlad Buslov | 470502d | 2019-02-11 10:55:48 +0200 | [diff] [blame] | 2189 | bool rtnl_held = false; |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2190 | |
| 2191 | if (!netlink_ns_capable(skb, net->user_ns, CAP_NET_ADMIN)) |
| 2192 | return -EPERM; |
| 2193 | |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 2194 | err = nlmsg_parse_deprecated(n, sizeof(*t), tca, TCA_MAX, |
| 2195 | rtm_tca_policy, extack); |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2196 | if (err < 0) |
| 2197 | return err; |
| 2198 | |
| 2199 | t = nlmsg_data(n); |
| 2200 | protocol = TC_H_MIN(t->tcm_info); |
| 2201 | prio = TC_H_MAJ(t->tcm_info); |
| 2202 | parent = t->tcm_parent; |
| 2203 | |
| 2204 | if (prio == 0 && (protocol || t->tcm_handle || tca[TCA_KIND])) { |
| 2205 | NL_SET_ERR_MSG(extack, "Cannot flush filters with protocol, handle or kind set"); |
| 2206 | return -ENOENT; |
| 2207 | } |
| 2208 | |
| 2209 | /* Find head of filter chain. */ |
| 2210 | |
Vlad Buslov | 470502d | 2019-02-11 10:55:48 +0200 | [diff] [blame] | 2211 | err = __tcf_qdisc_find(net, &q, &parent, t->tcm_ifindex, false, extack); |
| 2212 | if (err) |
| 2213 | return err; |
| 2214 | |
Cong Wang | 6f96c3c | 2019-10-07 13:26:28 -0700 | [diff] [blame] | 2215 | if (tcf_proto_check_kind(tca[TCA_KIND], name)) { |
| 2216 | NL_SET_ERR_MSG(extack, "Specified TC filter name too long"); |
| 2217 | err = -EINVAL; |
| 2218 | goto errout; |
| 2219 | } |
Vlad Buslov | 470502d | 2019-02-11 10:55:48 +0200 | [diff] [blame] | 2220 | /* Take rtnl mutex if flushing whole chain, block is shared (no qdisc |
| 2221 | * found), qdisc is not unlocked, classifier type is not specified, |
| 2222 | * classifier is not unlocked. |
| 2223 | */ |
| 2224 | if (!prio || |
| 2225 | (q && !(q->ops->cl_ops->flags & QDISC_CLASS_OPS_DOIT_UNLOCKED)) || |
Cong Wang | 6f96c3c | 2019-10-07 13:26:28 -0700 | [diff] [blame] | 2226 | !tcf_proto_is_unlocked(name)) { |
Vlad Buslov | 470502d | 2019-02-11 10:55:48 +0200 | [diff] [blame] | 2227 | rtnl_held = true; |
| 2228 | rtnl_lock(); |
| 2229 | } |
| 2230 | |
| 2231 | err = __tcf_qdisc_cl_find(q, parent, &cl, t->tcm_ifindex, extack); |
| 2232 | if (err) |
| 2233 | goto errout; |
| 2234 | |
| 2235 | block = __tcf_block_find(net, q, cl, t->tcm_ifindex, t->tcm_block_index, |
| 2236 | extack); |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2237 | if (IS_ERR(block)) { |
| 2238 | err = PTR_ERR(block); |
| 2239 | goto errout; |
| 2240 | } |
| 2241 | |
| 2242 | chain_index = tca[TCA_CHAIN] ? nla_get_u32(tca[TCA_CHAIN]) : 0; |
| 2243 | if (chain_index > TC_ACT_EXT_VAL_MASK) { |
| 2244 | NL_SET_ERR_MSG(extack, "Specified chain index exceeds upper limit"); |
| 2245 | err = -EINVAL; |
| 2246 | goto errout; |
| 2247 | } |
| 2248 | chain = tcf_chain_get(block, chain_index, false); |
| 2249 | if (!chain) { |
Jiri Pirko | 5ca8a25 | 2018-08-03 11:08:47 +0200 | [diff] [blame] | 2250 | /* User requested flush on non-existent chain. Nothing to do, |
| 2251 | * so just return success. |
| 2252 | */ |
| 2253 | if (prio == 0) { |
| 2254 | err = 0; |
| 2255 | goto errout; |
| 2256 | } |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2257 | NL_SET_ERR_MSG(extack, "Cannot find specified filter chain"); |
Jiri Pirko | b7b4247 | 2018-08-27 20:58:44 +0200 | [diff] [blame] | 2258 | err = -ENOENT; |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2259 | goto errout; |
| 2260 | } |
| 2261 | |
| 2262 | if (prio == 0) { |
| 2263 | tfilter_notify_chain(net, skb, block, q, parent, n, |
Vlad Buslov | 0fca55e | 2020-11-27 17:12:05 +0200 | [diff] [blame] | 2264 | chain, RTM_DELTFILTER); |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 2265 | tcf_chain_flush(chain, rtnl_held); |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2266 | err = 0; |
| 2267 | goto errout; |
| 2268 | } |
| 2269 | |
Vlad Buslov | ed76f5e | 2019-02-11 10:55:38 +0200 | [diff] [blame] | 2270 | mutex_lock(&chain->filter_chain_lock); |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2271 | tp = tcf_chain_tp_find(chain, &chain_info, protocol, |
| 2272 | prio, false); |
| 2273 | if (!tp || IS_ERR(tp)) { |
| 2274 | NL_SET_ERR_MSG(extack, "Filter with specified priority/protocol not found"); |
Vlad Buslov | 0e39903 | 2018-06-04 18:32:23 +0300 | [diff] [blame] | 2275 | err = tp ? PTR_ERR(tp) : -ENOENT; |
Vlad Buslov | ed76f5e | 2019-02-11 10:55:38 +0200 | [diff] [blame] | 2276 | goto errout_locked; |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2277 | } else if (tca[TCA_KIND] && nla_strcmp(tca[TCA_KIND], tp->ops->kind)) { |
| 2278 | NL_SET_ERR_MSG(extack, "Specified filter kind does not match existing one"); |
| 2279 | err = -EINVAL; |
Vlad Buslov | ed76f5e | 2019-02-11 10:55:38 +0200 | [diff] [blame] | 2280 | goto errout_locked; |
| 2281 | } else if (t->tcm_handle == 0) { |
John Hurley | 59eb87c | 2019-11-02 14:17:47 +0000 | [diff] [blame] | 2282 | tcf_proto_signal_destroying(chain, tp); |
Vlad Buslov | ed76f5e | 2019-02-11 10:55:38 +0200 | [diff] [blame] | 2283 | tcf_chain_tp_remove(chain, &chain_info, tp); |
| 2284 | mutex_unlock(&chain->filter_chain_lock); |
| 2285 | |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 2286 | tcf_proto_put(tp, rtnl_held, NULL); |
Vlad Buslov | ed76f5e | 2019-02-11 10:55:38 +0200 | [diff] [blame] | 2287 | tfilter_notify(net, skb, n, tp, block, q, parent, fh, |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 2288 | RTM_DELTFILTER, false, rtnl_held); |
Vlad Buslov | ed76f5e | 2019-02-11 10:55:38 +0200 | [diff] [blame] | 2289 | err = 0; |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2290 | goto errout; |
| 2291 | } |
Vlad Buslov | ed76f5e | 2019-02-11 10:55:38 +0200 | [diff] [blame] | 2292 | mutex_unlock(&chain->filter_chain_lock); |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2293 | |
| 2294 | fh = tp->ops->get(tp, t->tcm_handle); |
| 2295 | |
| 2296 | if (!fh) { |
Vlad Buslov | ed76f5e | 2019-02-11 10:55:38 +0200 | [diff] [blame] | 2297 | NL_SET_ERR_MSG(extack, "Specified filter handle not found"); |
| 2298 | err = -ENOENT; |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2299 | } else { |
| 2300 | bool last; |
| 2301 | |
| 2302 | err = tfilter_del_notify(net, skb, n, tp, block, |
| 2303 | q, parent, fh, false, &last, |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 2304 | rtnl_held, extack); |
| 2305 | |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2306 | if (err) |
| 2307 | goto errout; |
Vlad Buslov | 8b64678 | 2019-02-11 10:55:41 +0200 | [diff] [blame] | 2308 | if (last) |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 2309 | tcf_chain_tp_delete_empty(chain, tp, rtnl_held, extack); |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2310 | } |
| 2311 | |
| 2312 | errout: |
Vlad Buslov | 4dbfa76 | 2019-02-11 10:55:39 +0200 | [diff] [blame] | 2313 | if (chain) { |
| 2314 | if (tp && !IS_ERR(tp)) |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 2315 | tcf_proto_put(tp, rtnl_held, NULL); |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2316 | tcf_chain_put(chain); |
Vlad Buslov | 4dbfa76 | 2019-02-11 10:55:39 +0200 | [diff] [blame] | 2317 | } |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 2318 | tcf_block_release(q, block, rtnl_held); |
Vlad Buslov | 470502d | 2019-02-11 10:55:48 +0200 | [diff] [blame] | 2319 | |
| 2320 | if (rtnl_held) |
| 2321 | rtnl_unlock(); |
| 2322 | |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2323 | return err; |
Vlad Buslov | ed76f5e | 2019-02-11 10:55:38 +0200 | [diff] [blame] | 2324 | |
| 2325 | errout_locked: |
| 2326 | mutex_unlock(&chain->filter_chain_lock); |
| 2327 | goto errout; |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2328 | } |
| 2329 | |
| 2330 | static int tc_get_tfilter(struct sk_buff *skb, struct nlmsghdr *n, |
| 2331 | struct netlink_ext_ack *extack) |
| 2332 | { |
| 2333 | struct net *net = sock_net(skb->sk); |
| 2334 | struct nlattr *tca[TCA_MAX + 1]; |
Cong Wang | 6f96c3c | 2019-10-07 13:26:28 -0700 | [diff] [blame] | 2335 | char name[IFNAMSIZ]; |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2336 | struct tcmsg *t; |
| 2337 | u32 protocol; |
| 2338 | u32 prio; |
| 2339 | u32 parent; |
| 2340 | u32 chain_index; |
| 2341 | struct Qdisc *q = NULL; |
| 2342 | struct tcf_chain_info chain_info; |
| 2343 | struct tcf_chain *chain = NULL; |
Vlad Buslov | 470502d | 2019-02-11 10:55:48 +0200 | [diff] [blame] | 2344 | struct tcf_block *block = NULL; |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2345 | struct tcf_proto *tp = NULL; |
| 2346 | unsigned long cl = 0; |
| 2347 | void *fh = NULL; |
| 2348 | int err; |
Vlad Buslov | 470502d | 2019-02-11 10:55:48 +0200 | [diff] [blame] | 2349 | bool rtnl_held = false; |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2350 | |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 2351 | err = nlmsg_parse_deprecated(n, sizeof(*t), tca, TCA_MAX, |
| 2352 | rtm_tca_policy, extack); |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2353 | if (err < 0) |
| 2354 | return err; |
| 2355 | |
| 2356 | t = nlmsg_data(n); |
| 2357 | protocol = TC_H_MIN(t->tcm_info); |
| 2358 | prio = TC_H_MAJ(t->tcm_info); |
| 2359 | parent = t->tcm_parent; |
| 2360 | |
| 2361 | if (prio == 0) { |
| 2362 | NL_SET_ERR_MSG(extack, "Invalid filter command with priority of zero"); |
| 2363 | return -ENOENT; |
| 2364 | } |
| 2365 | |
| 2366 | /* Find head of filter chain. */ |
| 2367 | |
Vlad Buslov | 470502d | 2019-02-11 10:55:48 +0200 | [diff] [blame] | 2368 | err = __tcf_qdisc_find(net, &q, &parent, t->tcm_ifindex, false, extack); |
| 2369 | if (err) |
| 2370 | return err; |
| 2371 | |
Cong Wang | 6f96c3c | 2019-10-07 13:26:28 -0700 | [diff] [blame] | 2372 | if (tcf_proto_check_kind(tca[TCA_KIND], name)) { |
| 2373 | NL_SET_ERR_MSG(extack, "Specified TC filter name too long"); |
| 2374 | err = -EINVAL; |
| 2375 | goto errout; |
| 2376 | } |
Vlad Buslov | 470502d | 2019-02-11 10:55:48 +0200 | [diff] [blame] | 2377 | /* Take rtnl mutex if block is shared (no qdisc found), qdisc is not |
| 2378 | * unlocked, classifier type is not specified, classifier is not |
| 2379 | * unlocked. |
| 2380 | */ |
| 2381 | if ((q && !(q->ops->cl_ops->flags & QDISC_CLASS_OPS_DOIT_UNLOCKED)) || |
Cong Wang | 6f96c3c | 2019-10-07 13:26:28 -0700 | [diff] [blame] | 2382 | !tcf_proto_is_unlocked(name)) { |
Vlad Buslov | 470502d | 2019-02-11 10:55:48 +0200 | [diff] [blame] | 2383 | rtnl_held = true; |
| 2384 | rtnl_lock(); |
| 2385 | } |
| 2386 | |
| 2387 | err = __tcf_qdisc_cl_find(q, parent, &cl, t->tcm_ifindex, extack); |
| 2388 | if (err) |
| 2389 | goto errout; |
| 2390 | |
| 2391 | block = __tcf_block_find(net, q, cl, t->tcm_ifindex, t->tcm_block_index, |
| 2392 | extack); |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2393 | if (IS_ERR(block)) { |
| 2394 | err = PTR_ERR(block); |
| 2395 | goto errout; |
| 2396 | } |
| 2397 | |
| 2398 | chain_index = tca[TCA_CHAIN] ? nla_get_u32(tca[TCA_CHAIN]) : 0; |
| 2399 | if (chain_index > TC_ACT_EXT_VAL_MASK) { |
| 2400 | NL_SET_ERR_MSG(extack, "Specified chain index exceeds upper limit"); |
| 2401 | err = -EINVAL; |
| 2402 | goto errout; |
| 2403 | } |
| 2404 | chain = tcf_chain_get(block, chain_index, false); |
| 2405 | if (!chain) { |
| 2406 | NL_SET_ERR_MSG(extack, "Cannot find specified filter chain"); |
| 2407 | err = -EINVAL; |
| 2408 | goto errout; |
| 2409 | } |
| 2410 | |
Vlad Buslov | ed76f5e | 2019-02-11 10:55:38 +0200 | [diff] [blame] | 2411 | mutex_lock(&chain->filter_chain_lock); |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2412 | tp = tcf_chain_tp_find(chain, &chain_info, protocol, |
| 2413 | prio, false); |
Vlad Buslov | ed76f5e | 2019-02-11 10:55:38 +0200 | [diff] [blame] | 2414 | mutex_unlock(&chain->filter_chain_lock); |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2415 | if (!tp || IS_ERR(tp)) { |
| 2416 | NL_SET_ERR_MSG(extack, "Filter with specified priority/protocol not found"); |
Vlad Buslov | 0e39903 | 2018-06-04 18:32:23 +0300 | [diff] [blame] | 2417 | err = tp ? PTR_ERR(tp) : -ENOENT; |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2418 | goto errout; |
| 2419 | } else if (tca[TCA_KIND] && nla_strcmp(tca[TCA_KIND], tp->ops->kind)) { |
| 2420 | NL_SET_ERR_MSG(extack, "Specified filter kind does not match existing one"); |
| 2421 | err = -EINVAL; |
| 2422 | goto errout; |
| 2423 | } |
| 2424 | |
| 2425 | fh = tp->ops->get(tp, t->tcm_handle); |
| 2426 | |
| 2427 | if (!fh) { |
| 2428 | NL_SET_ERR_MSG(extack, "Specified filter handle not found"); |
| 2429 | err = -ENOENT; |
| 2430 | } else { |
| 2431 | err = tfilter_notify(net, skb, n, tp, block, q, parent, |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 2432 | fh, RTM_NEWTFILTER, true, rtnl_held); |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2433 | if (err < 0) |
| 2434 | NL_SET_ERR_MSG(extack, "Failed to send filter notify message"); |
| 2435 | } |
| 2436 | |
Vlad Buslov | 7d5509f | 2019-02-11 10:55:44 +0200 | [diff] [blame] | 2437 | tfilter_put(tp, fh); |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2438 | errout: |
Vlad Buslov | 4dbfa76 | 2019-02-11 10:55:39 +0200 | [diff] [blame] | 2439 | if (chain) { |
| 2440 | if (tp && !IS_ERR(tp)) |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 2441 | tcf_proto_put(tp, rtnl_held, NULL); |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2442 | tcf_chain_put(chain); |
Vlad Buslov | 4dbfa76 | 2019-02-11 10:55:39 +0200 | [diff] [blame] | 2443 | } |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 2444 | tcf_block_release(q, block, rtnl_held); |
Vlad Buslov | 470502d | 2019-02-11 10:55:48 +0200 | [diff] [blame] | 2445 | |
| 2446 | if (rtnl_held) |
| 2447 | rtnl_unlock(); |
| 2448 | |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 2449 | return err; |
| 2450 | } |
| 2451 | |
Stephen Hemminger | aa767bf | 2008-01-21 02:26:41 -0800 | [diff] [blame] | 2452 | struct tcf_dump_args { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2453 | struct tcf_walker w; |
| 2454 | struct sk_buff *skb; |
| 2455 | struct netlink_callback *cb; |
Jiri Pirko | 7960d1d | 2018-01-17 11:46:51 +0100 | [diff] [blame] | 2456 | struct tcf_block *block; |
Jiri Pirko | a10fa20 | 2017-10-13 14:01:05 +0200 | [diff] [blame] | 2457 | struct Qdisc *q; |
| 2458 | u32 parent; |
Vlad Buslov | f8ab180 | 2020-05-15 14:40:11 +0300 | [diff] [blame] | 2459 | bool terse_dump; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2460 | }; |
| 2461 | |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 2462 | static int tcf_node_dump(struct tcf_proto *tp, void *n, struct tcf_walker *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2463 | { |
Stephen Hemminger | aa767bf | 2008-01-21 02:26:41 -0800 | [diff] [blame] | 2464 | struct tcf_dump_args *a = (void *)arg; |
WANG Cong | 832d1d5 | 2014-01-09 16:14:01 -0800 | [diff] [blame] | 2465 | struct net *net = sock_net(a->skb->sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2466 | |
Jiri Pirko | 7960d1d | 2018-01-17 11:46:51 +0100 | [diff] [blame] | 2467 | return tcf_fill_node(net, a->skb, tp, a->block, a->q, a->parent, |
Jiri Pirko | a10fa20 | 2017-10-13 14:01:05 +0200 | [diff] [blame] | 2468 | n, NETLINK_CB(a->cb->skb).portid, |
Jamal Hadi Salim | 5a7a555 | 2016-09-18 08:45:33 -0400 | [diff] [blame] | 2469 | a->cb->nlh->nlmsg_seq, NLM_F_MULTI, |
Vlad Buslov | f8ab180 | 2020-05-15 14:40:11 +0300 | [diff] [blame] | 2470 | RTM_NEWTFILTER, a->terse_dump, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2471 | } |
| 2472 | |
Jiri Pirko | a10fa20 | 2017-10-13 14:01:05 +0200 | [diff] [blame] | 2473 | static bool tcf_chain_dump(struct tcf_chain *chain, struct Qdisc *q, u32 parent, |
| 2474 | struct sk_buff *skb, struct netlink_callback *cb, |
Vlad Buslov | f8ab180 | 2020-05-15 14:40:11 +0300 | [diff] [blame] | 2475 | long index_start, long *p_index, bool terse) |
Jiri Pirko | acb31fa | 2017-05-17 11:08:00 +0200 | [diff] [blame] | 2476 | { |
| 2477 | struct net *net = sock_net(skb->sk); |
Jiri Pirko | 7960d1d | 2018-01-17 11:46:51 +0100 | [diff] [blame] | 2478 | struct tcf_block *block = chain->block; |
Jiri Pirko | acb31fa | 2017-05-17 11:08:00 +0200 | [diff] [blame] | 2479 | struct tcmsg *tcm = nlmsg_data(cb->nlh); |
Vlad Buslov | fe2923a | 2019-02-11 10:55:40 +0200 | [diff] [blame] | 2480 | struct tcf_proto *tp, *tp_prev; |
Jiri Pirko | acb31fa | 2017-05-17 11:08:00 +0200 | [diff] [blame] | 2481 | struct tcf_dump_args arg; |
Jiri Pirko | acb31fa | 2017-05-17 11:08:00 +0200 | [diff] [blame] | 2482 | |
Vlad Buslov | fe2923a | 2019-02-11 10:55:40 +0200 | [diff] [blame] | 2483 | for (tp = __tcf_get_next_proto(chain, NULL); |
| 2484 | tp; |
| 2485 | tp_prev = tp, |
| 2486 | tp = __tcf_get_next_proto(chain, tp), |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 2487 | tcf_proto_put(tp_prev, true, NULL), |
Vlad Buslov | fe2923a | 2019-02-11 10:55:40 +0200 | [diff] [blame] | 2488 | (*p_index)++) { |
Jiri Pirko | acb31fa | 2017-05-17 11:08:00 +0200 | [diff] [blame] | 2489 | if (*p_index < index_start) |
| 2490 | continue; |
| 2491 | if (TC_H_MAJ(tcm->tcm_info) && |
| 2492 | TC_H_MAJ(tcm->tcm_info) != tp->prio) |
| 2493 | continue; |
| 2494 | if (TC_H_MIN(tcm->tcm_info) && |
| 2495 | TC_H_MIN(tcm->tcm_info) != tp->protocol) |
| 2496 | continue; |
| 2497 | if (*p_index > index_start) |
| 2498 | memset(&cb->args[1], 0, |
| 2499 | sizeof(cb->args) - sizeof(cb->args[0])); |
| 2500 | if (cb->args[1] == 0) { |
YueHaibing | 5318918 | 2018-07-17 20:58:14 +0800 | [diff] [blame] | 2501 | if (tcf_fill_node(net, skb, tp, block, q, parent, NULL, |
Jiri Pirko | acb31fa | 2017-05-17 11:08:00 +0200 | [diff] [blame] | 2502 | NETLINK_CB(cb->skb).portid, |
| 2503 | cb->nlh->nlmsg_seq, NLM_F_MULTI, |
Vlad Buslov | f8ab180 | 2020-05-15 14:40:11 +0300 | [diff] [blame] | 2504 | RTM_NEWTFILTER, false, true) <= 0) |
Vlad Buslov | fe2923a | 2019-02-11 10:55:40 +0200 | [diff] [blame] | 2505 | goto errout; |
Jiri Pirko | acb31fa | 2017-05-17 11:08:00 +0200 | [diff] [blame] | 2506 | cb->args[1] = 1; |
| 2507 | } |
| 2508 | if (!tp->ops->walk) |
| 2509 | continue; |
| 2510 | arg.w.fn = tcf_node_dump; |
| 2511 | arg.skb = skb; |
| 2512 | arg.cb = cb; |
Jiri Pirko | 7960d1d | 2018-01-17 11:46:51 +0100 | [diff] [blame] | 2513 | arg.block = block; |
Jiri Pirko | a10fa20 | 2017-10-13 14:01:05 +0200 | [diff] [blame] | 2514 | arg.q = q; |
| 2515 | arg.parent = parent; |
Jiri Pirko | acb31fa | 2017-05-17 11:08:00 +0200 | [diff] [blame] | 2516 | arg.w.stop = 0; |
| 2517 | arg.w.skip = cb->args[1] - 1; |
| 2518 | arg.w.count = 0; |
Vlad Buslov | 01683a1 | 2018-07-09 13:29:11 +0300 | [diff] [blame] | 2519 | arg.w.cookie = cb->args[2]; |
Vlad Buslov | f8ab180 | 2020-05-15 14:40:11 +0300 | [diff] [blame] | 2520 | arg.terse_dump = terse; |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 2521 | tp->ops->walk(tp, &arg.w, true); |
Vlad Buslov | 01683a1 | 2018-07-09 13:29:11 +0300 | [diff] [blame] | 2522 | cb->args[2] = arg.w.cookie; |
Jiri Pirko | acb31fa | 2017-05-17 11:08:00 +0200 | [diff] [blame] | 2523 | cb->args[1] = arg.w.count + 1; |
| 2524 | if (arg.w.stop) |
Vlad Buslov | fe2923a | 2019-02-11 10:55:40 +0200 | [diff] [blame] | 2525 | goto errout; |
Jiri Pirko | acb31fa | 2017-05-17 11:08:00 +0200 | [diff] [blame] | 2526 | } |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 2527 | return true; |
Vlad Buslov | fe2923a | 2019-02-11 10:55:40 +0200 | [diff] [blame] | 2528 | |
| 2529 | errout: |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 2530 | tcf_proto_put(tp, true, NULL); |
Vlad Buslov | fe2923a | 2019-02-11 10:55:40 +0200 | [diff] [blame] | 2531 | return false; |
Jiri Pirko | acb31fa | 2017-05-17 11:08:00 +0200 | [diff] [blame] | 2532 | } |
| 2533 | |
Vlad Buslov | f8ab180 | 2020-05-15 14:40:11 +0300 | [diff] [blame] | 2534 | static const struct nla_policy tcf_tfilter_dump_policy[TCA_MAX + 1] = { |
| 2535 | [TCA_DUMP_FLAGS] = NLA_POLICY_BITFIELD32(TCA_DUMP_FLAGS_TERSE), |
| 2536 | }; |
| 2537 | |
Eric Dumazet | bd27a87 | 2009-11-05 20:57:26 -0800 | [diff] [blame] | 2538 | /* called with RTNL */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2539 | static int tc_dump_tfilter(struct sk_buff *skb, struct netlink_callback *cb) |
| 2540 | { |
Vlad Buslov | bbf7383 | 2019-02-11 10:55:36 +0200 | [diff] [blame] | 2541 | struct tcf_chain *chain, *chain_prev; |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 2542 | struct net *net = sock_net(skb->sk); |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 2543 | struct nlattr *tca[TCA_MAX + 1]; |
Jiri Pirko | 7960d1d | 2018-01-17 11:46:51 +0100 | [diff] [blame] | 2544 | struct Qdisc *q = NULL; |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 2545 | struct tcf_block *block; |
David S. Miller | 942b816 | 2012-06-26 21:48:50 -0700 | [diff] [blame] | 2546 | struct tcmsg *tcm = nlmsg_data(cb->nlh); |
Vlad Buslov | f8ab180 | 2020-05-15 14:40:11 +0300 | [diff] [blame] | 2547 | bool terse_dump = false; |
Jiri Pirko | acb31fa | 2017-05-17 11:08:00 +0200 | [diff] [blame] | 2548 | long index_start; |
| 2549 | long index; |
Jiri Pirko | a10fa20 | 2017-10-13 14:01:05 +0200 | [diff] [blame] | 2550 | u32 parent; |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 2551 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2552 | |
Hong zhi guo | 573ce26 | 2013-03-27 06:47:04 +0000 | [diff] [blame] | 2553 | if (nlmsg_len(cb->nlh) < sizeof(*tcm)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2554 | return skb->len; |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 2555 | |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 2556 | err = nlmsg_parse_deprecated(cb->nlh, sizeof(*tcm), tca, TCA_MAX, |
Vlad Buslov | f8ab180 | 2020-05-15 14:40:11 +0300 | [diff] [blame] | 2557 | tcf_tfilter_dump_policy, cb->extack); |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 2558 | if (err) |
| 2559 | return err; |
| 2560 | |
Vlad Buslov | f8ab180 | 2020-05-15 14:40:11 +0300 | [diff] [blame] | 2561 | if (tca[TCA_DUMP_FLAGS]) { |
| 2562 | struct nla_bitfield32 flags = |
| 2563 | nla_get_bitfield32(tca[TCA_DUMP_FLAGS]); |
| 2564 | |
| 2565 | terse_dump = flags.value & TCA_DUMP_FLAGS_TERSE; |
| 2566 | } |
| 2567 | |
Jiri Pirko | 7960d1d | 2018-01-17 11:46:51 +0100 | [diff] [blame] | 2568 | if (tcm->tcm_ifindex == TCM_IFINDEX_MAGIC_BLOCK) { |
Vlad Buslov | 787ce6d | 2018-09-24 19:22:58 +0300 | [diff] [blame] | 2569 | block = tcf_block_refcnt_get(net, tcm->tcm_block_index); |
Jiri Pirko | 7960d1d | 2018-01-17 11:46:51 +0100 | [diff] [blame] | 2570 | if (!block) |
WANG Cong | 143976c | 2017-08-24 16:51:29 -0700 | [diff] [blame] | 2571 | goto out; |
Jiri Pirko | d680b35 | 2018-01-18 16:14:49 +0100 | [diff] [blame] | 2572 | /* If we work with block index, q is NULL and parent value |
| 2573 | * will never be used in the following code. The check |
| 2574 | * in tcf_fill_node prevents it. However, compiler does not |
| 2575 | * see that far, so set parent to zero to silence the warning |
| 2576 | * about parent being uninitialized. |
| 2577 | */ |
| 2578 | parent = 0; |
Jiri Pirko | 7960d1d | 2018-01-17 11:46:51 +0100 | [diff] [blame] | 2579 | } else { |
| 2580 | const struct Qdisc_class_ops *cops; |
| 2581 | struct net_device *dev; |
| 2582 | unsigned long cl = 0; |
| 2583 | |
| 2584 | dev = __dev_get_by_index(net, tcm->tcm_ifindex); |
| 2585 | if (!dev) |
| 2586 | return skb->len; |
| 2587 | |
| 2588 | parent = tcm->tcm_parent; |
Cong Wang | a7df487 | 2020-04-30 20:53:49 -0700 | [diff] [blame] | 2589 | if (!parent) |
Jiri Pirko | 7960d1d | 2018-01-17 11:46:51 +0100 | [diff] [blame] | 2590 | q = dev->qdisc; |
Cong Wang | a7df487 | 2020-04-30 20:53:49 -0700 | [diff] [blame] | 2591 | else |
Jiri Pirko | 7960d1d | 2018-01-17 11:46:51 +0100 | [diff] [blame] | 2592 | q = qdisc_lookup(dev, TC_H_MAJ(tcm->tcm_parent)); |
Jiri Pirko | 7960d1d | 2018-01-17 11:46:51 +0100 | [diff] [blame] | 2593 | if (!q) |
| 2594 | goto out; |
| 2595 | cops = q->ops->cl_ops; |
| 2596 | if (!cops) |
| 2597 | goto out; |
| 2598 | if (!cops->tcf_block) |
| 2599 | goto out; |
| 2600 | if (TC_H_MIN(tcm->tcm_parent)) { |
| 2601 | cl = cops->find(q, tcm->tcm_parent); |
| 2602 | if (cl == 0) |
| 2603 | goto out; |
| 2604 | } |
| 2605 | block = cops->tcf_block(q, cl, NULL); |
| 2606 | if (!block) |
| 2607 | goto out; |
Cong Wang | a7df487 | 2020-04-30 20:53:49 -0700 | [diff] [blame] | 2608 | parent = block->classid; |
Jiri Pirko | 7960d1d | 2018-01-17 11:46:51 +0100 | [diff] [blame] | 2609 | if (tcf_block_shared(block)) |
| 2610 | q = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2611 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2612 | |
Jiri Pirko | acb31fa | 2017-05-17 11:08:00 +0200 | [diff] [blame] | 2613 | index_start = cb->args[0]; |
| 2614 | index = 0; |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 2615 | |
Vlad Buslov | bbf7383 | 2019-02-11 10:55:36 +0200 | [diff] [blame] | 2616 | for (chain = __tcf_get_next_chain(block, NULL); |
| 2617 | chain; |
| 2618 | chain_prev = chain, |
| 2619 | chain = __tcf_get_next_chain(block, chain), |
| 2620 | tcf_chain_put(chain_prev)) { |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 2621 | if (tca[TCA_CHAIN] && |
| 2622 | nla_get_u32(tca[TCA_CHAIN]) != chain->index) |
| 2623 | continue; |
Jiri Pirko | a10fa20 | 2017-10-13 14:01:05 +0200 | [diff] [blame] | 2624 | if (!tcf_chain_dump(chain, q, parent, skb, cb, |
Vlad Buslov | f8ab180 | 2020-05-15 14:40:11 +0300 | [diff] [blame] | 2625 | index_start, &index, terse_dump)) { |
Vlad Buslov | bbf7383 | 2019-02-11 10:55:36 +0200 | [diff] [blame] | 2626 | tcf_chain_put(chain); |
Roman Kapl | 5ae437a | 2018-02-19 21:32:51 +0100 | [diff] [blame] | 2627 | err = -EMSGSIZE; |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 2628 | break; |
Roman Kapl | 5ae437a | 2018-02-19 21:32:51 +0100 | [diff] [blame] | 2629 | } |
Jiri Pirko | 5bc1701 | 2017-05-17 11:08:01 +0200 | [diff] [blame] | 2630 | } |
| 2631 | |
Vlad Buslov | 787ce6d | 2018-09-24 19:22:58 +0300 | [diff] [blame] | 2632 | if (tcm->tcm_ifindex == TCM_IFINDEX_MAGIC_BLOCK) |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 2633 | tcf_block_refcnt_put(block, true); |
Jiri Pirko | acb31fa | 2017-05-17 11:08:00 +0200 | [diff] [blame] | 2634 | cb->args[0] = index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2635 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2636 | out: |
Roman Kapl | 5ae437a | 2018-02-19 21:32:51 +0100 | [diff] [blame] | 2637 | /* If we did no progress, the error (EMSGSIZE) is real */ |
| 2638 | if (skb->len == 0 && err) |
| 2639 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2640 | return skb->len; |
| 2641 | } |
| 2642 | |
Vlad Buslov | a565482 | 2019-02-11 10:55:37 +0200 | [diff] [blame] | 2643 | static int tc_chain_fill_node(const struct tcf_proto_ops *tmplt_ops, |
| 2644 | void *tmplt_priv, u32 chain_index, |
| 2645 | struct net *net, struct sk_buff *skb, |
| 2646 | struct tcf_block *block, |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2647 | u32 portid, u32 seq, u16 flags, int event) |
| 2648 | { |
| 2649 | unsigned char *b = skb_tail_pointer(skb); |
Jiri Pirko | 9f407f1 | 2018-07-23 09:23:07 +0200 | [diff] [blame] | 2650 | const struct tcf_proto_ops *ops; |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2651 | struct nlmsghdr *nlh; |
| 2652 | struct tcmsg *tcm; |
Jiri Pirko | 9f407f1 | 2018-07-23 09:23:07 +0200 | [diff] [blame] | 2653 | void *priv; |
| 2654 | |
Vlad Buslov | a565482 | 2019-02-11 10:55:37 +0200 | [diff] [blame] | 2655 | ops = tmplt_ops; |
| 2656 | priv = tmplt_priv; |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2657 | |
| 2658 | nlh = nlmsg_put(skb, portid, seq, event, sizeof(*tcm), flags); |
| 2659 | if (!nlh) |
| 2660 | goto out_nlmsg_trim; |
| 2661 | tcm = nlmsg_data(nlh); |
| 2662 | tcm->tcm_family = AF_UNSPEC; |
| 2663 | tcm->tcm__pad1 = 0; |
| 2664 | tcm->tcm__pad2 = 0; |
| 2665 | tcm->tcm_handle = 0; |
| 2666 | if (block->q) { |
| 2667 | tcm->tcm_ifindex = qdisc_dev(block->q)->ifindex; |
| 2668 | tcm->tcm_parent = block->q->handle; |
| 2669 | } else { |
| 2670 | tcm->tcm_ifindex = TCM_IFINDEX_MAGIC_BLOCK; |
| 2671 | tcm->tcm_block_index = block->index; |
| 2672 | } |
| 2673 | |
Vlad Buslov | a565482 | 2019-02-11 10:55:37 +0200 | [diff] [blame] | 2674 | if (nla_put_u32(skb, TCA_CHAIN, chain_index)) |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2675 | goto nla_put_failure; |
| 2676 | |
Jiri Pirko | 9f407f1 | 2018-07-23 09:23:07 +0200 | [diff] [blame] | 2677 | if (ops) { |
| 2678 | if (nla_put_string(skb, TCA_KIND, ops->kind)) |
| 2679 | goto nla_put_failure; |
| 2680 | if (ops->tmplt_dump(skb, net, priv) < 0) |
| 2681 | goto nla_put_failure; |
| 2682 | } |
| 2683 | |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2684 | nlh->nlmsg_len = skb_tail_pointer(skb) - b; |
| 2685 | return skb->len; |
| 2686 | |
| 2687 | out_nlmsg_trim: |
| 2688 | nla_put_failure: |
| 2689 | nlmsg_trim(skb, b); |
| 2690 | return -EMSGSIZE; |
| 2691 | } |
| 2692 | |
| 2693 | static int tc_chain_notify(struct tcf_chain *chain, struct sk_buff *oskb, |
| 2694 | u32 seq, u16 flags, int event, bool unicast) |
| 2695 | { |
| 2696 | u32 portid = oskb ? NETLINK_CB(oskb).portid : 0; |
| 2697 | struct tcf_block *block = chain->block; |
| 2698 | struct net *net = block->net; |
| 2699 | struct sk_buff *skb; |
Zhike Wang | 5b5f99b | 2019-03-11 03:15:54 -0700 | [diff] [blame] | 2700 | int err = 0; |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2701 | |
| 2702 | skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL); |
| 2703 | if (!skb) |
| 2704 | return -ENOBUFS; |
| 2705 | |
Vlad Buslov | a565482 | 2019-02-11 10:55:37 +0200 | [diff] [blame] | 2706 | if (tc_chain_fill_node(chain->tmplt_ops, chain->tmplt_priv, |
| 2707 | chain->index, net, skb, block, portid, |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2708 | seq, flags, event) <= 0) { |
| 2709 | kfree_skb(skb); |
| 2710 | return -EINVAL; |
| 2711 | } |
| 2712 | |
| 2713 | if (unicast) |
Yajun Deng | f79a3bc | 2021-07-15 20:24:24 +0800 | [diff] [blame] | 2714 | err = rtnl_unicast(skb, net, portid); |
Zhike Wang | 5b5f99b | 2019-03-11 03:15:54 -0700 | [diff] [blame] | 2715 | else |
| 2716 | err = rtnetlink_send(skb, net, portid, RTNLGRP_TC, |
| 2717 | flags & NLM_F_ECHO); |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2718 | |
Zhike Wang | 5b5f99b | 2019-03-11 03:15:54 -0700 | [diff] [blame] | 2719 | return err; |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2720 | } |
| 2721 | |
Vlad Buslov | a565482 | 2019-02-11 10:55:37 +0200 | [diff] [blame] | 2722 | static int tc_chain_notify_delete(const struct tcf_proto_ops *tmplt_ops, |
| 2723 | void *tmplt_priv, u32 chain_index, |
| 2724 | struct tcf_block *block, struct sk_buff *oskb, |
| 2725 | u32 seq, u16 flags, bool unicast) |
| 2726 | { |
| 2727 | u32 portid = oskb ? NETLINK_CB(oskb).portid : 0; |
| 2728 | struct net *net = block->net; |
| 2729 | struct sk_buff *skb; |
| 2730 | |
| 2731 | skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL); |
| 2732 | if (!skb) |
| 2733 | return -ENOBUFS; |
| 2734 | |
| 2735 | if (tc_chain_fill_node(tmplt_ops, tmplt_priv, chain_index, net, skb, |
| 2736 | block, portid, seq, flags, RTM_DELCHAIN) <= 0) { |
| 2737 | kfree_skb(skb); |
| 2738 | return -EINVAL; |
| 2739 | } |
| 2740 | |
| 2741 | if (unicast) |
Yajun Deng | f79a3bc | 2021-07-15 20:24:24 +0800 | [diff] [blame] | 2742 | return rtnl_unicast(skb, net, portid); |
Vlad Buslov | a565482 | 2019-02-11 10:55:37 +0200 | [diff] [blame] | 2743 | |
| 2744 | return rtnetlink_send(skb, net, portid, RTNLGRP_TC, flags & NLM_F_ECHO); |
| 2745 | } |
| 2746 | |
Jiri Pirko | 9f407f1 | 2018-07-23 09:23:07 +0200 | [diff] [blame] | 2747 | static int tc_chain_tmplt_add(struct tcf_chain *chain, struct net *net, |
| 2748 | struct nlattr **tca, |
| 2749 | struct netlink_ext_ack *extack) |
| 2750 | { |
| 2751 | const struct tcf_proto_ops *ops; |
Eric Dumazet | 2dd5616 | 2019-12-07 11:34:45 -0800 | [diff] [blame] | 2752 | char name[IFNAMSIZ]; |
Jiri Pirko | 9f407f1 | 2018-07-23 09:23:07 +0200 | [diff] [blame] | 2753 | void *tmplt_priv; |
| 2754 | |
| 2755 | /* If kind is not set, user did not specify template. */ |
| 2756 | if (!tca[TCA_KIND]) |
| 2757 | return 0; |
| 2758 | |
Eric Dumazet | 2dd5616 | 2019-12-07 11:34:45 -0800 | [diff] [blame] | 2759 | if (tcf_proto_check_kind(tca[TCA_KIND], name)) { |
| 2760 | NL_SET_ERR_MSG(extack, "Specified TC chain template name too long"); |
| 2761 | return -EINVAL; |
| 2762 | } |
| 2763 | |
| 2764 | ops = tcf_proto_lookup_ops(name, true, extack); |
Jiri Pirko | 9f407f1 | 2018-07-23 09:23:07 +0200 | [diff] [blame] | 2765 | if (IS_ERR(ops)) |
| 2766 | return PTR_ERR(ops); |
| 2767 | if (!ops->tmplt_create || !ops->tmplt_destroy || !ops->tmplt_dump) { |
| 2768 | NL_SET_ERR_MSG(extack, "Chain templates are not supported with specified classifier"); |
| 2769 | return -EOPNOTSUPP; |
| 2770 | } |
| 2771 | |
| 2772 | tmplt_priv = ops->tmplt_create(net, chain, tca, extack); |
| 2773 | if (IS_ERR(tmplt_priv)) { |
| 2774 | module_put(ops->owner); |
| 2775 | return PTR_ERR(tmplt_priv); |
| 2776 | } |
| 2777 | chain->tmplt_ops = ops; |
| 2778 | chain->tmplt_priv = tmplt_priv; |
| 2779 | return 0; |
| 2780 | } |
| 2781 | |
Vlad Buslov | a565482 | 2019-02-11 10:55:37 +0200 | [diff] [blame] | 2782 | static void tc_chain_tmplt_del(const struct tcf_proto_ops *tmplt_ops, |
| 2783 | void *tmplt_priv) |
Jiri Pirko | 9f407f1 | 2018-07-23 09:23:07 +0200 | [diff] [blame] | 2784 | { |
Jiri Pirko | 9f407f1 | 2018-07-23 09:23:07 +0200 | [diff] [blame] | 2785 | /* If template ops are set, no work to do for us. */ |
Vlad Buslov | a565482 | 2019-02-11 10:55:37 +0200 | [diff] [blame] | 2786 | if (!tmplt_ops) |
Jiri Pirko | 9f407f1 | 2018-07-23 09:23:07 +0200 | [diff] [blame] | 2787 | return; |
| 2788 | |
Vlad Buslov | a565482 | 2019-02-11 10:55:37 +0200 | [diff] [blame] | 2789 | tmplt_ops->tmplt_destroy(tmplt_priv); |
| 2790 | module_put(tmplt_ops->owner); |
Jiri Pirko | 9f407f1 | 2018-07-23 09:23:07 +0200 | [diff] [blame] | 2791 | } |
| 2792 | |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2793 | /* Add/delete/get a chain */ |
| 2794 | |
| 2795 | static int tc_ctl_chain(struct sk_buff *skb, struct nlmsghdr *n, |
| 2796 | struct netlink_ext_ack *extack) |
| 2797 | { |
| 2798 | struct net *net = sock_net(skb->sk); |
| 2799 | struct nlattr *tca[TCA_MAX + 1]; |
| 2800 | struct tcmsg *t; |
| 2801 | u32 parent; |
| 2802 | u32 chain_index; |
Eric Dumazet | 04c2a47 | 2022-01-31 09:20:18 -0800 | [diff] [blame] | 2803 | struct Qdisc *q; |
| 2804 | struct tcf_chain *chain; |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2805 | struct tcf_block *block; |
| 2806 | unsigned long cl; |
| 2807 | int err; |
| 2808 | |
| 2809 | if (n->nlmsg_type != RTM_GETCHAIN && |
| 2810 | !netlink_ns_capable(skb, net->user_ns, CAP_NET_ADMIN)) |
| 2811 | return -EPERM; |
| 2812 | |
| 2813 | replay: |
Eric Dumazet | 04c2a47 | 2022-01-31 09:20:18 -0800 | [diff] [blame] | 2814 | q = NULL; |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 2815 | err = nlmsg_parse_deprecated(n, sizeof(*t), tca, TCA_MAX, |
| 2816 | rtm_tca_policy, extack); |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2817 | if (err < 0) |
| 2818 | return err; |
| 2819 | |
| 2820 | t = nlmsg_data(n); |
| 2821 | parent = t->tcm_parent; |
| 2822 | cl = 0; |
| 2823 | |
| 2824 | block = tcf_block_find(net, &q, &parent, &cl, |
| 2825 | t->tcm_ifindex, t->tcm_block_index, extack); |
| 2826 | if (IS_ERR(block)) |
| 2827 | return PTR_ERR(block); |
| 2828 | |
| 2829 | chain_index = tca[TCA_CHAIN] ? nla_get_u32(tca[TCA_CHAIN]) : 0; |
| 2830 | if (chain_index > TC_ACT_EXT_VAL_MASK) { |
| 2831 | NL_SET_ERR_MSG(extack, "Specified chain index exceeds upper limit"); |
Vlad Buslov | e368fdb | 2018-09-24 19:22:53 +0300 | [diff] [blame] | 2832 | err = -EINVAL; |
| 2833 | goto errout_block; |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2834 | } |
Vlad Buslov | 2cbfab0 | 2019-02-11 10:55:34 +0200 | [diff] [blame] | 2835 | |
| 2836 | mutex_lock(&block->lock); |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2837 | chain = tcf_chain_lookup(block, chain_index); |
| 2838 | if (n->nlmsg_type == RTM_NEWCHAIN) { |
| 2839 | if (chain) { |
Jiri Pirko | 3d32f4c | 2018-08-01 12:36:55 +0200 | [diff] [blame] | 2840 | if (tcf_chain_held_by_acts_only(chain)) { |
Jiri Pirko | 1f3ed38 | 2018-07-27 09:45:05 +0200 | [diff] [blame] | 2841 | /* The chain exists only because there is |
Jiri Pirko | 3d32f4c | 2018-08-01 12:36:55 +0200 | [diff] [blame] | 2842 | * some action referencing it. |
Jiri Pirko | 1f3ed38 | 2018-07-27 09:45:05 +0200 | [diff] [blame] | 2843 | */ |
| 2844 | tcf_chain_hold(chain); |
| 2845 | } else { |
| 2846 | NL_SET_ERR_MSG(extack, "Filter chain already exists"); |
Vlad Buslov | e368fdb | 2018-09-24 19:22:53 +0300 | [diff] [blame] | 2847 | err = -EEXIST; |
Vlad Buslov | 2cbfab0 | 2019-02-11 10:55:34 +0200 | [diff] [blame] | 2848 | goto errout_block_locked; |
Jiri Pirko | 1f3ed38 | 2018-07-27 09:45:05 +0200 | [diff] [blame] | 2849 | } |
| 2850 | } else { |
| 2851 | if (!(n->nlmsg_flags & NLM_F_CREATE)) { |
| 2852 | NL_SET_ERR_MSG(extack, "Need both RTM_NEWCHAIN and NLM_F_CREATE to create a new chain"); |
Vlad Buslov | e368fdb | 2018-09-24 19:22:53 +0300 | [diff] [blame] | 2853 | err = -ENOENT; |
Vlad Buslov | 2cbfab0 | 2019-02-11 10:55:34 +0200 | [diff] [blame] | 2854 | goto errout_block_locked; |
Jiri Pirko | 1f3ed38 | 2018-07-27 09:45:05 +0200 | [diff] [blame] | 2855 | } |
| 2856 | chain = tcf_chain_create(block, chain_index); |
| 2857 | if (!chain) { |
| 2858 | NL_SET_ERR_MSG(extack, "Failed to create filter chain"); |
Vlad Buslov | e368fdb | 2018-09-24 19:22:53 +0300 | [diff] [blame] | 2859 | err = -ENOMEM; |
Vlad Buslov | 2cbfab0 | 2019-02-11 10:55:34 +0200 | [diff] [blame] | 2860 | goto errout_block_locked; |
Jiri Pirko | 1f3ed38 | 2018-07-27 09:45:05 +0200 | [diff] [blame] | 2861 | } |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2862 | } |
| 2863 | } else { |
Jiri Pirko | 3d32f4c | 2018-08-01 12:36:55 +0200 | [diff] [blame] | 2864 | if (!chain || tcf_chain_held_by_acts_only(chain)) { |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2865 | NL_SET_ERR_MSG(extack, "Cannot find specified filter chain"); |
Vlad Buslov | e368fdb | 2018-09-24 19:22:53 +0300 | [diff] [blame] | 2866 | err = -EINVAL; |
Vlad Buslov | 2cbfab0 | 2019-02-11 10:55:34 +0200 | [diff] [blame] | 2867 | goto errout_block_locked; |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2868 | } |
| 2869 | tcf_chain_hold(chain); |
| 2870 | } |
| 2871 | |
Vlad Buslov | 2cbfab0 | 2019-02-11 10:55:34 +0200 | [diff] [blame] | 2872 | if (n->nlmsg_type == RTM_NEWCHAIN) { |
| 2873 | /* Modifying chain requires holding parent block lock. In case |
| 2874 | * the chain was successfully added, take a reference to the |
| 2875 | * chain. This ensures that an empty chain does not disappear at |
| 2876 | * the end of this function. |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2877 | */ |
| 2878 | tcf_chain_hold(chain); |
| 2879 | chain->explicitly_created = true; |
Vlad Buslov | 2cbfab0 | 2019-02-11 10:55:34 +0200 | [diff] [blame] | 2880 | } |
| 2881 | mutex_unlock(&block->lock); |
| 2882 | |
| 2883 | switch (n->nlmsg_type) { |
| 2884 | case RTM_NEWCHAIN: |
| 2885 | err = tc_chain_tmplt_add(chain, net, tca, extack); |
| 2886 | if (err) { |
| 2887 | tcf_chain_put_explicitly_created(chain); |
| 2888 | goto errout; |
| 2889 | } |
| 2890 | |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2891 | tc_chain_notify(chain, NULL, 0, NLM_F_CREATE | NLM_F_EXCL, |
| 2892 | RTM_NEWCHAIN, false); |
| 2893 | break; |
| 2894 | case RTM_DELCHAIN: |
Cong Wang | f5b9bac | 2018-09-11 14:22:23 -0700 | [diff] [blame] | 2895 | tfilter_notify_chain(net, skb, block, q, parent, n, |
Vlad Buslov | 0fca55e | 2020-11-27 17:12:05 +0200 | [diff] [blame] | 2896 | chain, RTM_DELTFILTER); |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2897 | /* Flush the chain first as the user requested chain removal. */ |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 2898 | tcf_chain_flush(chain, true); |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2899 | /* In case the chain was successfully deleted, put a reference |
| 2900 | * to the chain previously taken during addition. |
| 2901 | */ |
| 2902 | tcf_chain_put_explicitly_created(chain); |
| 2903 | break; |
| 2904 | case RTM_GETCHAIN: |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2905 | err = tc_chain_notify(chain, skb, n->nlmsg_seq, |
Yajun Deng | 9d85a6f | 2021-07-22 11:23:43 +0800 | [diff] [blame] | 2906 | n->nlmsg_flags, n->nlmsg_type, true); |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2907 | if (err < 0) |
| 2908 | NL_SET_ERR_MSG(extack, "Failed to send chain notify message"); |
| 2909 | break; |
| 2910 | default: |
| 2911 | err = -EOPNOTSUPP; |
| 2912 | NL_SET_ERR_MSG(extack, "Unsupported message type"); |
| 2913 | goto errout; |
| 2914 | } |
| 2915 | |
| 2916 | errout: |
| 2917 | tcf_chain_put(chain); |
Vlad Buslov | e368fdb | 2018-09-24 19:22:53 +0300 | [diff] [blame] | 2918 | errout_block: |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 2919 | tcf_block_release(q, block, true); |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2920 | if (err == -EAGAIN) |
| 2921 | /* Replay the request. */ |
| 2922 | goto replay; |
| 2923 | return err; |
Vlad Buslov | 2cbfab0 | 2019-02-11 10:55:34 +0200 | [diff] [blame] | 2924 | |
| 2925 | errout_block_locked: |
| 2926 | mutex_unlock(&block->lock); |
| 2927 | goto errout_block; |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2928 | } |
| 2929 | |
| 2930 | /* called with RTNL */ |
| 2931 | static int tc_dump_chain(struct sk_buff *skb, struct netlink_callback *cb) |
| 2932 | { |
| 2933 | struct net *net = sock_net(skb->sk); |
| 2934 | struct nlattr *tca[TCA_MAX + 1]; |
| 2935 | struct Qdisc *q = NULL; |
| 2936 | struct tcf_block *block; |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2937 | struct tcmsg *tcm = nlmsg_data(cb->nlh); |
Vlad Buslov | ace4a26 | 2019-02-25 17:45:44 +0200 | [diff] [blame] | 2938 | struct tcf_chain *chain; |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2939 | long index_start; |
| 2940 | long index; |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2941 | int err; |
| 2942 | |
| 2943 | if (nlmsg_len(cb->nlh) < sizeof(*tcm)) |
| 2944 | return skb->len; |
| 2945 | |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 2946 | err = nlmsg_parse_deprecated(cb->nlh, sizeof(*tcm), tca, TCA_MAX, |
| 2947 | rtm_tca_policy, cb->extack); |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2948 | if (err) |
| 2949 | return err; |
| 2950 | |
| 2951 | if (tcm->tcm_ifindex == TCM_IFINDEX_MAGIC_BLOCK) { |
Vlad Buslov | 787ce6d | 2018-09-24 19:22:58 +0300 | [diff] [blame] | 2952 | block = tcf_block_refcnt_get(net, tcm->tcm_block_index); |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2953 | if (!block) |
| 2954 | goto out; |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2955 | } else { |
| 2956 | const struct Qdisc_class_ops *cops; |
| 2957 | struct net_device *dev; |
| 2958 | unsigned long cl = 0; |
| 2959 | |
| 2960 | dev = __dev_get_by_index(net, tcm->tcm_ifindex); |
| 2961 | if (!dev) |
| 2962 | return skb->len; |
| 2963 | |
Lukas Bulwahn | 0ad41b2 | 2020-10-28 12:35:33 +0100 | [diff] [blame] | 2964 | if (!tcm->tcm_parent) |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2965 | q = dev->qdisc; |
Lukas Bulwahn | 0ad41b2 | 2020-10-28 12:35:33 +0100 | [diff] [blame] | 2966 | else |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2967 | q = qdisc_lookup(dev, TC_H_MAJ(tcm->tcm_parent)); |
Lukas Bulwahn | 0ad41b2 | 2020-10-28 12:35:33 +0100 | [diff] [blame] | 2968 | |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2969 | if (!q) |
| 2970 | goto out; |
| 2971 | cops = q->ops->cl_ops; |
| 2972 | if (!cops) |
| 2973 | goto out; |
| 2974 | if (!cops->tcf_block) |
| 2975 | goto out; |
| 2976 | if (TC_H_MIN(tcm->tcm_parent)) { |
| 2977 | cl = cops->find(q, tcm->tcm_parent); |
| 2978 | if (cl == 0) |
| 2979 | goto out; |
| 2980 | } |
| 2981 | block = cops->tcf_block(q, cl, NULL); |
| 2982 | if (!block) |
| 2983 | goto out; |
| 2984 | if (tcf_block_shared(block)) |
| 2985 | q = NULL; |
| 2986 | } |
| 2987 | |
| 2988 | index_start = cb->args[0]; |
| 2989 | index = 0; |
| 2990 | |
Vlad Buslov | ace4a26 | 2019-02-25 17:45:44 +0200 | [diff] [blame] | 2991 | mutex_lock(&block->lock); |
| 2992 | list_for_each_entry(chain, &block->chain_list, list) { |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 2993 | if ((tca[TCA_CHAIN] && |
| 2994 | nla_get_u32(tca[TCA_CHAIN]) != chain->index)) |
| 2995 | continue; |
| 2996 | if (index < index_start) { |
| 2997 | index++; |
| 2998 | continue; |
| 2999 | } |
Vlad Buslov | ace4a26 | 2019-02-25 17:45:44 +0200 | [diff] [blame] | 3000 | if (tcf_chain_held_by_acts_only(chain)) |
| 3001 | continue; |
Vlad Buslov | a565482 | 2019-02-11 10:55:37 +0200 | [diff] [blame] | 3002 | err = tc_chain_fill_node(chain->tmplt_ops, chain->tmplt_priv, |
| 3003 | chain->index, net, skb, block, |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 3004 | NETLINK_CB(cb->skb).portid, |
| 3005 | cb->nlh->nlmsg_seq, NLM_F_MULTI, |
| 3006 | RTM_NEWCHAIN); |
Vlad Buslov | ace4a26 | 2019-02-25 17:45:44 +0200 | [diff] [blame] | 3007 | if (err <= 0) |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 3008 | break; |
| 3009 | index++; |
| 3010 | } |
Vlad Buslov | ace4a26 | 2019-02-25 17:45:44 +0200 | [diff] [blame] | 3011 | mutex_unlock(&block->lock); |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 3012 | |
Vlad Buslov | 787ce6d | 2018-09-24 19:22:58 +0300 | [diff] [blame] | 3013 | if (tcm->tcm_ifindex == TCM_IFINDEX_MAGIC_BLOCK) |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 3014 | tcf_block_refcnt_put(block, true); |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 3015 | cb->args[0] = index; |
| 3016 | |
| 3017 | out: |
| 3018 | /* If we did no progress, the error (EMSGSIZE) is real */ |
| 3019 | if (skb->len == 0 && err) |
| 3020 | return err; |
| 3021 | return skb->len; |
| 3022 | } |
| 3023 | |
WANG Cong | 18d0264 | 2014-09-25 10:26:37 -0700 | [diff] [blame] | 3024 | void tcf_exts_destroy(struct tcf_exts *exts) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3025 | { |
| 3026 | #ifdef CONFIG_NET_CLS_ACT |
Eric Dumazet | 3d66b89 | 2019-09-18 12:57:04 -0700 | [diff] [blame] | 3027 | if (exts->actions) { |
| 3028 | tcf_action_destroy(exts->actions, TCA_ACT_UNBIND); |
| 3029 | kfree(exts->actions); |
| 3030 | } |
WANG Cong | 22dc13c | 2016-08-13 22:35:00 -0700 | [diff] [blame] | 3031 | exts->nr_actions = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3032 | #endif |
| 3033 | } |
Stephen Hemminger | aa767bf | 2008-01-21 02:26:41 -0800 | [diff] [blame] | 3034 | EXPORT_SYMBOL(tcf_exts_destroy); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3035 | |
Baowen Zheng | c86e020 | 2021-12-17 19:16:28 +0100 | [diff] [blame] | 3036 | int tcf_exts_validate_ex(struct net *net, struct tcf_proto *tp, struct nlattr **tb, |
| 3037 | struct nlattr *rate_tlv, struct tcf_exts *exts, |
| 3038 | u32 flags, u32 fl_flags, struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3039 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3040 | #ifdef CONFIG_NET_CLS_ACT |
| 3041 | { |
Vlad Buslov | 87c750e | 2021-04-07 18:36:03 +0300 | [diff] [blame] | 3042 | int init_res[TCA_ACT_MAX_PRIO] = {}; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3043 | struct tc_action *act; |
Roman Mashak | d04e699 | 2018-03-08 16:59:17 -0500 | [diff] [blame] | 3044 | size_t attr_size = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3045 | |
WANG Cong | 5da57f4 | 2013-12-15 20:15:07 -0800 | [diff] [blame] | 3046 | if (exts->police && tb[exts->police]) { |
Cong Wang | d349f99 | 2021-01-16 16:56:57 -0800 | [diff] [blame] | 3047 | struct tc_action_ops *a_o; |
| 3048 | |
Cong Wang | 695176b | 2021-07-29 16:12:14 -0700 | [diff] [blame] | 3049 | a_o = tc_action_load_ops(tb[exts->police], true, |
| 3050 | !(flags & TCA_ACT_FLAGS_NO_RTNL), |
| 3051 | extack); |
Cong Wang | d349f99 | 2021-01-16 16:56:57 -0800 | [diff] [blame] | 3052 | if (IS_ERR(a_o)) |
| 3053 | return PTR_ERR(a_o); |
Cong Wang | 695176b | 2021-07-29 16:12:14 -0700 | [diff] [blame] | 3054 | flags |= TCA_ACT_FLAGS_POLICE | TCA_ACT_FLAGS_BIND; |
Jiri Pirko | 9fb9f25 | 2017-05-17 11:08:02 +0200 | [diff] [blame] | 3055 | act = tcf_action_init_1(net, tp, tb[exts->police], |
Cong Wang | 695176b | 2021-07-29 16:12:14 -0700 | [diff] [blame] | 3056 | rate_tlv, a_o, init_res, flags, |
| 3057 | extack); |
Vlad Buslov | b3650bf7 | 2021-04-07 18:36:04 +0300 | [diff] [blame] | 3058 | module_put(a_o->owner); |
| 3059 | if (IS_ERR(act)) |
Patrick McHardy | ab27cfb | 2008-01-23 20:33:13 -0800 | [diff] [blame] | 3060 | return PTR_ERR(act); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3061 | |
WANG Cong | 33be627 | 2013-12-15 20:15:05 -0800 | [diff] [blame] | 3062 | act->type = exts->type = TCA_OLD_COMPAT; |
WANG Cong | 22dc13c | 2016-08-13 22:35:00 -0700 | [diff] [blame] | 3063 | exts->actions[0] = act; |
| 3064 | exts->nr_actions = 1; |
Vlad Buslov | 396d7f2 | 2021-02-16 18:22:00 +0200 | [diff] [blame] | 3065 | tcf_idr_insert_many(exts->actions); |
WANG Cong | 5da57f4 | 2013-12-15 20:15:07 -0800 | [diff] [blame] | 3066 | } else if (exts->action && tb[exts->action]) { |
Vlad Buslov | 90b73b7 | 2018-07-05 17:24:33 +0300 | [diff] [blame] | 3067 | int err; |
WANG Cong | 22dc13c | 2016-08-13 22:35:00 -0700 | [diff] [blame] | 3068 | |
Cong Wang | 695176b | 2021-07-29 16:12:14 -0700 | [diff] [blame] | 3069 | flags |= TCA_ACT_FLAGS_BIND; |
Jiri Pirko | 9fb9f25 | 2017-05-17 11:08:02 +0200 | [diff] [blame] | 3070 | err = tcf_action_init(net, tp, tb[exts->action], |
Cong Wang | 695176b | 2021-07-29 16:12:14 -0700 | [diff] [blame] | 3071 | rate_tlv, exts->actions, init_res, |
Baowen Zheng | c86e020 | 2021-12-17 19:16:28 +0100 | [diff] [blame] | 3072 | &attr_size, flags, fl_flags, |
| 3073 | extack); |
Vlad Buslov | 90b73b7 | 2018-07-05 17:24:33 +0300 | [diff] [blame] | 3074 | if (err < 0) |
WANG Cong | 33be627 | 2013-12-15 20:15:05 -0800 | [diff] [blame] | 3075 | return err; |
Vlad Buslov | 90b73b7 | 2018-07-05 17:24:33 +0300 | [diff] [blame] | 3076 | exts->nr_actions = err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3077 | } |
| 3078 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3079 | #else |
WANG Cong | 5da57f4 | 2013-12-15 20:15:07 -0800 | [diff] [blame] | 3080 | if ((exts->action && tb[exts->action]) || |
Alexander Aring | 50a5619 | 2018-01-18 11:20:52 -0500 | [diff] [blame] | 3081 | (exts->police && tb[exts->police])) { |
| 3082 | NL_SET_ERR_MSG(extack, "Classifier actions are not supported per compile options (CONFIG_NET_CLS_ACT)"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3083 | return -EOPNOTSUPP; |
Alexander Aring | 50a5619 | 2018-01-18 11:20:52 -0500 | [diff] [blame] | 3084 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3085 | #endif |
| 3086 | |
| 3087 | return 0; |
| 3088 | } |
Baowen Zheng | c86e020 | 2021-12-17 19:16:28 +0100 | [diff] [blame] | 3089 | EXPORT_SYMBOL(tcf_exts_validate_ex); |
| 3090 | |
| 3091 | int tcf_exts_validate(struct net *net, struct tcf_proto *tp, struct nlattr **tb, |
| 3092 | struct nlattr *rate_tlv, struct tcf_exts *exts, |
| 3093 | u32 flags, struct netlink_ext_ack *extack) |
| 3094 | { |
| 3095 | return tcf_exts_validate_ex(net, tp, tb, rate_tlv, exts, |
| 3096 | flags, 0, extack); |
| 3097 | } |
Stephen Hemminger | aa767bf | 2008-01-21 02:26:41 -0800 | [diff] [blame] | 3098 | EXPORT_SYMBOL(tcf_exts_validate); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3099 | |
Jiri Pirko | 9b0d444 | 2017-08-04 14:29:15 +0200 | [diff] [blame] | 3100 | void tcf_exts_change(struct tcf_exts *dst, struct tcf_exts *src) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3101 | { |
| 3102 | #ifdef CONFIG_NET_CLS_ACT |
WANG Cong | 22dc13c | 2016-08-13 22:35:00 -0700 | [diff] [blame] | 3103 | struct tcf_exts old = *dst; |
| 3104 | |
Jiri Pirko | 9b0d444 | 2017-08-04 14:29:15 +0200 | [diff] [blame] | 3105 | *dst = *src; |
WANG Cong | 22dc13c | 2016-08-13 22:35:00 -0700 | [diff] [blame] | 3106 | tcf_exts_destroy(&old); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3107 | #endif |
| 3108 | } |
Stephen Hemminger | aa767bf | 2008-01-21 02:26:41 -0800 | [diff] [blame] | 3109 | EXPORT_SYMBOL(tcf_exts_change); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3110 | |
WANG Cong | 22dc13c | 2016-08-13 22:35:00 -0700 | [diff] [blame] | 3111 | #ifdef CONFIG_NET_CLS_ACT |
| 3112 | static struct tc_action *tcf_exts_first_act(struct tcf_exts *exts) |
| 3113 | { |
| 3114 | if (exts->nr_actions == 0) |
| 3115 | return NULL; |
| 3116 | else |
| 3117 | return exts->actions[0]; |
| 3118 | } |
| 3119 | #endif |
WANG Cong | 33be627 | 2013-12-15 20:15:05 -0800 | [diff] [blame] | 3120 | |
WANG Cong | 5da57f4 | 2013-12-15 20:15:07 -0800 | [diff] [blame] | 3121 | int tcf_exts_dump(struct sk_buff *skb, struct tcf_exts *exts) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3122 | { |
| 3123 | #ifdef CONFIG_NET_CLS_ACT |
Cong Wang | 9cc63db | 2014-07-16 14:25:30 -0700 | [diff] [blame] | 3124 | struct nlattr *nest; |
| 3125 | |
Jiri Pirko | 978dfd8 | 2017-08-04 14:29:03 +0200 | [diff] [blame] | 3126 | if (exts->action && tcf_exts_has_actions(exts)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3127 | /* |
| 3128 | * again for backward compatible mode - we want |
| 3129 | * to work with both old and new modes of entering |
| 3130 | * tc data even if iproute2 was newer - jhs |
| 3131 | */ |
WANG Cong | 33be627 | 2013-12-15 20:15:05 -0800 | [diff] [blame] | 3132 | if (exts->type != TCA_OLD_COMPAT) { |
Michal Kubecek | ae0be8d | 2019-04-26 11:13:06 +0200 | [diff] [blame] | 3133 | nest = nla_nest_start_noflag(skb, exts->action); |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 3134 | if (nest == NULL) |
| 3135 | goto nla_put_failure; |
WANG Cong | 22dc13c | 2016-08-13 22:35:00 -0700 | [diff] [blame] | 3136 | |
Vlad Buslov | ca44b73 | 2020-05-15 14:40:12 +0300 | [diff] [blame] | 3137 | if (tcf_action_dump(skb, exts->actions, 0, 0, false) |
| 3138 | < 0) |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 3139 | goto nla_put_failure; |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 3140 | nla_nest_end(skb, nest); |
WANG Cong | 5da57f4 | 2013-12-15 20:15:07 -0800 | [diff] [blame] | 3141 | } else if (exts->police) { |
WANG Cong | 33be627 | 2013-12-15 20:15:05 -0800 | [diff] [blame] | 3142 | struct tc_action *act = tcf_exts_first_act(exts); |
Michal Kubecek | ae0be8d | 2019-04-26 11:13:06 +0200 | [diff] [blame] | 3143 | nest = nla_nest_start_noflag(skb, exts->police); |
Jamal Hadi Salim | 63acd68 | 2013-12-23 08:02:12 -0500 | [diff] [blame] | 3144 | if (nest == NULL || !act) |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 3145 | goto nla_put_failure; |
WANG Cong | 33be627 | 2013-12-15 20:15:05 -0800 | [diff] [blame] | 3146 | if (tcf_action_dump_old(skb, act, 0, 0) < 0) |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 3147 | goto nla_put_failure; |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 3148 | nla_nest_end(skb, nest); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3149 | } |
| 3150 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3151 | return 0; |
Cong Wang | 9cc63db | 2014-07-16 14:25:30 -0700 | [diff] [blame] | 3152 | |
| 3153 | nla_put_failure: |
| 3154 | nla_nest_cancel(skb, nest); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3155 | return -1; |
Cong Wang | 9cc63db | 2014-07-16 14:25:30 -0700 | [diff] [blame] | 3156 | #else |
| 3157 | return 0; |
| 3158 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3159 | } |
Stephen Hemminger | aa767bf | 2008-01-21 02:26:41 -0800 | [diff] [blame] | 3160 | EXPORT_SYMBOL(tcf_exts_dump); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3161 | |
Vlad Buslov | ca44b73 | 2020-05-15 14:40:12 +0300 | [diff] [blame] | 3162 | int tcf_exts_terse_dump(struct sk_buff *skb, struct tcf_exts *exts) |
| 3163 | { |
| 3164 | #ifdef CONFIG_NET_CLS_ACT |
| 3165 | struct nlattr *nest; |
| 3166 | |
| 3167 | if (!exts->action || !tcf_exts_has_actions(exts)) |
| 3168 | return 0; |
| 3169 | |
| 3170 | nest = nla_nest_start_noflag(skb, exts->action); |
| 3171 | if (!nest) |
| 3172 | goto nla_put_failure; |
| 3173 | |
| 3174 | if (tcf_action_dump(skb, exts->actions, 0, 0, true) < 0) |
| 3175 | goto nla_put_failure; |
| 3176 | nla_nest_end(skb, nest); |
| 3177 | return 0; |
| 3178 | |
| 3179 | nla_put_failure: |
| 3180 | nla_nest_cancel(skb, nest); |
| 3181 | return -1; |
| 3182 | #else |
| 3183 | return 0; |
| 3184 | #endif |
| 3185 | } |
| 3186 | EXPORT_SYMBOL(tcf_exts_terse_dump); |
Stephen Hemminger | aa767bf | 2008-01-21 02:26:41 -0800 | [diff] [blame] | 3187 | |
WANG Cong | 5da57f4 | 2013-12-15 20:15:07 -0800 | [diff] [blame] | 3188 | 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] | 3189 | { |
| 3190 | #ifdef CONFIG_NET_CLS_ACT |
WANG Cong | 33be627 | 2013-12-15 20:15:05 -0800 | [diff] [blame] | 3191 | struct tc_action *a = tcf_exts_first_act(exts); |
Ignacy Gawędzki | b057df2 | 2015-02-03 19:05:18 +0100 | [diff] [blame] | 3192 | if (a != NULL && tcf_action_copy_stats(skb, a, 1) < 0) |
WANG Cong | 33be627 | 2013-12-15 20:15:05 -0800 | [diff] [blame] | 3193 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3194 | #endif |
| 3195 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3196 | } |
Stephen Hemminger | aa767bf | 2008-01-21 02:26:41 -0800 | [diff] [blame] | 3197 | EXPORT_SYMBOL(tcf_exts_dump_stats); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3198 | |
Vlad Buslov | 4011921 | 2019-08-26 16:44:59 +0300 | [diff] [blame] | 3199 | static void tcf_block_offload_inc(struct tcf_block *block, u32 *flags) |
| 3200 | { |
| 3201 | if (*flags & TCA_CLS_FLAGS_IN_HW) |
| 3202 | return; |
| 3203 | *flags |= TCA_CLS_FLAGS_IN_HW; |
| 3204 | atomic_inc(&block->offloadcnt); |
| 3205 | } |
| 3206 | |
| 3207 | static void tcf_block_offload_dec(struct tcf_block *block, u32 *flags) |
| 3208 | { |
| 3209 | if (!(*flags & TCA_CLS_FLAGS_IN_HW)) |
| 3210 | return; |
| 3211 | *flags &= ~TCA_CLS_FLAGS_IN_HW; |
| 3212 | atomic_dec(&block->offloadcnt); |
| 3213 | } |
| 3214 | |
| 3215 | static void tc_cls_offload_cnt_update(struct tcf_block *block, |
| 3216 | struct tcf_proto *tp, u32 *cnt, |
| 3217 | u32 *flags, u32 diff, bool add) |
| 3218 | { |
| 3219 | lockdep_assert_held(&block->cb_lock); |
| 3220 | |
| 3221 | spin_lock(&tp->lock); |
| 3222 | if (add) { |
| 3223 | if (!*cnt) |
| 3224 | tcf_block_offload_inc(block, flags); |
| 3225 | *cnt += diff; |
| 3226 | } else { |
| 3227 | *cnt -= diff; |
| 3228 | if (!*cnt) |
| 3229 | tcf_block_offload_dec(block, flags); |
| 3230 | } |
| 3231 | spin_unlock(&tp->lock); |
| 3232 | } |
| 3233 | |
| 3234 | static void |
| 3235 | tc_cls_offload_cnt_reset(struct tcf_block *block, struct tcf_proto *tp, |
| 3236 | u32 *cnt, u32 *flags) |
| 3237 | { |
| 3238 | lockdep_assert_held(&block->cb_lock); |
| 3239 | |
| 3240 | spin_lock(&tp->lock); |
| 3241 | tcf_block_offload_dec(block, flags); |
| 3242 | *cnt = 0; |
| 3243 | spin_unlock(&tp->lock); |
| 3244 | } |
| 3245 | |
| 3246 | static int |
| 3247 | __tc_setup_cb_call(struct tcf_block *block, enum tc_setup_type type, |
| 3248 | void *type_data, bool err_stop) |
Jiri Pirko | 717503b | 2017-10-11 09:41:09 +0200 | [diff] [blame] | 3249 | { |
Pablo Neira Ayuso | 955bcb6 | 2019-07-09 22:55:46 +0200 | [diff] [blame] | 3250 | struct flow_block_cb *block_cb; |
Cong Wang | aeb3fec | 2018-12-11 11:15:46 -0800 | [diff] [blame] | 3251 | int ok_count = 0; |
| 3252 | int err; |
| 3253 | |
Vlad Buslov | 4011921 | 2019-08-26 16:44:59 +0300 | [diff] [blame] | 3254 | list_for_each_entry(block_cb, &block->flow_block.cb_list, list) { |
| 3255 | err = block_cb->cb(type, type_data, block_cb->cb_priv); |
| 3256 | if (err) { |
| 3257 | if (err_stop) |
| 3258 | return err; |
| 3259 | } else { |
| 3260 | ok_count++; |
| 3261 | } |
| 3262 | } |
| 3263 | return ok_count; |
| 3264 | } |
| 3265 | |
| 3266 | int tc_setup_cb_call(struct tcf_block *block, enum tc_setup_type type, |
| 3267 | void *type_data, bool err_stop, bool rtnl_held) |
| 3268 | { |
Vlad Buslov | 11bd634 | 2019-08-26 16:45:02 +0300 | [diff] [blame] | 3269 | bool take_rtnl = READ_ONCE(block->lockeddevcnt) && !rtnl_held; |
Vlad Buslov | 4011921 | 2019-08-26 16:44:59 +0300 | [diff] [blame] | 3270 | int ok_count; |
| 3271 | |
Vlad Buslov | 11bd634 | 2019-08-26 16:45:02 +0300 | [diff] [blame] | 3272 | retry: |
| 3273 | if (take_rtnl) |
| 3274 | rtnl_lock(); |
Vlad Buslov | 4011921 | 2019-08-26 16:44:59 +0300 | [diff] [blame] | 3275 | down_read(&block->cb_lock); |
Vlad Buslov | 11bd634 | 2019-08-26 16:45:02 +0300 | [diff] [blame] | 3276 | /* Need to obtain rtnl lock if block is bound to devs that require it. |
| 3277 | * In block bind code cb_lock is obtained while holding rtnl, so we must |
| 3278 | * obtain the locks in same order here. |
| 3279 | */ |
| 3280 | if (!rtnl_held && !take_rtnl && block->lockeddevcnt) { |
| 3281 | up_read(&block->cb_lock); |
| 3282 | take_rtnl = true; |
| 3283 | goto retry; |
| 3284 | } |
| 3285 | |
Vlad Buslov | 4011921 | 2019-08-26 16:44:59 +0300 | [diff] [blame] | 3286 | ok_count = __tc_setup_cb_call(block, type, type_data, err_stop); |
Vlad Buslov | 11bd634 | 2019-08-26 16:45:02 +0300 | [diff] [blame] | 3287 | |
Vlad Buslov | 4011921 | 2019-08-26 16:44:59 +0300 | [diff] [blame] | 3288 | up_read(&block->cb_lock); |
Vlad Buslov | 11bd634 | 2019-08-26 16:45:02 +0300 | [diff] [blame] | 3289 | if (take_rtnl) |
| 3290 | rtnl_unlock(); |
Vlad Buslov | 4011921 | 2019-08-26 16:44:59 +0300 | [diff] [blame] | 3291 | return ok_count; |
| 3292 | } |
| 3293 | EXPORT_SYMBOL(tc_setup_cb_call); |
| 3294 | |
| 3295 | /* Non-destructive filter add. If filter that wasn't already in hardware is |
| 3296 | * successfully offloaded, increment block offloads counter. On failure, |
| 3297 | * previously offloaded filter is considered to be intact and offloads counter |
| 3298 | * is not decremented. |
| 3299 | */ |
| 3300 | |
| 3301 | int tc_setup_cb_add(struct tcf_block *block, struct tcf_proto *tp, |
| 3302 | enum tc_setup_type type, void *type_data, bool err_stop, |
| 3303 | u32 *flags, unsigned int *in_hw_count, bool rtnl_held) |
| 3304 | { |
Vlad Buslov | 11bd634 | 2019-08-26 16:45:02 +0300 | [diff] [blame] | 3305 | bool take_rtnl = READ_ONCE(block->lockeddevcnt) && !rtnl_held; |
Vlad Buslov | 4011921 | 2019-08-26 16:44:59 +0300 | [diff] [blame] | 3306 | int ok_count; |
| 3307 | |
Vlad Buslov | 11bd634 | 2019-08-26 16:45:02 +0300 | [diff] [blame] | 3308 | retry: |
| 3309 | if (take_rtnl) |
| 3310 | rtnl_lock(); |
Vlad Buslov | 4f8116c | 2019-08-26 16:44:57 +0300 | [diff] [blame] | 3311 | down_read(&block->cb_lock); |
Vlad Buslov | 11bd634 | 2019-08-26 16:45:02 +0300 | [diff] [blame] | 3312 | /* Need to obtain rtnl lock if block is bound to devs that require it. |
| 3313 | * In block bind code cb_lock is obtained while holding rtnl, so we must |
| 3314 | * obtain the locks in same order here. |
| 3315 | */ |
| 3316 | if (!rtnl_held && !take_rtnl && block->lockeddevcnt) { |
| 3317 | up_read(&block->cb_lock); |
| 3318 | take_rtnl = true; |
| 3319 | goto retry; |
| 3320 | } |
| 3321 | |
Cong Wang | aeb3fec | 2018-12-11 11:15:46 -0800 | [diff] [blame] | 3322 | /* Make sure all netdevs sharing this block are offload-capable. */ |
Vlad Buslov | 4f8116c | 2019-08-26 16:44:57 +0300 | [diff] [blame] | 3323 | if (block->nooffloaddevcnt && err_stop) { |
| 3324 | ok_count = -EOPNOTSUPP; |
| 3325 | goto err_unlock; |
| 3326 | } |
Cong Wang | aeb3fec | 2018-12-11 11:15:46 -0800 | [diff] [blame] | 3327 | |
Vlad Buslov | 4011921 | 2019-08-26 16:44:59 +0300 | [diff] [blame] | 3328 | ok_count = __tc_setup_cb_call(block, type, type_data, err_stop); |
Vlad Buslov | a449a3e | 2019-08-26 16:45:00 +0300 | [diff] [blame] | 3329 | if (ok_count < 0) |
| 3330 | goto err_unlock; |
| 3331 | |
| 3332 | if (tp->ops->hw_add) |
| 3333 | tp->ops->hw_add(tp, type_data); |
Vlad Buslov | 4011921 | 2019-08-26 16:44:59 +0300 | [diff] [blame] | 3334 | if (ok_count > 0) |
| 3335 | tc_cls_offload_cnt_update(block, tp, in_hw_count, flags, |
| 3336 | ok_count, true); |
Vlad Buslov | 4f8116c | 2019-08-26 16:44:57 +0300 | [diff] [blame] | 3337 | err_unlock: |
| 3338 | up_read(&block->cb_lock); |
Vlad Buslov | 11bd634 | 2019-08-26 16:45:02 +0300 | [diff] [blame] | 3339 | if (take_rtnl) |
| 3340 | rtnl_unlock(); |
Yang Li | c48c94b | 2021-12-21 09:14:55 +0800 | [diff] [blame] | 3341 | return min(ok_count, 0); |
Jiri Pirko | 717503b | 2017-10-11 09:41:09 +0200 | [diff] [blame] | 3342 | } |
Vlad Buslov | 4011921 | 2019-08-26 16:44:59 +0300 | [diff] [blame] | 3343 | EXPORT_SYMBOL(tc_setup_cb_add); |
| 3344 | |
| 3345 | /* Destructive filter replace. If filter that wasn't already in hardware is |
| 3346 | * successfully offloaded, increment block offload counter. On failure, |
| 3347 | * previously offloaded filter is considered to be destroyed and offload counter |
| 3348 | * is decremented. |
| 3349 | */ |
| 3350 | |
| 3351 | int tc_setup_cb_replace(struct tcf_block *block, struct tcf_proto *tp, |
| 3352 | enum tc_setup_type type, void *type_data, bool err_stop, |
| 3353 | u32 *old_flags, unsigned int *old_in_hw_count, |
| 3354 | u32 *new_flags, unsigned int *new_in_hw_count, |
| 3355 | bool rtnl_held) |
| 3356 | { |
Vlad Buslov | 11bd634 | 2019-08-26 16:45:02 +0300 | [diff] [blame] | 3357 | bool take_rtnl = READ_ONCE(block->lockeddevcnt) && !rtnl_held; |
Vlad Buslov | 4011921 | 2019-08-26 16:44:59 +0300 | [diff] [blame] | 3358 | int ok_count; |
| 3359 | |
Vlad Buslov | 11bd634 | 2019-08-26 16:45:02 +0300 | [diff] [blame] | 3360 | retry: |
| 3361 | if (take_rtnl) |
| 3362 | rtnl_lock(); |
Vlad Buslov | 4011921 | 2019-08-26 16:44:59 +0300 | [diff] [blame] | 3363 | down_read(&block->cb_lock); |
Vlad Buslov | 11bd634 | 2019-08-26 16:45:02 +0300 | [diff] [blame] | 3364 | /* Need to obtain rtnl lock if block is bound to devs that require it. |
| 3365 | * In block bind code cb_lock is obtained while holding rtnl, so we must |
| 3366 | * obtain the locks in same order here. |
| 3367 | */ |
| 3368 | if (!rtnl_held && !take_rtnl && block->lockeddevcnt) { |
| 3369 | up_read(&block->cb_lock); |
| 3370 | take_rtnl = true; |
| 3371 | goto retry; |
| 3372 | } |
| 3373 | |
Vlad Buslov | 4011921 | 2019-08-26 16:44:59 +0300 | [diff] [blame] | 3374 | /* Make sure all netdevs sharing this block are offload-capable. */ |
| 3375 | if (block->nooffloaddevcnt && err_stop) { |
| 3376 | ok_count = -EOPNOTSUPP; |
| 3377 | goto err_unlock; |
| 3378 | } |
| 3379 | |
| 3380 | tc_cls_offload_cnt_reset(block, tp, old_in_hw_count, old_flags); |
Vlad Buslov | a449a3e | 2019-08-26 16:45:00 +0300 | [diff] [blame] | 3381 | if (tp->ops->hw_del) |
| 3382 | tp->ops->hw_del(tp, type_data); |
Vlad Buslov | 4011921 | 2019-08-26 16:44:59 +0300 | [diff] [blame] | 3383 | |
| 3384 | ok_count = __tc_setup_cb_call(block, type, type_data, err_stop); |
Vlad Buslov | a449a3e | 2019-08-26 16:45:00 +0300 | [diff] [blame] | 3385 | if (ok_count < 0) |
| 3386 | goto err_unlock; |
| 3387 | |
| 3388 | if (tp->ops->hw_add) |
| 3389 | tp->ops->hw_add(tp, type_data); |
Vlad Buslov | 4011921 | 2019-08-26 16:44:59 +0300 | [diff] [blame] | 3390 | if (ok_count > 0) |
Vlad Buslov | a449a3e | 2019-08-26 16:45:00 +0300 | [diff] [blame] | 3391 | tc_cls_offload_cnt_update(block, tp, new_in_hw_count, |
| 3392 | new_flags, ok_count, true); |
Vlad Buslov | 4011921 | 2019-08-26 16:44:59 +0300 | [diff] [blame] | 3393 | err_unlock: |
| 3394 | up_read(&block->cb_lock); |
Vlad Buslov | 11bd634 | 2019-08-26 16:45:02 +0300 | [diff] [blame] | 3395 | if (take_rtnl) |
| 3396 | rtnl_unlock(); |
Yang Li | c48c94b | 2021-12-21 09:14:55 +0800 | [diff] [blame] | 3397 | return min(ok_count, 0); |
Vlad Buslov | 4011921 | 2019-08-26 16:44:59 +0300 | [diff] [blame] | 3398 | } |
| 3399 | EXPORT_SYMBOL(tc_setup_cb_replace); |
| 3400 | |
| 3401 | /* Destroy filter and decrement block offload counter, if filter was previously |
| 3402 | * offloaded. |
| 3403 | */ |
| 3404 | |
| 3405 | int tc_setup_cb_destroy(struct tcf_block *block, struct tcf_proto *tp, |
| 3406 | enum tc_setup_type type, void *type_data, bool err_stop, |
| 3407 | u32 *flags, unsigned int *in_hw_count, bool rtnl_held) |
| 3408 | { |
Vlad Buslov | 11bd634 | 2019-08-26 16:45:02 +0300 | [diff] [blame] | 3409 | bool take_rtnl = READ_ONCE(block->lockeddevcnt) && !rtnl_held; |
Vlad Buslov | 4011921 | 2019-08-26 16:44:59 +0300 | [diff] [blame] | 3410 | int ok_count; |
| 3411 | |
Vlad Buslov | 11bd634 | 2019-08-26 16:45:02 +0300 | [diff] [blame] | 3412 | retry: |
| 3413 | if (take_rtnl) |
| 3414 | rtnl_lock(); |
Vlad Buslov | 4011921 | 2019-08-26 16:44:59 +0300 | [diff] [blame] | 3415 | down_read(&block->cb_lock); |
Vlad Buslov | 11bd634 | 2019-08-26 16:45:02 +0300 | [diff] [blame] | 3416 | /* Need to obtain rtnl lock if block is bound to devs that require it. |
| 3417 | * In block bind code cb_lock is obtained while holding rtnl, so we must |
| 3418 | * obtain the locks in same order here. |
| 3419 | */ |
| 3420 | if (!rtnl_held && !take_rtnl && block->lockeddevcnt) { |
| 3421 | up_read(&block->cb_lock); |
| 3422 | take_rtnl = true; |
| 3423 | goto retry; |
| 3424 | } |
| 3425 | |
Vlad Buslov | 4011921 | 2019-08-26 16:44:59 +0300 | [diff] [blame] | 3426 | ok_count = __tc_setup_cb_call(block, type, type_data, err_stop); |
| 3427 | |
| 3428 | tc_cls_offload_cnt_reset(block, tp, in_hw_count, flags); |
Vlad Buslov | a449a3e | 2019-08-26 16:45:00 +0300 | [diff] [blame] | 3429 | if (tp->ops->hw_del) |
| 3430 | tp->ops->hw_del(tp, type_data); |
| 3431 | |
Vlad Buslov | 4011921 | 2019-08-26 16:44:59 +0300 | [diff] [blame] | 3432 | up_read(&block->cb_lock); |
Vlad Buslov | 11bd634 | 2019-08-26 16:45:02 +0300 | [diff] [blame] | 3433 | if (take_rtnl) |
| 3434 | rtnl_unlock(); |
Yang Li | c48c94b | 2021-12-21 09:14:55 +0800 | [diff] [blame] | 3435 | return min(ok_count, 0); |
Vlad Buslov | 4011921 | 2019-08-26 16:44:59 +0300 | [diff] [blame] | 3436 | } |
| 3437 | EXPORT_SYMBOL(tc_setup_cb_destroy); |
| 3438 | |
| 3439 | int tc_setup_cb_reoffload(struct tcf_block *block, struct tcf_proto *tp, |
| 3440 | bool add, flow_setup_cb_t *cb, |
| 3441 | enum tc_setup_type type, void *type_data, |
| 3442 | void *cb_priv, u32 *flags, unsigned int *in_hw_count) |
| 3443 | { |
| 3444 | int err = cb(type, type_data, cb_priv); |
| 3445 | |
| 3446 | if (err) { |
| 3447 | if (add && tc_skip_sw(*flags)) |
| 3448 | return err; |
| 3449 | } else { |
| 3450 | tc_cls_offload_cnt_update(block, tp, in_hw_count, flags, 1, |
| 3451 | add); |
| 3452 | } |
| 3453 | |
| 3454 | return 0; |
| 3455 | } |
| 3456 | EXPORT_SYMBOL(tc_setup_cb_reoffload); |
Jiri Pirko | b3f55bd | 2017-10-11 09:41:08 +0200 | [diff] [blame] | 3457 | |
Jiri Pirko | 2008495 | 2020-02-25 11:45:18 +0100 | [diff] [blame] | 3458 | static int tcf_act_get_cookie(struct flow_action_entry *entry, |
| 3459 | const struct tc_action *act) |
| 3460 | { |
| 3461 | struct tc_cookie *cookie; |
| 3462 | int err = 0; |
| 3463 | |
| 3464 | rcu_read_lock(); |
| 3465 | cookie = rcu_dereference(act->act_cookie); |
| 3466 | if (cookie) { |
| 3467 | entry->cookie = flow_action_cookie_create(cookie->data, |
| 3468 | cookie->len, |
| 3469 | GFP_ATOMIC); |
| 3470 | if (!entry->cookie) |
| 3471 | err = -ENOMEM; |
| 3472 | } |
| 3473 | rcu_read_unlock(); |
| 3474 | return err; |
| 3475 | } |
| 3476 | |
| 3477 | static void tcf_act_put_cookie(struct flow_action_entry *entry) |
| 3478 | { |
| 3479 | flow_action_cookie_destroy(entry->cookie); |
| 3480 | } |
| 3481 | |
Baowen Zheng | 9c1c0e1 | 2021-12-17 19:16:20 +0100 | [diff] [blame] | 3482 | void tc_cleanup_offload_action(struct flow_action *flow_action) |
Vlad Buslov | 5a6ff4b | 2019-08-26 16:45:04 +0300 | [diff] [blame] | 3483 | { |
| 3484 | struct flow_action_entry *entry; |
| 3485 | int i; |
| 3486 | |
Jiri Pirko | 2008495 | 2020-02-25 11:45:18 +0100 | [diff] [blame] | 3487 | flow_action_for_each(i, entry, flow_action) { |
| 3488 | tcf_act_put_cookie(entry); |
Vlad Buslov | 1158958 | 2019-09-13 18:28:39 +0300 | [diff] [blame] | 3489 | if (entry->destructor) |
| 3490 | entry->destructor(entry->destructor_priv); |
Jiri Pirko | 2008495 | 2020-02-25 11:45:18 +0100 | [diff] [blame] | 3491 | } |
Vlad Buslov | 5a6ff4b | 2019-08-26 16:45:04 +0300 | [diff] [blame] | 3492 | } |
Baowen Zheng | 9c1c0e1 | 2021-12-17 19:16:20 +0100 | [diff] [blame] | 3493 | EXPORT_SYMBOL(tc_cleanup_offload_action); |
Vlad Buslov | 5a6ff4b | 2019-08-26 16:45:04 +0300 | [diff] [blame] | 3494 | |
Baowen Zheng | c54e1d9 | 2021-12-17 19:16:21 +0100 | [diff] [blame] | 3495 | static int tc_setup_offload_act(struct tc_action *act, |
| 3496 | struct flow_action_entry *entry, |
| 3497 | u32 *index_inc) |
Vlad Buslov | 1158958 | 2019-09-13 18:28:39 +0300 | [diff] [blame] | 3498 | { |
Vlad Buslov | 470d506 | 2019-09-13 18:28:41 +0300 | [diff] [blame] | 3499 | #ifdef CONFIG_NET_CLS_ACT |
Baowen Zheng | c54e1d9 | 2021-12-17 19:16:21 +0100 | [diff] [blame] | 3500 | if (act->ops->offload_act_setup) |
| 3501 | return act->ops->offload_act_setup(act, entry, index_inc, true); |
| 3502 | else |
| 3503 | return -EOPNOTSUPP; |
| 3504 | #else |
Vlad Buslov | 1158958 | 2019-09-13 18:28:39 +0300 | [diff] [blame] | 3505 | return 0; |
Vlad Buslov | 4a5da47 | 2019-09-13 18:28:40 +0300 | [diff] [blame] | 3506 | #endif |
| 3507 | } |
| 3508 | |
Baowen Zheng | 8cbfe93 | 2021-12-17 19:16:22 +0100 | [diff] [blame] | 3509 | int tc_setup_action(struct flow_action *flow_action, |
| 3510 | struct tc_action *actions[]) |
Pablo Neira Ayuso | 3a7b686 | 2019-02-02 12:50:46 +0100 | [diff] [blame] | 3511 | { |
Baowen Zheng | c54e1d9 | 2021-12-17 19:16:21 +0100 | [diff] [blame] | 3512 | int i, j, index, err = 0; |
Vlad Buslov | 7a47281 | 2020-02-17 12:12:09 +0200 | [diff] [blame] | 3513 | struct tc_action *act; |
Pablo Neira Ayuso | 3a7b686 | 2019-02-02 12:50:46 +0100 | [diff] [blame] | 3514 | |
Jakub Kicinski | 0dfb2d8 | 2020-03-19 16:26:23 -0700 | [diff] [blame] | 3515 | BUILD_BUG_ON(TCA_ACT_HW_STATS_ANY != FLOW_ACTION_HW_STATS_ANY); |
| 3516 | BUILD_BUG_ON(TCA_ACT_HW_STATS_IMMEDIATE != FLOW_ACTION_HW_STATS_IMMEDIATE); |
| 3517 | BUILD_BUG_ON(TCA_ACT_HW_STATS_DELAYED != FLOW_ACTION_HW_STATS_DELAYED); |
Jiri Pirko | 44f8658 | 2020-03-07 12:40:20 +0100 | [diff] [blame] | 3518 | |
Baowen Zheng | 8cbfe93 | 2021-12-17 19:16:22 +0100 | [diff] [blame] | 3519 | if (!actions) |
Pablo Neira Ayuso | 3a7b686 | 2019-02-02 12:50:46 +0100 | [diff] [blame] | 3520 | return 0; |
| 3521 | |
| 3522 | j = 0; |
Baowen Zheng | 8cbfe93 | 2021-12-17 19:16:22 +0100 | [diff] [blame] | 3523 | tcf_act_for_each_action(i, act, actions) { |
Pablo Neira Ayuso | 3a7b686 | 2019-02-02 12:50:46 +0100 | [diff] [blame] | 3524 | struct flow_action_entry *entry; |
| 3525 | |
| 3526 | entry = &flow_action->entries[j]; |
Vlad Buslov | 7a47281 | 2020-02-17 12:12:09 +0200 | [diff] [blame] | 3527 | spin_lock_bh(&act->tcfa_lock); |
Jiri Pirko | 2008495 | 2020-02-25 11:45:18 +0100 | [diff] [blame] | 3528 | err = tcf_act_get_cookie(entry, act); |
| 3529 | if (err) |
| 3530 | goto err_out_locked; |
Jiri Pirko | 44f8658 | 2020-03-07 12:40:20 +0100 | [diff] [blame] | 3531 | |
Pablo Neira Ayuso | 16f8036 | 2020-05-06 20:34:50 +0200 | [diff] [blame] | 3532 | entry->hw_stats = tc_act_hw_stats(act->hw_stats); |
Baowen Zheng | 5a99590 | 2021-12-17 19:16:19 +0100 | [diff] [blame] | 3533 | entry->hw_index = act->tcfa_index; |
Baowen Zheng | c54e1d9 | 2021-12-17 19:16:21 +0100 | [diff] [blame] | 3534 | index = 0; |
| 3535 | err = tc_setup_offload_act(act, entry, &index); |
| 3536 | if (!err) |
| 3537 | j += index; |
| 3538 | else |
Vlad Buslov | 7a47281 | 2020-02-17 12:12:09 +0200 | [diff] [blame] | 3539 | goto err_out_locked; |
Vlad Buslov | 7a47281 | 2020-02-17 12:12:09 +0200 | [diff] [blame] | 3540 | spin_unlock_bh(&act->tcfa_lock); |
Pablo Neira Ayuso | 3a7b686 | 2019-02-02 12:50:46 +0100 | [diff] [blame] | 3541 | } |
Vlad Buslov | 9838b20 | 2019-08-26 16:45:03 +0300 | [diff] [blame] | 3542 | |
Pablo Neira Ayuso | 3a7b686 | 2019-02-02 12:50:46 +0100 | [diff] [blame] | 3543 | err_out: |
Vlad Buslov | 5a6ff4b | 2019-08-26 16:45:04 +0300 | [diff] [blame] | 3544 | if (err) |
Baowen Zheng | 9c1c0e1 | 2021-12-17 19:16:20 +0100 | [diff] [blame] | 3545 | tc_cleanup_offload_action(flow_action); |
Vlad Buslov | 5a6ff4b | 2019-08-26 16:45:04 +0300 | [diff] [blame] | 3546 | |
Vlad Buslov | 9838b20 | 2019-08-26 16:45:03 +0300 | [diff] [blame] | 3547 | return err; |
Vlad Buslov | 7a47281 | 2020-02-17 12:12:09 +0200 | [diff] [blame] | 3548 | err_out_locked: |
| 3549 | spin_unlock_bh(&act->tcfa_lock); |
| 3550 | goto err_out; |
Pablo Neira Ayuso | 3a7b686 | 2019-02-02 12:50:46 +0100 | [diff] [blame] | 3551 | } |
Baowen Zheng | 8cbfe93 | 2021-12-17 19:16:22 +0100 | [diff] [blame] | 3552 | |
| 3553 | int tc_setup_offload_action(struct flow_action *flow_action, |
| 3554 | const struct tcf_exts *exts) |
| 3555 | { |
| 3556 | #ifdef CONFIG_NET_CLS_ACT |
| 3557 | if (!exts) |
| 3558 | return 0; |
| 3559 | |
| 3560 | return tc_setup_action(flow_action, exts->actions); |
| 3561 | #else |
| 3562 | return 0; |
| 3563 | #endif |
| 3564 | } |
Baowen Zheng | 9c1c0e1 | 2021-12-17 19:16:20 +0100 | [diff] [blame] | 3565 | EXPORT_SYMBOL(tc_setup_offload_action); |
Pablo Neira Ayuso | 3a7b686 | 2019-02-02 12:50:46 +0100 | [diff] [blame] | 3566 | |
Pablo Neira Ayuso | e3ab786 | 2019-02-02 12:50:45 +0100 | [diff] [blame] | 3567 | unsigned int tcf_exts_num_actions(struct tcf_exts *exts) |
| 3568 | { |
| 3569 | unsigned int num_acts = 0; |
| 3570 | struct tc_action *act; |
| 3571 | int i; |
| 3572 | |
| 3573 | tcf_exts_for_each_action(i, act, exts) { |
| 3574 | if (is_tcf_pedit(act)) |
| 3575 | num_acts += tcf_pedit_nkeys(act); |
| 3576 | else |
| 3577 | num_acts++; |
| 3578 | } |
| 3579 | return num_acts; |
| 3580 | } |
| 3581 | EXPORT_SYMBOL(tcf_exts_num_actions); |
| 3582 | |
Petr Machata | 3625750 | 2020-06-27 01:45:26 +0300 | [diff] [blame] | 3583 | #ifdef CONFIG_NET_CLS_ACT |
| 3584 | static int tcf_qevent_parse_block_index(struct nlattr *block_index_attr, |
| 3585 | u32 *p_block_index, |
| 3586 | struct netlink_ext_ack *extack) |
| 3587 | { |
| 3588 | *p_block_index = nla_get_u32(block_index_attr); |
| 3589 | if (!*p_block_index) { |
| 3590 | NL_SET_ERR_MSG(extack, "Block number may not be zero"); |
| 3591 | return -EINVAL; |
| 3592 | } |
| 3593 | |
| 3594 | return 0; |
| 3595 | } |
| 3596 | |
| 3597 | int tcf_qevent_init(struct tcf_qevent *qe, struct Qdisc *sch, |
| 3598 | enum flow_block_binder_type binder_type, |
| 3599 | struct nlattr *block_index_attr, |
| 3600 | struct netlink_ext_ack *extack) |
| 3601 | { |
| 3602 | u32 block_index; |
| 3603 | int err; |
| 3604 | |
| 3605 | if (!block_index_attr) |
| 3606 | return 0; |
| 3607 | |
| 3608 | err = tcf_qevent_parse_block_index(block_index_attr, &block_index, extack); |
| 3609 | if (err) |
| 3610 | return err; |
| 3611 | |
| 3612 | if (!block_index) |
| 3613 | return 0; |
| 3614 | |
| 3615 | qe->info.binder_type = binder_type; |
| 3616 | qe->info.chain_head_change = tcf_chain_head_change_dflt; |
| 3617 | qe->info.chain_head_change_priv = &qe->filter_chain; |
| 3618 | qe->info.block_index = block_index; |
| 3619 | |
| 3620 | return tcf_block_get_ext(&qe->block, sch, &qe->info, extack); |
| 3621 | } |
| 3622 | EXPORT_SYMBOL(tcf_qevent_init); |
| 3623 | |
| 3624 | void tcf_qevent_destroy(struct tcf_qevent *qe, struct Qdisc *sch) |
| 3625 | { |
| 3626 | if (qe->info.block_index) |
| 3627 | tcf_block_put_ext(qe->block, sch, &qe->info); |
| 3628 | } |
| 3629 | EXPORT_SYMBOL(tcf_qevent_destroy); |
| 3630 | |
| 3631 | int tcf_qevent_validate_change(struct tcf_qevent *qe, struct nlattr *block_index_attr, |
| 3632 | struct netlink_ext_ack *extack) |
| 3633 | { |
| 3634 | u32 block_index; |
| 3635 | int err; |
| 3636 | |
| 3637 | if (!block_index_attr) |
| 3638 | return 0; |
| 3639 | |
| 3640 | err = tcf_qevent_parse_block_index(block_index_attr, &block_index, extack); |
| 3641 | if (err) |
| 3642 | return err; |
| 3643 | |
| 3644 | /* Bounce newly-configured block or change in block. */ |
| 3645 | if (block_index != qe->info.block_index) { |
| 3646 | NL_SET_ERR_MSG(extack, "Change of blocks is not supported"); |
| 3647 | return -EINVAL; |
| 3648 | } |
| 3649 | |
| 3650 | return 0; |
| 3651 | } |
| 3652 | EXPORT_SYMBOL(tcf_qevent_validate_change); |
| 3653 | |
| 3654 | struct sk_buff *tcf_qevent_handle(struct tcf_qevent *qe, struct Qdisc *sch, struct sk_buff *skb, |
Petr Machata | 55f656c | 2020-07-14 20:03:07 +0300 | [diff] [blame] | 3655 | struct sk_buff **to_free, int *ret) |
Petr Machata | 3625750 | 2020-06-27 01:45:26 +0300 | [diff] [blame] | 3656 | { |
| 3657 | struct tcf_result cl_res; |
| 3658 | struct tcf_proto *fl; |
| 3659 | |
| 3660 | if (!qe->info.block_index) |
| 3661 | return skb; |
| 3662 | |
| 3663 | fl = rcu_dereference_bh(qe->filter_chain); |
| 3664 | |
Davide Caratti | 3aa2605 | 2021-07-28 20:08:00 +0200 | [diff] [blame] | 3665 | switch (tcf_classify(skb, NULL, fl, &cl_res, false)) { |
Petr Machata | 3625750 | 2020-06-27 01:45:26 +0300 | [diff] [blame] | 3666 | case TC_ACT_SHOT: |
| 3667 | qdisc_qstats_drop(sch); |
| 3668 | __qdisc_drop(skb, to_free); |
| 3669 | *ret = __NET_XMIT_BYPASS; |
| 3670 | return NULL; |
| 3671 | case TC_ACT_STOLEN: |
| 3672 | case TC_ACT_QUEUED: |
| 3673 | case TC_ACT_TRAP: |
| 3674 | __qdisc_drop(skb, to_free); |
| 3675 | *ret = __NET_XMIT_STOLEN; |
| 3676 | return NULL; |
| 3677 | case TC_ACT_REDIRECT: |
| 3678 | skb_do_redirect(skb); |
| 3679 | *ret = __NET_XMIT_STOLEN; |
| 3680 | return NULL; |
| 3681 | } |
| 3682 | |
Petr Machata | 3625750 | 2020-06-27 01:45:26 +0300 | [diff] [blame] | 3683 | return skb; |
| 3684 | } |
| 3685 | EXPORT_SYMBOL(tcf_qevent_handle); |
| 3686 | |
| 3687 | int tcf_qevent_dump(struct sk_buff *skb, int attr_name, struct tcf_qevent *qe) |
| 3688 | { |
| 3689 | if (!qe->info.block_index) |
| 3690 | return 0; |
| 3691 | return nla_put_u32(skb, attr_name, qe->info.block_index); |
| 3692 | } |
| 3693 | EXPORT_SYMBOL(tcf_qevent_dump); |
| 3694 | #endif |
| 3695 | |
Jiri Pirko | 4861738 | 2018-01-17 11:46:46 +0100 | [diff] [blame] | 3696 | static __net_init int tcf_net_init(struct net *net) |
| 3697 | { |
| 3698 | struct tcf_net *tn = net_generic(net, tcf_net_id); |
| 3699 | |
Vlad Buslov | ab28162 | 2018-09-24 19:22:56 +0300 | [diff] [blame] | 3700 | spin_lock_init(&tn->idr_lock); |
Jiri Pirko | 4861738 | 2018-01-17 11:46:46 +0100 | [diff] [blame] | 3701 | idr_init(&tn->idr); |
| 3702 | return 0; |
| 3703 | } |
| 3704 | |
| 3705 | static void __net_exit tcf_net_exit(struct net *net) |
| 3706 | { |
| 3707 | struct tcf_net *tn = net_generic(net, tcf_net_id); |
| 3708 | |
| 3709 | idr_destroy(&tn->idr); |
| 3710 | } |
| 3711 | |
| 3712 | static struct pernet_operations tcf_net_ops = { |
| 3713 | .init = tcf_net_init, |
| 3714 | .exit = tcf_net_exit, |
| 3715 | .id = &tcf_net_id, |
| 3716 | .size = sizeof(struct tcf_net), |
| 3717 | }; |
| 3718 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3719 | static int __init tc_filter_init(void) |
| 3720 | { |
Jiri Pirko | 4861738 | 2018-01-17 11:46:46 +0100 | [diff] [blame] | 3721 | int err; |
| 3722 | |
Cong Wang | 7aa0045 | 2017-10-26 18:24:28 -0700 | [diff] [blame] | 3723 | tc_filter_wq = alloc_ordered_workqueue("tc_filter_workqueue", 0); |
| 3724 | if (!tc_filter_wq) |
| 3725 | return -ENOMEM; |
| 3726 | |
Jiri Pirko | 4861738 | 2018-01-17 11:46:46 +0100 | [diff] [blame] | 3727 | err = register_pernet_subsys(&tcf_net_ops); |
| 3728 | if (err) |
| 3729 | goto err_register_pernet_subsys; |
| 3730 | |
Vlad Buslov | 470502d | 2019-02-11 10:55:48 +0200 | [diff] [blame] | 3731 | rtnl_register(PF_UNSPEC, RTM_NEWTFILTER, tc_new_tfilter, NULL, |
| 3732 | RTNL_FLAG_DOIT_UNLOCKED); |
| 3733 | rtnl_register(PF_UNSPEC, RTM_DELTFILTER, tc_del_tfilter, NULL, |
| 3734 | RTNL_FLAG_DOIT_UNLOCKED); |
Vlad Buslov | c431f89 | 2018-05-31 09:52:53 +0300 | [diff] [blame] | 3735 | rtnl_register(PF_UNSPEC, RTM_GETTFILTER, tc_get_tfilter, |
Vlad Buslov | 470502d | 2019-02-11 10:55:48 +0200 | [diff] [blame] | 3736 | tc_dump_tfilter, RTNL_FLAG_DOIT_UNLOCKED); |
Jiri Pirko | 32a4f5e | 2018-07-23 09:23:06 +0200 | [diff] [blame] | 3737 | rtnl_register(PF_UNSPEC, RTM_NEWCHAIN, tc_ctl_chain, NULL, 0); |
| 3738 | rtnl_register(PF_UNSPEC, RTM_DELCHAIN, tc_ctl_chain, NULL, 0); |
| 3739 | rtnl_register(PF_UNSPEC, RTM_GETCHAIN, tc_ctl_chain, |
| 3740 | tc_dump_chain, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3741 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3742 | return 0; |
Jiri Pirko | 4861738 | 2018-01-17 11:46:46 +0100 | [diff] [blame] | 3743 | |
| 3744 | err_register_pernet_subsys: |
| 3745 | destroy_workqueue(tc_filter_wq); |
| 3746 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3747 | } |
| 3748 | |
| 3749 | subsys_initcall(tc_filter_init); |