Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * net/sched/cls_u32.c Ugly (or Universal) 32bit key Packet Classifier. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or |
| 5 | * modify it under the terms of the GNU General Public License |
| 6 | * as published by the Free Software Foundation; either version |
| 7 | * 2 of the License, or (at your option) any later version. |
| 8 | * |
| 9 | * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru> |
| 10 | * |
| 11 | * The filters are packed to hash tables of key nodes |
| 12 | * with a set of 32bit key/mask pairs at every node. |
| 13 | * Nodes reference next level hash tables etc. |
| 14 | * |
| 15 | * This scheme is the best universal classifier I managed to |
| 16 | * invent; it is not super-fast, but it is not slow (provided you |
| 17 | * program it correctly), and general enough. And its relative |
| 18 | * speed grows as the number of rules becomes larger. |
| 19 | * |
| 20 | * It seems that it represents the best middle point between |
| 21 | * speed and manageability both by human and by machine. |
| 22 | * |
| 23 | * It is especially useful for link sharing combined with QoS; |
| 24 | * pure RSVP doesn't need such a general approach and can use |
| 25 | * much simpler (and faster) schemes, sort of cls_rsvp.c. |
| 26 | * |
| 27 | * JHS: We should remove the CONFIG_NET_CLS_IND from here |
| 28 | * eventually when the meta match extension is made available |
| 29 | * |
| 30 | * nfmark match added by Catalin(ux aka Dino) BOIE <catab at umbrella.ro> |
| 31 | */ |
| 32 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <linux/module.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 34 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <linux/types.h> |
| 36 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include <linux/string.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <linux/errno.h> |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 39 | #include <linux/percpu.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #include <linux/rtnetlink.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #include <linux/skbuff.h> |
Cong Wang | 7801db8 | 2014-07-17 17:34:53 -0700 | [diff] [blame] | 42 | #include <linux/bitmap.h> |
Patrick McHardy | 0ba4805 | 2007-07-02 22:49:07 -0700 | [diff] [blame] | 43 | #include <net/netlink.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #include <net/act_api.h> |
| 45 | #include <net/pkt_cls.h> |
| 46 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 47 | struct tc_u_knode { |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 48 | struct tc_u_knode __rcu *next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | u32 handle; |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 50 | struct tc_u_hnode __rcu *ht_up; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | struct tcf_exts exts; |
| 52 | #ifdef CONFIG_NET_CLS_IND |
WANG Cong | 2519a60 | 2014-01-09 16:14:02 -0800 | [diff] [blame] | 53 | int ifindex; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | #endif |
| 55 | u8 fshift; |
| 56 | struct tcf_result res; |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 57 | struct tc_u_hnode __rcu *ht_down; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | #ifdef CONFIG_CLS_U32_PERF |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 59 | struct tc_u32_pcnt __percpu *pf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | #endif |
| 61 | #ifdef CONFIG_CLS_U32_MARK |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 62 | u32 val; |
| 63 | u32 mask; |
| 64 | u32 __percpu *pcpu_success; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | #endif |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 66 | struct tcf_proto *tp; |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 67 | struct rcu_head rcu; |
John Fastabend | 4e2840e | 2014-09-17 11:11:46 -0700 | [diff] [blame] | 68 | /* The 'sel' field MUST be the last field in structure to allow for |
| 69 | * tc_u32_keys allocated at end of structure. |
| 70 | */ |
| 71 | struct tc_u32_sel sel; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | }; |
| 73 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 74 | struct tc_u_hnode { |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 75 | struct tc_u_hnode __rcu *next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | u32 handle; |
| 77 | u32 prio; |
| 78 | struct tc_u_common *tp_c; |
| 79 | int refcnt; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 80 | unsigned int divisor; |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 81 | struct rcu_head rcu; |
WANG Cong | 5778d39 | 2015-03-09 17:03:40 -0700 | [diff] [blame] | 82 | /* The 'ht' field MUST be the last field in structure to allow for |
| 83 | * more entries allocated at end of structure. |
| 84 | */ |
| 85 | struct tc_u_knode __rcu *ht[1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | }; |
| 87 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 88 | struct tc_u_common { |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 89 | struct tc_u_hnode __rcu *hlist; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | struct Qdisc *q; |
| 91 | int refcnt; |
| 92 | u32 hgenerator; |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 93 | struct rcu_head rcu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | }; |
| 95 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 96 | static inline unsigned int u32_hash_fold(__be32 key, |
| 97 | const struct tc_u32_sel *sel, |
| 98 | u8 fshift) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | { |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 100 | unsigned int h = ntohl(key & sel->hmask) >> fshift; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | |
| 102 | return h; |
| 103 | } |
| 104 | |
Eric Dumazet | dc7f9f6 | 2011-07-05 23:25:42 +0000 | [diff] [blame] | 105 | static int u32_classify(struct sk_buff *skb, const struct tcf_proto *tp, struct tcf_result *res) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | { |
| 107 | struct { |
| 108 | struct tc_u_knode *knode; |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 109 | unsigned int off; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | } stack[TC_U32_MAXDEPTH]; |
| 111 | |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 112 | struct tc_u_hnode *ht = rcu_dereference_bh(tp->root); |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 113 | unsigned int off = skb_network_offset(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | struct tc_u_knode *n; |
| 115 | int sdepth = 0; |
| 116 | int off2 = 0; |
| 117 | int sel = 0; |
| 118 | #ifdef CONFIG_CLS_U32_PERF |
| 119 | int j; |
| 120 | #endif |
| 121 | int i, r; |
| 122 | |
| 123 | next_ht: |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 124 | n = rcu_dereference_bh(ht->ht[sel]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | |
| 126 | next_knode: |
| 127 | if (n) { |
| 128 | struct tc_u32_key *key = n->sel.keys; |
| 129 | |
| 130 | #ifdef CONFIG_CLS_U32_PERF |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 131 | __this_cpu_inc(n->pf->rcnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | j = 0; |
| 133 | #endif |
| 134 | |
| 135 | #ifdef CONFIG_CLS_U32_MARK |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 136 | if ((skb->mark & n->mask) != n->val) { |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 137 | n = rcu_dereference_bh(n->next); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | goto next_knode; |
| 139 | } else { |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 140 | __this_cpu_inc(*n->pcpu_success); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | } |
| 142 | #endif |
| 143 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 144 | for (i = n->sel.nkeys; i > 0; i--, key++) { |
stephen hemminger | 66d50d2 | 2010-08-02 13:44:13 +0000 | [diff] [blame] | 145 | int toff = off + key->off + (off2 & key->offmask); |
stephen hemminger | 86fce3b | 2011-02-20 16:14:23 +0000 | [diff] [blame] | 146 | __be32 *data, hdata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | |
Dan Carpenter | 4e18b3e | 2010-10-04 02:28:36 +0000 | [diff] [blame] | 148 | if (skb_headroom(skb) + toff > INT_MAX) |
stephen hemminger | 66d50d2 | 2010-08-02 13:44:13 +0000 | [diff] [blame] | 149 | goto out; |
| 150 | |
stephen hemminger | 86fce3b | 2011-02-20 16:14:23 +0000 | [diff] [blame] | 151 | data = skb_header_pointer(skb, toff, 4, &hdata); |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 152 | if (!data) |
| 153 | goto out; |
| 154 | if ((*data ^ key->val) & key->mask) { |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 155 | n = rcu_dereference_bh(n->next); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | goto next_knode; |
| 157 | } |
| 158 | #ifdef CONFIG_CLS_U32_PERF |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 159 | __this_cpu_inc(n->pf->kcnts[j]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | j++; |
| 161 | #endif |
| 162 | } |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 163 | |
| 164 | ht = rcu_dereference_bh(n->ht_down); |
| 165 | if (!ht) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | check_terminal: |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 167 | if (n->sel.flags & TC_U32_TERMINAL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | |
| 169 | *res = n->res; |
| 170 | #ifdef CONFIG_NET_CLS_IND |
WANG Cong | 2519a60 | 2014-01-09 16:14:02 -0800 | [diff] [blame] | 171 | if (!tcf_match_indev(skb, n->ifindex)) { |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 172 | n = rcu_dereference_bh(n->next); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | goto next_knode; |
| 174 | } |
| 175 | #endif |
| 176 | #ifdef CONFIG_CLS_U32_PERF |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 177 | __this_cpu_inc(n->pf->rhit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | #endif |
| 179 | r = tcf_exts_exec(skb, &n->exts, res); |
| 180 | if (r < 0) { |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 181 | n = rcu_dereference_bh(n->next); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | goto next_knode; |
| 183 | } |
| 184 | |
| 185 | return r; |
| 186 | } |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 187 | n = rcu_dereference_bh(n->next); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | goto next_knode; |
| 189 | } |
| 190 | |
| 191 | /* PUSH */ |
| 192 | if (sdepth >= TC_U32_MAXDEPTH) |
| 193 | goto deadloop; |
| 194 | stack[sdepth].knode = n; |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 195 | stack[sdepth].off = off; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | sdepth++; |
| 197 | |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 198 | ht = rcu_dereference_bh(n->ht_down); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | sel = 0; |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 200 | if (ht->divisor) { |
stephen hemminger | 86fce3b | 2011-02-20 16:14:23 +0000 | [diff] [blame] | 201 | __be32 *data, hdata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 203 | data = skb_header_pointer(skb, off + n->sel.hoff, 4, |
stephen hemminger | 86fce3b | 2011-02-20 16:14:23 +0000 | [diff] [blame] | 204 | &hdata); |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 205 | if (!data) |
| 206 | goto out; |
| 207 | sel = ht->divisor & u32_hash_fold(*data, &n->sel, |
| 208 | n->fshift); |
| 209 | } |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 210 | 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] | 211 | goto next_ht; |
| 212 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 213 | if (n->sel.flags & (TC_U32_OFFSET | TC_U32_VAROFFSET)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | off2 = n->sel.off + 3; |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 215 | if (n->sel.flags & TC_U32_VAROFFSET) { |
stephen hemminger | 86fce3b | 2011-02-20 16:14:23 +0000 | [diff] [blame] | 216 | __be16 *data, hdata; |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 217 | |
| 218 | data = skb_header_pointer(skb, |
| 219 | off + n->sel.offoff, |
stephen hemminger | 86fce3b | 2011-02-20 16:14:23 +0000 | [diff] [blame] | 220 | 2, &hdata); |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 221 | if (!data) |
| 222 | goto out; |
| 223 | off2 += ntohs(n->sel.offmask & *data) >> |
| 224 | n->sel.offshift; |
| 225 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | off2 &= ~3; |
| 227 | } |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 228 | if (n->sel.flags & TC_U32_EAT) { |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 229 | off += off2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | off2 = 0; |
| 231 | } |
| 232 | |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 233 | if (off < skb->len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | goto next_ht; |
| 235 | } |
| 236 | |
| 237 | /* POP */ |
| 238 | if (sdepth--) { |
| 239 | n = stack[sdepth].knode; |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 240 | ht = rcu_dereference_bh(n->ht_up); |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 241 | off = stack[sdepth].off; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | goto check_terminal; |
| 243 | } |
Changli Gao | fbc2e7d | 2010-06-02 07:32:42 -0700 | [diff] [blame] | 244 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | return -1; |
| 246 | |
| 247 | deadloop: |
Joe Perches | e87cc47 | 2012-05-13 21:56:26 +0000 | [diff] [blame] | 248 | net_warn_ratelimited("cls_u32: dead loop\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | return -1; |
| 250 | } |
| 251 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 252 | static struct tc_u_hnode * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | u32_lookup_ht(struct tc_u_common *tp_c, u32 handle) |
| 254 | { |
| 255 | struct tc_u_hnode *ht; |
| 256 | |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 257 | for (ht = rtnl_dereference(tp_c->hlist); |
| 258 | ht; |
| 259 | ht = rtnl_dereference(ht->next)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | if (ht->handle == handle) |
| 261 | break; |
| 262 | |
| 263 | return ht; |
| 264 | } |
| 265 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 266 | static struct tc_u_knode * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | u32_lookup_key(struct tc_u_hnode *ht, u32 handle) |
| 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 | 1ce8772 | 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 | |
| 286 | static unsigned long u32_get(struct tcf_proto *tp, u32 handle) |
| 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 | 1ce8772 | 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) |
| 297 | return 0; |
| 298 | |
| 299 | if (TC_U32_KEY(handle) == 0) |
| 300 | return (unsigned long)ht; |
| 301 | |
| 302 | return (unsigned long)u32_lookup_key(ht, handle); |
| 303 | } |
| 304 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | static u32 gen_new_htid(struct tc_u_common *tp_c) |
| 306 | { |
| 307 | int i = 0x800; |
| 308 | |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 309 | /* hgenerator only used inside rtnl lock it is safe to increment |
| 310 | * without read _copy_ update semantics |
| 311 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | do { |
| 313 | if (++tp_c->hgenerator == 0x7FF) |
| 314 | tp_c->hgenerator = 1; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 315 | } while (--i > 0 && u32_lookup_ht(tp_c, (tp_c->hgenerator|0x800)<<20)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | |
| 317 | return i > 0 ? (tp_c->hgenerator|0x800)<<20 : 0; |
| 318 | } |
| 319 | |
| 320 | static int u32_init(struct tcf_proto *tp) |
| 321 | { |
| 322 | struct tc_u_hnode *root_ht; |
| 323 | struct tc_u_common *tp_c; |
| 324 | |
David S. Miller | 72b25a9 | 2008-07-18 20:54:17 -0700 | [diff] [blame] | 325 | tp_c = tp->q->u32_node; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | |
Panagiotis Issaris | 0da974f | 2006-07-21 14:51:30 -0700 | [diff] [blame] | 327 | root_ht = kzalloc(sizeof(*root_ht), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | if (root_ht == NULL) |
| 329 | return -ENOBUFS; |
| 330 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | root_ht->divisor = 0; |
| 332 | root_ht->refcnt++; |
| 333 | root_ht->handle = tp_c ? gen_new_htid(tp_c) : 0x80000000; |
| 334 | root_ht->prio = tp->prio; |
| 335 | |
| 336 | if (tp_c == NULL) { |
Panagiotis Issaris | 0da974f | 2006-07-21 14:51:30 -0700 | [diff] [blame] | 337 | tp_c = kzalloc(sizeof(*tp_c), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | if (tp_c == NULL) { |
| 339 | kfree(root_ht); |
| 340 | return -ENOBUFS; |
| 341 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | tp_c->q = tp->q; |
David S. Miller | 72b25a9 | 2008-07-18 20:54:17 -0700 | [diff] [blame] | 343 | tp->q->u32_node = tp_c; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | } |
| 345 | |
| 346 | tp_c->refcnt++; |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 347 | RCU_INIT_POINTER(root_ht->next, tp_c->hlist); |
| 348 | rcu_assign_pointer(tp_c->hlist, root_ht); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | root_ht->tp_c = tp_c; |
| 350 | |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 351 | rcu_assign_pointer(tp->root, root_ht); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | tp->data = tp_c; |
| 353 | return 0; |
| 354 | } |
| 355 | |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 356 | static int u32_destroy_key(struct tcf_proto *tp, |
| 357 | struct tc_u_knode *n, |
| 358 | bool free_pf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | { |
WANG Cong | 18d0264 | 2014-09-25 10:26:37 -0700 | [diff] [blame] | 360 | tcf_exts_destroy(&n->exts); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | if (n->ht_down) |
| 362 | n->ht_down->refcnt--; |
| 363 | #ifdef CONFIG_CLS_U32_PERF |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 364 | if (free_pf) |
| 365 | free_percpu(n->pf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | #endif |
John Fastabend | a1ddcfe | 2014-09-19 21:50:04 -0700 | [diff] [blame] | 367 | #ifdef CONFIG_CLS_U32_MARK |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 368 | if (free_pf) |
| 369 | free_percpu(n->pcpu_success); |
John Fastabend | a1ddcfe | 2014-09-19 21:50:04 -0700 | [diff] [blame] | 370 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | kfree(n); |
| 372 | return 0; |
| 373 | } |
| 374 | |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 375 | /* u32_delete_key_rcu should be called when free'ing a copied |
| 376 | * version of a tc_u_knode obtained from u32_init_knode(). When |
| 377 | * copies are obtained from u32_init_knode() the statistics are |
| 378 | * shared between the old and new copies to allow readers to |
| 379 | * continue to update the statistics during the copy. To support |
| 380 | * this the u32_delete_key_rcu variant does not free the percpu |
| 381 | * statistics. |
| 382 | */ |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 383 | static void u32_delete_key_rcu(struct rcu_head *rcu) |
| 384 | { |
| 385 | struct tc_u_knode *key = container_of(rcu, struct tc_u_knode, rcu); |
| 386 | |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 387 | u32_destroy_key(key->tp, key, false); |
| 388 | } |
| 389 | |
| 390 | /* u32_delete_key_freepf_rcu is the rcu callback variant |
| 391 | * that free's the entire structure including the statistics |
| 392 | * percpu variables. Only use this if the key is not a copy |
| 393 | * returned by u32_init_knode(). See u32_delete_key_rcu() |
| 394 | * for the variant that should be used with keys return from |
| 395 | * u32_init_knode() |
| 396 | */ |
| 397 | static void u32_delete_key_freepf_rcu(struct rcu_head *rcu) |
| 398 | { |
| 399 | struct tc_u_knode *key = container_of(rcu, struct tc_u_knode, rcu); |
| 400 | |
| 401 | u32_destroy_key(key->tp, key, true); |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 402 | } |
| 403 | |
Yang Yingliang | 82d567c | 2013-12-10 20:55:31 +0800 | [diff] [blame] | 404 | 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] | 405 | { |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 406 | struct tc_u_knode __rcu **kp; |
| 407 | struct tc_u_knode *pkp; |
John Fastabend | a96366bf | 2014-09-15 23:30:49 -0700 | [diff] [blame] | 408 | struct tc_u_hnode *ht = rtnl_dereference(key->ht_up); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | |
| 410 | if (ht) { |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 411 | kp = &ht->ht[TC_U32_HASH(key->handle)]; |
| 412 | for (pkp = rtnl_dereference(*kp); pkp; |
| 413 | kp = &pkp->next, pkp = rtnl_dereference(*kp)) { |
| 414 | if (pkp == key) { |
| 415 | RCU_INIT_POINTER(*kp, key->next); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | |
WANG Cong | a0efb80 | 2014-09-30 16:07:24 -0700 | [diff] [blame] | 417 | tcf_unbind_filter(tp, &key->res); |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 418 | call_rcu(&key->rcu, u32_delete_key_freepf_rcu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | return 0; |
| 420 | } |
| 421 | } |
| 422 | } |
Ilpo Järvinen | 547b792 | 2008-07-25 21:43:18 -0700 | [diff] [blame] | 423 | WARN_ON(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | return 0; |
| 425 | } |
| 426 | |
WANG Cong | a0efb80 | 2014-09-30 16:07:24 -0700 | [diff] [blame] | 427 | static void u32_clear_hnode(struct tcf_proto *tp, struct tc_u_hnode *ht) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | { |
| 429 | struct tc_u_knode *n; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 430 | unsigned int h; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 432 | for (h = 0; h <= ht->divisor; h++) { |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 433 | while ((n = rtnl_dereference(ht->ht[h])) != NULL) { |
| 434 | RCU_INIT_POINTER(ht->ht[h], |
| 435 | rtnl_dereference(n->next)); |
WANG Cong | a0efb80 | 2014-09-30 16:07:24 -0700 | [diff] [blame] | 436 | tcf_unbind_filter(tp, &n->res); |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 437 | call_rcu(&n->rcu, u32_delete_key_freepf_rcu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | } |
| 439 | } |
| 440 | } |
| 441 | |
| 442 | static int u32_destroy_hnode(struct tcf_proto *tp, struct tc_u_hnode *ht) |
| 443 | { |
| 444 | struct tc_u_common *tp_c = tp->data; |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 445 | struct tc_u_hnode __rcu **hn; |
| 446 | struct tc_u_hnode *phn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | |
Ilpo Järvinen | 547b792 | 2008-07-25 21:43:18 -0700 | [diff] [blame] | 448 | WARN_ON(ht->refcnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | |
WANG Cong | a0efb80 | 2014-09-30 16:07:24 -0700 | [diff] [blame] | 450 | u32_clear_hnode(tp, ht); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 452 | hn = &tp_c->hlist; |
| 453 | for (phn = rtnl_dereference(*hn); |
| 454 | phn; |
| 455 | hn = &phn->next, phn = rtnl_dereference(*hn)) { |
| 456 | if (phn == ht) { |
| 457 | RCU_INIT_POINTER(*hn, ht->next); |
| 458 | kfree_rcu(ht, rcu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | return 0; |
| 460 | } |
| 461 | } |
| 462 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | return -ENOENT; |
| 464 | } |
| 465 | |
| 466 | static void u32_destroy(struct tcf_proto *tp) |
| 467 | { |
| 468 | struct tc_u_common *tp_c = tp->data; |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 469 | struct tc_u_hnode *root_ht = rtnl_dereference(tp->root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | |
Ilpo Järvinen | 547b792 | 2008-07-25 21:43:18 -0700 | [diff] [blame] | 471 | WARN_ON(root_ht == NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | |
| 473 | if (root_ht && --root_ht->refcnt == 0) |
| 474 | u32_destroy_hnode(tp, root_ht); |
| 475 | |
| 476 | if (--tp_c->refcnt == 0) { |
| 477 | struct tc_u_hnode *ht; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | |
David S. Miller | 72b25a9 | 2008-07-18 20:54:17 -0700 | [diff] [blame] | 479 | tp->q->u32_node = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 481 | for (ht = rtnl_dereference(tp_c->hlist); |
| 482 | ht; |
| 483 | ht = rtnl_dereference(ht->next)) { |
Jarek Poplawski | e56cfad | 2008-04-12 18:37:13 -0700 | [diff] [blame] | 484 | ht->refcnt--; |
WANG Cong | a0efb80 | 2014-09-30 16:07:24 -0700 | [diff] [blame] | 485 | u32_clear_hnode(tp, ht); |
Jarek Poplawski | e56cfad | 2008-04-12 18:37:13 -0700 | [diff] [blame] | 486 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 488 | while ((ht = rtnl_dereference(tp_c->hlist)) != NULL) { |
| 489 | RCU_INIT_POINTER(tp_c->hlist, ht->next); |
| 490 | kfree_rcu(ht, rcu); |
Stephen Hemminger | 3ff50b7 | 2007-04-20 17:09:22 -0700 | [diff] [blame] | 491 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | |
| 493 | kfree(tp_c); |
| 494 | } |
| 495 | |
| 496 | tp->data = NULL; |
| 497 | } |
| 498 | |
| 499 | static int u32_delete(struct tcf_proto *tp, unsigned long arg) |
| 500 | { |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 501 | struct tc_u_hnode *ht = (struct tc_u_hnode *)arg; |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 502 | struct tc_u_hnode *root_ht = rtnl_dereference(tp->root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | |
| 504 | if (ht == NULL) |
| 505 | return 0; |
| 506 | |
| 507 | if (TC_U32_KEY(ht->handle)) |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 508 | return u32_delete_key(tp, (struct tc_u_knode *)ht); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 510 | if (root_ht == ht) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | return -EINVAL; |
| 512 | |
Jarek Poplawski | e56cfad | 2008-04-12 18:37:13 -0700 | [diff] [blame] | 513 | if (ht->refcnt == 1) { |
| 514 | ht->refcnt--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | u32_destroy_hnode(tp, ht); |
Jarek Poplawski | e56cfad | 2008-04-12 18:37:13 -0700 | [diff] [blame] | 516 | } else { |
| 517 | return -EBUSY; |
| 518 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | |
| 520 | return 0; |
| 521 | } |
| 522 | |
Cong Wang | 7801db8 | 2014-07-17 17:34:53 -0700 | [diff] [blame] | 523 | #define NR_U32_NODE (1<<12) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | static u32 gen_new_kid(struct tc_u_hnode *ht, u32 handle) |
| 525 | { |
| 526 | struct tc_u_knode *n; |
Cong Wang | 7801db8 | 2014-07-17 17:34:53 -0700 | [diff] [blame] | 527 | unsigned long i; |
| 528 | unsigned long *bitmap = kzalloc(BITS_TO_LONGS(NR_U32_NODE) * sizeof(unsigned long), |
| 529 | GFP_KERNEL); |
| 530 | if (!bitmap) |
| 531 | return handle | 0xFFF; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 533 | for (n = rtnl_dereference(ht->ht[TC_U32_HASH(handle)]); |
| 534 | n; |
| 535 | n = rtnl_dereference(n->next)) |
Cong Wang | 7801db8 | 2014-07-17 17:34:53 -0700 | [diff] [blame] | 536 | set_bit(TC_U32_NODE(n->handle), bitmap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | |
Cong Wang | 7801db8 | 2014-07-17 17:34:53 -0700 | [diff] [blame] | 538 | i = find_next_zero_bit(bitmap, NR_U32_NODE, 0x800); |
| 539 | if (i >= NR_U32_NODE) |
| 540 | i = find_next_zero_bit(bitmap, NR_U32_NODE, 1); |
| 541 | |
| 542 | kfree(bitmap); |
| 543 | return handle | (i >= NR_U32_NODE ? 0xFFF : i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | } |
| 545 | |
Patrick McHardy | 6fa8c01 | 2008-01-23 20:36:12 -0800 | [diff] [blame] | 546 | static const struct nla_policy u32_policy[TCA_U32_MAX + 1] = { |
| 547 | [TCA_U32_CLASSID] = { .type = NLA_U32 }, |
| 548 | [TCA_U32_HASH] = { .type = NLA_U32 }, |
| 549 | [TCA_U32_LINK] = { .type = NLA_U32 }, |
| 550 | [TCA_U32_DIVISOR] = { .type = NLA_U32 }, |
| 551 | [TCA_U32_SEL] = { .len = sizeof(struct tc_u32_sel) }, |
| 552 | [TCA_U32_INDEV] = { .type = NLA_STRING, .len = IFNAMSIZ }, |
| 553 | [TCA_U32_MARK] = { .len = sizeof(struct tc_u32_mark) }, |
| 554 | }; |
| 555 | |
Benjamin LaHaise | c1b5273 | 2013-01-14 05:15:39 +0000 | [diff] [blame] | 556 | static int u32_set_parms(struct net *net, struct tcf_proto *tp, |
| 557 | unsigned long base, struct tc_u_hnode *ht, |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 558 | struct tc_u_knode *n, struct nlattr **tb, |
Cong Wang | 2f7ef2f | 2014-04-25 13:54:06 -0700 | [diff] [blame] | 559 | struct nlattr *est, bool ovr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | { |
| 561 | int err; |
| 562 | struct tcf_exts e; |
| 563 | |
WANG Cong | 5da57f4 | 2013-12-15 20:15:07 -0800 | [diff] [blame] | 564 | tcf_exts_init(&e, TCA_U32_ACT, TCA_U32_POLICE); |
Cong Wang | 2f7ef2f | 2014-04-25 13:54:06 -0700 | [diff] [blame] | 565 | err = tcf_exts_validate(net, tp, tb, est, &e, ovr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | if (err < 0) |
| 567 | return err; |
| 568 | |
| 569 | err = -EINVAL; |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 570 | if (tb[TCA_U32_LINK]) { |
Patrick McHardy | 1587bac | 2008-01-23 20:35:03 -0800 | [diff] [blame] | 571 | u32 handle = nla_get_u32(tb[TCA_U32_LINK]); |
Patrick McHardy | 47a1a1d | 2008-11-19 08:03:09 +0000 | [diff] [blame] | 572 | struct tc_u_hnode *ht_down = NULL, *ht_old; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | |
| 574 | if (TC_U32_KEY(handle)) |
| 575 | goto errout; |
| 576 | |
| 577 | if (handle) { |
| 578 | ht_down = u32_lookup_ht(ht->tp_c, handle); |
| 579 | |
| 580 | if (ht_down == NULL) |
| 581 | goto errout; |
| 582 | ht_down->refcnt++; |
| 583 | } |
| 584 | |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 585 | ht_old = rtnl_dereference(n->ht_down); |
| 586 | rcu_assign_pointer(n->ht_down, ht_down); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | |
Patrick McHardy | 47a1a1d | 2008-11-19 08:03:09 +0000 | [diff] [blame] | 588 | if (ht_old) |
| 589 | ht_old->refcnt--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | } |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 591 | if (tb[TCA_U32_CLASSID]) { |
Patrick McHardy | 1587bac | 2008-01-23 20:35:03 -0800 | [diff] [blame] | 592 | n->res.classid = nla_get_u32(tb[TCA_U32_CLASSID]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | tcf_bind_filter(tp, &n->res, base); |
| 594 | } |
| 595 | |
| 596 | #ifdef CONFIG_NET_CLS_IND |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 597 | if (tb[TCA_U32_INDEV]) { |
WANG Cong | 2519a60 | 2014-01-09 16:14:02 -0800 | [diff] [blame] | 598 | int ret; |
| 599 | ret = tcf_change_indev(net, tb[TCA_U32_INDEV]); |
| 600 | if (ret < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | goto errout; |
WANG Cong | 2519a60 | 2014-01-09 16:14:02 -0800 | [diff] [blame] | 602 | n->ifindex = ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | } |
| 604 | #endif |
| 605 | tcf_exts_change(tp, &n->exts, &e); |
| 606 | |
| 607 | return 0; |
| 608 | errout: |
WANG Cong | 18d0264 | 2014-09-25 10:26:37 -0700 | [diff] [blame] | 609 | tcf_exts_destroy(&e); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | return err; |
| 611 | } |
| 612 | |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 613 | static void u32_replace_knode(struct tcf_proto *tp, |
| 614 | struct tc_u_common *tp_c, |
| 615 | struct tc_u_knode *n) |
| 616 | { |
| 617 | struct tc_u_knode __rcu **ins; |
| 618 | struct tc_u_knode *pins; |
| 619 | struct tc_u_hnode *ht; |
| 620 | |
| 621 | if (TC_U32_HTID(n->handle) == TC_U32_ROOT) |
| 622 | ht = rtnl_dereference(tp->root); |
| 623 | else |
| 624 | ht = u32_lookup_ht(tp_c, TC_U32_HTID(n->handle)); |
| 625 | |
| 626 | ins = &ht->ht[TC_U32_HASH(n->handle)]; |
| 627 | |
| 628 | /* The node must always exist for it to be replaced if this is not the |
| 629 | * case then something went very wrong elsewhere. |
| 630 | */ |
| 631 | for (pins = rtnl_dereference(*ins); ; |
| 632 | ins = &pins->next, pins = rtnl_dereference(*ins)) |
| 633 | if (pins->handle == n->handle) |
| 634 | break; |
| 635 | |
| 636 | RCU_INIT_POINTER(n->next, pins->next); |
| 637 | rcu_assign_pointer(*ins, n); |
| 638 | } |
| 639 | |
| 640 | static struct tc_u_knode *u32_init_knode(struct tcf_proto *tp, |
| 641 | struct tc_u_knode *n) |
| 642 | { |
| 643 | struct tc_u_knode *new; |
| 644 | struct tc_u32_sel *s = &n->sel; |
| 645 | |
| 646 | new = kzalloc(sizeof(*n) + s->nkeys*sizeof(struct tc_u32_key), |
| 647 | GFP_KERNEL); |
| 648 | |
| 649 | if (!new) |
| 650 | return NULL; |
| 651 | |
| 652 | RCU_INIT_POINTER(new->next, n->next); |
| 653 | new->handle = n->handle; |
| 654 | RCU_INIT_POINTER(new->ht_up, n->ht_up); |
| 655 | |
| 656 | #ifdef CONFIG_NET_CLS_IND |
| 657 | new->ifindex = n->ifindex; |
| 658 | #endif |
| 659 | new->fshift = n->fshift; |
| 660 | new->res = n->res; |
| 661 | RCU_INIT_POINTER(new->ht_down, n->ht_down); |
| 662 | |
| 663 | /* bump reference count as long as we hold pointer to structure */ |
| 664 | if (new->ht_down) |
| 665 | new->ht_down->refcnt++; |
| 666 | |
| 667 | #ifdef CONFIG_CLS_U32_PERF |
| 668 | /* Statistics may be incremented by readers during update |
| 669 | * so we must keep them in tact. When the node is later destroyed |
| 670 | * a special destroy call must be made to not free the pf memory. |
| 671 | */ |
| 672 | new->pf = n->pf; |
| 673 | #endif |
| 674 | |
| 675 | #ifdef CONFIG_CLS_U32_MARK |
| 676 | new->val = n->val; |
| 677 | new->mask = n->mask; |
| 678 | /* Similarly success statistics must be moved as pointers */ |
| 679 | new->pcpu_success = n->pcpu_success; |
| 680 | #endif |
| 681 | new->tp = tp; |
| 682 | memcpy(&new->sel, s, sizeof(*s) + s->nkeys*sizeof(struct tc_u32_key)); |
| 683 | |
| 684 | tcf_exts_init(&new->exts, TCA_U32_ACT, TCA_U32_POLICE); |
| 685 | |
| 686 | return new; |
| 687 | } |
| 688 | |
Benjamin LaHaise | c1b5273 | 2013-01-14 05:15:39 +0000 | [diff] [blame] | 689 | 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] | 690 | struct tcf_proto *tp, unsigned long base, u32 handle, |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 691 | struct nlattr **tca, |
Cong Wang | 2f7ef2f | 2014-04-25 13:54:06 -0700 | [diff] [blame] | 692 | unsigned long *arg, bool ovr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | { |
| 694 | struct tc_u_common *tp_c = tp->data; |
| 695 | struct tc_u_hnode *ht; |
| 696 | struct tc_u_knode *n; |
| 697 | struct tc_u32_sel *s; |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 698 | struct nlattr *opt = tca[TCA_OPTIONS]; |
| 699 | struct nlattr *tb[TCA_U32_MAX + 1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | u32 htid; |
| 701 | int err; |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 702 | #ifdef CONFIG_CLS_U32_PERF |
| 703 | size_t size; |
| 704 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | |
| 706 | if (opt == NULL) |
| 707 | return handle ? -EINVAL : 0; |
| 708 | |
Patrick McHardy | 6fa8c01 | 2008-01-23 20:36:12 -0800 | [diff] [blame] | 709 | err = nla_parse_nested(tb, TCA_U32_MAX, opt, u32_policy); |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 710 | if (err < 0) |
| 711 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 713 | n = (struct tc_u_knode *)*arg; |
| 714 | if (n) { |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 715 | struct tc_u_knode *new; |
| 716 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 717 | if (TC_U32_KEY(n->handle) == 0) |
| 718 | return -EINVAL; |
| 719 | |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 720 | new = u32_init_knode(tp, n); |
| 721 | if (!new) |
| 722 | return -ENOMEM; |
| 723 | |
| 724 | err = u32_set_parms(net, tp, base, |
| 725 | rtnl_dereference(n->ht_up), new, tb, |
| 726 | tca[TCA_RATE], ovr); |
| 727 | |
| 728 | if (err) { |
| 729 | u32_destroy_key(tp, new, false); |
| 730 | return err; |
| 731 | } |
| 732 | |
| 733 | u32_replace_knode(tp, tp_c, new); |
WANG Cong | a0efb80 | 2014-09-30 16:07:24 -0700 | [diff] [blame] | 734 | tcf_unbind_filter(tp, &n->res); |
John Fastabend | de5df63 | 2014-09-19 21:50:34 -0700 | [diff] [blame] | 735 | call_rcu(&n->rcu, u32_delete_key_rcu); |
| 736 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | } |
| 738 | |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 739 | if (tb[TCA_U32_DIVISOR]) { |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 740 | unsigned int divisor = nla_get_u32(tb[TCA_U32_DIVISOR]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | |
| 742 | if (--divisor > 0x100) |
| 743 | return -EINVAL; |
| 744 | if (TC_U32_KEY(handle)) |
| 745 | return -EINVAL; |
| 746 | if (handle == 0) { |
| 747 | handle = gen_new_htid(tp->data); |
| 748 | if (handle == 0) |
| 749 | return -ENOMEM; |
| 750 | } |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 751 | ht = kzalloc(sizeof(*ht) + divisor*sizeof(void *), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | if (ht == NULL) |
| 753 | return -ENOBUFS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | ht->tp_c = tp_c; |
Jarek Poplawski | e56cfad | 2008-04-12 18:37:13 -0700 | [diff] [blame] | 755 | ht->refcnt = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | ht->divisor = divisor; |
| 757 | ht->handle = handle; |
| 758 | ht->prio = tp->prio; |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 759 | RCU_INIT_POINTER(ht->next, tp_c->hlist); |
| 760 | rcu_assign_pointer(tp_c->hlist, ht); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | *arg = (unsigned long)ht; |
| 762 | return 0; |
| 763 | } |
| 764 | |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 765 | if (tb[TCA_U32_HASH]) { |
Patrick McHardy | 1587bac | 2008-01-23 20:35:03 -0800 | [diff] [blame] | 766 | htid = nla_get_u32(tb[TCA_U32_HASH]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | if (TC_U32_HTID(htid) == TC_U32_ROOT) { |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 768 | ht = rtnl_dereference(tp->root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | htid = ht->handle; |
| 770 | } else { |
| 771 | ht = u32_lookup_ht(tp->data, TC_U32_HTID(htid)); |
| 772 | if (ht == NULL) |
| 773 | return -EINVAL; |
| 774 | } |
| 775 | } else { |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 776 | ht = rtnl_dereference(tp->root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 777 | htid = ht->handle; |
| 778 | } |
| 779 | |
| 780 | if (ht->divisor < TC_U32_HASH(htid)) |
| 781 | return -EINVAL; |
| 782 | |
| 783 | if (handle) { |
| 784 | if (TC_U32_HTID(handle) && TC_U32_HTID(handle^htid)) |
| 785 | return -EINVAL; |
| 786 | handle = htid | TC_U32_NODE(handle); |
| 787 | } else |
| 788 | handle = gen_new_kid(ht, htid); |
| 789 | |
Patrick McHardy | 6fa8c01 | 2008-01-23 20:36:12 -0800 | [diff] [blame] | 790 | if (tb[TCA_U32_SEL] == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | return -EINVAL; |
| 792 | |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 793 | s = nla_data(tb[TCA_U32_SEL]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | |
Panagiotis Issaris | 0da974f | 2006-07-21 14:51:30 -0700 | [diff] [blame] | 795 | n = kzalloc(sizeof(*n) + s->nkeys*sizeof(struct tc_u32_key), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | if (n == NULL) |
| 797 | return -ENOBUFS; |
| 798 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | #ifdef CONFIG_CLS_U32_PERF |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 800 | size = sizeof(struct tc_u32_pcnt) + s->nkeys * sizeof(u64); |
| 801 | n->pf = __alloc_percpu(size, __alignof__(struct tc_u32_pcnt)); |
| 802 | if (!n->pf) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | kfree(n); |
| 804 | return -ENOBUFS; |
| 805 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | #endif |
| 807 | |
| 808 | memcpy(&n->sel, s, sizeof(*s) + s->nkeys*sizeof(struct tc_u32_key)); |
John Fastabend | a96366bf | 2014-09-15 23:30:49 -0700 | [diff] [blame] | 809 | RCU_INIT_POINTER(n->ht_up, ht); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | n->handle = handle; |
Radu Rendec | b226801 | 2007-11-10 21:54:50 -0800 | [diff] [blame] | 811 | n->fshift = s->hmask ? ffs(ntohl(s->hmask)) - 1 : 0; |
WANG Cong | 5da57f4 | 2013-12-15 20:15:07 -0800 | [diff] [blame] | 812 | tcf_exts_init(&n->exts, TCA_U32_ACT, TCA_U32_POLICE); |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 813 | n->tp = tp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | |
| 815 | #ifdef CONFIG_CLS_U32_MARK |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 816 | n->pcpu_success = alloc_percpu(u32); |
John Fastabend | a1ddcfe | 2014-09-19 21:50:04 -0700 | [diff] [blame] | 817 | if (!n->pcpu_success) { |
| 818 | err = -ENOMEM; |
| 819 | goto errout; |
| 820 | } |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 821 | |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 822 | if (tb[TCA_U32_MARK]) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | struct tc_u32_mark *mark; |
| 824 | |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 825 | mark = nla_data(tb[TCA_U32_MARK]); |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 826 | n->val = mark->val; |
| 827 | n->mask = mark->mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | } |
| 829 | #endif |
| 830 | |
Cong Wang | 2f7ef2f | 2014-04-25 13:54:06 -0700 | [diff] [blame] | 831 | err = u32_set_parms(net, tp, base, ht, n, tb, tca[TCA_RATE], ovr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | if (err == 0) { |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 833 | struct tc_u_knode __rcu **ins; |
| 834 | struct tc_u_knode *pins; |
| 835 | |
| 836 | ins = &ht->ht[TC_U32_HASH(handle)]; |
| 837 | for (pins = rtnl_dereference(*ins); pins; |
| 838 | ins = &pins->next, pins = rtnl_dereference(*ins)) |
| 839 | if (TC_U32_NODE(handle) < TC_U32_NODE(pins->handle)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | break; |
| 841 | |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 842 | RCU_INIT_POINTER(n->next, pins); |
| 843 | rcu_assign_pointer(*ins, n); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 844 | |
| 845 | *arg = (unsigned long)n; |
| 846 | return 0; |
| 847 | } |
John Fastabend | a1ddcfe | 2014-09-19 21:50:04 -0700 | [diff] [blame] | 848 | |
| 849 | #ifdef CONFIG_CLS_U32_MARK |
| 850 | free_percpu(n->pcpu_success); |
Eric Dumazet | a2aeb02 | 2014-09-22 13:42:53 -0700 | [diff] [blame] | 851 | errout: |
John Fastabend | a1ddcfe | 2014-09-19 21:50:04 -0700 | [diff] [blame] | 852 | #endif |
| 853 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 854 | #ifdef CONFIG_CLS_U32_PERF |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 855 | free_percpu(n->pf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 856 | #endif |
| 857 | kfree(n); |
| 858 | return err; |
| 859 | } |
| 860 | |
| 861 | static void u32_walk(struct tcf_proto *tp, struct tcf_walker *arg) |
| 862 | { |
| 863 | struct tc_u_common *tp_c = tp->data; |
| 864 | struct tc_u_hnode *ht; |
| 865 | struct tc_u_knode *n; |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 866 | unsigned int h; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 867 | |
| 868 | if (arg->stop) |
| 869 | return; |
| 870 | |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 871 | for (ht = rtnl_dereference(tp_c->hlist); |
| 872 | ht; |
| 873 | ht = rtnl_dereference(ht->next)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | if (ht->prio != tp->prio) |
| 875 | continue; |
| 876 | if (arg->count >= arg->skip) { |
| 877 | if (arg->fn(tp, (unsigned long)ht, arg) < 0) { |
| 878 | arg->stop = 1; |
| 879 | return; |
| 880 | } |
| 881 | } |
| 882 | arg->count++; |
| 883 | for (h = 0; h <= ht->divisor; h++) { |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 884 | for (n = rtnl_dereference(ht->ht[h]); |
| 885 | n; |
| 886 | n = rtnl_dereference(n->next)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 | if (arg->count < arg->skip) { |
| 888 | arg->count++; |
| 889 | continue; |
| 890 | } |
| 891 | if (arg->fn(tp, (unsigned long)n, arg) < 0) { |
| 892 | arg->stop = 1; |
| 893 | return; |
| 894 | } |
| 895 | arg->count++; |
| 896 | } |
| 897 | } |
| 898 | } |
| 899 | } |
| 900 | |
WANG Cong | 832d1d5 | 2014-01-09 16:14:01 -0800 | [diff] [blame] | 901 | static int u32_dump(struct net *net, struct tcf_proto *tp, unsigned long fh, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 902 | struct sk_buff *skb, struct tcmsg *t) |
| 903 | { |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 904 | struct tc_u_knode *n = (struct tc_u_knode *)fh; |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 905 | struct tc_u_hnode *ht_up, *ht_down; |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 906 | struct nlattr *nest; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 907 | |
| 908 | if (n == NULL) |
| 909 | return skb->len; |
| 910 | |
| 911 | t->tcm_handle = n->handle; |
| 912 | |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 913 | nest = nla_nest_start(skb, TCA_OPTIONS); |
| 914 | if (nest == NULL) |
| 915 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 | |
| 917 | if (TC_U32_KEY(n->handle) == 0) { |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 918 | struct tc_u_hnode *ht = (struct tc_u_hnode *)fh; |
| 919 | u32 divisor = ht->divisor + 1; |
| 920 | |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 921 | if (nla_put_u32(skb, TCA_U32_DIVISOR, divisor)) |
| 922 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 923 | } else { |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 924 | #ifdef CONFIG_CLS_U32_PERF |
| 925 | struct tc_u32_pcnt *gpf; |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 926 | int cpu; |
John Fastabend | 80aab73 | 2014-09-15 23:30:26 -0700 | [diff] [blame] | 927 | #endif |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 928 | |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 929 | if (nla_put(skb, TCA_U32_SEL, |
| 930 | sizeof(n->sel) + n->sel.nkeys*sizeof(struct tc_u32_key), |
| 931 | &n->sel)) |
| 932 | goto nla_put_failure; |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 933 | |
| 934 | ht_up = rtnl_dereference(n->ht_up); |
| 935 | if (ht_up) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | u32 htid = n->handle & 0xFFFFF000; |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 937 | if (nla_put_u32(skb, TCA_U32_HASH, htid)) |
| 938 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | } |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 940 | if (n->res.classid && |
| 941 | nla_put_u32(skb, TCA_U32_CLASSID, n->res.classid)) |
| 942 | goto nla_put_failure; |
John Fastabend | 1ce8772 | 2014-09-12 20:09:16 -0700 | [diff] [blame] | 943 | |
| 944 | ht_down = rtnl_dereference(n->ht_down); |
| 945 | if (ht_down && |
| 946 | nla_put_u32(skb, TCA_U32_LINK, ht_down->handle)) |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 947 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 948 | |
| 949 | #ifdef CONFIG_CLS_U32_MARK |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 950 | if ((n->val || n->mask)) { |
| 951 | struct tc_u32_mark mark = {.val = n->val, |
| 952 | .mask = n->mask, |
| 953 | .success = 0}; |
John Fastabend | 80aab73 | 2014-09-15 23:30:26 -0700 | [diff] [blame] | 954 | int cpum; |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 955 | |
John Fastabend | 80aab73 | 2014-09-15 23:30:26 -0700 | [diff] [blame] | 956 | for_each_possible_cpu(cpum) { |
| 957 | __u32 cnt = *per_cpu_ptr(n->pcpu_success, cpum); |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 958 | |
| 959 | mark.success += cnt; |
| 960 | } |
| 961 | |
| 962 | if (nla_put(skb, TCA_U32_MARK, sizeof(mark), &mark)) |
| 963 | goto nla_put_failure; |
| 964 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | #endif |
| 966 | |
WANG Cong | 5da57f4 | 2013-12-15 20:15:07 -0800 | [diff] [blame] | 967 | if (tcf_exts_dump(skb, &n->exts) < 0) |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 968 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | |
| 970 | #ifdef CONFIG_NET_CLS_IND |
WANG Cong | 2519a60 | 2014-01-09 16:14:02 -0800 | [diff] [blame] | 971 | if (n->ifindex) { |
| 972 | struct net_device *dev; |
| 973 | dev = __dev_get_by_index(net, n->ifindex); |
| 974 | if (dev && nla_put_string(skb, TCA_U32_INDEV, dev->name)) |
| 975 | goto nla_put_failure; |
| 976 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | #endif |
| 978 | #ifdef CONFIG_CLS_U32_PERF |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 979 | gpf = kzalloc(sizeof(struct tc_u32_pcnt) + |
| 980 | n->sel.nkeys * sizeof(u64), |
| 981 | GFP_KERNEL); |
| 982 | if (!gpf) |
| 983 | goto nla_put_failure; |
| 984 | |
| 985 | for_each_possible_cpu(cpu) { |
| 986 | int i; |
| 987 | struct tc_u32_pcnt *pf = per_cpu_ptr(n->pf, cpu); |
| 988 | |
| 989 | gpf->rcnt += pf->rcnt; |
| 990 | gpf->rhit += pf->rhit; |
| 991 | for (i = 0; i < n->sel.nkeys; i++) |
| 992 | gpf->kcnts[i] += pf->kcnts[i]; |
| 993 | } |
| 994 | |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 995 | if (nla_put(skb, TCA_U32_PCNT, |
| 996 | sizeof(struct tc_u32_pcnt) + n->sel.nkeys*sizeof(u64), |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 997 | gpf)) { |
| 998 | kfree(gpf); |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 999 | goto nla_put_failure; |
John Fastabend | 459d5f6 | 2014-09-12 20:08:47 -0700 | [diff] [blame] | 1000 | } |
| 1001 | kfree(gpf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1002 | #endif |
| 1003 | } |
| 1004 | |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 1005 | nla_nest_end(skb, nest); |
| 1006 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1007 | if (TC_U32_KEY(n->handle)) |
WANG Cong | 5da57f4 | 2013-12-15 20:15:07 -0800 | [diff] [blame] | 1008 | if (tcf_exts_dump_stats(skb, &n->exts) < 0) |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 1009 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1010 | return skb->len; |
| 1011 | |
Patrick McHardy | add93b6 | 2008-01-22 22:11:33 -0800 | [diff] [blame] | 1012 | nla_put_failure: |
Patrick McHardy | 4b3550ef | 2008-01-23 20:34:11 -0800 | [diff] [blame] | 1013 | nla_nest_cancel(skb, nest); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1014 | return -1; |
| 1015 | } |
| 1016 | |
Patrick McHardy | 2eb9d75 | 2008-01-22 22:10:42 -0800 | [diff] [blame] | 1017 | static struct tcf_proto_ops cls_u32_ops __read_mostly = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 | .kind = "u32", |
| 1019 | .classify = u32_classify, |
| 1020 | .init = u32_init, |
| 1021 | .destroy = u32_destroy, |
| 1022 | .get = u32_get, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1023 | .change = u32_change, |
| 1024 | .delete = u32_delete, |
| 1025 | .walk = u32_walk, |
| 1026 | .dump = u32_dump, |
| 1027 | .owner = THIS_MODULE, |
| 1028 | }; |
| 1029 | |
| 1030 | static int __init init_u32(void) |
| 1031 | { |
stephen hemminger | 6ff9c36 | 2010-05-12 06:37:05 +0000 | [diff] [blame] | 1032 | pr_info("u32 classifier\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 | #ifdef CONFIG_CLS_U32_PERF |
stephen hemminger | 6ff9c36 | 2010-05-12 06:37:05 +0000 | [diff] [blame] | 1034 | pr_info(" Performance counters on\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1035 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1036 | #ifdef CONFIG_NET_CLS_IND |
stephen hemminger | 6ff9c36 | 2010-05-12 06:37:05 +0000 | [diff] [blame] | 1037 | pr_info(" input device check on\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1038 | #endif |
| 1039 | #ifdef CONFIG_NET_CLS_ACT |
stephen hemminger | 6ff9c36 | 2010-05-12 06:37:05 +0000 | [diff] [blame] | 1040 | pr_info(" Actions configured\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1041 | #endif |
| 1042 | return register_tcf_proto_ops(&cls_u32_ops); |
| 1043 | } |
| 1044 | |
YOSHIFUJI Hideaki | 10297b9 | 2007-02-09 23:25:16 +0900 | [diff] [blame] | 1045 | static void __exit exit_u32(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | { |
| 1047 | unregister_tcf_proto_ops(&cls_u32_ops); |
| 1048 | } |
| 1049 | |
| 1050 | module_init(init_u32) |
| 1051 | module_exit(exit_u32) |
| 1052 | MODULE_LICENSE("GPL"); |