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