lib/odp: Masked set action execution and printing.
[cascardo/ovs.git] / lib / dpif-netdev.c
1 /*
2  * Copyright (c) 2009, 2010, 2011, 2012, 2013, 2014 Nicira, Inc.
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>
18 #include "dpif-netdev.h"
19
20 #include <ctype.h>
21 #include <errno.h>
22 #include <fcntl.h>
23 #include <inttypes.h>
24 #include <netinet/in.h>
25 #include <sys/socket.h>
26 #include <net/if.h>
27 #include <stdint.h>
28 #include <stdlib.h>
29 #include <string.h>
30 #include <sys/ioctl.h>
31 #include <sys/stat.h>
32 #include <unistd.h>
33
34 #include "classifier.h"
35 #include "cmap.h"
36 #include "csum.h"
37 #include "dpif.h"
38 #include "dpif-provider.h"
39 #include "dummy.h"
40 #include "dynamic-string.h"
41 #include "fat-rwlock.h"
42 #include "flow.h"
43 #include "cmap.h"
44 #include "latch.h"
45 #include "list.h"
46 #include "meta-flow.h"
47 #include "netdev.h"
48 #include "netdev-dpdk.h"
49 #include "netdev-vport.h"
50 #include "netlink.h"
51 #include "odp-execute.h"
52 #include "odp-util.h"
53 #include "ofp-print.h"
54 #include "ofpbuf.h"
55 #include "ovs-rcu.h"
56 #include "packet-dpif.h"
57 #include "packets.h"
58 #include "poll-loop.h"
59 #include "random.h"
60 #include "seq.h"
61 #include "shash.h"
62 #include "sset.h"
63 #include "timeval.h"
64 #include "unixctl.h"
65 #include "util.h"
66 #include "vlog.h"
67
68 VLOG_DEFINE_THIS_MODULE(dpif_netdev);
69
70 /* By default, choose a priority in the middle. */
71 #define NETDEV_RULE_PRIORITY 0x8000
72
73 #define FLOW_DUMP_MAX_BATCH 50
74 /* Use per thread recirc_depth to prevent recirculation loop. */
75 #define MAX_RECIRC_DEPTH 5
76 DEFINE_STATIC_PER_THREAD_DATA(uint32_t, recirc_depth, 0)
77
78 /* Configuration parameters. */
79 enum { MAX_FLOWS = 65536 };     /* Maximum number of flows in flow table. */
80
81 /* Protects against changes to 'dp_netdevs'. */
82 static struct ovs_mutex dp_netdev_mutex = OVS_MUTEX_INITIALIZER;
83
84 /* Contains all 'struct dp_netdev's. */
85 static struct shash dp_netdevs OVS_GUARDED_BY(dp_netdev_mutex)
86     = SHASH_INITIALIZER(&dp_netdevs);
87
88 static struct vlog_rate_limit upcall_rl = VLOG_RATE_LIMIT_INIT(600, 600);
89
90 /* Stores a miniflow */
91
92 /* There are fields in the flow structure that we never use. Therefore we can
93  * save a few words of memory */
94 #define NETDEV_KEY_BUF_SIZE_U32 (FLOW_U32S                 \
95                                  - MINI_N_INLINE           \
96                                  - FLOW_U32_SIZE(regs)     \
97                                  - FLOW_U32_SIZE(metadata) \
98                                 )
99 struct netdev_flow_key {
100     struct miniflow flow;
101     uint32_t buf[NETDEV_KEY_BUF_SIZE_U32];
102 };
103
104 /* Exact match cache for frequently used flows
105  *
106  * The cache uses a 32-bit hash of the packet (which can be the RSS hash) to
107  * search its entries for a miniflow that matches exactly the miniflow of the
108  * packet. It stores the 'cls_rule'(rule) that matches the miniflow.
109  *
110  * A cache entry holds a reference to its 'dp_netdev_flow'.
111  *
112  * A miniflow with a given hash can be in one of EM_FLOW_HASH_SEGS different
113  * entries. The 32-bit hash is split into EM_FLOW_HASH_SEGS values (each of
114  * them is EM_FLOW_HASH_SHIFT bits wide and the remainder is thrown away). Each
115  * value is the index of a cache entry where the miniflow could be.
116  *
117  *
118  * Thread-safety
119  * =============
120  *
121  * Each pmd_thread has its own private exact match cache.
122  * If dp_netdev_input is not called from a pmd thread, a mutex is used.
123  */
124
125 #define EM_FLOW_HASH_SHIFT 10
126 #define EM_FLOW_HASH_ENTRIES (1u << EM_FLOW_HASH_SHIFT)
127 #define EM_FLOW_HASH_MASK (EM_FLOW_HASH_ENTRIES - 1)
128 #define EM_FLOW_HASH_SEGS 2
129
130 struct emc_entry {
131     uint32_t hash;
132     struct netdev_flow_key mf;
133     struct dp_netdev_flow *flow;
134 };
135
136 struct emc_cache {
137     struct emc_entry entries[EM_FLOW_HASH_ENTRIES];
138 };
139
140 /* Iterate in the exact match cache through every entry that might contain a
141  * miniflow with hash 'HASH'. */
142 #define EMC_FOR_EACH_POS_WITH_HASH(EMC, CURRENT_ENTRY, HASH)                 \
143     for (uint32_t i__ = 0, srch_hash__ = (HASH);                             \
144          (CURRENT_ENTRY) = &(EMC)->entries[srch_hash__ & EM_FLOW_HASH_MASK], \
145          i__ < EM_FLOW_HASH_SEGS;                                            \
146          i__++, srch_hash__ >>= EM_FLOW_HASH_SHIFT)
147
148 /* Datapath based on the network device interface from netdev.h.
149  *
150  *
151  * Thread-safety
152  * =============
153  *
154  * Some members, marked 'const', are immutable.  Accessing other members
155  * requires synchronization, as noted in more detail below.
156  *
157  * Acquisition order is, from outermost to innermost:
158  *
159  *    dp_netdev_mutex (global)
160  *    port_mutex
161  *    emc_mutex
162  *    flow_mutex
163  */
164 struct dp_netdev {
165     const struct dpif_class *const class;
166     const char *const name;
167     struct dpif *dpif;
168     struct ovs_refcount ref_cnt;
169     atomic_flag destroyed;
170
171     /* Flows.
172      *
173      * Writers of 'flow_table' must take the 'flow_mutex'.  Corresponding
174      * changes to 'cls' must be made while still holding the 'flow_mutex'.
175      */
176     struct ovs_mutex flow_mutex;
177     struct classifier cls;
178     struct cmap flow_table OVS_GUARDED; /* Flow table. */
179
180     /* Statistics.
181      *
182      * ovsthread_stats is internally synchronized. */
183     struct ovsthread_stats stats; /* Contains 'struct dp_netdev_stats *'. */
184
185     /* Ports.
186      *
187      * Protected by RCU.  Take the mutex to add or remove ports. */
188     struct ovs_mutex port_mutex;
189     struct cmap ports;
190     struct seq *port_seq;       /* Incremented whenever a port changes. */
191
192     /* Protects access to ofproto-dpif-upcall interface during revalidator
193      * thread synchronization. */
194     struct fat_rwlock upcall_rwlock;
195     upcall_callback *upcall_cb;  /* Callback function for executing upcalls. */
196     void *upcall_aux;
197
198     /* Forwarding threads. */
199     struct latch exit_latch;
200     struct pmd_thread *pmd_threads;
201     size_t n_pmd_threads;
202     int pmd_count;
203
204     /* Exact match cache for non-pmd devices.
205      * Pmd devices use instead each thread's flow_cache for this purpose.
206      * Protected by emc_mutex */
207     struct emc_cache flow_cache OVS_GUARDED;
208     struct ovs_mutex emc_mutex;
209 };
210
211 static struct dp_netdev_port *dp_netdev_lookup_port(const struct dp_netdev *dp,
212                                                     odp_port_t);
213
214 enum dp_stat_type {
215     DP_STAT_HIT,                /* Packets that matched in the flow table. */
216     DP_STAT_MISS,               /* Packets that did not match. */
217     DP_STAT_LOST,               /* Packets not passed up to the client. */
218     DP_N_STATS
219 };
220
221 /* Contained by struct dp_netdev's 'stats' member.  */
222 struct dp_netdev_stats {
223     struct ovs_mutex mutex;          /* Protects 'n'. */
224
225     /* Indexed by DP_STAT_*, protected by 'mutex'. */
226     unsigned long long int n[DP_N_STATS] OVS_GUARDED;
227 };
228
229
230 /* A port in a netdev-based datapath. */
231 struct dp_netdev_port {
232     struct cmap_node node;      /* Node in dp_netdev's 'ports'. */
233     odp_port_t port_no;
234     struct netdev *netdev;
235     struct netdev_saved_flags *sf;
236     struct netdev_rxq **rxq;
237     struct ovs_refcount ref_cnt;
238     char *type;                 /* Port type as requested by user. */
239 };
240
241 /* A flow in dp_netdev's 'flow_table'.
242  *
243  *
244  * Thread-safety
245  * =============
246  *
247  * Except near the beginning or ending of its lifespan, rule 'rule' belongs to
248  * its dp_netdev's classifier.  The text below calls this classifier 'cls'.
249  *
250  * Motivation
251  * ----------
252  *
253  * The thread safety rules described here for "struct dp_netdev_flow" are
254  * motivated by two goals:
255  *
256  *    - Prevent threads that read members of "struct dp_netdev_flow" from
257  *      reading bad data due to changes by some thread concurrently modifying
258  *      those members.
259  *
260  *    - Prevent two threads making changes to members of a given "struct
261  *      dp_netdev_flow" from interfering with each other.
262  *
263  *
264  * Rules
265  * -----
266  *
267  * A flow 'flow' may be accessed without a risk of being freed during an RCU
268  * grace period.  Code that needs to hold onto a flow for a while
269  * should try incrementing 'flow->ref_cnt' with dp_netdev_flow_ref().
270  *
271  * 'flow->ref_cnt' protects 'flow' from being freed.  It doesn't protect the
272  * flow from being deleted from 'cls' and it doesn't protect members of 'flow'
273  * from modification.
274  *
275  * Some members, marked 'const', are immutable.  Accessing other members
276  * requires synchronization, as noted in more detail below.
277  */
278 struct dp_netdev_flow {
279     bool dead;
280     /* Packet classification. */
281     const struct cls_rule cr;   /* In owning dp_netdev's 'cls'. */
282
283     /* Hash table index by unmasked flow. */
284     const struct cmap_node node; /* In owning dp_netdev's 'flow_table'. */
285     const struct flow flow;      /* The flow that created this entry. */
286
287     /* Number of references.
288      * The classifier owns one reference.
289      * Any thread trying to keep a rule from being freed should hold its own
290      * reference. */
291     struct ovs_refcount ref_cnt;
292
293     /* Statistics.
294      *
295      * Reading or writing these members requires 'mutex'. */
296     struct ovsthread_stats stats; /* Contains "struct dp_netdev_flow_stats". */
297
298     /* Actions. */
299     OVSRCU_TYPE(struct dp_netdev_actions *) actions;
300 };
301
302 static void dp_netdev_flow_unref(struct dp_netdev_flow *);
303 static bool dp_netdev_flow_ref(struct dp_netdev_flow *);
304
305 /* Contained by struct dp_netdev_flow's 'stats' member.  */
306 struct dp_netdev_flow_stats {
307     struct ovs_mutex mutex;         /* Guards all the other members. */
308
309     long long int used OVS_GUARDED; /* Last used time, in monotonic msecs. */
310     long long int packet_count OVS_GUARDED; /* Number of packets matched. */
311     long long int byte_count OVS_GUARDED;   /* Number of bytes matched. */
312     uint16_t tcp_flags OVS_GUARDED; /* Bitwise-OR of seen tcp_flags values. */
313 };
314
315 /* A set of datapath actions within a "struct dp_netdev_flow".
316  *
317  *
318  * Thread-safety
319  * =============
320  *
321  * A struct dp_netdev_actions 'actions' is protected with RCU. */
322 struct dp_netdev_actions {
323     /* These members are immutable: they do not change during the struct's
324      * lifetime.  */
325     struct nlattr *actions;     /* Sequence of OVS_ACTION_ATTR_* attributes. */
326     unsigned int size;          /* Size of 'actions', in bytes. */
327 };
328
329 struct dp_netdev_actions *dp_netdev_actions_create(const struct nlattr *,
330                                                    size_t);
331 struct dp_netdev_actions *dp_netdev_flow_get_actions(
332     const struct dp_netdev_flow *);
333 static void dp_netdev_actions_free(struct dp_netdev_actions *);
334
335 /* PMD: Poll modes drivers.  PMD accesses devices via polling to eliminate
336  * the performance overhead of interrupt processing.  Therefore netdev can
337  * not implement rx-wait for these devices.  dpif-netdev needs to poll
338  * these device to check for recv buffer.  pmd-thread does polling for
339  * devices assigned to itself thread.
340  *
341  * DPDK used PMD for accessing NIC.
342  *
343  * A thread that receives packets from PMD ports, looks them up in the flow
344  * table, and executes the actions it finds.
345  **/
346 struct pmd_thread {
347     struct dp_netdev *dp;
348     struct emc_cache flow_cache;
349     pthread_t thread;
350     int id;
351     atomic_uint change_seq;
352 };
353
354 #define PMD_INITIAL_SEQ 1
355
356 /* Interface to netdev-based datapath. */
357 struct dpif_netdev {
358     struct dpif dpif;
359     struct dp_netdev *dp;
360     uint64_t last_port_seq;
361 };
362
363 static int get_port_by_number(struct dp_netdev *dp, odp_port_t port_no,
364                               struct dp_netdev_port **portp);
365 static int get_port_by_name(struct dp_netdev *dp, const char *devname,
366                             struct dp_netdev_port **portp);
367 static void dp_netdev_free(struct dp_netdev *)
368     OVS_REQUIRES(dp_netdev_mutex);
369 static void dp_netdev_flow_flush(struct dp_netdev *);
370 static int do_add_port(struct dp_netdev *dp, const char *devname,
371                        const char *type, odp_port_t port_no)
372     OVS_REQUIRES(dp->port_mutex);
373 static void do_del_port(struct dp_netdev *dp, struct dp_netdev_port *)
374     OVS_REQUIRES(dp->port_mutex);
375 static int dpif_netdev_open(const struct dpif_class *, const char *name,
376                             bool create, struct dpif **);
377 static void dp_netdev_execute_actions(struct dp_netdev *dp,
378                                       struct dpif_packet **, int c,
379                                       bool may_steal, struct pkt_metadata *,
380                                       struct emc_cache *flow_cache,
381                                       const struct nlattr *actions,
382                                       size_t actions_len);
383 static void dp_netdev_port_input(struct dp_netdev *dp,
384                                  struct emc_cache *flow_cache,
385                                  struct dpif_packet **packets, int cnt,
386                                  odp_port_t port_no);
387
388 static void dp_netdev_set_pmd_threads(struct dp_netdev *, int n);
389 static void dp_netdev_disable_upcall(struct dp_netdev *);
390
391 static void emc_clear_entry(struct emc_entry *ce);
392
393 static void
394 emc_cache_init(struct emc_cache *flow_cache)
395 {
396     int i;
397
398     for (i = 0; i < ARRAY_SIZE(flow_cache->entries); i++) {
399         flow_cache->entries[i].flow = NULL;
400         flow_cache->entries[i].hash = 0;
401         miniflow_initialize(&flow_cache->entries[i].mf.flow,
402                             flow_cache->entries[i].mf.buf);
403     }
404 }
405
406 static void
407 emc_cache_uninit(struct emc_cache *flow_cache)
408 {
409     int i;
410
411     for (i = 0; i < ARRAY_SIZE(flow_cache->entries); i++) {
412         emc_clear_entry(&flow_cache->entries[i]);
413     }
414 }
415
416 static struct dpif_netdev *
417 dpif_netdev_cast(const struct dpif *dpif)
418 {
419     ovs_assert(dpif->dpif_class->open == dpif_netdev_open);
420     return CONTAINER_OF(dpif, struct dpif_netdev, dpif);
421 }
422
423 static struct dp_netdev *
424 get_dp_netdev(const struct dpif *dpif)
425 {
426     return dpif_netdev_cast(dpif)->dp;
427 }
428
429 static int
430 dpif_netdev_enumerate(struct sset *all_dps,
431                       const struct dpif_class *dpif_class)
432 {
433     struct shash_node *node;
434
435     ovs_mutex_lock(&dp_netdev_mutex);
436     SHASH_FOR_EACH(node, &dp_netdevs) {
437         struct dp_netdev *dp = node->data;
438         if (dpif_class != dp->class) {
439             /* 'dp_netdevs' contains both "netdev" and "dummy" dpifs.
440              * If the class doesn't match, skip this dpif. */
441              continue;
442         }
443         sset_add(all_dps, node->name);
444     }
445     ovs_mutex_unlock(&dp_netdev_mutex);
446
447     return 0;
448 }
449
450 static bool
451 dpif_netdev_class_is_dummy(const struct dpif_class *class)
452 {
453     return class != &dpif_netdev_class;
454 }
455
456 static const char *
457 dpif_netdev_port_open_type(const struct dpif_class *class, const char *type)
458 {
459     return strcmp(type, "internal") ? type
460                   : dpif_netdev_class_is_dummy(class) ? "dummy"
461                   : "tap";
462 }
463
464 static struct dpif *
465 create_dpif_netdev(struct dp_netdev *dp)
466 {
467     uint16_t netflow_id = hash_string(dp->name, 0);
468     struct dpif_netdev *dpif;
469
470     ovs_refcount_ref(&dp->ref_cnt);
471
472     dpif = xmalloc(sizeof *dpif);
473     dpif_init(&dpif->dpif, dp->class, dp->name, netflow_id >> 8, netflow_id);
474     dpif->dp = dp;
475     dpif->last_port_seq = seq_read(dp->port_seq);
476
477     return &dpif->dpif;
478 }
479
480 /* Choose an unused, non-zero port number and return it on success.
481  * Return ODPP_NONE on failure. */
482 static odp_port_t
483 choose_port(struct dp_netdev *dp, const char *name)
484     OVS_REQUIRES(dp->port_mutex)
485 {
486     uint32_t port_no;
487
488     if (dp->class != &dpif_netdev_class) {
489         const char *p;
490         int start_no = 0;
491
492         /* If the port name begins with "br", start the number search at
493          * 100 to make writing tests easier. */
494         if (!strncmp(name, "br", 2)) {
495             start_no = 100;
496         }
497
498         /* If the port name contains a number, try to assign that port number.
499          * This can make writing unit tests easier because port numbers are
500          * predictable. */
501         for (p = name; *p != '\0'; p++) {
502             if (isdigit((unsigned char) *p)) {
503                 port_no = start_no + strtol(p, NULL, 10);
504                 if (port_no > 0 && port_no != odp_to_u32(ODPP_NONE)
505                     && !dp_netdev_lookup_port(dp, u32_to_odp(port_no))) {
506                     return u32_to_odp(port_no);
507                 }
508                 break;
509             }
510         }
511     }
512
513     for (port_no = 1; port_no <= UINT16_MAX; port_no++) {
514         if (!dp_netdev_lookup_port(dp, u32_to_odp(port_no))) {
515             return u32_to_odp(port_no);
516         }
517     }
518
519     return ODPP_NONE;
520 }
521
522 static int
523 create_dp_netdev(const char *name, const struct dpif_class *class,
524                  struct dp_netdev **dpp)
525     OVS_REQUIRES(dp_netdev_mutex)
526 {
527     struct dp_netdev *dp;
528     int error;
529
530     dp = xzalloc(sizeof *dp);
531     shash_add(&dp_netdevs, name, dp);
532
533     *CONST_CAST(const struct dpif_class **, &dp->class) = class;
534     *CONST_CAST(const char **, &dp->name) = xstrdup(name);
535     ovs_refcount_init(&dp->ref_cnt);
536     atomic_flag_clear(&dp->destroyed);
537
538     ovs_mutex_init(&dp->flow_mutex);
539     classifier_init(&dp->cls, NULL);
540     cmap_init(&dp->flow_table);
541
542     ovsthread_stats_init(&dp->stats);
543
544     ovs_mutex_init(&dp->port_mutex);
545     cmap_init(&dp->ports);
546     dp->port_seq = seq_create();
547     latch_init(&dp->exit_latch);
548     fat_rwlock_init(&dp->upcall_rwlock);
549
550     /* Disable upcalls by default. */
551     dp_netdev_disable_upcall(dp);
552     dp->upcall_aux = NULL;
553     dp->upcall_cb = NULL;
554
555     ovs_mutex_lock(&dp->port_mutex);
556     error = do_add_port(dp, name, "internal", ODPP_LOCAL);
557     ovs_mutex_unlock(&dp->port_mutex);
558     if (error) {
559         dp_netdev_free(dp);
560         return error;
561     }
562
563     ovs_mutex_init(&dp->emc_mutex);
564     emc_cache_init(&dp->flow_cache);
565
566     *dpp = dp;
567     return 0;
568 }
569
570 static int
571 dpif_netdev_open(const struct dpif_class *class, const char *name,
572                  bool create, struct dpif **dpifp)
573 {
574     struct dp_netdev *dp;
575     int error;
576
577     ovs_mutex_lock(&dp_netdev_mutex);
578     dp = shash_find_data(&dp_netdevs, name);
579     if (!dp) {
580         error = create ? create_dp_netdev(name, class, &dp) : ENODEV;
581     } else {
582         error = (dp->class != class ? EINVAL
583                  : create ? EEXIST
584                  : 0);
585     }
586     if (!error) {
587         *dpifp = create_dpif_netdev(dp);
588         dp->dpif = *dpifp;
589     }
590     ovs_mutex_unlock(&dp_netdev_mutex);
591
592     return error;
593 }
594
595 /* Requires dp_netdev_mutex so that we can't get a new reference to 'dp'
596  * through the 'dp_netdevs' shash while freeing 'dp'. */
597 static void
598 dp_netdev_free(struct dp_netdev *dp)
599     OVS_REQUIRES(dp_netdev_mutex)
600 {
601     struct dp_netdev_port *port;
602     struct dp_netdev_stats *bucket;
603     int i;
604
605     shash_find_and_delete(&dp_netdevs, dp->name);
606
607     dp_netdev_set_pmd_threads(dp, 0);
608     free(dp->pmd_threads);
609
610     dp_netdev_flow_flush(dp);
611     ovs_mutex_lock(&dp->port_mutex);
612     CMAP_FOR_EACH (port, node, &dp->ports) {
613         do_del_port(dp, port);
614     }
615     ovs_mutex_unlock(&dp->port_mutex);
616
617     OVSTHREAD_STATS_FOR_EACH_BUCKET (bucket, i, &dp->stats) {
618         ovs_mutex_destroy(&bucket->mutex);
619         free_cacheline(bucket);
620     }
621     ovsthread_stats_destroy(&dp->stats);
622
623     classifier_destroy(&dp->cls);
624     cmap_destroy(&dp->flow_table);
625     ovs_mutex_destroy(&dp->flow_mutex);
626     seq_destroy(dp->port_seq);
627     cmap_destroy(&dp->ports);
628     fat_rwlock_destroy(&dp->upcall_rwlock);
629     latch_destroy(&dp->exit_latch);
630
631     emc_cache_uninit(&dp->flow_cache);
632     ovs_mutex_destroy(&dp->emc_mutex);
633
634     free(CONST_CAST(char *, dp->name));
635     free(dp);
636 }
637
638 static void
639 dp_netdev_unref(struct dp_netdev *dp)
640 {
641     if (dp) {
642         /* Take dp_netdev_mutex so that, if dp->ref_cnt falls to zero, we can't
643          * get a new reference to 'dp' through the 'dp_netdevs' shash. */
644         ovs_mutex_lock(&dp_netdev_mutex);
645         if (ovs_refcount_unref_relaxed(&dp->ref_cnt) == 1) {
646             dp_netdev_free(dp);
647         }
648         ovs_mutex_unlock(&dp_netdev_mutex);
649     }
650 }
651
652 static void
653 dpif_netdev_close(struct dpif *dpif)
654 {
655     struct dp_netdev *dp = get_dp_netdev(dpif);
656
657     dp_netdev_unref(dp);
658     free(dpif);
659 }
660
661 static int
662 dpif_netdev_destroy(struct dpif *dpif)
663 {
664     struct dp_netdev *dp = get_dp_netdev(dpif);
665
666     if (!atomic_flag_test_and_set(&dp->destroyed)) {
667         if (ovs_refcount_unref_relaxed(&dp->ref_cnt) == 1) {
668             /* Can't happen: 'dpif' still owns a reference to 'dp'. */
669             OVS_NOT_REACHED();
670         }
671     }
672
673     return 0;
674 }
675
676 static int
677 dpif_netdev_get_stats(const struct dpif *dpif, struct dpif_dp_stats *stats)
678 {
679     struct dp_netdev *dp = get_dp_netdev(dpif);
680     struct dp_netdev_stats *bucket;
681     size_t i;
682
683     stats->n_flows = cmap_count(&dp->flow_table);
684
685     stats->n_hit = stats->n_missed = stats->n_lost = 0;
686     OVSTHREAD_STATS_FOR_EACH_BUCKET (bucket, i, &dp->stats) {
687         ovs_mutex_lock(&bucket->mutex);
688         stats->n_hit += bucket->n[DP_STAT_HIT];
689         stats->n_missed += bucket->n[DP_STAT_MISS];
690         stats->n_lost += bucket->n[DP_STAT_LOST];
691         ovs_mutex_unlock(&bucket->mutex);
692     }
693     stats->n_masks = UINT32_MAX;
694     stats->n_mask_hit = UINT64_MAX;
695
696     return 0;
697 }
698
699 static void
700 dp_netdev_reload_pmd_threads(struct dp_netdev *dp)
701 {
702     int i;
703
704     for (i = 0; i < dp->n_pmd_threads; i++) {
705         struct pmd_thread *f = &dp->pmd_threads[i];
706         int old_seq;
707
708         atomic_add_relaxed(&f->change_seq, 1, &old_seq);
709     }
710 }
711
712 static uint32_t
713 hash_port_no(odp_port_t port_no)
714 {
715     return hash_int(odp_to_u32(port_no), 0);
716 }
717
718 static int
719 do_add_port(struct dp_netdev *dp, const char *devname, const char *type,
720             odp_port_t port_no)
721     OVS_REQUIRES(dp->port_mutex)
722 {
723     struct netdev_saved_flags *sf;
724     struct dp_netdev_port *port;
725     struct netdev *netdev;
726     enum netdev_flags flags;
727     const char *open_type;
728     int error;
729     int i;
730
731     /* XXX reject devices already in some dp_netdev. */
732
733     /* Open and validate network device. */
734     open_type = dpif_netdev_port_open_type(dp->class, type);
735     error = netdev_open(devname, open_type, &netdev);
736     if (error) {
737         return error;
738     }
739     /* XXX reject non-Ethernet devices */
740
741     netdev_get_flags(netdev, &flags);
742     if (flags & NETDEV_LOOPBACK) {
743         VLOG_ERR("%s: cannot add a loopback device", devname);
744         netdev_close(netdev);
745         return EINVAL;
746     }
747
748     port = xzalloc(sizeof *port);
749     port->port_no = port_no;
750     port->netdev = netdev;
751     port->rxq = xmalloc(sizeof *port->rxq * netdev_n_rxq(netdev));
752     port->type = xstrdup(type);
753     for (i = 0; i < netdev_n_rxq(netdev); i++) {
754         error = netdev_rxq_open(netdev, &port->rxq[i], i);
755         if (error
756             && !(error == EOPNOTSUPP && dpif_netdev_class_is_dummy(dp->class))) {
757             VLOG_ERR("%s: cannot receive packets on this network device (%s)",
758                      devname, ovs_strerror(errno));
759             netdev_close(netdev);
760             free(port->type);
761             free(port->rxq);
762             free(port);
763             return error;
764         }
765     }
766
767     error = netdev_turn_flags_on(netdev, NETDEV_PROMISC, &sf);
768     if (error) {
769         for (i = 0; i < netdev_n_rxq(netdev); i++) {
770             netdev_rxq_close(port->rxq[i]);
771         }
772         netdev_close(netdev);
773         free(port->type);
774         free(port->rxq);
775         free(port);
776         return error;
777     }
778     port->sf = sf;
779
780     if (netdev_is_pmd(netdev)) {
781         dp->pmd_count++;
782         dp_netdev_set_pmd_threads(dp, NR_PMD_THREADS);
783         dp_netdev_reload_pmd_threads(dp);
784     }
785     ovs_refcount_init(&port->ref_cnt);
786
787     cmap_insert(&dp->ports, &port->node, hash_port_no(port_no));
788     seq_change(dp->port_seq);
789
790     return 0;
791 }
792
793 static int
794 dpif_netdev_port_add(struct dpif *dpif, struct netdev *netdev,
795                      odp_port_t *port_nop)
796 {
797     struct dp_netdev *dp = get_dp_netdev(dpif);
798     char namebuf[NETDEV_VPORT_NAME_BUFSIZE];
799     const char *dpif_port;
800     odp_port_t port_no;
801     int error;
802
803     ovs_mutex_lock(&dp->port_mutex);
804     dpif_port = netdev_vport_get_dpif_port(netdev, namebuf, sizeof namebuf);
805     if (*port_nop != ODPP_NONE) {
806         port_no = *port_nop;
807         error = dp_netdev_lookup_port(dp, *port_nop) ? EBUSY : 0;
808     } else {
809         port_no = choose_port(dp, dpif_port);
810         error = port_no == ODPP_NONE ? EFBIG : 0;
811     }
812     if (!error) {
813         *port_nop = port_no;
814         error = do_add_port(dp, dpif_port, netdev_get_type(netdev), port_no);
815     }
816     ovs_mutex_unlock(&dp->port_mutex);
817
818     return error;
819 }
820
821 static int
822 dpif_netdev_port_del(struct dpif *dpif, odp_port_t port_no)
823 {
824     struct dp_netdev *dp = get_dp_netdev(dpif);
825     int error;
826
827     ovs_mutex_lock(&dp->port_mutex);
828     if (port_no == ODPP_LOCAL) {
829         error = EINVAL;
830     } else {
831         struct dp_netdev_port *port;
832
833         error = get_port_by_number(dp, port_no, &port);
834         if (!error) {
835             do_del_port(dp, port);
836         }
837     }
838     ovs_mutex_unlock(&dp->port_mutex);
839
840     return error;
841 }
842
843 static bool
844 is_valid_port_number(odp_port_t port_no)
845 {
846     return port_no != ODPP_NONE;
847 }
848
849 static struct dp_netdev_port *
850 dp_netdev_lookup_port(const struct dp_netdev *dp, odp_port_t port_no)
851 {
852     struct dp_netdev_port *port;
853
854     CMAP_FOR_EACH_WITH_HASH (port, node, hash_port_no(port_no), &dp->ports) {
855         if (port->port_no == port_no) {
856             return port;
857         }
858     }
859     return NULL;
860 }
861
862 static int
863 get_port_by_number(struct dp_netdev *dp,
864                    odp_port_t port_no, struct dp_netdev_port **portp)
865 {
866     if (!is_valid_port_number(port_no)) {
867         *portp = NULL;
868         return EINVAL;
869     } else {
870         *portp = dp_netdev_lookup_port(dp, port_no);
871         return *portp ? 0 : ENOENT;
872     }
873 }
874
875 static void
876 port_ref(struct dp_netdev_port *port)
877 {
878     if (port) {
879         ovs_refcount_ref(&port->ref_cnt);
880     }
881 }
882
883 static bool
884 port_try_ref(struct dp_netdev_port *port)
885 {
886     if (port) {
887         return ovs_refcount_try_ref_rcu(&port->ref_cnt);
888     }
889
890     return false;
891 }
892
893 static void
894 port_destroy__(struct dp_netdev_port *port)
895 {
896     int n_rxq = netdev_n_rxq(port->netdev);
897     int i;
898
899     netdev_close(port->netdev);
900     netdev_restore_flags(port->sf);
901
902     for (i = 0; i < n_rxq; i++) {
903         netdev_rxq_close(port->rxq[i]);
904     }
905     free(port->rxq);
906     free(port->type);
907     free(port);
908 }
909
910 static void
911 port_unref(struct dp_netdev_port *port)
912 {
913     if (port && ovs_refcount_unref_relaxed(&port->ref_cnt) == 1) {
914         ovsrcu_postpone(port_destroy__, port);
915     }
916 }
917
918 static int
919 get_port_by_name(struct dp_netdev *dp,
920                  const char *devname, struct dp_netdev_port **portp)
921     OVS_REQUIRES(dp->port_mutex)
922 {
923     struct dp_netdev_port *port;
924
925     CMAP_FOR_EACH (port, node, &dp->ports) {
926         if (!strcmp(netdev_get_name(port->netdev), devname)) {
927             *portp = port;
928             return 0;
929         }
930     }
931     return ENOENT;
932 }
933
934 static void
935 do_del_port(struct dp_netdev *dp, struct dp_netdev_port *port)
936     OVS_REQUIRES(dp->port_mutex)
937 {
938     cmap_remove(&dp->ports, &port->node, hash_odp_port(port->port_no));
939     seq_change(dp->port_seq);
940     if (netdev_is_pmd(port->netdev)) {
941         dp_netdev_reload_pmd_threads(dp);
942     }
943
944     port_unref(port);
945 }
946
947 static void
948 answer_port_query(const struct dp_netdev_port *port,
949                   struct dpif_port *dpif_port)
950 {
951     dpif_port->name = xstrdup(netdev_get_name(port->netdev));
952     dpif_port->type = xstrdup(port->type);
953     dpif_port->port_no = port->port_no;
954 }
955
956 static int
957 dpif_netdev_port_query_by_number(const struct dpif *dpif, odp_port_t port_no,
958                                  struct dpif_port *dpif_port)
959 {
960     struct dp_netdev *dp = get_dp_netdev(dpif);
961     struct dp_netdev_port *port;
962     int error;
963
964     error = get_port_by_number(dp, port_no, &port);
965     if (!error && dpif_port) {
966         answer_port_query(port, dpif_port);
967     }
968
969     return error;
970 }
971
972 static int
973 dpif_netdev_port_query_by_name(const struct dpif *dpif, const char *devname,
974                                struct dpif_port *dpif_port)
975 {
976     struct dp_netdev *dp = get_dp_netdev(dpif);
977     struct dp_netdev_port *port;
978     int error;
979
980     ovs_mutex_lock(&dp->port_mutex);
981     error = get_port_by_name(dp, devname, &port);
982     if (!error && dpif_port) {
983         answer_port_query(port, dpif_port);
984     }
985     ovs_mutex_unlock(&dp->port_mutex);
986
987     return error;
988 }
989
990 static void
991 dp_netdev_flow_free(struct dp_netdev_flow *flow)
992 {
993     struct dp_netdev_flow_stats *bucket;
994     size_t i;
995
996     OVSTHREAD_STATS_FOR_EACH_BUCKET (bucket, i, &flow->stats) {
997         ovs_mutex_destroy(&bucket->mutex);
998         free_cacheline(bucket);
999     }
1000     ovsthread_stats_destroy(&flow->stats);
1001
1002     cls_rule_destroy(CONST_CAST(struct cls_rule *, &flow->cr));
1003     dp_netdev_actions_free(dp_netdev_flow_get_actions(flow));
1004     free(flow);
1005 }
1006
1007 static void dp_netdev_flow_unref(struct dp_netdev_flow *flow)
1008 {
1009     if (ovs_refcount_unref_relaxed(&flow->ref_cnt) == 1) {
1010         ovsrcu_postpone(dp_netdev_flow_free, flow);
1011     }
1012 }
1013
1014 static void
1015 dp_netdev_remove_flow(struct dp_netdev *dp, struct dp_netdev_flow *flow)
1016     OVS_REQUIRES(dp->flow_mutex)
1017 {
1018     struct cls_rule *cr = CONST_CAST(struct cls_rule *, &flow->cr);
1019     struct cmap_node *node = CONST_CAST(struct cmap_node *, &flow->node);
1020
1021     classifier_remove(&dp->cls, cr);
1022     cmap_remove(&dp->flow_table, node, flow_hash(&flow->flow, 0));
1023     flow->dead = true;
1024
1025     dp_netdev_flow_unref(flow);
1026 }
1027
1028 static void
1029 dp_netdev_flow_flush(struct dp_netdev *dp)
1030 {
1031     struct dp_netdev_flow *netdev_flow;
1032
1033     ovs_mutex_lock(&dp->flow_mutex);
1034     CMAP_FOR_EACH (netdev_flow, node, &dp->flow_table) {
1035         dp_netdev_remove_flow(dp, netdev_flow);
1036     }
1037     ovs_mutex_unlock(&dp->flow_mutex);
1038 }
1039
1040 static int
1041 dpif_netdev_flow_flush(struct dpif *dpif)
1042 {
1043     struct dp_netdev *dp = get_dp_netdev(dpif);
1044
1045     dp_netdev_flow_flush(dp);
1046     return 0;
1047 }
1048
1049 struct dp_netdev_port_state {
1050     struct cmap_position position;
1051     char *name;
1052 };
1053
1054 static int
1055 dpif_netdev_port_dump_start(const struct dpif *dpif OVS_UNUSED, void **statep)
1056 {
1057     *statep = xzalloc(sizeof(struct dp_netdev_port_state));
1058     return 0;
1059 }
1060
1061 static int
1062 dpif_netdev_port_dump_next(const struct dpif *dpif, void *state_,
1063                            struct dpif_port *dpif_port)
1064 {
1065     struct dp_netdev_port_state *state = state_;
1066     struct dp_netdev *dp = get_dp_netdev(dpif);
1067     struct cmap_node *node;
1068     int retval;
1069
1070     node = cmap_next_position(&dp->ports, &state->position);
1071     if (node) {
1072         struct dp_netdev_port *port;
1073
1074         port = CONTAINER_OF(node, struct dp_netdev_port, node);
1075
1076         free(state->name);
1077         state->name = xstrdup(netdev_get_name(port->netdev));
1078         dpif_port->name = state->name;
1079         dpif_port->type = port->type;
1080         dpif_port->port_no = port->port_no;
1081
1082         retval = 0;
1083     } else {
1084         retval = EOF;
1085     }
1086
1087     return retval;
1088 }
1089
1090 static int
1091 dpif_netdev_port_dump_done(const struct dpif *dpif OVS_UNUSED, void *state_)
1092 {
1093     struct dp_netdev_port_state *state = state_;
1094     free(state->name);
1095     free(state);
1096     return 0;
1097 }
1098
1099 static int
1100 dpif_netdev_port_poll(const struct dpif *dpif_, char **devnamep OVS_UNUSED)
1101 {
1102     struct dpif_netdev *dpif = dpif_netdev_cast(dpif_);
1103     uint64_t new_port_seq;
1104     int error;
1105
1106     new_port_seq = seq_read(dpif->dp->port_seq);
1107     if (dpif->last_port_seq != new_port_seq) {
1108         dpif->last_port_seq = new_port_seq;
1109         error = ENOBUFS;
1110     } else {
1111         error = EAGAIN;
1112     }
1113
1114     return error;
1115 }
1116
1117 static void
1118 dpif_netdev_port_poll_wait(const struct dpif *dpif_)
1119 {
1120     struct dpif_netdev *dpif = dpif_netdev_cast(dpif_);
1121
1122     seq_wait(dpif->dp->port_seq, dpif->last_port_seq);
1123 }
1124
1125 static struct dp_netdev_flow *
1126 dp_netdev_flow_cast(const struct cls_rule *cr)
1127 {
1128     return cr ? CONTAINER_OF(cr, struct dp_netdev_flow, cr) : NULL;
1129 }
1130
1131 static bool dp_netdev_flow_ref(struct dp_netdev_flow *flow)
1132 {
1133     return ovs_refcount_try_ref_rcu(&flow->ref_cnt);
1134 }
1135
1136 static inline bool
1137 emc_entry_alive(struct emc_entry *ce)
1138 {
1139     return ce->flow && !ce->flow->dead;
1140 }
1141
1142 static void
1143 emc_clear_entry(struct emc_entry *ce)
1144 {
1145     if (ce->flow) {
1146         dp_netdev_flow_unref(ce->flow);
1147         ce->flow = NULL;
1148     }
1149 }
1150
1151 static inline void
1152 emc_change_entry(struct emc_entry *ce, struct dp_netdev_flow *flow,
1153                  const struct miniflow *mf, uint32_t hash)
1154 {
1155     if (ce->flow != flow) {
1156         if (ce->flow) {
1157             dp_netdev_flow_unref(ce->flow);
1158         }
1159
1160         if (dp_netdev_flow_ref(flow)) {
1161             ce->flow = flow;
1162         } else {
1163             ce->flow = NULL;
1164         }
1165     }
1166     if (mf) {
1167         miniflow_clone_inline(&ce->mf.flow, mf, count_1bits(mf->map));
1168         ce->hash = hash;
1169     }
1170 }
1171
1172 static inline void
1173 emc_insert(struct emc_cache *cache, const struct miniflow *mf, uint32_t hash,
1174            struct dp_netdev_flow *flow)
1175 {
1176     struct emc_entry *to_be_replaced = NULL;
1177     struct emc_entry *current_entry;
1178
1179     EMC_FOR_EACH_POS_WITH_HASH(cache, current_entry, hash) {
1180         if (current_entry->hash == hash
1181             && miniflow_equal(&current_entry->mf.flow, mf)) {
1182
1183             /* We found the entry with the 'mf' miniflow */
1184             emc_change_entry(current_entry, flow, NULL, 0);
1185             return;
1186         }
1187
1188         /* Replacement policy: put the flow in an empty (not alive) entry, or
1189          * in the first entry where it can be */
1190         if (!to_be_replaced
1191             || (emc_entry_alive(to_be_replaced)
1192                 && !emc_entry_alive(current_entry))
1193             || current_entry->hash < to_be_replaced->hash) {
1194             to_be_replaced = current_entry;
1195         }
1196     }
1197     /* We didn't find the miniflow in the cache.
1198      * The 'to_be_replaced' entry is where the new flow will be stored */
1199
1200     emc_change_entry(to_be_replaced, flow, mf, hash);
1201 }
1202
1203 static inline struct dp_netdev_flow *
1204 emc_lookup(struct emc_cache *cache, const struct miniflow *mf, uint32_t hash)
1205 {
1206     struct emc_entry *current_entry;
1207
1208     EMC_FOR_EACH_POS_WITH_HASH(cache, current_entry, hash) {
1209         if (current_entry->hash == hash && emc_entry_alive(current_entry)
1210             && miniflow_equal(&current_entry->mf.flow, mf)) {
1211
1212             /* We found the entry with the 'mf' miniflow */
1213             return current_entry->flow;
1214         }
1215     }
1216
1217     return NULL;
1218 }
1219
1220 static struct dp_netdev_flow *
1221 dp_netdev_lookup_flow(const struct dp_netdev *dp, const struct miniflow *key)
1222 {
1223     struct dp_netdev_flow *netdev_flow;
1224     struct cls_rule *rule;
1225
1226     classifier_lookup_miniflow_batch(&dp->cls, &key, &rule, 1);
1227     netdev_flow = dp_netdev_flow_cast(rule);
1228
1229     return netdev_flow;
1230 }
1231
1232 static struct dp_netdev_flow *
1233 dp_netdev_find_flow(const struct dp_netdev *dp, const struct flow *flow)
1234 {
1235     struct dp_netdev_flow *netdev_flow;
1236
1237     CMAP_FOR_EACH_WITH_HASH (netdev_flow, node, flow_hash(flow, 0),
1238                              &dp->flow_table) {
1239         if (flow_equal(&netdev_flow->flow, flow)) {
1240             return netdev_flow;
1241         }
1242     }
1243
1244     return NULL;
1245 }
1246
1247 static void
1248 get_dpif_flow_stats(const struct dp_netdev_flow *netdev_flow,
1249                     struct dpif_flow_stats *stats)
1250 {
1251     struct dp_netdev_flow_stats *bucket;
1252     size_t i;
1253
1254     memset(stats, 0, sizeof *stats);
1255     OVSTHREAD_STATS_FOR_EACH_BUCKET (bucket, i, &netdev_flow->stats) {
1256         ovs_mutex_lock(&bucket->mutex);
1257         stats->n_packets += bucket->packet_count;
1258         stats->n_bytes += bucket->byte_count;
1259         stats->used = MAX(stats->used, bucket->used);
1260         stats->tcp_flags |= bucket->tcp_flags;
1261         ovs_mutex_unlock(&bucket->mutex);
1262     }
1263 }
1264
1265 static void
1266 dp_netdev_flow_to_dpif_flow(const struct dp_netdev_flow *netdev_flow,
1267                             struct ofpbuf *buffer, struct dpif_flow *flow)
1268 {
1269     struct flow_wildcards wc;
1270     struct dp_netdev_actions *actions;
1271
1272     minimask_expand(&netdev_flow->cr.match.mask, &wc);
1273     odp_flow_key_from_mask(buffer, &wc.masks, &netdev_flow->flow,
1274                            odp_to_u32(wc.masks.in_port.odp_port),
1275                            SIZE_MAX, true);
1276     flow->mask = ofpbuf_data(buffer);
1277     flow->mask_len = ofpbuf_size(buffer);
1278
1279     actions = dp_netdev_flow_get_actions(netdev_flow);
1280     flow->actions = actions->actions;
1281     flow->actions_len = actions->size;
1282
1283     get_dpif_flow_stats(netdev_flow, &flow->stats);
1284 }
1285
1286 static int
1287 dpif_netdev_mask_from_nlattrs(const struct nlattr *key, uint32_t key_len,
1288                               const struct nlattr *mask_key,
1289                               uint32_t mask_key_len, const struct flow *flow,
1290                               struct flow *mask)
1291 {
1292     if (mask_key_len) {
1293         enum odp_key_fitness fitness;
1294
1295         fitness = odp_flow_key_to_mask(mask_key, mask_key_len, mask, flow);
1296         if (fitness) {
1297             /* This should not happen: it indicates that
1298              * odp_flow_key_from_mask() and odp_flow_key_to_mask()
1299              * disagree on the acceptable form of a mask.  Log the problem
1300              * as an error, with enough details to enable debugging. */
1301             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1302
1303             if (!VLOG_DROP_ERR(&rl)) {
1304                 struct ds s;
1305
1306                 ds_init(&s);
1307                 odp_flow_format(key, key_len, mask_key, mask_key_len, NULL, &s,
1308                                 true);
1309                 VLOG_ERR("internal error parsing flow mask %s (%s)",
1310                          ds_cstr(&s), odp_key_fitness_to_string(fitness));
1311                 ds_destroy(&s);
1312             }
1313
1314             return EINVAL;
1315         }
1316     } else {
1317         enum mf_field_id id;
1318         /* No mask key, unwildcard everything except fields whose
1319          * prerequisities are not met. */
1320         memset(mask, 0x0, sizeof *mask);
1321
1322         for (id = 0; id < MFF_N_IDS; ++id) {
1323             /* Skip registers and metadata. */
1324             if (!(id >= MFF_REG0 && id < MFF_REG0 + FLOW_N_REGS)
1325                 && id != MFF_METADATA) {
1326                 const struct mf_field *mf = mf_from_id(id);
1327                 if (mf_are_prereqs_ok(mf, flow)) {
1328                     mf_mask_field(mf, mask);
1329                 }
1330             }
1331         }
1332     }
1333
1334     /* Force unwildcard the in_port.
1335      *
1336      * We need to do this even in the case where we unwildcard "everything"
1337      * above because "everything" only includes the 16-bit OpenFlow port number
1338      * mask->in_port.ofp_port, which only covers half of the 32-bit datapath
1339      * port number mask->in_port.odp_port. */
1340     mask->in_port.odp_port = u32_to_odp(UINT32_MAX);
1341
1342     return 0;
1343 }
1344
1345 static int
1346 dpif_netdev_flow_from_nlattrs(const struct nlattr *key, uint32_t key_len,
1347                               struct flow *flow)
1348 {
1349     odp_port_t in_port;
1350
1351     if (odp_flow_key_to_flow(key, key_len, flow)) {
1352         /* This should not happen: it indicates that odp_flow_key_from_flow()
1353          * and odp_flow_key_to_flow() disagree on the acceptable form of a
1354          * flow.  Log the problem as an error, with enough details to enable
1355          * debugging. */
1356         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1357
1358         if (!VLOG_DROP_ERR(&rl)) {
1359             struct ds s;
1360
1361             ds_init(&s);
1362             odp_flow_format(key, key_len, NULL, 0, NULL, &s, true);
1363             VLOG_ERR("internal error parsing flow key %s", ds_cstr(&s));
1364             ds_destroy(&s);
1365         }
1366
1367         return EINVAL;
1368     }
1369
1370     in_port = flow->in_port.odp_port;
1371     if (!is_valid_port_number(in_port) && in_port != ODPP_NONE) {
1372         return EINVAL;
1373     }
1374
1375     return 0;
1376 }
1377
1378 static int
1379 dpif_netdev_flow_get(const struct dpif *dpif, const struct dpif_flow_get *get)
1380 {
1381     struct dp_netdev *dp = get_dp_netdev(dpif);
1382     struct dp_netdev_flow *netdev_flow;
1383     struct flow key;
1384     int error;
1385
1386     error = dpif_netdev_flow_from_nlattrs(get->key, get->key_len, &key);
1387     if (error) {
1388         return error;
1389     }
1390
1391     netdev_flow = dp_netdev_find_flow(dp, &key);
1392
1393     if (netdev_flow) {
1394         dp_netdev_flow_to_dpif_flow(netdev_flow, get->buffer, get->flow);
1395      } else {
1396         error = ENOENT;
1397     }
1398
1399     return error;
1400 }
1401
1402 static int
1403 dp_netdev_flow_add(struct dp_netdev *dp, struct match *match,
1404                    const struct nlattr *actions, size_t actions_len)
1405     OVS_REQUIRES(dp->flow_mutex)
1406 {
1407     struct dp_netdev_flow *netdev_flow;
1408
1409     netdev_flow = xzalloc(sizeof *netdev_flow);
1410     *CONST_CAST(struct flow *, &netdev_flow->flow) = match->flow;
1411
1412     ovs_refcount_init(&netdev_flow->ref_cnt);
1413
1414     ovsthread_stats_init(&netdev_flow->stats);
1415
1416     ovsrcu_set(&netdev_flow->actions,
1417                dp_netdev_actions_create(actions, actions_len));
1418
1419     cls_rule_init(CONST_CAST(struct cls_rule *, &netdev_flow->cr),
1420                   match, NETDEV_RULE_PRIORITY);
1421     cmap_insert(&dp->flow_table,
1422                 CONST_CAST(struct cmap_node *, &netdev_flow->node),
1423                 flow_hash(&match->flow, 0));
1424     classifier_insert(&dp->cls,
1425                       CONST_CAST(struct cls_rule *, &netdev_flow->cr));
1426
1427     if (OVS_UNLIKELY(VLOG_IS_DBG_ENABLED())) {
1428         struct ds ds = DS_EMPTY_INITIALIZER;
1429
1430         ds_put_cstr(&ds, "flow_add: ");
1431         match_format(match, &ds, OFP_DEFAULT_PRIORITY);
1432         ds_put_cstr(&ds, ", actions:");
1433         format_odp_actions(&ds, actions, actions_len);
1434
1435         VLOG_DBG_RL(&upcall_rl, "%s", ds_cstr(&ds));
1436
1437         ds_destroy(&ds);
1438     }
1439
1440     return 0;
1441 }
1442
1443 static void
1444 clear_stats(struct dp_netdev_flow *netdev_flow)
1445 {
1446     struct dp_netdev_flow_stats *bucket;
1447     size_t i;
1448
1449     OVSTHREAD_STATS_FOR_EACH_BUCKET (bucket, i, &netdev_flow->stats) {
1450         ovs_mutex_lock(&bucket->mutex);
1451         bucket->used = 0;
1452         bucket->packet_count = 0;
1453         bucket->byte_count = 0;
1454         bucket->tcp_flags = 0;
1455         ovs_mutex_unlock(&bucket->mutex);
1456     }
1457 }
1458
1459 static int
1460 dpif_netdev_flow_put(struct dpif *dpif, const struct dpif_flow_put *put)
1461 {
1462     struct dp_netdev *dp = get_dp_netdev(dpif);
1463     struct dp_netdev_flow *netdev_flow;
1464     struct miniflow miniflow;
1465     struct match match;
1466     int error;
1467
1468     error = dpif_netdev_flow_from_nlattrs(put->key, put->key_len, &match.flow);
1469     if (error) {
1470         return error;
1471     }
1472     error = dpif_netdev_mask_from_nlattrs(put->key, put->key_len,
1473                                           put->mask, put->mask_len,
1474                                           &match.flow, &match.wc.masks);
1475     if (error) {
1476         return error;
1477     }
1478     miniflow_init(&miniflow, &match.flow);
1479
1480     ovs_mutex_lock(&dp->flow_mutex);
1481     netdev_flow = dp_netdev_lookup_flow(dp, &miniflow);
1482     if (!netdev_flow) {
1483         if (put->flags & DPIF_FP_CREATE) {
1484             if (cmap_count(&dp->flow_table) < MAX_FLOWS) {
1485                 if (put->stats) {
1486                     memset(put->stats, 0, sizeof *put->stats);
1487                 }
1488                 error = dp_netdev_flow_add(dp, &match, put->actions,
1489                                            put->actions_len);
1490             } else {
1491                 error = EFBIG;
1492             }
1493         } else {
1494             error = ENOENT;
1495         }
1496     } else {
1497         if (put->flags & DPIF_FP_MODIFY
1498             && flow_equal(&match.flow, &netdev_flow->flow)) {
1499             struct dp_netdev_actions *new_actions;
1500             struct dp_netdev_actions *old_actions;
1501
1502             new_actions = dp_netdev_actions_create(put->actions,
1503                                                    put->actions_len);
1504
1505             old_actions = dp_netdev_flow_get_actions(netdev_flow);
1506             ovsrcu_set(&netdev_flow->actions, new_actions);
1507
1508             if (put->stats) {
1509                 get_dpif_flow_stats(netdev_flow, put->stats);
1510             }
1511             if (put->flags & DPIF_FP_ZERO_STATS) {
1512                 clear_stats(netdev_flow);
1513             }
1514
1515             ovsrcu_postpone(dp_netdev_actions_free, old_actions);
1516         } else if (put->flags & DPIF_FP_CREATE) {
1517             error = EEXIST;
1518         } else {
1519             /* Overlapping flow. */
1520             error = EINVAL;
1521         }
1522     }
1523     ovs_mutex_unlock(&dp->flow_mutex);
1524     miniflow_destroy(&miniflow);
1525
1526     return error;
1527 }
1528
1529 static int
1530 dpif_netdev_flow_del(struct dpif *dpif, const struct dpif_flow_del *del)
1531 {
1532     struct dp_netdev *dp = get_dp_netdev(dpif);
1533     struct dp_netdev_flow *netdev_flow;
1534     struct flow key;
1535     int error;
1536
1537     error = dpif_netdev_flow_from_nlattrs(del->key, del->key_len, &key);
1538     if (error) {
1539         return error;
1540     }
1541
1542     ovs_mutex_lock(&dp->flow_mutex);
1543     netdev_flow = dp_netdev_find_flow(dp, &key);
1544     if (netdev_flow) {
1545         if (del->stats) {
1546             get_dpif_flow_stats(netdev_flow, del->stats);
1547         }
1548         dp_netdev_remove_flow(dp, netdev_flow);
1549     } else {
1550         error = ENOENT;
1551     }
1552     ovs_mutex_unlock(&dp->flow_mutex);
1553
1554     return error;
1555 }
1556
1557 struct dpif_netdev_flow_dump {
1558     struct dpif_flow_dump up;
1559     struct cmap_position pos;
1560     int status;
1561     struct ovs_mutex mutex;
1562 };
1563
1564 static struct dpif_netdev_flow_dump *
1565 dpif_netdev_flow_dump_cast(struct dpif_flow_dump *dump)
1566 {
1567     return CONTAINER_OF(dump, struct dpif_netdev_flow_dump, up);
1568 }
1569
1570 static struct dpif_flow_dump *
1571 dpif_netdev_flow_dump_create(const struct dpif *dpif_)
1572 {
1573     struct dpif_netdev_flow_dump *dump;
1574
1575     dump = xmalloc(sizeof *dump);
1576     dpif_flow_dump_init(&dump->up, dpif_);
1577     memset(&dump->pos, 0, sizeof dump->pos);
1578     dump->status = 0;
1579     ovs_mutex_init(&dump->mutex);
1580
1581     return &dump->up;
1582 }
1583
1584 static int
1585 dpif_netdev_flow_dump_destroy(struct dpif_flow_dump *dump_)
1586 {
1587     struct dpif_netdev_flow_dump *dump = dpif_netdev_flow_dump_cast(dump_);
1588
1589     ovs_mutex_destroy(&dump->mutex);
1590     free(dump);
1591     return 0;
1592 }
1593
1594 struct dpif_netdev_flow_dump_thread {
1595     struct dpif_flow_dump_thread up;
1596     struct dpif_netdev_flow_dump *dump;
1597     struct odputil_keybuf keybuf[FLOW_DUMP_MAX_BATCH];
1598     struct odputil_keybuf maskbuf[FLOW_DUMP_MAX_BATCH];
1599 };
1600
1601 static struct dpif_netdev_flow_dump_thread *
1602 dpif_netdev_flow_dump_thread_cast(struct dpif_flow_dump_thread *thread)
1603 {
1604     return CONTAINER_OF(thread, struct dpif_netdev_flow_dump_thread, up);
1605 }
1606
1607 static struct dpif_flow_dump_thread *
1608 dpif_netdev_flow_dump_thread_create(struct dpif_flow_dump *dump_)
1609 {
1610     struct dpif_netdev_flow_dump *dump = dpif_netdev_flow_dump_cast(dump_);
1611     struct dpif_netdev_flow_dump_thread *thread;
1612
1613     thread = xmalloc(sizeof *thread);
1614     dpif_flow_dump_thread_init(&thread->up, &dump->up);
1615     thread->dump = dump;
1616     return &thread->up;
1617 }
1618
1619 static void
1620 dpif_netdev_flow_dump_thread_destroy(struct dpif_flow_dump_thread *thread_)
1621 {
1622     struct dpif_netdev_flow_dump_thread *thread
1623         = dpif_netdev_flow_dump_thread_cast(thread_);
1624
1625     free(thread);
1626 }
1627
1628 static int
1629 dpif_netdev_flow_dump_next(struct dpif_flow_dump_thread *thread_,
1630                            struct dpif_flow *flows, int max_flows)
1631 {
1632     struct dpif_netdev_flow_dump_thread *thread
1633         = dpif_netdev_flow_dump_thread_cast(thread_);
1634     struct dpif_netdev_flow_dump *dump = thread->dump;
1635     struct dpif_netdev *dpif = dpif_netdev_cast(thread->up.dpif);
1636     struct dp_netdev_flow *netdev_flows[FLOW_DUMP_MAX_BATCH];
1637     struct dp_netdev *dp = get_dp_netdev(&dpif->dpif);
1638     int n_flows = 0;
1639     int i;
1640
1641     ovs_mutex_lock(&dump->mutex);
1642     if (!dump->status) {
1643         for (n_flows = 0; n_flows < MIN(max_flows, FLOW_DUMP_MAX_BATCH);
1644              n_flows++) {
1645             struct cmap_node *node;
1646
1647             node = cmap_next_position(&dp->flow_table, &dump->pos);
1648             if (!node) {
1649                 dump->status = EOF;
1650                 break;
1651             }
1652             netdev_flows[n_flows] = CONTAINER_OF(node, struct dp_netdev_flow,
1653                                                  node);
1654         }
1655     }
1656     ovs_mutex_unlock(&dump->mutex);
1657
1658     for (i = 0; i < n_flows; i++) {
1659         struct odputil_keybuf *maskbuf = &thread->maskbuf[i];
1660         struct odputil_keybuf *keybuf = &thread->keybuf[i];
1661         struct dp_netdev_flow *netdev_flow = netdev_flows[i];
1662         struct dpif_flow *f = &flows[i];
1663         struct dp_netdev_actions *dp_actions;
1664         struct flow_wildcards wc;
1665         struct ofpbuf buf;
1666
1667         minimask_expand(&netdev_flow->cr.match.mask, &wc);
1668
1669         /* Key. */
1670         ofpbuf_use_stack(&buf, keybuf, sizeof *keybuf);
1671         odp_flow_key_from_flow(&buf, &netdev_flow->flow, &wc.masks,
1672                                netdev_flow->flow.in_port.odp_port, true);
1673         f->key = ofpbuf_data(&buf);
1674         f->key_len = ofpbuf_size(&buf);
1675
1676         /* Mask. */
1677         ofpbuf_use_stack(&buf, maskbuf, sizeof *maskbuf);
1678         odp_flow_key_from_mask(&buf, &wc.masks, &netdev_flow->flow,
1679                                odp_to_u32(wc.masks.in_port.odp_port),
1680                                SIZE_MAX, true);
1681         f->mask = ofpbuf_data(&buf);
1682         f->mask_len = ofpbuf_size(&buf);
1683
1684         /* Actions. */
1685         dp_actions = dp_netdev_flow_get_actions(netdev_flow);
1686         f->actions = dp_actions->actions;
1687         f->actions_len = dp_actions->size;
1688
1689         /* Stats. */
1690         get_dpif_flow_stats(netdev_flow, &f->stats);
1691     }
1692
1693     return n_flows;
1694 }
1695
1696 static int
1697 dpif_netdev_execute(struct dpif *dpif, struct dpif_execute *execute)
1698 {
1699     struct dp_netdev *dp = get_dp_netdev(dpif);
1700     struct dpif_packet packet, *pp;
1701     struct pkt_metadata *md = &execute->md;
1702
1703     if (ofpbuf_size(execute->packet) < ETH_HEADER_LEN ||
1704         ofpbuf_size(execute->packet) > UINT16_MAX) {
1705         return EINVAL;
1706     }
1707
1708     packet.ofpbuf = *execute->packet;
1709     pp = &packet;
1710
1711     ovs_mutex_lock(&dp->emc_mutex);
1712     dp_netdev_execute_actions(dp, &pp, 1, false, md,
1713                               &dp->flow_cache, execute->actions,
1714                               execute->actions_len);
1715     ovs_mutex_unlock(&dp->emc_mutex);
1716
1717     /* Even though may_steal is set to false, some actions could modify or
1718      * reallocate the ofpbuf memory. We need to pass those changes to the
1719      * caller */
1720     *execute->packet = packet.ofpbuf;
1721
1722     return 0;
1723 }
1724
1725 static void
1726 dpif_netdev_operate(struct dpif *dpif, struct dpif_op **ops, size_t n_ops)
1727 {
1728     size_t i;
1729
1730     for (i = 0; i < n_ops; i++) {
1731         struct dpif_op *op = ops[i];
1732
1733         switch (op->type) {
1734         case DPIF_OP_FLOW_PUT:
1735             op->error = dpif_netdev_flow_put(dpif, &op->u.flow_put);
1736             break;
1737
1738         case DPIF_OP_FLOW_DEL:
1739             op->error = dpif_netdev_flow_del(dpif, &op->u.flow_del);
1740             break;
1741
1742         case DPIF_OP_EXECUTE:
1743             op->error = dpif_netdev_execute(dpif, &op->u.execute);
1744             break;
1745
1746         case DPIF_OP_FLOW_GET:
1747             op->error = dpif_netdev_flow_get(dpif, &op->u.flow_get);
1748             break;
1749         }
1750     }
1751 }
1752
1753 static int
1754 dpif_netdev_queue_to_priority(const struct dpif *dpif OVS_UNUSED,
1755                               uint32_t queue_id, uint32_t *priority)
1756 {
1757     *priority = queue_id;
1758     return 0;
1759 }
1760
1761 \f
1762 /* Creates and returns a new 'struct dp_netdev_actions', with a reference count
1763  * of 1, whose actions are a copy of from the 'ofpacts_len' bytes of
1764  * 'ofpacts'. */
1765 struct dp_netdev_actions *
1766 dp_netdev_actions_create(const struct nlattr *actions, size_t size)
1767 {
1768     struct dp_netdev_actions *netdev_actions;
1769
1770     netdev_actions = xmalloc(sizeof *netdev_actions);
1771     netdev_actions->actions = xmemdup(actions, size);
1772     netdev_actions->size = size;
1773
1774     return netdev_actions;
1775 }
1776
1777 struct dp_netdev_actions *
1778 dp_netdev_flow_get_actions(const struct dp_netdev_flow *flow)
1779 {
1780     return ovsrcu_get(struct dp_netdev_actions *, &flow->actions);
1781 }
1782
1783 static void
1784 dp_netdev_actions_free(struct dp_netdev_actions *actions)
1785 {
1786     free(actions->actions);
1787     free(actions);
1788 }
1789 \f
1790
1791 static void
1792 dp_netdev_process_rxq_port(struct dp_netdev *dp,
1793                            struct emc_cache *flow_cache,
1794                            struct dp_netdev_port *port,
1795                            struct netdev_rxq *rxq)
1796 {
1797     struct dpif_packet *packets[NETDEV_MAX_RX_BATCH];
1798     int error, cnt;
1799
1800     error = netdev_rxq_recv(rxq, packets, &cnt);
1801     if (!error) {
1802         dp_netdev_port_input(dp, flow_cache, packets, cnt, port->port_no);
1803     } else if (error != EAGAIN && error != EOPNOTSUPP) {
1804         static struct vlog_rate_limit rl
1805             = VLOG_RATE_LIMIT_INIT(1, 5);
1806
1807         VLOG_ERR_RL(&rl, "error receiving data from %s: %s",
1808                     netdev_get_name(port->netdev),
1809                     ovs_strerror(error));
1810     }
1811 }
1812
1813 static void
1814 dpif_netdev_run(struct dpif *dpif)
1815 {
1816     struct dp_netdev_port *port;
1817     struct dp_netdev *dp = get_dp_netdev(dpif);
1818
1819     ovs_mutex_lock(&dp->emc_mutex);
1820     CMAP_FOR_EACH (port, node, &dp->ports) {
1821         if (!netdev_is_pmd(port->netdev)) {
1822             int i;
1823
1824             for (i = 0; i < netdev_n_rxq(port->netdev); i++) {
1825                 dp_netdev_process_rxq_port(dp, &dp->flow_cache, port,
1826                                            port->rxq[i]);
1827             }
1828         }
1829     }
1830     ovs_mutex_unlock(&dp->emc_mutex);
1831 }
1832
1833 static void
1834 dpif_netdev_wait(struct dpif *dpif)
1835 {
1836     struct dp_netdev_port *port;
1837     struct dp_netdev *dp = get_dp_netdev(dpif);
1838
1839     ovs_mutex_lock(&dp_netdev_mutex);
1840     CMAP_FOR_EACH (port, node, &dp->ports) {
1841         if (!netdev_is_pmd(port->netdev)) {
1842             int i;
1843
1844             for (i = 0; i < netdev_n_rxq(port->netdev); i++) {
1845                 netdev_rxq_wait(port->rxq[i]);
1846             }
1847         }
1848     }
1849     ovs_mutex_unlock(&dp_netdev_mutex);
1850 }
1851
1852 struct rxq_poll {
1853     struct dp_netdev_port *port;
1854     struct netdev_rxq *rx;
1855 };
1856
1857 static int
1858 pmd_load_queues(struct pmd_thread *f,
1859                 struct rxq_poll **ppoll_list, int poll_cnt)
1860 {
1861     struct dp_netdev *dp = f->dp;
1862     struct rxq_poll *poll_list = *ppoll_list;
1863     struct dp_netdev_port *port;
1864     int id = f->id;
1865     int index;
1866     int i;
1867
1868     /* Simple scheduler for netdev rx polling. */
1869     for (i = 0; i < poll_cnt; i++) {
1870          port_unref(poll_list[i].port);
1871     }
1872
1873     poll_cnt = 0;
1874     index = 0;
1875
1876     CMAP_FOR_EACH (port, node, &f->dp->ports) {
1877         /* Calls port_try_ref() to prevent the main thread
1878          * from deleting the port. */
1879         if (port_try_ref(port)) {
1880             if (netdev_is_pmd(port->netdev)) {
1881                 int i;
1882
1883                 for (i = 0; i < netdev_n_rxq(port->netdev); i++) {
1884                     if ((index % dp->n_pmd_threads) == id) {
1885                         poll_list = xrealloc(poll_list,
1886                                         sizeof *poll_list * (poll_cnt + 1));
1887
1888                         port_ref(port);
1889                         poll_list[poll_cnt].port = port;
1890                         poll_list[poll_cnt].rx = port->rxq[i];
1891                         poll_cnt++;
1892                     }
1893                     index++;
1894                 }
1895             }
1896             /* Unrefs the port_try_ref(). */
1897             port_unref(port);
1898         }
1899     }
1900
1901     *ppoll_list = poll_list;
1902     return poll_cnt;
1903 }
1904
1905 static void *
1906 pmd_thread_main(void *f_)
1907 {
1908     struct pmd_thread *f = f_;
1909     struct dp_netdev *dp = f->dp;
1910     unsigned int lc = 0;
1911     struct rxq_poll *poll_list;
1912     unsigned int port_seq = PMD_INITIAL_SEQ;
1913     int poll_cnt;
1914     int i;
1915
1916     poll_cnt = 0;
1917     poll_list = NULL;
1918
1919     pmd_thread_setaffinity_cpu(f->id);
1920 reload:
1921     emc_cache_init(&f->flow_cache);
1922     poll_cnt = pmd_load_queues(f, &poll_list, poll_cnt);
1923
1924     for (;;) {
1925         int i;
1926
1927         for (i = 0; i < poll_cnt; i++) {
1928             dp_netdev_process_rxq_port(dp, &f->flow_cache, poll_list[i].port,
1929                                        poll_list[i].rx);
1930         }
1931
1932         if (lc++ > 1024) {
1933             unsigned int seq;
1934
1935             lc = 0;
1936
1937             ovsrcu_quiesce();
1938
1939             atomic_read_relaxed(&f->change_seq, &seq);
1940             if (seq != port_seq) {
1941                 port_seq = seq;
1942                 break;
1943             }
1944         }
1945     }
1946
1947     emc_cache_uninit(&f->flow_cache);
1948
1949     if (!latch_is_set(&f->dp->exit_latch)){
1950         goto reload;
1951     }
1952
1953     for (i = 0; i < poll_cnt; i++) {
1954          port_unref(poll_list[i].port);
1955     }
1956
1957     free(poll_list);
1958     return NULL;
1959 }
1960
1961 static void
1962 dp_netdev_disable_upcall(struct dp_netdev *dp)
1963     OVS_ACQUIRES(dp->upcall_rwlock)
1964 {
1965     fat_rwlock_wrlock(&dp->upcall_rwlock);
1966 }
1967
1968 static void
1969 dpif_netdev_disable_upcall(struct dpif *dpif)
1970     OVS_NO_THREAD_SAFETY_ANALYSIS
1971 {
1972     struct dp_netdev *dp = get_dp_netdev(dpif);
1973     dp_netdev_disable_upcall(dp);
1974 }
1975
1976 static void
1977 dp_netdev_enable_upcall(struct dp_netdev *dp)
1978     OVS_RELEASES(dp->upcall_rwlock)
1979 {
1980     fat_rwlock_unlock(&dp->upcall_rwlock);
1981 }
1982
1983 static void
1984 dpif_netdev_enable_upcall(struct dpif *dpif)
1985     OVS_NO_THREAD_SAFETY_ANALYSIS
1986 {
1987     struct dp_netdev *dp = get_dp_netdev(dpif);
1988     dp_netdev_enable_upcall(dp);
1989 }
1990
1991 static void
1992 dp_netdev_set_pmd_threads(struct dp_netdev *dp, int n)
1993 {
1994     int i;
1995
1996     if (n == dp->n_pmd_threads) {
1997         return;
1998     }
1999
2000     /* Stop existing threads. */
2001     latch_set(&dp->exit_latch);
2002     dp_netdev_reload_pmd_threads(dp);
2003     for (i = 0; i < dp->n_pmd_threads; i++) {
2004         struct pmd_thread *f = &dp->pmd_threads[i];
2005
2006         xpthread_join(f->thread, NULL);
2007     }
2008     latch_poll(&dp->exit_latch);
2009     free(dp->pmd_threads);
2010
2011     /* Start new threads. */
2012     dp->pmd_threads = xmalloc(n * sizeof *dp->pmd_threads);
2013     dp->n_pmd_threads = n;
2014
2015     for (i = 0; i < n; i++) {
2016         struct pmd_thread *f = &dp->pmd_threads[i];
2017
2018         f->dp = dp;
2019         f->id = i;
2020         atomic_init(&f->change_seq, PMD_INITIAL_SEQ);
2021
2022         /* Each thread will distribute all devices rx-queues among
2023          * themselves. */
2024         f->thread = ovs_thread_create("pmd", pmd_thread_main, f);
2025     }
2026 }
2027
2028 \f
2029 static void *
2030 dp_netdev_flow_stats_new_cb(void)
2031 {
2032     struct dp_netdev_flow_stats *bucket = xzalloc_cacheline(sizeof *bucket);
2033     ovs_mutex_init(&bucket->mutex);
2034     return bucket;
2035 }
2036
2037 static void
2038 dp_netdev_flow_used(struct dp_netdev_flow *netdev_flow,
2039                     int cnt, int size,
2040                     uint16_t tcp_flags)
2041 {
2042     long long int now = time_msec();
2043     struct dp_netdev_flow_stats *bucket;
2044
2045     bucket = ovsthread_stats_bucket_get(&netdev_flow->stats,
2046                                         dp_netdev_flow_stats_new_cb);
2047
2048     ovs_mutex_lock(&bucket->mutex);
2049     bucket->used = MAX(now, bucket->used);
2050     bucket->packet_count += cnt;
2051     bucket->byte_count += size;
2052     bucket->tcp_flags |= tcp_flags;
2053     ovs_mutex_unlock(&bucket->mutex);
2054 }
2055
2056 static void *
2057 dp_netdev_stats_new_cb(void)
2058 {
2059     struct dp_netdev_stats *bucket = xzalloc_cacheline(sizeof *bucket);
2060     ovs_mutex_init(&bucket->mutex);
2061     return bucket;
2062 }
2063
2064 static void
2065 dp_netdev_count_packet(struct dp_netdev *dp, enum dp_stat_type type, int cnt)
2066 {
2067     struct dp_netdev_stats *bucket;
2068
2069     bucket = ovsthread_stats_bucket_get(&dp->stats, dp_netdev_stats_new_cb);
2070     ovs_mutex_lock(&bucket->mutex);
2071     bucket->n[type] += cnt;
2072     ovs_mutex_unlock(&bucket->mutex);
2073 }
2074
2075 static int
2076 dp_netdev_upcall(struct dp_netdev *dp, struct dpif_packet *packet_,
2077                  struct flow *flow, struct flow_wildcards *wc,
2078                  enum dpif_upcall_type type, const struct nlattr *userdata,
2079                  struct ofpbuf *actions, struct ofpbuf *put_actions)
2080 {
2081     struct ofpbuf *packet = &packet_->ofpbuf;
2082
2083     if (type == DPIF_UC_MISS) {
2084         dp_netdev_count_packet(dp, DP_STAT_MISS, 1);
2085     }
2086
2087     if (OVS_UNLIKELY(!dp->upcall_cb)) {
2088         return ENODEV;
2089     }
2090
2091     if (OVS_UNLIKELY(!VLOG_DROP_DBG(&upcall_rl))) {
2092         struct ds ds = DS_EMPTY_INITIALIZER;
2093         struct ofpbuf key;
2094         char *packet_str;
2095
2096         ofpbuf_init(&key, 0);
2097         odp_flow_key_from_flow(&key, flow, &wc->masks, flow->in_port.odp_port,
2098                                true);
2099
2100         packet_str = ofp_packet_to_string(ofpbuf_data(packet),
2101                                           ofpbuf_size(packet));
2102
2103         odp_flow_key_format(ofpbuf_data(&key), ofpbuf_size(&key), &ds);
2104
2105         VLOG_DBG("%s: %s upcall:\n%s\n%s", dp->name,
2106                  dpif_upcall_type_to_string(type), ds_cstr(&ds), packet_str);
2107
2108         ofpbuf_uninit(&key);
2109         free(packet_str);
2110         ds_destroy(&ds);
2111     }
2112
2113     return dp->upcall_cb(packet, flow, type, userdata, actions, wc,
2114                          put_actions, dp->upcall_aux);
2115 }
2116
2117 static inline uint32_t
2118 dpif_netdev_packet_get_dp_hash(struct dpif_packet *packet,
2119                                const struct miniflow *mf)
2120 {
2121     uint32_t hash;
2122
2123     hash = dpif_packet_get_dp_hash(packet);
2124     if (OVS_UNLIKELY(!hash)) {
2125         hash = miniflow_hash_5tuple(mf, 0);
2126         dpif_packet_set_dp_hash(packet, hash);
2127     }
2128     return hash;
2129 }
2130
2131 struct packet_batch {
2132     unsigned int packet_count;
2133     unsigned int byte_count;
2134     uint16_t tcp_flags;
2135
2136     struct dp_netdev_flow *flow;
2137
2138     struct dpif_packet *packets[NETDEV_MAX_RX_BATCH];
2139     struct pkt_metadata md;
2140 };
2141
2142 static inline void
2143 packet_batch_update(struct packet_batch *batch, struct dpif_packet *packet,
2144                     const struct miniflow *mf)
2145 {
2146     batch->tcp_flags |= miniflow_get_tcp_flags(mf);
2147     batch->packets[batch->packet_count++] = packet;
2148     batch->byte_count += ofpbuf_size(&packet->ofpbuf);
2149 }
2150
2151 static inline void
2152 packet_batch_init(struct packet_batch *batch, struct dp_netdev_flow *flow,
2153                   struct pkt_metadata *md)
2154 {
2155     batch->flow = flow;
2156     batch->md = *md;
2157
2158     batch->packet_count = 0;
2159     batch->byte_count = 0;
2160     batch->tcp_flags = 0;
2161 }
2162
2163 static inline void
2164 packet_batch_execute(struct packet_batch *batch, struct dp_netdev *dp,
2165                      struct emc_cache *flow_cache)
2166 {
2167     struct dp_netdev_actions *actions;
2168     struct dp_netdev_flow *flow = batch->flow;
2169
2170     dp_netdev_flow_used(batch->flow, batch->packet_count, batch->byte_count,
2171                         batch->tcp_flags);
2172
2173     actions = dp_netdev_flow_get_actions(flow);
2174
2175     dp_netdev_execute_actions(dp, batch->packets, batch->packet_count, true,
2176                               &batch->md, flow_cache,
2177                               actions->actions, actions->size);
2178
2179     dp_netdev_count_packet(dp, DP_STAT_HIT, batch->packet_count);
2180 }
2181
2182 static inline bool
2183 dp_netdev_queue_batches(struct dpif_packet *pkt, struct pkt_metadata *md,
2184                         struct dp_netdev_flow *flow, const struct miniflow *mf,
2185                         struct packet_batch *batches, size_t *n_batches,
2186                         size_t max_batches)
2187 {
2188     struct packet_batch *batch = NULL;
2189     int j;
2190
2191     if (OVS_UNLIKELY(!flow)) {
2192         return false;
2193     }
2194     /* XXX: This O(n^2) algortihm makes sense if we're operating under the
2195      * assumption that the number of distinct flows (and therefore the
2196      * number of distinct batches) is quite small.  If this turns out not
2197      * to be the case, it may make sense to pre sort based on the
2198      * netdev_flow pointer.  That done we can get the appropriate batching
2199      * in O(n * log(n)) instead. */
2200     for (j = *n_batches - 1; j >= 0; j--) {
2201         if (batches[j].flow == flow) {
2202             batch = &batches[j];
2203             packet_batch_update(batch, pkt, mf);
2204             return true;
2205         }
2206     }
2207     if (OVS_UNLIKELY(*n_batches >= max_batches)) {
2208         return false;
2209     }
2210
2211     batch = &batches[(*n_batches)++];
2212     packet_batch_init(batch, flow, md);
2213     packet_batch_update(batch, pkt, mf);
2214     return true;
2215 }
2216
2217 static inline void
2218 dpif_packet_swap(struct dpif_packet **a, struct dpif_packet **b)
2219 {
2220     struct dpif_packet *tmp = *a;
2221     *a = *b;
2222     *b = tmp;
2223 }
2224
2225 /* Try to process all ('cnt') the 'packets' using only the exact match cache
2226  * 'flow_cache'. If a flow is not found for a packet 'packets[i]', or if there
2227  * is no matching batch for a packet's flow, the miniflow is copied into 'keys'
2228  * and the packet pointer is moved at the beginning of the 'packets' array.
2229  *
2230  * The function returns the number of packets that needs to be processed in the
2231  * 'packets' array (they have been moved to the beginning of the vector).
2232  */
2233 static inline size_t
2234 emc_processing(struct dp_netdev *dp, struct emc_cache *flow_cache,
2235                struct dpif_packet **packets, size_t cnt,
2236                struct pkt_metadata *md, struct netdev_flow_key *keys)
2237 {
2238     struct netdev_flow_key key;
2239     struct packet_batch batches[4];
2240     size_t n_batches, i;
2241     size_t notfound_cnt = 0;
2242
2243     n_batches = 0;
2244     miniflow_initialize(&key.flow, key.buf);
2245     for (i = 0; i < cnt; i++) {
2246         struct dp_netdev_flow *flow;
2247         uint32_t hash;
2248
2249         if (OVS_UNLIKELY(ofpbuf_size(&packets[i]->ofpbuf) < ETH_HEADER_LEN)) {
2250             dpif_packet_delete(packets[i]);
2251             continue;
2252         }
2253
2254         miniflow_extract(&packets[i]->ofpbuf, md, &key.flow);
2255
2256         hash = dpif_netdev_packet_get_dp_hash(packets[i], &key.flow);
2257
2258         flow = emc_lookup(flow_cache, &key.flow, hash);
2259         if (OVS_UNLIKELY(!dp_netdev_queue_batches(packets[i], md,
2260                                                   flow,  &key.flow,
2261                                                   batches, &n_batches,
2262                                                   ARRAY_SIZE(batches)))) {
2263             if (i != notfound_cnt) {
2264                 dpif_packet_swap(&packets[i], &packets[notfound_cnt]);
2265             }
2266
2267             keys[notfound_cnt++] = key;
2268         }
2269     }
2270
2271     for (i = 0; i < n_batches; i++) {
2272         packet_batch_execute(&batches[i], dp, flow_cache);
2273     }
2274
2275     return notfound_cnt;
2276 }
2277
2278 static inline void
2279 fast_path_processing(struct dp_netdev *dp, struct emc_cache *flow_cache,
2280                      struct dpif_packet **packets, size_t cnt,
2281                      struct pkt_metadata *md, struct netdev_flow_key *keys)
2282 {
2283 #if !defined(__CHECKER__) && !defined(_WIN32)
2284     const size_t PKT_ARRAY_SIZE = cnt;
2285 #else
2286     /* Sparse or MSVC doesn't like variable length array. */
2287     enum { PKT_ARRAY_SIZE = NETDEV_MAX_RX_BATCH };
2288 #endif
2289     struct packet_batch batches[PKT_ARRAY_SIZE];
2290     const struct miniflow *mfs[PKT_ARRAY_SIZE]; /* NULL at bad packets. */
2291     struct cls_rule *rules[PKT_ARRAY_SIZE];
2292     size_t n_batches, i;
2293     bool any_miss;
2294
2295     for (i = 0; i < cnt; i++) {
2296         mfs[i] = &keys[i].flow;
2297     }
2298     any_miss = !classifier_lookup_miniflow_batch(&dp->cls, mfs, rules, cnt);
2299     if (OVS_UNLIKELY(any_miss) && !fat_rwlock_tryrdlock(&dp->upcall_rwlock)) {
2300         uint64_t actions_stub[512 / 8], slow_stub[512 / 8];
2301         struct ofpbuf actions, put_actions;
2302         struct match match;
2303
2304         ofpbuf_use_stub(&actions, actions_stub, sizeof actions_stub);
2305         ofpbuf_use_stub(&put_actions, slow_stub, sizeof slow_stub);
2306
2307         for (i = 0; i < cnt; i++) {
2308             const struct dp_netdev_flow *netdev_flow;
2309             struct ofpbuf *add_actions;
2310             int error;
2311
2312             if (OVS_LIKELY(rules[i] || !mfs[i])) {
2313                 continue;
2314             }
2315
2316             /* It's possible that an earlier slow path execution installed
2317              * the rule this flow needs.  In this case, it's a lot cheaper
2318              * to catch it here than execute a miss. */
2319             netdev_flow = dp_netdev_lookup_flow(dp, mfs[i]);
2320             if (netdev_flow) {
2321                 rules[i] = CONST_CAST(struct cls_rule *, &netdev_flow->cr);
2322                 continue;
2323             }
2324
2325             miniflow_expand(mfs[i], &match.flow);
2326
2327             ofpbuf_clear(&actions);
2328             ofpbuf_clear(&put_actions);
2329
2330             error = dp_netdev_upcall(dp, packets[i], &match.flow, &match.wc,
2331                                       DPIF_UC_MISS, NULL, &actions,
2332                                       &put_actions);
2333             if (OVS_UNLIKELY(error && error != ENOSPC)) {
2334                 continue;
2335             }
2336
2337             /* We can't allow the packet batching in the next loop to execute
2338              * the actions.  Otherwise, if there are any slow path actions,
2339              * we'll send the packet up twice. */
2340             dp_netdev_execute_actions(dp, &packets[i], 1, false, md,
2341                                       flow_cache, ofpbuf_data(&actions),
2342                                       ofpbuf_size(&actions));
2343
2344             add_actions = ofpbuf_size(&put_actions)
2345                 ? &put_actions
2346                 : &actions;
2347
2348             ovs_mutex_lock(&dp->flow_mutex);
2349             /* XXX: There's a brief race where this flow could have already
2350              * been installed since we last did the flow lookup.  This could be
2351              * solved by moving the mutex lock outside the loop, but that's an
2352              * awful long time to be locking everyone out of making flow
2353              * installs.  If we move to a per-core classifier, it would be
2354              * reasonable. */
2355             if (OVS_LIKELY(error != ENOSPC)
2356                 && !dp_netdev_lookup_flow(dp, mfs[i])) {
2357                 dp_netdev_flow_add(dp, &match, ofpbuf_data(add_actions),
2358                                    ofpbuf_size(add_actions));
2359             }
2360             ovs_mutex_unlock(&dp->flow_mutex);
2361         }
2362
2363         ofpbuf_uninit(&actions);
2364         ofpbuf_uninit(&put_actions);
2365         fat_rwlock_unlock(&dp->upcall_rwlock);
2366     }
2367
2368     n_batches = 0;
2369     for (i = 0; i < cnt; i++) {
2370         struct dpif_packet *packet = packets[i];
2371         struct dp_netdev_flow *flow;
2372
2373         if (OVS_UNLIKELY(!rules[i] || !mfs[i])) {
2374             continue;
2375         }
2376
2377         flow = dp_netdev_flow_cast(rules[i]);
2378         emc_insert(flow_cache, mfs[i], dpif_packet_get_dp_hash(packet), flow);
2379         dp_netdev_queue_batches(packet, md, flow, mfs[i], batches, &n_batches,
2380                                 ARRAY_SIZE(batches));
2381     }
2382
2383     for (i = 0; i < n_batches; i++) {
2384         packet_batch_execute(&batches[i], dp, flow_cache);
2385     }
2386 }
2387
2388 static void
2389 dp_netdev_input(struct dp_netdev *dp, struct emc_cache *flow_cache,
2390                 struct dpif_packet **packets, int cnt, struct pkt_metadata *md)
2391 {
2392 #if !defined(__CHECKER__) && !defined(_WIN32)
2393     const size_t PKT_ARRAY_SIZE = cnt;
2394 #else
2395     /* Sparse or MSVC doesn't like variable length array. */
2396     enum { PKT_ARRAY_SIZE = NETDEV_MAX_RX_BATCH };
2397 #endif
2398     struct netdev_flow_key keys[PKT_ARRAY_SIZE];
2399     size_t newcnt;
2400
2401     newcnt = emc_processing(dp, flow_cache, packets, cnt, md, keys);
2402     if (OVS_UNLIKELY(newcnt)) {
2403         fast_path_processing(dp, flow_cache, packets, newcnt, md, keys);
2404     }
2405 }
2406
2407
2408 static void
2409 dp_netdev_port_input(struct dp_netdev *dp, struct emc_cache *flow_cache,
2410                      struct dpif_packet **packets, int cnt, odp_port_t port_no)
2411 {
2412     uint32_t *recirc_depth = recirc_depth_get();
2413     struct pkt_metadata md = PKT_METADATA_INITIALIZER(port_no);
2414
2415     *recirc_depth = 0;
2416     dp_netdev_input(dp, flow_cache, packets, cnt, &md);
2417 }
2418
2419 struct dp_netdev_execute_aux {
2420     struct dp_netdev *dp;
2421     struct emc_cache *flow_cache;
2422 };
2423
2424 static void
2425 dpif_netdev_register_upcall_cb(struct dpif *dpif, upcall_callback *cb,
2426                                void *aux)
2427 {
2428     struct dp_netdev *dp = get_dp_netdev(dpif);
2429     dp->upcall_aux = aux;
2430     dp->upcall_cb = cb;
2431 }
2432
2433 static void
2434 dp_execute_cb(void *aux_, struct dpif_packet **packets, int cnt,
2435               struct pkt_metadata *md,
2436               const struct nlattr *a, bool may_steal)
2437     OVS_NO_THREAD_SAFETY_ANALYSIS
2438 {
2439     struct dp_netdev_execute_aux *aux = aux_;
2440     uint32_t *depth = recirc_depth_get();
2441     struct dp_netdev *dp = aux->dp;
2442     int type = nl_attr_type(a);
2443     struct dp_netdev_port *p;
2444     int i;
2445
2446     switch ((enum ovs_action_attr)type) {
2447     case OVS_ACTION_ATTR_OUTPUT:
2448         p = dp_netdev_lookup_port(dp, u32_to_odp(nl_attr_get_u32(a)));
2449         if (OVS_LIKELY(p)) {
2450             netdev_send(p->netdev, packets, cnt, may_steal);
2451         } else if (may_steal) {
2452             for (i = 0; i < cnt; i++) {
2453                 dpif_packet_delete(packets[i]);
2454             }
2455         }
2456         break;
2457
2458     case OVS_ACTION_ATTR_USERSPACE:
2459         if (!fat_rwlock_tryrdlock(&dp->upcall_rwlock)) {
2460             const struct nlattr *userdata;
2461             struct ofpbuf actions;
2462             struct flow flow;
2463
2464             userdata = nl_attr_find_nested(a, OVS_USERSPACE_ATTR_USERDATA);
2465             ofpbuf_init(&actions, 0);
2466
2467             for (i = 0; i < cnt; i++) {
2468                 int error;
2469
2470                 ofpbuf_clear(&actions);
2471
2472                 flow_extract(&packets[i]->ofpbuf, md, &flow);
2473                 error = dp_netdev_upcall(dp, packets[i], &flow, NULL,
2474                                          DPIF_UC_ACTION, userdata, &actions,
2475                                          NULL);
2476                 if (!error || error == ENOSPC) {
2477                     dp_netdev_execute_actions(dp, &packets[i], 1, false, md,
2478                                               aux->flow_cache,
2479                                               ofpbuf_data(&actions),
2480                                               ofpbuf_size(&actions));
2481                 }
2482
2483                 if (may_steal) {
2484                     dpif_packet_delete(packets[i]);
2485                 }
2486             }
2487             ofpbuf_uninit(&actions);
2488             fat_rwlock_unlock(&dp->upcall_rwlock);
2489         }
2490
2491         break;
2492
2493     case OVS_ACTION_ATTR_HASH: {
2494         const struct ovs_action_hash *hash_act;
2495         uint32_t hash;
2496
2497         hash_act = nl_attr_get(a);
2498
2499         for (i = 0; i < cnt; i++) {
2500
2501             if (hash_act->hash_alg == OVS_HASH_ALG_L4) {
2502                 /* Hash need not be symmetric, nor does it need to include
2503                  * L2 fields. */
2504                 hash = hash_2words(dpif_packet_get_dp_hash(packets[i]),
2505                                    hash_act->hash_basis);
2506             } else {
2507                 VLOG_WARN("Unknown hash algorithm specified "
2508                           "for the hash action.");
2509                 hash = 2;
2510             }
2511
2512             if (!hash) {
2513                 hash = 1; /* 0 is not valid */
2514             }
2515
2516             if (i == 0) {
2517                 md->dp_hash = hash;
2518             }
2519             dpif_packet_set_dp_hash(packets[i], hash);
2520         }
2521         break;
2522     }
2523
2524     case OVS_ACTION_ATTR_RECIRC:
2525         if (*depth < MAX_RECIRC_DEPTH) {
2526
2527             (*depth)++;
2528             for (i = 0; i < cnt; i++) {
2529                 struct dpif_packet *recirc_pkt;
2530                 struct pkt_metadata recirc_md = *md;
2531
2532                 recirc_pkt = (may_steal) ? packets[i]
2533                                     : dpif_packet_clone(packets[i]);
2534
2535                 recirc_md.recirc_id = nl_attr_get_u32(a);
2536
2537                 /* Hash is private to each packet */
2538                 recirc_md.dp_hash = dpif_packet_get_dp_hash(packets[i]);
2539
2540                 dp_netdev_input(dp, aux->flow_cache, &recirc_pkt, 1,
2541                                 &recirc_md);
2542             }
2543             (*depth)--;
2544
2545             break;
2546         } else {
2547             VLOG_WARN("Packet dropped. Max recirculation depth exceeded.");
2548             if (may_steal) {
2549                 for (i = 0; i < cnt; i++) {
2550                     dpif_packet_delete(packets[i]);
2551                 }
2552             }
2553         }
2554         break;
2555
2556     case OVS_ACTION_ATTR_PUSH_VLAN:
2557     case OVS_ACTION_ATTR_POP_VLAN:
2558     case OVS_ACTION_ATTR_PUSH_MPLS:
2559     case OVS_ACTION_ATTR_POP_MPLS:
2560     case OVS_ACTION_ATTR_SET:
2561     case OVS_ACTION_ATTR_SET_MASKED:
2562     case OVS_ACTION_ATTR_SAMPLE:
2563     case OVS_ACTION_ATTR_UNSPEC:
2564     case __OVS_ACTION_ATTR_MAX:
2565         OVS_NOT_REACHED();
2566     }
2567 }
2568
2569 static void
2570 dp_netdev_execute_actions(struct dp_netdev *dp,
2571                           struct dpif_packet **packets, int cnt,
2572                           bool may_steal, struct pkt_metadata *md,
2573                           struct emc_cache *flow_cache,
2574                           const struct nlattr *actions, size_t actions_len)
2575 {
2576     struct dp_netdev_execute_aux aux = {dp, flow_cache};
2577
2578     odp_execute_actions(&aux, packets, cnt, may_steal, md, actions,
2579                         actions_len, dp_execute_cb);
2580 }
2581
2582 const struct dpif_class dpif_netdev_class = {
2583     "netdev",
2584     dpif_netdev_enumerate,
2585     dpif_netdev_port_open_type,
2586     dpif_netdev_open,
2587     dpif_netdev_close,
2588     dpif_netdev_destroy,
2589     dpif_netdev_run,
2590     dpif_netdev_wait,
2591     dpif_netdev_get_stats,
2592     dpif_netdev_port_add,
2593     dpif_netdev_port_del,
2594     dpif_netdev_port_query_by_number,
2595     dpif_netdev_port_query_by_name,
2596     NULL,                       /* port_get_pid */
2597     dpif_netdev_port_dump_start,
2598     dpif_netdev_port_dump_next,
2599     dpif_netdev_port_dump_done,
2600     dpif_netdev_port_poll,
2601     dpif_netdev_port_poll_wait,
2602     dpif_netdev_flow_flush,
2603     dpif_netdev_flow_dump_create,
2604     dpif_netdev_flow_dump_destroy,
2605     dpif_netdev_flow_dump_thread_create,
2606     dpif_netdev_flow_dump_thread_destroy,
2607     dpif_netdev_flow_dump_next,
2608     dpif_netdev_operate,
2609     NULL,                       /* recv_set */
2610     NULL,                       /* handlers_set */
2611     dpif_netdev_queue_to_priority,
2612     NULL,                       /* recv */
2613     NULL,                       /* recv_wait */
2614     NULL,                       /* recv_purge */
2615     dpif_netdev_register_upcall_cb,
2616     dpif_netdev_enable_upcall,
2617     dpif_netdev_disable_upcall,
2618 };
2619
2620 static void
2621 dpif_dummy_change_port_number(struct unixctl_conn *conn, int argc OVS_UNUSED,
2622                               const char *argv[], void *aux OVS_UNUSED)
2623 {
2624     struct dp_netdev_port *old_port;
2625     struct dp_netdev_port *new_port;
2626     struct dp_netdev *dp;
2627     odp_port_t port_no;
2628
2629     ovs_mutex_lock(&dp_netdev_mutex);
2630     dp = shash_find_data(&dp_netdevs, argv[1]);
2631     if (!dp || !dpif_netdev_class_is_dummy(dp->class)) {
2632         ovs_mutex_unlock(&dp_netdev_mutex);
2633         unixctl_command_reply_error(conn, "unknown datapath or not a dummy");
2634         return;
2635     }
2636     ovs_refcount_ref(&dp->ref_cnt);
2637     ovs_mutex_unlock(&dp_netdev_mutex);
2638
2639     ovs_mutex_lock(&dp->port_mutex);
2640     if (get_port_by_name(dp, argv[2], &old_port)) {
2641         unixctl_command_reply_error(conn, "unknown port");
2642         goto exit;
2643     }
2644
2645     port_no = u32_to_odp(atoi(argv[3]));
2646     if (!port_no || port_no == ODPP_NONE) {
2647         unixctl_command_reply_error(conn, "bad port number");
2648         goto exit;
2649     }
2650     if (dp_netdev_lookup_port(dp, port_no)) {
2651         unixctl_command_reply_error(conn, "port number already in use");
2652         goto exit;
2653     }
2654
2655     /* Remove old port. */
2656     cmap_remove(&dp->ports, &old_port->node, hash_port_no(old_port->port_no));
2657     ovsrcu_postpone(free, old_port);
2658
2659     /* Insert new port (cmap semantics mean we cannot re-insert 'old_port'). */
2660     new_port = xmemdup(old_port, sizeof *old_port);
2661     new_port->port_no = port_no;
2662     cmap_insert(&dp->ports, &new_port->node, hash_port_no(port_no));
2663
2664     seq_change(dp->port_seq);
2665     unixctl_command_reply(conn, NULL);
2666
2667 exit:
2668     ovs_mutex_unlock(&dp->port_mutex);
2669     dp_netdev_unref(dp);
2670 }
2671
2672 static void
2673 dpif_dummy_delete_port(struct unixctl_conn *conn, int argc OVS_UNUSED,
2674                        const char *argv[], void *aux OVS_UNUSED)
2675 {
2676     struct dp_netdev_port *port;
2677     struct dp_netdev *dp;
2678
2679     ovs_mutex_lock(&dp_netdev_mutex);
2680     dp = shash_find_data(&dp_netdevs, argv[1]);
2681     if (!dp || !dpif_netdev_class_is_dummy(dp->class)) {
2682         ovs_mutex_unlock(&dp_netdev_mutex);
2683         unixctl_command_reply_error(conn, "unknown datapath or not a dummy");
2684         return;
2685     }
2686     ovs_refcount_ref(&dp->ref_cnt);
2687     ovs_mutex_unlock(&dp_netdev_mutex);
2688
2689     ovs_mutex_lock(&dp->port_mutex);
2690     if (get_port_by_name(dp, argv[2], &port)) {
2691         unixctl_command_reply_error(conn, "unknown port");
2692     } else if (port->port_no == ODPP_LOCAL) {
2693         unixctl_command_reply_error(conn, "can't delete local port");
2694     } else {
2695         do_del_port(dp, port);
2696         unixctl_command_reply(conn, NULL);
2697     }
2698     ovs_mutex_unlock(&dp->port_mutex);
2699
2700     dp_netdev_unref(dp);
2701 }
2702
2703 static void
2704 dpif_dummy_register__(const char *type)
2705 {
2706     struct dpif_class *class;
2707
2708     class = xmalloc(sizeof *class);
2709     *class = dpif_netdev_class;
2710     class->type = xstrdup(type);
2711     dp_register_provider(class);
2712 }
2713
2714 void
2715 dpif_dummy_register(bool override)
2716 {
2717     if (override) {
2718         struct sset types;
2719         const char *type;
2720
2721         sset_init(&types);
2722         dp_enumerate_types(&types);
2723         SSET_FOR_EACH (type, &types) {
2724             if (!dp_unregister_provider(type)) {
2725                 dpif_dummy_register__(type);
2726             }
2727         }
2728         sset_destroy(&types);
2729     }
2730
2731     dpif_dummy_register__("dummy");
2732
2733     unixctl_command_register("dpif-dummy/change-port-number",
2734                              "DP PORT NEW-NUMBER",
2735                              3, 3, dpif_dummy_change_port_number, NULL);
2736     unixctl_command_register("dpif-dummy/delete-port", "DP PORT",
2737                              2, 2, dpif_dummy_delete_port, NULL);
2738 }