]> git.proxmox.com Git - mirror_ovs.git/blame - datapath/flow.c
datapath: make skb->csum consistent with rest of networking stack.
[mirror_ovs.git] / datapath / flow.c
CommitLineData
064af421 1/*
e0edde6f 2 * Copyright (c) 2007-2011 Nicira, Inc.
a14bc59f 3 *
a9a29d22
JG
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
064af421
BP
17 */
18
19#include "flow.h"
f5e86186 20#include "datapath.h"
6455100f 21#include <linux/uaccess.h>
064af421
BP
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>
8d5ebd83 28#include <linux/jhash.h>
064af421
BP
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>
a26ef517 34#include <linux/if_arp.h>
064af421 35#include <linux/ip.h>
d31f1109 36#include <linux/ipv6.h>
064af421
BP
37#include <linux/tcp.h>
38#include <linux/udp.h>
39#include <linux/icmp.h>
d31f1109 40#include <linux/icmpv6.h>
3544358a 41#include <linux/rculist.h>
064af421 42#include <net/ip.h>
d31f1109 43#include <net/ipv6.h>
685a51a5 44#include <net/ndisc.h>
064af421 45
6ce39213
JG
46#include "vlan.h"
47
33b38b63 48static struct kmem_cache *flow_cache;
064af421 49
2db65bf7
JG
50static int check_header(struct sk_buff *skb, int len)
51{
52 if (unlikely(skb->len < len))
53 return -EINVAL;
54 if (unlikely(!pskb_may_pull(skb, len)))
55 return -ENOMEM;
56 return 0;
57}
58
6455100f 59static bool arphdr_ok(struct sk_buff *skb)
a26ef517 60{
2db65bf7
JG
61 return pskb_may_pull(skb, skb_network_offset(skb) +
62 sizeof(struct arp_eth_header));
a26ef517
JP
63}
64
6455100f 65static int check_iphdr(struct sk_buff *skb)
064af421 66{
4c1ad233
BP
67 unsigned int nh_ofs = skb_network_offset(skb);
68 unsigned int ip_len;
2db65bf7 69 int err;
4c1ad233 70
2db65bf7
JG
71 err = check_header(skb, nh_ofs + sizeof(struct iphdr));
72 if (unlikely(err))
73 return err;
4c1ad233
BP
74
75 ip_len = ip_hdrlen(skb);
2db65bf7
JG
76 if (unlikely(ip_len < sizeof(struct iphdr) ||
77 skb->len < nh_ofs + ip_len))
4c1ad233
BP
78 return -EINVAL;
79
4c1ad233
BP
80 skb_set_transport_header(skb, nh_ofs + ip_len);
81 return 0;
064af421
BP
82}
83
6455100f 84static bool tcphdr_ok(struct sk_buff *skb)
064af421
BP
85{
86 int th_ofs = skb_transport_offset(skb);
2db65bf7
JG
87 int tcp_len;
88
89 if (unlikely(!pskb_may_pull(skb, th_ofs + sizeof(struct tcphdr))))
90 return false;
91
92 tcp_len = tcp_hdrlen(skb);
93 if (unlikely(tcp_len < sizeof(struct tcphdr) ||
94 skb->len < th_ofs + tcp_len))
95 return false;
96
97 return true;
064af421
BP
98}
99
6455100f 100static bool udphdr_ok(struct sk_buff *skb)
064af421 101{
2db65bf7
JG
102 return pskb_may_pull(skb, skb_transport_offset(skb) +
103 sizeof(struct udphdr));
064af421
BP
104}
105
6455100f 106static bool icmphdr_ok(struct sk_buff *skb)
064af421 107{
2db65bf7
JG
108 return pskb_may_pull(skb, skb_transport_offset(skb) +
109 sizeof(struct icmphdr));
064af421
BP
110}
111
850b6b3b 112u64 ovs_flow_used_time(unsigned long flow_jiffies)
ec58547a
JG
113{
114 struct timespec cur_ts;
115 u64 cur_ms, idle_ms;
116
117 ktime_get_ts(&cur_ts);
118 idle_ms = jiffies_to_msecs(jiffies - flow_jiffies);
119 cur_ms = (u64)cur_ts.tv_sec * MSEC_PER_SEC +
120 cur_ts.tv_nsec / NSEC_PER_MSEC;
121
122 return cur_ms - idle_ms;
123}
124
76abe283 125#define SW_FLOW_KEY_OFFSET(field) \
6455100f
PS
126 (offsetof(struct sw_flow_key, field) + \
127 FIELD_SIZEOF(struct sw_flow_key, field))
76abe283
AE
128
129static int parse_ipv6hdr(struct sk_buff *skb, struct sw_flow_key *key,
130 int *key_lenp)
d31f1109
JP
131{
132 unsigned int nh_ofs = skb_network_offset(skb);
133 unsigned int nh_len;
134 int payload_ofs;
d31f1109
JP
135 struct ipv6hdr *nh;
136 uint8_t nexthdr;
0fd0d083 137 __be16 frag_off;
2db65bf7 138 int err;
d31f1109 139
fa8223b7 140 *key_lenp = SW_FLOW_KEY_OFFSET(ipv6.label);
76abe283 141
2db65bf7
JG
142 err = check_header(skb, nh_ofs + sizeof(*nh));
143 if (unlikely(err))
144 return err;
d31f1109
JP
145
146 nh = ipv6_hdr(skb);
147 nexthdr = nh->nexthdr;
148 payload_ofs = (u8 *)(nh + 1) - skb->data;
d31f1109 149
28bad473 150 key->ip.proto = NEXTHDR_NONE;
530180fd 151 key->ip.tos = ipv6_get_dsfield(nh);
a61680c6 152 key->ip.ttl = nh->hop_limit;
fa8223b7 153 key->ipv6.label = *(__be32 *)nh & htonl(IPV6_FLOWINFO_FLOWLABEL);
858d1026
JG
154 key->ipv6.addr.src = nh->saddr;
155 key->ipv6.addr.dst = nh->daddr;
d31f1109 156
0fd0d083 157 payload_ofs = ipv6_skip_exthdr(skb, payload_ofs, &nexthdr, &frag_off);
bfef4717 158 if (unlikely(payload_ofs < 0))
d31f1109 159 return -EINVAL;
bfef4717 160
0fd0d083
JG
161 if (frag_off) {
162 if (frag_off & htons(~0x7))
163 key->ip.frag = OVS_FRAG_TYPE_LATER;
164 else
165 key->ip.frag = OVS_FRAG_TYPE_FIRST;
166 }
167
d31f1109 168 nh_len = payload_ofs - nh_ofs;
d31f1109 169 skb_set_transport_header(skb, nh_ofs + nh_len);
28bad473 170 key->ip.proto = nexthdr;
d31f1109
JP
171 return nh_len;
172}
173
174static bool icmp6hdr_ok(struct sk_buff *skb)
175{
2db65bf7
JG
176 return pskb_may_pull(skb, skb_transport_offset(skb) +
177 sizeof(struct icmp6hdr));
d31f1109 178}
ec58547a 179
064af421
BP
180#define TCP_FLAGS_OFFSET 13
181#define TCP_FLAG_MASK 0x3f
182
850b6b3b 183void ovs_flow_used(struct sw_flow *flow, struct sk_buff *skb)
064af421 184{
064af421
BP
185 u8 tcp_flags = 0;
186
11460e23
JG
187 if ((flow->key.eth.type == htons(ETH_P_IP) ||
188 flow->key.eth.type == htons(ETH_P_IPV6)) &&
9c47b45a
JG
189 flow->key.ip.proto == IPPROTO_TCP &&
190 likely(skb->len >= skb_transport_offset(skb) + sizeof(struct tcphdr))) {
abfec865
BP
191 u8 *tcp = (u8 *)tcp_hdr(skb);
192 tcp_flags = *(tcp + TCP_FLAGS_OFFSET) & TCP_FLAG_MASK;
064af421
BP
193 }
194
e9141eec 195 spin_lock(&flow->lock);
6bfafa55 196 flow->used = jiffies;
064af421
BP
197 flow->packet_count++;
198 flow->byte_count += skb->len;
199 flow->tcp_flags |= tcp_flags;
e9141eec 200 spin_unlock(&flow->lock);
064af421
BP
201}
202
9b405f1a 203struct sw_flow_actions *ovs_flow_actions_alloc(int size)
064af421
BP
204{
205 struct sw_flow_actions *sfa;
206
9b405f1a 207 if (size > MAX_ACTIONS_BUFSIZE)
064af421
BP
208 return ERR_PTR(-EINVAL);
209
ba400435 210 sfa = kmalloc(sizeof(*sfa) + size, GFP_KERNEL);
064af421
BP
211 if (!sfa)
212 return ERR_PTR(-ENOMEM);
213
9b405f1a 214 sfa->actions_len = 0;
064af421
BP
215 return sfa;
216}
217
850b6b3b 218struct sw_flow *ovs_flow_alloc(void)
560e8022
JG
219{
220 struct sw_flow *flow;
221
222 flow = kmem_cache_alloc(flow_cache, GFP_KERNEL);
223 if (!flow)
224 return ERR_PTR(-ENOMEM);
225
226 spin_lock_init(&flow->lock);
6f04e94a 227 flow->sf_acts = NULL;
064af421 228
560e8022
JG
229 return flow;
230}
231
be2ba156 232static struct hlist_head *find_bucket(struct flow_table *table, u32 hash)
8d5ebd83 233{
acd051f1 234 hash = jhash_1word(hash, table->hash_seed);
3544358a
PS
235 return flex_array_get(table->buckets,
236 (hash & (table->n_buckets - 1)));
237}
238
be2ba156 239static struct flex_array *alloc_buckets(unsigned int n_buckets)
3544358a 240{
be2ba156 241 struct flex_array *buckets;
3544358a
PS
242 int i, err;
243
244 buckets = flex_array_alloc(sizeof(struct hlist_head *),
245 n_buckets, GFP_KERNEL);
246 if (!buckets)
247 return NULL;
248
249 err = flex_array_prealloc(buckets, 0, n_buckets, GFP_KERNEL);
250 if (err) {
251 flex_array_free(buckets);
252 return NULL;
253 }
254
255 for (i = 0; i < n_buckets; i++)
256 INIT_HLIST_HEAD((struct hlist_head *)
257 flex_array_get(buckets, i));
258
259 return buckets;
260}
261
6455100f 262static void free_buckets(struct flex_array *buckets)
3544358a
PS
263{
264 flex_array_free(buckets);
265}
266
850b6b3b 267struct flow_table *ovs_flow_tbl_alloc(int new_size)
3544358a
PS
268{
269 struct flow_table *table = kmalloc(sizeof(*table), GFP_KERNEL);
270
271 if (!table)
272 return NULL;
273
274 table->buckets = alloc_buckets(new_size);
275
276 if (!table->buckets) {
277 kfree(table);
278 return NULL;
279 }
280 table->n_buckets = new_size;
281 table->count = 0;
acd051f1
PS
282 table->node_ver = 0;
283 table->keep_flows = false;
284 get_random_bytes(&table->hash_seed, sizeof(u32));
3544358a
PS
285
286 return table;
287}
fb8c9347 288
850b6b3b 289void ovs_flow_tbl_destroy(struct flow_table *table)
3544358a
PS
290{
291 int i;
292
293 if (!table)
294 return;
295
acd051f1
PS
296 if (table->keep_flows)
297 goto skip_flows;
298
3544358a
PS
299 for (i = 0; i < table->n_buckets; i++) {
300 struct sw_flow *flow;
301 struct hlist_head *head = flex_array_get(table->buckets, i);
f8dfbcb7 302 struct hlist_node *n;
acd051f1 303 int ver = table->node_ver;
3544358a 304
f8dfbcb7 305 hlist_for_each_entry_safe(flow, n, head, hash_node[ver]) {
acd051f1 306 hlist_del_rcu(&flow->hash_node[ver]);
9321954a 307 ovs_flow_free(flow);
3544358a
PS
308 }
309 }
310
acd051f1 311skip_flows:
3544358a
PS
312 free_buckets(table->buckets);
313 kfree(table);
314}
315
316static void flow_tbl_destroy_rcu_cb(struct rcu_head *rcu)
317{
318 struct flow_table *table = container_of(rcu, struct flow_table, rcu);
319
850b6b3b 320 ovs_flow_tbl_destroy(table);
3544358a
PS
321}
322
850b6b3b 323void ovs_flow_tbl_deferred_destroy(struct flow_table *table)
3544358a 324{
6455100f
PS
325 if (!table)
326 return;
3544358a 327
6455100f 328 call_rcu(&table->rcu, flow_tbl_destroy_rcu_cb);
3544358a
PS
329}
330
850b6b3b 331struct sw_flow *ovs_flow_tbl_next(struct flow_table *table, u32 *bucket, u32 *last)
3544358a
PS
332{
333 struct sw_flow *flow;
334 struct hlist_head *head;
acd051f1 335 int ver;
3544358a
PS
336 int i;
337
acd051f1 338 ver = table->node_ver;
3544358a
PS
339 while (*bucket < table->n_buckets) {
340 i = 0;
341 head = flex_array_get(table->buckets, *bucket);
f8dfbcb7 342 hlist_for_each_entry_rcu(flow, head, hash_node[ver]) {
3544358a
PS
343 if (i < *last) {
344 i++;
345 continue;
346 }
347 *last = i + 1;
348 return flow;
349 }
350 (*bucket)++;
351 *last = 0;
352 }
353
354 return NULL;
355}
356
13e24889
PS
357static void __flow_tbl_insert(struct flow_table *table, struct sw_flow *flow)
358{
359 struct hlist_head *head;
360 head = find_bucket(table, flow->hash);
361 hlist_add_head_rcu(&flow->hash_node[table->node_ver], head);
362 table->count++;
363}
364
acd051f1 365static void flow_table_copy_flows(struct flow_table *old, struct flow_table *new)
3544358a 366{
acd051f1 367 int old_ver;
3544358a
PS
368 int i;
369
acd051f1
PS
370 old_ver = old->node_ver;
371 new->node_ver = !old_ver;
3544358a 372
acd051f1
PS
373 /* Insert in new table. */
374 for (i = 0; i < old->n_buckets; i++) {
3544358a
PS
375 struct sw_flow *flow;
376 struct hlist_head *head;
3544358a 377
acd051f1 378 head = flex_array_get(old->buckets, i);
3544358a 379
f8dfbcb7 380 hlist_for_each_entry(flow, head, hash_node[old_ver])
13e24889 381 __flow_tbl_insert(new, flow);
3544358a 382 }
acd051f1
PS
383 old->keep_flows = true;
384}
385
386static struct flow_table *__flow_tbl_rehash(struct flow_table *table, int n_buckets)
387{
388 struct flow_table *new_table;
389
390 new_table = ovs_flow_tbl_alloc(n_buckets);
391 if (!new_table)
392 return ERR_PTR(-ENOMEM);
393
394 flow_table_copy_flows(table, new_table);
3544358a
PS
395
396 return new_table;
397}
398
acd051f1
PS
399struct flow_table *ovs_flow_tbl_rehash(struct flow_table *table)
400{
401 return __flow_tbl_rehash(table, table->n_buckets);
402}
403
404struct flow_table *ovs_flow_tbl_expand(struct flow_table *table)
405{
406 return __flow_tbl_rehash(table, table->n_buckets * 2);
407}
408
9321954a
JG
409void ovs_flow_free(struct sw_flow *flow)
410{
411 if (unlikely(!flow))
412 return;
413
414 kfree((struct sf_flow_acts __force *)flow->sf_acts);
415 kmem_cache_free(flow_cache, flow);
416}
417
850b6b3b 418/* RCU callback used by ovs_flow_deferred_free. */
064af421
BP
419static void rcu_free_flow_callback(struct rcu_head *rcu)
420{
421 struct sw_flow *flow = container_of(rcu, struct sw_flow, rcu);
fb8c9347 422
9321954a 423 ovs_flow_free(flow);
064af421
BP
424}
425
426/* Schedules 'flow' to be freed after the next RCU grace period.
427 * The caller must hold rcu_read_lock for this to be sensible. */
850b6b3b 428void ovs_flow_deferred_free(struct sw_flow *flow)
064af421
BP
429{
430 call_rcu(&flow->rcu, rcu_free_flow_callback);
431}
432
850b6b3b 433/* RCU callback used by ovs_flow_deferred_free_acts. */
064af421
BP
434static void rcu_free_acts_callback(struct rcu_head *rcu)
435{
d295e8e9 436 struct sw_flow_actions *sf_acts = container_of(rcu,
064af421 437 struct sw_flow_actions, rcu);
ba400435 438 kfree(sf_acts);
064af421
BP
439}
440
441/* Schedules 'sf_acts' to be freed after the next RCU grace period.
442 * The caller must hold rcu_read_lock for this to be sensible. */
850b6b3b 443void ovs_flow_deferred_free_acts(struct sw_flow_actions *sf_acts)
064af421
BP
444{
445 call_rcu(&sf_acts->rcu, rcu_free_acts_callback);
446}
447
2db65bf7 448static int parse_vlan(struct sk_buff *skb, struct sw_flow_key *key)
064af421 449{
50f06e16
BP
450 struct qtag_prefix {
451 __be16 eth_type; /* ETH_P_8021Q */
452 __be16 tci;
453 };
454 struct qtag_prefix *qp;
455
8ddc056d
BP
456 if (unlikely(skb->len < sizeof(struct qtag_prefix) + sizeof(__be16)))
457 return 0;
458
2db65bf7
JG
459 if (unlikely(!pskb_may_pull(skb, sizeof(struct qtag_prefix) +
460 sizeof(__be16))))
461 return -ENOMEM;
50f06e16
BP
462
463 qp = (struct qtag_prefix *) skb->data;
76abe283 464 key->eth.tci = qp->tci | htons(VLAN_TAG_PRESENT);
50f06e16 465 __skb_pull(skb, sizeof(struct qtag_prefix));
2db65bf7
JG
466
467 return 0;
50f06e16
BP
468}
469
470static __be16 parse_ethertype(struct sk_buff *skb)
064af421 471{
50f06e16
BP
472 struct llc_snap_hdr {
473 u8 dsap; /* Always 0xAA */
474 u8 ssap; /* Always 0xAA */
475 u8 ctrl;
476 u8 oui[3];
8dda8c9b 477 __be16 ethertype;
50f06e16
BP
478 };
479 struct llc_snap_hdr *llc;
480 __be16 proto;
481
482 proto = *(__be16 *) skb->data;
483 __skb_pull(skb, sizeof(__be16));
484
7cd46155 485 if (ntohs(proto) >= ETH_P_802_3_MIN)
50f06e16
BP
486 return proto;
487
2db65bf7 488 if (skb->len < sizeof(struct llc_snap_hdr))
36956a7d 489 return htons(ETH_P_802_2);
50f06e16 490
2db65bf7
JG
491 if (unlikely(!pskb_may_pull(skb, sizeof(struct llc_snap_hdr))))
492 return htons(0);
493
50f06e16
BP
494 llc = (struct llc_snap_hdr *) skb->data;
495 if (llc->dsap != LLC_SAP_SNAP ||
496 llc->ssap != LLC_SAP_SNAP ||
497 (llc->oui[0] | llc->oui[1] | llc->oui[2]) != 0)
36956a7d 498 return htons(ETH_P_802_2);
50f06e16
BP
499
500 __skb_pull(skb, sizeof(struct llc_snap_hdr));
9e69bc5f 501
7cd46155 502 if (ntohs(llc->ethertype) >= ETH_P_802_3_MIN)
9e69bc5f
RL
503 return llc->ethertype;
504
505 return htons(ETH_P_802_2);
064af421
BP
506}
507
685a51a5 508static int parse_icmpv6(struct sk_buff *skb, struct sw_flow_key *key,
76abe283 509 int *key_lenp, int nh_len)
685a51a5 510{
685a51a5 511 struct icmp6hdr *icmp = icmp6_hdr(skb);
76abe283
AE
512 int error = 0;
513 int key_len;
685a51a5
JP
514
515 /* The ICMPv6 type and code fields use the 16-bit transport port
bfef4717
JG
516 * fields, so we need to store them in 16-bit network byte order.
517 */
76abe283
AE
518 key->ipv6.tp.src = htons(icmp->icmp6_type);
519 key->ipv6.tp.dst = htons(icmp->icmp6_code);
520 key_len = SW_FLOW_KEY_OFFSET(ipv6.tp);
685a51a5 521
bfef4717
JG
522 if (icmp->icmp6_code == 0 &&
523 (icmp->icmp6_type == NDISC_NEIGHBOUR_SOLICITATION ||
524 icmp->icmp6_type == NDISC_NEIGHBOUR_ADVERTISEMENT)) {
e977ba19 525 int icmp_len = skb->len - skb_transport_offset(skb);
685a51a5
JP
526 struct nd_msg *nd;
527 int offset;
528
76abe283
AE
529 key_len = SW_FLOW_KEY_OFFSET(ipv6.nd);
530
685a51a5 531 /* In order to process neighbor discovery options, we need the
bfef4717
JG
532 * entire packet.
533 */
534 if (unlikely(icmp_len < sizeof(*nd)))
76abe283
AE
535 goto out;
536 if (unlikely(skb_linearize(skb))) {
537 error = -ENOMEM;
538 goto out;
539 }
685a51a5
JP
540
541 nd = (struct nd_msg *)skb_transport_header(skb);
858d1026 542 key->ipv6.nd.target = nd->target;
76abe283 543 key_len = SW_FLOW_KEY_OFFSET(ipv6.nd);
685a51a5
JP
544
545 icmp_len -= sizeof(*nd);
546 offset = 0;
547 while (icmp_len >= 8) {
6455100f
PS
548 struct nd_opt_hdr *nd_opt =
549 (struct nd_opt_hdr *)(nd->opt + offset);
685a51a5
JP
550 int opt_len = nd_opt->nd_opt_len * 8;
551
bfef4717 552 if (unlikely(!opt_len || opt_len > icmp_len))
685a51a5
JP
553 goto invalid;
554
bfef4717
JG
555 /* Store the link layer address if the appropriate
556 * option is provided. It is considered an error if
557 * the same link layer option is specified twice.
558 */
685a51a5 559 if (nd_opt->nd_opt_type == ND_OPT_SOURCE_LL_ADDR
bfef4717 560 && opt_len == 8) {
76abe283 561 if (unlikely(!is_zero_ether_addr(key->ipv6.nd.sll)))
685a51a5 562 goto invalid;
76abe283 563 memcpy(key->ipv6.nd.sll,
bfef4717 564 &nd->opt[offset+sizeof(*nd_opt)], ETH_ALEN);
685a51a5 565 } else if (nd_opt->nd_opt_type == ND_OPT_TARGET_LL_ADDR
bfef4717 566 && opt_len == 8) {
76abe283 567 if (unlikely(!is_zero_ether_addr(key->ipv6.nd.tll)))
685a51a5 568 goto invalid;
76abe283 569 memcpy(key->ipv6.nd.tll,
bfef4717 570 &nd->opt[offset+sizeof(*nd_opt)], ETH_ALEN);
685a51a5
JP
571 }
572
573 icmp_len -= opt_len;
574 offset += opt_len;
575 }
576 }
577
76abe283 578 goto out;
685a51a5
JP
579
580invalid:
76abe283
AE
581 memset(&key->ipv6.nd.target, 0, sizeof(key->ipv6.nd.target));
582 memset(key->ipv6.nd.sll, 0, sizeof(key->ipv6.nd.sll));
583 memset(key->ipv6.nd.tll, 0, sizeof(key->ipv6.nd.tll));
685a51a5 584
76abe283
AE
585out:
586 *key_lenp = key_len;
587 return error;
685a51a5
JP
588}
589
a31e0e31 590/**
850b6b3b 591 * ovs_flow_extract - extracts a flow key from an Ethernet frame.
a31e0e31
BP
592 * @skb: sk_buff that contains the frame, with skb->data pointing to the
593 * Ethernet header
594 * @in_port: port number on which @skb was received.
595 * @key: output flow key
76abe283 596 * @key_lenp: length of output flow key
a31e0e31
BP
597 *
598 * The caller must ensure that skb->len >= ETH_HLEN.
599 *
4c1ad233
BP
600 * Returns 0 if successful, otherwise a negative errno value.
601 *
59a18f80
BP
602 * Initializes @skb header pointers as follows:
603 *
604 * - skb->mac_header: the Ethernet header.
605 *
606 * - skb->network_header: just past the Ethernet header, or just past the
607 * VLAN header, to the first byte of the Ethernet payload.
608 *
ae9020cf 609 * - skb->transport_header: If key->eth.type is ETH_P_IP or ETH_P_IPV6
d31f1109
JP
610 * on output, then just past the IP header, if one is present and
611 * of a correct length, otherwise the same as skb->network_header.
ae9020cf 612 * For other key->eth.type values it is left untouched.
a31e0e31 613 */
850b6b3b 614int ovs_flow_extract(struct sk_buff *skb, u16 in_port, struct sw_flow_key *key,
7257b535 615 int *key_lenp)
064af421 616{
76abe283
AE
617 int error = 0;
618 int key_len = SW_FLOW_KEY_OFFSET(eth);
064af421 619 struct ethhdr *eth;
064af421 620
84c17d98 621 memset(key, 0, sizeof(*key));
abff858b
PS
622
623 key->phy.priority = skb->priority;
356af50b 624 if (OVS_CB(skb)->tun_key)
6694e498 625 memcpy(&key->tun_key, OVS_CB(skb)->tun_key, sizeof(key->tun_key));
abff858b 626 key->phy.in_port = in_port;
72e8bf28 627 key->phy.skb_mark = skb_get_mark(skb);
064af421 628
064af421 629 skb_reset_mac_header(skb);
064af421 630
2db65bf7
JG
631 /* Link layer. We are guaranteed to have at least the 14 byte Ethernet
632 * header in the linear data area.
633 */
50f06e16 634 eth = eth_hdr(skb);
76abe283
AE
635 memcpy(key->eth.src, eth->h_source, ETH_ALEN);
636 memcpy(key->eth.dst, eth->h_dest, ETH_ALEN);
637
50f06e16 638 __skb_pull(skb, 2 * ETH_ALEN);
3cfede14
PS
639 /* We are going to push all headers that we pull, so no need to
640 * update skb->csum here. */
6ce39213
JG
641
642 if (vlan_tx_tag_present(skb))
76abe283 643 key->eth.tci = htons(vlan_get_tci(skb));
6ce39213 644 else if (eth->h_proto == htons(ETH_P_8021Q))
2db65bf7
JG
645 if (unlikely(parse_vlan(skb, key)))
646 return -ENOMEM;
6ce39213 647
76abe283
AE
648 key->eth.type = parse_ethertype(skb);
649 if (unlikely(key->eth.type == htons(0)))
2db65bf7
JG
650 return -ENOMEM;
651
50f06e16 652 skb_reset_network_header(skb);
2db65bf7 653 __skb_push(skb, skb->data - skb_mac_header(skb));
064af421
BP
654
655 /* Network layer. */
76abe283 656 if (key->eth.type == htons(ETH_P_IP)) {
4c1ad233 657 struct iphdr *nh;
7257b535 658 __be16 offset;
76abe283
AE
659
660 key_len = SW_FLOW_KEY_OFFSET(ipv4.addr);
4c1ad233
BP
661
662 error = check_iphdr(skb);
663 if (unlikely(error)) {
664 if (error == -EINVAL) {
665 skb->transport_header = skb->network_header;
76abe283 666 error = 0;
4c1ad233 667 }
76abe283 668 goto out;
4c1ad233
BP
669 }
670
671 nh = ip_hdr(skb);
76abe283
AE
672 key->ipv4.addr.src = nh->saddr;
673 key->ipv4.addr.dst = nh->daddr;
7257b535 674
28bad473 675 key->ip.proto = nh->protocol;
530180fd 676 key->ip.tos = nh->tos;
a61680c6 677 key->ip.ttl = nh->ttl;
064af421 678
7257b535
BP
679 offset = nh->frag_off & htons(IP_OFFSET);
680 if (offset) {
9e44d715 681 key->ip.frag = OVS_FRAG_TYPE_LATER;
7257b535
BP
682 goto out;
683 }
684 if (nh->frag_off & htons(IP_MF) ||
685 skb_shinfo(skb)->gso_type & SKB_GSO_UDP)
9e44d715 686 key->ip.frag = OVS_FRAG_TYPE_FIRST;
b7a31ec1 687
7257b535 688 /* Transport layer. */
28bad473 689 if (key->ip.proto == IPPROTO_TCP) {
5f4d087c 690 key_len = SW_FLOW_KEY_OFFSET(ipv4.tp);
7257b535 691 if (tcphdr_ok(skb)) {
5f4d087c
JG
692 struct tcphdr *tcp = tcp_hdr(skb);
693 key->ipv4.tp.src = tcp->source;
694 key->ipv4.tp.dst = tcp->dest;
695 }
28bad473 696 } else if (key->ip.proto == IPPROTO_UDP) {
5f4d087c 697 key_len = SW_FLOW_KEY_OFFSET(ipv4.tp);
7257b535 698 if (udphdr_ok(skb)) {
5f4d087c
JG
699 struct udphdr *udp = udp_hdr(skb);
700 key->ipv4.tp.src = udp->source;
701 key->ipv4.tp.dst = udp->dest;
702 }
28bad473 703 } else if (key->ip.proto == IPPROTO_ICMP) {
5f4d087c 704 key_len = SW_FLOW_KEY_OFFSET(ipv4.tp);
7257b535 705 if (icmphdr_ok(skb)) {
5f4d087c
JG
706 struct icmphdr *icmp = icmp_hdr(skb);
707 /* The ICMP type and code fields use the 16-bit
6455100f
PS
708 * transport port fields, so we need to store
709 * them in 16-bit network byte order. */
5f4d087c
JG
710 key->ipv4.tp.src = htons(icmp->type);
711 key->ipv4.tp.dst = htons(icmp->code);
712 }
713 }
714
8087f5ff
MM
715 } else if ((key->eth.type == htons(ETH_P_ARP) ||
716 key->eth.type == htons(ETH_P_RARP)) && arphdr_ok(skb)) {
a26ef517
JP
717 struct arp_eth_header *arp;
718
719 arp = (struct arp_eth_header *)skb_network_header(skb);
720
f5e86186 721 if (arp->ar_hrd == htons(ARPHRD_ETHER)
de3f65ea
JP
722 && arp->ar_pro == htons(ETH_P_IP)
723 && arp->ar_hln == ETH_ALEN
724 && arp->ar_pln == 4) {
725
726 /* We only match on the lower 8 bits of the opcode. */
b7a31ec1 727 if (ntohs(arp->ar_op) <= 0xff)
28bad473 728 key->ip.proto = ntohs(arp->ar_op);
a3d3ad0c
MM
729 memcpy(&key->ipv4.addr.src, arp->ar_sip, sizeof(key->ipv4.addr.src));
730 memcpy(&key->ipv4.addr.dst, arp->ar_tip, sizeof(key->ipv4.addr.dst));
731 memcpy(key->ipv4.arp.sha, arp->ar_sha, ETH_ALEN);
732 memcpy(key->ipv4.arp.tha, arp->ar_tha, ETH_ALEN);
733 key_len = SW_FLOW_KEY_OFFSET(ipv4.arp);
de3f65ea 734 }
76abe283 735 } else if (key->eth.type == htons(ETH_P_IPV6)) {
d31f1109
JP
736 int nh_len; /* IPv6 Header + Extensions */
737
76abe283 738 nh_len = parse_ipv6hdr(skb, key, &key_len);
d31f1109 739 if (unlikely(nh_len < 0)) {
76abe283 740 if (nh_len == -EINVAL)
d31f1109 741 skb->transport_header = skb->network_header;
76abe283
AE
742 else
743 error = nh_len;
744 goto out;
d31f1109
JP
745 }
746
9e44d715 747 if (key->ip.frag == OVS_FRAG_TYPE_LATER)
7257b535
BP
748 goto out;
749 if (skb_shinfo(skb)->gso_type & SKB_GSO_UDP)
9e44d715 750 key->ip.frag = OVS_FRAG_TYPE_FIRST;
7257b535 751
d31f1109 752 /* Transport layer. */
28bad473 753 if (key->ip.proto == NEXTHDR_TCP) {
76abe283 754 key_len = SW_FLOW_KEY_OFFSET(ipv6.tp);
d31f1109
JP
755 if (tcphdr_ok(skb)) {
756 struct tcphdr *tcp = tcp_hdr(skb);
76abe283
AE
757 key->ipv6.tp.src = tcp->source;
758 key->ipv6.tp.dst = tcp->dest;
d31f1109 759 }
28bad473 760 } else if (key->ip.proto == NEXTHDR_UDP) {
76abe283 761 key_len = SW_FLOW_KEY_OFFSET(ipv6.tp);
d31f1109
JP
762 if (udphdr_ok(skb)) {
763 struct udphdr *udp = udp_hdr(skb);
76abe283
AE
764 key->ipv6.tp.src = udp->source;
765 key->ipv6.tp.dst = udp->dest;
d31f1109 766 }
28bad473 767 } else if (key->ip.proto == NEXTHDR_ICMP) {
76abe283 768 key_len = SW_FLOW_KEY_OFFSET(ipv6.tp);
d31f1109 769 if (icmp6hdr_ok(skb)) {
76abe283 770 error = parse_icmpv6(skb, key, &key_len, nh_len);
685a51a5 771 if (error < 0)
76abe283 772 goto out;
d31f1109
JP
773 }
774 }
064af421 775 }
76abe283
AE
776
777out:
778 *key_lenp = key_len;
779 return error;
064af421
BP
780}
781
13e24889 782static u32 ovs_flow_hash(const struct sw_flow_key *key, int key_start, int key_len)
8d5ebd83 783{
13e24889
PS
784 return jhash2((u32 *)((u8 *)key + key_start),
785 DIV_ROUND_UP(key_len - key_start, sizeof(u32)), 0);
786}
787
788static int flow_key_start(struct sw_flow_key *key)
789{
6694e498 790 if (key->tun_key.ipv4_dst)
13e24889
PS
791 return 0;
792 else
6694e498 793 return offsetof(struct sw_flow_key, phy);
8d5ebd83
JG
794}
795
850b6b3b 796struct sw_flow *ovs_flow_tbl_lookup(struct flow_table *table,
3544358a 797 struct sw_flow_key *key, int key_len)
8d5ebd83 798{
3544358a 799 struct sw_flow *flow;
3544358a 800 struct hlist_head *head;
13e24889
PS
801 u8 *_key;
802 int key_start;
3544358a 803 u32 hash;
8d5ebd83 804
13e24889
PS
805 key_start = flow_key_start(key);
806 hash = ovs_flow_hash(key, key_start, key_len);
3544358a 807
13e24889 808 _key = (u8 *) key + key_start;
3544358a 809 head = find_bucket(table, hash);
f8dfbcb7 810 hlist_for_each_entry_rcu(flow, head, hash_node[table->node_ver]) {
3544358a
PS
811
812 if (flow->hash == hash &&
13e24889 813 !memcmp((u8 *)&flow->key + key_start, _key, key_len - key_start)) {
3544358a
PS
814 return flow;
815 }
816 }
817 return NULL;
818}
819
13e24889
PS
820void ovs_flow_tbl_insert(struct flow_table *table, struct sw_flow *flow,
821 struct sw_flow_key *key, int key_len)
3544358a 822{
13e24889
PS
823 flow->hash = ovs_flow_hash(key, flow_key_start(key), key_len);
824 memcpy(&flow->key, key, sizeof(flow->key));
825 __flow_tbl_insert(table, flow);
3544358a
PS
826}
827
850b6b3b 828void ovs_flow_tbl_remove(struct flow_table *table, struct sw_flow *flow)
3544358a 829{
49c7f80c 830 BUG_ON(table->count == 0);
acd051f1
PS
831 hlist_del_rcu(&flow->hash_node[table->node_ver]);
832 table->count--;
36956a7d
BP
833}
834
df2c07f4 835/* The size of the argument for each %OVS_KEY_ATTR_* Netlink attribute. */
4094406f
BP
836const int ovs_key_lens[OVS_KEY_ATTR_MAX + 1] = {
837 [OVS_KEY_ATTR_ENCAP] = -1,
a1bf209f
BP
838 [OVS_KEY_ATTR_PRIORITY] = sizeof(u32),
839 [OVS_KEY_ATTR_IN_PORT] = sizeof(u32),
72e8bf28 840 [OVS_KEY_ATTR_SKB_MARK] = sizeof(u32),
df2c07f4 841 [OVS_KEY_ATTR_ETHERNET] = sizeof(struct ovs_key_ethernet),
fea393b1 842 [OVS_KEY_ATTR_VLAN] = sizeof(__be16),
a1bf209f 843 [OVS_KEY_ATTR_ETHERTYPE] = sizeof(__be16),
df2c07f4
JP
844 [OVS_KEY_ATTR_IPV4] = sizeof(struct ovs_key_ipv4),
845 [OVS_KEY_ATTR_IPV6] = sizeof(struct ovs_key_ipv6),
846 [OVS_KEY_ATTR_TCP] = sizeof(struct ovs_key_tcp),
847 [OVS_KEY_ATTR_UDP] = sizeof(struct ovs_key_udp),
848 [OVS_KEY_ATTR_ICMP] = sizeof(struct ovs_key_icmp),
849 [OVS_KEY_ATTR_ICMPV6] = sizeof(struct ovs_key_icmpv6),
850 [OVS_KEY_ATTR_ARP] = sizeof(struct ovs_key_arp),
851 [OVS_KEY_ATTR_ND] = sizeof(struct ovs_key_nd),
9b405f1a 852 [OVS_KEY_ATTR_TUNNEL] = -1,
80e5eed9
BP
853};
854
34118cae
BP
855static int ipv4_flow_from_nlattrs(struct sw_flow_key *swkey, int *key_len,
856 const struct nlattr *a[], u64 *attrs)
857{
858 const struct ovs_key_icmp *icmp_key;
859 const struct ovs_key_tcp *tcp_key;
860 const struct ovs_key_udp *udp_key;
861
862 switch (swkey->ip.proto) {
863 case IPPROTO_TCP:
864 if (!(*attrs & (1 << OVS_KEY_ATTR_TCP)))
865 return -EINVAL;
866 *attrs &= ~(1 << OVS_KEY_ATTR_TCP);
867
868 *key_len = SW_FLOW_KEY_OFFSET(ipv4.tp);
869 tcp_key = nla_data(a[OVS_KEY_ATTR_TCP]);
870 swkey->ipv4.tp.src = tcp_key->tcp_src;
871 swkey->ipv4.tp.dst = tcp_key->tcp_dst;
872 break;
873
874 case IPPROTO_UDP:
875 if (!(*attrs & (1 << OVS_KEY_ATTR_UDP)))
876 return -EINVAL;
877 *attrs &= ~(1 << OVS_KEY_ATTR_UDP);
878
879 *key_len = SW_FLOW_KEY_OFFSET(ipv4.tp);
880 udp_key = nla_data(a[OVS_KEY_ATTR_UDP]);
881 swkey->ipv4.tp.src = udp_key->udp_src;
882 swkey->ipv4.tp.dst = udp_key->udp_dst;
883 break;
884
885 case IPPROTO_ICMP:
886 if (!(*attrs & (1 << OVS_KEY_ATTR_ICMP)))
887 return -EINVAL;
888 *attrs &= ~(1 << OVS_KEY_ATTR_ICMP);
889
890 *key_len = SW_FLOW_KEY_OFFSET(ipv4.tp);
891 icmp_key = nla_data(a[OVS_KEY_ATTR_ICMP]);
892 swkey->ipv4.tp.src = htons(icmp_key->icmp_type);
893 swkey->ipv4.tp.dst = htons(icmp_key->icmp_code);
894 break;
895 }
896
897 return 0;
898}
899
900static int ipv6_flow_from_nlattrs(struct sw_flow_key *swkey, int *key_len,
901 const struct nlattr *a[], u64 *attrs)
902{
903 const struct ovs_key_icmpv6 *icmpv6_key;
904 const struct ovs_key_tcp *tcp_key;
905 const struct ovs_key_udp *udp_key;
906
907 switch (swkey->ip.proto) {
908 case IPPROTO_TCP:
909 if (!(*attrs & (1 << OVS_KEY_ATTR_TCP)))
910 return -EINVAL;
911 *attrs &= ~(1 << OVS_KEY_ATTR_TCP);
912
913 *key_len = SW_FLOW_KEY_OFFSET(ipv6.tp);
914 tcp_key = nla_data(a[OVS_KEY_ATTR_TCP]);
915 swkey->ipv6.tp.src = tcp_key->tcp_src;
916 swkey->ipv6.tp.dst = tcp_key->tcp_dst;
917 break;
918
919 case IPPROTO_UDP:
920 if (!(*attrs & (1 << OVS_KEY_ATTR_UDP)))
921 return -EINVAL;
922 *attrs &= ~(1 << OVS_KEY_ATTR_UDP);
923
924 *key_len = SW_FLOW_KEY_OFFSET(ipv6.tp);
925 udp_key = nla_data(a[OVS_KEY_ATTR_UDP]);
926 swkey->ipv6.tp.src = udp_key->udp_src;
927 swkey->ipv6.tp.dst = udp_key->udp_dst;
928 break;
929
930 case IPPROTO_ICMPV6:
931 if (!(*attrs & (1 << OVS_KEY_ATTR_ICMPV6)))
932 return -EINVAL;
933 *attrs &= ~(1 << OVS_KEY_ATTR_ICMPV6);
934
935 *key_len = SW_FLOW_KEY_OFFSET(ipv6.tp);
936 icmpv6_key = nla_data(a[OVS_KEY_ATTR_ICMPV6]);
937 swkey->ipv6.tp.src = htons(icmpv6_key->icmpv6_type);
938 swkey->ipv6.tp.dst = htons(icmpv6_key->icmpv6_code);
939
940 if (swkey->ipv6.tp.src == htons(NDISC_NEIGHBOUR_SOLICITATION) ||
941 swkey->ipv6.tp.src == htons(NDISC_NEIGHBOUR_ADVERTISEMENT)) {
942 const struct ovs_key_nd *nd_key;
943
944 if (!(*attrs & (1 << OVS_KEY_ATTR_ND)))
945 return -EINVAL;
946 *attrs &= ~(1 << OVS_KEY_ATTR_ND);
947
948 *key_len = SW_FLOW_KEY_OFFSET(ipv6.nd);
949 nd_key = nla_data(a[OVS_KEY_ATTR_ND]);
950 memcpy(&swkey->ipv6.nd.target, nd_key->nd_target,
951 sizeof(swkey->ipv6.nd.target));
952 memcpy(swkey->ipv6.nd.sll, nd_key->nd_sll, ETH_ALEN);
953 memcpy(swkey->ipv6.nd.tll, nd_key->nd_tll, ETH_ALEN);
954 }
955 break;
956 }
957
958 return 0;
959}
960
fea393b1
BP
961static int parse_flow_nlattrs(const struct nlattr *attr,
962 const struct nlattr *a[], u64 *attrsp)
963{
964 const struct nlattr *nla;
965 u64 attrs;
966 int rem;
967
968 attrs = 0;
969 nla_for_each_nested(nla, attr, rem) {
970 u16 type = nla_type(nla);
4094406f 971 int expected_len;
fea393b1 972
4094406f 973 if (type > OVS_KEY_ATTR_MAX || attrs & (1ULL << type))
fea393b1 974 return -EINVAL;
4094406f
BP
975
976 expected_len = ovs_key_lens[type];
977 if (nla_len(nla) != expected_len && expected_len != -1)
978 return -EINVAL;
979
fea393b1
BP
980 attrs |= 1ULL << type;
981 a[type] = nla;
982 }
983 if (rem)
984 return -EINVAL;
985
986 *attrsp = attrs;
987 return 0;
988}
989
9b405f1a
PS
990int ipv4_tun_from_nlattr(const struct nlattr *attr,
991 struct ovs_key_ipv4_tunnel *tun_key)
992{
993 struct nlattr *a;
994 int rem;
995 bool ttl = false;
996
997 memset(tun_key, 0, sizeof(*tun_key));
998
999 nla_for_each_nested(a, attr, rem) {
1000 int type = nla_type(a);
1001 static const u32 ovs_tunnel_key_lens[OVS_TUNNEL_KEY_ATTR_MAX + 1] = {
1002 [OVS_TUNNEL_KEY_ATTR_ID] = sizeof(u64),
1003 [OVS_TUNNEL_KEY_ATTR_IPV4_SRC] = sizeof(u32),
1004 [OVS_TUNNEL_KEY_ATTR_IPV4_DST] = sizeof(u32),
1005 [OVS_TUNNEL_KEY_ATTR_TOS] = 1,
1006 [OVS_TUNNEL_KEY_ATTR_TTL] = 1,
1007 [OVS_TUNNEL_KEY_ATTR_DONT_FRAGMENT] = 0,
1008 [OVS_TUNNEL_KEY_ATTR_CSUM] = 0,
1009 };
1010
1011 if (type > OVS_TUNNEL_KEY_ATTR_MAX ||
1012 ovs_tunnel_key_lens[type] != nla_len(a))
1013 return -EINVAL;
1014
1015 switch (type) {
1016 case OVS_TUNNEL_KEY_ATTR_ID:
1017 tun_key->tun_id = nla_get_be64(a);
1018 tun_key->tun_flags |= OVS_TNL_F_KEY;
1019 break;
1020 case OVS_TUNNEL_KEY_ATTR_IPV4_SRC:
1021 tun_key->ipv4_src = nla_get_be32(a);
1022 break;
1023 case OVS_TUNNEL_KEY_ATTR_IPV4_DST:
1024 tun_key->ipv4_dst = nla_get_be32(a);
1025 break;
1026 case OVS_TUNNEL_KEY_ATTR_TOS:
1027 tun_key->ipv4_tos = nla_get_u8(a);
1028 break;
1029 case OVS_TUNNEL_KEY_ATTR_TTL:
1030 tun_key->ipv4_ttl = nla_get_u8(a);
1031 ttl = true;
1032 break;
1033 case OVS_TUNNEL_KEY_ATTR_DONT_FRAGMENT:
1034 tun_key->tun_flags |= OVS_TNL_F_DONT_FRAGMENT;
1035 break;
1036 case OVS_TUNNEL_KEY_ATTR_CSUM:
1037 tun_key->tun_flags |= OVS_TNL_F_CSUM;
1038 break;
1039 default:
1040 return -EINVAL;
1041
1042 }
1043 }
1044 if (rem > 0)
1045 return -EINVAL;
1046
1047 if (!tun_key->ipv4_dst)
1048 return -EINVAL;
1049
1050 if (!ttl)
1051 return -EINVAL;
1052
1053 return 0;
1054}
1055
1056int ipv4_tun_to_nlattr(struct sk_buff *skb,
1057 const struct ovs_key_ipv4_tunnel *tun_key)
1058{
1059 struct nlattr *nla;
1060
1061 nla = nla_nest_start(skb, OVS_KEY_ATTR_TUNNEL);
1062 if (!nla)
1063 return -EMSGSIZE;
1064
1065 if (tun_key->tun_flags & OVS_TNL_F_KEY &&
1066 nla_put_be64(skb, OVS_TUNNEL_KEY_ATTR_ID, tun_key->tun_id))
1067 return -EMSGSIZE;
1068 if (tun_key->ipv4_src &&
1069 nla_put_be32(skb, OVS_TUNNEL_KEY_ATTR_IPV4_SRC, tun_key->ipv4_src))
1070 return -EMSGSIZE;
1071 if (nla_put_be32(skb, OVS_TUNNEL_KEY_ATTR_IPV4_DST, tun_key->ipv4_dst))
1072 return -EMSGSIZE;
1073 if (tun_key->ipv4_tos &&
1074 nla_put_u8(skb, OVS_TUNNEL_KEY_ATTR_TOS, tun_key->ipv4_tos))
1075 return -EMSGSIZE;
1076 if (nla_put_u8(skb, OVS_TUNNEL_KEY_ATTR_TTL, tun_key->ipv4_ttl))
1077 return -EMSGSIZE;
1078 if ((tun_key->tun_flags & OVS_TNL_F_DONT_FRAGMENT) &&
1079 nla_put_flag(skb, OVS_TUNNEL_KEY_ATTR_DONT_FRAGMENT))
1080 return -EMSGSIZE;
1081 if ((tun_key->tun_flags & OVS_TNL_F_CSUM) &&
1082 nla_put_flag(skb, OVS_TUNNEL_KEY_ATTR_CSUM))
1083 return -EMSGSIZE;
1084
1085 nla_nest_end(skb, nla);
1086 return 0;
1087}
1088
36956a7d 1089/**
850b6b3b 1090 * ovs_flow_from_nlattrs - parses Netlink attributes into a flow key.
36956a7d 1091 * @swkey: receives the extracted flow key.
76abe283 1092 * @key_lenp: number of bytes used in @swkey.
df2c07f4 1093 * @attr: Netlink attribute holding nested %OVS_KEY_ATTR_* Netlink attribute
d6569377 1094 * sequence.
36956a7d 1095 */
850b6b3b 1096int ovs_flow_from_nlattrs(struct sw_flow_key *swkey, int *key_lenp,
76abe283 1097 const struct nlattr *attr)
36956a7d 1098{
34118cae
BP
1099 const struct nlattr *a[OVS_KEY_ATTR_MAX + 1];
1100 const struct ovs_key_ethernet *eth_key;
76abe283 1101 int key_len;
34118cae 1102 u64 attrs;
fea393b1 1103 int err;
36956a7d 1104
34118cae 1105 memset(swkey, 0, sizeof(struct sw_flow_key));
76abe283 1106 key_len = SW_FLOW_KEY_OFFSET(eth);
36956a7d 1107
fea393b1
BP
1108 err = parse_flow_nlattrs(attr, a, &attrs);
1109 if (err)
1110 return err;
36956a7d 1111
34118cae
BP
1112 /* Metadata attributes. */
1113 if (attrs & (1 << OVS_KEY_ATTR_PRIORITY)) {
1114 swkey->phy.priority = nla_get_u32(a[OVS_KEY_ATTR_PRIORITY]);
1115 attrs &= ~(1 << OVS_KEY_ATTR_PRIORITY);
1116 }
1117 if (attrs & (1 << OVS_KEY_ATTR_IN_PORT)) {
1118 u32 in_port = nla_get_u32(a[OVS_KEY_ATTR_IN_PORT]);
1119 if (in_port >= DP_MAX_PORTS)
1120 return -EINVAL;
1121 swkey->phy.in_port = in_port;
1122 attrs &= ~(1 << OVS_KEY_ATTR_IN_PORT);
1123 } else {
95b1d73a 1124 swkey->phy.in_port = DP_MAX_PORTS;
34118cae 1125 }
72e8bf28
AA
1126 if (attrs & (1 << OVS_KEY_ATTR_SKB_MARK)) {
1127 uint32_t mark = nla_get_u32(a[OVS_KEY_ATTR_SKB_MARK]);
1128#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,20) && !defined(CONFIG_NETFILTER)
1129 if (mark != 0)
1130 return -EINVAL;
1131#endif
1132 swkey->phy.skb_mark = mark;
1133 attrs &= ~(1 << OVS_KEY_ATTR_SKB_MARK);
1134 }
36956a7d 1135
85c9de19 1136 if (attrs & (1ULL << OVS_KEY_ATTR_TUNNEL)) {
9b405f1a
PS
1137 err = ipv4_tun_from_nlattr(a[OVS_KEY_ATTR_TUNNEL], &swkey->tun_key);
1138 if (err)
1139 return err;
5c7f5883 1140
9b405f1a 1141 attrs &= ~(1ULL << OVS_KEY_ATTR_TUNNEL);
34118cae 1142 }
76abe283 1143
34118cae
BP
1144 /* Data attributes. */
1145 if (!(attrs & (1 << OVS_KEY_ATTR_ETHERNET)))
1146 return -EINVAL;
1147 attrs &= ~(1 << OVS_KEY_ATTR_ETHERNET);
36956a7d 1148
34118cae
BP
1149 eth_key = nla_data(a[OVS_KEY_ATTR_ETHERNET]);
1150 memcpy(swkey->eth.src, eth_key->eth_src, ETH_ALEN);
1151 memcpy(swkey->eth.dst, eth_key->eth_dst, ETH_ALEN);
76abe283 1152
8ddc056d 1153 if (attrs & (1u << OVS_KEY_ATTR_ETHERTYPE) &&
fea393b1 1154 nla_get_be16(a[OVS_KEY_ATTR_ETHERTYPE]) == htons(ETH_P_8021Q)) {
8ddc056d
BP
1155 const struct nlattr *encap;
1156 __be16 tci;
1157
1158 if (attrs != ((1 << OVS_KEY_ATTR_VLAN) |
1159 (1 << OVS_KEY_ATTR_ETHERTYPE) |
1160 (1 << OVS_KEY_ATTR_ENCAP)))
34118cae 1161 return -EINVAL;
36956a7d 1162
8ddc056d
BP
1163 encap = a[OVS_KEY_ATTR_ENCAP];
1164 tci = nla_get_be16(a[OVS_KEY_ATTR_VLAN]);
1165 if (tci & htons(VLAN_TAG_PRESENT)) {
1166 swkey->eth.tci = tci;
1167
1168 err = parse_flow_nlattrs(encap, a, &attrs);
1169 if (err)
1170 return err;
1171 } else if (!tci) {
1172 /* Corner case for truncated 802.1Q header. */
1173 if (nla_len(encap))
1174 return -EINVAL;
1175
1176 swkey->eth.type = htons(ETH_P_8021Q);
1177 *key_lenp = key_len;
1178 return 0;
1179 } else {
1180 return -EINVAL;
1181 }
34118cae
BP
1182 }
1183
1184 if (attrs & (1 << OVS_KEY_ATTR_ETHERTYPE)) {
1185 swkey->eth.type = nla_get_be16(a[OVS_KEY_ATTR_ETHERTYPE]);
7cd46155 1186 if (ntohs(swkey->eth.type) < ETH_P_802_3_MIN)
34118cae
BP
1187 return -EINVAL;
1188 attrs &= ~(1 << OVS_KEY_ATTR_ETHERTYPE);
1189 } else {
1190 swkey->eth.type = htons(ETH_P_802_2);
1191 }
1192
1193 if (swkey->eth.type == htons(ETH_P_IP)) {
1194 const struct ovs_key_ipv4 *ipv4_key;
685a51a5 1195
34118cae
BP
1196 if (!(attrs & (1 << OVS_KEY_ATTR_IPV4)))
1197 return -EINVAL;
1198 attrs &= ~(1 << OVS_KEY_ATTR_IPV4);
1199
1200 key_len = SW_FLOW_KEY_OFFSET(ipv4.addr);
1201 ipv4_key = nla_data(a[OVS_KEY_ATTR_IPV4]);
1202 if (ipv4_key->ipv4_frag > OVS_FRAG_TYPE_MAX)
1203 return -EINVAL;
1204 swkey->ip.proto = ipv4_key->ipv4_proto;
1205 swkey->ip.tos = ipv4_key->ipv4_tos;
1206 swkey->ip.ttl = ipv4_key->ipv4_ttl;
1207 swkey->ip.frag = ipv4_key->ipv4_frag;
1208 swkey->ipv4.addr.src = ipv4_key->ipv4_src;
1209 swkey->ipv4.addr.dst = ipv4_key->ipv4_dst;
1210
1211 if (swkey->ip.frag != OVS_FRAG_TYPE_LATER) {
fea393b1 1212 err = ipv4_flow_from_nlattrs(swkey, &key_len, a, &attrs);
34118cae
BP
1213 if (err)
1214 return err;
36956a7d 1215 }
34118cae
BP
1216 } else if (swkey->eth.type == htons(ETH_P_IPV6)) {
1217 const struct ovs_key_ipv6 *ipv6_key;
36956a7d 1218
34118cae
BP
1219 if (!(attrs & (1 << OVS_KEY_ATTR_IPV6)))
1220 return -EINVAL;
1221 attrs &= ~(1 << OVS_KEY_ATTR_IPV6);
1222
1223 key_len = SW_FLOW_KEY_OFFSET(ipv6.label);
1224 ipv6_key = nla_data(a[OVS_KEY_ATTR_IPV6]);
1225 if (ipv6_key->ipv6_frag > OVS_FRAG_TYPE_MAX)
1226 return -EINVAL;
1227 swkey->ipv6.label = ipv6_key->ipv6_label;
1228 swkey->ip.proto = ipv6_key->ipv6_proto;
1229 swkey->ip.tos = ipv6_key->ipv6_tclass;
1230 swkey->ip.ttl = ipv6_key->ipv6_hlimit;
1231 swkey->ip.frag = ipv6_key->ipv6_frag;
1232 memcpy(&swkey->ipv6.addr.src, ipv6_key->ipv6_src,
1233 sizeof(swkey->ipv6.addr.src));
1234 memcpy(&swkey->ipv6.addr.dst, ipv6_key->ipv6_dst,
1235 sizeof(swkey->ipv6.addr.dst));
1236
1237 if (swkey->ip.frag != OVS_FRAG_TYPE_LATER) {
fea393b1 1238 err = ipv6_flow_from_nlattrs(swkey, &key_len, a, &attrs);
34118cae
BP
1239 if (err)
1240 return err;
1241 }
8087f5ff
MM
1242 } else if (swkey->eth.type == htons(ETH_P_ARP) ||
1243 swkey->eth.type == htons(ETH_P_RARP)) {
34118cae 1244 const struct ovs_key_arp *arp_key;
36956a7d 1245
34118cae
BP
1246 if (!(attrs & (1 << OVS_KEY_ATTR_ARP)))
1247 return -EINVAL;
1248 attrs &= ~(1 << OVS_KEY_ATTR_ARP);
1249
1250 key_len = SW_FLOW_KEY_OFFSET(ipv4.arp);
1251 arp_key = nla_data(a[OVS_KEY_ATTR_ARP]);
1252 swkey->ipv4.addr.src = arp_key->arp_sip;
1253 swkey->ipv4.addr.dst = arp_key->arp_tip;
1254 if (arp_key->arp_op & htons(0xff00))
1255 return -EINVAL;
1256 swkey->ip.proto = ntohs(arp_key->arp_op);
1257 memcpy(swkey->ipv4.arp.sha, arp_key->arp_sha, ETH_ALEN);
1258 memcpy(swkey->ipv4.arp.tha, arp_key->arp_tha, ETH_ALEN);
1259 }
76abe283 1260
34118cae
BP
1261 if (attrs)
1262 return -EINVAL;
76abe283 1263 *key_lenp = key_len;
34118cae
BP
1264
1265 return 0;
36956a7d
BP
1266}
1267
80e5eed9 1268/**
850b6b3b 1269 * ovs_flow_metadata_from_nlattrs - parses Netlink attributes into a flow key.
c3b36027
PS
1270 * @flow: Receives extracted in_port, priority, tun_key and skb_mark.
1271 * @key_len: Length of key in @flow. Used for calculating flow hash.
1272 * @attr: Netlink attribute holding nested %OVS_KEY_ATTR_* Netlink attribute
80e5eed9
BP
1273 * sequence.
1274 *
1275 * This parses a series of Netlink attributes that form a flow key, which must
1276 * take the same form accepted by flow_from_nlattrs(), but only enough of it to
1277 * get the metadata, that is, the parts of the flow key that cannot be
1278 * extracted from the packet itself.
1279 */
13e24889
PS
1280
1281int ovs_flow_metadata_from_nlattrs(struct sw_flow *flow, int key_len, const struct nlattr *attr)
80e5eed9 1282{
6694e498 1283 struct ovs_key_ipv4_tunnel *tun_key = &flow->key.tun_key;
80e5eed9 1284 const struct nlattr *nla;
80e5eed9
BP
1285 int rem;
1286
13e24889
PS
1287 flow->key.phy.in_port = DP_MAX_PORTS;
1288 flow->key.phy.priority = 0;
72e8bf28 1289 flow->key.phy.skb_mark = 0;
6694e498 1290 memset(tun_key, 0, sizeof(flow->key.tun_key));
80e5eed9 1291
80e5eed9 1292 nla_for_each_nested(nla, attr, rem) {
6455100f 1293 int type = nla_type(nla);
80e5eed9 1294
4094406f 1295 if (type <= OVS_KEY_ATTR_MAX && ovs_key_lens[type] > 0) {
9b405f1a
PS
1296 int err;
1297
58828b08
AA
1298 if (nla_len(nla) != ovs_key_lens[type])
1299 return -EINVAL;
abff858b 1300
58828b08
AA
1301 switch (type) {
1302 case OVS_KEY_ATTR_PRIORITY:
13e24889 1303 flow->key.phy.priority = nla_get_u32(nla);
58828b08 1304 break;
80e5eed9 1305
9b405f1a 1306 case OVS_KEY_ATTR_TUNNEL:
85c9de19
PS
1307 err = ipv4_tun_from_nlattr(nla, tun_key);
1308 if (err)
1309 return err;
58828b08 1310 break;
80e5eed9 1311
58828b08
AA
1312 case OVS_KEY_ATTR_IN_PORT:
1313 if (nla_get_u32(nla) >= DP_MAX_PORTS)
1314 return -EINVAL;
13e24889 1315 flow->key.phy.in_port = nla_get_u32(nla);
58828b08 1316 break;
72e8bf28
AA
1317
1318 case OVS_KEY_ATTR_SKB_MARK:
1319#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,20) && !defined(CONFIG_NETFILTER)
1320 if (nla_get_u32(nla) != 0)
1321 return -EINVAL;
1322#endif
1323 flow->key.phy.skb_mark = nla_get_u32(nla);
1324 break;
58828b08 1325 }
80e5eed9 1326 }
80e5eed9
BP
1327 }
1328 if (rem)
1329 return -EINVAL;
13e24889
PS
1330
1331 flow->hash = ovs_flow_hash(&flow->key,
1332 flow_key_start(&flow->key), key_len);
1333
80e5eed9
BP
1334 return 0;
1335}
1336
850b6b3b 1337int ovs_flow_to_nlattrs(const struct sw_flow_key *swkey, struct sk_buff *skb)
36956a7d 1338{
df2c07f4 1339 struct ovs_key_ethernet *eth_key;
fea393b1 1340 struct nlattr *nla, *encap;
36956a7d 1341
c3cc8c03
DM
1342 if (swkey->phy.priority &&
1343 nla_put_u32(skb, OVS_KEY_ATTR_PRIORITY, swkey->phy.priority))
1344 goto nla_put_failure;
18c43631 1345
9b405f1a
PS
1346 if (swkey->tun_key.ipv4_dst &&
1347 ipv4_tun_to_nlattr(skb, &swkey->tun_key))
1348 goto nla_put_failure;
1349
c3cc8c03
DM
1350 if (swkey->phy.in_port != DP_MAX_PORTS &&
1351 nla_put_u32(skb, OVS_KEY_ATTR_IN_PORT, swkey->phy.in_port))
1352 goto nla_put_failure;
36956a7d 1353
72e8bf28
AA
1354 if (swkey->phy.skb_mark &&
1355 nla_put_u32(skb, OVS_KEY_ATTR_SKB_MARK, swkey->phy.skb_mark))
1356 goto nla_put_failure;
1357
df2c07f4 1358 nla = nla_reserve(skb, OVS_KEY_ATTR_ETHERNET, sizeof(*eth_key));
d6569377
BP
1359 if (!nla)
1360 goto nla_put_failure;
1361 eth_key = nla_data(nla);
76abe283
AE
1362 memcpy(eth_key->eth_src, swkey->eth.src, ETH_ALEN);
1363 memcpy(eth_key->eth_dst, swkey->eth.dst, ETH_ALEN);
36956a7d 1364
8ddc056d 1365 if (swkey->eth.tci || swkey->eth.type == htons(ETH_P_8021Q)) {
c3cc8c03
DM
1366 if (nla_put_be16(skb, OVS_KEY_ATTR_ETHERTYPE, htons(ETH_P_8021Q)) ||
1367 nla_put_be16(skb, OVS_KEY_ATTR_VLAN, swkey->eth.tci))
1368 goto nla_put_failure;
fea393b1 1369 encap = nla_nest_start(skb, OVS_KEY_ATTR_ENCAP);
8ddc056d
BP
1370 if (!swkey->eth.tci)
1371 goto unencap;
fea393b1
BP
1372 } else {
1373 encap = NULL;
36956a7d
BP
1374 }
1375
76abe283 1376 if (swkey->eth.type == htons(ETH_P_802_2))
fea393b1 1377 goto unencap;
36956a7d 1378
c3cc8c03
DM
1379 if (nla_put_be16(skb, OVS_KEY_ATTR_ETHERTYPE, swkey->eth.type))
1380 goto nla_put_failure;
36956a7d 1381
76abe283 1382 if (swkey->eth.type == htons(ETH_P_IP)) {
df2c07f4 1383 struct ovs_key_ipv4 *ipv4_key;
36956a7d 1384
df2c07f4 1385 nla = nla_reserve(skb, OVS_KEY_ATTR_IPV4, sizeof(*ipv4_key));
d6569377
BP
1386 if (!nla)
1387 goto nla_put_failure;
1388 ipv4_key = nla_data(nla);
76abe283
AE
1389 ipv4_key->ipv4_src = swkey->ipv4.addr.src;
1390 ipv4_key->ipv4_dst = swkey->ipv4.addr.dst;
28bad473 1391 ipv4_key->ipv4_proto = swkey->ip.proto;
530180fd 1392 ipv4_key->ipv4_tos = swkey->ip.tos;
a61680c6 1393 ipv4_key->ipv4_ttl = swkey->ip.ttl;
9e44d715 1394 ipv4_key->ipv4_frag = swkey->ip.frag;
76abe283 1395 } else if (swkey->eth.type == htons(ETH_P_IPV6)) {
df2c07f4 1396 struct ovs_key_ipv6 *ipv6_key;
d31f1109 1397
df2c07f4 1398 nla = nla_reserve(skb, OVS_KEY_ATTR_IPV6, sizeof(*ipv6_key));
d31f1109
JP
1399 if (!nla)
1400 goto nla_put_failure;
1401 ipv6_key = nla_data(nla);
76abe283 1402 memcpy(ipv6_key->ipv6_src, &swkey->ipv6.addr.src,
d31f1109 1403 sizeof(ipv6_key->ipv6_src));
76abe283 1404 memcpy(ipv6_key->ipv6_dst, &swkey->ipv6.addr.dst,
d31f1109 1405 sizeof(ipv6_key->ipv6_dst));
fa8223b7 1406 ipv6_key->ipv6_label = swkey->ipv6.label;
28bad473 1407 ipv6_key->ipv6_proto = swkey->ip.proto;
60258dcb 1408 ipv6_key->ipv6_tclass = swkey->ip.tos;
a61680c6 1409 ipv6_key->ipv6_hlimit = swkey->ip.ttl;
9e44d715 1410 ipv6_key->ipv6_frag = swkey->ip.frag;
8087f5ff
MM
1411 } else if (swkey->eth.type == htons(ETH_P_ARP) ||
1412 swkey->eth.type == htons(ETH_P_RARP)) {
df2c07f4 1413 struct ovs_key_arp *arp_key;
d31f1109 1414
df2c07f4 1415 nla = nla_reserve(skb, OVS_KEY_ATTR_ARP, sizeof(*arp_key));
d31f1109
JP
1416 if (!nla)
1417 goto nla_put_failure;
1418 arp_key = nla_data(nla);
df2c07f4 1419 memset(arp_key, 0, sizeof(struct ovs_key_arp));
76abe283
AE
1420 arp_key->arp_sip = swkey->ipv4.addr.src;
1421 arp_key->arp_tip = swkey->ipv4.addr.dst;
28bad473 1422 arp_key->arp_op = htons(swkey->ip.proto);
76abe283
AE
1423 memcpy(arp_key->arp_sha, swkey->ipv4.arp.sha, ETH_ALEN);
1424 memcpy(arp_key->arp_tha, swkey->ipv4.arp.tha, ETH_ALEN);
d31f1109
JP
1425 }
1426
7257b535
BP
1427 if ((swkey->eth.type == htons(ETH_P_IP) ||
1428 swkey->eth.type == htons(ETH_P_IPV6)) &&
9e44d715 1429 swkey->ip.frag != OVS_FRAG_TYPE_LATER) {
36956a7d 1430
28bad473 1431 if (swkey->ip.proto == IPPROTO_TCP) {
df2c07f4 1432 struct ovs_key_tcp *tcp_key;
36956a7d 1433
df2c07f4 1434 nla = nla_reserve(skb, OVS_KEY_ATTR_TCP, sizeof(*tcp_key));
d6569377
BP
1435 if (!nla)
1436 goto nla_put_failure;
1437 tcp_key = nla_data(nla);
76abe283
AE
1438 if (swkey->eth.type == htons(ETH_P_IP)) {
1439 tcp_key->tcp_src = swkey->ipv4.tp.src;
1440 tcp_key->tcp_dst = swkey->ipv4.tp.dst;
1441 } else if (swkey->eth.type == htons(ETH_P_IPV6)) {
1442 tcp_key->tcp_src = swkey->ipv6.tp.src;
1443 tcp_key->tcp_dst = swkey->ipv6.tp.dst;
1444 }
28bad473 1445 } else if (swkey->ip.proto == IPPROTO_UDP) {
df2c07f4 1446 struct ovs_key_udp *udp_key;
36956a7d 1447
df2c07f4 1448 nla = nla_reserve(skb, OVS_KEY_ATTR_UDP, sizeof(*udp_key));
d6569377
BP
1449 if (!nla)
1450 goto nla_put_failure;
1451 udp_key = nla_data(nla);
76abe283
AE
1452 if (swkey->eth.type == htons(ETH_P_IP)) {
1453 udp_key->udp_src = swkey->ipv4.tp.src;
1454 udp_key->udp_dst = swkey->ipv4.tp.dst;
1455 } else if (swkey->eth.type == htons(ETH_P_IPV6)) {
1456 udp_key->udp_src = swkey->ipv6.tp.src;
1457 udp_key->udp_dst = swkey->ipv6.tp.dst;
1458 }
1459 } else if (swkey->eth.type == htons(ETH_P_IP) &&
28bad473 1460 swkey->ip.proto == IPPROTO_ICMP) {
df2c07f4 1461 struct ovs_key_icmp *icmp_key;
36956a7d 1462
df2c07f4 1463 nla = nla_reserve(skb, OVS_KEY_ATTR_ICMP, sizeof(*icmp_key));
d6569377
BP
1464 if (!nla)
1465 goto nla_put_failure;
1466 icmp_key = nla_data(nla);
76abe283
AE
1467 icmp_key->icmp_type = ntohs(swkey->ipv4.tp.src);
1468 icmp_key->icmp_code = ntohs(swkey->ipv4.tp.dst);
1469 } else if (swkey->eth.type == htons(ETH_P_IPV6) &&
28bad473 1470 swkey->ip.proto == IPPROTO_ICMPV6) {
df2c07f4 1471 struct ovs_key_icmpv6 *icmpv6_key;
36956a7d 1472
df2c07f4 1473 nla = nla_reserve(skb, OVS_KEY_ATTR_ICMPV6,
bfef4717 1474 sizeof(*icmpv6_key));
d31f1109
JP
1475 if (!nla)
1476 goto nla_put_failure;
1477 icmpv6_key = nla_data(nla);
76abe283
AE
1478 icmpv6_key->icmpv6_type = ntohs(swkey->ipv6.tp.src);
1479 icmpv6_key->icmpv6_code = ntohs(swkey->ipv6.tp.dst);
685a51a5 1480
bfef4717
JG
1481 if (icmpv6_key->icmpv6_type == NDISC_NEIGHBOUR_SOLICITATION ||
1482 icmpv6_key->icmpv6_type == NDISC_NEIGHBOUR_ADVERTISEMENT) {
df2c07f4 1483 struct ovs_key_nd *nd_key;
685a51a5 1484
df2c07f4 1485 nla = nla_reserve(skb, OVS_KEY_ATTR_ND, sizeof(*nd_key));
685a51a5
JP
1486 if (!nla)
1487 goto nla_put_failure;
1488 nd_key = nla_data(nla);
76abe283 1489 memcpy(nd_key->nd_target, &swkey->ipv6.nd.target,
685a51a5 1490 sizeof(nd_key->nd_target));
76abe283
AE
1491 memcpy(nd_key->nd_sll, swkey->ipv6.nd.sll, ETH_ALEN);
1492 memcpy(nd_key->nd_tll, swkey->ipv6.nd.tll, ETH_ALEN);
685a51a5 1493 }
d31f1109 1494 }
36956a7d
BP
1495 }
1496
fea393b1
BP
1497unencap:
1498 if (encap)
1499 nla_nest_end(skb, encap);
1500
d6569377 1501 return 0;
36956a7d 1502
d6569377
BP
1503nla_put_failure:
1504 return -EMSGSIZE;
8d5ebd83
JG
1505}
1506
064af421
BP
1507/* Initializes the flow module.
1508 * Returns zero if successful or a negative error code. */
850b6b3b 1509int ovs_flow_init(void)
064af421
BP
1510{
1511 flow_cache = kmem_cache_create("sw_flow", sizeof(struct sw_flow), 0,
1512 0, NULL);
1513 if (flow_cache == NULL)
1514 return -ENOMEM;
1515
1516 return 0;
1517}
1518
1519/* Uninitializes the flow module. */
850b6b3b 1520void ovs_flow_exit(void)
064af421
BP
1521{
1522 kmem_cache_destroy(flow_cache);
1523}