]> git.proxmox.com Git - ovs.git/blame - lib/dpif-netdev.c
INSTALL.md: Document how to add custom compiler flags.
[ovs.git] / lib / dpif-netdev.c
CommitLineData
72865317 1/*
ff073a71 2 * Copyright (c) 2009, 2010, 2011, 2012, 2013, 2014 Nicira, Inc.
72865317
BP
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <config.h>
db73f716 18#include "dpif-netdev.h"
72865317 19
72865317
BP
20#include <ctype.h>
21#include <errno.h>
22#include <fcntl.h>
23#include <inttypes.h>
72865317 24#include <netinet/in.h>
9d82ec47 25#include <sys/socket.h>
7f3adc00 26#include <net/if.h>
cdee00fd 27#include <stdint.h>
72865317
BP
28#include <stdlib.h>
29#include <string.h>
30#include <sys/ioctl.h>
31#include <sys/stat.h>
72865317
BP
32#include <unistd.h>
33
59e6d833 34#include "cmap.h"
72865317 35#include "csum.h"
e14deea0 36#include "dp-packet.h"
614c4892 37#include "dpif.h"
72865317 38#include "dpif-provider.h"
614c4892 39#include "dummy.h"
36956a7d 40#include "dynamic-string.h"
afae68b1 41#include "fat-rwlock.h"
72865317 42#include "flow.h"
9f361d6b 43#include "cmap.h"
6c3eee82 44#include "latch.h"
72865317 45#include "list.h"
0de8783a 46#include "match.h"
8c301900 47#include "meta-flow.h"
72865317 48#include "netdev.h"
8617afff 49#include "netdev-dpdk.h"
de281153 50#include "netdev-vport.h"
cdee00fd 51#include "netlink.h"
f094af7b 52#include "odp-execute.h"
72865317
BP
53#include "odp-util.h"
54#include "ofp-print.h"
55#include "ofpbuf.h"
5a034064 56#include "ovs-numa.h"
61e7deb1 57#include "ovs-rcu.h"
72865317
BP
58#include "packets.h"
59#include "poll-loop.h"
0de8783a 60#include "pvector.h"
26c6b6cd 61#include "random.h"
d33ed218 62#include "seq.h"
462278db 63#include "shash.h"
0cbfe35d 64#include "sset.h"
72865317 65#include "timeval.h"
a36de779 66#include "tnl-arp-cache.h"
74cc3969 67#include "unixctl.h"
72865317 68#include "util.h"
e6211adc 69#include "openvswitch/vlog.h"
5136ce49 70
d98e6007 71VLOG_DEFINE_THIS_MODULE(dpif_netdev);
72865317 72
8bb113da 73#define FLOW_DUMP_MAX_BATCH 50
adcf00ba
AZ
74/* Use per thread recirc_depth to prevent recirculation loop. */
75#define MAX_RECIRC_DEPTH 5
76DEFINE_STATIC_PER_THREAD_DATA(uint32_t, recirc_depth, 0)
e4cfed38 77
72865317 78/* Configuration parameters. */
72865317
BP
79enum { MAX_FLOWS = 65536 }; /* Maximum number of flows in flow table. */
80
8a4e3a85
BP
81/* Protects against changes to 'dp_netdevs'. */
82static struct ovs_mutex dp_netdev_mutex = OVS_MUTEX_INITIALIZER;
83
84/* Contains all 'struct dp_netdev's. */
85static struct shash dp_netdevs OVS_GUARDED_BY(dp_netdev_mutex)
86 = SHASH_INITIALIZER(&dp_netdevs);
87
623540e4 88static struct vlog_rate_limit upcall_rl = VLOG_RATE_LIMIT_INIT(600, 600);
6b31e073 89
79df317f 90/* Stores a miniflow with inline values */
9bbf1c3d 91
9bbf1c3d 92struct netdev_flow_key {
caeb4906
JR
93 uint32_t hash; /* Hash function differs for different users. */
94 uint32_t len; /* Length of the following miniflow (incl. map). */
0de8783a 95 struct miniflow mf;
d70e8c28 96 uint64_t buf[FLOW_MAX_PACKET_U64S - MINI_N_INLINE];
9bbf1c3d
DDP
97};
98
99/* Exact match cache for frequently used flows
100 *
101 * The cache uses a 32-bit hash of the packet (which can be the RSS hash) to
102 * search its entries for a miniflow that matches exactly the miniflow of the
0de8783a 103 * packet. It stores the 'dpcls_rule' (rule) that matches the miniflow.
9bbf1c3d
DDP
104 *
105 * A cache entry holds a reference to its 'dp_netdev_flow'.
106 *
107 * A miniflow with a given hash can be in one of EM_FLOW_HASH_SEGS different
108 * entries. The 32-bit hash is split into EM_FLOW_HASH_SEGS values (each of
109 * them is EM_FLOW_HASH_SHIFT bits wide and the remainder is thrown away). Each
110 * value is the index of a cache entry where the miniflow could be.
111 *
112 *
113 * Thread-safety
114 * =============
115 *
116 * Each pmd_thread has its own private exact match cache.
117 * If dp_netdev_input is not called from a pmd thread, a mutex is used.
118 */
119
120#define EM_FLOW_HASH_SHIFT 10
121#define EM_FLOW_HASH_ENTRIES (1u << EM_FLOW_HASH_SHIFT)
122#define EM_FLOW_HASH_MASK (EM_FLOW_HASH_ENTRIES - 1)
123#define EM_FLOW_HASH_SEGS 2
124
125struct emc_entry {
9bbf1c3d 126 struct dp_netdev_flow *flow;
0de8783a 127 struct netdev_flow_key key; /* key.hash used for emc hash value. */
9bbf1c3d
DDP
128};
129
130struct emc_cache {
131 struct emc_entry entries[EM_FLOW_HASH_ENTRIES];
67ad54cb 132 int sweep_idx; /* For emc_cache_slow_sweep(). */
9bbf1c3d
DDP
133};
134
135/* Iterate in the exact match cache through every entry that might contain a
136 * miniflow with hash 'HASH'. */
137#define EMC_FOR_EACH_POS_WITH_HASH(EMC, CURRENT_ENTRY, HASH) \
138 for (uint32_t i__ = 0, srch_hash__ = (HASH); \
139 (CURRENT_ENTRY) = &(EMC)->entries[srch_hash__ & EM_FLOW_HASH_MASK], \
140 i__ < EM_FLOW_HASH_SEGS; \
141 i__++, srch_hash__ >>= EM_FLOW_HASH_SHIFT)
0de8783a
JR
142\f
143/* Simple non-wildcarding single-priority classifier. */
144
145struct dpcls {
146 struct cmap subtables_map;
147 struct pvector subtables;
148};
9bbf1c3d 149
0de8783a
JR
150/* A rule to be inserted to the classifier. */
151struct dpcls_rule {
152 struct cmap_node cmap_node; /* Within struct dpcls_subtable 'rules'. */
153 struct netdev_flow_key *mask; /* Subtable's mask. */
154 struct netdev_flow_key flow; /* Matching key. */
155 /* 'flow' must be the last field, additional space is allocated here. */
156};
157
158static void dpcls_init(struct dpcls *);
159static void dpcls_destroy(struct dpcls *);
160static void dpcls_insert(struct dpcls *, struct dpcls_rule *,
161 const struct netdev_flow_key *mask);
162static void dpcls_remove(struct dpcls *, struct dpcls_rule *);
163static bool dpcls_lookup(const struct dpcls *cls,
164 const struct netdev_flow_key keys[],
165 struct dpcls_rule **rules, size_t cnt);
166\f
8a4e3a85
BP
167/* Datapath based on the network device interface from netdev.h.
168 *
169 *
170 * Thread-safety
171 * =============
172 *
173 * Some members, marked 'const', are immutable. Accessing other members
174 * requires synchronization, as noted in more detail below.
175 *
176 * Acquisition order is, from outermost to innermost:
177 *
178 * dp_netdev_mutex (global)
59e6d833 179 * port_mutex
8a4e3a85 180 */
72865317 181struct dp_netdev {
8a4e3a85
BP
182 const struct dpif_class *const class;
183 const char *const name;
6b31e073 184 struct dpif *dpif;
6a8267c5
BP
185 struct ovs_refcount ref_cnt;
186 atomic_flag destroyed;
72865317 187
8a4e3a85
BP
188 /* Ports.
189 *
59e6d833
BP
190 * Protected by RCU. Take the mutex to add or remove ports. */
191 struct ovs_mutex port_mutex;
192 struct cmap ports;
d33ed218 193 struct seq *port_seq; /* Incremented whenever a port changes. */
6c3eee82 194
6b31e073
RW
195 /* Protects access to ofproto-dpif-upcall interface during revalidator
196 * thread synchronization. */
197 struct fat_rwlock upcall_rwlock;
623540e4
EJ
198 upcall_callback *upcall_cb; /* Callback function for executing upcalls. */
199 void *upcall_aux;
6b31e073 200
65f13b50
AW
201 /* Stores all 'struct dp_netdev_pmd_thread's. */
202 struct cmap poll_threads;
203
204 /* Protects the access of the 'struct dp_netdev_pmd_thread'
205 * instance for non-pmd thread. */
206 struct ovs_mutex non_pmd_mutex;
207
208 /* Each pmd thread will store its pointer to
209 * 'struct dp_netdev_pmd_thread' in 'per_pmd_key'. */
210 ovsthread_key_t per_pmd_key;
f2eee189
AW
211
212 /* Number of rx queues for each dpdk interface and the cpu mask
213 * for pin of pmd threads. */
214 size_t n_dpdk_rxqs;
215 char *pmd_cmask;
a36de779 216 uint64_t last_tnl_conf_seq;
72865317
BP
217};
218
8a4e3a85 219static struct dp_netdev_port *dp_netdev_lookup_port(const struct dp_netdev *dp,
59e6d833 220 odp_port_t);
ff073a71 221
51852a57
BP
222enum dp_stat_type {
223 DP_STAT_HIT, /* Packets that matched in the flow table. */
224 DP_STAT_MISS, /* Packets that did not match. */
225 DP_STAT_LOST, /* Packets not passed up to the client. */
226 DP_N_STATS
227};
228
72865317
BP
229/* A port in a netdev-based datapath. */
230struct dp_netdev_port {
59e6d833 231 struct cmap_node node; /* Node in dp_netdev's 'ports'. */
ff073a71 232 odp_port_t port_no;
72865317 233 struct netdev *netdev;
4b609110 234 struct netdev_saved_flags *sf;
55c955bd 235 struct netdev_rxq **rxq;
b284085e 236 struct ovs_refcount ref_cnt;
0cbfe35d 237 char *type; /* Port type as requested by user. */
72865317
BP
238};
239
1c1e46ed
AW
240/* Contained by struct dp_netdev_flow's 'stats' member. */
241struct dp_netdev_flow_stats {
242 long long int used; /* Last used time, in monotonic msecs. */
243 long long int packet_count; /* Number of packets matched. */
244 long long int byte_count; /* Number of bytes matched. */
245 uint16_t tcp_flags; /* Bitwise-OR of seen tcp_flags values. */
246};
247
248/* A flow in 'dp_netdev_pmd_thread's 'flow_table'.
8a4e3a85
BP
249 *
250 *
251 * Thread-safety
252 * =============
253 *
254 * Except near the beginning or ending of its lifespan, rule 'rule' belongs to
1c1e46ed 255 * its pmd thread's classifier. The text below calls this classifier 'cls'.
8a4e3a85
BP
256 *
257 * Motivation
258 * ----------
259 *
260 * The thread safety rules described here for "struct dp_netdev_flow" are
261 * motivated by two goals:
262 *
263 * - Prevent threads that read members of "struct dp_netdev_flow" from
264 * reading bad data due to changes by some thread concurrently modifying
265 * those members.
266 *
267 * - Prevent two threads making changes to members of a given "struct
268 * dp_netdev_flow" from interfering with each other.
269 *
270 *
271 * Rules
272 * -----
273 *
ed79f89a
DDP
274 * A flow 'flow' may be accessed without a risk of being freed during an RCU
275 * grace period. Code that needs to hold onto a flow for a while
276 * should try incrementing 'flow->ref_cnt' with dp_netdev_flow_ref().
8a4e3a85
BP
277 *
278 * 'flow->ref_cnt' protects 'flow' from being freed. It doesn't protect the
ed79f89a
DDP
279 * flow from being deleted from 'cls' and it doesn't protect members of 'flow'
280 * from modification.
8a4e3a85
BP
281 *
282 * Some members, marked 'const', are immutable. Accessing other members
283 * requires synchronization, as noted in more detail below.
284 */
72865317 285struct dp_netdev_flow {
9bbf1c3d 286 bool dead;
2c0ea78f 287
8a4e3a85 288 /* Hash table index by unmasked flow. */
1c1e46ed
AW
289 const struct cmap_node node; /* In owning dp_netdev_pmd_thread's */
290 /* 'flow_table'. */
70e5ed6f 291 const ovs_u128 ufid; /* Unique flow identifier. */
0de8783a 292 const struct flow flow; /* Unmasked flow that created this entry. */
1c1e46ed
AW
293 const int pmd_id; /* The 'core_id' of pmd thread owning this */
294 /* flow. */
72865317 295
ed79f89a
DDP
296 /* Number of references.
297 * The classifier owns one reference.
298 * Any thread trying to keep a rule from being freed should hold its own
299 * reference. */
300 struct ovs_refcount ref_cnt;
301
1c1e46ed
AW
302 /* Statistics. */
303 struct dp_netdev_flow_stats stats;
8a4e3a85 304
45c626a3 305 /* Actions. */
61e7deb1 306 OVSRCU_TYPE(struct dp_netdev_actions *) actions;
0de8783a
JR
307
308 /* Packet classification. */
309 struct dpcls_rule cr; /* In owning dp_netdev's 'cls'. */
310 /* 'cr' must be the last member. */
72865317
BP
311};
312
ed79f89a 313static void dp_netdev_flow_unref(struct dp_netdev_flow *);
9bbf1c3d 314static bool dp_netdev_flow_ref(struct dp_netdev_flow *);
70e5ed6f
JS
315static int dpif_netdev_flow_from_nlattrs(const struct nlattr *, uint32_t,
316 struct flow *);
8a4e3a85 317
a84cb64a
BP
318/* A set of datapath actions within a "struct dp_netdev_flow".
319 *
320 *
321 * Thread-safety
322 * =============
323 *
45c626a3 324 * A struct dp_netdev_actions 'actions' is protected with RCU. */
a84cb64a 325struct dp_netdev_actions {
a84cb64a
BP
326 /* These members are immutable: they do not change during the struct's
327 * lifetime. */
328 struct nlattr *actions; /* Sequence of OVS_ACTION_ATTR_* attributes. */
329 unsigned int size; /* Size of 'actions', in bytes. */
330};
331
332struct dp_netdev_actions *dp_netdev_actions_create(const struct nlattr *,
333 size_t);
61e7deb1
BP
334struct dp_netdev_actions *dp_netdev_flow_get_actions(
335 const struct dp_netdev_flow *);
336static void dp_netdev_actions_free(struct dp_netdev_actions *);
a84cb64a 337
1c1e46ed
AW
338/* Contained by struct dp_netdev_pmd_thread's 'stats' member. */
339struct dp_netdev_pmd_stats {
340 /* Indexed by DP_STAT_*. */
341 unsigned long long int n[DP_N_STATS];
342};
343
e4cfed38
PS
344/* PMD: Poll modes drivers. PMD accesses devices via polling to eliminate
345 * the performance overhead of interrupt processing. Therefore netdev can
346 * not implement rx-wait for these devices. dpif-netdev needs to poll
347 * these device to check for recv buffer. pmd-thread does polling for
1c1e46ed 348 * devices assigned to itself.
e4cfed38
PS
349 *
350 * DPDK used PMD for accessing NIC.
351 *
65f13b50
AW
352 * Note, instance with cpu core id NON_PMD_CORE_ID will be reserved for
353 * I/O of all non-pmd threads. There will be no actual thread created
354 * for the instance.
1c1e46ed
AW
355 *
356 * Each struct has its own flow table and classifier. Packets received
357 * from managed ports are looked up in the corresponding pmd thread's
358 * flow table, and are executed with the found actions.
359 * */
65f13b50 360struct dp_netdev_pmd_thread {
6c3eee82 361 struct dp_netdev *dp;
1c1e46ed 362 struct ovs_refcount ref_cnt; /* Every reference must be refcount'ed. */
65f13b50 363 struct cmap_node node; /* In 'dp->poll_threads'. */
accf8626
AW
364
365 pthread_cond_t cond; /* For synchronizing pmd thread reload. */
366 struct ovs_mutex cond_mutex; /* Mutex for condition variable. */
367
65f13b50
AW
368 /* Per thread exact-match cache. Note, the instance for cpu core
369 * NON_PMD_CORE_ID can be accessed by multiple threads, and thusly
370 * need to be protected (e.g. by 'dp_netdev_mutex'). All other
371 * instances will only be accessed by its own pmd thread. */
9bbf1c3d 372 struct emc_cache flow_cache;
1c1e46ed
AW
373
374 /* Classifier and Flow-Table.
375 *
376 * Writers of 'flow_table' must take the 'flow_mutex'. Corresponding
377 * changes to 'cls' must be made while still holding the 'flow_mutex'.
378 */
379 struct ovs_mutex flow_mutex;
380 struct dpcls cls;
381 struct cmap flow_table OVS_GUARDED; /* Flow table. */
382
383 /* Statistics. */
384 struct dp_netdev_pmd_stats stats;
385
65f13b50
AW
386 struct latch exit_latch; /* For terminating the pmd thread. */
387 atomic_uint change_seq; /* For reloading pmd ports. */
6c3eee82 388 pthread_t thread;
65f13b50
AW
389 int index; /* Idx of this pmd thread among pmd*/
390 /* threads on same numa node. */
391 int core_id; /* CPU core id of this pmd thread. */
392 int numa_id; /* numa node id of this pmd thread. */
6c3eee82
BP
393};
394
84067a4c
JR
395#define PMD_INITIAL_SEQ 1
396
72865317
BP
397/* Interface to netdev-based datapath. */
398struct dpif_netdev {
399 struct dpif dpif;
400 struct dp_netdev *dp;
d33ed218 401 uint64_t last_port_seq;
72865317
BP
402};
403
8a4e3a85 404static int get_port_by_number(struct dp_netdev *dp, odp_port_t port_no,
59e6d833 405 struct dp_netdev_port **portp);
8a4e3a85 406static int get_port_by_name(struct dp_netdev *dp, const char *devname,
59e6d833 407 struct dp_netdev_port **portp);
8a4e3a85
BP
408static void dp_netdev_free(struct dp_netdev *)
409 OVS_REQUIRES(dp_netdev_mutex);
8a4e3a85
BP
410static int do_add_port(struct dp_netdev *dp, const char *devname,
411 const char *type, odp_port_t port_no)
59e6d833 412 OVS_REQUIRES(dp->port_mutex);
c40b890f 413static void do_del_port(struct dp_netdev *dp, struct dp_netdev_port *)
59e6d833 414 OVS_REQUIRES(dp->port_mutex);
614c4892
BP
415static int dpif_netdev_open(const struct dpif_class *, const char *name,
416 bool create, struct dpif **);
65f13b50 417static void dp_netdev_execute_actions(struct dp_netdev_pmd_thread *pmd,
e14deea0 418 struct dp_packet **, int c,
41ccaa24 419 bool may_steal,
4edb9ae9 420 const struct nlattr *actions,
e4cfed38 421 size_t actions_len);
65f13b50 422static void dp_netdev_input(struct dp_netdev_pmd_thread *,
e14deea0 423 struct dp_packet **, int cnt);
41ccaa24 424
6b31e073 425static void dp_netdev_disable_upcall(struct dp_netdev *);
accf8626 426void dp_netdev_pmd_reload_done(struct dp_netdev_pmd_thread *pmd);
65f13b50
AW
427static void dp_netdev_configure_pmd(struct dp_netdev_pmd_thread *pmd,
428 struct dp_netdev *dp, int index,
429 int core_id, int numa_id);
1c1e46ed 430static void dp_netdev_destroy_pmd(struct dp_netdev_pmd_thread *pmd);
f2eee189 431static void dp_netdev_set_nonpmd(struct dp_netdev *dp);
b19befae
AW
432static struct dp_netdev_pmd_thread *dp_netdev_get_pmd(struct dp_netdev *dp,
433 int core_id);
1c1e46ed
AW
434static struct dp_netdev_pmd_thread *
435dp_netdev_pmd_get_next(struct dp_netdev *dp, struct cmap_position *pos);
65f13b50
AW
436static void dp_netdev_destroy_all_pmds(struct dp_netdev *dp);
437static void dp_netdev_del_pmds_on_numa(struct dp_netdev *dp, int numa_id);
438static void dp_netdev_set_pmds_on_numa(struct dp_netdev *dp, int numa_id);
f2eee189 439static void dp_netdev_reset_pmd_threads(struct dp_netdev *dp);
1c1e46ed
AW
440static bool dp_netdev_pmd_try_ref(struct dp_netdev_pmd_thread *pmd);
441static void dp_netdev_pmd_unref(struct dp_netdev_pmd_thread *pmd);
442static void dp_netdev_pmd_flow_flush(struct dp_netdev_pmd_thread *pmd);
72865317 443
67ad54cb 444static inline bool emc_entry_alive(struct emc_entry *ce);
9bbf1c3d
DDP
445static void emc_clear_entry(struct emc_entry *ce);
446
447static void
448emc_cache_init(struct emc_cache *flow_cache)
449{
450 int i;
451
caeb4906
JR
452 BUILD_ASSERT(offsetof(struct miniflow, inline_values) == sizeof(uint64_t));
453
67ad54cb 454 flow_cache->sweep_idx = 0;
9bbf1c3d
DDP
455 for (i = 0; i < ARRAY_SIZE(flow_cache->entries); i++) {
456 flow_cache->entries[i].flow = NULL;
0de8783a 457 flow_cache->entries[i].key.hash = 0;
caeb4906
JR
458 flow_cache->entries[i].key.len
459 = offsetof(struct miniflow, inline_values);
0de8783a
JR
460 miniflow_initialize(&flow_cache->entries[i].key.mf,
461 flow_cache->entries[i].key.buf);
9bbf1c3d
DDP
462 }
463}
464
465static void
466emc_cache_uninit(struct emc_cache *flow_cache)
467{
468 int i;
469
470 for (i = 0; i < ARRAY_SIZE(flow_cache->entries); i++) {
471 emc_clear_entry(&flow_cache->entries[i]);
472 }
473}
474
67ad54cb
AW
475/* Check and clear dead flow references slowly (one entry at each
476 * invocation). */
477static void
478emc_cache_slow_sweep(struct emc_cache *flow_cache)
479{
480 struct emc_entry *entry = &flow_cache->entries[flow_cache->sweep_idx];
481
482 if (!emc_entry_alive(entry)) {
483 emc_clear_entry(entry);
484 }
485 flow_cache->sweep_idx = (flow_cache->sweep_idx + 1) & EM_FLOW_HASH_MASK;
486}
487
72865317
BP
488static struct dpif_netdev *
489dpif_netdev_cast(const struct dpif *dpif)
490{
cb22974d 491 ovs_assert(dpif->dpif_class->open == dpif_netdev_open);
72865317
BP
492 return CONTAINER_OF(dpif, struct dpif_netdev, dpif);
493}
494
495static struct dp_netdev *
496get_dp_netdev(const struct dpif *dpif)
497{
498 return dpif_netdev_cast(dpif)->dp;
499}
500
2197d7ab 501static int
2240af25
DDP
502dpif_netdev_enumerate(struct sset *all_dps,
503 const struct dpif_class *dpif_class)
2197d7ab
GL
504{
505 struct shash_node *node;
506
97be1538 507 ovs_mutex_lock(&dp_netdev_mutex);
2197d7ab 508 SHASH_FOR_EACH(node, &dp_netdevs) {
2240af25
DDP
509 struct dp_netdev *dp = node->data;
510 if (dpif_class != dp->class) {
511 /* 'dp_netdevs' contains both "netdev" and "dummy" dpifs.
512 * If the class doesn't match, skip this dpif. */
513 continue;
514 }
2197d7ab
GL
515 sset_add(all_dps, node->name);
516 }
97be1538 517 ovs_mutex_unlock(&dp_netdev_mutex);
5279f8fd 518
2197d7ab
GL
519 return 0;
520}
521
add90f6f
EJ
522static bool
523dpif_netdev_class_is_dummy(const struct dpif_class *class)
524{
525 return class != &dpif_netdev_class;
526}
527
0aeaabc8
JP
528static const char *
529dpif_netdev_port_open_type(const struct dpif_class *class, const char *type)
530{
531 return strcmp(type, "internal") ? type
add90f6f 532 : dpif_netdev_class_is_dummy(class) ? "dummy"
0aeaabc8
JP
533 : "tap";
534}
535
72865317
BP
536static struct dpif *
537create_dpif_netdev(struct dp_netdev *dp)
538{
462278db 539 uint16_t netflow_id = hash_string(dp->name, 0);
72865317 540 struct dpif_netdev *dpif;
72865317 541
6a8267c5 542 ovs_refcount_ref(&dp->ref_cnt);
72865317 543
72865317 544 dpif = xmalloc(sizeof *dpif);
614c4892 545 dpif_init(&dpif->dpif, dp->class, dp->name, netflow_id >> 8, netflow_id);
72865317 546 dpif->dp = dp;
d33ed218 547 dpif->last_port_seq = seq_read(dp->port_seq);
72865317
BP
548
549 return &dpif->dpif;
550}
551
4e022ec0
AW
552/* Choose an unused, non-zero port number and return it on success.
553 * Return ODPP_NONE on failure. */
554static odp_port_t
e44768b7 555choose_port(struct dp_netdev *dp, const char *name)
59e6d833 556 OVS_REQUIRES(dp->port_mutex)
e44768b7 557{
4e022ec0 558 uint32_t port_no;
e44768b7
JP
559
560 if (dp->class != &dpif_netdev_class) {
561 const char *p;
562 int start_no = 0;
563
564 /* If the port name begins with "br", start the number search at
565 * 100 to make writing tests easier. */
566 if (!strncmp(name, "br", 2)) {
567 start_no = 100;
568 }
569
570 /* If the port name contains a number, try to assign that port number.
571 * This can make writing unit tests easier because port numbers are
572 * predictable. */
573 for (p = name; *p != '\0'; p++) {
574 if (isdigit((unsigned char) *p)) {
575 port_no = start_no + strtol(p, NULL, 10);
ff073a71
BP
576 if (port_no > 0 && port_no != odp_to_u32(ODPP_NONE)
577 && !dp_netdev_lookup_port(dp, u32_to_odp(port_no))) {
4e022ec0 578 return u32_to_odp(port_no);
e44768b7
JP
579 }
580 break;
581 }
582 }
583 }
584
ff073a71
BP
585 for (port_no = 1; port_no <= UINT16_MAX; port_no++) {
586 if (!dp_netdev_lookup_port(dp, u32_to_odp(port_no))) {
4e022ec0 587 return u32_to_odp(port_no);
e44768b7
JP
588 }
589 }
590
4e022ec0 591 return ODPP_NONE;
e44768b7
JP
592}
593
72865317 594static int
614c4892
BP
595create_dp_netdev(const char *name, const struct dpif_class *class,
596 struct dp_netdev **dpp)
8a4e3a85 597 OVS_REQUIRES(dp_netdev_mutex)
72865317
BP
598{
599 struct dp_netdev *dp;
600 int error;
72865317 601
462278db 602 dp = xzalloc(sizeof *dp);
8a4e3a85
BP
603 shash_add(&dp_netdevs, name, dp);
604
605 *CONST_CAST(const struct dpif_class **, &dp->class) = class;
606 *CONST_CAST(const char **, &dp->name) = xstrdup(name);
6a8267c5 607 ovs_refcount_init(&dp->ref_cnt);
1a65ba85 608 atomic_flag_clear(&dp->destroyed);
8a4e3a85 609
59e6d833
BP
610 ovs_mutex_init(&dp->port_mutex);
611 cmap_init(&dp->ports);
d33ed218 612 dp->port_seq = seq_create();
6b31e073
RW
613 fat_rwlock_init(&dp->upcall_rwlock);
614
615 /* Disable upcalls by default. */
616 dp_netdev_disable_upcall(dp);
623540e4 617 dp->upcall_aux = NULL;
6b31e073 618 dp->upcall_cb = NULL;
e44768b7 619
65f13b50
AW
620 cmap_init(&dp->poll_threads);
621 ovs_mutex_init_recursive(&dp->non_pmd_mutex);
622 ovsthread_key_create(&dp->per_pmd_key, NULL);
623
624 /* Reserves the core NON_PMD_CORE_ID for all non-pmd threads. */
625 ovs_numa_try_pin_core_specific(NON_PMD_CORE_ID);
f2eee189
AW
626 dp_netdev_set_nonpmd(dp);
627 dp->n_dpdk_rxqs = NR_QUEUE;
65f13b50 628
59e6d833 629 ovs_mutex_lock(&dp->port_mutex);
4e022ec0 630 error = do_add_port(dp, name, "internal", ODPP_LOCAL);
59e6d833 631 ovs_mutex_unlock(&dp->port_mutex);
72865317
BP
632 if (error) {
633 dp_netdev_free(dp);
462278db 634 return error;
72865317
BP
635 }
636
a36de779 637 dp->last_tnl_conf_seq = seq_read(tnl_conf_seq);
462278db 638 *dpp = dp;
72865317
BP
639 return 0;
640}
641
642static int
614c4892 643dpif_netdev_open(const struct dpif_class *class, const char *name,
4a387741 644 bool create, struct dpif **dpifp)
72865317 645{
462278db 646 struct dp_netdev *dp;
5279f8fd 647 int error;
462278db 648
97be1538 649 ovs_mutex_lock(&dp_netdev_mutex);
462278db
BP
650 dp = shash_find_data(&dp_netdevs, name);
651 if (!dp) {
5279f8fd 652 error = create ? create_dp_netdev(name, class, &dp) : ENODEV;
72865317 653 } else {
5279f8fd
BP
654 error = (dp->class != class ? EINVAL
655 : create ? EEXIST
656 : 0);
657 }
658 if (!error) {
659 *dpifp = create_dpif_netdev(dp);
6b31e073 660 dp->dpif = *dpifp;
72865317 661 }
97be1538 662 ovs_mutex_unlock(&dp_netdev_mutex);
462278db 663
5279f8fd 664 return error;
72865317
BP
665}
666
88ace79b
DDP
667static void
668dp_netdev_destroy_upcall_lock(struct dp_netdev *dp)
669 OVS_NO_THREAD_SAFETY_ANALYSIS
670{
671 /* Check that upcalls are disabled, i.e. that the rwlock is taken */
672 ovs_assert(fat_rwlock_tryrdlock(&dp->upcall_rwlock));
673
674 /* Before freeing a lock we should release it */
675 fat_rwlock_unlock(&dp->upcall_rwlock);
676 fat_rwlock_destroy(&dp->upcall_rwlock);
677}
678
8a4e3a85
BP
679/* Requires dp_netdev_mutex so that we can't get a new reference to 'dp'
680 * through the 'dp_netdevs' shash while freeing 'dp'. */
1ba530f4
BP
681static void
682dp_netdev_free(struct dp_netdev *dp)
8a4e3a85 683 OVS_REQUIRES(dp_netdev_mutex)
1ba530f4 684{
59e6d833 685 struct dp_netdev_port *port;
4ad28026 686
8a4e3a85
BP
687 shash_find_and_delete(&dp_netdevs, dp->name);
688
65f13b50 689 dp_netdev_destroy_all_pmds(dp);
8bd89cdc 690 cmap_destroy(&dp->poll_threads);
65f13b50
AW
691 ovs_mutex_destroy(&dp->non_pmd_mutex);
692 ovsthread_key_delete(dp->per_pmd_key);
6c3eee82 693
59e6d833 694 ovs_mutex_lock(&dp->port_mutex);
a532e683 695 CMAP_FOR_EACH (port, node, &dp->ports) {
c40b890f 696 do_del_port(dp, port);
1ba530f4 697 }
59e6d833 698 ovs_mutex_unlock(&dp->port_mutex);
51852a57 699
d33ed218 700 seq_destroy(dp->port_seq);
59e6d833 701 cmap_destroy(&dp->ports);
88ace79b
DDP
702
703 /* Upcalls must be disabled at this point */
704 dp_netdev_destroy_upcall_lock(dp);
9bbf1c3d 705
f2eee189 706 free(dp->pmd_cmask);
8a4e3a85 707 free(CONST_CAST(char *, dp->name));
72865317
BP
708 free(dp);
709}
710
8a4e3a85
BP
711static void
712dp_netdev_unref(struct dp_netdev *dp)
713{
714 if (dp) {
715 /* Take dp_netdev_mutex so that, if dp->ref_cnt falls to zero, we can't
716 * get a new reference to 'dp' through the 'dp_netdevs' shash. */
717 ovs_mutex_lock(&dp_netdev_mutex);
24f83812 718 if (ovs_refcount_unref_relaxed(&dp->ref_cnt) == 1) {
8a4e3a85
BP
719 dp_netdev_free(dp);
720 }
721 ovs_mutex_unlock(&dp_netdev_mutex);
722 }
723}
724
72865317
BP
725static void
726dpif_netdev_close(struct dpif *dpif)
727{
728 struct dp_netdev *dp = get_dp_netdev(dpif);
5279f8fd 729
8a4e3a85 730 dp_netdev_unref(dp);
72865317
BP
731 free(dpif);
732}
733
734static int
7dab847a 735dpif_netdev_destroy(struct dpif *dpif)
72865317
BP
736{
737 struct dp_netdev *dp = get_dp_netdev(dpif);
5279f8fd 738
6a8267c5 739 if (!atomic_flag_test_and_set(&dp->destroyed)) {
24f83812 740 if (ovs_refcount_unref_relaxed(&dp->ref_cnt) == 1) {
6a8267c5
BP
741 /* Can't happen: 'dpif' still owns a reference to 'dp'. */
742 OVS_NOT_REACHED();
743 }
744 }
5279f8fd 745
72865317
BP
746 return 0;
747}
748
749static int
a8d9304d 750dpif_netdev_get_stats(const struct dpif *dpif, struct dpif_dp_stats *stats)
72865317
BP
751{
752 struct dp_netdev *dp = get_dp_netdev(dpif);
1c1e46ed 753 struct dp_netdev_pmd_thread *pmd;
8a4e3a85 754
1c1e46ed
AW
755 stats->n_flows = stats->n_hit = stats->n_missed = stats->n_lost = 0;
756 CMAP_FOR_EACH (pmd, node, &dp->poll_threads) {
757 stats->n_flows += cmap_count(&pmd->flow_table);
758 stats->n_hit += pmd->stats.n[DP_STAT_HIT];
759 stats->n_missed += pmd->stats.n[DP_STAT_MISS];
760 stats->n_lost += pmd->stats.n[DP_STAT_LOST];
51852a57 761 }
1ce3fa06 762 stats->n_masks = UINT32_MAX;
847108dc 763 stats->n_mask_hit = UINT64_MAX;
5279f8fd 764
72865317
BP
765 return 0;
766}
767
e4cfed38 768static void
65f13b50 769dp_netdev_reload_pmd__(struct dp_netdev_pmd_thread *pmd)
e4cfed38 770{
65f13b50
AW
771 int old_seq;
772
accf8626
AW
773 if (pmd->core_id == NON_PMD_CORE_ID) {
774 return;
775 }
776
777 ovs_mutex_lock(&pmd->cond_mutex);
65f13b50 778 atomic_add_relaxed(&pmd->change_seq, 1, &old_seq);
accf8626
AW
779 ovs_mutex_cond_wait(&pmd->cond, &pmd->cond_mutex);
780 ovs_mutex_unlock(&pmd->cond_mutex);
65f13b50 781}
e4cfed38 782
65f13b50
AW
783/* Causes all pmd threads to reload its tx/rx devices.
784 * Must be called after adding/removing ports. */
785static void
786dp_netdev_reload_pmds(struct dp_netdev *dp)
787{
788 struct dp_netdev_pmd_thread *pmd;
e4cfed38 789
65f13b50
AW
790 CMAP_FOR_EACH (pmd, node, &dp->poll_threads) {
791 dp_netdev_reload_pmd__(pmd);
84067a4c 792 }
e4cfed38
PS
793}
794
59e6d833
BP
795static uint32_t
796hash_port_no(odp_port_t port_no)
797{
798 return hash_int(odp_to_u32(port_no), 0);
799}
800
72865317 801static int
c3827f61 802do_add_port(struct dp_netdev *dp, const char *devname, const char *type,
4e022ec0 803 odp_port_t port_no)
59e6d833 804 OVS_REQUIRES(dp->port_mutex)
72865317 805{
4b609110 806 struct netdev_saved_flags *sf;
72865317
BP
807 struct dp_netdev_port *port;
808 struct netdev *netdev;
2499a8ce 809 enum netdev_flags flags;
0cbfe35d 810 const char *open_type;
72865317 811 int error;
55c955bd 812 int i;
72865317
BP
813
814 /* XXX reject devices already in some dp_netdev. */
815
816 /* Open and validate network device. */
0aeaabc8 817 open_type = dpif_netdev_port_open_type(dp->class, type);
0cbfe35d 818 error = netdev_open(devname, open_type, &netdev);
72865317
BP
819 if (error) {
820 return error;
821 }
72865317
BP
822 /* XXX reject non-Ethernet devices */
823
2499a8ce
AC
824 netdev_get_flags(netdev, &flags);
825 if (flags & NETDEV_LOOPBACK) {
826 VLOG_ERR("%s: cannot add a loopback device", devname);
827 netdev_close(netdev);
828 return EINVAL;
829 }
830
5a034064
AW
831 if (netdev_is_pmd(netdev)) {
832 int n_cores = ovs_numa_get_n_cores();
833
834 if (n_cores == OVS_CORE_UNSPEC) {
835 VLOG_ERR("%s, cannot get cpu core info", devname);
836 return ENOENT;
837 }
838 /* There can only be ovs_numa_get_n_cores() pmd threads,
f2eee189
AW
839 * so creates a txq for each. */
840 error = netdev_set_multiq(netdev, n_cores, dp->n_dpdk_rxqs);
7251515e 841 if (error && (error != EOPNOTSUPP)) {
5a034064
AW
842 VLOG_ERR("%s, cannot set multiq", devname);
843 return errno;
844 }
845 }
e4cfed38
PS
846 port = xzalloc(sizeof *port);
847 port->port_no = port_no;
848 port->netdev = netdev;
55c955bd 849 port->rxq = xmalloc(sizeof *port->rxq * netdev_n_rxq(netdev));
e4cfed38 850 port->type = xstrdup(type);
55c955bd
PS
851 for (i = 0; i < netdev_n_rxq(netdev); i++) {
852 error = netdev_rxq_open(netdev, &port->rxq[i], i);
853 if (error
854 && !(error == EOPNOTSUPP && dpif_netdev_class_is_dummy(dp->class))) {
855 VLOG_ERR("%s: cannot receive packets on this network device (%s)",
856 devname, ovs_strerror(errno));
857 netdev_close(netdev);
16bea12c
TG
858 free(port->type);
859 free(port->rxq);
860 free(port);
55c955bd
PS
861 return error;
862 }
7b6b0ef4
BP
863 }
864
4b609110 865 error = netdev_turn_flags_on(netdev, NETDEV_PROMISC, &sf);
72865317 866 if (error) {
55c955bd
PS
867 for (i = 0; i < netdev_n_rxq(netdev); i++) {
868 netdev_rxq_close(port->rxq[i]);
869 }
72865317 870 netdev_close(netdev);
16bea12c 871 free(port->type);
f7791740 872 free(port->rxq);
e4cfed38 873 free(port);
72865317
BP
874 return error;
875 }
4b609110 876 port->sf = sf;
e4cfed38 877
f7d63652
AW
878 ovs_refcount_init(&port->ref_cnt);
879 cmap_insert(&dp->ports, &port->node, hash_port_no(port_no));
880
e4cfed38 881 if (netdev_is_pmd(netdev)) {
65f13b50
AW
882 dp_netdev_set_pmds_on_numa(dp, netdev_get_numa_id(netdev));
883 dp_netdev_reload_pmds(dp);
e4cfed38 884 }
d33ed218 885 seq_change(dp->port_seq);
72865317
BP
886
887 return 0;
888}
889
247527db
BP
890static int
891dpif_netdev_port_add(struct dpif *dpif, struct netdev *netdev,
4e022ec0 892 odp_port_t *port_nop)
247527db
BP
893{
894 struct dp_netdev *dp = get_dp_netdev(dpif);
3aa30359
BP
895 char namebuf[NETDEV_VPORT_NAME_BUFSIZE];
896 const char *dpif_port;
4e022ec0 897 odp_port_t port_no;
5279f8fd 898 int error;
247527db 899
59e6d833 900 ovs_mutex_lock(&dp->port_mutex);
3aa30359 901 dpif_port = netdev_vport_get_dpif_port(netdev, namebuf, sizeof namebuf);
4e022ec0 902 if (*port_nop != ODPP_NONE) {
ff073a71
BP
903 port_no = *port_nop;
904 error = dp_netdev_lookup_port(dp, *port_nop) ? EBUSY : 0;
232dfa4a 905 } else {
3aa30359 906 port_no = choose_port(dp, dpif_port);
5279f8fd 907 error = port_no == ODPP_NONE ? EFBIG : 0;
232dfa4a 908 }
5279f8fd 909 if (!error) {
247527db 910 *port_nop = port_no;
5279f8fd 911 error = do_add_port(dp, dpif_port, netdev_get_type(netdev), port_no);
247527db 912 }
59e6d833 913 ovs_mutex_unlock(&dp->port_mutex);
5279f8fd
BP
914
915 return error;
72865317
BP
916}
917
918static int
4e022ec0 919dpif_netdev_port_del(struct dpif *dpif, odp_port_t port_no)
72865317
BP
920{
921 struct dp_netdev *dp = get_dp_netdev(dpif);
5279f8fd
BP
922 int error;
923
59e6d833 924 ovs_mutex_lock(&dp->port_mutex);
c40b890f
BP
925 if (port_no == ODPP_LOCAL) {
926 error = EINVAL;
927 } else {
928 struct dp_netdev_port *port;
929
930 error = get_port_by_number(dp, port_no, &port);
931 if (!error) {
932 do_del_port(dp, port);
933 }
934 }
59e6d833 935 ovs_mutex_unlock(&dp->port_mutex);
5279f8fd
BP
936
937 return error;
72865317
BP
938}
939
940static bool
4e022ec0 941is_valid_port_number(odp_port_t port_no)
72865317 942{
ff073a71
BP
943 return port_no != ODPP_NONE;
944}
945
946static struct dp_netdev_port *
947dp_netdev_lookup_port(const struct dp_netdev *dp, odp_port_t port_no)
948{
949 struct dp_netdev_port *port;
950
59e6d833 951 CMAP_FOR_EACH_WITH_HASH (port, node, hash_port_no(port_no), &dp->ports) {
ff073a71
BP
952 if (port->port_no == port_no) {
953 return port;
954 }
955 }
956 return NULL;
72865317
BP
957}
958
959static int
960get_port_by_number(struct dp_netdev *dp,
4e022ec0 961 odp_port_t port_no, struct dp_netdev_port **portp)
72865317
BP
962{
963 if (!is_valid_port_number(port_no)) {
964 *portp = NULL;
965 return EINVAL;
966 } else {
ff073a71 967 *portp = dp_netdev_lookup_port(dp, port_no);
72865317
BP
968 return *portp ? 0 : ENOENT;
969 }
970}
971
b284085e
PS
972static void
973port_ref(struct dp_netdev_port *port)
974{
975 if (port) {
976 ovs_refcount_ref(&port->ref_cnt);
977 }
978}
979
a1fdee13
AW
980static bool
981port_try_ref(struct dp_netdev_port *port)
982{
983 if (port) {
984 return ovs_refcount_try_ref_rcu(&port->ref_cnt);
985 }
986
987 return false;
988}
989
59e6d833
BP
990static void
991port_unref(struct dp_netdev_port *port)
992{
24f83812 993 if (port && ovs_refcount_unref_relaxed(&port->ref_cnt) == 1) {
accf8626
AW
994 int n_rxq = netdev_n_rxq(port->netdev);
995 int i;
996
997 netdev_close(port->netdev);
998 netdev_restore_flags(port->sf);
999
1000 for (i = 0; i < n_rxq; i++) {
1001 netdev_rxq_close(port->rxq[i]);
1002 }
1003 free(port->rxq);
1004 free(port->type);
1005 free(port);
b284085e
PS
1006 }
1007}
1008
72865317
BP
1009static int
1010get_port_by_name(struct dp_netdev *dp,
1011 const char *devname, struct dp_netdev_port **portp)
59e6d833 1012 OVS_REQUIRES(dp->port_mutex)
72865317
BP
1013{
1014 struct dp_netdev_port *port;
1015
a532e683 1016 CMAP_FOR_EACH (port, node, &dp->ports) {
3efb6063 1017 if (!strcmp(netdev_get_name(port->netdev), devname)) {
72865317
BP
1018 *portp = port;
1019 return 0;
1020 }
1021 }
1022 return ENOENT;
1023}
1024
65f13b50
AW
1025static int
1026get_n_pmd_threads_on_numa(struct dp_netdev *dp, int numa_id)
1027{
1028 struct dp_netdev_pmd_thread *pmd;
1029 int n_pmds = 0;
1030
1031 CMAP_FOR_EACH (pmd, node, &dp->poll_threads) {
1032 if (pmd->numa_id == numa_id) {
1033 n_pmds++;
1034 }
1035 }
1036
1037 return n_pmds;
1038}
1039
1040/* Returns 'true' if there is a port with pmd netdev and the netdev
1041 * is on numa node 'numa_id'. */
1042static bool
1043has_pmd_port_for_numa(struct dp_netdev *dp, int numa_id)
1044{
1045 struct dp_netdev_port *port;
1046
1047 CMAP_FOR_EACH (port, node, &dp->ports) {
1048 if (netdev_is_pmd(port->netdev)
1049 && netdev_get_numa_id(port->netdev) == numa_id) {
1050 return true;
1051 }
1052 }
1053
1054 return false;
1055}
1056
1057
c40b890f
BP
1058static void
1059do_del_port(struct dp_netdev *dp, struct dp_netdev_port *port)
59e6d833 1060 OVS_REQUIRES(dp->port_mutex)
72865317 1061{
c40b890f 1062 cmap_remove(&dp->ports, &port->node, hash_odp_port(port->port_no));
d33ed218 1063 seq_change(dp->port_seq);
e4cfed38 1064 if (netdev_is_pmd(port->netdev)) {
65f13b50
AW
1065 int numa_id = netdev_get_numa_id(port->netdev);
1066
1067 /* If there is no netdev on the numa node, deletes the pmd threads
1068 * for that numa. Else, just reloads the queues. */
1069 if (!has_pmd_port_for_numa(dp, numa_id)) {
1070 dp_netdev_del_pmds_on_numa(dp, numa_id);
1071 }
1072 dp_netdev_reload_pmds(dp);
e4cfed38 1073 }
72865317 1074
b284085e 1075 port_unref(port);
72865317
BP
1076}
1077
1078static void
4c738a8d
BP
1079answer_port_query(const struct dp_netdev_port *port,
1080 struct dpif_port *dpif_port)
72865317 1081{
3efb6063 1082 dpif_port->name = xstrdup(netdev_get_name(port->netdev));
0cbfe35d 1083 dpif_port->type = xstrdup(port->type);
4c738a8d 1084 dpif_port->port_no = port->port_no;
72865317
BP
1085}
1086
1087static int
4e022ec0 1088dpif_netdev_port_query_by_number(const struct dpif *dpif, odp_port_t port_no,
4c738a8d 1089 struct dpif_port *dpif_port)
72865317
BP
1090{
1091 struct dp_netdev *dp = get_dp_netdev(dpif);
1092 struct dp_netdev_port *port;
1093 int error;
1094
1095 error = get_port_by_number(dp, port_no, &port);
4afba28d 1096 if (!error && dpif_port) {
4c738a8d 1097 answer_port_query(port, dpif_port);
72865317 1098 }
5279f8fd 1099
72865317
BP
1100 return error;
1101}
1102
1103static int
1104dpif_netdev_port_query_by_name(const struct dpif *dpif, const char *devname,
4c738a8d 1105 struct dpif_port *dpif_port)
72865317
BP
1106{
1107 struct dp_netdev *dp = get_dp_netdev(dpif);
1108 struct dp_netdev_port *port;
1109 int error;
1110
59e6d833 1111 ovs_mutex_lock(&dp->port_mutex);
72865317 1112 error = get_port_by_name(dp, devname, &port);
4afba28d 1113 if (!error && dpif_port) {
4c738a8d 1114 answer_port_query(port, dpif_port);
72865317 1115 }
59e6d833 1116 ovs_mutex_unlock(&dp->port_mutex);
5279f8fd 1117
72865317
BP
1118 return error;
1119}
1120
61e7deb1
BP
1121static void
1122dp_netdev_flow_free(struct dp_netdev_flow *flow)
1123{
61e7deb1 1124 dp_netdev_actions_free(dp_netdev_flow_get_actions(flow));
61e7deb1
BP
1125 free(flow);
1126}
1127
ed79f89a
DDP
1128static void dp_netdev_flow_unref(struct dp_netdev_flow *flow)
1129{
1130 if (ovs_refcount_unref_relaxed(&flow->ref_cnt) == 1) {
1131 ovsrcu_postpone(dp_netdev_flow_free, flow);
1132 }
1133}
1134
70e5ed6f
JS
1135static uint32_t
1136dp_netdev_flow_hash(const ovs_u128 *ufid)
1137{
1138 return ufid->u32[0];
1139}
1140
72865317 1141static void
1c1e46ed
AW
1142dp_netdev_pmd_remove_flow(struct dp_netdev_pmd_thread *pmd,
1143 struct dp_netdev_flow *flow)
1144 OVS_REQUIRES(pmd->flow_mutex)
72865317 1145{
9f361d6b 1146 struct cmap_node *node = CONST_CAST(struct cmap_node *, &flow->node);
2c0ea78f 1147
1c1e46ed
AW
1148 dpcls_remove(&pmd->cls, &flow->cr);
1149 cmap_remove(&pmd->flow_table, node, dp_netdev_flow_hash(&flow->ufid));
9bbf1c3d 1150 flow->dead = true;
ed79f89a
DDP
1151
1152 dp_netdev_flow_unref(flow);
72865317
BP
1153}
1154
1155static void
1c1e46ed 1156dp_netdev_pmd_flow_flush(struct dp_netdev_pmd_thread *pmd)
72865317 1157{
78c8df12 1158 struct dp_netdev_flow *netdev_flow;
72865317 1159
1c1e46ed
AW
1160 ovs_mutex_lock(&pmd->flow_mutex);
1161 CMAP_FOR_EACH (netdev_flow, node, &pmd->flow_table) {
1162 dp_netdev_pmd_remove_flow(pmd, netdev_flow);
72865317 1163 }
1c1e46ed 1164 ovs_mutex_unlock(&pmd->flow_mutex);
72865317
BP
1165}
1166
1167static int
1168dpif_netdev_flow_flush(struct dpif *dpif)
1169{
1170 struct dp_netdev *dp = get_dp_netdev(dpif);
1c1e46ed
AW
1171 struct dp_netdev_pmd_thread *pmd;
1172
1173 CMAP_FOR_EACH (pmd, node, &dp->poll_threads) {
1174 dp_netdev_pmd_flow_flush(pmd);
1175 }
5279f8fd 1176
72865317
BP
1177 return 0;
1178}
1179
b0ec0f27 1180struct dp_netdev_port_state {
59e6d833 1181 struct cmap_position position;
4c738a8d 1182 char *name;
b0ec0f27
BP
1183};
1184
1185static int
1186dpif_netdev_port_dump_start(const struct dpif *dpif OVS_UNUSED, void **statep)
1187{
1188 *statep = xzalloc(sizeof(struct dp_netdev_port_state));
1189 return 0;
1190}
1191
72865317 1192static int
b0ec0f27 1193dpif_netdev_port_dump_next(const struct dpif *dpif, void *state_,
4c738a8d 1194 struct dpif_port *dpif_port)
72865317 1195{
b0ec0f27 1196 struct dp_netdev_port_state *state = state_;
72865317 1197 struct dp_netdev *dp = get_dp_netdev(dpif);
59e6d833 1198 struct cmap_node *node;
ff073a71 1199 int retval;
72865317 1200
59e6d833 1201 node = cmap_next_position(&dp->ports, &state->position);
ff073a71
BP
1202 if (node) {
1203 struct dp_netdev_port *port;
5279f8fd 1204
ff073a71
BP
1205 port = CONTAINER_OF(node, struct dp_netdev_port, node);
1206
1207 free(state->name);
1208 state->name = xstrdup(netdev_get_name(port->netdev));
1209 dpif_port->name = state->name;
1210 dpif_port->type = port->type;
1211 dpif_port->port_no = port->port_no;
1212
1213 retval = 0;
1214 } else {
1215 retval = EOF;
72865317 1216 }
5279f8fd 1217
ff073a71 1218 return retval;
b0ec0f27
BP
1219}
1220
1221static int
4c738a8d 1222dpif_netdev_port_dump_done(const struct dpif *dpif OVS_UNUSED, void *state_)
b0ec0f27 1223{
4c738a8d
BP
1224 struct dp_netdev_port_state *state = state_;
1225 free(state->name);
b0ec0f27
BP
1226 free(state);
1227 return 0;
72865317
BP
1228}
1229
1230static int
67a4917b 1231dpif_netdev_port_poll(const struct dpif *dpif_, char **devnamep OVS_UNUSED)
72865317
BP
1232{
1233 struct dpif_netdev *dpif = dpif_netdev_cast(dpif_);
d33ed218 1234 uint64_t new_port_seq;
5279f8fd
BP
1235 int error;
1236
d33ed218
BP
1237 new_port_seq = seq_read(dpif->dp->port_seq);
1238 if (dpif->last_port_seq != new_port_seq) {
1239 dpif->last_port_seq = new_port_seq;
5279f8fd 1240 error = ENOBUFS;
72865317 1241 } else {
5279f8fd 1242 error = EAGAIN;
72865317 1243 }
5279f8fd
BP
1244
1245 return error;
72865317
BP
1246}
1247
1248static void
1249dpif_netdev_port_poll_wait(const struct dpif *dpif_)
1250{
1251 struct dpif_netdev *dpif = dpif_netdev_cast(dpif_);
5279f8fd 1252
d33ed218 1253 seq_wait(dpif->dp->port_seq, dpif->last_port_seq);
8a4e3a85
BP
1254}
1255
1256static struct dp_netdev_flow *
0de8783a 1257dp_netdev_flow_cast(const struct dpcls_rule *cr)
8a4e3a85
BP
1258{
1259 return cr ? CONTAINER_OF(cr, struct dp_netdev_flow, cr) : NULL;
72865317
BP
1260}
1261
9bbf1c3d
DDP
1262static bool dp_netdev_flow_ref(struct dp_netdev_flow *flow)
1263{
1264 return ovs_refcount_try_ref_rcu(&flow->ref_cnt);
1265}
1266
79df317f
DDP
1267/* netdev_flow_key utilities.
1268 *
1269 * netdev_flow_key is basically a miniflow. We use these functions
1270 * (netdev_flow_key_clone, netdev_flow_key_equal, ...) instead of the miniflow
1271 * functions (miniflow_clone_inline, miniflow_equal, ...), because:
1272 *
1273 * - Since we are dealing exclusively with miniflows created by
1274 * miniflow_extract(), if the map is different the miniflow is different.
1275 * Therefore we can be faster by comparing the map and the miniflow in a
1276 * single memcmp().
1277 * _ netdev_flow_key's miniflow has always inline values.
1278 * - These functions can be inlined by the compiler.
1279 *
1280 * The following assertions make sure that what we're doing with miniflow is
1281 * safe
1282 */
1283BUILD_ASSERT_DECL(offsetof(struct miniflow, inline_values)
1284 == sizeof(uint64_t));
79df317f
DDP
1285
1286/* Given the number of bits set in the miniflow map, returns the size of the
caeb4906 1287 * 'netdev_flow_key.mf' */
79df317f
DDP
1288static inline uint32_t
1289netdev_flow_key_size(uint32_t flow_u32s)
1290{
caeb4906 1291 return offsetof(struct miniflow, inline_values) +
0de8783a 1292 MINIFLOW_VALUES_SIZE(flow_u32s);
79df317f
DDP
1293}
1294
79df317f
DDP
1295static inline bool
1296netdev_flow_key_equal(const struct netdev_flow_key *a,
0de8783a
JR
1297 const struct netdev_flow_key *b)
1298{
caeb4906
JR
1299 /* 'b->len' may be not set yet. */
1300 return a->hash == b->hash && !memcmp(&a->mf, &b->mf, a->len);
0de8783a
JR
1301}
1302
1303/* Used to compare 'netdev_flow_key' in the exact match cache to a miniflow.
1304 * The maps are compared bitwise, so both 'key->mf' 'mf' must have been
1305 * generated by miniflow_extract. */
1306static inline bool
1307netdev_flow_key_equal_mf(const struct netdev_flow_key *key,
1308 const struct miniflow *mf)
79df317f 1309{
caeb4906 1310 return !memcmp(&key->mf, mf, key->len);
79df317f
DDP
1311}
1312
1313static inline void
1314netdev_flow_key_clone(struct netdev_flow_key *dst,
0de8783a
JR
1315 const struct netdev_flow_key *src)
1316{
caeb4906
JR
1317 memcpy(dst, src,
1318 offsetof(struct netdev_flow_key, mf) + src->len);
0de8783a
JR
1319}
1320
1321/* Slow. */
1322static void
1323netdev_flow_key_from_flow(struct netdev_flow_key *dst,
1324 const struct flow *src)
1325{
cf62fa4c 1326 struct dp_packet packet;
0de8783a 1327 uint64_t buf_stub[512 / 8];
0de8783a
JR
1328
1329 miniflow_initialize(&dst->mf, dst->buf);
1330
cf62fa4c
PS
1331 dp_packet_use_stub(&packet, buf_stub, sizeof buf_stub);
1332 pkt_metadata_from_flow(&packet.md, src);
0de8783a 1333 flow_compose(&packet, src);
cf62fa4c
PS
1334 miniflow_extract(&packet, &dst->mf);
1335 dp_packet_uninit(&packet);
0de8783a
JR
1336
1337 dst->len = netdev_flow_key_size(count_1bits(dst->mf.map));
1338 dst->hash = 0; /* Not computed yet. */
1339}
1340
1341/* Initialize a netdev_flow_key 'mask' from 'match'. */
1342static inline void
1343netdev_flow_mask_init(struct netdev_flow_key *mask,
1344 const struct match *match)
1345{
d70e8c28
JR
1346 const uint64_t *mask_u64 = (const uint64_t *) &match->wc.masks;
1347 uint64_t *dst = mask->mf.inline_values;
0de8783a
JR
1348 uint64_t map, mask_map = 0;
1349 uint32_t hash = 0;
1350 int n;
1351
1352 /* Only check masks that make sense for the flow. */
1353 map = flow_wc_map(&match->flow);
1354
1355 while (map) {
1356 uint64_t rm1bit = rightmost_1bit(map);
1357 int i = raw_ctz(map);
1358
d70e8c28 1359 if (mask_u64[i]) {
0de8783a 1360 mask_map |= rm1bit;
d70e8c28
JR
1361 *dst++ = mask_u64[i];
1362 hash = hash_add64(hash, mask_u64[i]);
0de8783a
JR
1363 }
1364 map -= rm1bit;
1365 }
1366
1367 mask->mf.values_inline = true;
1368 mask->mf.map = mask_map;
1369
aae7c34f 1370 hash = hash_add64(hash, mask_map);
0de8783a
JR
1371
1372 n = dst - mask->mf.inline_values;
1373
d70e8c28 1374 mask->hash = hash_finish(hash, n * 8);
0de8783a
JR
1375 mask->len = netdev_flow_key_size(n);
1376}
1377
1378/* Initializes 'dst' as a copy of 'src' masked with 'mask'. */
1379static inline void
1380netdev_flow_key_init_masked(struct netdev_flow_key *dst,
1381 const struct flow *flow,
1382 const struct netdev_flow_key *mask)
79df317f 1383{
d70e8c28
JR
1384 uint64_t *dst_u64 = dst->mf.inline_values;
1385 const uint64_t *mask_u64 = mask->mf.inline_values;
0de8783a 1386 uint32_t hash = 0;
d70e8c28 1387 uint64_t value;
0de8783a
JR
1388
1389 dst->len = mask->len;
1390 dst->mf.values_inline = true;
1391 dst->mf.map = mask->mf.map;
1392
1393 FLOW_FOR_EACH_IN_MAP(value, flow, mask->mf.map) {
d70e8c28
JR
1394 *dst_u64 = value & *mask_u64++;
1395 hash = hash_add64(hash, *dst_u64++);
0de8783a 1396 }
d70e8c28 1397 dst->hash = hash_finish(hash, (dst_u64 - dst->mf.inline_values) * 8);
0de8783a
JR
1398}
1399
d70e8c28 1400/* Iterate through all netdev_flow_key u64 values specified by 'MAP' */
0de8783a
JR
1401#define NETDEV_FLOW_KEY_FOR_EACH_IN_MAP(VALUE, KEY, MAP) \
1402 for (struct mf_for_each_in_map_aux aux__ \
1403 = { (KEY)->mf.inline_values, (KEY)->mf.map, MAP }; \
1404 mf_get_next_in_map(&aux__, &(VALUE)); \
1405 )
1406
1407/* Returns a hash value for the bits of 'key' where there are 1-bits in
1408 * 'mask'. */
1409static inline uint32_t
1410netdev_flow_key_hash_in_mask(const struct netdev_flow_key *key,
1411 const struct netdev_flow_key *mask)
1412{
d70e8c28 1413 const uint64_t *p = mask->mf.inline_values;
0de8783a 1414 uint32_t hash = 0;
d70e8c28 1415 uint64_t key_u64;
0de8783a 1416
d70e8c28
JR
1417 NETDEV_FLOW_KEY_FOR_EACH_IN_MAP(key_u64, key, mask->mf.map) {
1418 hash = hash_add64(hash, key_u64 & *p++);
0de8783a
JR
1419 }
1420
d70e8c28 1421 return hash_finish(hash, (p - mask->mf.inline_values) * 8);
79df317f
DDP
1422}
1423
9bbf1c3d
DDP
1424static inline bool
1425emc_entry_alive(struct emc_entry *ce)
1426{
1427 return ce->flow && !ce->flow->dead;
1428}
1429
1430static void
1431emc_clear_entry(struct emc_entry *ce)
1432{
1433 if (ce->flow) {
1434 dp_netdev_flow_unref(ce->flow);
1435 ce->flow = NULL;
1436 }
1437}
1438
1439static inline void
1440emc_change_entry(struct emc_entry *ce, struct dp_netdev_flow *flow,
0de8783a 1441 const struct netdev_flow_key *key)
9bbf1c3d
DDP
1442{
1443 if (ce->flow != flow) {
1444 if (ce->flow) {
1445 dp_netdev_flow_unref(ce->flow);
1446 }
1447
1448 if (dp_netdev_flow_ref(flow)) {
1449 ce->flow = flow;
1450 } else {
1451 ce->flow = NULL;
1452 }
1453 }
0de8783a
JR
1454 if (key) {
1455 netdev_flow_key_clone(&ce->key, key);
9bbf1c3d
DDP
1456 }
1457}
1458
1459static inline void
0de8783a 1460emc_insert(struct emc_cache *cache, const struct netdev_flow_key *key,
9bbf1c3d
DDP
1461 struct dp_netdev_flow *flow)
1462{
1463 struct emc_entry *to_be_replaced = NULL;
1464 struct emc_entry *current_entry;
1465
0de8783a
JR
1466 EMC_FOR_EACH_POS_WITH_HASH(cache, current_entry, key->hash) {
1467 if (netdev_flow_key_equal(&current_entry->key, key)) {
9bbf1c3d 1468 /* We found the entry with the 'mf' miniflow */
0de8783a 1469 emc_change_entry(current_entry, flow, NULL);
9bbf1c3d
DDP
1470 return;
1471 }
1472
1473 /* Replacement policy: put the flow in an empty (not alive) entry, or
1474 * in the first entry where it can be */
1475 if (!to_be_replaced
1476 || (emc_entry_alive(to_be_replaced)
1477 && !emc_entry_alive(current_entry))
0de8783a 1478 || current_entry->key.hash < to_be_replaced->key.hash) {
9bbf1c3d
DDP
1479 to_be_replaced = current_entry;
1480 }
1481 }
1482 /* We didn't find the miniflow in the cache.
1483 * The 'to_be_replaced' entry is where the new flow will be stored */
1484
0de8783a 1485 emc_change_entry(to_be_replaced, flow, key);
9bbf1c3d
DDP
1486}
1487
1488static inline struct dp_netdev_flow *
0de8783a 1489emc_lookup(struct emc_cache *cache, const struct netdev_flow_key *key)
9bbf1c3d
DDP
1490{
1491 struct emc_entry *current_entry;
1492
0de8783a
JR
1493 EMC_FOR_EACH_POS_WITH_HASH(cache, current_entry, key->hash) {
1494 if (current_entry->key.hash == key->hash
1495 && emc_entry_alive(current_entry)
1496 && netdev_flow_key_equal_mf(&current_entry->key, &key->mf)) {
9bbf1c3d 1497
0de8783a 1498 /* We found the entry with the 'key->mf' miniflow */
9bbf1c3d
DDP
1499 return current_entry->flow;
1500 }
1501 }
1502
1503 return NULL;
1504}
1505
72865317 1506static struct dp_netdev_flow *
1c1e46ed
AW
1507dp_netdev_pmd_lookup_flow(const struct dp_netdev_pmd_thread *pmd,
1508 const struct netdev_flow_key *key)
2c0ea78f 1509{
8a4e3a85 1510 struct dp_netdev_flow *netdev_flow;
0de8783a 1511 struct dpcls_rule *rule;
2c0ea78f 1512
1c1e46ed 1513 dpcls_lookup(&pmd->cls, key, &rule, 1);
4f150744 1514 netdev_flow = dp_netdev_flow_cast(rule);
2c0ea78f 1515
8a4e3a85 1516 return netdev_flow;
2c0ea78f
GS
1517}
1518
1519static struct dp_netdev_flow *
1c1e46ed
AW
1520dp_netdev_pmd_find_flow(const struct dp_netdev_pmd_thread *pmd,
1521 const ovs_u128 *ufidp, const struct nlattr *key,
1522 size_t key_len)
72865317 1523{
1763b4b8 1524 struct dp_netdev_flow *netdev_flow;
70e5ed6f
JS
1525 struct flow flow;
1526 ovs_u128 ufid;
1527
1528 /* If a UFID is not provided, determine one based on the key. */
1529 if (!ufidp && key && key_len
1530 && !dpif_netdev_flow_from_nlattrs(key, key_len, &flow)) {
1c1e46ed 1531 dpif_flow_hash(pmd->dp->dpif, &flow, sizeof flow, &ufid);
70e5ed6f
JS
1532 ufidp = &ufid;
1533 }
72865317 1534
70e5ed6f
JS
1535 if (ufidp) {
1536 CMAP_FOR_EACH_WITH_HASH (netdev_flow, node, dp_netdev_flow_hash(ufidp),
1c1e46ed 1537 &pmd->flow_table) {
70e5ed6f
JS
1538 if (ovs_u128_equal(&netdev_flow->ufid, ufidp)) {
1539 return netdev_flow;
1540 }
72865317
BP
1541 }
1542 }
8a4e3a85 1543
72865317
BP
1544 return NULL;
1545}
1546
1547static void
6fe09f8c 1548get_dpif_flow_stats(const struct dp_netdev_flow *netdev_flow,
1763b4b8 1549 struct dpif_flow_stats *stats)
feebdea2 1550{
1c1e46ed
AW
1551 stats->n_packets = netdev_flow->stats.packet_count;
1552 stats->n_bytes = netdev_flow->stats.byte_count;
1553 stats->used = netdev_flow->stats.used;
1554 stats->tcp_flags = netdev_flow->stats.tcp_flags;
72865317
BP
1555}
1556
7af12bd7
JS
1557/* Converts to the dpif_flow format, using 'key_buf' and 'mask_buf' for
1558 * storing the netlink-formatted key/mask. 'key_buf' may be the same as
1559 * 'mask_buf'. Actions will be returned without copying, by relying on RCU to
1560 * protect them. */
6fe09f8c 1561static void
70e5ed6f 1562dp_netdev_flow_to_dpif_flow(const struct dp_netdev_flow *netdev_flow,
7af12bd7 1563 struct ofpbuf *key_buf, struct ofpbuf *mask_buf,
64bb477f 1564 struct dpif_flow *flow, bool terse)
6fe09f8c 1565{
64bb477f
JS
1566 if (terse) {
1567 memset(flow, 0, sizeof *flow);
1568 } else {
1569 struct flow_wildcards wc;
1570 struct dp_netdev_actions *actions;
1571 size_t offset;
1572
1573 miniflow_expand(&netdev_flow->cr.mask->mf, &wc.masks);
1574
1575 /* Key */
6fd6ed71 1576 offset = key_buf->size;
64bb477f
JS
1577 flow->key = ofpbuf_tail(key_buf);
1578 odp_flow_key_from_flow(key_buf, &netdev_flow->flow, &wc.masks,
1579 netdev_flow->flow.in_port.odp_port, true);
6fd6ed71 1580 flow->key_len = key_buf->size - offset;
64bb477f
JS
1581
1582 /* Mask */
6fd6ed71 1583 offset = mask_buf->size;
64bb477f
JS
1584 flow->mask = ofpbuf_tail(mask_buf);
1585 odp_flow_key_from_mask(mask_buf, &wc.masks, &netdev_flow->flow,
1586 odp_to_u32(wc.masks.in_port.odp_port),
1587 SIZE_MAX, true);
6fd6ed71 1588 flow->mask_len = mask_buf->size - offset;
64bb477f
JS
1589
1590 /* Actions */
1591 actions = dp_netdev_flow_get_actions(netdev_flow);
1592 flow->actions = actions->actions;
1593 flow->actions_len = actions->size;
1594 }
6fe09f8c 1595
70e5ed6f
JS
1596 flow->ufid = netdev_flow->ufid;
1597 flow->ufid_present = true;
1c1e46ed 1598 flow->pmd_id = netdev_flow->pmd_id;
6fe09f8c
JS
1599 get_dpif_flow_stats(netdev_flow, &flow->stats);
1600}
1601
36956a7d 1602static int
8c301900
JR
1603dpif_netdev_mask_from_nlattrs(const struct nlattr *key, uint32_t key_len,
1604 const struct nlattr *mask_key,
1605 uint32_t mask_key_len, const struct flow *flow,
1606 struct flow *mask)
1607{
1608 if (mask_key_len) {
80e44883
BP
1609 enum odp_key_fitness fitness;
1610
1611 fitness = odp_flow_key_to_mask(mask_key, mask_key_len, mask, flow);
1612 if (fitness) {
8c301900
JR
1613 /* This should not happen: it indicates that
1614 * odp_flow_key_from_mask() and odp_flow_key_to_mask()
1615 * disagree on the acceptable form of a mask. Log the problem
1616 * as an error, with enough details to enable debugging. */
1617 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1618
1619 if (!VLOG_DROP_ERR(&rl)) {
1620 struct ds s;
1621
1622 ds_init(&s);
1623 odp_flow_format(key, key_len, mask_key, mask_key_len, NULL, &s,
1624 true);
80e44883
BP
1625 VLOG_ERR("internal error parsing flow mask %s (%s)",
1626 ds_cstr(&s), odp_key_fitness_to_string(fitness));
8c301900
JR
1627 ds_destroy(&s);
1628 }
1629
1630 return EINVAL;
1631 }
8c301900
JR
1632 } else {
1633 enum mf_field_id id;
1634 /* No mask key, unwildcard everything except fields whose
1635 * prerequisities are not met. */
1636 memset(mask, 0x0, sizeof *mask);
1637
1638 for (id = 0; id < MFF_N_IDS; ++id) {
1639 /* Skip registers and metadata. */
1640 if (!(id >= MFF_REG0 && id < MFF_REG0 + FLOW_N_REGS)
1641 && id != MFF_METADATA) {
1642 const struct mf_field *mf = mf_from_id(id);
1643 if (mf_are_prereqs_ok(mf, flow)) {
1644 mf_mask_field(mf, mask);
1645 }
1646 }
1647 }
1648 }
1649
f3f750e5
BP
1650 /* Force unwildcard the in_port.
1651 *
1652 * We need to do this even in the case where we unwildcard "everything"
1653 * above because "everything" only includes the 16-bit OpenFlow port number
1654 * mask->in_port.ofp_port, which only covers half of the 32-bit datapath
1655 * port number mask->in_port.odp_port. */
1656 mask->in_port.odp_port = u32_to_odp(UINT32_MAX);
1657
8c301900
JR
1658 return 0;
1659}
1660
1661static int
1662dpif_netdev_flow_from_nlattrs(const struct nlattr *key, uint32_t key_len,
1663 struct flow *flow)
36956a7d 1664{
586ddea5
BP
1665 odp_port_t in_port;
1666
8c301900 1667 if (odp_flow_key_to_flow(key, key_len, flow)) {
36956a7d 1668 /* This should not happen: it indicates that odp_flow_key_from_flow()
8c301900
JR
1669 * and odp_flow_key_to_flow() disagree on the acceptable form of a
1670 * flow. Log the problem as an error, with enough details to enable
1671 * debugging. */
36956a7d
BP
1672 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1673
1674 if (!VLOG_DROP_ERR(&rl)) {
1675 struct ds s;
1676
1677 ds_init(&s);
8c301900 1678 odp_flow_format(key, key_len, NULL, 0, NULL, &s, true);
36956a7d
BP
1679 VLOG_ERR("internal error parsing flow key %s", ds_cstr(&s));
1680 ds_destroy(&s);
1681 }
1682
1683 return EINVAL;
1684 }
1685
586ddea5
BP
1686 in_port = flow->in_port.odp_port;
1687 if (!is_valid_port_number(in_port) && in_port != ODPP_NONE) {
18886b60
BP
1688 return EINVAL;
1689 }
1690
36956a7d
BP
1691 return 0;
1692}
1693
72865317 1694static int
6fe09f8c 1695dpif_netdev_flow_get(const struct dpif *dpif, const struct dpif_flow_get *get)
72865317
BP
1696{
1697 struct dp_netdev *dp = get_dp_netdev(dpif);
1763b4b8 1698 struct dp_netdev_flow *netdev_flow;
1c1e46ed
AW
1699 struct dp_netdev_pmd_thread *pmd;
1700 int pmd_id = get->pmd_id == PMD_ID_NULL ? NON_PMD_CORE_ID : get->pmd_id;
70e5ed6f 1701 int error = 0;
8a4e3a85 1702
1c1e46ed
AW
1703 pmd = dp_netdev_get_pmd(dp, pmd_id);
1704 if (!pmd) {
1705 return EINVAL;
1706 }
1707
1708 netdev_flow = dp_netdev_pmd_find_flow(pmd, get->ufid, get->key,
1709 get->key_len);
1763b4b8 1710 if (netdev_flow) {
70e5ed6f 1711 dp_netdev_flow_to_dpif_flow(netdev_flow, get->buffer, get->buffer,
64bb477f 1712 get->flow, false);
70e5ed6f 1713 } else {
5279f8fd 1714 error = ENOENT;
72865317 1715 }
1c1e46ed
AW
1716 dp_netdev_pmd_unref(pmd);
1717
bc4a05c6 1718
5279f8fd 1719 return error;
72865317
BP
1720}
1721
0de8783a 1722static struct dp_netdev_flow *
1c1e46ed
AW
1723dp_netdev_flow_add(struct dp_netdev_pmd_thread *pmd,
1724 struct match *match, const ovs_u128 *ufid,
ae2ceebd 1725 const struct nlattr *actions, size_t actions_len)
1c1e46ed 1726 OVS_REQUIRES(pmd->flow_mutex)
72865317 1727{
0de8783a
JR
1728 struct dp_netdev_flow *flow;
1729 struct netdev_flow_key mask;
ed79f89a 1730
0de8783a
JR
1731 netdev_flow_mask_init(&mask, match);
1732 /* Make sure wc does not have metadata. */
1733 ovs_assert(!(mask.mf.map & (MINIFLOW_MAP(metadata) | MINIFLOW_MAP(regs))));
679ba04c 1734
0de8783a 1735 /* Do not allocate extra space. */
caeb4906 1736 flow = xmalloc(sizeof *flow - sizeof flow->cr.flow.mf + mask.len);
1c1e46ed 1737 memset(&flow->stats, 0, sizeof flow->stats);
0de8783a 1738 flow->dead = false;
1c1e46ed 1739 *CONST_CAST(int *, &flow->pmd_id) = pmd->core_id;
0de8783a 1740 *CONST_CAST(struct flow *, &flow->flow) = match->flow;
70e5ed6f 1741 *CONST_CAST(ovs_u128 *, &flow->ufid) = *ufid;
0de8783a 1742 ovs_refcount_init(&flow->ref_cnt);
0de8783a 1743 ovsrcu_set(&flow->actions, dp_netdev_actions_create(actions, actions_len));
2c0ea78f 1744
0de8783a 1745 netdev_flow_key_init_masked(&flow->cr.flow, &match->flow, &mask);
1c1e46ed 1746 dpcls_insert(&pmd->cls, &flow->cr, &mask);
72865317 1747
4c75aaab
EJ
1748 cmap_insert(&pmd->flow_table, CONST_CAST(struct cmap_node *, &flow->node),
1749 dp_netdev_flow_hash(&flow->ufid));
1750
623540e4 1751 if (OVS_UNLIKELY(VLOG_IS_DBG_ENABLED())) {
0de8783a 1752 struct match match;
623540e4
EJ
1753 struct ds ds = DS_EMPTY_INITIALIZER;
1754
0de8783a
JR
1755 match.flow = flow->flow;
1756 miniflow_expand(&flow->cr.mask->mf, &match.wc.masks);
1757
623540e4 1758 ds_put_cstr(&ds, "flow_add: ");
70e5ed6f
JS
1759 odp_format_ufid(ufid, &ds);
1760 ds_put_cstr(&ds, " ");
0de8783a 1761 match_format(&match, &ds, OFP_DEFAULT_PRIORITY);
623540e4
EJ
1762 ds_put_cstr(&ds, ", actions:");
1763 format_odp_actions(&ds, actions, actions_len);
1764
1765 VLOG_DBG_RL(&upcall_rl, "%s", ds_cstr(&ds));
1766
1767 ds_destroy(&ds);
1768 }
1769
0de8783a 1770 return flow;
72865317
BP
1771}
1772
72865317 1773static int
89625d1e 1774dpif_netdev_flow_put(struct dpif *dpif, const struct dpif_flow_put *put)
72865317
BP
1775{
1776 struct dp_netdev *dp = get_dp_netdev(dpif);
1763b4b8 1777 struct dp_netdev_flow *netdev_flow;
0de8783a 1778 struct netdev_flow_key key;
1c1e46ed 1779 struct dp_netdev_pmd_thread *pmd;
ae2ceebd 1780 struct match match;
70e5ed6f 1781 ovs_u128 ufid;
1c1e46ed 1782 int pmd_id = put->pmd_id == PMD_ID_NULL ? NON_PMD_CORE_ID : put->pmd_id;
36956a7d
BP
1783 int error;
1784
ae2ceebd 1785 error = dpif_netdev_flow_from_nlattrs(put->key, put->key_len, &match.flow);
8c301900
JR
1786 if (error) {
1787 return error;
1788 }
1789 error = dpif_netdev_mask_from_nlattrs(put->key, put->key_len,
1790 put->mask, put->mask_len,
ae2ceebd 1791 &match.flow, &match.wc.masks);
36956a7d
BP
1792 if (error) {
1793 return error;
1794 }
0de8783a 1795
1c1e46ed
AW
1796 pmd = dp_netdev_get_pmd(dp, pmd_id);
1797 if (!pmd) {
1798 return EINVAL;
1799 }
1800
0de8783a
JR
1801 /* Must produce a netdev_flow_key for lookup.
1802 * This interface is no longer performance critical, since it is not used
1803 * for upcall processing any more. */
1804 netdev_flow_key_from_flow(&key, &match.flow);
72865317 1805
70e5ed6f
JS
1806 if (put->ufid) {
1807 ufid = *put->ufid;
1808 } else {
1809 dpif_flow_hash(dpif, &match.flow, sizeof match.flow, &ufid);
1810 }
1811
1c1e46ed
AW
1812 ovs_mutex_lock(&pmd->flow_mutex);
1813 netdev_flow = dp_netdev_pmd_lookup_flow(pmd, &key);
1763b4b8 1814 if (!netdev_flow) {
89625d1e 1815 if (put->flags & DPIF_FP_CREATE) {
1c1e46ed 1816 if (cmap_count(&pmd->flow_table) < MAX_FLOWS) {
89625d1e
BP
1817 if (put->stats) {
1818 memset(put->stats, 0, sizeof *put->stats);
feebdea2 1819 }
1c1e46ed 1820 dp_netdev_flow_add(pmd, &match, &ufid, put->actions,
70e5ed6f 1821 put->actions_len);
0de8783a 1822 error = 0;
72865317 1823 } else {
5279f8fd 1824 error = EFBIG;
72865317
BP
1825 }
1826 } else {
5279f8fd 1827 error = ENOENT;
72865317
BP
1828 }
1829 } else {
2c0ea78f 1830 if (put->flags & DPIF_FP_MODIFY
ae2ceebd 1831 && flow_equal(&match.flow, &netdev_flow->flow)) {
8a4e3a85
BP
1832 struct dp_netdev_actions *new_actions;
1833 struct dp_netdev_actions *old_actions;
1834
1835 new_actions = dp_netdev_actions_create(put->actions,
1836 put->actions_len);
1837
61e7deb1
BP
1838 old_actions = dp_netdev_flow_get_actions(netdev_flow);
1839 ovsrcu_set(&netdev_flow->actions, new_actions);
679ba04c 1840
a84cb64a
BP
1841 if (put->stats) {
1842 get_dpif_flow_stats(netdev_flow, put->stats);
1843 }
1844 if (put->flags & DPIF_FP_ZERO_STATS) {
1c1e46ed 1845 memset(&netdev_flow->stats, 0, sizeof netdev_flow->stats);
72865317 1846 }
8a4e3a85 1847
61e7deb1 1848 ovsrcu_postpone(dp_netdev_actions_free, old_actions);
2c0ea78f 1849 } else if (put->flags & DPIF_FP_CREATE) {
5279f8fd 1850 error = EEXIST;
2c0ea78f
GS
1851 } else {
1852 /* Overlapping flow. */
1853 error = EINVAL;
72865317
BP
1854 }
1855 }
1c1e46ed
AW
1856 ovs_mutex_unlock(&pmd->flow_mutex);
1857 dp_netdev_pmd_unref(pmd);
5279f8fd
BP
1858
1859 return error;
72865317
BP
1860}
1861
72865317 1862static int
b99d3cee 1863dpif_netdev_flow_del(struct dpif *dpif, const struct dpif_flow_del *del)
72865317
BP
1864{
1865 struct dp_netdev *dp = get_dp_netdev(dpif);
1763b4b8 1866 struct dp_netdev_flow *netdev_flow;
1c1e46ed
AW
1867 struct dp_netdev_pmd_thread *pmd;
1868 int pmd_id = del->pmd_id == PMD_ID_NULL ? NON_PMD_CORE_ID : del->pmd_id;
70e5ed6f 1869 int error = 0;
72865317 1870
1c1e46ed
AW
1871 pmd = dp_netdev_get_pmd(dp, pmd_id);
1872 if (!pmd) {
1873 return EINVAL;
1874 }
1875
1876 ovs_mutex_lock(&pmd->flow_mutex);
1877 netdev_flow = dp_netdev_pmd_find_flow(pmd, del->ufid, del->key,
1878 del->key_len);
1763b4b8 1879 if (netdev_flow) {
b99d3cee 1880 if (del->stats) {
1763b4b8 1881 get_dpif_flow_stats(netdev_flow, del->stats);
feebdea2 1882 }
1c1e46ed 1883 dp_netdev_pmd_remove_flow(pmd, netdev_flow);
72865317 1884 } else {
5279f8fd 1885 error = ENOENT;
72865317 1886 }
1c1e46ed
AW
1887 ovs_mutex_unlock(&pmd->flow_mutex);
1888 dp_netdev_pmd_unref(pmd);
5279f8fd
BP
1889
1890 return error;
72865317
BP
1891}
1892
ac64794a
BP
1893struct dpif_netdev_flow_dump {
1894 struct dpif_flow_dump up;
1c1e46ed
AW
1895 struct cmap_position poll_thread_pos;
1896 struct cmap_position flow_pos;
1897 struct dp_netdev_pmd_thread *cur_pmd;
d2ad7ef1
JS
1898 int status;
1899 struct ovs_mutex mutex;
e723fd32
JS
1900};
1901
ac64794a
BP
1902static struct dpif_netdev_flow_dump *
1903dpif_netdev_flow_dump_cast(struct dpif_flow_dump *dump)
72865317 1904{
ac64794a 1905 return CONTAINER_OF(dump, struct dpif_netdev_flow_dump, up);
e723fd32
JS
1906}
1907
ac64794a 1908static struct dpif_flow_dump *
64bb477f 1909dpif_netdev_flow_dump_create(const struct dpif *dpif_, bool terse)
e723fd32 1910{
ac64794a 1911 struct dpif_netdev_flow_dump *dump;
e723fd32 1912
1c1e46ed 1913 dump = xzalloc(sizeof *dump);
ac64794a 1914 dpif_flow_dump_init(&dump->up, dpif_);
64bb477f 1915 dump->up.terse = terse;
ac64794a
BP
1916 ovs_mutex_init(&dump->mutex);
1917
1918 return &dump->up;
e723fd32
JS
1919}
1920
1921static int
ac64794a 1922dpif_netdev_flow_dump_destroy(struct dpif_flow_dump *dump_)
e723fd32 1923{
ac64794a 1924 struct dpif_netdev_flow_dump *dump = dpif_netdev_flow_dump_cast(dump_);
e723fd32 1925
ac64794a
BP
1926 ovs_mutex_destroy(&dump->mutex);
1927 free(dump);
704a1e09
BP
1928 return 0;
1929}
1930
ac64794a
BP
1931struct dpif_netdev_flow_dump_thread {
1932 struct dpif_flow_dump_thread up;
1933 struct dpif_netdev_flow_dump *dump;
8bb113da
RW
1934 struct odputil_keybuf keybuf[FLOW_DUMP_MAX_BATCH];
1935 struct odputil_keybuf maskbuf[FLOW_DUMP_MAX_BATCH];
ac64794a
BP
1936};
1937
1938static struct dpif_netdev_flow_dump_thread *
1939dpif_netdev_flow_dump_thread_cast(struct dpif_flow_dump_thread *thread)
1940{
1941 return CONTAINER_OF(thread, struct dpif_netdev_flow_dump_thread, up);
1942}
1943
1944static struct dpif_flow_dump_thread *
1945dpif_netdev_flow_dump_thread_create(struct dpif_flow_dump *dump_)
1946{
1947 struct dpif_netdev_flow_dump *dump = dpif_netdev_flow_dump_cast(dump_);
1948 struct dpif_netdev_flow_dump_thread *thread;
1949
1950 thread = xmalloc(sizeof *thread);
1951 dpif_flow_dump_thread_init(&thread->up, &dump->up);
1952 thread->dump = dump;
1953 return &thread->up;
1954}
1955
1956static void
1957dpif_netdev_flow_dump_thread_destroy(struct dpif_flow_dump_thread *thread_)
1958{
1959 struct dpif_netdev_flow_dump_thread *thread
1960 = dpif_netdev_flow_dump_thread_cast(thread_);
1961
1962 free(thread);
1963}
1964
704a1e09 1965static int
ac64794a 1966dpif_netdev_flow_dump_next(struct dpif_flow_dump_thread *thread_,
8bb113da 1967 struct dpif_flow *flows, int max_flows)
ac64794a
BP
1968{
1969 struct dpif_netdev_flow_dump_thread *thread
1970 = dpif_netdev_flow_dump_thread_cast(thread_);
1971 struct dpif_netdev_flow_dump *dump = thread->dump;
8bb113da 1972 struct dp_netdev_flow *netdev_flows[FLOW_DUMP_MAX_BATCH];
8bb113da
RW
1973 int n_flows = 0;
1974 int i;
14608a15 1975
ac64794a 1976 ovs_mutex_lock(&dump->mutex);
8bb113da 1977 if (!dump->status) {
1c1e46ed
AW
1978 struct dpif_netdev *dpif = dpif_netdev_cast(thread->up.dpif);
1979 struct dp_netdev *dp = get_dp_netdev(&dpif->dpif);
1980 struct dp_netdev_pmd_thread *pmd = dump->cur_pmd;
1981 int flow_limit = MIN(max_flows, FLOW_DUMP_MAX_BATCH);
1982
1983 /* First call to dump_next(), extracts the first pmd thread.
1984 * If there is no pmd thread, returns immediately. */
1985 if (!pmd) {
1986 pmd = dp_netdev_pmd_get_next(dp, &dump->poll_thread_pos);
1987 if (!pmd) {
1988 ovs_mutex_unlock(&dump->mutex);
1989 return n_flows;
8bb113da 1990
8bb113da 1991 }
d2ad7ef1 1992 }
1c1e46ed
AW
1993
1994 do {
1995 for (n_flows = 0; n_flows < flow_limit; n_flows++) {
1996 struct cmap_node *node;
1997
1998 node = cmap_next_position(&pmd->flow_table, &dump->flow_pos);
1999 if (!node) {
2000 break;
2001 }
2002 netdev_flows[n_flows] = CONTAINER_OF(node,
2003 struct dp_netdev_flow,
2004 node);
2005 }
2006 /* When finishing dumping the current pmd thread, moves to
2007 * the next. */
2008 if (n_flows < flow_limit) {
2009 memset(&dump->flow_pos, 0, sizeof dump->flow_pos);
2010 dp_netdev_pmd_unref(pmd);
2011 pmd = dp_netdev_pmd_get_next(dp, &dump->poll_thread_pos);
2012 if (!pmd) {
2013 dump->status = EOF;
2014 break;
2015 }
2016 }
2017 /* Keeps the reference to next caller. */
2018 dump->cur_pmd = pmd;
2019
2020 /* If the current dump is empty, do not exit the loop, since the
2021 * remaining pmds could have flows to be dumped. Just dumps again
2022 * on the new 'pmd'. */
2023 } while (!n_flows);
8a4e3a85 2024 }
ac64794a 2025 ovs_mutex_unlock(&dump->mutex);
ac64794a 2026
8bb113da
RW
2027 for (i = 0; i < n_flows; i++) {
2028 struct odputil_keybuf *maskbuf = &thread->maskbuf[i];
2029 struct odputil_keybuf *keybuf = &thread->keybuf[i];
2030 struct dp_netdev_flow *netdev_flow = netdev_flows[i];
2031 struct dpif_flow *f = &flows[i];
7af12bd7 2032 struct ofpbuf key, mask;
8bb113da 2033
7af12bd7
JS
2034 ofpbuf_use_stack(&key, keybuf, sizeof *keybuf);
2035 ofpbuf_use_stack(&mask, maskbuf, sizeof *maskbuf);
64bb477f
JS
2036 dp_netdev_flow_to_dpif_flow(netdev_flow, &key, &mask, f,
2037 dump->up.terse);
8bb113da 2038 }
feebdea2 2039
8bb113da 2040 return n_flows;
72865317
BP
2041}
2042
2043static int
758c456d 2044dpif_netdev_execute(struct dpif *dpif, struct dpif_execute *execute)
65f13b50 2045 OVS_NO_THREAD_SAFETY_ANALYSIS
72865317
BP
2046{
2047 struct dp_netdev *dp = get_dp_netdev(dpif);
65f13b50 2048 struct dp_netdev_pmd_thread *pmd;
cf62fa4c 2049 struct dp_packet *pp;
72865317 2050
cf62fa4c
PS
2051 if (dp_packet_size(execute->packet) < ETH_HEADER_LEN ||
2052 dp_packet_size(execute->packet) > UINT16_MAX) {
72865317
BP
2053 return EINVAL;
2054 }
2055
65f13b50
AW
2056 /* Tries finding the 'pmd'. If NULL is returned, that means
2057 * the current thread is a non-pmd thread and should use
b19befae 2058 * dp_netdev_get_pmd(dp, NON_PMD_CORE_ID). */
65f13b50
AW
2059 pmd = ovsthread_getspecific(dp->per_pmd_key);
2060 if (!pmd) {
b19befae 2061 pmd = dp_netdev_get_pmd(dp, NON_PMD_CORE_ID);
65f13b50
AW
2062 }
2063
2064 /* If the current thread is non-pmd thread, acquires
2065 * the 'non_pmd_mutex'. */
2066 if (pmd->core_id == NON_PMD_CORE_ID) {
2067 ovs_mutex_lock(&dp->non_pmd_mutex);
433330a8 2068 ovs_mutex_lock(&dp->port_mutex);
65f13b50 2069 }
1c1e46ed 2070
cf62fa4c 2071 pp = execute->packet;
41ccaa24 2072 dp_netdev_execute_actions(pmd, &pp, 1, false, execute->actions,
9bbf1c3d 2073 execute->actions_len);
65f13b50 2074 if (pmd->core_id == NON_PMD_CORE_ID) {
1c1e46ed 2075 dp_netdev_pmd_unref(pmd);
433330a8 2076 ovs_mutex_unlock(&dp->port_mutex);
65f13b50
AW
2077 ovs_mutex_unlock(&dp->non_pmd_mutex);
2078 }
8a4e3a85 2079
758c456d 2080 return 0;
72865317
BP
2081}
2082
1a0c894a
BP
2083static void
2084dpif_netdev_operate(struct dpif *dpif, struct dpif_op **ops, size_t n_ops)
2085{
2086 size_t i;
2087
2088 for (i = 0; i < n_ops; i++) {
2089 struct dpif_op *op = ops[i];
2090
2091 switch (op->type) {
2092 case DPIF_OP_FLOW_PUT:
2093 op->error = dpif_netdev_flow_put(dpif, &op->u.flow_put);
2094 break;
2095
2096 case DPIF_OP_FLOW_DEL:
2097 op->error = dpif_netdev_flow_del(dpif, &op->u.flow_del);
2098 break;
2099
2100 case DPIF_OP_EXECUTE:
2101 op->error = dpif_netdev_execute(dpif, &op->u.execute);
2102 break;
6fe09f8c
JS
2103
2104 case DPIF_OP_FLOW_GET:
2105 op->error = dpif_netdev_flow_get(dpif, &op->u.flow_get);
2106 break;
1a0c894a
BP
2107 }
2108 }
2109}
2110
f2eee189
AW
2111/* Returns true if the configuration for rx queues or cpu mask
2112 * is changed. */
2113static bool
2114pmd_config_changed(const struct dp_netdev *dp, size_t rxqs, const char *cmask)
2115{
2116 if (dp->n_dpdk_rxqs != rxqs) {
2117 return true;
2118 } else {
2119 if (dp->pmd_cmask != NULL && cmask != NULL) {
2120 return strcmp(dp->pmd_cmask, cmask);
2121 } else {
2122 return (dp->pmd_cmask != NULL || cmask != NULL);
2123 }
2124 }
2125}
2126
2127/* Resets pmd threads if the configuration for 'rxq's or cpu mask changes. */
2128static int
2129dpif_netdev_pmd_set(struct dpif *dpif, unsigned int n_rxqs, const char *cmask)
2130{
2131 struct dp_netdev *dp = get_dp_netdev(dpif);
2132
2133 if (pmd_config_changed(dp, n_rxqs, cmask)) {
2134 struct dp_netdev_port *port;
2135
2136 dp_netdev_destroy_all_pmds(dp);
2137
2138 CMAP_FOR_EACH (port, node, &dp->ports) {
2139 if (netdev_is_pmd(port->netdev)) {
2140 int i, err;
2141
2142 /* Closes the existing 'rxq's. */
2143 for (i = 0; i < netdev_n_rxq(port->netdev); i++) {
2144 netdev_rxq_close(port->rxq[i]);
2145 port->rxq[i] = NULL;
2146 }
2147
2148 /* Sets the new rx queue config. */
2149 err = netdev_set_multiq(port->netdev, ovs_numa_get_n_cores(),
2150 n_rxqs);
7251515e 2151 if (err && (err != EOPNOTSUPP)) {
f2eee189
AW
2152 VLOG_ERR("Failed to set dpdk interface %s rx_queue to:"
2153 " %u", netdev_get_name(port->netdev),
2154 n_rxqs);
2155 return err;
2156 }
2157
2158 /* If the set_multiq() above succeeds, reopens the 'rxq's. */
2159 port->rxq = xrealloc(port->rxq, sizeof *port->rxq
2160 * netdev_n_rxq(port->netdev));
2161 for (i = 0; i < netdev_n_rxq(port->netdev); i++) {
2162 netdev_rxq_open(port->netdev, &port->rxq[i], i);
2163 }
2164 }
2165 }
2166 dp->n_dpdk_rxqs = n_rxqs;
2167
2168 /* Reconfigures the cpu mask. */
2169 ovs_numa_set_cpu_mask(cmask);
2170 free(dp->pmd_cmask);
2171 dp->pmd_cmask = cmask ? xstrdup(cmask) : NULL;
2172
2173 /* Restores the non-pmd. */
2174 dp_netdev_set_nonpmd(dp);
2175 /* Restores all pmd threads. */
2176 dp_netdev_reset_pmd_threads(dp);
2177 }
2178
2179 return 0;
2180}
2181
5bf93d67
EJ
2182static int
2183dpif_netdev_queue_to_priority(const struct dpif *dpif OVS_UNUSED,
2184 uint32_t queue_id, uint32_t *priority)
2185{
2186 *priority = queue_id;
2187 return 0;
2188}
2189
72865317 2190\f
a84cb64a
BP
2191/* Creates and returns a new 'struct dp_netdev_actions', with a reference count
2192 * of 1, whose actions are a copy of from the 'ofpacts_len' bytes of
2193 * 'ofpacts'. */
2194struct dp_netdev_actions *
2195dp_netdev_actions_create(const struct nlattr *actions, size_t size)
2196{
2197 struct dp_netdev_actions *netdev_actions;
2198
2199 netdev_actions = xmalloc(sizeof *netdev_actions);
a84cb64a
BP
2200 netdev_actions->actions = xmemdup(actions, size);
2201 netdev_actions->size = size;
2202
2203 return netdev_actions;
2204}
2205
a84cb64a 2206struct dp_netdev_actions *
61e7deb1 2207dp_netdev_flow_get_actions(const struct dp_netdev_flow *flow)
a84cb64a 2208{
61e7deb1 2209 return ovsrcu_get(struct dp_netdev_actions *, &flow->actions);
a84cb64a
BP
2210}
2211
61e7deb1
BP
2212static void
2213dp_netdev_actions_free(struct dp_netdev_actions *actions)
a84cb64a 2214{
61e7deb1
BP
2215 free(actions->actions);
2216 free(actions);
a84cb64a
BP
2217}
2218\f
e4cfed38 2219
5794e276 2220static void
65f13b50 2221dp_netdev_process_rxq_port(struct dp_netdev_pmd_thread *pmd,
9bbf1c3d
DDP
2222 struct dp_netdev_port *port,
2223 struct netdev_rxq *rxq)
e4cfed38 2224{
e14deea0 2225 struct dp_packet *packets[NETDEV_MAX_RX_BATCH];
8cbf4f47 2226 int error, cnt;
e4cfed38 2227
8cbf4f47 2228 error = netdev_rxq_recv(rxq, packets, &cnt);
e4cfed38 2229 if (!error) {
41ccaa24 2230 int i;
3c33f0ff
JR
2231
2232 *recirc_depth_get() = 0;
41ccaa24
PS
2233
2234 /* XXX: initialize md in netdev implementation. */
2235 for (i = 0; i < cnt; i++) {
2236 packets[i]->md = PKT_METADATA_INITIALIZER(port->port_no);
2237 }
2238 dp_netdev_input(pmd, packets, cnt);
e4cfed38 2239 } else if (error != EAGAIN && error != EOPNOTSUPP) {
3c33f0ff 2240 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
e4cfed38
PS
2241
2242 VLOG_ERR_RL(&rl, "error receiving data from %s: %s",
3c33f0ff 2243 netdev_get_name(port->netdev), ovs_strerror(error));
e4cfed38
PS
2244 }
2245}
2246
a36de779
PS
2247/* Return true if needs to revalidate datapath flows. */
2248static bool
e4cfed38
PS
2249dpif_netdev_run(struct dpif *dpif)
2250{
2251 struct dp_netdev_port *port;
2252 struct dp_netdev *dp = get_dp_netdev(dpif);
b19befae
AW
2253 struct dp_netdev_pmd_thread *non_pmd = dp_netdev_get_pmd(dp,
2254 NON_PMD_CORE_ID);
a36de779 2255 uint64_t new_tnl_seq;
e4cfed38 2256
65f13b50 2257 ovs_mutex_lock(&dp->non_pmd_mutex);
a532e683 2258 CMAP_FOR_EACH (port, node, &dp->ports) {
55c955bd
PS
2259 if (!netdev_is_pmd(port->netdev)) {
2260 int i;
2261
2262 for (i = 0; i < netdev_n_rxq(port->netdev); i++) {
65f13b50 2263 dp_netdev_process_rxq_port(non_pmd, port, port->rxq[i]);
55c955bd 2264 }
e4cfed38
PS
2265 }
2266 }
65f13b50 2267 ovs_mutex_unlock(&dp->non_pmd_mutex);
1c1e46ed
AW
2268 dp_netdev_pmd_unref(non_pmd);
2269
a36de779
PS
2270 tnl_arp_cache_run();
2271 new_tnl_seq = seq_read(tnl_conf_seq);
2272
2273 if (dp->last_tnl_conf_seq != new_tnl_seq) {
2274 dp->last_tnl_conf_seq = new_tnl_seq;
2275 return true;
2276 }
2277 return false;
e4cfed38
PS
2278}
2279
2280static void
2281dpif_netdev_wait(struct dpif *dpif)
2282{
2283 struct dp_netdev_port *port;
2284 struct dp_netdev *dp = get_dp_netdev(dpif);
2285
59e6d833 2286 ovs_mutex_lock(&dp_netdev_mutex);
a532e683 2287 CMAP_FOR_EACH (port, node, &dp->ports) {
55c955bd
PS
2288 if (!netdev_is_pmd(port->netdev)) {
2289 int i;
2290
2291 for (i = 0; i < netdev_n_rxq(port->netdev); i++) {
2292 netdev_rxq_wait(port->rxq[i]);
2293 }
e4cfed38
PS
2294 }
2295 }
59e6d833 2296 ovs_mutex_unlock(&dp_netdev_mutex);
a36de779 2297 seq_wait(tnl_conf_seq, dp->last_tnl_conf_seq);
e4cfed38
PS
2298}
2299
f7791740 2300struct rxq_poll {
e4cfed38 2301 struct dp_netdev_port *port;
55c955bd 2302 struct netdev_rxq *rx;
e4cfed38
PS
2303};
2304
2305static int
65f13b50 2306pmd_load_queues(struct dp_netdev_pmd_thread *pmd,
f7791740 2307 struct rxq_poll **ppoll_list, int poll_cnt)
e4cfed38 2308{
f7791740 2309 struct rxq_poll *poll_list = *ppoll_list;
e4cfed38 2310 struct dp_netdev_port *port;
65f13b50 2311 int n_pmds_on_numa, index, i;
e4cfed38
PS
2312
2313 /* Simple scheduler for netdev rx polling. */
e4cfed38 2314 for (i = 0; i < poll_cnt; i++) {
65f13b50 2315 port_unref(poll_list[i].port);
e4cfed38
PS
2316 }
2317
2318 poll_cnt = 0;
65f13b50 2319 n_pmds_on_numa = get_n_pmd_threads_on_numa(pmd->dp, pmd->numa_id);
e4cfed38
PS
2320 index = 0;
2321
65f13b50 2322 CMAP_FOR_EACH (port, node, &pmd->dp->ports) {
a1fdee13
AW
2323 /* Calls port_try_ref() to prevent the main thread
2324 * from deleting the port. */
2325 if (port_try_ref(port)) {
65f13b50
AW
2326 if (netdev_is_pmd(port->netdev)
2327 && netdev_get_numa_id(port->netdev) == pmd->numa_id) {
a1fdee13
AW
2328 int i;
2329
2330 for (i = 0; i < netdev_n_rxq(port->netdev); i++) {
65f13b50 2331 if ((index % n_pmds_on_numa) == pmd->index) {
a1fdee13
AW
2332 poll_list = xrealloc(poll_list,
2333 sizeof *poll_list * (poll_cnt + 1));
2334
2335 port_ref(port);
2336 poll_list[poll_cnt].port = port;
2337 poll_list[poll_cnt].rx = port->rxq[i];
2338 poll_cnt++;
2339 }
2340 index++;
55c955bd 2341 }
e4cfed38 2342 }
a1fdee13
AW
2343 /* Unrefs the port_try_ref(). */
2344 port_unref(port);
e4cfed38
PS
2345 }
2346 }
2347
e4cfed38
PS
2348 *ppoll_list = poll_list;
2349 return poll_cnt;
2350}
2351
6c3eee82 2352static void *
e4cfed38 2353pmd_thread_main(void *f_)
6c3eee82 2354{
65f13b50 2355 struct dp_netdev_pmd_thread *pmd = f_;
e4cfed38 2356 unsigned int lc = 0;
f7791740 2357 struct rxq_poll *poll_list;
84067a4c 2358 unsigned int port_seq = PMD_INITIAL_SEQ;
e4cfed38
PS
2359 int poll_cnt;
2360 int i;
6c3eee82 2361
e4cfed38
PS
2362 poll_cnt = 0;
2363 poll_list = NULL;
2364
65f13b50
AW
2365 /* Stores the pmd thread's 'pmd' to 'per_pmd_key'. */
2366 ovsthread_setspecific(pmd->dp->per_pmd_key, pmd);
2367 pmd_thread_setaffinity_cpu(pmd->core_id);
e4cfed38 2368reload:
65f13b50
AW
2369 emc_cache_init(&pmd->flow_cache);
2370 poll_cnt = pmd_load_queues(pmd, &poll_list, poll_cnt);
6c3eee82 2371
accf8626
AW
2372 /* Signal here to make sure the pmd finishes
2373 * reloading the updated configuration. */
2374 dp_netdev_pmd_reload_done(pmd);
2375
e4cfed38 2376 for (;;) {
6c3eee82
BP
2377 int i;
2378
e4cfed38 2379 for (i = 0; i < poll_cnt; i++) {
65f13b50 2380 dp_netdev_process_rxq_port(pmd, poll_list[i].port, poll_list[i].rx);
e4cfed38
PS
2381 }
2382
2383 if (lc++ > 1024) {
84067a4c 2384 unsigned int seq;
6c3eee82 2385
e4cfed38 2386 lc = 0;
84067a4c 2387
67ad54cb 2388 emc_cache_slow_sweep(&pmd->flow_cache);
84067a4c
JR
2389 ovsrcu_quiesce();
2390
65f13b50 2391 atomic_read_relaxed(&pmd->change_seq, &seq);
84067a4c
JR
2392 if (seq != port_seq) {
2393 port_seq = seq;
6c3eee82
BP
2394 break;
2395 }
2396 }
e4cfed38 2397 }
6c3eee82 2398
65f13b50 2399 emc_cache_uninit(&pmd->flow_cache);
9bbf1c3d 2400
65f13b50 2401 if (!latch_is_set(&pmd->exit_latch)){
e4cfed38
PS
2402 goto reload;
2403 }
6c3eee82 2404
e4cfed38
PS
2405 for (i = 0; i < poll_cnt; i++) {
2406 port_unref(poll_list[i].port);
6c3eee82 2407 }
6c3eee82 2408
accf8626
AW
2409 dp_netdev_pmd_reload_done(pmd);
2410
e4cfed38 2411 free(poll_list);
6c3eee82
BP
2412 return NULL;
2413}
2414
6b31e073
RW
2415static void
2416dp_netdev_disable_upcall(struct dp_netdev *dp)
2417 OVS_ACQUIRES(dp->upcall_rwlock)
2418{
2419 fat_rwlock_wrlock(&dp->upcall_rwlock);
2420}
2421
2422static void
2423dpif_netdev_disable_upcall(struct dpif *dpif)
2424 OVS_NO_THREAD_SAFETY_ANALYSIS
2425{
2426 struct dp_netdev *dp = get_dp_netdev(dpif);
2427 dp_netdev_disable_upcall(dp);
2428}
2429
2430static void
2431dp_netdev_enable_upcall(struct dp_netdev *dp)
2432 OVS_RELEASES(dp->upcall_rwlock)
2433{
2434 fat_rwlock_unlock(&dp->upcall_rwlock);
2435}
2436
2437static void
2438dpif_netdev_enable_upcall(struct dpif *dpif)
2439 OVS_NO_THREAD_SAFETY_ANALYSIS
2440{
2441 struct dp_netdev *dp = get_dp_netdev(dpif);
2442 dp_netdev_enable_upcall(dp);
2443}
2444
accf8626
AW
2445void
2446dp_netdev_pmd_reload_done(struct dp_netdev_pmd_thread *pmd)
2447{
2448 ovs_mutex_lock(&pmd->cond_mutex);
2449 xpthread_cond_signal(&pmd->cond);
2450 ovs_mutex_unlock(&pmd->cond_mutex);
2451}
2452
1c1e46ed
AW
2453/* Finds and refs the dp_netdev_pmd_thread on core 'core_id'. Returns
2454 * the pointer if succeeds, otherwise, NULL.
2455 *
2456 * Caller must unrefs the returned reference. */
65f13b50 2457static struct dp_netdev_pmd_thread *
b19befae 2458dp_netdev_get_pmd(struct dp_netdev *dp, int core_id)
65f13b50
AW
2459{
2460 struct dp_netdev_pmd_thread *pmd;
55847abe 2461 const struct cmap_node *pnode;
65f13b50 2462
b19befae 2463 pnode = cmap_find(&dp->poll_threads, hash_int(core_id, 0));
1c1e46ed
AW
2464 if (!pnode) {
2465 return NULL;
2466 }
65f13b50
AW
2467 pmd = CONTAINER_OF(pnode, struct dp_netdev_pmd_thread, node);
2468
1c1e46ed 2469 return dp_netdev_pmd_try_ref(pmd) ? pmd : NULL;
65f13b50
AW
2470}
2471
f2eee189
AW
2472/* Sets the 'struct dp_netdev_pmd_thread' for non-pmd threads. */
2473static void
2474dp_netdev_set_nonpmd(struct dp_netdev *dp)
2475{
2476 struct dp_netdev_pmd_thread *non_pmd;
2477
2478 non_pmd = xzalloc(sizeof *non_pmd);
2479 dp_netdev_configure_pmd(non_pmd, dp, 0, NON_PMD_CORE_ID,
2480 OVS_NUMA_UNSPEC);
2481}
2482
1c1e46ed
AW
2483/* Caller must have valid pointer to 'pmd'. */
2484static bool
2485dp_netdev_pmd_try_ref(struct dp_netdev_pmd_thread *pmd)
2486{
2487 return ovs_refcount_try_ref_rcu(&pmd->ref_cnt);
2488}
2489
2490static void
2491dp_netdev_pmd_unref(struct dp_netdev_pmd_thread *pmd)
2492{
2493 if (pmd && ovs_refcount_unref(&pmd->ref_cnt) == 1) {
2494 ovsrcu_postpone(dp_netdev_destroy_pmd, pmd);
2495 }
2496}
2497
2498/* Given cmap position 'pos', tries to ref the next node. If try_ref()
2499 * fails, keeps checking for next node until reaching the end of cmap.
2500 *
2501 * Caller must unrefs the returned reference. */
2502static struct dp_netdev_pmd_thread *
2503dp_netdev_pmd_get_next(struct dp_netdev *dp, struct cmap_position *pos)
2504{
2505 struct dp_netdev_pmd_thread *next;
2506
2507 do {
2508 struct cmap_node *node;
2509
2510 node = cmap_next_position(&dp->poll_threads, pos);
2511 next = node ? CONTAINER_OF(node, struct dp_netdev_pmd_thread, node)
2512 : NULL;
2513 } while (next && !dp_netdev_pmd_try_ref(next));
2514
2515 return next;
2516}
2517
65f13b50 2518/* Configures the 'pmd' based on the input argument. */
6c3eee82 2519static void
65f13b50
AW
2520dp_netdev_configure_pmd(struct dp_netdev_pmd_thread *pmd, struct dp_netdev *dp,
2521 int index, int core_id, int numa_id)
2522{
2523 pmd->dp = dp;
2524 pmd->index = index;
2525 pmd->core_id = core_id;
2526 pmd->numa_id = numa_id;
1c1e46ed
AW
2527
2528 ovs_refcount_init(&pmd->ref_cnt);
65f13b50
AW
2529 latch_init(&pmd->exit_latch);
2530 atomic_init(&pmd->change_seq, PMD_INITIAL_SEQ);
accf8626
AW
2531 xpthread_cond_init(&pmd->cond, NULL);
2532 ovs_mutex_init(&pmd->cond_mutex);
1c1e46ed
AW
2533 ovs_mutex_init(&pmd->flow_mutex);
2534 dpcls_init(&pmd->cls);
2535 cmap_init(&pmd->flow_table);
65f13b50
AW
2536 /* init the 'flow_cache' since there is no
2537 * actual thread created for NON_PMD_CORE_ID. */
2538 if (core_id == NON_PMD_CORE_ID) {
2539 emc_cache_init(&pmd->flow_cache);
2540 }
2541 cmap_insert(&dp->poll_threads, CONST_CAST(struct cmap_node *, &pmd->node),
2542 hash_int(core_id, 0));
2543}
2544
1c1e46ed
AW
2545static void
2546dp_netdev_destroy_pmd(struct dp_netdev_pmd_thread *pmd)
2547{
2548 dp_netdev_pmd_flow_flush(pmd);
2549 dpcls_destroy(&pmd->cls);
2550 cmap_destroy(&pmd->flow_table);
2551 ovs_mutex_destroy(&pmd->flow_mutex);
2552 latch_destroy(&pmd->exit_latch);
2553 xpthread_cond_destroy(&pmd->cond);
2554 ovs_mutex_destroy(&pmd->cond_mutex);
2555 free(pmd);
2556}
2557
2558/* Stops the pmd thread, removes it from the 'dp->poll_threads',
2559 * and unrefs the struct. */
65f13b50
AW
2560static void
2561dp_netdev_del_pmd(struct dp_netdev_pmd_thread *pmd)
6c3eee82 2562{
65f13b50 2563 /* Uninit the 'flow_cache' since there is
1c1e46ed 2564 * no actual thread uninit it for NON_PMD_CORE_ID. */
65f13b50
AW
2565 if (pmd->core_id == NON_PMD_CORE_ID) {
2566 emc_cache_uninit(&pmd->flow_cache);
2567 } else {
2568 latch_set(&pmd->exit_latch);
2569 dp_netdev_reload_pmd__(pmd);
2570 ovs_numa_unpin_core(pmd->core_id);
2571 xpthread_join(pmd->thread, NULL);
2572 }
2573 cmap_remove(&pmd->dp->poll_threads, &pmd->node, hash_int(pmd->core_id, 0));
1c1e46ed 2574 dp_netdev_pmd_unref(pmd);
65f13b50 2575}
6c3eee82 2576
65f13b50
AW
2577/* Destroys all pmd threads. */
2578static void
2579dp_netdev_destroy_all_pmds(struct dp_netdev *dp)
2580{
2581 struct dp_netdev_pmd_thread *pmd;
2582
2583 CMAP_FOR_EACH (pmd, node, &dp->poll_threads) {
2584 dp_netdev_del_pmd(pmd);
6c3eee82 2585 }
65f13b50 2586}
6c3eee82 2587
65f13b50
AW
2588/* Deletes all pmd threads on numa node 'numa_id'. */
2589static void
2590dp_netdev_del_pmds_on_numa(struct dp_netdev *dp, int numa_id)
2591{
2592 struct dp_netdev_pmd_thread *pmd;
6c3eee82 2593
65f13b50
AW
2594 CMAP_FOR_EACH (pmd, node, &dp->poll_threads) {
2595 if (pmd->numa_id == numa_id) {
2596 dp_netdev_del_pmd(pmd);
2597 }
6c3eee82 2598 }
65f13b50 2599}
6c3eee82 2600
65f13b50
AW
2601/* Checks the numa node id of 'netdev' and starts pmd threads for
2602 * the numa node. */
2603static void
2604dp_netdev_set_pmds_on_numa(struct dp_netdev *dp, int numa_id)
2605{
2606 int n_pmds;
e4cfed38 2607
65f13b50
AW
2608 if (!ovs_numa_numa_id_is_valid(numa_id)) {
2609 VLOG_ERR("Cannot create pmd threads due to numa id (%d)"
2610 "invalid", numa_id);
2611 return ;
2612 }
2613
2614 n_pmds = get_n_pmd_threads_on_numa(dp, numa_id);
2615
2616 /* If there are already pmd threads created for the numa node
2617 * in which 'netdev' is on, do nothing. Else, creates the
2618 * pmd threads for the numa node. */
2619 if (!n_pmds) {
2620 int can_have, n_unpinned, i;
2621
2622 n_unpinned = ovs_numa_get_n_unpinned_cores_on_numa(numa_id);
2623 if (!n_unpinned) {
2624 VLOG_ERR("Cannot create pmd threads due to out of unpinned "
2625 "cores on numa node");
2626 return;
2627 }
6c3eee82 2628
f2eee189
AW
2629 /* If cpu mask is specified, uses all unpinned cores, otherwise
2630 * tries creating NR_PMD_THREADS pmd threads. */
2631 can_have = dp->pmd_cmask ? n_unpinned : MIN(n_unpinned, NR_PMD_THREADS);
65f13b50
AW
2632 for (i = 0; i < can_have; i++) {
2633 struct dp_netdev_pmd_thread *pmd = xzalloc(sizeof *pmd);
2634 int core_id = ovs_numa_get_unpinned_core_on_numa(numa_id);
e4cfed38 2635
65f13b50
AW
2636 dp_netdev_configure_pmd(pmd, dp, i, core_id, numa_id);
2637 /* Each thread will distribute all devices rx-queues among
2638 * themselves. */
2639 pmd->thread = ovs_thread_create("pmd", pmd_thread_main, pmd);
2640 }
2641 VLOG_INFO("Created %d pmd threads on numa node %d", can_have, numa_id);
6c3eee82
BP
2642 }
2643}
e4cfed38 2644
6c3eee82 2645\f
f2eee189
AW
2646/* Called after pmd threads config change. Restarts pmd threads with
2647 * new configuration. */
2648static void
2649dp_netdev_reset_pmd_threads(struct dp_netdev *dp)
2650{
2651 struct dp_netdev_port *port;
2652
2653 CMAP_FOR_EACH (port, node, &dp->ports) {
2654 if (netdev_is_pmd(port->netdev)) {
2655 int numa_id = netdev_get_numa_id(port->netdev);
2656
2657 dp_netdev_set_pmds_on_numa(dp, numa_id);
2658 }
2659 }
2660}
2661
b5cbbcf6
AZ
2662static char *
2663dpif_netdev_get_datapath_version(void)
2664{
2665 return xstrdup("<built-in>");
2666}
2667
72865317 2668static void
1c1e46ed 2669dp_netdev_flow_used(struct dp_netdev_flow *netdev_flow, int cnt, int size,
8cbf4f47 2670 uint16_t tcp_flags)
72865317 2671{
679ba04c 2672 long long int now = time_msec();
72865317 2673
1c1e46ed
AW
2674 netdev_flow->stats.used = MAX(now, netdev_flow->stats.used);
2675 netdev_flow->stats.packet_count += cnt;
2676 netdev_flow->stats.byte_count += size;
2677 netdev_flow->stats.tcp_flags |= tcp_flags;
51852a57
BP
2678}
2679
2680static void
1c1e46ed
AW
2681dp_netdev_count_packet(struct dp_netdev_pmd_thread *pmd,
2682 enum dp_stat_type type, int cnt)
51852a57 2683{
1c1e46ed 2684 pmd->stats.n[type] += cnt;
51852a57
BP
2685}
2686
623540e4 2687static int
e14deea0 2688dp_netdev_upcall(struct dp_netdev_pmd_thread *pmd, struct dp_packet *packet_,
7af12bd7 2689 struct flow *flow, struct flow_wildcards *wc, ovs_u128 *ufid,
623540e4
EJ
2690 enum dpif_upcall_type type, const struct nlattr *userdata,
2691 struct ofpbuf *actions, struct ofpbuf *put_actions)
2692{
1c1e46ed 2693 struct dp_netdev *dp = pmd->dp;
623540e4
EJ
2694
2695 if (type == DPIF_UC_MISS) {
1c1e46ed 2696 dp_netdev_count_packet(pmd, DP_STAT_MISS, 1);
623540e4
EJ
2697 }
2698
2699 if (OVS_UNLIKELY(!dp->upcall_cb)) {
2700 return ENODEV;
2701 }
2702
2703 if (OVS_UNLIKELY(!VLOG_DROP_DBG(&upcall_rl))) {
2704 struct ds ds = DS_EMPTY_INITIALIZER;
623540e4 2705 char *packet_str;
cf62fa4c 2706 struct ofpbuf key;
623540e4
EJ
2707
2708 ofpbuf_init(&key, 0);
2709 odp_flow_key_from_flow(&key, flow, &wc->masks, flow->in_port.odp_port,
2710 true);
cf62fa4c
PS
2711 packet_str = ofp_packet_to_string(dp_packet_data(packet_),
2712 dp_packet_size(packet_));
623540e4 2713
6fd6ed71 2714 odp_flow_key_format(key.data, key.size, &ds);
623540e4
EJ
2715
2716 VLOG_DBG("%s: %s upcall:\n%s\n%s", dp->name,
2717 dpif_upcall_type_to_string(type), ds_cstr(&ds), packet_str);
2718
2719 ofpbuf_uninit(&key);
2720 free(packet_str);
6fd6ed71 2721
623540e4
EJ
2722 ds_destroy(&ds);
2723 }
2724
cf62fa4c 2725 return dp->upcall_cb(packet_, flow, ufid, pmd->core_id, type, userdata,
1c1e46ed 2726 actions, wc, put_actions, dp->upcall_aux);
623540e4
EJ
2727}
2728
9bbf1c3d 2729static inline uint32_t
e14deea0 2730dpif_netdev_packet_get_dp_hash(struct dp_packet *packet,
9bbf1c3d
DDP
2731 const struct miniflow *mf)
2732{
2733 uint32_t hash;
2734
e14deea0 2735 hash = dp_packet_get_dp_hash(packet);
9bbf1c3d
DDP
2736 if (OVS_UNLIKELY(!hash)) {
2737 hash = miniflow_hash_5tuple(mf, 0);
e14deea0 2738 dp_packet_set_dp_hash(packet, hash);
9bbf1c3d
DDP
2739 }
2740 return hash;
2741}
2742
567bbb2e 2743struct packet_batch {
8cbf4f47
DDP
2744 unsigned int packet_count;
2745 unsigned int byte_count;
2746 uint16_t tcp_flags;
2747
2748 struct dp_netdev_flow *flow;
2749
e14deea0 2750 struct dp_packet *packets[NETDEV_MAX_RX_BATCH];
8cbf4f47
DDP
2751};
2752
2753static inline void
e14deea0 2754packet_batch_update(struct packet_batch *batch, struct dp_packet *packet,
9bbf1c3d 2755 const struct miniflow *mf)
8cbf4f47
DDP
2756{
2757 batch->tcp_flags |= miniflow_get_tcp_flags(mf);
2758 batch->packets[batch->packet_count++] = packet;
cf62fa4c 2759 batch->byte_count += dp_packet_size(packet);
8cbf4f47
DDP
2760}
2761
2762static inline void
41ccaa24 2763packet_batch_init(struct packet_batch *batch, struct dp_netdev_flow *flow)
8cbf4f47
DDP
2764{
2765 batch->flow = flow;
8cbf4f47
DDP
2766
2767 batch->packet_count = 0;
2768 batch->byte_count = 0;
2769 batch->tcp_flags = 0;
8cbf4f47
DDP
2770}
2771
2772static inline void
65f13b50
AW
2773packet_batch_execute(struct packet_batch *batch,
2774 struct dp_netdev_pmd_thread *pmd)
8cbf4f47
DDP
2775{
2776 struct dp_netdev_actions *actions;
2777 struct dp_netdev_flow *flow = batch->flow;
2778
2779 dp_netdev_flow_used(batch->flow, batch->packet_count, batch->byte_count,
2780 batch->tcp_flags);
2781
2782 actions = dp_netdev_flow_get_actions(flow);
2783
65f13b50 2784 dp_netdev_execute_actions(pmd, batch->packets, batch->packet_count, true,
41ccaa24 2785 actions->actions, actions->size);
8cbf4f47 2786
1c1e46ed 2787 dp_netdev_count_packet(pmd, DP_STAT_HIT, batch->packet_count);
8cbf4f47
DDP
2788}
2789
9bbf1c3d 2790static inline bool
e14deea0 2791dp_netdev_queue_batches(struct dp_packet *pkt,
9bbf1c3d
DDP
2792 struct dp_netdev_flow *flow, const struct miniflow *mf,
2793 struct packet_batch *batches, size_t *n_batches,
2794 size_t max_batches)
2795{
2796 struct packet_batch *batch = NULL;
2797 int j;
2798
2799 if (OVS_UNLIKELY(!flow)) {
2800 return false;
2801 }
2802 /* XXX: This O(n^2) algortihm makes sense if we're operating under the
2803 * assumption that the number of distinct flows (and therefore the
2804 * number of distinct batches) is quite small. If this turns out not
2805 * to be the case, it may make sense to pre sort based on the
2806 * netdev_flow pointer. That done we can get the appropriate batching
2807 * in O(n * log(n)) instead. */
2808 for (j = *n_batches - 1; j >= 0; j--) {
2809 if (batches[j].flow == flow) {
2810 batch = &batches[j];
2811 packet_batch_update(batch, pkt, mf);
2812 return true;
2813 }
2814 }
2815 if (OVS_UNLIKELY(*n_batches >= max_batches)) {
2816 return false;
2817 }
2818
2819 batch = &batches[(*n_batches)++];
41ccaa24 2820 packet_batch_init(batch, flow);
9bbf1c3d
DDP
2821 packet_batch_update(batch, pkt, mf);
2822 return true;
2823}
2824
2825static inline void
e14deea0 2826dp_packet_swap(struct dp_packet **a, struct dp_packet **b)
9bbf1c3d 2827{
e14deea0 2828 struct dp_packet *tmp = *a;
9bbf1c3d
DDP
2829 *a = *b;
2830 *b = tmp;
2831}
2832
2833/* Try to process all ('cnt') the 'packets' using only the exact match cache
2834 * 'flow_cache'. If a flow is not found for a packet 'packets[i]', or if there
2835 * is no matching batch for a packet's flow, the miniflow is copied into 'keys'
2836 * and the packet pointer is moved at the beginning of the 'packets' array.
2837 *
2838 * The function returns the number of packets that needs to be processed in the
2839 * 'packets' array (they have been moved to the beginning of the vector).
2840 */
2841static inline size_t
e14deea0 2842emc_processing(struct dp_netdev_pmd_thread *pmd, struct dp_packet **packets,
41ccaa24 2843 size_t cnt, struct netdev_flow_key *keys)
72865317 2844{
9bbf1c3d
DDP
2845 struct netdev_flow_key key;
2846 struct packet_batch batches[4];
65f13b50 2847 struct emc_cache *flow_cache = &pmd->flow_cache;
84d6d5eb 2848 size_t n_batches, i;
9bbf1c3d 2849 size_t notfound_cnt = 0;
8cbf4f47 2850
9bbf1c3d 2851 n_batches = 0;
0de8783a 2852 miniflow_initialize(&key.mf, key.buf);
84d6d5eb 2853 for (i = 0; i < cnt; i++) {
9bbf1c3d 2854 struct dp_netdev_flow *flow;
9bbf1c3d 2855
cf62fa4c 2856 if (OVS_UNLIKELY(dp_packet_size(packets[i]) < ETH_HEADER_LEN)) {
e14deea0 2857 dp_packet_delete(packets[i]);
84d6d5eb
EJ
2858 continue;
2859 }
8cbf4f47 2860
cf62fa4c 2861 miniflow_extract(packets[i], &key.mf);
0de8783a
JR
2862 key.len = 0; /* Not computed yet. */
2863 key.hash = dpif_netdev_packet_get_dp_hash(packets[i], &key.mf);
9bbf1c3d 2864
0de8783a
JR
2865 flow = emc_lookup(flow_cache, &key);
2866 if (OVS_UNLIKELY(!dp_netdev_queue_batches(packets[i], flow, &key.mf,
9bbf1c3d
DDP
2867 batches, &n_batches,
2868 ARRAY_SIZE(batches)))) {
2869 if (i != notfound_cnt) {
e14deea0 2870 dp_packet_swap(&packets[i], &packets[notfound_cnt]);
9bbf1c3d
DDP
2871 }
2872
2873 keys[notfound_cnt++] = key;
2874 }
2875 }
2876
2877 for (i = 0; i < n_batches; i++) {
65f13b50 2878 packet_batch_execute(&batches[i], pmd);
84d6d5eb 2879 }
4f150744 2880
9bbf1c3d
DDP
2881 return notfound_cnt;
2882}
2883
2884static inline void
65f13b50 2885fast_path_processing(struct dp_netdev_pmd_thread *pmd,
e14deea0 2886 struct dp_packet **packets, size_t cnt,
41ccaa24 2887 struct netdev_flow_key *keys)
9bbf1c3d 2888{
1a0d5831 2889#if !defined(__CHECKER__) && !defined(_WIN32)
9bbf1c3d
DDP
2890 const size_t PKT_ARRAY_SIZE = cnt;
2891#else
1a0d5831 2892 /* Sparse or MSVC doesn't like variable length array. */
9bbf1c3d
DDP
2893 enum { PKT_ARRAY_SIZE = NETDEV_MAX_RX_BATCH };
2894#endif
2895 struct packet_batch batches[PKT_ARRAY_SIZE];
0de8783a 2896 struct dpcls_rule *rules[PKT_ARRAY_SIZE];
65f13b50
AW
2897 struct dp_netdev *dp = pmd->dp;
2898 struct emc_cache *flow_cache = &pmd->flow_cache;
9bbf1c3d
DDP
2899 size_t n_batches, i;
2900 bool any_miss;
2901
2902 for (i = 0; i < cnt; i++) {
0de8783a
JR
2903 /* Key length is needed in all the cases, hash computed on demand. */
2904 keys[i].len = netdev_flow_key_size(count_1bits(keys[i].mf.map));
9bbf1c3d 2905 }
1c1e46ed 2906 any_miss = !dpcls_lookup(&pmd->cls, keys, rules, cnt);
623540e4
EJ
2907 if (OVS_UNLIKELY(any_miss) && !fat_rwlock_tryrdlock(&dp->upcall_rwlock)) {
2908 uint64_t actions_stub[512 / 8], slow_stub[512 / 8];
2909 struct ofpbuf actions, put_actions;
7af12bd7 2910 ovs_u128 ufid;
623540e4
EJ
2911
2912 ofpbuf_use_stub(&actions, actions_stub, sizeof actions_stub);
2913 ofpbuf_use_stub(&put_actions, slow_stub, sizeof slow_stub);
2914
2915 for (i = 0; i < cnt; i++) {
0de8783a 2916 struct dp_netdev_flow *netdev_flow;
623540e4 2917 struct ofpbuf *add_actions;
0de8783a 2918 struct match match;
623540e4
EJ
2919 int error;
2920
0de8783a 2921 if (OVS_LIKELY(rules[i])) {
623540e4
EJ
2922 continue;
2923 }
2924
2925 /* It's possible that an earlier slow path execution installed
0de8783a 2926 * a rule covering this flow. In this case, it's a lot cheaper
623540e4 2927 * to catch it here than execute a miss. */
1c1e46ed 2928 netdev_flow = dp_netdev_pmd_lookup_flow(pmd, &keys[i]);
623540e4 2929 if (netdev_flow) {
0de8783a 2930 rules[i] = &netdev_flow->cr;
623540e4
EJ
2931 continue;
2932 }
2933
0de8783a 2934 miniflow_expand(&keys[i].mf, &match.flow);
623540e4
EJ
2935
2936 ofpbuf_clear(&actions);
2937 ofpbuf_clear(&put_actions);
2938
7af12bd7 2939 dpif_flow_hash(dp->dpif, &match.flow, sizeof match.flow, &ufid);
1c1e46ed 2940 error = dp_netdev_upcall(pmd, packets[i], &match.flow, &match.wc,
7af12bd7 2941 &ufid, DPIF_UC_MISS, NULL, &actions,
0de8783a 2942 &put_actions);
623540e4 2943 if (OVS_UNLIKELY(error && error != ENOSPC)) {
7ad20cbd
DDP
2944 dp_packet_delete(packets[i]);
2945 dp_netdev_count_packet(pmd, DP_STAT_LOST, 1);
623540e4
EJ
2946 continue;
2947 }
2948
2949 /* We can't allow the packet batching in the next loop to execute
2950 * the actions. Otherwise, if there are any slow path actions,
2951 * we'll send the packet up twice. */
41ccaa24 2952 dp_netdev_execute_actions(pmd, &packets[i], 1, true,
6fd6ed71 2953 actions.data, actions.size);
623540e4 2954
6fd6ed71 2955 add_actions = put_actions.size ? &put_actions : &actions;
0de8783a
JR
2956 if (OVS_LIKELY(error != ENOSPC)) {
2957 /* XXX: There's a race window where a flow covering this packet
2958 * could have already been installed since we last did the flow
2959 * lookup before upcall. This could be solved by moving the
2960 * mutex lock outside the loop, but that's an awful long time
2961 * to be locking everyone out of making flow installs. If we
2962 * move to a per-core classifier, it would be reasonable. */
1c1e46ed
AW
2963 ovs_mutex_lock(&pmd->flow_mutex);
2964 netdev_flow = dp_netdev_pmd_lookup_flow(pmd, &keys[i]);
0de8783a 2965 if (OVS_LIKELY(!netdev_flow)) {
1c1e46ed 2966 netdev_flow = dp_netdev_flow_add(pmd, &match, &ufid,
6fd6ed71
PS
2967 add_actions->data,
2968 add_actions->size);
0de8783a 2969 }
1c1e46ed 2970 ovs_mutex_unlock(&pmd->flow_mutex);
0de8783a 2971
0de8783a 2972 emc_insert(flow_cache, &keys[i], netdev_flow);
623540e4 2973 }
623540e4
EJ
2974 }
2975
2976 ofpbuf_uninit(&actions);
2977 ofpbuf_uninit(&put_actions);
2978 fat_rwlock_unlock(&dp->upcall_rwlock);
ac8c2081
DDP
2979 } else if (OVS_UNLIKELY(any_miss)) {
2980 int dropped_cnt = 0;
2981
2982 for (i = 0; i < cnt; i++) {
0de8783a 2983 if (OVS_UNLIKELY(!rules[i])) {
e14deea0 2984 dp_packet_delete(packets[i]);
ac8c2081
DDP
2985 dropped_cnt++;
2986 }
2987 }
2988
7ad20cbd 2989 dp_netdev_count_packet(pmd, DP_STAT_MISS, dropped_cnt);
1c1e46ed 2990 dp_netdev_count_packet(pmd, DP_STAT_LOST, dropped_cnt);
623540e4 2991 }
84d6d5eb
EJ
2992
2993 n_batches = 0;
8cbf4f47 2994 for (i = 0; i < cnt; i++) {
e14deea0 2995 struct dp_packet *packet = packets[i];
84d6d5eb 2996 struct dp_netdev_flow *flow;
8cbf4f47 2997
0de8783a 2998 if (OVS_UNLIKELY(!rules[i])) {
84d6d5eb
EJ
2999 continue;
3000 }
3001
84d6d5eb 3002 flow = dp_netdev_flow_cast(rules[i]);
0de8783a 3003
0de8783a
JR
3004 emc_insert(flow_cache, &keys[i], flow);
3005 dp_netdev_queue_batches(packet, flow, &keys[i].mf, batches,
3006 &n_batches, ARRAY_SIZE(batches));
8cbf4f47
DDP
3007 }
3008
84d6d5eb 3009 for (i = 0; i < n_batches; i++) {
65f13b50 3010 packet_batch_execute(&batches[i], pmd);
72865317
BP
3011 }
3012}
3013
adcf00ba 3014static void
65f13b50 3015dp_netdev_input(struct dp_netdev_pmd_thread *pmd,
e14deea0 3016 struct dp_packet **packets, int cnt)
9bbf1c3d 3017{
1a0d5831 3018#if !defined(__CHECKER__) && !defined(_WIN32)
9bbf1c3d
DDP
3019 const size_t PKT_ARRAY_SIZE = cnt;
3020#else
1a0d5831 3021 /* Sparse or MSVC doesn't like variable length array. */
9bbf1c3d
DDP
3022 enum { PKT_ARRAY_SIZE = NETDEV_MAX_RX_BATCH };
3023#endif
3024 struct netdev_flow_key keys[PKT_ARRAY_SIZE];
3025 size_t newcnt;
3026
41ccaa24 3027 newcnt = emc_processing(pmd, packets, cnt, keys);
9bbf1c3d 3028 if (OVS_UNLIKELY(newcnt)) {
41ccaa24 3029 fast_path_processing(pmd, packets, newcnt, keys);
9bbf1c3d
DDP
3030 }
3031}
3032
9080a111 3033struct dp_netdev_execute_aux {
65f13b50 3034 struct dp_netdev_pmd_thread *pmd;
9080a111
JR
3035};
3036
6b31e073 3037static void
623540e4
EJ
3038dpif_netdev_register_upcall_cb(struct dpif *dpif, upcall_callback *cb,
3039 void *aux)
6b31e073
RW
3040{
3041 struct dp_netdev *dp = get_dp_netdev(dpif);
623540e4 3042 dp->upcall_aux = aux;
6b31e073
RW
3043 dp->upcall_cb = cb;
3044}
3045
ac8c2081 3046static void
e14deea0 3047dp_netdev_drop_packets(struct dp_packet ** packets, int cnt, bool may_steal)
ac8c2081 3048{
ac8c2081 3049 if (may_steal) {
a36de779
PS
3050 int i;
3051
ac8c2081 3052 for (i = 0; i < cnt; i++) {
e14deea0 3053 dp_packet_delete(packets[i]);
ac8c2081
DDP
3054 }
3055 }
3056}
3057
a36de779
PS
3058static int
3059push_tnl_action(const struct dp_netdev *dp,
3060 const struct nlattr *attr,
e14deea0 3061 struct dp_packet **packets, int cnt)
a36de779
PS
3062{
3063 struct dp_netdev_port *tun_port;
3064 const struct ovs_action_push_tnl *data;
3065
3066 data = nl_attr_get(attr);
3067
3068 tun_port = dp_netdev_lookup_port(dp, u32_to_odp(data->tnl_port));
3069 if (!tun_port) {
3070 return -EINVAL;
3071 }
3072 netdev_push_header(tun_port->netdev, packets, cnt, data);
3073
3074 return 0;
3075}
3076
3077static void
e14deea0
PS
3078dp_netdev_clone_pkt_batch(struct dp_packet **tnl_pkt,
3079 struct dp_packet **packets, int cnt)
a36de779
PS
3080{
3081 int i;
3082
3083 for (i = 0; i < cnt; i++) {
e14deea0 3084 tnl_pkt[i] = dp_packet_clone(packets[i]);
a36de779
PS
3085 }
3086}
3087
9080a111 3088static void
e14deea0 3089dp_execute_cb(void *aux_, struct dp_packet **packets, int cnt,
09f9da0b 3090 const struct nlattr *a, bool may_steal)
8a4e3a85 3091 OVS_NO_THREAD_SAFETY_ANALYSIS
9080a111
JR
3092{
3093 struct dp_netdev_execute_aux *aux = aux_;
623540e4 3094 uint32_t *depth = recirc_depth_get();
65f13b50
AW
3095 struct dp_netdev_pmd_thread *pmd= aux->pmd;
3096 struct dp_netdev *dp= pmd->dp;
09f9da0b 3097 int type = nl_attr_type(a);
8a4e3a85 3098 struct dp_netdev_port *p;
8cbf4f47 3099 int i;
9080a111 3100
09f9da0b
JR
3101 switch ((enum ovs_action_attr)type) {
3102 case OVS_ACTION_ATTR_OUTPUT:
623540e4 3103 p = dp_netdev_lookup_port(dp, u32_to_odp(nl_attr_get_u32(a)));
26a5075b 3104 if (OVS_LIKELY(p)) {
65f13b50 3105 netdev_send(p->netdev, pmd->core_id, packets, cnt, may_steal);
ac8c2081 3106 return;
8a4e3a85 3107 }
09f9da0b
JR
3108 break;
3109
a36de779
PS
3110 case OVS_ACTION_ATTR_TUNNEL_PUSH:
3111 if (*depth < MAX_RECIRC_DEPTH) {
e14deea0 3112 struct dp_packet *tnl_pkt[NETDEV_MAX_RX_BATCH];
a36de779
PS
3113 int err;
3114
3115 if (!may_steal) {
3116 dp_netdev_clone_pkt_batch(tnl_pkt, packets, cnt);
3117 packets = tnl_pkt;
3118 }
3119
3120 err = push_tnl_action(dp, a, packets, cnt);
3121 if (!err) {
3122 (*depth)++;
3123 dp_netdev_input(pmd, packets, cnt);
3124 (*depth)--;
3125 } else {
3126 dp_netdev_drop_packets(tnl_pkt, cnt, !may_steal);
3127 }
3128 return;
3129 }
3130 break;
3131
3132 case OVS_ACTION_ATTR_TUNNEL_POP:
3133 if (*depth < MAX_RECIRC_DEPTH) {
3134 odp_port_t portno = u32_to_odp(nl_attr_get_u32(a));
3135
3136 p = dp_netdev_lookup_port(dp, portno);
3137 if (p) {
e14deea0 3138 struct dp_packet *tnl_pkt[NETDEV_MAX_RX_BATCH];
a36de779
PS
3139 int err;
3140
3141 if (!may_steal) {
3142 dp_netdev_clone_pkt_batch(tnl_pkt, packets, cnt);
3143 packets = tnl_pkt;
3144 }
3145
3146 err = netdev_pop_header(p->netdev, packets, cnt);
3147 if (!err) {
3148
3149 for (i = 0; i < cnt; i++) {
3150 packets[i]->md.in_port.odp_port = portno;
3151 }
3152
3153 (*depth)++;
3154 dp_netdev_input(pmd, packets, cnt);
3155 (*depth)--;
3156 } else {
3157 dp_netdev_drop_packets(tnl_pkt, cnt, !may_steal);
3158 }
3159 return;
3160 }
3161 }
3162 break;
3163
623540e4
EJ
3164 case OVS_ACTION_ATTR_USERSPACE:
3165 if (!fat_rwlock_tryrdlock(&dp->upcall_rwlock)) {
3166 const struct nlattr *userdata;
3167 struct ofpbuf actions;
3168 struct flow flow;
7af12bd7 3169 ovs_u128 ufid;
4fc65926 3170
623540e4
EJ
3171 userdata = nl_attr_find_nested(a, OVS_USERSPACE_ATTR_USERDATA);
3172 ofpbuf_init(&actions, 0);
8cbf4f47 3173
623540e4
EJ
3174 for (i = 0; i < cnt; i++) {
3175 int error;
3176
3177 ofpbuf_clear(&actions);
3178
cf62fa4c 3179 flow_extract(packets[i], &flow);
7af12bd7 3180 dpif_flow_hash(dp->dpif, &flow, sizeof flow, &ufid);
1c1e46ed 3181 error = dp_netdev_upcall(pmd, packets[i], &flow, NULL, &ufid,
7af12bd7 3182 DPIF_UC_ACTION, userdata,&actions,
623540e4
EJ
3183 NULL);
3184 if (!error || error == ENOSPC) {
ac8c2081 3185 dp_netdev_execute_actions(pmd, &packets[i], 1, may_steal,
6fd6ed71 3186 actions.data, actions.size);
ac8c2081 3187 } else if (may_steal) {
e14deea0 3188 dp_packet_delete(packets[i]);
623540e4 3189 }
db73f716 3190 }
623540e4
EJ
3191 ofpbuf_uninit(&actions);
3192 fat_rwlock_unlock(&dp->upcall_rwlock);
6b31e073 3193
ac8c2081
DDP
3194 return;
3195 }
09f9da0b 3196 break;
572f732a 3197
adcf00ba
AZ
3198 case OVS_ACTION_ATTR_RECIRC:
3199 if (*depth < MAX_RECIRC_DEPTH) {
572f732a 3200
adcf00ba 3201 (*depth)++;
8cbf4f47 3202 for (i = 0; i < cnt; i++) {
e14deea0 3203 struct dp_packet *recirc_pkt;
8cbf4f47
DDP
3204
3205 recirc_pkt = (may_steal) ? packets[i]
e14deea0 3206 : dp_packet_clone(packets[i]);
8cbf4f47 3207
41ccaa24 3208 recirc_pkt->md.recirc_id = nl_attr_get_u32(a);
8cbf4f47
DDP
3209
3210 /* Hash is private to each packet */
e14deea0 3211 recirc_pkt->md.dp_hash = dp_packet_get_dp_hash(packets[i]);
8cbf4f47 3212
41ccaa24 3213 dp_netdev_input(pmd, &recirc_pkt, 1);
8cbf4f47 3214 }
adcf00ba
AZ
3215 (*depth)--;
3216
ac8c2081 3217 return;
adcf00ba 3218 }
ac8c2081
DDP
3219
3220 VLOG_WARN("Packet dropped. Max recirculation depth exceeded.");
572f732a 3221 break;
572f732a 3222
09f9da0b
JR
3223 case OVS_ACTION_ATTR_PUSH_VLAN:
3224 case OVS_ACTION_ATTR_POP_VLAN:
3225 case OVS_ACTION_ATTR_PUSH_MPLS:
3226 case OVS_ACTION_ATTR_POP_MPLS:
3227 case OVS_ACTION_ATTR_SET:
6d670e7f 3228 case OVS_ACTION_ATTR_SET_MASKED:
09f9da0b 3229 case OVS_ACTION_ATTR_SAMPLE:
53e1d6f1 3230 case OVS_ACTION_ATTR_HASH:
09f9da0b
JR
3231 case OVS_ACTION_ATTR_UNSPEC:
3232 case __OVS_ACTION_ATTR_MAX:
3233 OVS_NOT_REACHED();
da546e07 3234 }
ac8c2081
DDP
3235
3236 dp_netdev_drop_packets(packets, cnt, may_steal);
98403001
BP
3237}
3238
4edb9ae9 3239static void
65f13b50 3240dp_netdev_execute_actions(struct dp_netdev_pmd_thread *pmd,
e14deea0 3241 struct dp_packet **packets, int cnt,
41ccaa24 3242 bool may_steal,
9080a111 3243 const struct nlattr *actions, size_t actions_len)
72865317 3244{
41ccaa24 3245 struct dp_netdev_execute_aux aux = { pmd };
9080a111 3246
41ccaa24 3247 odp_execute_actions(&aux, packets, cnt, may_steal, actions,
8cbf4f47 3248 actions_len, dp_execute_cb);
72865317
BP
3249}
3250
3251const struct dpif_class dpif_netdev_class = {
72865317 3252 "netdev",
2197d7ab 3253 dpif_netdev_enumerate,
0aeaabc8 3254 dpif_netdev_port_open_type,
72865317
BP
3255 dpif_netdev_open,
3256 dpif_netdev_close,
7dab847a 3257 dpif_netdev_destroy,
e4cfed38
PS
3258 dpif_netdev_run,
3259 dpif_netdev_wait,
72865317 3260 dpif_netdev_get_stats,
72865317
BP
3261 dpif_netdev_port_add,
3262 dpif_netdev_port_del,
3263 dpif_netdev_port_query_by_number,
3264 dpif_netdev_port_query_by_name,
98403001 3265 NULL, /* port_get_pid */
b0ec0f27
BP
3266 dpif_netdev_port_dump_start,
3267 dpif_netdev_port_dump_next,
3268 dpif_netdev_port_dump_done,
72865317
BP
3269 dpif_netdev_port_poll,
3270 dpif_netdev_port_poll_wait,
72865317 3271 dpif_netdev_flow_flush,
ac64794a
BP
3272 dpif_netdev_flow_dump_create,
3273 dpif_netdev_flow_dump_destroy,
3274 dpif_netdev_flow_dump_thread_create,
3275 dpif_netdev_flow_dump_thread_destroy,
704a1e09 3276 dpif_netdev_flow_dump_next,
1a0c894a 3277 dpif_netdev_operate,
6b31e073
RW
3278 NULL, /* recv_set */
3279 NULL, /* handlers_set */
f2eee189 3280 dpif_netdev_pmd_set,
5bf93d67 3281 dpif_netdev_queue_to_priority,
6b31e073
RW
3282 NULL, /* recv */
3283 NULL, /* recv_wait */
3284 NULL, /* recv_purge */
3285 dpif_netdev_register_upcall_cb,
3286 dpif_netdev_enable_upcall,
3287 dpif_netdev_disable_upcall,
b5cbbcf6 3288 dpif_netdev_get_datapath_version,
72865317 3289};
614c4892 3290
74cc3969
BP
3291static void
3292dpif_dummy_change_port_number(struct unixctl_conn *conn, int argc OVS_UNUSED,
3293 const char *argv[], void *aux OVS_UNUSED)
3294{
59e6d833
BP
3295 struct dp_netdev_port *old_port;
3296 struct dp_netdev_port *new_port;
74cc3969 3297 struct dp_netdev *dp;
ff073a71 3298 odp_port_t port_no;
74cc3969 3299
8a4e3a85 3300 ovs_mutex_lock(&dp_netdev_mutex);
74cc3969
BP
3301 dp = shash_find_data(&dp_netdevs, argv[1]);
3302 if (!dp || !dpif_netdev_class_is_dummy(dp->class)) {
8a4e3a85 3303 ovs_mutex_unlock(&dp_netdev_mutex);
74cc3969
BP
3304 unixctl_command_reply_error(conn, "unknown datapath or not a dummy");
3305 return;
3306 }
8a4e3a85
BP
3307 ovs_refcount_ref(&dp->ref_cnt);
3308 ovs_mutex_unlock(&dp_netdev_mutex);
74cc3969 3309
59e6d833
BP
3310 ovs_mutex_lock(&dp->port_mutex);
3311 if (get_port_by_name(dp, argv[2], &old_port)) {
74cc3969 3312 unixctl_command_reply_error(conn, "unknown port");
8a4e3a85 3313 goto exit;
74cc3969
BP
3314 }
3315
ff073a71
BP
3316 port_no = u32_to_odp(atoi(argv[3]));
3317 if (!port_no || port_no == ODPP_NONE) {
74cc3969 3318 unixctl_command_reply_error(conn, "bad port number");
8a4e3a85 3319 goto exit;
74cc3969 3320 }
ff073a71 3321 if (dp_netdev_lookup_port(dp, port_no)) {
74cc3969 3322 unixctl_command_reply_error(conn, "port number already in use");
8a4e3a85 3323 goto exit;
74cc3969 3324 }
59e6d833
BP
3325
3326 /* Remove old port. */
3327 cmap_remove(&dp->ports, &old_port->node, hash_port_no(old_port->port_no));
3328 ovsrcu_postpone(free, old_port);
3329
3330 /* Insert new port (cmap semantics mean we cannot re-insert 'old_port'). */
3331 new_port = xmemdup(old_port, sizeof *old_port);
3332 new_port->port_no = port_no;
3333 cmap_insert(&dp->ports, &new_port->node, hash_port_no(port_no));
3334
d33ed218 3335 seq_change(dp->port_seq);
74cc3969 3336 unixctl_command_reply(conn, NULL);
8a4e3a85
BP
3337
3338exit:
59e6d833 3339 ovs_mutex_unlock(&dp->port_mutex);
8a4e3a85 3340 dp_netdev_unref(dp);
74cc3969
BP
3341}
3342
c40b890f
BP
3343static void
3344dpif_dummy_delete_port(struct unixctl_conn *conn, int argc OVS_UNUSED,
3345 const char *argv[], void *aux OVS_UNUSED)
3346{
3347 struct dp_netdev_port *port;
3348 struct dp_netdev *dp;
3349
3350 ovs_mutex_lock(&dp_netdev_mutex);
3351 dp = shash_find_data(&dp_netdevs, argv[1]);
3352 if (!dp || !dpif_netdev_class_is_dummy(dp->class)) {
3353 ovs_mutex_unlock(&dp_netdev_mutex);
3354 unixctl_command_reply_error(conn, "unknown datapath or not a dummy");
3355 return;
3356 }
3357 ovs_refcount_ref(&dp->ref_cnt);
3358 ovs_mutex_unlock(&dp_netdev_mutex);
3359
3360 ovs_mutex_lock(&dp->port_mutex);
3361 if (get_port_by_name(dp, argv[2], &port)) {
3362 unixctl_command_reply_error(conn, "unknown port");
3363 } else if (port->port_no == ODPP_LOCAL) {
3364 unixctl_command_reply_error(conn, "can't delete local port");
3365 } else {
3366 do_del_port(dp, port);
3367 unixctl_command_reply(conn, NULL);
3368 }
3369 ovs_mutex_unlock(&dp->port_mutex);
3370
3371 dp_netdev_unref(dp);
3372}
3373
0cbfe35d
BP
3374static void
3375dpif_dummy_register__(const char *type)
3376{
3377 struct dpif_class *class;
3378
3379 class = xmalloc(sizeof *class);
3380 *class = dpif_netdev_class;
3381 class->type = xstrdup(type);
3382 dp_register_provider(class);
3383}
3384
614c4892 3385void
0cbfe35d 3386dpif_dummy_register(bool override)
614c4892 3387{
0cbfe35d
BP
3388 if (override) {
3389 struct sset types;
3390 const char *type;
3391
3392 sset_init(&types);
3393 dp_enumerate_types(&types);
3394 SSET_FOR_EACH (type, &types) {
3395 if (!dp_unregister_provider(type)) {
3396 dpif_dummy_register__(type);
3397 }
3398 }
3399 sset_destroy(&types);
614c4892 3400 }
0cbfe35d
BP
3401
3402 dpif_dummy_register__("dummy");
74cc3969
BP
3403
3404 unixctl_command_register("dpif-dummy/change-port-number",
74467d5c 3405 "dp port new-number",
74cc3969 3406 3, 3, dpif_dummy_change_port_number, NULL);
74467d5c 3407 unixctl_command_register("dpif-dummy/delete-port", "dp port",
c40b890f 3408 2, 2, dpif_dummy_delete_port, NULL);
614c4892 3409}
0de8783a
JR
3410\f
3411/* Datapath Classifier. */
3412
3413/* A set of rules that all have the same fields wildcarded. */
3414struct dpcls_subtable {
3415 /* The fields are only used by writers. */
3416 struct cmap_node cmap_node OVS_GUARDED; /* Within dpcls 'subtables_map'. */
3417
3418 /* These fields are accessed by readers. */
3419 struct cmap rules; /* Contains "struct dpcls_rule"s. */
3420 struct netdev_flow_key mask; /* Wildcards for fields (const). */
3421 /* 'mask' must be the last field, additional space is allocated here. */
3422};
3423
3424/* Initializes 'cls' as a classifier that initially contains no classification
3425 * rules. */
3426static void
3427dpcls_init(struct dpcls *cls)
3428{
3429 cmap_init(&cls->subtables_map);
3430 pvector_init(&cls->subtables);
3431}
3432
3433static void
3434dpcls_destroy_subtable(struct dpcls *cls, struct dpcls_subtable *subtable)
3435{
3436 pvector_remove(&cls->subtables, subtable);
3437 cmap_remove(&cls->subtables_map, &subtable->cmap_node,
3438 subtable->mask.hash);
3439 cmap_destroy(&subtable->rules);
3440 ovsrcu_postpone(free, subtable);
3441}
3442
3443/* Destroys 'cls'. Rules within 'cls', if any, are not freed; this is the
3444 * caller's responsibility.
3445 * May only be called after all the readers have been terminated. */
3446static void
3447dpcls_destroy(struct dpcls *cls)
3448{
3449 if (cls) {
3450 struct dpcls_subtable *subtable;
3451
3452 CMAP_FOR_EACH (subtable, cmap_node, &cls->subtables_map) {
3453 dpcls_destroy_subtable(cls, subtable);
3454 }
3455 cmap_destroy(&cls->subtables_map);
3456 pvector_destroy(&cls->subtables);
3457 }
3458}
3459
3460static struct dpcls_subtable *
3461dpcls_create_subtable(struct dpcls *cls, const struct netdev_flow_key *mask)
3462{
3463 struct dpcls_subtable *subtable;
3464
3465 /* Need to add one. */
caeb4906
JR
3466 subtable = xmalloc(sizeof *subtable
3467 - sizeof subtable->mask.mf + mask->len);
0de8783a
JR
3468 cmap_init(&subtable->rules);
3469 netdev_flow_key_clone(&subtable->mask, mask);
3470 cmap_insert(&cls->subtables_map, &subtable->cmap_node, mask->hash);
3471 pvector_insert(&cls->subtables, subtable, 0);
802f84ff 3472 pvector_publish(&cls->subtables);
0de8783a
JR
3473
3474 return subtable;
3475}
3476
3477static inline struct dpcls_subtable *
3478dpcls_find_subtable(struct dpcls *cls, const struct netdev_flow_key *mask)
3479{
3480 struct dpcls_subtable *subtable;
3481
3482 CMAP_FOR_EACH_WITH_HASH (subtable, cmap_node, mask->hash,
3483 &cls->subtables_map) {
3484 if (netdev_flow_key_equal(&subtable->mask, mask)) {
3485 return subtable;
3486 }
3487 }
3488 return dpcls_create_subtable(cls, mask);
3489}
3490
3491/* Insert 'rule' into 'cls'. */
3492static void
3493dpcls_insert(struct dpcls *cls, struct dpcls_rule *rule,
3494 const struct netdev_flow_key *mask)
3495{
3496 struct dpcls_subtable *subtable = dpcls_find_subtable(cls, mask);
3497
3498 rule->mask = &subtable->mask;
3499 cmap_insert(&subtable->rules, &rule->cmap_node, rule->flow.hash);
3500}
3501
3502/* Removes 'rule' from 'cls', also destructing the 'rule'. */
3503static void
3504dpcls_remove(struct dpcls *cls, struct dpcls_rule *rule)
3505{
3506 struct dpcls_subtable *subtable;
3507
3508 ovs_assert(rule->mask);
3509
3510 INIT_CONTAINER(subtable, rule->mask, mask);
3511
3512 if (cmap_remove(&subtable->rules, &rule->cmap_node, rule->flow.hash)
3513 == 0) {
3514 dpcls_destroy_subtable(cls, subtable);
802f84ff 3515 pvector_publish(&cls->subtables);
0de8783a
JR
3516 }
3517}
3518
3519/* Returns true if 'target' satisifies 'key' in 'mask', that is, if each 1-bit
3520 * in 'mask' the values in 'key' and 'target' are the same.
3521 *
3522 * Note: 'key' and 'mask' have the same mask, and 'key' is already masked. */
3523static inline bool
3524dpcls_rule_matches_key(const struct dpcls_rule *rule,
3525 const struct netdev_flow_key *target)
3526{
d70e8c28
JR
3527 const uint64_t *keyp = rule->flow.mf.inline_values;
3528 const uint64_t *maskp = rule->mask->mf.inline_values;
3529 uint64_t target_u64;
0de8783a 3530
d70e8c28
JR
3531 NETDEV_FLOW_KEY_FOR_EACH_IN_MAP(target_u64, target, rule->flow.mf.map) {
3532 if (OVS_UNLIKELY((target_u64 & *maskp++) != *keyp++)) {
0de8783a
JR
3533 return false;
3534 }
3535 }
3536 return true;
3537}
3538
3539/* For each miniflow in 'flows' performs a classifier lookup writing the result
3540 * into the corresponding slot in 'rules'. If a particular entry in 'flows' is
3541 * NULL it is skipped.
3542 *
3543 * This function is optimized for use in the userspace datapath and therefore
3544 * does not implement a lot of features available in the standard
3545 * classifier_lookup() function. Specifically, it does not implement
3546 * priorities, instead returning any rule which matches the flow.
3547 *
3548 * Returns true if all flows found a corresponding rule. */
3549static bool
3550dpcls_lookup(const struct dpcls *cls, const struct netdev_flow_key keys[],
3551 struct dpcls_rule **rules, const size_t cnt)
3552{
3553 /* The batch size 16 was experimentally found faster than 8 or 32. */
3554 typedef uint16_t map_type;
3555#define MAP_BITS (sizeof(map_type) * CHAR_BIT)
3556
3557#if !defined(__CHECKER__) && !defined(_WIN32)
3558 const int N_MAPS = DIV_ROUND_UP(cnt, MAP_BITS);
3559#else
3560 enum { N_MAPS = DIV_ROUND_UP(NETDEV_MAX_RX_BATCH, MAP_BITS) };
3561#endif
3562 map_type maps[N_MAPS];
3563 struct dpcls_subtable *subtable;
3564
3565 memset(maps, 0xff, sizeof maps);
3566 if (cnt % MAP_BITS) {
3567 maps[N_MAPS - 1] >>= MAP_BITS - cnt % MAP_BITS; /* Clear extra bits. */
3568 }
3569 memset(rules, 0, cnt * sizeof *rules);
3570
3571 PVECTOR_FOR_EACH (subtable, &cls->subtables) {
3572 const struct netdev_flow_key *mkeys = keys;
3573 struct dpcls_rule **mrules = rules;
3574 map_type remains = 0;
3575 int m;
3576
3577 BUILD_ASSERT_DECL(sizeof remains == sizeof *maps);
3578
3579 for (m = 0; m < N_MAPS; m++, mkeys += MAP_BITS, mrules += MAP_BITS) {
3580 uint32_t hashes[MAP_BITS];
3581 const struct cmap_node *nodes[MAP_BITS];
3582 unsigned long map = maps[m];
3583 int i;
3584
3585 if (!map) {
3586 continue; /* Skip empty maps. */
3587 }
3588
3589 /* Compute hashes for the remaining keys. */
3590 ULONG_FOR_EACH_1(i, map) {
3591 hashes[i] = netdev_flow_key_hash_in_mask(&mkeys[i],
3592 &subtable->mask);
3593 }
3594 /* Lookup. */
3595 map = cmap_find_batch(&subtable->rules, map, hashes, nodes);
3596 /* Check results. */
3597 ULONG_FOR_EACH_1(i, map) {
3598 struct dpcls_rule *rule;
3599
3600 CMAP_NODE_FOR_EACH (rule, cmap_node, nodes[i]) {
3601 if (OVS_LIKELY(dpcls_rule_matches_key(rule, &mkeys[i]))) {
3602 mrules[i] = rule;
3603 goto next;
3604 }
3605 }
3606 ULONG_SET0(map, i); /* Did not match. */
3607 next:
3608 ; /* Keep Sparse happy. */
3609 }
3610 maps[m] &= ~map; /* Clear the found rules. */
3611 remains |= maps[m];
3612 }
3613 if (!remains) {
3614 return true; /* All found. */
3615 }
3616 }
3617 return false; /* Some misses. */
3618}