Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * net/sched/cls_u32.c Ugly (or Universal) 32bit key Packet Classifier. |
| 4 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru> |
| 6 | * |
| 7 | * The filters are packed to hash tables of key nodes |
| 8 | * with a set of 32bit key/mask pairs at every node. |
| 9 | * Nodes reference next level hash tables etc. |
| 10 | * |
| 11 | * This scheme is the best universal classifier I managed to |
| 12 | * invent; it is not super-fast, but it is not slow (provided you |
| 13 | * program it correctly), and general enough. And its relative |
| 14 | * speed grows as the number of rules becomes larger. |
| 15 | * |
| 16 | * It seems that it represents the best middle point between |
| 17 | * speed and manageability both by human and by machine. |
| 18 | * |
| 19 | * It is especially useful for link sharing combined with QoS; |
| 20 | * pure RSVP doesn't need such a general approach and can use |
| 21 | * much simpler (and faster) schemes, sort of cls_rsvp.c. |
| 22 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | * nfmark match added by Catalin(ux aka Dino) BOIE <catab at umbrella.ro> |
| 24 | */ |
| 25 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/module.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 27 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/types.h> |
| 29 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/string.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <linux/errno.h> |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 32 | #include <linux/percpu.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <linux/rtnetlink.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include <linux/skbuff.h> |
Cong Wang | 7801db8 | 2014-07-17 17:34:53 -0700 | [diff] [blame] | 35 | #include <linux/bitmap.h> |
WANG Cong | 3cd904e | 2017-08-24 16:51:30 -0700 | [diff] [blame] | 36 | #include <linux/netdevice.h> |
| 37 | #include <linux/hash.h> |
Patrick McHardy | 0ba4805 | 2007-07-02 22:49:07 -0700 | [diff] [blame] | 38 | #include <net/netlink.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #include <net/act_api.h> |
| 40 | #include <net/pkt_cls.h> |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 41 | #include <linux/idr.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 43 | struct tc_u_knode { |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 44 | struct tc_u_knode __rcu *next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | u32 handle; |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 46 | struct tc_u_hnode __rcu *ht_up; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | struct tcf_exts exts; |
WANG Cong | 2519a60 | 2014-01-09 16:14:02 -0800 | [diff] [blame] | 48 | int ifindex; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | u8 fshift; |
| 50 | struct tcf_result res; |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 51 | struct tc_u_hnode __rcu *ht_down; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | #ifdef CONFIG_CLS_U32_PERF |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 53 | struct tc_u32_pcnt __percpu *pf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | #endif |
John Fastabend | 9e8ce79 | 2016-02-26 07:54:39 -0800 | [diff] [blame] | 55 | u32 flags; |
John Hurley | 530d995 | 2018-06-25 14:30:08 -0700 | [diff] [blame] | 56 | unsigned int in_hw_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | #ifdef CONFIG_CLS_U32_MARK |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 58 | u32 val; |
| 59 | u32 mask; |
| 60 | u32 __percpu *pcpu_success; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | #endif |
Cong Wang | aaa908f | 2018-05-23 15:26:53 -0700 | [diff] [blame] | 62 | struct rcu_work rwork; |
John Fastabend | 4e2840e | 2014-09-17 11:11:46 -0700 | [diff] [blame] | 63 | /* The 'sel' field MUST be the last field in structure to allow for |
| 64 | * tc_u32_keys allocated at end of structure. |
| 65 | */ |
| 66 | struct tc_u32_sel sel; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | }; |
| 68 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 69 | struct tc_u_hnode { |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 70 | struct tc_u_hnode __rcu *next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | u32 handle; |
| 72 | u32 prio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | int refcnt; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 74 | unsigned int divisor; |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 75 | struct idr handle_idr; |
Al Viro | b44ef84 | 2018-10-08 06:22:33 -0400 | [diff] [blame] | 76 | bool is_root; |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 77 | struct rcu_head rcu; |
Jakub Kicinski | f40fe58 | 2018-01-24 12:54:22 -0800 | [diff] [blame] | 78 | u32 flags; |
WANG Cong | 5778d39 | 2015-03-09 17:03:40 -0700 | [diff] [blame] | 79 | /* The 'ht' field MUST be the last field in structure to allow for |
| 80 | * more entries allocated at end of structure. |
| 81 | */ |
Gustavo A. R. Silva | d61491a | 2020-09-28 10:30:52 -0500 | [diff] [blame] | 82 | struct tc_u_knode __rcu *ht[]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | }; |
| 84 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 85 | struct tc_u_common { |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 86 | struct tc_u_hnode __rcu *hlist; |
Jiri Pirko | 339c21d | 2018-02-13 12:00:17 +0100 | [diff] [blame] | 87 | void *ptr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | int refcnt; |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 89 | struct idr handle_idr; |
WANG Cong | 3cd904e | 2017-08-24 16:51:30 -0700 | [diff] [blame] | 90 | struct hlist_node hnode; |
Al Viro | b245d32 | 2018-10-08 06:22:43 -0400 | [diff] [blame] | 91 | long knodes; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | }; |
| 93 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 94 | static inline unsigned int u32_hash_fold(__be32 key, |
| 95 | const struct tc_u32_sel *sel, |
| 96 | u8 fshift) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | { |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 98 | unsigned int h = ntohl(key & sel->hmask) >> fshift; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | |
| 100 | return h; |
| 101 | } |
| 102 | |
Jamal Hadi Salim | 5a7a555 | 2016-09-18 08:45:33 -0400 | [diff] [blame] | 103 | static int u32_classify(struct sk_buff *skb, const struct tcf_proto *tp, |
| 104 | struct tcf_result *res) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | { |
| 106 | struct { |
| 107 | struct tc_u_knode *knode; |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 108 | unsigned int off; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | } stack[TC_U32_MAXDEPTH]; |
| 110 | |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 111 | struct tc_u_hnode *ht = rcu_dereference_bh(tp->root); |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 112 | unsigned int off = skb_network_offset(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | struct tc_u_knode *n; |
| 114 | int sdepth = 0; |
| 115 | int off2 = 0; |
| 116 | int sel = 0; |
| 117 | #ifdef CONFIG_CLS_U32_PERF |
| 118 | int j; |
| 119 | #endif |
| 120 | int i, r; |
| 121 | |
| 122 | next_ht: |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 123 | n = rcu_dereference_bh(ht->ht[sel]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | |
| 125 | next_knode: |
| 126 | if (n) { |
| 127 | struct tc_u32_key *key = n->sel.keys; |
| 128 | |
| 129 | #ifdef CONFIG_CLS_U32_PERF |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 130 | __this_cpu_inc(n->pf->rcnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | j = 0; |
| 132 | #endif |
| 133 | |
Samudrala, Sridhar | d34e3e1 | 2016-05-12 17:08:23 -0700 | [diff] [blame] | 134 | if (tc_skip_sw(n->flags)) { |
| 135 | n = rcu_dereference_bh(n->next); |
| 136 | goto next_knode; |
| 137 | } |
| 138 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | #ifdef CONFIG_CLS_U32_MARK |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 140 | if ((skb->mark & n->mask) != n->val) { |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 141 | n = rcu_dereference_bh(n->next); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | goto next_knode; |
| 143 | } else { |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 144 | __this_cpu_inc(*n->pcpu_success); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | } |
| 146 | #endif |
| 147 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 148 | for (i = n->sel.nkeys; i > 0; i--, key++) { |
stephen hemminger | 66d50d2 | 2010-08-02 13:44:13 +0000 | [diff] [blame] | 149 | int toff = off + key->off + (off2 & key->offmask); |
stephen hemminger | 86fce3b | 2011-02-20 16:14:23 +0000 | [diff] [blame] | 150 | __be32 *data, hdata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | |
Dan Carpenter | 4e18b3e | 2010-10-04 02:28:36 +0000 | [diff] [blame] | 152 | if (skb_headroom(skb) + toff > INT_MAX) |
stephen hemminger | 66d50d2 | 2010-08-02 13:44:13 +0000 | [diff] [blame] | 153 | goto out; |
| 154 | |
stephen hemminger | 86fce3b | 2011-02-20 16:14:23 +0000 | [diff] [blame] | 155 | data = skb_header_pointer(skb, toff, 4, &hdata); |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 156 | if (!data) |
| 157 | goto out; |
| 158 | if ((*data ^ key->val) & key->mask) { |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 159 | n = rcu_dereference_bh(n->next); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | goto next_knode; |
| 161 | } |
| 162 | #ifdef CONFIG_CLS_U32_PERF |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 163 | __this_cpu_inc(n->pf->kcnts[j]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | j++; |
| 165 | #endif |
| 166 | } |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 167 | |
| 168 | ht = rcu_dereference_bh(n->ht_down); |
| 169 | if (!ht) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | check_terminal: |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 171 | if (n->sel.flags & TC_U32_TERMINAL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | |
| 173 | *res = n->res; |
WANG Cong | 2519a60 | 2014-01-09 16:14:02 -0800 | [diff] [blame] | 174 | if (!tcf_match_indev(skb, n->ifindex)) { |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 175 | n = rcu_dereference_bh(n->next); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | goto next_knode; |
| 177 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | #ifdef CONFIG_CLS_U32_PERF |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 179 | __this_cpu_inc(n->pf->rhit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | #endif |
| 181 | r = tcf_exts_exec(skb, &n->exts, res); |
| 182 | if (r < 0) { |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 183 | n = rcu_dereference_bh(n->next); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | goto next_knode; |
| 185 | } |
| 186 | |
| 187 | return r; |
| 188 | } |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 189 | n = rcu_dereference_bh(n->next); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | goto next_knode; |
| 191 | } |
| 192 | |
| 193 | /* PUSH */ |
| 194 | if (sdepth >= TC_U32_MAXDEPTH) |
| 195 | goto deadloop; |
| 196 | stack[sdepth].knode = n; |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 197 | stack[sdepth].off = off; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | sdepth++; |
| 199 | |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 200 | ht = rcu_dereference_bh(n->ht_down); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | sel = 0; |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 202 | if (ht->divisor) { |
stephen hemminger | 86fce3b | 2011-02-20 16:14:23 +0000 | [diff] [blame] | 203 | __be32 *data, hdata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 205 | data = skb_header_pointer(skb, off + n->sel.hoff, 4, |
stephen hemminger | 86fce3b | 2011-02-20 16:14:23 +0000 | [diff] [blame] | 206 | &hdata); |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 207 | if (!data) |
| 208 | goto out; |
| 209 | sel = ht->divisor & u32_hash_fold(*data, &n->sel, |
| 210 | n->fshift); |
| 211 | } |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 212 | if (!(n->sel.flags & (TC_U32_VAROFFSET | TC_U32_OFFSET | TC_U32_EAT))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | goto next_ht; |
| 214 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 215 | if (n->sel.flags & (TC_U32_OFFSET | TC_U32_VAROFFSET)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | off2 = n->sel.off + 3; |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 217 | if (n->sel.flags & TC_U32_VAROFFSET) { |
stephen hemminger | 86fce3b | 2011-02-20 16:14:23 +0000 | [diff] [blame] | 218 | __be16 *data, hdata; |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 219 | |
| 220 | data = skb_header_pointer(skb, |
| 221 | off + n->sel.offoff, |
stephen hemminger | 86fce3b | 2011-02-20 16:14:23 +0000 | [diff] [blame] | 222 | 2, &hdata); |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 223 | if (!data) |
| 224 | goto out; |
| 225 | off2 += ntohs(n->sel.offmask & *data) >> |
| 226 | n->sel.offshift; |
| 227 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | off2 &= ~3; |
| 229 | } |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 230 | if (n->sel.flags & TC_U32_EAT) { |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 231 | off += off2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | off2 = 0; |
| 233 | } |
| 234 | |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 235 | if (off < skb->len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | goto next_ht; |
| 237 | } |
| 238 | |
| 239 | /* POP */ |
| 240 | if (sdepth--) { |
| 241 | n = stack[sdepth].knode; |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 242 | ht = rcu_dereference_bh(n->ht_up); |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 243 | off = stack[sdepth].off; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | goto check_terminal; |
| 245 | } |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 246 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | return -1; |
| 248 | |
| 249 | deadloop: |
Joe Perches | e87cc47 | 2012-05-13 21:56:26 +0000 | [diff] [blame] | 250 | net_warn_ratelimited("cls_u32: dead loop\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | return -1; |
| 252 | } |
| 253 | |
Jamal Hadi Salim | 5a7a555 | 2016-09-18 08:45:33 -0400 | [diff] [blame] | 254 | static struct tc_u_hnode *u32_lookup_ht(struct tc_u_common *tp_c, u32 handle) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | { |
| 256 | struct tc_u_hnode *ht; |
| 257 | |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 258 | for (ht = rtnl_dereference(tp_c->hlist); |
| 259 | ht; |
| 260 | ht = rtnl_dereference(ht->next)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | if (ht->handle == handle) |
| 262 | break; |
| 263 | |
| 264 | return ht; |
| 265 | } |
| 266 | |
Jamal Hadi Salim | 5a7a555 | 2016-09-18 08:45:33 -0400 | [diff] [blame] | 267 | static struct tc_u_knode *u32_lookup_key(struct tc_u_hnode *ht, u32 handle) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | { |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 269 | unsigned int sel; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | struct tc_u_knode *n = NULL; |
| 271 | |
| 272 | sel = TC_U32_HASH(handle); |
| 273 | if (sel > ht->divisor) |
| 274 | goto out; |
| 275 | |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 276 | for (n = rtnl_dereference(ht->ht[sel]); |
| 277 | n; |
| 278 | n = rtnl_dereference(n->next)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | if (n->handle == handle) |
| 280 | break; |
| 281 | out: |
| 282 | return n; |
| 283 | } |
| 284 | |
| 285 | |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 286 | static void *u32_get(struct tcf_proto *tp, u32 handle) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | { |
| 288 | struct tc_u_hnode *ht; |
| 289 | struct tc_u_common *tp_c = tp->data; |
| 290 | |
| 291 | if (TC_U32_HTID(handle) == TC_U32_ROOT) |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 292 | ht = rtnl_dereference(tp->root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | else |
| 294 | ht = u32_lookup_ht(tp_c, TC_U32_HTID(handle)); |
| 295 | |
| 296 | if (!ht) |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 297 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | |
| 299 | if (TC_U32_KEY(handle) == 0) |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 300 | return ht; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 302 | return u32_lookup_key(ht, handle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | } |
| 304 | |
Matthew Wilcox | ffdc2d9 | 2017-11-28 12:05:54 -0500 | [diff] [blame] | 305 | /* Protected by rtnl lock */ |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 306 | static u32 gen_new_htid(struct tc_u_common *tp_c, struct tc_u_hnode *ptr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | { |
Matthew Wilcox | ffdc2d9 | 2017-11-28 12:05:54 -0500 | [diff] [blame] | 308 | int id = idr_alloc_cyclic(&tp_c->handle_idr, ptr, 1, 0x7FF, GFP_KERNEL); |
| 309 | if (id < 0) |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 310 | return 0; |
Matthew Wilcox | ffdc2d9 | 2017-11-28 12:05:54 -0500 | [diff] [blame] | 311 | return (id | 0x800U) << 20; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | } |
| 313 | |
WANG Cong | 3cd904e | 2017-08-24 16:51:30 -0700 | [diff] [blame] | 314 | static struct hlist_head *tc_u_common_hash; |
| 315 | |
| 316 | #define U32_HASH_SHIFT 10 |
| 317 | #define U32_HASH_SIZE (1 << U32_HASH_SHIFT) |
| 318 | |
Jiri Pirko | 339c21d | 2018-02-13 12:00:17 +0100 | [diff] [blame] | 319 | static void *tc_u_common_ptr(const struct tcf_proto *tp) |
| 320 | { |
| 321 | struct tcf_block *block = tp->chain->block; |
| 322 | |
| 323 | /* The block sharing is currently supported only |
| 324 | * for classless qdiscs. In that case we use block |
| 325 | * for tc_u_common identification. In case the |
| 326 | * block is not shared, block->q is a valid pointer |
| 327 | * and we can use that. That works for classful qdiscs. |
| 328 | */ |
| 329 | if (tcf_block_shared(block)) |
| 330 | return block; |
| 331 | else |
| 332 | return block->q; |
| 333 | } |
| 334 | |
Al Viro | 4895c42 | 2018-10-08 06:22:39 -0400 | [diff] [blame] | 335 | static struct hlist_head *tc_u_hash(void *key) |
WANG Cong | 3cd904e | 2017-08-24 16:51:30 -0700 | [diff] [blame] | 336 | { |
Al Viro | 4895c42 | 2018-10-08 06:22:39 -0400 | [diff] [blame] | 337 | return tc_u_common_hash + hash_ptr(key, U32_HASH_SHIFT); |
WANG Cong | 3cd904e | 2017-08-24 16:51:30 -0700 | [diff] [blame] | 338 | } |
| 339 | |
Al Viro | 4895c42 | 2018-10-08 06:22:39 -0400 | [diff] [blame] | 340 | static struct tc_u_common *tc_u_common_find(void *key) |
WANG Cong | 3cd904e | 2017-08-24 16:51:30 -0700 | [diff] [blame] | 341 | { |
| 342 | struct tc_u_common *tc; |
Al Viro | 4895c42 | 2018-10-08 06:22:39 -0400 | [diff] [blame] | 343 | hlist_for_each_entry(tc, tc_u_hash(key), hnode) { |
| 344 | if (tc->ptr == key) |
WANG Cong | 3cd904e | 2017-08-24 16:51:30 -0700 | [diff] [blame] | 345 | return tc; |
| 346 | } |
| 347 | return NULL; |
| 348 | } |
| 349 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | static int u32_init(struct tcf_proto *tp) |
| 351 | { |
| 352 | struct tc_u_hnode *root_ht; |
Al Viro | 4895c42 | 2018-10-08 06:22:39 -0400 | [diff] [blame] | 353 | void *key = tc_u_common_ptr(tp); |
| 354 | struct tc_u_common *tp_c = tc_u_common_find(key); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | |
Gustavo A. R. Silva | d61491a | 2020-09-28 10:30:52 -0500 | [diff] [blame] | 356 | root_ht = kzalloc(struct_size(root_ht, ht, 1), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | if (root_ht == NULL) |
| 358 | return -ENOBUFS; |
| 359 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | root_ht->refcnt++; |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 361 | root_ht->handle = tp_c ? gen_new_htid(tp_c, root_ht) : 0x80000000; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | root_ht->prio = tp->prio; |
Al Viro | b44ef84 | 2018-10-08 06:22:33 -0400 | [diff] [blame] | 363 | root_ht->is_root = true; |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 364 | idr_init(&root_ht->handle_idr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | |
| 366 | if (tp_c == NULL) { |
Gustavo A. R. Silva | d61491a | 2020-09-28 10:30:52 -0500 | [diff] [blame] | 367 | tp_c = kzalloc(struct_size(tp_c, hlist->ht, 1), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | if (tp_c == NULL) { |
| 369 | kfree(root_ht); |
| 370 | return -ENOBUFS; |
| 371 | } |
Al Viro | 4895c42 | 2018-10-08 06:22:39 -0400 | [diff] [blame] | 372 | tp_c->ptr = key; |
WANG Cong | 3cd904e | 2017-08-24 16:51:30 -0700 | [diff] [blame] | 373 | INIT_HLIST_NODE(&tp_c->hnode); |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 374 | idr_init(&tp_c->handle_idr); |
WANG Cong | 3cd904e | 2017-08-24 16:51:30 -0700 | [diff] [blame] | 375 | |
Al Viro | 4895c42 | 2018-10-08 06:22:39 -0400 | [diff] [blame] | 376 | hlist_add_head(&tp_c->hnode, tc_u_hash(key)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | } |
| 378 | |
| 379 | tp_c->refcnt++; |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 380 | RCU_INIT_POINTER(root_ht->next, tp_c->hlist); |
| 381 | rcu_assign_pointer(tp_c->hlist, root_ht); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | |
Al Viro | 6d4c407 | 2018-10-07 07:40:17 -0400 | [diff] [blame] | 383 | root_ht->refcnt++; |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 384 | rcu_assign_pointer(tp->root, root_ht); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | tp->data = tp_c; |
| 386 | return 0; |
| 387 | } |
| 388 | |
Al Viro | dc07c57 | 2018-10-08 06:22:36 -0400 | [diff] [blame] | 389 | static int u32_destroy_key(struct tc_u_knode *n, bool free_pf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | { |
Paolo Abeni | d7cdee5 | 2018-02-05 22:23:01 +0100 | [diff] [blame] | 391 | struct tc_u_hnode *ht = rtnl_dereference(n->ht_down); |
| 392 | |
WANG Cong | 18d0264 | 2014-09-25 10:26:37 -0700 | [diff] [blame] | 393 | tcf_exts_destroy(&n->exts); |
Cong Wang | 35c55fc | 2017-11-06 13:47:30 -0800 | [diff] [blame] | 394 | tcf_exts_put_net(&n->exts); |
Paolo Abeni | d7cdee5 | 2018-02-05 22:23:01 +0100 | [diff] [blame] | 395 | if (ht && --ht->refcnt == 0) |
| 396 | kfree(ht); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | #ifdef CONFIG_CLS_U32_PERF |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 398 | if (free_pf) |
| 399 | free_percpu(n->pf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | #endif |
John Fastabend | a1ddcfe | 2014-09-19 21:50:04 -0700 | [diff] [blame] | 401 | #ifdef CONFIG_CLS_U32_MARK |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 402 | if (free_pf) |
| 403 | free_percpu(n->pcpu_success); |
John Fastabend | a1ddcfe | 2014-09-19 21:50:04 -0700 | [diff] [blame] | 404 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | kfree(n); |
| 406 | return 0; |
| 407 | } |
| 408 | |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 409 | /* u32_delete_key_rcu should be called when free'ing a copied |
| 410 | * version of a tc_u_knode obtained from u32_init_knode(). When |
| 411 | * copies are obtained from u32_init_knode() the statistics are |
| 412 | * shared between the old and new copies to allow readers to |
| 413 | * continue to update the statistics during the copy. To support |
| 414 | * this the u32_delete_key_rcu variant does not free the percpu |
| 415 | * statistics. |
| 416 | */ |
Cong Wang | c0d378e | 2017-10-26 18:24:36 -0700 | [diff] [blame] | 417 | static void u32_delete_key_work(struct work_struct *work) |
| 418 | { |
Cong Wang | aaa908f | 2018-05-23 15:26:53 -0700 | [diff] [blame] | 419 | struct tc_u_knode *key = container_of(to_rcu_work(work), |
| 420 | struct tc_u_knode, |
| 421 | rwork); |
Cong Wang | c0d378e | 2017-10-26 18:24:36 -0700 | [diff] [blame] | 422 | rtnl_lock(); |
Al Viro | dc07c57 | 2018-10-08 06:22:36 -0400 | [diff] [blame] | 423 | u32_destroy_key(key, false); |
Cong Wang | c0d378e | 2017-10-26 18:24:36 -0700 | [diff] [blame] | 424 | rtnl_unlock(); |
| 425 | } |
| 426 | |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 427 | /* u32_delete_key_freepf_rcu is the rcu callback variant |
| 428 | * that free's the entire structure including the statistics |
| 429 | * percpu variables. Only use this if the key is not a copy |
| 430 | * returned by u32_init_knode(). See u32_delete_key_rcu() |
| 431 | * for the variant that should be used with keys return from |
| 432 | * u32_init_knode() |
| 433 | */ |
Cong Wang | c0d378e | 2017-10-26 18:24:36 -0700 | [diff] [blame] | 434 | static void u32_delete_key_freepf_work(struct work_struct *work) |
| 435 | { |
Cong Wang | aaa908f | 2018-05-23 15:26:53 -0700 | [diff] [blame] | 436 | struct tc_u_knode *key = container_of(to_rcu_work(work), |
| 437 | struct tc_u_knode, |
| 438 | rwork); |
Cong Wang | c0d378e | 2017-10-26 18:24:36 -0700 | [diff] [blame] | 439 | rtnl_lock(); |
Al Viro | dc07c57 | 2018-10-08 06:22:36 -0400 | [diff] [blame] | 440 | u32_destroy_key(key, true); |
Cong Wang | c0d378e | 2017-10-26 18:24:36 -0700 | [diff] [blame] | 441 | rtnl_unlock(); |
| 442 | } |
| 443 | |
Yang Yingliang | 82d567c | 2013-12-10 20:55:31 +0800 | [diff] [blame] | 444 | static int u32_delete_key(struct tcf_proto *tp, struct tc_u_knode *key) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | { |
Al Viro | b245d32 | 2018-10-08 06:22:43 -0400 | [diff] [blame] | 446 | struct tc_u_common *tp_c = tp->data; |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 447 | struct tc_u_knode __rcu **kp; |
| 448 | struct tc_u_knode *pkp; |
John Fastabend | a96366bf | 2014-09-15 23:30:49 -0700 | [diff] [blame] | 449 | struct tc_u_hnode *ht = rtnl_dereference(key->ht_up); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | |
| 451 | if (ht) { |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 452 | kp = &ht->ht[TC_U32_HASH(key->handle)]; |
| 453 | for (pkp = rtnl_dereference(*kp); pkp; |
| 454 | kp = &pkp->next, pkp = rtnl_dereference(*kp)) { |
| 455 | if (pkp == key) { |
| 456 | RCU_INIT_POINTER(*kp, key->next); |
Al Viro | b245d32 | 2018-10-08 06:22:43 -0400 | [diff] [blame] | 457 | tp_c->knodes--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | |
WANG Cong | a0efb80 | 2014-09-30 16:07:24 -0700 | [diff] [blame] | 459 | tcf_unbind_filter(tp, &key->res); |
Cong Wang | f12c643 | 2018-04-06 17:19:41 -0700 | [diff] [blame] | 460 | idr_remove(&ht->handle_idr, key->handle); |
Cong Wang | 35c55fc | 2017-11-06 13:47:30 -0800 | [diff] [blame] | 461 | tcf_exts_get_net(&key->exts); |
Cong Wang | aaa908f | 2018-05-23 15:26:53 -0700 | [diff] [blame] | 462 | tcf_queue_work(&key->rwork, u32_delete_key_freepf_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | return 0; |
| 464 | } |
| 465 | } |
| 466 | } |
Ilpo Järvinen | 547b792 | 2008-07-25 21:43:18 -0700 | [diff] [blame] | 467 | WARN_ON(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | return 0; |
| 469 | } |
| 470 | |
Jakub Kicinski | 458e704 | 2018-01-24 12:54:23 -0800 | [diff] [blame] | 471 | static void u32_clear_hw_hnode(struct tcf_proto *tp, struct tc_u_hnode *h, |
| 472 | struct netlink_ext_ack *extack) |
John Fastabend | a1b7c5f | 2016-02-16 21:17:09 -0800 | [diff] [blame] | 473 | { |
Jiri Pirko | 245dc51 | 2017-10-19 15:50:35 +0200 | [diff] [blame] | 474 | struct tcf_block *block = tp->chain->block; |
Jiri Pirko | de4784c | 2017-08-07 10:15:32 +0200 | [diff] [blame] | 475 | struct tc_cls_u32_offload cls_u32 = {}; |
John Fastabend | a1b7c5f | 2016-02-16 21:17:09 -0800 | [diff] [blame] | 476 | |
Pieter Jansen van Vuuren | d678714 | 2019-05-06 17:24:21 -0700 | [diff] [blame] | 477 | tc_cls_common_offload_init(&cls_u32.common, tp, h->flags, extack); |
Jiri Pirko | 7746041 | 2017-10-19 15:50:34 +0200 | [diff] [blame] | 478 | cls_u32.command = TC_CLSU32_DELETE_HNODE; |
| 479 | cls_u32.hnode.divisor = h->divisor; |
| 480 | cls_u32.hnode.handle = h->handle; |
| 481 | cls_u32.hnode.prio = h->prio; |
Jiri Pirko | de4784c | 2017-08-07 10:15:32 +0200 | [diff] [blame] | 482 | |
Vlad Buslov | 4011921 | 2019-08-26 16:44:59 +0300 | [diff] [blame] | 483 | tc_setup_cb_call(block, TC_SETUP_CLSU32, &cls_u32, false, true); |
John Fastabend | a1b7c5f | 2016-02-16 21:17:09 -0800 | [diff] [blame] | 484 | } |
| 485 | |
Jamal Hadi Salim | 5a7a555 | 2016-09-18 08:45:33 -0400 | [diff] [blame] | 486 | static int u32_replace_hw_hnode(struct tcf_proto *tp, struct tc_u_hnode *h, |
Quentin Monnet | 10a47e0 | 2018-01-19 17:44:45 -0800 | [diff] [blame] | 487 | u32 flags, struct netlink_ext_ack *extack) |
John Fastabend | a1b7c5f | 2016-02-16 21:17:09 -0800 | [diff] [blame] | 488 | { |
Jiri Pirko | 245dc51 | 2017-10-19 15:50:35 +0200 | [diff] [blame] | 489 | struct tcf_block *block = tp->chain->block; |
Jiri Pirko | de4784c | 2017-08-07 10:15:32 +0200 | [diff] [blame] | 490 | struct tc_cls_u32_offload cls_u32 = {}; |
Jiri Pirko | 245dc51 | 2017-10-19 15:50:35 +0200 | [diff] [blame] | 491 | bool skip_sw = tc_skip_sw(flags); |
| 492 | bool offloaded = false; |
Samudrala, Sridhar | d34e3e1 | 2016-05-12 17:08:23 -0700 | [diff] [blame] | 493 | int err; |
John Fastabend | a1b7c5f | 2016-02-16 21:17:09 -0800 | [diff] [blame] | 494 | |
Pieter Jansen van Vuuren | d678714 | 2019-05-06 17:24:21 -0700 | [diff] [blame] | 495 | tc_cls_common_offload_init(&cls_u32.common, tp, flags, extack); |
Jiri Pirko | de4784c | 2017-08-07 10:15:32 +0200 | [diff] [blame] | 496 | cls_u32.command = TC_CLSU32_NEW_HNODE; |
| 497 | cls_u32.hnode.divisor = h->divisor; |
| 498 | cls_u32.hnode.handle = h->handle; |
| 499 | cls_u32.hnode.prio = h->prio; |
John Fastabend | a1b7c5f | 2016-02-16 21:17:09 -0800 | [diff] [blame] | 500 | |
Vlad Buslov | 4011921 | 2019-08-26 16:44:59 +0300 | [diff] [blame] | 501 | err = tc_setup_cb_call(block, TC_SETUP_CLSU32, &cls_u32, skip_sw, true); |
Jiri Pirko | 245dc51 | 2017-10-19 15:50:35 +0200 | [diff] [blame] | 502 | if (err < 0) { |
Jakub Kicinski | 458e704 | 2018-01-24 12:54:23 -0800 | [diff] [blame] | 503 | u32_clear_hw_hnode(tp, h, NULL); |
Jakub Kicinski | d47a0f3 | 2016-06-06 16:16:48 +0100 | [diff] [blame] | 504 | return err; |
Jiri Pirko | 245dc51 | 2017-10-19 15:50:35 +0200 | [diff] [blame] | 505 | } else if (err > 0) { |
| 506 | offloaded = true; |
| 507 | } |
| 508 | |
| 509 | if (skip_sw && !offloaded) |
| 510 | return -EINVAL; |
Samudrala, Sridhar | d34e3e1 | 2016-05-12 17:08:23 -0700 | [diff] [blame] | 511 | |
| 512 | return 0; |
John Fastabend | a1b7c5f | 2016-02-16 21:17:09 -0800 | [diff] [blame] | 513 | } |
| 514 | |
Jakub Kicinski | 458e704 | 2018-01-24 12:54:23 -0800 | [diff] [blame] | 515 | static void u32_remove_hw_knode(struct tcf_proto *tp, struct tc_u_knode *n, |
| 516 | struct netlink_ext_ack *extack) |
John Fastabend | a1b7c5f | 2016-02-16 21:17:09 -0800 | [diff] [blame] | 517 | { |
Jiri Pirko | 245dc51 | 2017-10-19 15:50:35 +0200 | [diff] [blame] | 518 | struct tcf_block *block = tp->chain->block; |
Jiri Pirko | de4784c | 2017-08-07 10:15:32 +0200 | [diff] [blame] | 519 | struct tc_cls_u32_offload cls_u32 = {}; |
John Fastabend | a1b7c5f | 2016-02-16 21:17:09 -0800 | [diff] [blame] | 520 | |
Pieter Jansen van Vuuren | d678714 | 2019-05-06 17:24:21 -0700 | [diff] [blame] | 521 | tc_cls_common_offload_init(&cls_u32.common, tp, n->flags, extack); |
Jiri Pirko | 7746041 | 2017-10-19 15:50:34 +0200 | [diff] [blame] | 522 | cls_u32.command = TC_CLSU32_DELETE_KNODE; |
Jiri Pirko | caa7260 | 2018-01-17 11:46:50 +0100 | [diff] [blame] | 523 | cls_u32.knode.handle = n->handle; |
John Fastabend | a1b7c5f | 2016-02-16 21:17:09 -0800 | [diff] [blame] | 524 | |
Vlad Buslov | 4011921 | 2019-08-26 16:44:59 +0300 | [diff] [blame] | 525 | tc_setup_cb_destroy(block, tp, TC_SETUP_CLSU32, &cls_u32, false, |
| 526 | &n->flags, &n->in_hw_count, true); |
John Fastabend | a1b7c5f | 2016-02-16 21:17:09 -0800 | [diff] [blame] | 527 | } |
| 528 | |
Jamal Hadi Salim | 5a7a555 | 2016-09-18 08:45:33 -0400 | [diff] [blame] | 529 | static int u32_replace_hw_knode(struct tcf_proto *tp, struct tc_u_knode *n, |
Quentin Monnet | 10a47e0 | 2018-01-19 17:44:45 -0800 | [diff] [blame] | 530 | u32 flags, struct netlink_ext_ack *extack) |
John Fastabend | a1b7c5f | 2016-02-16 21:17:09 -0800 | [diff] [blame] | 531 | { |
Paolo Abeni | 058a6c0 | 2018-02-02 16:02:22 +0100 | [diff] [blame] | 532 | struct tc_u_hnode *ht = rtnl_dereference(n->ht_down); |
Jiri Pirko | 245dc51 | 2017-10-19 15:50:35 +0200 | [diff] [blame] | 533 | struct tcf_block *block = tp->chain->block; |
Jiri Pirko | de4784c | 2017-08-07 10:15:32 +0200 | [diff] [blame] | 534 | struct tc_cls_u32_offload cls_u32 = {}; |
Jiri Pirko | 245dc51 | 2017-10-19 15:50:35 +0200 | [diff] [blame] | 535 | bool skip_sw = tc_skip_sw(flags); |
Samudrala, Sridhar | d34e3e1 | 2016-05-12 17:08:23 -0700 | [diff] [blame] | 536 | int err; |
John Fastabend | a1b7c5f | 2016-02-16 21:17:09 -0800 | [diff] [blame] | 537 | |
Pieter Jansen van Vuuren | d678714 | 2019-05-06 17:24:21 -0700 | [diff] [blame] | 538 | tc_cls_common_offload_init(&cls_u32.common, tp, flags, extack); |
Jiri Pirko | de4784c | 2017-08-07 10:15:32 +0200 | [diff] [blame] | 539 | cls_u32.command = TC_CLSU32_REPLACE_KNODE; |
| 540 | cls_u32.knode.handle = n->handle; |
| 541 | cls_u32.knode.fshift = n->fshift; |
Jakub Kicinski | 201c44b | 2016-06-08 20:11:04 +0100 | [diff] [blame] | 542 | #ifdef CONFIG_CLS_U32_MARK |
Jiri Pirko | de4784c | 2017-08-07 10:15:32 +0200 | [diff] [blame] | 543 | cls_u32.knode.val = n->val; |
| 544 | cls_u32.knode.mask = n->mask; |
Jakub Kicinski | 201c44b | 2016-06-08 20:11:04 +0100 | [diff] [blame] | 545 | #else |
Jiri Pirko | de4784c | 2017-08-07 10:15:32 +0200 | [diff] [blame] | 546 | cls_u32.knode.val = 0; |
| 547 | cls_u32.knode.mask = 0; |
Jakub Kicinski | 201c44b | 2016-06-08 20:11:04 +0100 | [diff] [blame] | 548 | #endif |
Jiri Pirko | de4784c | 2017-08-07 10:15:32 +0200 | [diff] [blame] | 549 | cls_u32.knode.sel = &n->sel; |
Jakub Kicinski | 068ceb3 | 2018-11-19 15:21:46 -0800 | [diff] [blame] | 550 | cls_u32.knode.res = &n->res; |
Jiri Pirko | de4784c | 2017-08-07 10:15:32 +0200 | [diff] [blame] | 551 | cls_u32.knode.exts = &n->exts; |
Jakub Kicinski | 201c44b | 2016-06-08 20:11:04 +0100 | [diff] [blame] | 552 | if (n->ht_down) |
Paolo Abeni | 058a6c0 | 2018-02-02 16:02:22 +0100 | [diff] [blame] | 553 | cls_u32.knode.link_handle = ht->handle; |
Jakub Kicinski | 201c44b | 2016-06-08 20:11:04 +0100 | [diff] [blame] | 554 | |
Vlad Buslov | 4011921 | 2019-08-26 16:44:59 +0300 | [diff] [blame] | 555 | err = tc_setup_cb_add(block, tp, TC_SETUP_CLSU32, &cls_u32, skip_sw, |
| 556 | &n->flags, &n->in_hw_count, true); |
| 557 | if (err) { |
Jakub Kicinski | 458e704 | 2018-01-24 12:54:23 -0800 | [diff] [blame] | 558 | u32_remove_hw_knode(tp, n, NULL); |
Jakub Kicinski | 201c44b | 2016-06-08 20:11:04 +0100 | [diff] [blame] | 559 | return err; |
Jiri Pirko | 245dc51 | 2017-10-19 15:50:35 +0200 | [diff] [blame] | 560 | } |
| 561 | |
Colin Ian King | 0f04d05 | 2017-11-03 08:09:45 +0000 | [diff] [blame] | 562 | if (skip_sw && !(n->flags & TCA_CLS_FLAGS_IN_HW)) |
Jiri Pirko | 245dc51 | 2017-10-19 15:50:35 +0200 | [diff] [blame] | 563 | return -EINVAL; |
Samudrala, Sridhar | d34e3e1 | 2016-05-12 17:08:23 -0700 | [diff] [blame] | 564 | |
| 565 | return 0; |
John Fastabend | a1b7c5f | 2016-02-16 21:17:09 -0800 | [diff] [blame] | 566 | } |
| 567 | |
Jakub Kicinski | 458e704 | 2018-01-24 12:54:23 -0800 | [diff] [blame] | 568 | static void u32_clear_hnode(struct tcf_proto *tp, struct tc_u_hnode *ht, |
| 569 | struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | { |
Al Viro | b245d32 | 2018-10-08 06:22:43 -0400 | [diff] [blame] | 571 | struct tc_u_common *tp_c = tp->data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | struct tc_u_knode *n; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 573 | unsigned int h; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 575 | for (h = 0; h <= ht->divisor; h++) { |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 576 | while ((n = rtnl_dereference(ht->ht[h])) != NULL) { |
| 577 | RCU_INIT_POINTER(ht->ht[h], |
| 578 | rtnl_dereference(n->next)); |
Al Viro | b245d32 | 2018-10-08 06:22:43 -0400 | [diff] [blame] | 579 | tp_c->knodes--; |
WANG Cong | a0efb80 | 2014-09-30 16:07:24 -0700 | [diff] [blame] | 580 | tcf_unbind_filter(tp, &n->res); |
Jakub Kicinski | 458e704 | 2018-01-24 12:54:23 -0800 | [diff] [blame] | 581 | u32_remove_hw_knode(tp, n, extack); |
Matthew Wilcox | 9c16094 | 2017-11-28 09:48:43 -0500 | [diff] [blame] | 582 | idr_remove(&ht->handle_idr, n->handle); |
Cong Wang | 35c55fc | 2017-11-06 13:47:30 -0800 | [diff] [blame] | 583 | if (tcf_exts_get_net(&n->exts)) |
Cong Wang | aaa908f | 2018-05-23 15:26:53 -0700 | [diff] [blame] | 584 | tcf_queue_work(&n->rwork, u32_delete_key_freepf_work); |
Cong Wang | 35c55fc | 2017-11-06 13:47:30 -0800 | [diff] [blame] | 585 | else |
Al Viro | dc07c57 | 2018-10-08 06:22:36 -0400 | [diff] [blame] | 586 | u32_destroy_key(n, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | } |
| 588 | } |
| 589 | } |
| 590 | |
Jakub Kicinski | 458e704 | 2018-01-24 12:54:23 -0800 | [diff] [blame] | 591 | static int u32_destroy_hnode(struct tcf_proto *tp, struct tc_u_hnode *ht, |
| 592 | struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | { |
| 594 | struct tc_u_common *tp_c = tp->data; |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 595 | struct tc_u_hnode __rcu **hn; |
| 596 | struct tc_u_hnode *phn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | |
Al Viro | 6d4c407 | 2018-10-07 07:40:17 -0400 | [diff] [blame] | 598 | WARN_ON(--ht->refcnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | |
Jakub Kicinski | 458e704 | 2018-01-24 12:54:23 -0800 | [diff] [blame] | 600 | u32_clear_hnode(tp, ht, extack); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 602 | hn = &tp_c->hlist; |
| 603 | for (phn = rtnl_dereference(*hn); |
| 604 | phn; |
| 605 | hn = &phn->next, phn = rtnl_dereference(*hn)) { |
| 606 | if (phn == ht) { |
Jakub Kicinski | 458e704 | 2018-01-24 12:54:23 -0800 | [diff] [blame] | 607 | u32_clear_hw_hnode(tp, ht, extack); |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 608 | idr_destroy(&ht->handle_idr); |
Matthew Wilcox | 9c16094 | 2017-11-28 09:48:43 -0500 | [diff] [blame] | 609 | idr_remove(&tp_c->handle_idr, ht->handle); |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 610 | RCU_INIT_POINTER(*hn, ht->next); |
| 611 | kfree_rcu(ht, rcu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | return 0; |
| 613 | } |
| 614 | } |
| 615 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | return -ENOENT; |
| 617 | } |
| 618 | |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 619 | static void u32_destroy(struct tcf_proto *tp, bool rtnl_held, |
| 620 | struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | { |
| 622 | struct tc_u_common *tp_c = tp->data; |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 623 | struct tc_u_hnode *root_ht = rtnl_dereference(tp->root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | |
Ilpo Järvinen | 547b792 | 2008-07-25 21:43:18 -0700 | [diff] [blame] | 625 | WARN_ON(root_ht == NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | |
Al Viro | 6d4c407 | 2018-10-07 07:40:17 -0400 | [diff] [blame] | 627 | if (root_ht && --root_ht->refcnt == 1) |
Jakub Kicinski | 458e704 | 2018-01-24 12:54:23 -0800 | [diff] [blame] | 628 | u32_destroy_hnode(tp, root_ht, extack); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | |
| 630 | if (--tp_c->refcnt == 0) { |
| 631 | struct tc_u_hnode *ht; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | |
WANG Cong | 3cd904e | 2017-08-24 16:51:30 -0700 | [diff] [blame] | 633 | hlist_del(&tp_c->hnode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 635 | while ((ht = rtnl_dereference(tp_c->hlist)) != NULL) { |
Paolo Abeni | d7cdee5 | 2018-02-05 22:23:01 +0100 | [diff] [blame] | 636 | u32_clear_hnode(tp, ht, extack); |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 637 | RCU_INIT_POINTER(tp_c->hlist, ht->next); |
Paolo Abeni | d7cdee5 | 2018-02-05 22:23:01 +0100 | [diff] [blame] | 638 | |
| 639 | /* u32_destroy_key() will later free ht for us, if it's |
| 640 | * still referenced by some knode |
| 641 | */ |
| 642 | if (--ht->refcnt == 0) |
| 643 | kfree_rcu(ht, rcu); |
Stephen Hemminger | 3ff50b7 | 2007-04-20 17:09:22 -0700 | [diff] [blame] | 644 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 646 | idr_destroy(&tp_c->handle_idr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | kfree(tp_c); |
| 648 | } |
| 649 | |
| 650 | tp->data = NULL; |
| 651 | } |
| 652 | |
Alexander Aring | 571acf2 | 2018-01-18 11:20:53 -0500 | [diff] [blame] | 653 | static int u32_delete(struct tcf_proto *tp, void *arg, bool *last, |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 654 | bool rtnl_held, struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | { |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 656 | struct tc_u_hnode *ht = arg; |
WANG Cong | 763dbf6 | 2017-04-19 14:21:21 -0700 | [diff] [blame] | 657 | struct tc_u_common *tp_c = tp->data; |
| 658 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | |
John Fastabend | a1b7c5f | 2016-02-16 21:17:09 -0800 | [diff] [blame] | 660 | if (TC_U32_KEY(ht->handle)) { |
Jakub Kicinski | 458e704 | 2018-01-24 12:54:23 -0800 | [diff] [blame] | 661 | u32_remove_hw_knode(tp, (struct tc_u_knode *)ht, extack); |
WANG Cong | 763dbf6 | 2017-04-19 14:21:21 -0700 | [diff] [blame] | 662 | ret = u32_delete_key(tp, (struct tc_u_knode *)ht); |
| 663 | goto out; |
John Fastabend | a1b7c5f | 2016-02-16 21:17:09 -0800 | [diff] [blame] | 664 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | |
Al Viro | b44ef84 | 2018-10-08 06:22:33 -0400 | [diff] [blame] | 666 | if (ht->is_root) { |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 667 | NL_SET_ERR_MSG_MOD(extack, "Not allowed to delete root node"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | return -EINVAL; |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 669 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | |
Jarek Poplawski | e56cfad | 2008-04-12 18:37:13 -0700 | [diff] [blame] | 671 | if (ht->refcnt == 1) { |
Jakub Kicinski | 458e704 | 2018-01-24 12:54:23 -0800 | [diff] [blame] | 672 | u32_destroy_hnode(tp, ht, extack); |
Jarek Poplawski | e56cfad | 2008-04-12 18:37:13 -0700 | [diff] [blame] | 673 | } else { |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 674 | NL_SET_ERR_MSG_MOD(extack, "Can not delete in-use filter"); |
Jarek Poplawski | e56cfad | 2008-04-12 18:37:13 -0700 | [diff] [blame] | 675 | return -EBUSY; |
| 676 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | |
WANG Cong | 763dbf6 | 2017-04-19 14:21:21 -0700 | [diff] [blame] | 678 | out: |
Al Viro | a030598 | 2018-10-08 06:22:44 -0400 | [diff] [blame] | 679 | *last = tp_c->refcnt == 1 && tp_c->knodes == 0; |
WANG Cong | 763dbf6 | 2017-04-19 14:21:21 -0700 | [diff] [blame] | 680 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | } |
| 682 | |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 683 | static u32 gen_new_kid(struct tc_u_hnode *ht, u32 htid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | { |
Matthew Wilcox | f730cb9 | 2017-11-28 13:45:02 -0500 | [diff] [blame] | 685 | u32 index = htid | 0x800; |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 686 | u32 max = htid | 0xFFF; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | |
Matthew Wilcox | f730cb9 | 2017-11-28 13:45:02 -0500 | [diff] [blame] | 688 | if (idr_alloc_u32(&ht->handle_idr, NULL, &index, max, GFP_KERNEL)) { |
| 689 | index = htid + 1; |
| 690 | if (idr_alloc_u32(&ht->handle_idr, NULL, &index, max, |
| 691 | GFP_KERNEL)) |
| 692 | index = max; |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 693 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | |
Matthew Wilcox | f730cb9 | 2017-11-28 13:45:02 -0500 | [diff] [blame] | 695 | return index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | } |
| 697 | |
Patrick McHardy | 6fa8c01 | 2008-01-23 20:36:12 -0800 | [diff] [blame] | 698 | static const struct nla_policy u32_policy[TCA_U32_MAX + 1] = { |
| 699 | [TCA_U32_CLASSID] = { .type = NLA_U32 }, |
| 700 | [TCA_U32_HASH] = { .type = NLA_U32 }, |
| 701 | [TCA_U32_LINK] = { .type = NLA_U32 }, |
| 702 | [TCA_U32_DIVISOR] = { .type = NLA_U32 }, |
| 703 | [TCA_U32_SEL] = { .len = sizeof(struct tc_u32_sel) }, |
| 704 | [TCA_U32_INDEV] = { .type = NLA_STRING, .len = IFNAMSIZ }, |
| 705 | [TCA_U32_MARK] = { .len = sizeof(struct tc_u32_mark) }, |
John Fastabend | 9e8ce79 | 2016-02-26 07:54:39 -0800 | [diff] [blame] | 706 | [TCA_U32_FLAGS] = { .type = NLA_U32 }, |
Patrick McHardy | 6fa8c01 | 2008-01-23 20:36:12 -0800 | [diff] [blame] | 707 | }; |
| 708 | |
Benjamin LaHaise | c1b5273 | 2013-01-14 05:15:39 +0000 | [diff] [blame] | 709 | static int u32_set_parms(struct net *net, struct tcf_proto *tp, |
Al Viro | 8a8065f | 2018-10-08 06:22:42 -0400 | [diff] [blame] | 710 | unsigned long base, |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 711 | struct tc_u_knode *n, struct nlattr **tb, |
Baowen Zheng | c86e020 | 2021-12-17 19:16:28 +0100 | [diff] [blame] | 712 | struct nlattr *est, u32 flags, u32 fl_flags, |
Alexander Aring | 50a5619 | 2018-01-18 11:20:52 -0500 | [diff] [blame] | 713 | struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | { |
WANG Cong | b9a24bb | 2016-08-19 12:36:54 -0700 | [diff] [blame] | 715 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | |
Baowen Zheng | c86e020 | 2021-12-17 19:16:28 +0100 | [diff] [blame] | 717 | err = tcf_exts_validate_ex(net, tp, tb, est, &n->exts, flags, |
| 718 | fl_flags, extack); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | if (err < 0) |
| 720 | return err; |
| 721 | |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 722 | if (tb[TCA_U32_LINK]) { |
Patrick McHardy | 1587bac | 2008-01-23 20:35:03 -0800 | [diff] [blame] | 723 | u32 handle = nla_get_u32(tb[TCA_U32_LINK]); |
Patrick McHardy | 47a1a1d | 2008-11-19 08:03:09 +0000 | [diff] [blame] | 724 | struct tc_u_hnode *ht_down = NULL, *ht_old; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 726 | if (TC_U32_KEY(handle)) { |
| 727 | NL_SET_ERR_MSG_MOD(extack, "u32 Link handle must be a hash table"); |
Jiri Pirko | 705c709 | 2017-08-04 14:29:14 +0200 | [diff] [blame] | 728 | return -EINVAL; |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 729 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 730 | |
| 731 | if (handle) { |
Al Viro | 8a8065f | 2018-10-08 06:22:42 -0400 | [diff] [blame] | 732 | ht_down = u32_lookup_ht(tp->data, handle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 734 | if (!ht_down) { |
| 735 | NL_SET_ERR_MSG_MOD(extack, "Link hash table not found"); |
Jiri Pirko | 705c709 | 2017-08-04 14:29:14 +0200 | [diff] [blame] | 736 | return -EINVAL; |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 737 | } |
Al Viro | 27594ec | 2018-10-08 06:22:34 -0400 | [diff] [blame] | 738 | if (ht_down->is_root) { |
| 739 | NL_SET_ERR_MSG_MOD(extack, "Not linking to root node"); |
| 740 | return -EINVAL; |
| 741 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | ht_down->refcnt++; |
| 743 | } |
| 744 | |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 745 | ht_old = rtnl_dereference(n->ht_down); |
| 746 | rcu_assign_pointer(n->ht_down, ht_down); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | |
Patrick McHardy | 47a1a1d | 2008-11-19 08:03:09 +0000 | [diff] [blame] | 748 | if (ht_old) |
| 749 | ht_old->refcnt--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | } |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 751 | if (tb[TCA_U32_CLASSID]) { |
Patrick McHardy | 1587bac | 2008-01-23 20:35:03 -0800 | [diff] [blame] | 752 | n->res.classid = nla_get_u32(tb[TCA_U32_CLASSID]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 753 | tcf_bind_filter(tp, &n->res, base); |
| 754 | } |
| 755 | |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 756 | if (tb[TCA_U32_INDEV]) { |
WANG Cong | 2519a60 | 2014-01-09 16:14:02 -0800 | [diff] [blame] | 757 | int ret; |
Alexander Aring | 1057c55 | 2018-01-18 11:20:54 -0500 | [diff] [blame] | 758 | ret = tcf_change_indev(net, tb[TCA_U32_INDEV], extack); |
WANG Cong | 2519a60 | 2014-01-09 16:14:02 -0800 | [diff] [blame] | 759 | if (ret < 0) |
Jiri Pirko | 705c709 | 2017-08-04 14:29:14 +0200 | [diff] [blame] | 760 | return -EINVAL; |
WANG Cong | 2519a60 | 2014-01-09 16:14:02 -0800 | [diff] [blame] | 761 | n->ifindex = ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | } |
| 765 | |
Jamal Hadi Salim | 5a7a555 | 2016-09-18 08:45:33 -0400 | [diff] [blame] | 766 | static void u32_replace_knode(struct tcf_proto *tp, struct tc_u_common *tp_c, |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 767 | struct tc_u_knode *n) |
| 768 | { |
| 769 | struct tc_u_knode __rcu **ins; |
| 770 | struct tc_u_knode *pins; |
| 771 | struct tc_u_hnode *ht; |
| 772 | |
| 773 | if (TC_U32_HTID(n->handle) == TC_U32_ROOT) |
| 774 | ht = rtnl_dereference(tp->root); |
| 775 | else |
| 776 | ht = u32_lookup_ht(tp_c, TC_U32_HTID(n->handle)); |
| 777 | |
| 778 | ins = &ht->ht[TC_U32_HASH(n->handle)]; |
| 779 | |
| 780 | /* The node must always exist for it to be replaced if this is not the |
| 781 | * case then something went very wrong elsewhere. |
| 782 | */ |
| 783 | for (pins = rtnl_dereference(*ins); ; |
| 784 | ins = &pins->next, pins = rtnl_dereference(*ins)) |
| 785 | if (pins->handle == n->handle) |
| 786 | break; |
| 787 | |
Matthew Wilcox | 234a462 | 2017-11-28 09:56:36 -0500 | [diff] [blame] | 788 | idr_replace(&ht->handle_idr, n, n->handle); |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 789 | RCU_INIT_POINTER(n->next, pins->next); |
| 790 | rcu_assign_pointer(*ins, n); |
| 791 | } |
| 792 | |
Cong Wang | 1421510 | 2019-02-20 21:37:42 -0800 | [diff] [blame] | 793 | static struct tc_u_knode *u32_init_knode(struct net *net, struct tcf_proto *tp, |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 794 | struct tc_u_knode *n) |
| 795 | { |
Paolo Abeni | 058a6c0 | 2018-02-02 16:02:22 +0100 | [diff] [blame] | 796 | struct tc_u_hnode *ht = rtnl_dereference(n->ht_down); |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 797 | struct tc_u32_sel *s = &n->sel; |
Paolo Abeni | 058a6c0 | 2018-02-02 16:02:22 +0100 | [diff] [blame] | 798 | struct tc_u_knode *new; |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 799 | |
Gustavo A. R. Silva | c5eb179 | 2020-06-18 09:53:42 -0500 | [diff] [blame] | 800 | new = kzalloc(struct_size(new, sel.keys, s->nkeys), GFP_KERNEL); |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 801 | if (!new) |
| 802 | return NULL; |
| 803 | |
| 804 | RCU_INIT_POINTER(new->next, n->next); |
| 805 | new->handle = n->handle; |
| 806 | RCU_INIT_POINTER(new->ht_up, n->ht_up); |
| 807 | |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 808 | new->ifindex = n->ifindex; |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 809 | new->fshift = n->fshift; |
| 810 | new->res = n->res; |
John Fastabend | 9e8ce79 | 2016-02-26 07:54:39 -0800 | [diff] [blame] | 811 | new->flags = n->flags; |
Paolo Abeni | 058a6c0 | 2018-02-02 16:02:22 +0100 | [diff] [blame] | 812 | RCU_INIT_POINTER(new->ht_down, ht); |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 813 | |
| 814 | /* bump reference count as long as we hold pointer to structure */ |
Paolo Abeni | 058a6c0 | 2018-02-02 16:02:22 +0100 | [diff] [blame] | 815 | if (ht) |
| 816 | ht->refcnt++; |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 817 | |
| 818 | #ifdef CONFIG_CLS_U32_PERF |
| 819 | /* Statistics may be incremented by readers during update |
| 820 | * so we must keep them in tact. When the node is later destroyed |
| 821 | * a special destroy call must be made to not free the pf memory. |
| 822 | */ |
| 823 | new->pf = n->pf; |
| 824 | #endif |
| 825 | |
| 826 | #ifdef CONFIG_CLS_U32_MARK |
| 827 | new->val = n->val; |
| 828 | new->mask = n->mask; |
| 829 | /* Similarly success statistics must be moved as pointers */ |
| 830 | new->pcpu_success = n->pcpu_success; |
| 831 | #endif |
Gustavo A. R. Silva | e512fcf | 2019-05-01 11:23:15 -0500 | [diff] [blame] | 832 | memcpy(&new->sel, s, struct_size(s, keys, s->nkeys)); |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 833 | |
Cong Wang | 1421510 | 2019-02-20 21:37:42 -0800 | [diff] [blame] | 834 | if (tcf_exts_init(&new->exts, net, TCA_U32_ACT, TCA_U32_POLICE)) { |
WANG Cong | b9a24bb | 2016-08-19 12:36:54 -0700 | [diff] [blame] | 835 | kfree(new); |
| 836 | return NULL; |
| 837 | } |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 838 | |
| 839 | return new; |
| 840 | } |
| 841 | |
Benjamin LaHaise | c1b5273 | 2013-01-14 05:15:39 +0000 | [diff] [blame] | 842 | static int u32_change(struct net *net, struct sk_buff *in_skb, |
Eric W. Biederman | af4c664 | 2012-05-25 13:42:45 -0600 | [diff] [blame] | 843 | struct tcf_proto *tp, unsigned long base, u32 handle, |
Cong Wang | 695176b | 2021-07-29 16:12:14 -0700 | [diff] [blame] | 844 | struct nlattr **tca, void **arg, u32 flags, |
Alexander Aring | 7306db3 | 2018-01-18 11:20:51 -0500 | [diff] [blame] | 845 | struct netlink_ext_ack *extack) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 846 | { |
| 847 | struct tc_u_common *tp_c = tp->data; |
| 848 | struct tc_u_hnode *ht; |
| 849 | struct tc_u_knode *n; |
| 850 | struct tc_u32_sel *s; |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 851 | struct nlattr *opt = tca[TCA_OPTIONS]; |
| 852 | struct nlattr *tb[TCA_U32_MAX + 1]; |
Cong Wang | 695176b | 2021-07-29 16:12:14 -0700 | [diff] [blame] | 853 | u32 htid, userflags = 0; |
Kees Cook | 98c8f12 | 2018-08-25 22:58:01 -0700 | [diff] [blame] | 854 | size_t sel_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | int err; |
| 856 | |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 857 | if (!opt) { |
| 858 | if (handle) { |
| 859 | NL_SET_ERR_MSG_MOD(extack, "Filter handle requires options"); |
| 860 | return -EINVAL; |
| 861 | } else { |
| 862 | return 0; |
| 863 | } |
| 864 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 866 | err = nla_parse_nested_deprecated(tb, TCA_U32_MAX, opt, u32_policy, |
| 867 | extack); |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 868 | if (err < 0) |
| 869 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | |
Samudrala, Sridhar | d34e3e1 | 2016-05-12 17:08:23 -0700 | [diff] [blame] | 871 | if (tb[TCA_U32_FLAGS]) { |
Cong Wang | 695176b | 2021-07-29 16:12:14 -0700 | [diff] [blame] | 872 | userflags = nla_get_u32(tb[TCA_U32_FLAGS]); |
| 873 | if (!tc_flags_valid(userflags)) { |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 874 | NL_SET_ERR_MSG_MOD(extack, "Invalid filter flags"); |
Jakub Kicinski | 1a0f7d2 | 2016-06-06 16:16:47 +0100 | [diff] [blame] | 875 | return -EINVAL; |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 876 | } |
Samudrala, Sridhar | d34e3e1 | 2016-05-12 17:08:23 -0700 | [diff] [blame] | 877 | } |
John Fastabend | 9e8ce79 | 2016-02-26 07:54:39 -0800 | [diff] [blame] | 878 | |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 879 | n = *arg; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 880 | if (n) { |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 881 | struct tc_u_knode *new; |
| 882 | |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 883 | if (TC_U32_KEY(n->handle) == 0) { |
| 884 | NL_SET_ERR_MSG_MOD(extack, "Key node id cannot be zero"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | return -EINVAL; |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 886 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 | |
Cong Wang | 695176b | 2021-07-29 16:12:14 -0700 | [diff] [blame] | 888 | if ((n->flags ^ userflags) & |
Ivan Vecera | eb53f7a | 2018-02-08 16:10:39 +0100 | [diff] [blame] | 889 | ~(TCA_CLS_FLAGS_IN_HW | TCA_CLS_FLAGS_NOT_IN_HW)) { |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 890 | NL_SET_ERR_MSG_MOD(extack, "Key node flags do not match passed flags"); |
John Fastabend | 9e8ce79 | 2016-02-26 07:54:39 -0800 | [diff] [blame] | 891 | return -EINVAL; |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 892 | } |
John Fastabend | 9e8ce79 | 2016-02-26 07:54:39 -0800 | [diff] [blame] | 893 | |
Cong Wang | 1421510 | 2019-02-20 21:37:42 -0800 | [diff] [blame] | 894 | new = u32_init_knode(net, tp, n); |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 895 | if (!new) |
| 896 | return -ENOMEM; |
| 897 | |
Al Viro | 8a8065f | 2018-10-08 06:22:42 -0400 | [diff] [blame] | 898 | err = u32_set_parms(net, tp, base, new, tb, |
Baowen Zheng | c86e020 | 2021-12-17 19:16:28 +0100 | [diff] [blame] | 899 | tca[TCA_RATE], flags, new->flags, |
| 900 | extack); |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 901 | |
| 902 | if (err) { |
Al Viro | dc07c57 | 2018-10-08 06:22:36 -0400 | [diff] [blame] | 903 | u32_destroy_key(new, false); |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 904 | return err; |
| 905 | } |
| 906 | |
Quentin Monnet | 10a47e0 | 2018-01-19 17:44:45 -0800 | [diff] [blame] | 907 | err = u32_replace_hw_knode(tp, new, flags, extack); |
Samudrala, Sridhar | d34e3e1 | 2016-05-12 17:08:23 -0700 | [diff] [blame] | 908 | if (err) { |
Al Viro | dc07c57 | 2018-10-08 06:22:36 -0400 | [diff] [blame] | 909 | u32_destroy_key(new, false); |
Samudrala, Sridhar | d34e3e1 | 2016-05-12 17:08:23 -0700 | [diff] [blame] | 910 | return err; |
| 911 | } |
| 912 | |
Or Gerlitz | 24d3dc6 | 2017-02-16 10:31:15 +0200 | [diff] [blame] | 913 | if (!tc_in_hw(new->flags)) |
| 914 | new->flags |= TCA_CLS_FLAGS_NOT_IN_HW; |
| 915 | |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 916 | u32_replace_knode(tp, tp_c, new); |
WANG Cong | a0efb80 | 2014-09-30 16:07:24 -0700 | [diff] [blame] | 917 | tcf_unbind_filter(tp, &n->res); |
Cong Wang | 35c55fc | 2017-11-06 13:47:30 -0800 | [diff] [blame] | 918 | tcf_exts_get_net(&n->exts); |
Cong Wang | aaa908f | 2018-05-23 15:26:53 -0700 | [diff] [blame] | 919 | tcf_queue_work(&n->rwork, u32_delete_key_work); |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 920 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | } |
| 922 | |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 923 | if (tb[TCA_U32_DIVISOR]) { |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 924 | unsigned int divisor = nla_get_u32(tb[TCA_U32_DIVISOR]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | |
Al Viro | 2f0c982 | 2018-10-08 06:22:35 -0400 | [diff] [blame] | 926 | if (!is_power_of_2(divisor)) { |
| 927 | NL_SET_ERR_MSG_MOD(extack, "Divisor is not a power of 2"); |
| 928 | return -EINVAL; |
| 929 | } |
| 930 | if (divisor-- > 0x100) { |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 931 | NL_SET_ERR_MSG_MOD(extack, "Exceeded maximum 256 hash buckets"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | return -EINVAL; |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 933 | } |
| 934 | if (TC_U32_KEY(handle)) { |
| 935 | NL_SET_ERR_MSG_MOD(extack, "Divisor can only be used on a hash table"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | return -EINVAL; |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 937 | } |
Gustavo A. R. Silva | d61491a | 2020-09-28 10:30:52 -0500 | [diff] [blame] | 938 | ht = kzalloc(struct_size(ht, ht, divisor + 1), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | if (ht == NULL) |
| 940 | return -ENOBUFS; |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 941 | if (handle == 0) { |
| 942 | handle = gen_new_htid(tp->data, ht); |
| 943 | if (handle == 0) { |
| 944 | kfree(ht); |
| 945 | return -ENOMEM; |
| 946 | } |
| 947 | } else { |
Matthew Wilcox | f730cb9 | 2017-11-28 13:45:02 -0500 | [diff] [blame] | 948 | err = idr_alloc_u32(&tp_c->handle_idr, ht, &handle, |
| 949 | handle, GFP_KERNEL); |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 950 | if (err) { |
| 951 | kfree(ht); |
| 952 | return err; |
| 953 | } |
| 954 | } |
Jarek Poplawski | e56cfad | 2008-04-12 18:37:13 -0700 | [diff] [blame] | 955 | ht->refcnt = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | ht->divisor = divisor; |
| 957 | ht->handle = handle; |
| 958 | ht->prio = tp->prio; |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 959 | idr_init(&ht->handle_idr); |
Cong Wang | 695176b | 2021-07-29 16:12:14 -0700 | [diff] [blame] | 960 | ht->flags = userflags; |
Jakub Kicinski | 6eef380 | 2016-06-08 20:11:03 +0100 | [diff] [blame] | 961 | |
Cong Wang | 695176b | 2021-07-29 16:12:14 -0700 | [diff] [blame] | 962 | err = u32_replace_hw_hnode(tp, ht, userflags, extack); |
Jakub Kicinski | 6eef380 | 2016-06-08 20:11:03 +0100 | [diff] [blame] | 963 | if (err) { |
Matthew Wilcox | 9c16094 | 2017-11-28 09:48:43 -0500 | [diff] [blame] | 964 | idr_remove(&tp_c->handle_idr, handle); |
Jakub Kicinski | 6eef380 | 2016-06-08 20:11:03 +0100 | [diff] [blame] | 965 | kfree(ht); |
| 966 | return err; |
| 967 | } |
| 968 | |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 969 | RCU_INIT_POINTER(ht->next, tp_c->hlist); |
| 970 | rcu_assign_pointer(tp_c->hlist, ht); |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 971 | *arg = ht; |
John Fastabend | a1b7c5f | 2016-02-16 21:17:09 -0800 | [diff] [blame] | 972 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | return 0; |
| 974 | } |
| 975 | |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 976 | if (tb[TCA_U32_HASH]) { |
Patrick McHardy | 1587bac | 2008-01-23 20:35:03 -0800 | [diff] [blame] | 977 | htid = nla_get_u32(tb[TCA_U32_HASH]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 978 | if (TC_U32_HTID(htid) == TC_U32_ROOT) { |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 979 | ht = rtnl_dereference(tp->root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 980 | htid = ht->handle; |
| 981 | } else { |
| 982 | ht = u32_lookup_ht(tp->data, TC_U32_HTID(htid)); |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 983 | if (!ht) { |
| 984 | NL_SET_ERR_MSG_MOD(extack, "Specified hash table not found"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 | return -EINVAL; |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 986 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 987 | } |
| 988 | } else { |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 989 | ht = rtnl_dereference(tp->root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | htid = ht->handle; |
| 991 | } |
| 992 | |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 993 | if (ht->divisor < TC_U32_HASH(htid)) { |
| 994 | NL_SET_ERR_MSG_MOD(extack, "Specified hash table buckets exceed configured value"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 995 | return -EINVAL; |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 996 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 997 | |
| 998 | if (handle) { |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 999 | if (TC_U32_HTID(handle) && TC_U32_HTID(handle ^ htid)) { |
| 1000 | NL_SET_ERR_MSG_MOD(extack, "Handle specified hash table address mismatch"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | return -EINVAL; |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 1002 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | handle = htid | TC_U32_NODE(handle); |
Matthew Wilcox | f730cb9 | 2017-11-28 13:45:02 -0500 | [diff] [blame] | 1004 | err = idr_alloc_u32(&ht->handle_idr, NULL, &handle, handle, |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 1005 | GFP_KERNEL); |
| 1006 | if (err) |
| 1007 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1008 | } else |
| 1009 | handle = gen_new_kid(ht, htid); |
| 1010 | |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 1011 | if (tb[TCA_U32_SEL] == NULL) { |
Alexander Aring | 4b981db | 2018-01-18 11:20:55 -0500 | [diff] [blame] | 1012 | NL_SET_ERR_MSG_MOD(extack, "Selector not specified"); |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 1013 | err = -EINVAL; |
| 1014 | goto erridr; |
| 1015 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1016 | |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 1017 | s = nla_data(tb[TCA_U32_SEL]); |
Kees Cook | 98c8f12 | 2018-08-25 22:58:01 -0700 | [diff] [blame] | 1018 | sel_size = struct_size(s, keys, s->nkeys); |
| 1019 | if (nla_len(tb[TCA_U32_SEL]) < sel_size) { |
| 1020 | err = -EINVAL; |
| 1021 | goto erridr; |
| 1022 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1023 | |
Gustavo A. R. Silva | 77aec5e | 2020-07-30 11:03:14 -0500 | [diff] [blame] | 1024 | n = kzalloc(struct_size(n, sel.keys, s->nkeys), GFP_KERNEL); |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 1025 | if (n == NULL) { |
| 1026 | err = -ENOBUFS; |
| 1027 | goto erridr; |
| 1028 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1029 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1030 | #ifdef CONFIG_CLS_U32_PERF |
Gustavo A. R. Silva | 77aec5e | 2020-07-30 11:03:14 -0500 | [diff] [blame] | 1031 | n->pf = __alloc_percpu(struct_size(n->pf, kcnts, s->nkeys), |
| 1032 | __alignof__(struct tc_u32_pcnt)); |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 1033 | if (!n->pf) { |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 1034 | err = -ENOBUFS; |
| 1035 | goto errfree; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1036 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | #endif |
| 1038 | |
Kees Cook | 98c8f12 | 2018-08-25 22:58:01 -0700 | [diff] [blame] | 1039 | memcpy(&n->sel, s, sel_size); |
John Fastabend | a96366bf | 2014-09-15 23:30:49 -0700 | [diff] [blame] | 1040 | RCU_INIT_POINTER(n->ht_up, ht); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1041 | n->handle = handle; |
Radu Rendec | b226801 | 2007-11-10 21:54:50 -0800 | [diff] [blame] | 1042 | n->fshift = s->hmask ? ffs(ntohl(s->hmask)) - 1 : 0; |
Cong Wang | 695176b | 2021-07-29 16:12:14 -0700 | [diff] [blame] | 1043 | n->flags = userflags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1044 | |
Cong Wang | 1421510 | 2019-02-20 21:37:42 -0800 | [diff] [blame] | 1045 | err = tcf_exts_init(&n->exts, net, TCA_U32_ACT, TCA_U32_POLICE); |
WANG Cong | b9a24bb | 2016-08-19 12:36:54 -0700 | [diff] [blame] | 1046 | if (err < 0) |
| 1047 | goto errout; |
| 1048 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | #ifdef CONFIG_CLS_U32_MARK |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 1050 | n->pcpu_success = alloc_percpu(u32); |
John Fastabend | a1ddcfe | 2014-09-19 21:50:04 -0700 | [diff] [blame] | 1051 | if (!n->pcpu_success) { |
| 1052 | err = -ENOMEM; |
| 1053 | goto errout; |
| 1054 | } |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 1055 | |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 1056 | if (tb[TCA_U32_MARK]) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1057 | struct tc_u32_mark *mark; |
| 1058 | |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 1059 | mark = nla_data(tb[TCA_U32_MARK]); |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 1060 | n->val = mark->val; |
| 1061 | n->mask = mark->mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1062 | } |
| 1063 | #endif |
| 1064 | |
Baowen Zheng | c86e020 | 2021-12-17 19:16:28 +0100 | [diff] [blame] | 1065 | err = u32_set_parms(net, tp, base, n, tb, tca[TCA_RATE], |
| 1066 | flags, n->flags, extack); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1067 | if (err == 0) { |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 1068 | struct tc_u_knode __rcu **ins; |
| 1069 | struct tc_u_knode *pins; |
| 1070 | |
Quentin Monnet | 10a47e0 | 2018-01-19 17:44:45 -0800 | [diff] [blame] | 1071 | err = u32_replace_hw_knode(tp, n, flags, extack); |
Samudrala, Sridhar | d34e3e1 | 2016-05-12 17:08:23 -0700 | [diff] [blame] | 1072 | if (err) |
| 1073 | goto errhw; |
| 1074 | |
Or Gerlitz | 24d3dc6 | 2017-02-16 10:31:15 +0200 | [diff] [blame] | 1075 | if (!tc_in_hw(n->flags)) |
| 1076 | n->flags |= TCA_CLS_FLAGS_NOT_IN_HW; |
| 1077 | |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 1078 | ins = &ht->ht[TC_U32_HASH(handle)]; |
| 1079 | for (pins = rtnl_dereference(*ins); pins; |
| 1080 | ins = &pins->next, pins = rtnl_dereference(*ins)) |
| 1081 | if (TC_U32_NODE(handle) < TC_U32_NODE(pins->handle)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1082 | break; |
| 1083 | |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 1084 | RCU_INIT_POINTER(n->next, pins); |
| 1085 | rcu_assign_pointer(*ins, n); |
Al Viro | b245d32 | 2018-10-08 06:22:43 -0400 | [diff] [blame] | 1086 | tp_c->knodes++; |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 1087 | *arg = n; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1088 | return 0; |
| 1089 | } |
John Fastabend | a1ddcfe | 2014-09-19 21:50:04 -0700 | [diff] [blame] | 1090 | |
Samudrala, Sridhar | d34e3e1 | 2016-05-12 17:08:23 -0700 | [diff] [blame] | 1091 | errhw: |
John Fastabend | a1ddcfe | 2014-09-19 21:50:04 -0700 | [diff] [blame] | 1092 | #ifdef CONFIG_CLS_U32_MARK |
| 1093 | free_percpu(n->pcpu_success); |
| 1094 | #endif |
| 1095 | |
WANG Cong | b9a24bb | 2016-08-19 12:36:54 -0700 | [diff] [blame] | 1096 | errout: |
| 1097 | tcf_exts_destroy(&n->exts); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | #ifdef CONFIG_CLS_U32_PERF |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 1099 | errfree: |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 1100 | free_percpu(n->pf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1101 | #endif |
| 1102 | kfree(n); |
Cong Wang | e761437 | 2017-09-25 10:13:51 -0700 | [diff] [blame] | 1103 | erridr: |
Matthew Wilcox | 9c16094 | 2017-11-28 09:48:43 -0500 | [diff] [blame] | 1104 | idr_remove(&ht->handle_idr, handle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1105 | return err; |
| 1106 | } |
| 1107 | |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 1108 | static void u32_walk(struct tcf_proto *tp, struct tcf_walker *arg, |
| 1109 | bool rtnl_held) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1110 | { |
| 1111 | struct tc_u_common *tp_c = tp->data; |
| 1112 | struct tc_u_hnode *ht; |
| 1113 | struct tc_u_knode *n; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1114 | unsigned int h; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1115 | |
| 1116 | if (arg->stop) |
| 1117 | return; |
| 1118 | |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 1119 | for (ht = rtnl_dereference(tp_c->hlist); |
| 1120 | ht; |
| 1121 | ht = rtnl_dereference(ht->next)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1122 | if (ht->prio != tp->prio) |
| 1123 | continue; |
| 1124 | if (arg->count >= arg->skip) { |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 1125 | if (arg->fn(tp, ht, arg) < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1126 | arg->stop = 1; |
| 1127 | return; |
| 1128 | } |
| 1129 | } |
| 1130 | arg->count++; |
| 1131 | for (h = 0; h <= ht->divisor; h++) { |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 1132 | for (n = rtnl_dereference(ht->ht[h]); |
| 1133 | n; |
| 1134 | n = rtnl_dereference(n->next)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1135 | if (arg->count < arg->skip) { |
| 1136 | arg->count++; |
| 1137 | continue; |
| 1138 | } |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 1139 | if (arg->fn(tp, n, arg) < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1140 | arg->stop = 1; |
| 1141 | return; |
| 1142 | } |
| 1143 | arg->count++; |
| 1144 | } |
| 1145 | } |
| 1146 | } |
| 1147 | } |
| 1148 | |
John Hurley | 530d995 | 2018-06-25 14:30:08 -0700 | [diff] [blame] | 1149 | static int u32_reoffload_hnode(struct tcf_proto *tp, struct tc_u_hnode *ht, |
Pablo Neira Ayuso | a732331 | 2019-07-19 18:20:15 +0200 | [diff] [blame] | 1150 | bool add, flow_setup_cb_t *cb, void *cb_priv, |
John Hurley | 530d995 | 2018-06-25 14:30:08 -0700 | [diff] [blame] | 1151 | struct netlink_ext_ack *extack) |
| 1152 | { |
| 1153 | struct tc_cls_u32_offload cls_u32 = {}; |
| 1154 | int err; |
| 1155 | |
Pieter Jansen van Vuuren | d678714 | 2019-05-06 17:24:21 -0700 | [diff] [blame] | 1156 | tc_cls_common_offload_init(&cls_u32.common, tp, ht->flags, extack); |
John Hurley | 530d995 | 2018-06-25 14:30:08 -0700 | [diff] [blame] | 1157 | cls_u32.command = add ? TC_CLSU32_NEW_HNODE : TC_CLSU32_DELETE_HNODE; |
| 1158 | cls_u32.hnode.divisor = ht->divisor; |
| 1159 | cls_u32.hnode.handle = ht->handle; |
| 1160 | cls_u32.hnode.prio = ht->prio; |
| 1161 | |
| 1162 | err = cb(TC_SETUP_CLSU32, &cls_u32, cb_priv); |
| 1163 | if (err && add && tc_skip_sw(ht->flags)) |
| 1164 | return err; |
| 1165 | |
| 1166 | return 0; |
| 1167 | } |
| 1168 | |
| 1169 | static int u32_reoffload_knode(struct tcf_proto *tp, struct tc_u_knode *n, |
Pablo Neira Ayuso | a732331 | 2019-07-19 18:20:15 +0200 | [diff] [blame] | 1170 | bool add, flow_setup_cb_t *cb, void *cb_priv, |
John Hurley | 530d995 | 2018-06-25 14:30:08 -0700 | [diff] [blame] | 1171 | struct netlink_ext_ack *extack) |
| 1172 | { |
| 1173 | struct tc_u_hnode *ht = rtnl_dereference(n->ht_down); |
| 1174 | struct tcf_block *block = tp->chain->block; |
| 1175 | struct tc_cls_u32_offload cls_u32 = {}; |
John Hurley | 530d995 | 2018-06-25 14:30:08 -0700 | [diff] [blame] | 1176 | |
Pieter Jansen van Vuuren | d678714 | 2019-05-06 17:24:21 -0700 | [diff] [blame] | 1177 | tc_cls_common_offload_init(&cls_u32.common, tp, n->flags, extack); |
John Hurley | 530d995 | 2018-06-25 14:30:08 -0700 | [diff] [blame] | 1178 | cls_u32.command = add ? |
| 1179 | TC_CLSU32_REPLACE_KNODE : TC_CLSU32_DELETE_KNODE; |
| 1180 | cls_u32.knode.handle = n->handle; |
| 1181 | |
| 1182 | if (add) { |
| 1183 | cls_u32.knode.fshift = n->fshift; |
| 1184 | #ifdef CONFIG_CLS_U32_MARK |
| 1185 | cls_u32.knode.val = n->val; |
| 1186 | cls_u32.knode.mask = n->mask; |
| 1187 | #else |
| 1188 | cls_u32.knode.val = 0; |
| 1189 | cls_u32.knode.mask = 0; |
| 1190 | #endif |
| 1191 | cls_u32.knode.sel = &n->sel; |
Jakub Kicinski | 068ceb3 | 2018-11-19 15:21:46 -0800 | [diff] [blame] | 1192 | cls_u32.knode.res = &n->res; |
John Hurley | 530d995 | 2018-06-25 14:30:08 -0700 | [diff] [blame] | 1193 | cls_u32.knode.exts = &n->exts; |
| 1194 | if (n->ht_down) |
| 1195 | cls_u32.knode.link_handle = ht->handle; |
| 1196 | } |
| 1197 | |
Zheng Yongjun | 57b0637 | 2020-12-08 20:08:22 +0800 | [diff] [blame] | 1198 | return tc_setup_cb_reoffload(block, tp, add, cb, TC_SETUP_CLSU32, |
| 1199 | &cls_u32, cb_priv, &n->flags, |
| 1200 | &n->in_hw_count); |
John Hurley | 530d995 | 2018-06-25 14:30:08 -0700 | [diff] [blame] | 1201 | } |
| 1202 | |
Pablo Neira Ayuso | a732331 | 2019-07-19 18:20:15 +0200 | [diff] [blame] | 1203 | static int u32_reoffload(struct tcf_proto *tp, bool add, flow_setup_cb_t *cb, |
John Hurley | 530d995 | 2018-06-25 14:30:08 -0700 | [diff] [blame] | 1204 | void *cb_priv, struct netlink_ext_ack *extack) |
| 1205 | { |
| 1206 | struct tc_u_common *tp_c = tp->data; |
| 1207 | struct tc_u_hnode *ht; |
| 1208 | struct tc_u_knode *n; |
| 1209 | unsigned int h; |
| 1210 | int err; |
| 1211 | |
| 1212 | for (ht = rtnl_dereference(tp_c->hlist); |
| 1213 | ht; |
| 1214 | ht = rtnl_dereference(ht->next)) { |
| 1215 | if (ht->prio != tp->prio) |
| 1216 | continue; |
| 1217 | |
| 1218 | /* When adding filters to a new dev, try to offload the |
| 1219 | * hashtable first. When removing, do the filters before the |
| 1220 | * hashtable. |
| 1221 | */ |
| 1222 | if (add && !tc_skip_hw(ht->flags)) { |
| 1223 | err = u32_reoffload_hnode(tp, ht, add, cb, cb_priv, |
| 1224 | extack); |
| 1225 | if (err) |
| 1226 | return err; |
| 1227 | } |
| 1228 | |
| 1229 | for (h = 0; h <= ht->divisor; h++) { |
| 1230 | for (n = rtnl_dereference(ht->ht[h]); |
| 1231 | n; |
| 1232 | n = rtnl_dereference(n->next)) { |
| 1233 | if (tc_skip_hw(n->flags)) |
| 1234 | continue; |
| 1235 | |
| 1236 | err = u32_reoffload_knode(tp, n, add, cb, |
| 1237 | cb_priv, extack); |
| 1238 | if (err) |
| 1239 | return err; |
| 1240 | } |
| 1241 | } |
| 1242 | |
| 1243 | if (!add && !tc_skip_hw(ht->flags)) |
| 1244 | u32_reoffload_hnode(tp, ht, add, cb, cb_priv, extack); |
| 1245 | } |
| 1246 | |
| 1247 | return 0; |
| 1248 | } |
| 1249 | |
Cong Wang | 2e24cd7 | 2020-01-23 16:26:18 -0800 | [diff] [blame] | 1250 | static void u32_bind_class(void *fh, u32 classid, unsigned long cl, void *q, |
| 1251 | unsigned long base) |
Cong Wang | 07d79fc | 2017-08-30 14:30:36 -0700 | [diff] [blame] | 1252 | { |
| 1253 | struct tc_u_knode *n = fh; |
| 1254 | |
Cong Wang | 2e24cd7 | 2020-01-23 16:26:18 -0800 | [diff] [blame] | 1255 | if (n && n->res.classid == classid) { |
| 1256 | if (cl) |
| 1257 | __tcf_bind_filter(q, &n->res, base); |
| 1258 | else |
| 1259 | __tcf_unbind_filter(q, &n->res); |
| 1260 | } |
Cong Wang | 07d79fc | 2017-08-30 14:30:36 -0700 | [diff] [blame] | 1261 | } |
| 1262 | |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 1263 | static int u32_dump(struct net *net, struct tcf_proto *tp, void *fh, |
Vlad Buslov | 12db03b | 2019-02-11 10:55:45 +0200 | [diff] [blame] | 1264 | struct sk_buff *skb, struct tcmsg *t, bool rtnl_held) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1265 | { |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 1266 | struct tc_u_knode *n = fh; |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 1267 | struct tc_u_hnode *ht_up, *ht_down; |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 1268 | struct nlattr *nest; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1269 | |
| 1270 | if (n == NULL) |
| 1271 | return skb->len; |
| 1272 | |
| 1273 | t->tcm_handle = n->handle; |
| 1274 | |
Michal Kubecek | ae0be8d | 2019-04-26 11:13:06 +0200 | [diff] [blame] | 1275 | nest = nla_nest_start_noflag(skb, TCA_OPTIONS); |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 1276 | if (nest == NULL) |
| 1277 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1278 | |
| 1279 | if (TC_U32_KEY(n->handle) == 0) { |
WANG Cong | 8113c09 | 2017-08-04 21:31:43 -0700 | [diff] [blame] | 1280 | struct tc_u_hnode *ht = fh; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 1281 | u32 divisor = ht->divisor + 1; |
| 1282 | |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 1283 | if (nla_put_u32(skb, TCA_U32_DIVISOR, divisor)) |
| 1284 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1285 | } else { |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 1286 | #ifdef CONFIG_CLS_U32_PERF |
| 1287 | struct tc_u32_pcnt *gpf; |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 1288 | int cpu; |
John Fastabend | 80aab73 | 2014-09-15 23:30:26 -0700 | [diff] [blame] | 1289 | #endif |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 1290 | |
Gustavo A. R. Silva | 77aec5e | 2020-07-30 11:03:14 -0500 | [diff] [blame] | 1291 | if (nla_put(skb, TCA_U32_SEL, struct_size(&n->sel, keys, n->sel.nkeys), |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 1292 | &n->sel)) |
| 1293 | goto nla_put_failure; |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 1294 | |
| 1295 | ht_up = rtnl_dereference(n->ht_up); |
| 1296 | if (ht_up) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1297 | u32 htid = n->handle & 0xFFFFF000; |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 1298 | if (nla_put_u32(skb, TCA_U32_HASH, htid)) |
| 1299 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1300 | } |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 1301 | if (n->res.classid && |
| 1302 | nla_put_u32(skb, TCA_U32_CLASSID, n->res.classid)) |
| 1303 | goto nla_put_failure; |
John Fastabend | 1ce87720 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 1304 | |
| 1305 | ht_down = rtnl_dereference(n->ht_down); |
| 1306 | if (ht_down && |
| 1307 | nla_put_u32(skb, TCA_U32_LINK, ht_down->handle)) |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 1308 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1309 | |
John Fastabend | 9e8ce79 | 2016-02-26 07:54:39 -0800 | [diff] [blame] | 1310 | if (n->flags && nla_put_u32(skb, TCA_U32_FLAGS, n->flags)) |
| 1311 | goto nla_put_failure; |
| 1312 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1313 | #ifdef CONFIG_CLS_U32_MARK |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 1314 | if ((n->val || n->mask)) { |
| 1315 | struct tc_u32_mark mark = {.val = n->val, |
| 1316 | .mask = n->mask, |
| 1317 | .success = 0}; |
John Fastabend | 80aab73 | 2014-09-15 23:30:26 -0700 | [diff] [blame] | 1318 | int cpum; |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 1319 | |
John Fastabend | 80aab73 | 2014-09-15 23:30:26 -0700 | [diff] [blame] | 1320 | for_each_possible_cpu(cpum) { |
| 1321 | __u32 cnt = *per_cpu_ptr(n->pcpu_success, cpum); |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 1322 | |
| 1323 | mark.success += cnt; |
| 1324 | } |
| 1325 | |
| 1326 | if (nla_put(skb, TCA_U32_MARK, sizeof(mark), &mark)) |
| 1327 | goto nla_put_failure; |
| 1328 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1329 | #endif |
| 1330 | |
WANG Cong | 5da57f4 | 2013-12-15 20:15:07 -0800 | [diff] [blame] | 1331 | if (tcf_exts_dump(skb, &n->exts) < 0) |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 1332 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1333 | |
WANG Cong | 2519a60 | 2014-01-09 16:14:02 -0800 | [diff] [blame] | 1334 | if (n->ifindex) { |
| 1335 | struct net_device *dev; |
| 1336 | dev = __dev_get_by_index(net, n->ifindex); |
| 1337 | if (dev && nla_put_string(skb, TCA_U32_INDEV, dev->name)) |
| 1338 | goto nla_put_failure; |
| 1339 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1340 | #ifdef CONFIG_CLS_U32_PERF |
Gustavo A. R. Silva | 77aec5e | 2020-07-30 11:03:14 -0500 | [diff] [blame] | 1341 | gpf = kzalloc(struct_size(gpf, kcnts, n->sel.nkeys), GFP_KERNEL); |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 1342 | if (!gpf) |
| 1343 | goto nla_put_failure; |
| 1344 | |
| 1345 | for_each_possible_cpu(cpu) { |
| 1346 | int i; |
| 1347 | struct tc_u32_pcnt *pf = per_cpu_ptr(n->pf, cpu); |
| 1348 | |
| 1349 | gpf->rcnt += pf->rcnt; |
| 1350 | gpf->rhit += pf->rhit; |
| 1351 | for (i = 0; i < n->sel.nkeys; i++) |
| 1352 | gpf->kcnts[i] += pf->kcnts[i]; |
| 1353 | } |
| 1354 | |
Gustavo A. R. Silva | 77aec5e | 2020-07-30 11:03:14 -0500 | [diff] [blame] | 1355 | if (nla_put_64bit(skb, TCA_U32_PCNT, struct_size(gpf, kcnts, n->sel.nkeys), |
Nicolas Dichtel | 9854518e | 2016-04-26 10:06:18 +0200 | [diff] [blame] | 1356 | gpf, TCA_U32_PAD)) { |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 1357 | kfree(gpf); |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 1358 | goto nla_put_failure; |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 1359 | } |
| 1360 | kfree(gpf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1361 | #endif |
| 1362 | } |
| 1363 | |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 1364 | nla_nest_end(skb, nest); |
| 1365 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1366 | if (TC_U32_KEY(n->handle)) |
WANG Cong | 5da57f4 | 2013-12-15 20:15:07 -0800 | [diff] [blame] | 1367 | if (tcf_exts_dump_stats(skb, &n->exts) < 0) |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 1368 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1369 | return skb->len; |
| 1370 | |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 1371 | nla_put_failure: |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 1372 | nla_nest_cancel(skb, nest); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1373 | return -1; |
| 1374 | } |
| 1375 | |
Patrick McHardy | 2eb9d75 | 2008-01-22 22:10:42 -0800 | [diff] [blame] | 1376 | static struct tcf_proto_ops cls_u32_ops __read_mostly = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1377 | .kind = "u32", |
| 1378 | .classify = u32_classify, |
| 1379 | .init = u32_init, |
| 1380 | .destroy = u32_destroy, |
| 1381 | .get = u32_get, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1382 | .change = u32_change, |
| 1383 | .delete = u32_delete, |
| 1384 | .walk = u32_walk, |
John Hurley | 530d995 | 2018-06-25 14:30:08 -0700 | [diff] [blame] | 1385 | .reoffload = u32_reoffload, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1386 | .dump = u32_dump, |
Cong Wang | 07d79fc | 2017-08-30 14:30:36 -0700 | [diff] [blame] | 1387 | .bind_class = u32_bind_class, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1388 | .owner = THIS_MODULE, |
| 1389 | }; |
| 1390 | |
| 1391 | static int __init init_u32(void) |
| 1392 | { |
WANG Cong | 3cd904e | 2017-08-24 16:51:30 -0700 | [diff] [blame] | 1393 | int i, ret; |
| 1394 | |
stephen hemminger | 6ff9c36 | 2010-05-12 06:37:05 +0000 | [diff] [blame] | 1395 | pr_info("u32 classifier\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1396 | #ifdef CONFIG_CLS_U32_PERF |
stephen hemminger | 6ff9c36 | 2010-05-12 06:37:05 +0000 | [diff] [blame] | 1397 | pr_info(" Performance counters on\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1398 | #endif |
stephen hemminger | 6ff9c36 | 2010-05-12 06:37:05 +0000 | [diff] [blame] | 1399 | pr_info(" input device check on\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1400 | #ifdef CONFIG_NET_CLS_ACT |
stephen hemminger | 6ff9c36 | 2010-05-12 06:37:05 +0000 | [diff] [blame] | 1401 | pr_info(" Actions configured\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1402 | #endif |
WANG Cong | 3cd904e | 2017-08-24 16:51:30 -0700 | [diff] [blame] | 1403 | tc_u_common_hash = kvmalloc_array(U32_HASH_SIZE, |
| 1404 | sizeof(struct hlist_head), |
| 1405 | GFP_KERNEL); |
| 1406 | if (!tc_u_common_hash) |
| 1407 | return -ENOMEM; |
| 1408 | |
| 1409 | for (i = 0; i < U32_HASH_SIZE; i++) |
| 1410 | INIT_HLIST_HEAD(&tc_u_common_hash[i]); |
| 1411 | |
| 1412 | ret = register_tcf_proto_ops(&cls_u32_ops); |
| 1413 | if (ret) |
| 1414 | kvfree(tc_u_common_hash); |
| 1415 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1416 | } |
| 1417 | |
YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 1418 | static void __exit exit_u32(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1419 | { |
| 1420 | unregister_tcf_proto_ops(&cls_u32_ops); |
WANG Cong | 3cd904e | 2017-08-24 16:51:30 -0700 | [diff] [blame] | 1421 | kvfree(tc_u_common_hash); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1422 | } |
| 1423 | |
| 1424 | module_init(init_u32) |
| 1425 | module_exit(exit_u32) |
| 1426 | MODULE_LICENSE("GPL"); |