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