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