ofproto-dpif-xlate: Handle oversized actions more gracefully.
[sliver-openvswitch.git] / lib / dpif.c
1 /*
2  * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013 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-provider.h"
19
20 #include <ctype.h>
21 #include <errno.h>
22 #include <inttypes.h>
23 #include <stdlib.h>
24 #include <string.h>
25
26 #include "coverage.h"
27 #include "dynamic-string.h"
28 #include "flow.h"
29 #include "netdev.h"
30 #include "netlink.h"
31 #include "odp-execute.h"
32 #include "odp-util.h"
33 #include "ofp-errors.h"
34 #include "ofp-print.h"
35 #include "ofp-util.h"
36 #include "ofpbuf.h"
37 #include "packets.h"
38 #include "poll-loop.h"
39 #include "shash.h"
40 #include "sset.h"
41 #include "timeval.h"
42 #include "util.h"
43 #include "valgrind.h"
44 #include "vlog.h"
45
46 VLOG_DEFINE_THIS_MODULE(dpif);
47
48 COVERAGE_DEFINE(dpif_destroy);
49 COVERAGE_DEFINE(dpif_port_add);
50 COVERAGE_DEFINE(dpif_port_del);
51 COVERAGE_DEFINE(dpif_flow_flush);
52 COVERAGE_DEFINE(dpif_flow_get);
53 COVERAGE_DEFINE(dpif_flow_put);
54 COVERAGE_DEFINE(dpif_flow_del);
55 COVERAGE_DEFINE(dpif_execute);
56 COVERAGE_DEFINE(dpif_purge);
57 COVERAGE_DEFINE(dpif_execute_with_help);
58
59 static const struct dpif_class *base_dpif_classes[] = {
60 #ifdef LINUX_DATAPATH
61     &dpif_linux_class,
62 #endif
63     &dpif_netdev_class,
64 };
65
66 struct registered_dpif_class {
67     const struct dpif_class *dpif_class;
68     int refcount;
69 };
70 static struct shash dpif_classes = SHASH_INITIALIZER(&dpif_classes);
71 static struct sset dpif_blacklist = SSET_INITIALIZER(&dpif_blacklist);
72
73 /* Protects 'dpif_classes', including the refcount, and 'dpif_blacklist'. */
74 static struct ovs_mutex dpif_mutex = OVS_MUTEX_INITIALIZER;
75
76 /* Rate limit for individual messages going to or from the datapath, output at
77  * DBG level.  This is very high because, if these are enabled, it is because
78  * we really need to see them. */
79 static struct vlog_rate_limit dpmsg_rl = VLOG_RATE_LIMIT_INIT(600, 600);
80
81 /* Not really much point in logging many dpif errors. */
82 static struct vlog_rate_limit error_rl = VLOG_RATE_LIMIT_INIT(60, 5);
83
84 static void log_flow_message(const struct dpif *dpif, int error,
85                              const char *operation,
86                              const struct nlattr *key, size_t key_len,
87                              const struct nlattr *mask, size_t mask_len,
88                              const struct dpif_flow_stats *stats,
89                              const struct nlattr *actions, size_t actions_len);
90 static void log_operation(const struct dpif *, const char *operation,
91                           int error);
92 static bool should_log_flow_message(int error);
93 static void log_flow_put_message(struct dpif *, const struct dpif_flow_put *,
94                                  int error);
95 static void log_flow_del_message(struct dpif *, const struct dpif_flow_del *,
96                                  int error);
97 static void log_execute_message(struct dpif *, const struct dpif_execute *,
98                                 int error);
99
100 static void
101 dp_initialize(void)
102 {
103     static struct ovsthread_once once = OVSTHREAD_ONCE_INITIALIZER;
104
105     if (ovsthread_once_start(&once)) {
106         int i;
107
108         for (i = 0; i < ARRAY_SIZE(base_dpif_classes); i++) {
109             dp_register_provider(base_dpif_classes[i]);
110         }
111         ovsthread_once_done(&once);
112     }
113 }
114
115 static int
116 dp_register_provider__(const struct dpif_class *new_class)
117 {
118     struct registered_dpif_class *registered_class;
119
120     if (sset_contains(&dpif_blacklist, new_class->type)) {
121         VLOG_DBG("attempted to register blacklisted provider: %s",
122                  new_class->type);
123         return EINVAL;
124     }
125
126     if (shash_find(&dpif_classes, new_class->type)) {
127         VLOG_WARN("attempted to register duplicate datapath provider: %s",
128                   new_class->type);
129         return EEXIST;
130     }
131
132     registered_class = xmalloc(sizeof *registered_class);
133     registered_class->dpif_class = new_class;
134     registered_class->refcount = 0;
135
136     shash_add(&dpif_classes, new_class->type, registered_class);
137
138     return 0;
139 }
140
141 /* Registers a new datapath provider.  After successful registration, new
142  * datapaths of that type can be opened using dpif_open(). */
143 int
144 dp_register_provider(const struct dpif_class *new_class)
145 {
146     int error;
147
148     ovs_mutex_lock(&dpif_mutex);
149     error = dp_register_provider__(new_class);
150     ovs_mutex_unlock(&dpif_mutex);
151
152     return error;
153 }
154
155 /* Unregisters a datapath provider.  'type' must have been previously
156  * registered and not currently be in use by any dpifs.  After unregistration
157  * new datapaths of that type cannot be opened using dpif_open(). */
158 static int
159 dp_unregister_provider__(const char *type)
160 {
161     struct shash_node *node;
162     struct registered_dpif_class *registered_class;
163
164     node = shash_find(&dpif_classes, type);
165     if (!node) {
166         VLOG_WARN("attempted to unregister a datapath provider that is not "
167                   "registered: %s", type);
168         return EAFNOSUPPORT;
169     }
170
171     registered_class = node->data;
172     if (registered_class->refcount) {
173         VLOG_WARN("attempted to unregister in use datapath provider: %s", type);
174         return EBUSY;
175     }
176
177     shash_delete(&dpif_classes, node);
178     free(registered_class);
179
180     return 0;
181 }
182
183 /* Unregisters a datapath provider.  'type' must have been previously
184  * registered and not currently be in use by any dpifs.  After unregistration
185  * new datapaths of that type cannot be opened using dpif_open(). */
186 int
187 dp_unregister_provider(const char *type)
188 {
189     int error;
190
191     dp_initialize();
192
193     ovs_mutex_lock(&dpif_mutex);
194     error = dp_unregister_provider__(type);
195     ovs_mutex_unlock(&dpif_mutex);
196
197     return error;
198 }
199
200 /* Blacklists a provider.  Causes future calls of dp_register_provider() with
201  * a dpif_class which implements 'type' to fail. */
202 void
203 dp_blacklist_provider(const char *type)
204 {
205     ovs_mutex_lock(&dpif_mutex);
206     sset_add(&dpif_blacklist, type);
207     ovs_mutex_unlock(&dpif_mutex);
208 }
209
210 /* Clears 'types' and enumerates the types of all currently registered datapath
211  * providers into it.  The caller must first initialize the sset. */
212 void
213 dp_enumerate_types(struct sset *types)
214 {
215     struct shash_node *node;
216
217     dp_initialize();
218     sset_clear(types);
219
220     ovs_mutex_lock(&dpif_mutex);
221     SHASH_FOR_EACH(node, &dpif_classes) {
222         const struct registered_dpif_class *registered_class = node->data;
223         sset_add(types, registered_class->dpif_class->type);
224     }
225     ovs_mutex_unlock(&dpif_mutex);
226 }
227
228 static void
229 dp_class_unref(struct registered_dpif_class *rc)
230 {
231     ovs_mutex_lock(&dpif_mutex);
232     ovs_assert(rc->refcount);
233     rc->refcount--;
234     ovs_mutex_unlock(&dpif_mutex);
235 }
236
237 static struct registered_dpif_class *
238 dp_class_lookup(const char *type)
239 {
240     struct registered_dpif_class *rc;
241
242     ovs_mutex_lock(&dpif_mutex);
243     rc = shash_find_data(&dpif_classes, type);
244     if (rc) {
245         rc->refcount++;
246     }
247     ovs_mutex_unlock(&dpif_mutex);
248
249     return rc;
250 }
251
252 /* Clears 'names' and enumerates the names of all known created datapaths with
253  * the given 'type'.  The caller must first initialize the sset.  Returns 0 if
254  * successful, otherwise a positive errno value.
255  *
256  * Some kinds of datapaths might not be practically enumerable.  This is not
257  * considered an error. */
258 int
259 dp_enumerate_names(const char *type, struct sset *names)
260 {
261     struct registered_dpif_class *registered_class;
262     const struct dpif_class *dpif_class;
263     int error;
264
265     dp_initialize();
266     sset_clear(names);
267
268     registered_class = dp_class_lookup(type);
269     if (!registered_class) {
270         VLOG_WARN("could not enumerate unknown type: %s", type);
271         return EAFNOSUPPORT;
272     }
273
274     dpif_class = registered_class->dpif_class;
275     error = dpif_class->enumerate ? dpif_class->enumerate(names) : 0;
276     if (error) {
277         VLOG_WARN("failed to enumerate %s datapaths: %s", dpif_class->type,
278                    ovs_strerror(error));
279     }
280     dp_class_unref(registered_class);
281
282     return error;
283 }
284
285 /* Parses 'datapath_name_', which is of the form [type@]name into its
286  * component pieces.  'name' and 'type' must be freed by the caller.
287  *
288  * The returned 'type' is normalized, as if by dpif_normalize_type(). */
289 void
290 dp_parse_name(const char *datapath_name_, char **name, char **type)
291 {
292     char *datapath_name = xstrdup(datapath_name_);
293     char *separator;
294
295     separator = strchr(datapath_name, '@');
296     if (separator) {
297         *separator = '\0';
298         *type = datapath_name;
299         *name = xstrdup(dpif_normalize_type(separator + 1));
300     } else {
301         *name = datapath_name;
302         *type = xstrdup(dpif_normalize_type(NULL));
303     }
304 }
305
306 static int
307 do_open(const char *name, const char *type, bool create, struct dpif **dpifp)
308 {
309     struct dpif *dpif = NULL;
310     int error;
311     struct registered_dpif_class *registered_class;
312
313     dp_initialize();
314
315     type = dpif_normalize_type(type);
316     registered_class = dp_class_lookup(type);
317     if (!registered_class) {
318         VLOG_WARN("could not create datapath %s of unknown type %s", name,
319                   type);
320         error = EAFNOSUPPORT;
321         goto exit;
322     }
323
324     error = registered_class->dpif_class->open(registered_class->dpif_class,
325                                                name, create, &dpif);
326     if (!error) {
327         ovs_assert(dpif->dpif_class == registered_class->dpif_class);
328     } else {
329         dp_class_unref(registered_class);
330     }
331
332 exit:
333     *dpifp = error ? NULL : dpif;
334     return error;
335 }
336
337 /* Tries to open an existing datapath named 'name' and type 'type'.  Will fail
338  * if no datapath with 'name' and 'type' exists.  'type' may be either NULL or
339  * the empty string to specify the default system type.  Returns 0 if
340  * successful, otherwise a positive errno value.  On success stores a pointer
341  * to the datapath in '*dpifp', otherwise a null pointer. */
342 int
343 dpif_open(const char *name, const char *type, struct dpif **dpifp)
344 {
345     return do_open(name, type, false, dpifp);
346 }
347
348 /* Tries to create and open a new datapath with the given 'name' and 'type'.
349  * 'type' may be either NULL or the empty string to specify the default system
350  * type.  Will fail if a datapath with 'name' and 'type' already exists.
351  * Returns 0 if successful, otherwise a positive errno value.  On success
352  * stores a pointer to the datapath in '*dpifp', otherwise a null pointer. */
353 int
354 dpif_create(const char *name, const char *type, struct dpif **dpifp)
355 {
356     return do_open(name, type, true, dpifp);
357 }
358
359 /* Tries to open a datapath with the given 'name' and 'type', creating it if it
360  * does not exist.  'type' may be either NULL or the empty string to specify
361  * the default system type.  Returns 0 if successful, otherwise a positive
362  * errno value. On success stores a pointer to the datapath in '*dpifp',
363  * otherwise a null pointer. */
364 int
365 dpif_create_and_open(const char *name, const char *type, struct dpif **dpifp)
366 {
367     int error;
368
369     error = dpif_create(name, type, dpifp);
370     if (error == EEXIST || error == EBUSY) {
371         error = dpif_open(name, type, dpifp);
372         if (error) {
373             VLOG_WARN("datapath %s already exists but cannot be opened: %s",
374                       name, ovs_strerror(error));
375         }
376     } else if (error) {
377         VLOG_WARN("failed to create datapath %s: %s",
378                   name, ovs_strerror(error));
379     }
380     return error;
381 }
382
383 /* Closes and frees the connection to 'dpif'.  Does not destroy the datapath
384  * itself; call dpif_delete() first, instead, if that is desirable. */
385 void
386 dpif_close(struct dpif *dpif)
387 {
388     if (dpif) {
389         struct registered_dpif_class *rc;
390
391         rc = shash_find_data(&dpif_classes, dpif->dpif_class->type);
392         dpif_uninit(dpif, true);
393         dp_class_unref(rc);
394     }
395 }
396
397 /* Performs periodic work needed by 'dpif'. */
398 void
399 dpif_run(struct dpif *dpif)
400 {
401     if (dpif->dpif_class->run) {
402         dpif->dpif_class->run(dpif);
403     }
404 }
405
406 /* Arranges for poll_block() to wake up when dp_run() needs to be called for
407  * 'dpif'. */
408 void
409 dpif_wait(struct dpif *dpif)
410 {
411     if (dpif->dpif_class->wait) {
412         dpif->dpif_class->wait(dpif);
413     }
414 }
415
416 /* Returns the name of datapath 'dpif' prefixed with the type
417  * (for use in log messages). */
418 const char *
419 dpif_name(const struct dpif *dpif)
420 {
421     return dpif->full_name;
422 }
423
424 /* Returns the name of datapath 'dpif' without the type
425  * (for use in device names). */
426 const char *
427 dpif_base_name(const struct dpif *dpif)
428 {
429     return dpif->base_name;
430 }
431
432 /* Returns the type of datapath 'dpif'. */
433 const char *
434 dpif_type(const struct dpif *dpif)
435 {
436     return dpif->dpif_class->type;
437 }
438
439 /* Returns the fully spelled out name for the given datapath 'type'.
440  *
441  * Normalized type string can be compared with strcmp().  Unnormalized type
442  * string might be the same even if they have different spellings. */
443 const char *
444 dpif_normalize_type(const char *type)
445 {
446     return type && type[0] ? type : "system";
447 }
448
449 /* Destroys the datapath that 'dpif' is connected to, first removing all of its
450  * ports.  After calling this function, it does not make sense to pass 'dpif'
451  * to any functions other than dpif_name() or dpif_close(). */
452 int
453 dpif_delete(struct dpif *dpif)
454 {
455     int error;
456
457     COVERAGE_INC(dpif_destroy);
458
459     error = dpif->dpif_class->destroy(dpif);
460     log_operation(dpif, "delete", error);
461     return error;
462 }
463
464 /* Retrieves statistics for 'dpif' into 'stats'.  Returns 0 if successful,
465  * otherwise a positive errno value. */
466 int
467 dpif_get_dp_stats(const struct dpif *dpif, struct dpif_dp_stats *stats)
468 {
469     int error = dpif->dpif_class->get_stats(dpif, stats);
470     if (error) {
471         memset(stats, 0, sizeof *stats);
472     }
473     log_operation(dpif, "get_stats", error);
474     return error;
475 }
476
477 const char *
478 dpif_port_open_type(const char *datapath_type, const char *port_type)
479 {
480     struct registered_dpif_class *rc;
481
482     datapath_type = dpif_normalize_type(datapath_type);
483
484     ovs_mutex_lock(&dpif_mutex);
485     rc = shash_find_data(&dpif_classes, datapath_type);
486     if (rc && rc->dpif_class->port_open_type) {
487         port_type = rc->dpif_class->port_open_type(rc->dpif_class, port_type);
488     }
489     ovs_mutex_unlock(&dpif_mutex);
490
491     return port_type;
492 }
493
494 /* Attempts to add 'netdev' as a port on 'dpif'.  If 'port_nop' is
495  * non-null and its value is not ODPP_NONE, then attempts to use the
496  * value as the port number.
497  *
498  * If successful, returns 0 and sets '*port_nop' to the new port's port
499  * number (if 'port_nop' is non-null).  On failure, returns a positive
500  * errno value and sets '*port_nop' to ODPP_NONE (if 'port_nop' is
501  * non-null). */
502 int
503 dpif_port_add(struct dpif *dpif, struct netdev *netdev, odp_port_t *port_nop)
504 {
505     const char *netdev_name = netdev_get_name(netdev);
506     odp_port_t port_no = ODPP_NONE;
507     int error;
508
509     COVERAGE_INC(dpif_port_add);
510
511     if (port_nop) {
512         port_no = *port_nop;
513     }
514
515     error = dpif->dpif_class->port_add(dpif, netdev, &port_no);
516     if (!error) {
517         VLOG_DBG_RL(&dpmsg_rl, "%s: added %s as port %"PRIu32,
518                     dpif_name(dpif), netdev_name, port_no);
519     } else {
520         VLOG_WARN_RL(&error_rl, "%s: failed to add %s as port: %s",
521                      dpif_name(dpif), netdev_name, ovs_strerror(error));
522         port_no = ODPP_NONE;
523     }
524     if (port_nop) {
525         *port_nop = port_no;
526     }
527     return error;
528 }
529
530 /* Attempts to remove 'dpif''s port number 'port_no'.  Returns 0 if successful,
531  * otherwise a positive errno value. */
532 int
533 dpif_port_del(struct dpif *dpif, odp_port_t port_no)
534 {
535     int error;
536
537     COVERAGE_INC(dpif_port_del);
538
539     error = dpif->dpif_class->port_del(dpif, port_no);
540     if (!error) {
541         VLOG_DBG_RL(&dpmsg_rl, "%s: port_del(%"PRIu32")",
542                     dpif_name(dpif), port_no);
543     } else {
544         log_operation(dpif, "port_del", error);
545     }
546     return error;
547 }
548
549 /* Makes a deep copy of 'src' into 'dst'. */
550 void
551 dpif_port_clone(struct dpif_port *dst, const struct dpif_port *src)
552 {
553     dst->name = xstrdup(src->name);
554     dst->type = xstrdup(src->type);
555     dst->port_no = src->port_no;
556 }
557
558 /* Frees memory allocated to members of 'dpif_port'.
559  *
560  * Do not call this function on a dpif_port obtained from
561  * dpif_port_dump_next(): that function retains ownership of the data in the
562  * dpif_port. */
563 void
564 dpif_port_destroy(struct dpif_port *dpif_port)
565 {
566     free(dpif_port->name);
567     free(dpif_port->type);
568 }
569
570 /* Checks if port named 'devname' exists in 'dpif'.  If so, returns
571  * true; otherwise, returns false. */
572 bool
573 dpif_port_exists(const struct dpif *dpif, const char *devname)
574 {
575     int error = dpif->dpif_class->port_query_by_name(dpif, devname, NULL);
576     if (error != 0 && error != ENOENT && error != ENODEV) {
577         VLOG_WARN_RL(&error_rl, "%s: failed to query port %s: %s",
578                      dpif_name(dpif), devname, ovs_strerror(error));
579     }
580
581     return !error;
582 }
583
584 /* Looks up port number 'port_no' in 'dpif'.  On success, returns 0 and
585  * initializes '*port' appropriately; on failure, returns a positive errno
586  * value.
587  *
588  * The caller owns the data in 'port' and must free it with
589  * dpif_port_destroy() when it is no longer needed. */
590 int
591 dpif_port_query_by_number(const struct dpif *dpif, odp_port_t port_no,
592                           struct dpif_port *port)
593 {
594     int error = dpif->dpif_class->port_query_by_number(dpif, port_no, port);
595     if (!error) {
596         VLOG_DBG_RL(&dpmsg_rl, "%s: port %"PRIu32" is device %s",
597                     dpif_name(dpif), port_no, port->name);
598     } else {
599         memset(port, 0, sizeof *port);
600         VLOG_WARN_RL(&error_rl, "%s: failed to query port %"PRIu32": %s",
601                      dpif_name(dpif), port_no, ovs_strerror(error));
602     }
603     return error;
604 }
605
606 /* Looks up port named 'devname' in 'dpif'.  On success, returns 0 and
607  * initializes '*port' appropriately; on failure, returns a positive errno
608  * value.
609  *
610  * The caller owns the data in 'port' and must free it with
611  * dpif_port_destroy() when it is no longer needed. */
612 int
613 dpif_port_query_by_name(const struct dpif *dpif, const char *devname,
614                         struct dpif_port *port)
615 {
616     int error = dpif->dpif_class->port_query_by_name(dpif, devname, port);
617     if (!error) {
618         VLOG_DBG_RL(&dpmsg_rl, "%s: device %s is on port %"PRIu32,
619                     dpif_name(dpif), devname, port->port_no);
620     } else {
621         memset(port, 0, sizeof *port);
622
623         /* For ENOENT or ENODEV we use DBG level because the caller is probably
624          * interested in whether 'dpif' actually has a port 'devname', so that
625          * it's not an issue worth logging if it doesn't.  Other errors are
626          * uncommon and more likely to indicate a real problem. */
627         VLOG_RL(&error_rl,
628                 error == ENOENT || error == ENODEV ? VLL_DBG : VLL_WARN,
629                 "%s: failed to query port %s: %s",
630                 dpif_name(dpif), devname, ovs_strerror(error));
631     }
632     return error;
633 }
634
635 /* Returns one greater than the maximum port number accepted in flow
636  * actions. */
637 uint32_t
638 dpif_get_max_ports(const struct dpif *dpif)
639 {
640     return dpif->dpif_class->get_max_ports(dpif);
641 }
642
643 /* Returns the Netlink PID value to supply in OVS_ACTION_ATTR_USERSPACE actions
644  * as the OVS_USERSPACE_ATTR_PID attribute's value, for use in flows whose
645  * packets arrived on port 'port_no'.
646  *
647  * A 'port_no' of ODPP_NONE is a special case: it returns a reserved PID, not
648  * allocated to any port, that the client may use for special purposes.
649  *
650  * The return value is only meaningful when DPIF_UC_ACTION has been enabled in
651  * the 'dpif''s listen mask.  It is allowed to change when DPIF_UC_ACTION is
652  * disabled and then re-enabled, so a client that does that must be prepared to
653  * update all of the flows that it installed that contain
654  * OVS_ACTION_ATTR_USERSPACE actions. */
655 uint32_t
656 dpif_port_get_pid(const struct dpif *dpif, odp_port_t port_no)
657 {
658     return (dpif->dpif_class->port_get_pid
659             ? (dpif->dpif_class->port_get_pid)(dpif, port_no)
660             : 0);
661 }
662
663 /* Looks up port number 'port_no' in 'dpif'.  On success, returns 0 and copies
664  * the port's name into the 'name_size' bytes in 'name', ensuring that the
665  * result is null-terminated.  On failure, returns a positive errno value and
666  * makes 'name' the empty string. */
667 int
668 dpif_port_get_name(struct dpif *dpif, odp_port_t port_no,
669                    char *name, size_t name_size)
670 {
671     struct dpif_port port;
672     int error;
673
674     ovs_assert(name_size > 0);
675
676     error = dpif_port_query_by_number(dpif, port_no, &port);
677     if (!error) {
678         ovs_strlcpy(name, port.name, name_size);
679         dpif_port_destroy(&port);
680     } else {
681         *name = '\0';
682     }
683     return error;
684 }
685
686 /* Initializes 'dump' to begin dumping the ports in a dpif.
687  *
688  * This function provides no status indication.  An error status for the entire
689  * dump operation is provided when it is completed by calling
690  * dpif_port_dump_done().
691  */
692 void
693 dpif_port_dump_start(struct dpif_port_dump *dump, const struct dpif *dpif)
694 {
695     dump->dpif = dpif;
696     dump->error = dpif->dpif_class->port_dump_start(dpif, &dump->state);
697     log_operation(dpif, "port_dump_start", dump->error);
698 }
699
700 /* Attempts to retrieve another port from 'dump', which must have been
701  * initialized with dpif_port_dump_start().  On success, stores a new dpif_port
702  * into 'port' and returns true.  On failure, returns false.
703  *
704  * Failure might indicate an actual error or merely that the last port has been
705  * dumped.  An error status for the entire dump operation is provided when it
706  * is completed by calling dpif_port_dump_done().
707  *
708  * The dpif owns the data stored in 'port'.  It will remain valid until at
709  * least the next time 'dump' is passed to dpif_port_dump_next() or
710  * dpif_port_dump_done(). */
711 bool
712 dpif_port_dump_next(struct dpif_port_dump *dump, struct dpif_port *port)
713 {
714     const struct dpif *dpif = dump->dpif;
715
716     if (dump->error) {
717         return false;
718     }
719
720     dump->error = dpif->dpif_class->port_dump_next(dpif, dump->state, port);
721     if (dump->error == EOF) {
722         VLOG_DBG_RL(&dpmsg_rl, "%s: dumped all ports", dpif_name(dpif));
723     } else {
724         log_operation(dpif, "port_dump_next", dump->error);
725     }
726
727     if (dump->error) {
728         dpif->dpif_class->port_dump_done(dpif, dump->state);
729         return false;
730     }
731     return true;
732 }
733
734 /* Completes port table dump operation 'dump', which must have been initialized
735  * with dpif_port_dump_start().  Returns 0 if the dump operation was
736  * error-free, otherwise a positive errno value describing the problem. */
737 int
738 dpif_port_dump_done(struct dpif_port_dump *dump)
739 {
740     const struct dpif *dpif = dump->dpif;
741     if (!dump->error) {
742         dump->error = dpif->dpif_class->port_dump_done(dpif, dump->state);
743         log_operation(dpif, "port_dump_done", dump->error);
744     }
745     return dump->error == EOF ? 0 : dump->error;
746 }
747
748 /* Polls for changes in the set of ports in 'dpif'.  If the set of ports in
749  * 'dpif' has changed, this function does one of the following:
750  *
751  * - Stores the name of the device that was added to or deleted from 'dpif' in
752  *   '*devnamep' and returns 0.  The caller is responsible for freeing
753  *   '*devnamep' (with free()) when it no longer needs it.
754  *
755  * - Returns ENOBUFS and sets '*devnamep' to NULL.
756  *
757  * This function may also return 'false positives', where it returns 0 and
758  * '*devnamep' names a device that was not actually added or deleted or it
759  * returns ENOBUFS without any change.
760  *
761  * Returns EAGAIN if the set of ports in 'dpif' has not changed.  May also
762  * return other positive errno values to indicate that something has gone
763  * wrong. */
764 int
765 dpif_port_poll(const struct dpif *dpif, char **devnamep)
766 {
767     int error = dpif->dpif_class->port_poll(dpif, devnamep);
768     if (error) {
769         *devnamep = NULL;
770     }
771     return error;
772 }
773
774 /* Arranges for the poll loop to wake up when port_poll(dpif) will return a
775  * value other than EAGAIN. */
776 void
777 dpif_port_poll_wait(const struct dpif *dpif)
778 {
779     dpif->dpif_class->port_poll_wait(dpif);
780 }
781
782 /* Extracts the flow stats for a packet.  The 'flow' and 'packet'
783  * arguments must have been initialized through a call to flow_extract().
784  * 'used' is stored into stats->used. */
785 void
786 dpif_flow_stats_extract(const struct flow *flow, const struct ofpbuf *packet,
787                         long long int used, struct dpif_flow_stats *stats)
788 {
789     stats->tcp_flags = packet_get_tcp_flags(packet, flow);
790     stats->n_bytes = packet->size;
791     stats->n_packets = 1;
792     stats->used = used;
793 }
794
795 /* Appends a human-readable representation of 'stats' to 's'. */
796 void
797 dpif_flow_stats_format(const struct dpif_flow_stats *stats, struct ds *s)
798 {
799     ds_put_format(s, "packets:%"PRIu64", bytes:%"PRIu64", used:",
800                   stats->n_packets, stats->n_bytes);
801     if (stats->used) {
802         ds_put_format(s, "%.3fs", (time_msec() - stats->used) / 1000.0);
803     } else {
804         ds_put_format(s, "never");
805     }
806     if (stats->tcp_flags) {
807         ds_put_cstr(s, ", flags:");
808         packet_format_tcp_flags(s, stats->tcp_flags);
809     }
810 }
811
812 /* Deletes all flows from 'dpif'.  Returns 0 if successful, otherwise a
813  * positive errno value.  */
814 int
815 dpif_flow_flush(struct dpif *dpif)
816 {
817     int error;
818
819     COVERAGE_INC(dpif_flow_flush);
820
821     error = dpif->dpif_class->flow_flush(dpif);
822     log_operation(dpif, "flow_flush", error);
823     return error;
824 }
825
826 /* Queries 'dpif' for a flow entry.  The flow is specified by the Netlink
827  * attributes with types OVS_KEY_ATTR_* in the 'key_len' bytes starting at
828  * 'key'.
829  *
830  * Returns 0 if successful.  If no flow matches, returns ENOENT.  On other
831  * failure, returns a positive errno value.
832  *
833  * If 'actionsp' is nonnull, then on success '*actionsp' will be set to an
834  * ofpbuf owned by the caller that contains the Netlink attributes for the
835  * flow's actions.  The caller must free the ofpbuf (with ofpbuf_delete()) when
836  * it is no longer needed.
837  *
838  * If 'stats' is nonnull, then on success it will be updated with the flow's
839  * statistics. */
840 int
841 dpif_flow_get(const struct dpif *dpif,
842               const struct nlattr *key, size_t key_len,
843               struct ofpbuf **actionsp, struct dpif_flow_stats *stats)
844 {
845     int error;
846
847     COVERAGE_INC(dpif_flow_get);
848
849     error = dpif->dpif_class->flow_get(dpif, key, key_len, actionsp, stats);
850     if (error) {
851         if (actionsp) {
852             *actionsp = NULL;
853         }
854         if (stats) {
855             memset(stats, 0, sizeof *stats);
856         }
857     }
858     if (should_log_flow_message(error)) {
859         const struct nlattr *actions;
860         size_t actions_len;
861
862         if (!error && actionsp) {
863             actions = (*actionsp)->data;
864             actions_len = (*actionsp)->size;
865         } else {
866             actions = NULL;
867             actions_len = 0;
868         }
869         log_flow_message(dpif, error, "flow_get", key, key_len,
870                          NULL, 0, stats, actions, actions_len);
871     }
872     return error;
873 }
874
875 static int
876 dpif_flow_put__(struct dpif *dpif, const struct dpif_flow_put *put)
877 {
878     int error;
879
880     COVERAGE_INC(dpif_flow_put);
881     ovs_assert(!(put->flags & ~(DPIF_FP_CREATE | DPIF_FP_MODIFY
882                                 | DPIF_FP_ZERO_STATS)));
883
884     error = dpif->dpif_class->flow_put(dpif, put);
885     if (error && put->stats) {
886         memset(put->stats, 0, sizeof *put->stats);
887     }
888     log_flow_put_message(dpif, put, error);
889     return error;
890 }
891
892 /* Adds or modifies a flow in 'dpif'.  The flow is specified by the Netlink
893  * attribute OVS_FLOW_ATTR_KEY with types OVS_KEY_ATTR_* in the 'key_len' bytes
894  * starting at 'key', and OVS_FLOW_ATTR_MASK with types of OVS_KEY_ATTR_* in the
895  * 'mask_len' bytes starting at 'mask'. The associated actions are specified by
896  * the Netlink attributes with types OVS_ACTION_ATTR_* in the 'actions_len'
897  * bytes starting at 'actions'.
898  *
899  * - If the flow's key does not exist in 'dpif', then the flow will be added if
900  *   'flags' includes DPIF_FP_CREATE.  Otherwise the operation will fail with
901  *   ENOENT.
902  *
903  *   If the operation succeeds, then 'stats', if nonnull, will be zeroed.
904  *
905  * - If the flow's key does exist in 'dpif', then the flow's actions will be
906  *   updated if 'flags' includes DPIF_FP_MODIFY.  Otherwise the operation will
907  *   fail with EEXIST.  If the flow's actions are updated, then its statistics
908  *   will be zeroed if 'flags' includes DPIF_FP_ZERO_STATS, and left as-is
909  *   otherwise.
910  *
911  *   If the operation succeeds, then 'stats', if nonnull, will be set to the
912  *   flow's statistics before the update.
913  */
914 int
915 dpif_flow_put(struct dpif *dpif, enum dpif_flow_put_flags flags,
916               const struct nlattr *key, size_t key_len,
917               const struct nlattr *mask, size_t mask_len,
918               const struct nlattr *actions, size_t actions_len,
919               struct dpif_flow_stats *stats)
920 {
921     struct dpif_flow_put put;
922
923     put.flags = flags;
924     put.key = key;
925     put.key_len = key_len;
926     put.mask = mask;
927     put.mask_len = mask_len;
928     put.actions = actions;
929     put.actions_len = actions_len;
930     put.stats = stats;
931     return dpif_flow_put__(dpif, &put);
932 }
933
934 static int
935 dpif_flow_del__(struct dpif *dpif, struct dpif_flow_del *del)
936 {
937     int error;
938
939     COVERAGE_INC(dpif_flow_del);
940
941     error = dpif->dpif_class->flow_del(dpif, del);
942     if (error && del->stats) {
943         memset(del->stats, 0, sizeof *del->stats);
944     }
945     log_flow_del_message(dpif, del, error);
946     return error;
947 }
948
949 /* Deletes a flow from 'dpif' and returns 0, or returns ENOENT if 'dpif' does
950  * not contain such a flow.  The flow is specified by the Netlink attributes
951  * with types OVS_KEY_ATTR_* in the 'key_len' bytes starting at 'key'.
952  *
953  * If the operation succeeds, then 'stats', if nonnull, will be set to the
954  * flow's statistics before its deletion. */
955 int
956 dpif_flow_del(struct dpif *dpif,
957               const struct nlattr *key, size_t key_len,
958               struct dpif_flow_stats *stats)
959 {
960     struct dpif_flow_del del;
961
962     del.key = key;
963     del.key_len = key_len;
964     del.stats = stats;
965     return dpif_flow_del__(dpif, &del);
966 }
967
968 /* Initializes 'dump' to begin dumping the flows in a dpif.
969  *
970  * This function provides no status indication.  An error status for the entire
971  * dump operation is provided when it is completed by calling
972  * dpif_flow_dump_done().
973  */
974 void
975 dpif_flow_dump_start(struct dpif_flow_dump *dump, const struct dpif *dpif)
976 {
977     dump->dpif = dpif;
978     dump->error = dpif->dpif_class->flow_dump_start(dpif, &dump->state);
979     log_operation(dpif, "flow_dump_start", dump->error);
980 }
981
982 /* Attempts to retrieve another flow from 'dump', which must have been
983  * initialized with dpif_flow_dump_start().  On success, updates the output
984  * parameters as described below and returns true.  Otherwise, returns false.
985  * Failure might indicate an actual error or merely the end of the flow table.
986  * An error status for the entire dump operation is provided when it is
987  * completed by calling dpif_flow_dump_done().
988  *
989  * On success, if 'key' and 'key_len' are nonnull then '*key' and '*key_len'
990  * will be set to Netlink attributes with types OVS_KEY_ATTR_* representing the
991  * dumped flow's key.  If 'actions' and 'actions_len' are nonnull then they are
992  * set to Netlink attributes with types OVS_ACTION_ATTR_* representing the
993  * dumped flow's actions.  If 'stats' is nonnull then it will be set to the
994  * dumped flow's statistics.
995  *
996  * All of the returned data is owned by 'dpif', not by the caller, and the
997  * caller must not modify or free it.  'dpif' guarantees that it remains
998  * accessible and unchanging until at least the next call to 'flow_dump_next'
999  * or 'flow_dump_done' for 'dump'. */
1000 bool
1001 dpif_flow_dump_next(struct dpif_flow_dump *dump,
1002                     const struct nlattr **key, size_t *key_len,
1003                     const struct nlattr **mask, size_t *mask_len,
1004                     const struct nlattr **actions, size_t *actions_len,
1005                     const struct dpif_flow_stats **stats)
1006 {
1007     const struct dpif *dpif = dump->dpif;
1008     int error = dump->error;
1009
1010     if (!error) {
1011         error = dpif->dpif_class->flow_dump_next(dpif, dump->state,
1012                                                  key, key_len,
1013                                                  mask, mask_len,
1014                                                  actions, actions_len,
1015                                                  stats);
1016         if (error) {
1017             dpif->dpif_class->flow_dump_done(dpif, dump->state);
1018         }
1019     }
1020     if (error) {
1021         if (key) {
1022             *key = NULL;
1023             *key_len = 0;
1024         }
1025         if (mask) {
1026             *mask = NULL;
1027             *mask_len = 0;
1028         }
1029         if (actions) {
1030             *actions = NULL;
1031             *actions_len = 0;
1032         }
1033         if (stats) {
1034             *stats = NULL;
1035         }
1036     }
1037     if (!dump->error) {
1038         if (error == EOF) {
1039             VLOG_DBG_RL(&dpmsg_rl, "%s: dumped all flows", dpif_name(dpif));
1040         } else if (should_log_flow_message(error)) {
1041             log_flow_message(dpif, error, "flow_dump",
1042                              key ? *key : NULL, key ? *key_len : 0,
1043                              mask ? *mask : NULL, mask ? *mask_len : 0,
1044                              stats ? *stats : NULL, actions ? *actions : NULL,
1045                              actions ? *actions_len : 0);
1046         }
1047     }
1048     dump->error = error;
1049     return !error;
1050 }
1051
1052 /* Completes flow table dump operation 'dump', which must have been initialized
1053  * with dpif_flow_dump_start().  Returns 0 if the dump operation was
1054  * error-free, otherwise a positive errno value describing the problem. */
1055 int
1056 dpif_flow_dump_done(struct dpif_flow_dump *dump)
1057 {
1058     const struct dpif *dpif = dump->dpif;
1059     if (!dump->error) {
1060         dump->error = dpif->dpif_class->flow_dump_done(dpif, dump->state);
1061         log_operation(dpif, "flow_dump_done", dump->error);
1062     }
1063     return dump->error == EOF ? 0 : dump->error;
1064 }
1065
1066 struct dpif_execute_helper_aux {
1067     struct dpif *dpif;
1068     int error;
1069 };
1070
1071 static void
1072 dpif_execute_helper_execute__(void *aux_, struct ofpbuf *packet,
1073                               const struct flow *flow,
1074                               const struct nlattr *actions, size_t actions_len)
1075 {
1076     struct dpif_execute_helper_aux *aux = aux_;
1077     struct dpif_execute execute;
1078     struct odputil_keybuf key_stub;
1079     struct ofpbuf key;
1080     int error;
1081
1082     ofpbuf_use_stub(&key, &key_stub, sizeof key_stub);
1083     odp_flow_key_from_flow(&key, flow, flow->in_port.odp_port);
1084
1085     execute.key = key.data;
1086     execute.key_len = key.size;
1087     execute.actions = actions;
1088     execute.actions_len = actions_len;
1089     execute.packet = packet;
1090     execute.needs_help = false;
1091
1092     error = aux->dpif->dpif_class->execute(aux->dpif, &execute);
1093     if (error) {
1094         aux->error = error;
1095     }
1096 }
1097
1098 static void
1099 dpif_execute_helper_output_cb(void *aux, struct ofpbuf *packet,
1100                               const struct flow *flow, odp_port_t out_port)
1101 {
1102     uint64_t actions_stub[DIV_ROUND_UP(NL_A_U32_SIZE, 8)];
1103     struct ofpbuf actions;
1104
1105     ofpbuf_use_stack(&actions, actions_stub, sizeof actions_stub);
1106     nl_msg_put_u32(&actions, OVS_ACTION_ATTR_OUTPUT, odp_to_u32(out_port));
1107
1108     dpif_execute_helper_execute__(aux, packet, flow,
1109                                   actions.data, actions.size);
1110 }
1111
1112 static void
1113 dpif_execute_helper_userspace_cb(void *aux, struct ofpbuf *packet,
1114                                  const struct flow *flow,
1115                                  const struct nlattr *action)
1116 {
1117     dpif_execute_helper_execute__(aux, packet, flow,
1118                                   action, NLA_ALIGN(action->nla_len));
1119 }
1120
1121 /* Executes 'execute' by performing most of the actions in userspace and
1122  * passing the fully constructed packets to 'dpif' for output and userspace
1123  * actions.
1124  *
1125  * This helps with actions that a given 'dpif' doesn't implement directly. */
1126 static int
1127 dpif_execute_with_help(struct dpif *dpif, const struct dpif_execute *execute)
1128 {
1129     struct dpif_execute_helper_aux aux;
1130     enum odp_key_fitness fit;
1131     struct ofpbuf *packet;
1132     struct flow flow;
1133
1134     COVERAGE_INC(dpif_execute_with_help);
1135
1136     fit = odp_flow_key_to_flow(execute->key, execute->key_len, &flow);
1137     if (fit == ODP_FIT_ERROR) {
1138         return EINVAL;
1139     }
1140
1141     aux.dpif = dpif;
1142     aux.error = 0;
1143
1144     packet = ofpbuf_clone_with_headroom(execute->packet, VLAN_HEADER_LEN);
1145     odp_execute_actions(&aux, packet, &flow,
1146                         execute->actions, execute->actions_len,
1147                         dpif_execute_helper_output_cb,
1148                         dpif_execute_helper_userspace_cb);
1149     ofpbuf_delete(packet);
1150
1151     return aux.error;
1152 }
1153
1154 static int
1155 dpif_execute__(struct dpif *dpif, const struct dpif_execute *execute)
1156 {
1157     int error;
1158
1159     COVERAGE_INC(dpif_execute);
1160     if (execute->actions_len > 0) {
1161         error = (execute->needs_help
1162                  ? dpif_execute_with_help(dpif, execute)
1163                  : dpif->dpif_class->execute(dpif, execute));
1164     } else {
1165         error = 0;
1166     }
1167
1168     log_execute_message(dpif, execute, error);
1169
1170     return error;
1171 }
1172
1173 /* Causes 'dpif' to perform the 'actions_len' bytes of actions in 'actions' on
1174  * the Ethernet frame specified in 'packet' taken from the flow specified in
1175  * the 'key_len' bytes of 'key'.  ('key' is mostly redundant with 'packet', but
1176  * it contains some metadata that cannot be recovered from 'packet', such as
1177  * tunnel and in_port.)
1178  *
1179  * Some dpif providers do not implement every action.  The Linux kernel
1180  * datapath, in particular, does not implement ARP field modification.  If
1181  * 'needs_help' is true, the dpif layer executes in userspace all of the
1182  * actions that it can, and for OVS_ACTION_ATTR_OUTPUT and
1183  * OVS_ACTION_ATTR_USERSPACE actions it passes the packet through to the dpif
1184  * implementation.
1185  *
1186  * This works even if 'actions_len' is too long for a Netlink attribute.
1187  *
1188  * Returns 0 if successful, otherwise a positive errno value. */
1189 int
1190 dpif_execute(struct dpif *dpif,
1191              const struct nlattr *key, size_t key_len,
1192              const struct nlattr *actions, size_t actions_len,
1193              const struct ofpbuf *buf,
1194              bool needs_help)
1195 {
1196     struct dpif_execute execute;
1197
1198     execute.key = key;
1199     execute.key_len = key_len;
1200     execute.actions = actions;
1201     execute.actions_len = actions_len;
1202     execute.packet = buf;
1203     execute.needs_help = needs_help || nl_attr_oversized(actions_len);
1204     return dpif_execute__(dpif, &execute);
1205 }
1206
1207 /* Executes each of the 'n_ops' operations in 'ops' on 'dpif', in the order in
1208  * which they are specified, placing each operation's results in the "output"
1209  * members documented in comments.
1210  *
1211  * This function exists because some datapaths can perform batched operations
1212  * faster than individual operations. */
1213 void
1214 dpif_operate(struct dpif *dpif, struct dpif_op **ops, size_t n_ops)
1215 {
1216     if (dpif->dpif_class->operate) {
1217         while (n_ops > 0) {
1218             size_t chunk;
1219
1220             /* Count 'chunk', the number of ops that can be executed without
1221              * needing any help.  Ops that need help should be rare, so we
1222              * expect this to ordinarily be 'n_ops', that is, all the ops. */
1223             for (chunk = 0; chunk < n_ops; chunk++) {
1224                 struct dpif_op *op = ops[chunk];
1225
1226                 if (op->type == DPIF_OP_EXECUTE && op->u.execute.needs_help) {
1227                     break;
1228                 }
1229             }
1230
1231             if (chunk) {
1232                 /* Execute a chunk full of ops that the dpif provider can
1233                  * handle itself, without help. */
1234                 size_t i;
1235
1236                 dpif->dpif_class->operate(dpif, ops, chunk);
1237
1238                 for (i = 0; i < chunk; i++) {
1239                     struct dpif_op *op = ops[i];
1240
1241                     switch (op->type) {
1242                     case DPIF_OP_FLOW_PUT:
1243                         log_flow_put_message(dpif, &op->u.flow_put, op->error);
1244                         break;
1245
1246                     case DPIF_OP_FLOW_DEL:
1247                         log_flow_del_message(dpif, &op->u.flow_del, op->error);
1248                         break;
1249
1250                     case DPIF_OP_EXECUTE:
1251                         log_execute_message(dpif, &op->u.execute, op->error);
1252                         break;
1253                     }
1254                 }
1255
1256                 ops += chunk;
1257                 n_ops -= chunk;
1258             } else {
1259                 /* Help the dpif provider to execute one op. */
1260                 struct dpif_op *op = ops[0];
1261
1262                 op->error = dpif_execute__(dpif, &op->u.execute);
1263                 ops++;
1264                 n_ops--;
1265             }
1266         }
1267     } else {
1268         size_t i;
1269
1270         for (i = 0; i < n_ops; i++) {
1271             struct dpif_op *op = ops[i];
1272
1273             switch (op->type) {
1274             case DPIF_OP_FLOW_PUT:
1275                 op->error = dpif_flow_put__(dpif, &op->u.flow_put);
1276                 break;
1277
1278             case DPIF_OP_FLOW_DEL:
1279                 op->error = dpif_flow_del__(dpif, &op->u.flow_del);
1280                 break;
1281
1282             case DPIF_OP_EXECUTE:
1283                 op->error = dpif_execute__(dpif, &op->u.execute);
1284                 break;
1285
1286             default:
1287                 NOT_REACHED();
1288             }
1289         }
1290     }
1291 }
1292
1293 /* Returns a string that represents 'type', for use in log messages. */
1294 const char *
1295 dpif_upcall_type_to_string(enum dpif_upcall_type type)
1296 {
1297     switch (type) {
1298     case DPIF_UC_MISS: return "miss";
1299     case DPIF_UC_ACTION: return "action";
1300     case DPIF_N_UC_TYPES: default: return "<unknown>";
1301     }
1302 }
1303
1304 /* Enables or disables receiving packets with dpif_recv() on 'dpif'.  Returns 0
1305  * if successful, otherwise a positive errno value.
1306  *
1307  * Turning packet receive off and then back on may change the Netlink PID
1308  * assignments returned by dpif_port_get_pid().  If the client does this, it
1309  * must update all of the flows that have OVS_ACTION_ATTR_USERSPACE actions
1310  * using the new PID assignment. */
1311 int
1312 dpif_recv_set(struct dpif *dpif, bool enable)
1313 {
1314     int error = dpif->dpif_class->recv_set(dpif, enable);
1315     log_operation(dpif, "recv_set", error);
1316     return error;
1317 }
1318
1319 /* Polls for an upcall from 'dpif'.  If successful, stores the upcall into
1320  * '*upcall', using 'buf' for storage.  Should only be called if
1321  * dpif_recv_set() has been used to enable receiving packets on 'dpif'.
1322  *
1323  * 'upcall->packet' and 'upcall->key' point into data in the caller-provided
1324  * 'buf', so their memory cannot be freed separately from 'buf'.  (This is
1325  * hardly a great way to do things but it works out OK for the dpif providers
1326  * and clients that exist so far.)
1327  *
1328  * Returns 0 if successful, otherwise a positive errno value.  Returns EAGAIN
1329  * if no upcall is immediately available. */
1330 int
1331 dpif_recv(struct dpif *dpif, struct dpif_upcall *upcall, struct ofpbuf *buf)
1332 {
1333     int error = dpif->dpif_class->recv(dpif, upcall, buf);
1334     if (!error && !VLOG_DROP_DBG(&dpmsg_rl)) {
1335         struct ds flow;
1336         char *packet;
1337
1338         packet = ofp_packet_to_string(upcall->packet->data,
1339                                       upcall->packet->size);
1340
1341         ds_init(&flow);
1342         odp_flow_key_format(upcall->key, upcall->key_len, &flow);
1343
1344         VLOG_DBG("%s: %s upcall:\n%s\n%s",
1345                  dpif_name(dpif), dpif_upcall_type_to_string(upcall->type),
1346                  ds_cstr(&flow), packet);
1347
1348         ds_destroy(&flow);
1349         free(packet);
1350     } else if (error && error != EAGAIN) {
1351         log_operation(dpif, "recv", error);
1352     }
1353     return error;
1354 }
1355
1356 /* Discards all messages that would otherwise be received by dpif_recv() on
1357  * 'dpif'. */
1358 void
1359 dpif_recv_purge(struct dpif *dpif)
1360 {
1361     COVERAGE_INC(dpif_purge);
1362     if (dpif->dpif_class->recv_purge) {
1363         dpif->dpif_class->recv_purge(dpif);
1364     }
1365 }
1366
1367 /* Arranges for the poll loop to wake up when 'dpif' has a message queued to be
1368  * received with dpif_recv(). */
1369 void
1370 dpif_recv_wait(struct dpif *dpif)
1371 {
1372     dpif->dpif_class->recv_wait(dpif);
1373 }
1374
1375 /* Obtains the NetFlow engine type and engine ID for 'dpif' into '*engine_type'
1376  * and '*engine_id', respectively. */
1377 void
1378 dpif_get_netflow_ids(const struct dpif *dpif,
1379                      uint8_t *engine_type, uint8_t *engine_id)
1380 {
1381     *engine_type = dpif->netflow_engine_type;
1382     *engine_id = dpif->netflow_engine_id;
1383 }
1384
1385 /* Translates OpenFlow queue ID 'queue_id' (in host byte order) into a priority
1386  * value used for setting packet priority.
1387  * On success, returns 0 and stores the priority into '*priority'.
1388  * On failure, returns a positive errno value and stores 0 into '*priority'. */
1389 int
1390 dpif_queue_to_priority(const struct dpif *dpif, uint32_t queue_id,
1391                        uint32_t *priority)
1392 {
1393     int error = (dpif->dpif_class->queue_to_priority
1394                  ? dpif->dpif_class->queue_to_priority(dpif, queue_id,
1395                                                        priority)
1396                  : EOPNOTSUPP);
1397     if (error) {
1398         *priority = 0;
1399     }
1400     log_operation(dpif, "queue_to_priority", error);
1401     return error;
1402 }
1403 \f
1404 void
1405 dpif_init(struct dpif *dpif, const struct dpif_class *dpif_class,
1406           const char *name,
1407           uint8_t netflow_engine_type, uint8_t netflow_engine_id)
1408 {
1409     dpif->dpif_class = dpif_class;
1410     dpif->base_name = xstrdup(name);
1411     dpif->full_name = xasprintf("%s@%s", dpif_class->type, name);
1412     dpif->netflow_engine_type = netflow_engine_type;
1413     dpif->netflow_engine_id = netflow_engine_id;
1414 }
1415
1416 /* Undoes the results of initialization.
1417  *
1418  * Normally this function only needs to be called from dpif_close().
1419  * However, it may be called by providers due to an error on opening
1420  * that occurs after initialization.  It this case dpif_close() would
1421  * never be called. */
1422 void
1423 dpif_uninit(struct dpif *dpif, bool close)
1424 {
1425     char *base_name = dpif->base_name;
1426     char *full_name = dpif->full_name;
1427
1428     if (close) {
1429         dpif->dpif_class->close(dpif);
1430     }
1431
1432     free(base_name);
1433     free(full_name);
1434 }
1435 \f
1436 static void
1437 log_operation(const struct dpif *dpif, const char *operation, int error)
1438 {
1439     if (!error) {
1440         VLOG_DBG_RL(&dpmsg_rl, "%s: %s success", dpif_name(dpif), operation);
1441     } else if (ofperr_is_valid(error)) {
1442         VLOG_WARN_RL(&error_rl, "%s: %s failed (%s)",
1443                      dpif_name(dpif), operation, ofperr_get_name(error));
1444     } else {
1445         VLOG_WARN_RL(&error_rl, "%s: %s failed (%s)",
1446                      dpif_name(dpif), operation, ovs_strerror(error));
1447     }
1448 }
1449
1450 static enum vlog_level
1451 flow_message_log_level(int error)
1452 {
1453     /* If flows arrive in a batch, userspace may push down multiple
1454      * unique flow definitions that overlap when wildcards are applied.
1455      * Kernels that support flow wildcarding will reject these flows as
1456      * duplicates (EEXIST), so lower the log level to debug for these
1457      * types of messages. */
1458     return (error && error != EEXIST) ? VLL_WARN : VLL_DBG;
1459 }
1460
1461 static bool
1462 should_log_flow_message(int error)
1463 {
1464     return !vlog_should_drop(THIS_MODULE, flow_message_log_level(error),
1465                              error ? &error_rl : &dpmsg_rl);
1466 }
1467
1468 static void
1469 log_flow_message(const struct dpif *dpif, int error, const char *operation,
1470                  const struct nlattr *key, size_t key_len,
1471                  const struct nlattr *mask, size_t mask_len,
1472                  const struct dpif_flow_stats *stats,
1473                  const struct nlattr *actions, size_t actions_len)
1474 {
1475     struct ds ds = DS_EMPTY_INITIALIZER;
1476     ds_put_format(&ds, "%s: ", dpif_name(dpif));
1477     if (error) {
1478         ds_put_cstr(&ds, "failed to ");
1479     }
1480     ds_put_format(&ds, "%s ", operation);
1481     if (error) {
1482         ds_put_format(&ds, "(%s) ", ovs_strerror(error));
1483     }
1484     odp_flow_format(key, key_len, mask, mask_len, NULL, &ds, true);
1485     if (stats) {
1486         ds_put_cstr(&ds, ", ");
1487         dpif_flow_stats_format(stats, &ds);
1488     }
1489     if (actions || actions_len) {
1490         ds_put_cstr(&ds, ", actions:");
1491         format_odp_actions(&ds, actions, actions_len);
1492     }
1493     vlog(THIS_MODULE, flow_message_log_level(error), "%s", ds_cstr(&ds));
1494     ds_destroy(&ds);
1495 }
1496
1497 static void
1498 log_flow_put_message(struct dpif *dpif, const struct dpif_flow_put *put,
1499                      int error)
1500 {
1501     if (should_log_flow_message(error)) {
1502         struct ds s;
1503
1504         ds_init(&s);
1505         ds_put_cstr(&s, "put");
1506         if (put->flags & DPIF_FP_CREATE) {
1507             ds_put_cstr(&s, "[create]");
1508         }
1509         if (put->flags & DPIF_FP_MODIFY) {
1510             ds_put_cstr(&s, "[modify]");
1511         }
1512         if (put->flags & DPIF_FP_ZERO_STATS) {
1513             ds_put_cstr(&s, "[zero]");
1514         }
1515         log_flow_message(dpif, error, ds_cstr(&s),
1516                          put->key, put->key_len, put->mask, put->mask_len,
1517                          put->stats, put->actions, put->actions_len);
1518         ds_destroy(&s);
1519     }
1520 }
1521
1522 static void
1523 log_flow_del_message(struct dpif *dpif, const struct dpif_flow_del *del,
1524                      int error)
1525 {
1526     if (should_log_flow_message(error)) {
1527         log_flow_message(dpif, error, "flow_del", del->key, del->key_len,
1528                          NULL, 0, !error ? del->stats : NULL, NULL, 0);
1529     }
1530 }
1531
1532 static void
1533 log_execute_message(struct dpif *dpif, const struct dpif_execute *execute,
1534                     int error)
1535 {
1536     if (!(error ? VLOG_DROP_WARN(&error_rl) : VLOG_DROP_DBG(&dpmsg_rl))) {
1537         struct ds ds = DS_EMPTY_INITIALIZER;
1538         char *packet;
1539
1540         packet = ofp_packet_to_string(execute->packet->data,
1541                                       execute->packet->size);
1542         ds_put_format(&ds, "%s: execute ", dpif_name(dpif));
1543         format_odp_actions(&ds, execute->actions, execute->actions_len);
1544         if (error) {
1545             ds_put_format(&ds, " failed (%s)", ovs_strerror(error));
1546         }
1547         ds_put_format(&ds, " on packet %s", packet);
1548         vlog(THIS_MODULE, error ? VLL_WARN : VLL_DBG, "%s", ds_cstr(&ds));
1549         ds_destroy(&ds);
1550         free(packet);
1551     }
1552 }