Merge branch 'mainstream'
[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-util.h"
32 #include "ofp-errors.h"
33 #include "ofp-print.h"
34 #include "ofp-util.h"
35 #include "ofpbuf.h"
36 #include "packets.h"
37 #include "poll-loop.h"
38 #include "shash.h"
39 #include "sset.h"
40 #include "timeval.h"
41 #include "util.h"
42 #include "valgrind.h"
43 #include "vlog.h"
44
45 VLOG_DEFINE_THIS_MODULE(dpif);
46
47 COVERAGE_DEFINE(dpif_destroy);
48 COVERAGE_DEFINE(dpif_port_add);
49 COVERAGE_DEFINE(dpif_port_del);
50 COVERAGE_DEFINE(dpif_flow_flush);
51 COVERAGE_DEFINE(dpif_flow_get);
52 COVERAGE_DEFINE(dpif_flow_put);
53 COVERAGE_DEFINE(dpif_flow_del);
54 COVERAGE_DEFINE(dpif_flow_query_list);
55 COVERAGE_DEFINE(dpif_flow_query_list_n);
56 COVERAGE_DEFINE(dpif_execute);
57 COVERAGE_DEFINE(dpif_purge);
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     &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 one greater than the maximum port number accepted in flow
637  * actions. */
638 uint32_t
639 dpif_get_max_ports(const struct dpif *dpif)
640 {
641     return dpif->dpif_class->get_max_ports(dpif);
642 }
643
644 /* Returns the Netlink PID value to supply in OVS_ACTION_ATTR_USERSPACE actions
645  * as the OVS_USERSPACE_ATTR_PID attribute's value, for use in flows whose
646  * packets arrived on port 'port_no'.
647  *
648  * A 'port_no' of ODPP_NONE is a special case: it returns a reserved PID, not
649  * allocated to any port, that the client may use for special purposes.
650  *
651  * The return value is only meaningful when DPIF_UC_ACTION has been enabled in
652  * the 'dpif''s listen mask.  It is allowed to change when DPIF_UC_ACTION is
653  * disabled and then re-enabled, so a client that does that must be prepared to
654  * update all of the flows that it installed that contain
655  * OVS_ACTION_ATTR_USERSPACE actions. */
656 uint32_t
657 dpif_port_get_pid(const struct dpif *dpif, odp_port_t port_no)
658 {
659     return (dpif->dpif_class->port_get_pid
660             ? (dpif->dpif_class->port_get_pid)(dpif, port_no)
661             : 0);
662 }
663
664 /* Looks up port number 'port_no' in 'dpif'.  On success, returns 0 and copies
665  * the port's name into the 'name_size' bytes in 'name', ensuring that the
666  * result is null-terminated.  On failure, returns a positive errno value and
667  * makes 'name' the empty string. */
668 int
669 dpif_port_get_name(struct dpif *dpif, odp_port_t port_no,
670                    char *name, size_t name_size)
671 {
672     struct dpif_port port;
673     int error;
674
675     ovs_assert(name_size > 0);
676
677     error = dpif_port_query_by_number(dpif, port_no, &port);
678     if (!error) {
679         ovs_strlcpy(name, port.name, name_size);
680         dpif_port_destroy(&port);
681     } else {
682         *name = '\0';
683     }
684     return error;
685 }
686
687 /* Initializes 'dump' to begin dumping the ports in a dpif.
688  *
689  * This function provides no status indication.  An error status for the entire
690  * dump operation is provided when it is completed by calling
691  * dpif_port_dump_done().
692  */
693 void
694 dpif_port_dump_start(struct dpif_port_dump *dump, const struct dpif *dpif)
695 {
696     dump->dpif = dpif;
697     dump->error = dpif->dpif_class->port_dump_start(dpif, &dump->state);
698     log_operation(dpif, "port_dump_start", dump->error);
699 }
700
701 /* Attempts to retrieve another port from 'dump', which must have been
702  * initialized with dpif_port_dump_start().  On success, stores a new dpif_port
703  * into 'port' and returns true.  On failure, returns false.
704  *
705  * Failure might indicate an actual error or merely that the last port has been
706  * dumped.  An error status for the entire dump operation is provided when it
707  * is completed by calling dpif_port_dump_done().
708  *
709  * The dpif owns the data stored in 'port'.  It will remain valid until at
710  * least the next time 'dump' is passed to dpif_port_dump_next() or
711  * dpif_port_dump_done(). */
712 bool
713 dpif_port_dump_next(struct dpif_port_dump *dump, struct dpif_port *port)
714 {
715     const struct dpif *dpif = dump->dpif;
716
717     if (dump->error) {
718         return false;
719     }
720
721     dump->error = dpif->dpif_class->port_dump_next(dpif, dump->state, port);
722     if (dump->error == EOF) {
723         VLOG_DBG_RL(&dpmsg_rl, "%s: dumped all ports", dpif_name(dpif));
724     } else {
725         log_operation(dpif, "port_dump_next", dump->error);
726     }
727
728     if (dump->error) {
729         dpif->dpif_class->port_dump_done(dpif, dump->state);
730         return false;
731     }
732     return true;
733 }
734
735 /* Completes port table dump operation 'dump', which must have been initialized
736  * with dpif_port_dump_start().  Returns 0 if the dump operation was
737  * error-free, otherwise a positive errno value describing the problem. */
738 int
739 dpif_port_dump_done(struct dpif_port_dump *dump)
740 {
741     const struct dpif *dpif = dump->dpif;
742     if (!dump->error) {
743         dump->error = dpif->dpif_class->port_dump_done(dpif, dump->state);
744         log_operation(dpif, "port_dump_done", dump->error);
745     }
746     return dump->error == EOF ? 0 : dump->error;
747 }
748
749 /* Polls for changes in the set of ports in 'dpif'.  If the set of ports in
750  * 'dpif' has changed, this function does one of the following:
751  *
752  * - Stores the name of the device that was added to or deleted from 'dpif' in
753  *   '*devnamep' and returns 0.  The caller is responsible for freeing
754  *   '*devnamep' (with free()) when it no longer needs it.
755  *
756  * - Returns ENOBUFS and sets '*devnamep' to NULL.
757  *
758  * This function may also return 'false positives', where it returns 0 and
759  * '*devnamep' names a device that was not actually added or deleted or it
760  * returns ENOBUFS without any change.
761  *
762  * Returns EAGAIN if the set of ports in 'dpif' has not changed.  May also
763  * return other positive errno values to indicate that something has gone
764  * wrong. */
765 int
766 dpif_port_poll(const struct dpif *dpif, char **devnamep)
767 {
768     int error = dpif->dpif_class->port_poll(dpif, devnamep);
769     if (error) {
770         *devnamep = NULL;
771     }
772     return error;
773 }
774
775 /* Arranges for the poll loop to wake up when port_poll(dpif) will return a
776  * value other than EAGAIN. */
777 void
778 dpif_port_poll_wait(const struct dpif *dpif)
779 {
780     dpif->dpif_class->port_poll_wait(dpif);
781 }
782
783 /* Extracts the flow stats for a packet.  The 'flow' and 'packet'
784  * arguments must have been initialized through a call to flow_extract().
785  * 'used' is stored into stats->used. */
786 void
787 dpif_flow_stats_extract(const struct flow *flow, const struct ofpbuf *packet,
788                         long long int used, struct dpif_flow_stats *stats)
789 {
790     stats->tcp_flags = packet_get_tcp_flags(packet, flow);
791     stats->n_bytes = packet->size;
792     stats->n_packets = 1;
793     stats->used = used;
794 }
795
796 /* Appends a human-readable representation of 'stats' to 's'. */
797 void
798 dpif_flow_stats_format(const struct dpif_flow_stats *stats, struct ds *s)
799 {
800     ds_put_format(s, "packets:%"PRIu64", bytes:%"PRIu64", used:",
801                   stats->n_packets, stats->n_bytes);
802     if (stats->used) {
803         ds_put_format(s, "%.3fs", (time_msec() - stats->used) / 1000.0);
804     } else {
805         ds_put_format(s, "never");
806     }
807     if (stats->tcp_flags) {
808         ds_put_cstr(s, ", flags:");
809         packet_format_tcp_flags(s, stats->tcp_flags);
810     }
811 }
812
813 /* Deletes all flows from 'dpif'.  Returns 0 if successful, otherwise a
814  * positive errno value.  */
815 int
816 dpif_flow_flush(struct dpif *dpif)
817 {
818     int error;
819
820     COVERAGE_INC(dpif_flow_flush);
821
822     error = dpif->dpif_class->flow_flush(dpif);
823     log_operation(dpif, "flow_flush", error);
824     return error;
825 }
826
827 /* Queries 'dpif' for a flow entry.  The flow is specified by the Netlink
828  * attributes with types OVS_KEY_ATTR_* in the 'key_len' bytes starting at
829  * 'key'.
830  *
831  * Returns 0 if successful.  If no flow matches, returns ENOENT.  On other
832  * failure, returns a positive errno value.
833  *
834  * If 'actionsp' is nonnull, then on success '*actionsp' will be set to an
835  * ofpbuf owned by the caller that contains the Netlink attributes for the
836  * flow's actions.  The caller must free the ofpbuf (with ofpbuf_delete()) when
837  * it is no longer needed.
838  *
839  * If 'stats' is nonnull, then on success it will be updated with the flow's
840  * statistics. */
841 int
842 dpif_flow_get(const struct dpif *dpif,
843               const struct nlattr *key, size_t key_len,
844               struct ofpbuf **actionsp, struct dpif_flow_stats *stats)
845 {
846     int error;
847
848     COVERAGE_INC(dpif_flow_get);
849
850     error = dpif->dpif_class->flow_get(dpif, key, key_len, actionsp, stats);
851     if (error) {
852         if (actionsp) {
853             *actionsp = NULL;
854         }
855         if (stats) {
856             memset(stats, 0, sizeof *stats);
857         }
858     }
859     if (should_log_flow_message(error)) {
860         const struct nlattr *actions;
861         size_t actions_len;
862
863         if (!error && actionsp) {
864             actions = (*actionsp)->data;
865             actions_len = (*actionsp)->size;
866         } else {
867             actions = NULL;
868             actions_len = 0;
869         }
870         log_flow_message(dpif, error, "flow_get", key, key_len,
871                          NULL, 0, stats, actions, actions_len);
872     }
873     return error;
874 }
875
876 static int
877 dpif_flow_put__(struct dpif *dpif, const struct dpif_flow_put *put)
878 {
879     int error;
880
881     COVERAGE_INC(dpif_flow_put);
882     ovs_assert(!(put->flags & ~(DPIF_FP_CREATE | DPIF_FP_MODIFY
883                                 | DPIF_FP_ZERO_STATS)));
884
885     error = dpif->dpif_class->flow_put(dpif, put);
886     if (error && put->stats) {
887         memset(put->stats, 0, sizeof *put->stats);
888     }
889     log_flow_put_message(dpif, put, error);
890     return error;
891 }
892
893 /* Adds or modifies a flow in 'dpif'.  The flow is specified by the Netlink
894  * attribute OVS_FLOW_ATTR_KEY with types OVS_KEY_ATTR_* in the 'key_len' bytes
895  * starting at 'key', and OVS_FLOW_ATTR_MASK with types of OVS_KEY_ATTR_* in the
896  * 'mask_len' bytes starting at 'mask'. The associated actions are specified by
897  * the Netlink attributes with types OVS_ACTION_ATTR_* in the 'actions_len'
898  * bytes starting at 'actions'.
899  *
900  * - If the flow's key does not exist in 'dpif', then the flow will be added if
901  *   'flags' includes DPIF_FP_CREATE.  Otherwise the operation will fail with
902  *   ENOENT.
903  *
904  *   If the operation succeeds, then 'stats', if nonnull, will be zeroed.
905  *
906  * - If the flow's key does exist in 'dpif', then the flow's actions will be
907  *   updated if 'flags' includes DPIF_FP_MODIFY.  Otherwise the operation will
908  *   fail with EEXIST.  If the flow's actions are updated, then its statistics
909  *   will be zeroed if 'flags' includes DPIF_FP_ZERO_STATS, and left as-is
910  *   otherwise.
911  *
912  *   If the operation succeeds, then 'stats', if nonnull, will be set to the
913  *   flow's statistics before the update.
914  */
915 int
916 dpif_flow_put(struct dpif *dpif, enum dpif_flow_put_flags flags,
917               const struct nlattr *key, size_t key_len,
918               const struct nlattr *mask, size_t mask_len,
919               const struct nlattr *actions, size_t actions_len,
920               struct dpif_flow_stats *stats)
921 {
922     struct dpif_flow_put put;
923
924     put.flags = flags;
925     put.key = key;
926     put.key_len = key_len;
927     put.mask = mask;
928     put.mask_len = mask_len;
929     put.actions = actions;
930     put.actions_len = actions_len;
931     put.stats = stats;
932     return dpif_flow_put__(dpif, &put);
933 }
934
935 static int
936 dpif_flow_del__(struct dpif *dpif, struct dpif_flow_del *del)
937 {
938     int error;
939
940     COVERAGE_INC(dpif_flow_del);
941
942     error = dpif->dpif_class->flow_del(dpif, del);
943     if (error && del->stats) {
944         memset(del->stats, 0, sizeof *del->stats);
945     }
946     log_flow_del_message(dpif, del, error);
947     return error;
948 }
949
950 /* Deletes a flow from 'dpif' and returns 0, or returns ENOENT if 'dpif' does
951  * not contain such a flow.  The flow is specified by the Netlink attributes
952  * with types OVS_KEY_ATTR_* in the 'key_len' bytes starting at 'key'.
953  *
954  * If the operation succeeds, then 'stats', if nonnull, will be set to the
955  * flow's statistics before its deletion. */
956 int
957 dpif_flow_del(struct dpif *dpif,
958               const struct nlattr *key, size_t key_len,
959               struct dpif_flow_stats *stats)
960 {
961     struct dpif_flow_del del;
962
963     del.key = key;
964     del.key_len = key_len;
965     del.stats = stats;
966     return dpif_flow_del__(dpif, &del);
967 }
968
969 /* Initializes 'dump' to begin dumping the flows in a dpif.
970  *
971  * This function provides no status indication.  An error status for the entire
972  * dump operation is provided when it is completed by calling
973  * dpif_flow_dump_done().
974  */
975 void
976 dpif_flow_dump_start(struct dpif_flow_dump *dump, const struct dpif *dpif)
977 {
978     dump->dpif = dpif;
979     dump->error = dpif->dpif_class->flow_dump_start(dpif, &dump->state);
980     log_operation(dpif, "flow_dump_start", dump->error);
981 }
982
983 /* Attempts to retrieve another flow from 'dump', which must have been
984  * initialized with dpif_flow_dump_start().  On success, updates the output
985  * parameters as described below and returns true.  Otherwise, returns false.
986  * Failure might indicate an actual error or merely the end of the flow table.
987  * An error status for the entire dump operation is provided when it is
988  * completed by calling dpif_flow_dump_done().
989  *
990  * On success, if 'key' and 'key_len' are nonnull then '*key' and '*key_len'
991  * will be set to Netlink attributes with types OVS_KEY_ATTR_* representing the
992  * dumped flow's key.  If 'actions' and 'actions_len' are nonnull then they are
993  * set to Netlink attributes with types OVS_ACTION_ATTR_* representing the
994  * dumped flow's actions.  If 'stats' is nonnull then it will be set to the
995  * dumped flow's statistics.
996  *
997  * All of the returned data is owned by 'dpif', not by the caller, and the
998  * caller must not modify or free it.  'dpif' guarantees that it remains
999  * accessible and unchanging until at least the next call to 'flow_dump_next'
1000  * or 'flow_dump_done' for 'dump'. */
1001 bool
1002 dpif_flow_dump_next(struct dpif_flow_dump *dump,
1003                     const struct nlattr **key, size_t *key_len,
1004                     const struct nlattr **mask, size_t *mask_len,
1005                     const struct nlattr **actions, size_t *actions_len,
1006                     const struct dpif_flow_stats **stats)
1007 {
1008     const struct dpif *dpif = dump->dpif;
1009     int error = dump->error;
1010
1011     if (!error) {
1012         error = dpif->dpif_class->flow_dump_next(dpif, dump->state,
1013                                                  key, key_len,
1014                                                  mask, mask_len,
1015                                                  actions, actions_len,
1016                                                  stats);
1017         if (error) {
1018             dpif->dpif_class->flow_dump_done(dpif, dump->state);
1019         }
1020     }
1021     if (error) {
1022         if (key) {
1023             *key = NULL;
1024             *key_len = 0;
1025         }
1026         if (mask) {
1027             *mask = NULL;
1028             *mask_len = 0;
1029         }
1030         if (actions) {
1031             *actions = NULL;
1032             *actions_len = 0;
1033         }
1034         if (stats) {
1035             *stats = NULL;
1036         }
1037     }
1038     if (!dump->error) {
1039         if (error == EOF) {
1040             VLOG_DBG_RL(&dpmsg_rl, "%s: dumped all flows", dpif_name(dpif));
1041         } else if (should_log_flow_message(error)) {
1042             log_flow_message(dpif, error, "flow_dump",
1043                              key ? *key : NULL, key ? *key_len : 0,
1044                              mask ? *mask : NULL, mask ? *mask_len : 0,
1045                              stats ? *stats : NULL, actions ? *actions : NULL,
1046                              actions ? *actions_len : 0);
1047         }
1048     }
1049     dump->error = error;
1050     return !error;
1051 }
1052
1053 /* Completes flow table dump operation 'dump', which must have been initialized
1054  * with dpif_flow_dump_start().  Returns 0 if the dump operation was
1055  * error-free, otherwise a positive errno value describing the problem. */
1056 int
1057 dpif_flow_dump_done(struct dpif_flow_dump *dump)
1058 {
1059     const struct dpif *dpif = dump->dpif;
1060     if (!dump->error) {
1061         dump->error = dpif->dpif_class->flow_dump_done(dpif, dump->state);
1062         log_operation(dpif, "flow_dump_done", dump->error);
1063     }
1064     return dump->error == EOF ? 0 : dump->error;
1065 }
1066
1067 static int
1068 dpif_execute__(struct dpif *dpif, const struct dpif_execute *execute)
1069 {
1070     int error;
1071
1072     COVERAGE_INC(dpif_execute);
1073     if (execute->actions_len > 0) {
1074         error = dpif->dpif_class->execute(dpif, execute);
1075     } else {
1076         error = 0;
1077     }
1078
1079     log_execute_message(dpif, execute, error);
1080
1081     return error;
1082 }
1083
1084 /* Causes 'dpif' to perform the 'actions_len' bytes of actions in 'actions' on
1085  * the Ethernet frame specified in 'packet' taken from the flow specified in
1086  * the 'key_len' bytes of 'key'.  ('key' is mostly redundant with 'packet', but
1087  * it contains some metadata that cannot be recovered from 'packet', such as
1088  * tunnel and in_port.)
1089  *
1090  * Returns 0 if successful, otherwise a positive errno value. */
1091 int
1092 dpif_execute(struct dpif *dpif,
1093              const struct nlattr *key, size_t key_len,
1094              const struct nlattr *actions, size_t actions_len,
1095              const struct ofpbuf *buf)
1096 {
1097     struct dpif_execute execute;
1098
1099     execute.key = key;
1100     execute.key_len = key_len;
1101     execute.actions = actions;
1102     execute.actions_len = actions_len;
1103     execute.packet = buf;
1104     return dpif_execute__(dpif, &execute);
1105 }
1106
1107 /* Executes each of the 'n_ops' operations in 'ops' on 'dpif', in the order in
1108  * which they are specified, placing each operation's results in the "output"
1109  * members documented in comments.
1110  *
1111  * This function exists because some datapaths can perform batched operations
1112  * faster than individual operations. */
1113 void
1114 dpif_operate(struct dpif *dpif, struct dpif_op **ops, size_t n_ops)
1115 {
1116     size_t i;
1117
1118     if (dpif->dpif_class->operate) {
1119         dpif->dpif_class->operate(dpif, ops, n_ops);
1120
1121         for (i = 0; i < n_ops; i++) {
1122             struct dpif_op *op = ops[i];
1123
1124             switch (op->type) {
1125             case DPIF_OP_FLOW_PUT:
1126                 log_flow_put_message(dpif, &op->u.flow_put, op->error);
1127                 break;
1128
1129             case DPIF_OP_FLOW_DEL:
1130                 log_flow_del_message(dpif, &op->u.flow_del, op->error);
1131                 break;
1132
1133             case DPIF_OP_EXECUTE:
1134                 log_execute_message(dpif, &op->u.execute, op->error);
1135                 break;
1136             }
1137         }
1138         return;
1139     }
1140
1141     for (i = 0; i < n_ops; i++) {
1142         struct dpif_op *op = ops[i];
1143
1144         switch (op->type) {
1145         case DPIF_OP_FLOW_PUT:
1146             op->error = dpif_flow_put__(dpif, &op->u.flow_put);
1147             break;
1148
1149         case DPIF_OP_FLOW_DEL:
1150             op->error = dpif_flow_del__(dpif, &op->u.flow_del);
1151             break;
1152
1153         case DPIF_OP_EXECUTE:
1154             op->error = dpif_execute__(dpif, &op->u.execute);
1155             break;
1156
1157         default:
1158             NOT_REACHED();
1159         }
1160     }
1161 }
1162
1163
1164 /* Returns a string that represents 'type', for use in log messages. */
1165 const char *
1166 dpif_upcall_type_to_string(enum dpif_upcall_type type)
1167 {
1168     switch (type) {
1169     case DPIF_UC_MISS: return "miss";
1170     case DPIF_UC_ACTION: return "action";
1171     case DPIF_N_UC_TYPES: default: return "<unknown>";
1172     }
1173 }
1174
1175 /* Enables or disables receiving packets with dpif_recv() on 'dpif'.  Returns 0
1176  * if successful, otherwise a positive errno value.
1177  *
1178  * Turning packet receive off and then back on may change the Netlink PID
1179  * assignments returned by dpif_port_get_pid().  If the client does this, it
1180  * must update all of the flows that have OVS_ACTION_ATTR_USERSPACE actions
1181  * using the new PID assignment. */
1182 int
1183 dpif_recv_set(struct dpif *dpif, bool enable)
1184 {
1185     int error = dpif->dpif_class->recv_set(dpif, enable);
1186     log_operation(dpif, "recv_set", error);
1187     return error;
1188 }
1189
1190 /* Polls for an upcall from 'dpif'.  If successful, stores the upcall into
1191  * '*upcall', using 'buf' for storage.  Should only be called if
1192  * dpif_recv_set() has been used to enable receiving packets on 'dpif'.
1193  *
1194  * 'upcall->packet' and 'upcall->key' point into data in the caller-provided
1195  * 'buf', so their memory cannot be freed separately from 'buf'.  (This is
1196  * hardly a great way to do things but it works out OK for the dpif providers
1197  * and clients that exist so far.)
1198  *
1199  * Returns 0 if successful, otherwise a positive errno value.  Returns EAGAIN
1200  * if no upcall is immediately available. */
1201 int
1202 dpif_recv(struct dpif *dpif, struct dpif_upcall *upcall, struct ofpbuf *buf)
1203 {
1204     int error = dpif->dpif_class->recv(dpif, upcall, buf);
1205     if (!error && !VLOG_DROP_DBG(&dpmsg_rl)) {
1206         struct ds flow;
1207         char *packet;
1208
1209         packet = ofp_packet_to_string(upcall->packet->data,
1210                                       upcall->packet->size);
1211
1212         ds_init(&flow);
1213         odp_flow_key_format(upcall->key, upcall->key_len, &flow);
1214
1215         VLOG_DBG("%s: %s upcall:\n%s\n%s",
1216                  dpif_name(dpif), dpif_upcall_type_to_string(upcall->type),
1217                  ds_cstr(&flow), packet);
1218
1219         ds_destroy(&flow);
1220         free(packet);
1221     } else if (error && error != EAGAIN) {
1222         log_operation(dpif, "recv", error);
1223     }
1224     return error;
1225 }
1226
1227 /* Discards all messages that would otherwise be received by dpif_recv() on
1228  * 'dpif'. */
1229 void
1230 dpif_recv_purge(struct dpif *dpif)
1231 {
1232     COVERAGE_INC(dpif_purge);
1233     if (dpif->dpif_class->recv_purge) {
1234         dpif->dpif_class->recv_purge(dpif);
1235     }
1236 }
1237
1238 /* Arranges for the poll loop to wake up when 'dpif' has a message queued to be
1239  * received with dpif_recv(). */
1240 void
1241 dpif_recv_wait(struct dpif *dpif)
1242 {
1243     dpif->dpif_class->recv_wait(dpif);
1244 }
1245
1246 /* Obtains the NetFlow engine type and engine ID for 'dpif' into '*engine_type'
1247  * and '*engine_id', respectively. */
1248 void
1249 dpif_get_netflow_ids(const struct dpif *dpif,
1250                      uint8_t *engine_type, uint8_t *engine_id)
1251 {
1252     *engine_type = dpif->netflow_engine_type;
1253     *engine_id = dpif->netflow_engine_id;
1254 }
1255
1256 /* Translates OpenFlow queue ID 'queue_id' (in host byte order) into a priority
1257  * value used for setting packet priority.
1258  * On success, returns 0 and stores the priority into '*priority'.
1259  * On failure, returns a positive errno value and stores 0 into '*priority'. */
1260 int
1261 dpif_queue_to_priority(const struct dpif *dpif, uint32_t queue_id,
1262                        uint32_t *priority)
1263 {
1264     int error = (dpif->dpif_class->queue_to_priority
1265                  ? dpif->dpif_class->queue_to_priority(dpif, queue_id,
1266                                                        priority)
1267                  : EOPNOTSUPP);
1268     if (error) {
1269         *priority = 0;
1270     }
1271     log_operation(dpif, "queue_to_priority", error);
1272     return error;
1273 }
1274 \f
1275 void
1276 dpif_init(struct dpif *dpif, const struct dpif_class *dpif_class,
1277           const char *name,
1278           uint8_t netflow_engine_type, uint8_t netflow_engine_id)
1279 {
1280     dpif->dpif_class = dpif_class;
1281     dpif->base_name = xstrdup(name);
1282     dpif->full_name = xasprintf("%s@%s", dpif_class->type, name);
1283     dpif->netflow_engine_type = netflow_engine_type;
1284     dpif->netflow_engine_id = netflow_engine_id;
1285 }
1286
1287 /* Undoes the results of initialization.
1288  *
1289  * Normally this function only needs to be called from dpif_close().
1290  * However, it may be called by providers due to an error on opening
1291  * that occurs after initialization.  It this case dpif_close() would
1292  * never be called. */
1293 void
1294 dpif_uninit(struct dpif *dpif, bool close)
1295 {
1296     char *base_name = dpif->base_name;
1297     char *full_name = dpif->full_name;
1298
1299     if (close) {
1300         dpif->dpif_class->close(dpif);
1301     }
1302
1303     free(base_name);
1304     free(full_name);
1305 }
1306 \f
1307 static void
1308 log_operation(const struct dpif *dpif, const char *operation, int error)
1309 {
1310     if (!error) {
1311         VLOG_DBG_RL(&dpmsg_rl, "%s: %s success", dpif_name(dpif), operation);
1312     } else if (ofperr_is_valid(error)) {
1313         VLOG_WARN_RL(&error_rl, "%s: %s failed (%s)",
1314                      dpif_name(dpif), operation, ofperr_get_name(error));
1315     } else {
1316         VLOG_WARN_RL(&error_rl, "%s: %s failed (%s)",
1317                      dpif_name(dpif), operation, ovs_strerror(error));
1318     }
1319 }
1320
1321 static enum vlog_level
1322 flow_message_log_level(int error)
1323 {
1324     /* If flows arrive in a batch, userspace may push down multiple
1325      * unique flow definitions that overlap when wildcards are applied.
1326      * Kernels that support flow wildcarding will reject these flows as
1327      * duplicates (EEXIST), so lower the log level to debug for these
1328      * types of messages. */
1329     return (error && error != EEXIST) ? VLL_WARN : VLL_DBG;
1330 }
1331
1332 static bool
1333 should_log_flow_message(int error)
1334 {
1335     return !vlog_should_drop(THIS_MODULE, flow_message_log_level(error),
1336                              error ? &error_rl : &dpmsg_rl);
1337 }
1338
1339 static void
1340 log_flow_message(const struct dpif *dpif, int error, const char *operation,
1341                  const struct nlattr *key, size_t key_len,
1342                  const struct nlattr *mask, size_t mask_len,
1343                  const struct dpif_flow_stats *stats,
1344                  const struct nlattr *actions, size_t actions_len)
1345 {
1346     struct ds ds = DS_EMPTY_INITIALIZER;
1347     ds_put_format(&ds, "%s: ", dpif_name(dpif));
1348     if (error) {
1349         ds_put_cstr(&ds, "failed to ");
1350     }
1351     ds_put_format(&ds, "%s ", operation);
1352     if (error) {
1353         ds_put_format(&ds, "(%s) ", ovs_strerror(error));
1354     }
1355     odp_flow_format(key, key_len, mask, mask_len, &ds, true);
1356     if (stats) {
1357         ds_put_cstr(&ds, ", ");
1358         dpif_flow_stats_format(stats, &ds);
1359     }
1360     if (actions || actions_len) {
1361         ds_put_cstr(&ds, ", actions:");
1362         format_odp_actions(&ds, actions, actions_len);
1363     }
1364     vlog(THIS_MODULE, flow_message_log_level(error), "%s", ds_cstr(&ds));
1365     ds_destroy(&ds);
1366 }
1367
1368 static void
1369 log_flow_put_message(struct dpif *dpif, const struct dpif_flow_put *put,
1370                      int error)
1371 {
1372     if (should_log_flow_message(error)) {
1373         struct ds s;
1374
1375         ds_init(&s);
1376         ds_put_cstr(&s, "put");
1377         if (put->flags & DPIF_FP_CREATE) {
1378             ds_put_cstr(&s, "[create]");
1379         }
1380         if (put->flags & DPIF_FP_MODIFY) {
1381             ds_put_cstr(&s, "[modify]");
1382         }
1383         if (put->flags & DPIF_FP_ZERO_STATS) {
1384             ds_put_cstr(&s, "[zero]");
1385         }
1386         log_flow_message(dpif, error, ds_cstr(&s),
1387                          put->key, put->key_len, put->mask, put->mask_len,
1388                          put->stats, put->actions, put->actions_len);
1389         ds_destroy(&s);
1390     }
1391 }
1392
1393 static void
1394 log_flow_del_message(struct dpif *dpif, const struct dpif_flow_del *del,
1395                      int error)
1396 {
1397     if (should_log_flow_message(error)) {
1398         log_flow_message(dpif, error, "flow_del", del->key, del->key_len,
1399                          NULL, 0, !error ? del->stats : NULL, NULL, 0);
1400     }
1401 }
1402
1403 static void
1404 log_execute_message(struct dpif *dpif, const struct dpif_execute *execute,
1405                     int error)
1406 {
1407     if (!(error ? VLOG_DROP_WARN(&error_rl) : VLOG_DROP_DBG(&dpmsg_rl))) {
1408         struct ds ds = DS_EMPTY_INITIALIZER;
1409         char *packet;
1410
1411         packet = ofp_packet_to_string(execute->packet->data,
1412                                       execute->packet->size);
1413         ds_put_format(&ds, "%s: execute ", dpif_name(dpif));
1414         format_odp_actions(&ds, execute->actions, execute->actions_len);
1415         if (error) {
1416             ds_put_format(&ds, " failed (%s)", ovs_strerror(error));
1417         }
1418         ds_put_format(&ds, " on packet %s", packet);
1419         vlog(THIS_MODULE, error ? VLL_WARN : VLL_DBG, "%s", ds_cstr(&ds));
1420         ds_destroy(&ds);
1421         free(packet);
1422     }
1423 }