Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 1 | /* |
Pravin B Shelar | 9b996e5 | 2014-05-06 18:41:20 -0700 | [diff] [blame] | 2 | * Copyright (c) 2007-2014 Nicira, Inc. |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 3 | * |
| 4 | * This program is free software; you can redistribute it and/or |
| 5 | * modify it under the terms of version 2 of the GNU General Public |
| 6 | * License as published by the Free Software Foundation. |
| 7 | * |
| 8 | * This program is distributed in the hope that it will be useful, but |
| 9 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 11 | * General Public License for more details. |
| 12 | * |
| 13 | * You should have received a copy of the GNU General Public License |
| 14 | * along with this program; if not, write to the Free Software |
| 15 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
| 16 | * 02110-1301, USA |
| 17 | */ |
| 18 | |
| 19 | #include "flow.h" |
| 20 | #include "datapath.h" |
| 21 | #include <linux/uaccess.h> |
| 22 | #include <linux/netdevice.h> |
| 23 | #include <linux/etherdevice.h> |
| 24 | #include <linux/if_ether.h> |
| 25 | #include <linux/if_vlan.h> |
| 26 | #include <net/llc_pdu.h> |
| 27 | #include <linux/kernel.h> |
Daniel Borkmann | 8754589 | 2014-12-10 16:33:11 +0100 | [diff] [blame] | 28 | #include <linux/jhash.h> |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 29 | #include <linux/jiffies.h> |
| 30 | #include <linux/llc.h> |
| 31 | #include <linux/module.h> |
| 32 | #include <linux/in.h> |
| 33 | #include <linux/rcupdate.h> |
| 34 | #include <linux/if_arp.h> |
| 35 | #include <linux/ip.h> |
| 36 | #include <linux/ipv6.h> |
| 37 | #include <linux/sctp.h> |
| 38 | #include <linux/tcp.h> |
| 39 | #include <linux/udp.h> |
| 40 | #include <linux/icmp.h> |
| 41 | #include <linux/icmpv6.h> |
| 42 | #include <linux/rculist.h> |
| 43 | #include <net/ip.h> |
| 44 | #include <net/ipv6.h> |
| 45 | #include <net/ndisc.h> |
| 46 | |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 47 | #define TBL_MIN_BUCKETS 1024 |
| 48 | #define REHASH_INTERVAL (10 * 60 * HZ) |
| 49 | |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 50 | static struct kmem_cache *flow_cache; |
Jarno Rajahalme | 63e7959 | 2014-03-27 12:42:54 -0700 | [diff] [blame] | 51 | struct kmem_cache *flow_stats_cache __read_mostly; |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 52 | |
| 53 | static u16 range_n_bytes(const struct sw_flow_key_range *range) |
| 54 | { |
| 55 | return range->end - range->start; |
| 56 | } |
| 57 | |
| 58 | void ovs_flow_mask_key(struct sw_flow_key *dst, const struct sw_flow_key *src, |
| 59 | const struct sw_flow_mask *mask) |
| 60 | { |
Daniele Di Proietto | 7085130 | 2014-01-23 10:56:49 -0800 | [diff] [blame] | 61 | const long *m = (const long *)((const u8 *)&mask->key + |
| 62 | mask->range.start); |
| 63 | const long *s = (const long *)((const u8 *)src + |
| 64 | mask->range.start); |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 65 | long *d = (long *)((u8 *)dst + mask->range.start); |
| 66 | int i; |
| 67 | |
| 68 | /* The memory outside of the 'mask->range' are not set since |
| 69 | * further operations on 'dst' only uses contents within |
| 70 | * 'mask->range'. |
| 71 | */ |
| 72 | for (i = 0; i < range_n_bytes(&mask->range); i += sizeof(long)) |
| 73 | *d++ = *s++ & *m++; |
| 74 | } |
| 75 | |
Jarno Rajahalme | 23dabf8 | 2014-03-27 12:35:23 -0700 | [diff] [blame] | 76 | struct sw_flow *ovs_flow_alloc(void) |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 77 | { |
| 78 | struct sw_flow *flow; |
Jarno Rajahalme | 63e7959 | 2014-03-27 12:42:54 -0700 | [diff] [blame] | 79 | struct flow_stats *stats; |
| 80 | int node; |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 81 | |
| 82 | flow = kmem_cache_alloc(flow_cache, GFP_KERNEL); |
| 83 | if (!flow) |
| 84 | return ERR_PTR(-ENOMEM); |
| 85 | |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 86 | flow->sf_acts = NULL; |
| 87 | flow->mask = NULL; |
Jarno Rajahalme | 63e7959 | 2014-03-27 12:42:54 -0700 | [diff] [blame] | 88 | flow->stats_last_writer = NUMA_NO_NODE; |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 89 | |
Jarno Rajahalme | 63e7959 | 2014-03-27 12:42:54 -0700 | [diff] [blame] | 90 | /* Initialize the default stat node. */ |
| 91 | stats = kmem_cache_alloc_node(flow_stats_cache, |
| 92 | GFP_KERNEL | __GFP_ZERO, 0); |
| 93 | if (!stats) |
Jarno Rajahalme | 23dabf8 | 2014-03-27 12:35:23 -0700 | [diff] [blame] | 94 | goto err; |
Pravin B Shelar | e298e50 | 2013-10-29 17:22:21 -0700 | [diff] [blame] | 95 | |
Jarno Rajahalme | 63e7959 | 2014-03-27 12:42:54 -0700 | [diff] [blame] | 96 | spin_lock_init(&stats->lock); |
Pravin B Shelar | e298e50 | 2013-10-29 17:22:21 -0700 | [diff] [blame] | 97 | |
Jarno Rajahalme | 63e7959 | 2014-03-27 12:42:54 -0700 | [diff] [blame] | 98 | RCU_INIT_POINTER(flow->stats[0], stats); |
| 99 | |
| 100 | for_each_node(node) |
| 101 | if (node != 0) |
| 102 | RCU_INIT_POINTER(flow->stats[node], NULL); |
| 103 | |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 104 | return flow; |
Pravin B Shelar | e298e50 | 2013-10-29 17:22:21 -0700 | [diff] [blame] | 105 | err: |
Wei Yongjun | ece37c8 | 2014-01-08 18:13:14 +0800 | [diff] [blame] | 106 | kmem_cache_free(flow_cache, flow); |
Pravin B Shelar | e298e50 | 2013-10-29 17:22:21 -0700 | [diff] [blame] | 107 | return ERR_PTR(-ENOMEM); |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 108 | } |
| 109 | |
Thomas Graf | 12eb18f | 2014-11-06 06:58:52 -0800 | [diff] [blame] | 110 | int ovs_flow_tbl_count(const struct flow_table *table) |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 111 | { |
| 112 | return table->count; |
| 113 | } |
| 114 | |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 115 | static struct flex_array *alloc_buckets(unsigned int n_buckets) |
| 116 | { |
| 117 | struct flex_array *buckets; |
| 118 | int i, err; |
| 119 | |
| 120 | buckets = flex_array_alloc(sizeof(struct hlist_head), |
| 121 | n_buckets, GFP_KERNEL); |
| 122 | if (!buckets) |
| 123 | return NULL; |
| 124 | |
| 125 | err = flex_array_prealloc(buckets, 0, n_buckets, GFP_KERNEL); |
| 126 | if (err) { |
| 127 | flex_array_free(buckets); |
| 128 | return NULL; |
| 129 | } |
| 130 | |
| 131 | for (i = 0; i < n_buckets; i++) |
| 132 | INIT_HLIST_HEAD((struct hlist_head *) |
| 133 | flex_array_get(buckets, i)); |
| 134 | |
| 135 | return buckets; |
| 136 | } |
| 137 | |
| 138 | static void flow_free(struct sw_flow *flow) |
| 139 | { |
Jarno Rajahalme | 63e7959 | 2014-03-27 12:42:54 -0700 | [diff] [blame] | 140 | int node; |
| 141 | |
Jarno Rajahalme | eb07265 | 2014-05-05 14:15:18 -0700 | [diff] [blame] | 142 | kfree((struct sw_flow_actions __force *)flow->sf_acts); |
Jarno Rajahalme | 63e7959 | 2014-03-27 12:42:54 -0700 | [diff] [blame] | 143 | for_each_node(node) |
| 144 | if (flow->stats[node]) |
| 145 | kmem_cache_free(flow_stats_cache, |
| 146 | (struct flow_stats __force *)flow->stats[node]); |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 147 | kmem_cache_free(flow_cache, flow); |
| 148 | } |
| 149 | |
| 150 | static void rcu_free_flow_callback(struct rcu_head *rcu) |
| 151 | { |
| 152 | struct sw_flow *flow = container_of(rcu, struct sw_flow, rcu); |
| 153 | |
| 154 | flow_free(flow); |
| 155 | } |
| 156 | |
| 157 | void ovs_flow_free(struct sw_flow *flow, bool deferred) |
| 158 | { |
| 159 | if (!flow) |
| 160 | return; |
| 161 | |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 162 | if (deferred) |
| 163 | call_rcu(&flow->rcu, rcu_free_flow_callback); |
| 164 | else |
| 165 | flow_free(flow); |
| 166 | } |
| 167 | |
| 168 | static void free_buckets(struct flex_array *buckets) |
| 169 | { |
| 170 | flex_array_free(buckets); |
| 171 | } |
| 172 | |
Andy Zhou | e80857c | 2014-01-21 09:31:04 -0800 | [diff] [blame] | 173 | |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 174 | static void __table_instance_destroy(struct table_instance *ti) |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 175 | { |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 176 | free_buckets(ti->buckets); |
| 177 | kfree(ti); |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 178 | } |
| 179 | |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 180 | static struct table_instance *table_instance_alloc(int new_size) |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 181 | { |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 182 | struct table_instance *ti = kmalloc(sizeof(*ti), GFP_KERNEL); |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 183 | |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 184 | if (!ti) |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 185 | return NULL; |
| 186 | |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 187 | ti->buckets = alloc_buckets(new_size); |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 188 | |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 189 | if (!ti->buckets) { |
| 190 | kfree(ti); |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 191 | return NULL; |
| 192 | } |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 193 | ti->n_buckets = new_size; |
| 194 | ti->node_ver = 0; |
| 195 | ti->keep_flows = false; |
| 196 | get_random_bytes(&ti->hash_seed, sizeof(u32)); |
| 197 | |
| 198 | return ti; |
| 199 | } |
| 200 | |
| 201 | int ovs_flow_tbl_init(struct flow_table *table) |
| 202 | { |
| 203 | struct table_instance *ti; |
| 204 | |
| 205 | ti = table_instance_alloc(TBL_MIN_BUCKETS); |
| 206 | |
| 207 | if (!ti) |
| 208 | return -ENOMEM; |
| 209 | |
| 210 | rcu_assign_pointer(table->ti, ti); |
| 211 | INIT_LIST_HEAD(&table->mask_list); |
| 212 | table->last_rehash = jiffies; |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 213 | table->count = 0; |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 214 | return 0; |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 215 | } |
| 216 | |
| 217 | static void flow_tbl_destroy_rcu_cb(struct rcu_head *rcu) |
| 218 | { |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 219 | struct table_instance *ti = container_of(rcu, struct table_instance, rcu); |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 220 | |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 221 | __table_instance_destroy(ti); |
| 222 | } |
| 223 | |
| 224 | static void table_instance_destroy(struct table_instance *ti, bool deferred) |
| 225 | { |
Andy Zhou | e80857c | 2014-01-21 09:31:04 -0800 | [diff] [blame] | 226 | int i; |
| 227 | |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 228 | if (!ti) |
| 229 | return; |
| 230 | |
Andy Zhou | e80857c | 2014-01-21 09:31:04 -0800 | [diff] [blame] | 231 | if (ti->keep_flows) |
| 232 | goto skip_flows; |
| 233 | |
| 234 | for (i = 0; i < ti->n_buckets; i++) { |
| 235 | struct sw_flow *flow; |
| 236 | struct hlist_head *head = flex_array_get(ti->buckets, i); |
| 237 | struct hlist_node *n; |
| 238 | int ver = ti->node_ver; |
| 239 | |
| 240 | hlist_for_each_entry_safe(flow, n, head, hash_node[ver]) { |
| 241 | hlist_del_rcu(&flow->hash_node[ver]); |
| 242 | ovs_flow_free(flow, deferred); |
| 243 | } |
| 244 | } |
| 245 | |
| 246 | skip_flows: |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 247 | if (deferred) |
| 248 | call_rcu(&ti->rcu, flow_tbl_destroy_rcu_cb); |
| 249 | else |
| 250 | __table_instance_destroy(ti); |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 251 | } |
| 252 | |
Pravin B Shelar | 9b996e5 | 2014-05-06 18:41:20 -0700 | [diff] [blame] | 253 | /* No need for locking this function is called from RCU callback or |
| 254 | * error path. |
| 255 | */ |
| 256 | void ovs_flow_tbl_destroy(struct flow_table *table) |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 257 | { |
Pravin B Shelar | 9b996e5 | 2014-05-06 18:41:20 -0700 | [diff] [blame] | 258 | struct table_instance *ti = rcu_dereference_raw(table->ti); |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 259 | |
Pravin B Shelar | 9b996e5 | 2014-05-06 18:41:20 -0700 | [diff] [blame] | 260 | table_instance_destroy(ti, false); |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 261 | } |
| 262 | |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 263 | struct sw_flow *ovs_flow_tbl_dump_next(struct table_instance *ti, |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 264 | u32 *bucket, u32 *last) |
| 265 | { |
| 266 | struct sw_flow *flow; |
| 267 | struct hlist_head *head; |
| 268 | int ver; |
| 269 | int i; |
| 270 | |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 271 | ver = ti->node_ver; |
| 272 | while (*bucket < ti->n_buckets) { |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 273 | i = 0; |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 274 | head = flex_array_get(ti->buckets, *bucket); |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 275 | hlist_for_each_entry_rcu(flow, head, hash_node[ver]) { |
| 276 | if (i < *last) { |
| 277 | i++; |
| 278 | continue; |
| 279 | } |
| 280 | *last = i + 1; |
| 281 | return flow; |
| 282 | } |
| 283 | (*bucket)++; |
| 284 | *last = 0; |
| 285 | } |
| 286 | |
| 287 | return NULL; |
| 288 | } |
| 289 | |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 290 | static struct hlist_head *find_bucket(struct table_instance *ti, u32 hash) |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 291 | { |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 292 | hash = jhash_1word(hash, ti->hash_seed); |
| 293 | return flex_array_get(ti->buckets, |
| 294 | (hash & (ti->n_buckets - 1))); |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 295 | } |
| 296 | |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 297 | static void table_instance_insert(struct table_instance *ti, struct sw_flow *flow) |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 298 | { |
| 299 | struct hlist_head *head; |
| 300 | |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 301 | head = find_bucket(ti, flow->hash); |
| 302 | hlist_add_head_rcu(&flow->hash_node[ti->node_ver], head); |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 303 | } |
| 304 | |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 305 | static void flow_table_copy_flows(struct table_instance *old, |
| 306 | struct table_instance *new) |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 307 | { |
| 308 | int old_ver; |
| 309 | int i; |
| 310 | |
| 311 | old_ver = old->node_ver; |
| 312 | new->node_ver = !old_ver; |
| 313 | |
| 314 | /* Insert in new table. */ |
| 315 | for (i = 0; i < old->n_buckets; i++) { |
| 316 | struct sw_flow *flow; |
| 317 | struct hlist_head *head; |
| 318 | |
| 319 | head = flex_array_get(old->buckets, i); |
| 320 | |
| 321 | hlist_for_each_entry(flow, head, hash_node[old_ver]) |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 322 | table_instance_insert(new, flow); |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 323 | } |
| 324 | |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 325 | old->keep_flows = true; |
| 326 | } |
| 327 | |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 328 | static struct table_instance *table_instance_rehash(struct table_instance *ti, |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 329 | int n_buckets) |
| 330 | { |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 331 | struct table_instance *new_ti; |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 332 | |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 333 | new_ti = table_instance_alloc(n_buckets); |
| 334 | if (!new_ti) |
Pravin B Shelar | 618ed0c | 2013-10-04 00:17:42 -0700 | [diff] [blame] | 335 | return NULL; |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 336 | |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 337 | flow_table_copy_flows(ti, new_ti); |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 338 | |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 339 | return new_ti; |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 340 | } |
| 341 | |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 342 | int ovs_flow_tbl_flush(struct flow_table *flow_table) |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 343 | { |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 344 | struct table_instance *old_ti; |
| 345 | struct table_instance *new_ti; |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 346 | |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 347 | old_ti = ovsl_dereference(flow_table->ti); |
| 348 | new_ti = table_instance_alloc(TBL_MIN_BUCKETS); |
| 349 | if (!new_ti) |
| 350 | return -ENOMEM; |
| 351 | |
| 352 | rcu_assign_pointer(flow_table->ti, new_ti); |
| 353 | flow_table->last_rehash = jiffies; |
| 354 | flow_table->count = 0; |
| 355 | |
| 356 | table_instance_destroy(old_ti, true); |
| 357 | return 0; |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 358 | } |
| 359 | |
Joe Stringer | 272c2cf | 2015-01-21 16:42:50 -0800 | [diff] [blame^] | 360 | static u32 flow_hash(const struct sw_flow_key *key, |
| 361 | const struct sw_flow_key_range *range) |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 362 | { |
Joe Stringer | 272c2cf | 2015-01-21 16:42:50 -0800 | [diff] [blame^] | 363 | int key_start = range->start; |
| 364 | int key_end = range->end; |
Daniele Di Proietto | 7085130 | 2014-01-23 10:56:49 -0800 | [diff] [blame] | 365 | const u32 *hash_key = (const u32 *)((const u8 *)key + key_start); |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 366 | int hash_u32s = (key_end - key_start) >> 2; |
| 367 | |
| 368 | /* Make sure number of hash bytes are multiple of u32. */ |
| 369 | BUILD_BUG_ON(sizeof(long) % sizeof(u32)); |
| 370 | |
Daniel Borkmann | 8754589 | 2014-12-10 16:33:11 +0100 | [diff] [blame] | 371 | return jhash2(hash_key, hash_u32s, 0); |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 372 | } |
| 373 | |
| 374 | static int flow_key_start(const struct sw_flow_key *key) |
| 375 | { |
| 376 | if (key->tun_key.ipv4_dst) |
| 377 | return 0; |
| 378 | else |
| 379 | return rounddown(offsetof(struct sw_flow_key, phy), |
| 380 | sizeof(long)); |
| 381 | } |
| 382 | |
| 383 | static bool cmp_key(const struct sw_flow_key *key1, |
| 384 | const struct sw_flow_key *key2, |
| 385 | int key_start, int key_end) |
| 386 | { |
Daniele Di Proietto | 7085130 | 2014-01-23 10:56:49 -0800 | [diff] [blame] | 387 | const long *cp1 = (const long *)((const u8 *)key1 + key_start); |
| 388 | const long *cp2 = (const long *)((const u8 *)key2 + key_start); |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 389 | long diffs = 0; |
| 390 | int i; |
| 391 | |
| 392 | for (i = key_start; i < key_end; i += sizeof(long)) |
| 393 | diffs |= *cp1++ ^ *cp2++; |
| 394 | |
| 395 | return diffs == 0; |
| 396 | } |
| 397 | |
| 398 | static bool flow_cmp_masked_key(const struct sw_flow *flow, |
| 399 | const struct sw_flow_key *key, |
Joe Stringer | 272c2cf | 2015-01-21 16:42:50 -0800 | [diff] [blame^] | 400 | const struct sw_flow_key_range *range) |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 401 | { |
Joe Stringer | 272c2cf | 2015-01-21 16:42:50 -0800 | [diff] [blame^] | 402 | return cmp_key(&flow->key, key, range->start, range->end); |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 403 | } |
| 404 | |
| 405 | bool ovs_flow_cmp_unmasked_key(const struct sw_flow *flow, |
Thomas Graf | 12eb18f | 2014-11-06 06:58:52 -0800 | [diff] [blame] | 406 | const struct sw_flow_match *match) |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 407 | { |
| 408 | struct sw_flow_key *key = match->key; |
| 409 | int key_start = flow_key_start(key); |
| 410 | int key_end = match->range.end; |
| 411 | |
| 412 | return cmp_key(&flow->unmasked_key, key, key_start, key_end); |
| 413 | } |
| 414 | |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 415 | static struct sw_flow *masked_flow_lookup(struct table_instance *ti, |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 416 | const struct sw_flow_key *unmasked, |
Thomas Graf | 12eb18f | 2014-11-06 06:58:52 -0800 | [diff] [blame] | 417 | const struct sw_flow_mask *mask) |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 418 | { |
| 419 | struct sw_flow *flow; |
| 420 | struct hlist_head *head; |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 421 | u32 hash; |
| 422 | struct sw_flow_key masked_key; |
| 423 | |
| 424 | ovs_flow_mask_key(&masked_key, unmasked, mask); |
Joe Stringer | 272c2cf | 2015-01-21 16:42:50 -0800 | [diff] [blame^] | 425 | hash = flow_hash(&masked_key, &mask->range); |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 426 | head = find_bucket(ti, hash); |
| 427 | hlist_for_each_entry_rcu(flow, head, hash_node[ti->node_ver]) { |
Pravin B Shelar | 8ddd094 | 2013-10-29 23:10:58 -0700 | [diff] [blame] | 428 | if (flow->mask == mask && flow->hash == hash && |
Joe Stringer | 272c2cf | 2015-01-21 16:42:50 -0800 | [diff] [blame^] | 429 | flow_cmp_masked_key(flow, &masked_key, &mask->range)) |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 430 | return flow; |
| 431 | } |
| 432 | return NULL; |
| 433 | } |
| 434 | |
Andy Zhou | 5bb5063 | 2013-11-25 10:42:46 -0800 | [diff] [blame] | 435 | struct sw_flow *ovs_flow_tbl_lookup_stats(struct flow_table *tbl, |
Andy Zhou | 1bd7116 | 2013-10-22 10:42:46 -0700 | [diff] [blame] | 436 | const struct sw_flow_key *key, |
| 437 | u32 *n_mask_hit) |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 438 | { |
Jesse Gross | 663efa3 | 2013-12-03 10:58:53 -0800 | [diff] [blame] | 439 | struct table_instance *ti = rcu_dereference_ovsl(tbl->ti); |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 440 | struct sw_flow_mask *mask; |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 441 | struct sw_flow *flow; |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 442 | |
Andy Zhou | 1bd7116 | 2013-10-22 10:42:46 -0700 | [diff] [blame] | 443 | *n_mask_hit = 0; |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 444 | list_for_each_entry_rcu(mask, &tbl->mask_list, list) { |
Andy Zhou | 1bd7116 | 2013-10-22 10:42:46 -0700 | [diff] [blame] | 445 | (*n_mask_hit)++; |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 446 | flow = masked_flow_lookup(ti, key, mask); |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 447 | if (flow) /* Found */ |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 448 | return flow; |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 449 | } |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 450 | return NULL; |
| 451 | } |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 452 | |
Andy Zhou | 5bb5063 | 2013-11-25 10:42:46 -0800 | [diff] [blame] | 453 | struct sw_flow *ovs_flow_tbl_lookup(struct flow_table *tbl, |
| 454 | const struct sw_flow_key *key) |
| 455 | { |
| 456 | u32 __always_unused n_mask_hit; |
| 457 | |
| 458 | return ovs_flow_tbl_lookup_stats(tbl, key, &n_mask_hit); |
| 459 | } |
| 460 | |
Alex Wang | 4a46b24 | 2014-06-30 20:30:29 -0700 | [diff] [blame] | 461 | struct sw_flow *ovs_flow_tbl_lookup_exact(struct flow_table *tbl, |
Thomas Graf | 12eb18f | 2014-11-06 06:58:52 -0800 | [diff] [blame] | 462 | const struct sw_flow_match *match) |
Alex Wang | 4a46b24 | 2014-06-30 20:30:29 -0700 | [diff] [blame] | 463 | { |
| 464 | struct table_instance *ti = rcu_dereference_ovsl(tbl->ti); |
| 465 | struct sw_flow_mask *mask; |
| 466 | struct sw_flow *flow; |
| 467 | |
| 468 | /* Always called under ovs-mutex. */ |
| 469 | list_for_each_entry(mask, &tbl->mask_list, list) { |
| 470 | flow = masked_flow_lookup(ti, match->key, mask); |
| 471 | if (flow && ovs_flow_cmp_unmasked_key(flow, match)) /* Found */ |
| 472 | return flow; |
| 473 | } |
| 474 | return NULL; |
| 475 | } |
| 476 | |
Andy Zhou | 1bd7116 | 2013-10-22 10:42:46 -0700 | [diff] [blame] | 477 | int ovs_flow_tbl_num_masks(const struct flow_table *table) |
| 478 | { |
| 479 | struct sw_flow_mask *mask; |
| 480 | int num = 0; |
| 481 | |
| 482 | list_for_each_entry(mask, &table->mask_list, list) |
| 483 | num++; |
| 484 | |
| 485 | return num; |
| 486 | } |
| 487 | |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 488 | static struct table_instance *table_instance_expand(struct table_instance *ti) |
| 489 | { |
| 490 | return table_instance_rehash(ti, ti->n_buckets * 2); |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 491 | } |
| 492 | |
Jarno Rajahalme | 56c1986 | 2014-05-05 13:24:53 -0700 | [diff] [blame] | 493 | /* Remove 'mask' from the mask list, if it is not needed any more. */ |
| 494 | static void flow_mask_remove(struct flow_table *tbl, struct sw_flow_mask *mask) |
| 495 | { |
| 496 | if (mask) { |
| 497 | /* ovs-lock is required to protect mask-refcount and |
| 498 | * mask list. |
| 499 | */ |
| 500 | ASSERT_OVSL(); |
| 501 | BUG_ON(!mask->ref_count); |
| 502 | mask->ref_count--; |
| 503 | |
| 504 | if (!mask->ref_count) { |
| 505 | list_del_rcu(&mask->list); |
| 506 | kfree_rcu(mask, rcu); |
| 507 | } |
| 508 | } |
| 509 | } |
| 510 | |
| 511 | /* Must be called with OVS mutex held. */ |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 512 | void ovs_flow_tbl_remove(struct flow_table *table, struct sw_flow *flow) |
| 513 | { |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 514 | struct table_instance *ti = ovsl_dereference(table->ti); |
| 515 | |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 516 | BUG_ON(table->count == 0); |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 517 | hlist_del_rcu(&flow->hash_node[ti->node_ver]); |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 518 | table->count--; |
Jarno Rajahalme | 56c1986 | 2014-05-05 13:24:53 -0700 | [diff] [blame] | 519 | |
| 520 | /* RCU delete the mask. 'flow->mask' is not NULLed, as it should be |
| 521 | * accessible as long as the RCU read lock is held. |
| 522 | */ |
| 523 | flow_mask_remove(table, flow->mask); |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 524 | } |
| 525 | |
Pravin B Shelar | 618ed0c | 2013-10-04 00:17:42 -0700 | [diff] [blame] | 526 | static struct sw_flow_mask *mask_alloc(void) |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 527 | { |
| 528 | struct sw_flow_mask *mask; |
| 529 | |
| 530 | mask = kmalloc(sizeof(*mask), GFP_KERNEL); |
| 531 | if (mask) |
Andy Zhou | e80857c | 2014-01-21 09:31:04 -0800 | [diff] [blame] | 532 | mask->ref_count = 1; |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 533 | |
| 534 | return mask; |
| 535 | } |
| 536 | |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 537 | static bool mask_equal(const struct sw_flow_mask *a, |
| 538 | const struct sw_flow_mask *b) |
| 539 | { |
Daniele Di Proietto | 7085130 | 2014-01-23 10:56:49 -0800 | [diff] [blame] | 540 | const u8 *a_ = (const u8 *)&a->key + a->range.start; |
| 541 | const u8 *b_ = (const u8 *)&b->key + b->range.start; |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 542 | |
| 543 | return (a->range.end == b->range.end) |
| 544 | && (a->range.start == b->range.start) |
| 545 | && (memcmp(a_, b_, range_n_bytes(&a->range)) == 0); |
| 546 | } |
| 547 | |
Pravin B Shelar | 618ed0c | 2013-10-04 00:17:42 -0700 | [diff] [blame] | 548 | static struct sw_flow_mask *flow_mask_find(const struct flow_table *tbl, |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 549 | const struct sw_flow_mask *mask) |
| 550 | { |
| 551 | struct list_head *ml; |
| 552 | |
Pravin B Shelar | b637e49 | 2013-10-04 00:14:23 -0700 | [diff] [blame] | 553 | list_for_each(ml, &tbl->mask_list) { |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 554 | struct sw_flow_mask *m; |
| 555 | m = container_of(ml, struct sw_flow_mask, list); |
| 556 | if (mask_equal(mask, m)) |
| 557 | return m; |
| 558 | } |
| 559 | |
| 560 | return NULL; |
| 561 | } |
| 562 | |
Ben Pfaff | d121190 | 2013-11-25 10:40:51 -0800 | [diff] [blame] | 563 | /* Add 'mask' into the mask list, if it is not already there. */ |
Pravin B Shelar | 618ed0c | 2013-10-04 00:17:42 -0700 | [diff] [blame] | 564 | static int flow_mask_insert(struct flow_table *tbl, struct sw_flow *flow, |
Thomas Graf | 12eb18f | 2014-11-06 06:58:52 -0800 | [diff] [blame] | 565 | const struct sw_flow_mask *new) |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 566 | { |
Pravin B Shelar | 618ed0c | 2013-10-04 00:17:42 -0700 | [diff] [blame] | 567 | struct sw_flow_mask *mask; |
| 568 | mask = flow_mask_find(tbl, new); |
| 569 | if (!mask) { |
| 570 | /* Allocate a new mask if none exsits. */ |
| 571 | mask = mask_alloc(); |
| 572 | if (!mask) |
| 573 | return -ENOMEM; |
| 574 | mask->key = new->key; |
| 575 | mask->range = new->range; |
| 576 | list_add_rcu(&mask->list, &tbl->mask_list); |
Andy Zhou | e80857c | 2014-01-21 09:31:04 -0800 | [diff] [blame] | 577 | } else { |
| 578 | BUG_ON(!mask->ref_count); |
| 579 | mask->ref_count++; |
Pravin B Shelar | 618ed0c | 2013-10-04 00:17:42 -0700 | [diff] [blame] | 580 | } |
| 581 | |
Pravin B Shelar | 618ed0c | 2013-10-04 00:17:42 -0700 | [diff] [blame] | 582 | flow->mask = mask; |
| 583 | return 0; |
| 584 | } |
| 585 | |
Jarno Rajahalme | 56c1986 | 2014-05-05 13:24:53 -0700 | [diff] [blame] | 586 | /* Must be called with OVS mutex held. */ |
Joe Stringer | d29ab6f | 2015-01-21 16:42:49 -0800 | [diff] [blame] | 587 | static void flow_key_insert(struct flow_table *table, struct sw_flow *flow) |
Pravin B Shelar | 618ed0c | 2013-10-04 00:17:42 -0700 | [diff] [blame] | 588 | { |
| 589 | struct table_instance *new_ti = NULL; |
| 590 | struct table_instance *ti; |
Pravin B Shelar | 618ed0c | 2013-10-04 00:17:42 -0700 | [diff] [blame] | 591 | |
Joe Stringer | 272c2cf | 2015-01-21 16:42:50 -0800 | [diff] [blame^] | 592 | flow->hash = flow_hash(&flow->key, &flow->mask->range); |
Pravin B Shelar | 618ed0c | 2013-10-04 00:17:42 -0700 | [diff] [blame] | 593 | ti = ovsl_dereference(table->ti); |
| 594 | table_instance_insert(ti, flow); |
| 595 | table->count++; |
| 596 | |
| 597 | /* Expand table, if necessary, to make room. */ |
| 598 | if (table->count > ti->n_buckets) |
| 599 | new_ti = table_instance_expand(ti); |
| 600 | else if (time_after(jiffies, table->last_rehash + REHASH_INTERVAL)) |
| 601 | new_ti = table_instance_rehash(ti, ti->n_buckets); |
| 602 | |
| 603 | if (new_ti) { |
| 604 | rcu_assign_pointer(table->ti, new_ti); |
| 605 | table_instance_destroy(ti, true); |
| 606 | table->last_rehash = jiffies; |
| 607 | } |
Joe Stringer | d29ab6f | 2015-01-21 16:42:49 -0800 | [diff] [blame] | 608 | } |
| 609 | |
| 610 | /* Must be called with OVS mutex held. */ |
| 611 | int ovs_flow_tbl_insert(struct flow_table *table, struct sw_flow *flow, |
| 612 | const struct sw_flow_mask *mask) |
| 613 | { |
| 614 | int err; |
| 615 | |
| 616 | err = flow_mask_insert(table, flow, mask); |
| 617 | if (err) |
| 618 | return err; |
| 619 | flow_key_insert(table, flow); |
| 620 | |
Pravin B Shelar | 618ed0c | 2013-10-04 00:17:42 -0700 | [diff] [blame] | 621 | return 0; |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 622 | } |
| 623 | |
| 624 | /* Initializes the flow module. |
| 625 | * Returns zero if successful or a negative error code. */ |
| 626 | int ovs_flow_init(void) |
| 627 | { |
| 628 | BUILD_BUG_ON(__alignof__(struct sw_flow_key) % __alignof__(long)); |
| 629 | BUILD_BUG_ON(sizeof(struct sw_flow_key) % sizeof(long)); |
| 630 | |
Jarno Rajahalme | 63e7959 | 2014-03-27 12:42:54 -0700 | [diff] [blame] | 631 | flow_cache = kmem_cache_create("sw_flow", sizeof(struct sw_flow) |
| 632 | + (num_possible_nodes() |
| 633 | * sizeof(struct flow_stats *)), |
| 634 | 0, 0, NULL); |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 635 | if (flow_cache == NULL) |
| 636 | return -ENOMEM; |
| 637 | |
Jarno Rajahalme | 63e7959 | 2014-03-27 12:42:54 -0700 | [diff] [blame] | 638 | flow_stats_cache |
| 639 | = kmem_cache_create("sw_flow_stats", sizeof(struct flow_stats), |
| 640 | 0, SLAB_HWCACHE_ALIGN, NULL); |
| 641 | if (flow_stats_cache == NULL) { |
| 642 | kmem_cache_destroy(flow_cache); |
| 643 | flow_cache = NULL; |
| 644 | return -ENOMEM; |
| 645 | } |
| 646 | |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 647 | return 0; |
| 648 | } |
| 649 | |
| 650 | /* Uninitializes the flow module. */ |
| 651 | void ovs_flow_exit(void) |
| 652 | { |
Jarno Rajahalme | 63e7959 | 2014-03-27 12:42:54 -0700 | [diff] [blame] | 653 | kmem_cache_destroy(flow_stats_cache); |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 654 | kmem_cache_destroy(flow_cache); |
| 655 | } |