dpif: Support fetching flow mask via dpif_flow_get().
[cascardo/ovs.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 "packet-dpif.h"
38 #include "packets.h"
39 #include "poll-loop.h"
40 #include "shash.h"
41 #include "sset.h"
42 #include "timeval.h"
43 #include "util.h"
44 #include "valgrind.h"
45 #include "vlog.h"
46
47 VLOG_DEFINE_THIS_MODULE(dpif);
48
49 COVERAGE_DEFINE(dpif_destroy);
50 COVERAGE_DEFINE(dpif_port_add);
51 COVERAGE_DEFINE(dpif_port_del);
52 COVERAGE_DEFINE(dpif_flow_flush);
53 COVERAGE_DEFINE(dpif_flow_get);
54 COVERAGE_DEFINE(dpif_flow_put);
55 COVERAGE_DEFINE(dpif_flow_del);
56 COVERAGE_DEFINE(dpif_execute);
57 COVERAGE_DEFINE(dpif_purge);
58 COVERAGE_DEFINE(dpif_execute_with_help);
59
60 static const struct dpif_class *base_dpif_classes[] = {
61 #ifdef __linux__
62     &dpif_linux_class,
63 #endif
64     &dpif_netdev_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                                 bool subexecute, 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
277              ? dpif_class->enumerate(names, dpif_class)
278              : 0);
279     if (error) {
280         VLOG_WARN("failed to enumerate %s datapaths: %s", dpif_class->type,
281                    ovs_strerror(error));
282     }
283     dp_class_unref(registered_class);
284
285     return error;
286 }
287
288 /* Parses 'datapath_name_', which is of the form [type@]name into its
289  * component pieces.  'name' and 'type' must be freed by the caller.
290  *
291  * The returned 'type' is normalized, as if by dpif_normalize_type(). */
292 void
293 dp_parse_name(const char *datapath_name_, char **name, char **type)
294 {
295     char *datapath_name = xstrdup(datapath_name_);
296     char *separator;
297
298     separator = strchr(datapath_name, '@');
299     if (separator) {
300         *separator = '\0';
301         *type = datapath_name;
302         *name = xstrdup(dpif_normalize_type(separator + 1));
303     } else {
304         *name = datapath_name;
305         *type = xstrdup(dpif_normalize_type(NULL));
306     }
307 }
308
309 static int
310 do_open(const char *name, const char *type, bool create, struct dpif **dpifp)
311 {
312     struct dpif *dpif = NULL;
313     int error;
314     struct registered_dpif_class *registered_class;
315
316     dp_initialize();
317
318     type = dpif_normalize_type(type);
319     registered_class = dp_class_lookup(type);
320     if (!registered_class) {
321         VLOG_WARN("could not create datapath %s of unknown type %s", name,
322                   type);
323         error = EAFNOSUPPORT;
324         goto exit;
325     }
326
327     error = registered_class->dpif_class->open(registered_class->dpif_class,
328                                                name, create, &dpif);
329     if (!error) {
330         ovs_assert(dpif->dpif_class == registered_class->dpif_class);
331     } else {
332         dp_class_unref(registered_class);
333     }
334
335 exit:
336     *dpifp = error ? NULL : dpif;
337     return error;
338 }
339
340 /* Tries to open an existing datapath named 'name' and type 'type'.  Will fail
341  * if no datapath with 'name' and 'type' exists.  'type' may be either NULL or
342  * the empty string to specify the default system type.  Returns 0 if
343  * successful, otherwise a positive errno value.  On success stores a pointer
344  * to the datapath in '*dpifp', otherwise a null pointer. */
345 int
346 dpif_open(const char *name, const char *type, struct dpif **dpifp)
347 {
348     return do_open(name, type, false, dpifp);
349 }
350
351 /* Tries to create and open a new datapath with the given 'name' and 'type'.
352  * 'type' may be either NULL or the empty string to specify the default system
353  * type.  Will fail if a datapath with 'name' and 'type' already exists.
354  * Returns 0 if successful, otherwise a positive errno value.  On success
355  * stores a pointer to the datapath in '*dpifp', otherwise a null pointer. */
356 int
357 dpif_create(const char *name, const char *type, struct dpif **dpifp)
358 {
359     return do_open(name, type, true, dpifp);
360 }
361
362 /* Tries to open a datapath with the given 'name' and 'type', creating it if it
363  * does not exist.  'type' may be either NULL or the empty string to specify
364  * the default system type.  Returns 0 if successful, otherwise a positive
365  * errno value. On success stores a pointer to the datapath in '*dpifp',
366  * otherwise a null pointer. */
367 int
368 dpif_create_and_open(const char *name, const char *type, struct dpif **dpifp)
369 {
370     int error;
371
372     error = dpif_create(name, type, dpifp);
373     if (error == EEXIST || error == EBUSY) {
374         error = dpif_open(name, type, dpifp);
375         if (error) {
376             VLOG_WARN("datapath %s already exists but cannot be opened: %s",
377                       name, ovs_strerror(error));
378         }
379     } else if (error) {
380         VLOG_WARN("failed to create datapath %s: %s",
381                   name, ovs_strerror(error));
382     }
383     return error;
384 }
385
386 /* Closes and frees the connection to 'dpif'.  Does not destroy the datapath
387  * itself; call dpif_delete() first, instead, if that is desirable. */
388 void
389 dpif_close(struct dpif *dpif)
390 {
391     if (dpif) {
392         struct registered_dpif_class *rc;
393
394         rc = shash_find_data(&dpif_classes, dpif->dpif_class->type);
395         dpif_uninit(dpif, true);
396         dp_class_unref(rc);
397     }
398 }
399
400 /* Performs periodic work needed by 'dpif'. */
401 void
402 dpif_run(struct dpif *dpif)
403 {
404     if (dpif->dpif_class->run) {
405         dpif->dpif_class->run(dpif);
406     }
407 }
408
409 /* Arranges for poll_block() to wake up when dp_run() needs to be called for
410  * 'dpif'. */
411 void
412 dpif_wait(struct dpif *dpif)
413 {
414     if (dpif->dpif_class->wait) {
415         dpif->dpif_class->wait(dpif);
416     }
417 }
418
419 /* Returns the name of datapath 'dpif' prefixed with the type
420  * (for use in log messages). */
421 const char *
422 dpif_name(const struct dpif *dpif)
423 {
424     return dpif->full_name;
425 }
426
427 /* Returns the name of datapath 'dpif' without the type
428  * (for use in device names). */
429 const char *
430 dpif_base_name(const struct dpif *dpif)
431 {
432     return dpif->base_name;
433 }
434
435 /* Returns the type of datapath 'dpif'. */
436 const char *
437 dpif_type(const struct dpif *dpif)
438 {
439     return dpif->dpif_class->type;
440 }
441
442 /* Returns the fully spelled out name for the given datapath 'type'.
443  *
444  * Normalized type string can be compared with strcmp().  Unnormalized type
445  * string might be the same even if they have different spellings. */
446 const char *
447 dpif_normalize_type(const char *type)
448 {
449     return type && type[0] ? type : "system";
450 }
451
452 /* Destroys the datapath that 'dpif' is connected to, first removing all of its
453  * ports.  After calling this function, it does not make sense to pass 'dpif'
454  * to any functions other than dpif_name() or dpif_close(). */
455 int
456 dpif_delete(struct dpif *dpif)
457 {
458     int error;
459
460     COVERAGE_INC(dpif_destroy);
461
462     error = dpif->dpif_class->destroy(dpif);
463     log_operation(dpif, "delete", error);
464     return error;
465 }
466
467 /* Retrieves statistics for 'dpif' into 'stats'.  Returns 0 if successful,
468  * otherwise a positive errno value. */
469 int
470 dpif_get_dp_stats(const struct dpif *dpif, struct dpif_dp_stats *stats)
471 {
472     int error = dpif->dpif_class->get_stats(dpif, stats);
473     if (error) {
474         memset(stats, 0, sizeof *stats);
475     }
476     log_operation(dpif, "get_stats", error);
477     return error;
478 }
479
480 const char *
481 dpif_port_open_type(const char *datapath_type, const char *port_type)
482 {
483     struct registered_dpif_class *rc;
484
485     datapath_type = dpif_normalize_type(datapath_type);
486
487     ovs_mutex_lock(&dpif_mutex);
488     rc = shash_find_data(&dpif_classes, datapath_type);
489     if (rc && rc->dpif_class->port_open_type) {
490         port_type = rc->dpif_class->port_open_type(rc->dpif_class, port_type);
491     }
492     ovs_mutex_unlock(&dpif_mutex);
493
494     return port_type;
495 }
496
497 /* Attempts to add 'netdev' as a port on 'dpif'.  If 'port_nop' is
498  * non-null and its value is not ODPP_NONE, then attempts to use the
499  * value as the port number.
500  *
501  * If successful, returns 0 and sets '*port_nop' to the new port's port
502  * number (if 'port_nop' is non-null).  On failure, returns a positive
503  * errno value and sets '*port_nop' to ODPP_NONE (if 'port_nop' is
504  * non-null). */
505 int
506 dpif_port_add(struct dpif *dpif, struct netdev *netdev, odp_port_t *port_nop)
507 {
508     const char *netdev_name = netdev_get_name(netdev);
509     odp_port_t port_no = ODPP_NONE;
510     int error;
511
512     COVERAGE_INC(dpif_port_add);
513
514     if (port_nop) {
515         port_no = *port_nop;
516     }
517
518     error = dpif->dpif_class->port_add(dpif, netdev, &port_no);
519     if (!error) {
520         VLOG_DBG_RL(&dpmsg_rl, "%s: added %s as port %"PRIu32,
521                     dpif_name(dpif), netdev_name, port_no);
522     } else {
523         VLOG_WARN_RL(&error_rl, "%s: failed to add %s as port: %s",
524                      dpif_name(dpif), netdev_name, ovs_strerror(error));
525         port_no = ODPP_NONE;
526     }
527     if (port_nop) {
528         *port_nop = port_no;
529     }
530     return error;
531 }
532
533 /* Attempts to remove 'dpif''s port number 'port_no'.  Returns 0 if successful,
534  * otherwise a positive errno value. */
535 int
536 dpif_port_del(struct dpif *dpif, odp_port_t port_no)
537 {
538     int error;
539
540     COVERAGE_INC(dpif_port_del);
541
542     error = dpif->dpif_class->port_del(dpif, port_no);
543     if (!error) {
544         VLOG_DBG_RL(&dpmsg_rl, "%s: port_del(%"PRIu32")",
545                     dpif_name(dpif), port_no);
546     } else {
547         log_operation(dpif, "port_del", error);
548     }
549     return error;
550 }
551
552 /* Makes a deep copy of 'src' into 'dst'. */
553 void
554 dpif_port_clone(struct dpif_port *dst, const struct dpif_port *src)
555 {
556     dst->name = xstrdup(src->name);
557     dst->type = xstrdup(src->type);
558     dst->port_no = src->port_no;
559 }
560
561 /* Frees memory allocated to members of 'dpif_port'.
562  *
563  * Do not call this function on a dpif_port obtained from
564  * dpif_port_dump_next(): that function retains ownership of the data in the
565  * dpif_port. */
566 void
567 dpif_port_destroy(struct dpif_port *dpif_port)
568 {
569     free(dpif_port->name);
570     free(dpif_port->type);
571 }
572
573 /* Checks if port named 'devname' exists in 'dpif'.  If so, returns
574  * true; otherwise, returns false. */
575 bool
576 dpif_port_exists(const struct dpif *dpif, const char *devname)
577 {
578     int error = dpif->dpif_class->port_query_by_name(dpif, devname, NULL);
579     if (error != 0 && error != ENOENT && error != ENODEV) {
580         VLOG_WARN_RL(&error_rl, "%s: failed to query port %s: %s",
581                      dpif_name(dpif), devname, ovs_strerror(error));
582     }
583
584     return !error;
585 }
586
587 /* Looks up port number 'port_no' in 'dpif'.  On success, returns 0 and
588  * initializes '*port' appropriately; on failure, returns a positive errno
589  * value.
590  *
591  * The caller owns the data in 'port' and must free it with
592  * dpif_port_destroy() when it is no longer needed. */
593 int
594 dpif_port_query_by_number(const struct dpif *dpif, odp_port_t port_no,
595                           struct dpif_port *port)
596 {
597     int error = dpif->dpif_class->port_query_by_number(dpif, port_no, port);
598     if (!error) {
599         VLOG_DBG_RL(&dpmsg_rl, "%s: port %"PRIu32" is device %s",
600                     dpif_name(dpif), port_no, port->name);
601     } else {
602         memset(port, 0, sizeof *port);
603         VLOG_WARN_RL(&error_rl, "%s: failed to query port %"PRIu32": %s",
604                      dpif_name(dpif), port_no, ovs_strerror(error));
605     }
606     return error;
607 }
608
609 /* Looks up port named 'devname' in 'dpif'.  On success, returns 0 and
610  * initializes '*port' appropriately; on failure, returns a positive errno
611  * value.
612  *
613  * The caller owns the data in 'port' and must free it with
614  * dpif_port_destroy() when it is no longer needed. */
615 int
616 dpif_port_query_by_name(const struct dpif *dpif, const char *devname,
617                         struct dpif_port *port)
618 {
619     int error = dpif->dpif_class->port_query_by_name(dpif, devname, port);
620     if (!error) {
621         VLOG_DBG_RL(&dpmsg_rl, "%s: device %s is on port %"PRIu32,
622                     dpif_name(dpif), devname, port->port_no);
623     } else {
624         memset(port, 0, sizeof *port);
625
626         /* For ENOENT or ENODEV we use DBG level because the caller is probably
627          * interested in whether 'dpif' actually has a port 'devname', so that
628          * it's not an issue worth logging if it doesn't.  Other errors are
629          * uncommon and more likely to indicate a real problem. */
630         VLOG_RL(&error_rl,
631                 error == ENOENT || error == ENODEV ? VLL_DBG : VLL_WARN,
632                 "%s: failed to query port %s: %s",
633                 dpif_name(dpif), devname, ovs_strerror(error));
634     }
635     return error;
636 }
637
638 /* Returns the Netlink PID value to supply in OVS_ACTION_ATTR_USERSPACE
639  * actions as the OVS_USERSPACE_ATTR_PID attribute's value, for use in
640  * flows whose packets arrived on port 'port_no'.  In the case where the
641  * provider allocates multiple Netlink PIDs to a single port, it may use
642  * 'hash' to spread load among them.  The caller need not use a particular
643  * hash function; a 5-tuple hash is suitable.
644  *
645  * (The datapath implementation might use some different hash function for
646  * distributing packets received via flow misses among PIDs.  This means
647  * that packets received via flow misses might be reordered relative to
648  * packets received via userspace actions.  This is not ordinarily a
649  * problem.)
650  *
651  * A 'port_no' of ODPP_NONE is a special case: it returns a reserved PID, not
652  * allocated to any port, that the client may use for special purposes.
653  *
654  * The return value is only meaningful when DPIF_UC_ACTION has been enabled in
655  * the 'dpif''s listen mask.  It is allowed to change when DPIF_UC_ACTION is
656  * disabled and then re-enabled, so a client that does that must be prepared to
657  * update all of the flows that it installed that contain
658  * OVS_ACTION_ATTR_USERSPACE actions. */
659 uint32_t
660 dpif_port_get_pid(const struct dpif *dpif, odp_port_t port_no, uint32_t hash)
661 {
662     return (dpif->dpif_class->port_get_pid
663             ? (dpif->dpif_class->port_get_pid)(dpif, port_no, hash)
664             : 0);
665 }
666
667 /* Looks up port number 'port_no' in 'dpif'.  On success, returns 0 and copies
668  * the port's name into the 'name_size' bytes in 'name', ensuring that the
669  * result is null-terminated.  On failure, returns a positive errno value and
670  * makes 'name' the empty string. */
671 int
672 dpif_port_get_name(struct dpif *dpif, odp_port_t port_no,
673                    char *name, size_t name_size)
674 {
675     struct dpif_port port;
676     int error;
677
678     ovs_assert(name_size > 0);
679
680     error = dpif_port_query_by_number(dpif, port_no, &port);
681     if (!error) {
682         ovs_strlcpy(name, port.name, name_size);
683         dpif_port_destroy(&port);
684     } else {
685         *name = '\0';
686     }
687     return error;
688 }
689
690 /* Initializes 'dump' to begin dumping the ports in a dpif.
691  *
692  * This function provides no status indication.  An error status for the entire
693  * dump operation is provided when it is completed by calling
694  * dpif_port_dump_done().
695  */
696 void
697 dpif_port_dump_start(struct dpif_port_dump *dump, const struct dpif *dpif)
698 {
699     dump->dpif = dpif;
700     dump->error = dpif->dpif_class->port_dump_start(dpif, &dump->state);
701     log_operation(dpif, "port_dump_start", dump->error);
702 }
703
704 /* Attempts to retrieve another port from 'dump', which must have been
705  * initialized with dpif_port_dump_start().  On success, stores a new dpif_port
706  * into 'port' and returns true.  On failure, returns false.
707  *
708  * Failure might indicate an actual error or merely that the last port has been
709  * dumped.  An error status for the entire dump operation is provided when it
710  * is completed by calling dpif_port_dump_done().
711  *
712  * The dpif owns the data stored in 'port'.  It will remain valid until at
713  * least the next time 'dump' is passed to dpif_port_dump_next() or
714  * dpif_port_dump_done(). */
715 bool
716 dpif_port_dump_next(struct dpif_port_dump *dump, struct dpif_port *port)
717 {
718     const struct dpif *dpif = dump->dpif;
719
720     if (dump->error) {
721         return false;
722     }
723
724     dump->error = dpif->dpif_class->port_dump_next(dpif, dump->state, port);
725     if (dump->error == EOF) {
726         VLOG_DBG_RL(&dpmsg_rl, "%s: dumped all ports", dpif_name(dpif));
727     } else {
728         log_operation(dpif, "port_dump_next", dump->error);
729     }
730
731     if (dump->error) {
732         dpif->dpif_class->port_dump_done(dpif, dump->state);
733         return false;
734     }
735     return true;
736 }
737
738 /* Completes port table dump operation 'dump', which must have been initialized
739  * with dpif_port_dump_start().  Returns 0 if the dump operation was
740  * error-free, otherwise a positive errno value describing the problem. */
741 int
742 dpif_port_dump_done(struct dpif_port_dump *dump)
743 {
744     const struct dpif *dpif = dump->dpif;
745     if (!dump->error) {
746         dump->error = dpif->dpif_class->port_dump_done(dpif, dump->state);
747         log_operation(dpif, "port_dump_done", dump->error);
748     }
749     return dump->error == EOF ? 0 : dump->error;
750 }
751
752 /* Polls for changes in the set of ports in 'dpif'.  If the set of ports in
753  * 'dpif' has changed, this function does one of the following:
754  *
755  * - Stores the name of the device that was added to or deleted from 'dpif' in
756  *   '*devnamep' and returns 0.  The caller is responsible for freeing
757  *   '*devnamep' (with free()) when it no longer needs it.
758  *
759  * - Returns ENOBUFS and sets '*devnamep' to NULL.
760  *
761  * This function may also return 'false positives', where it returns 0 and
762  * '*devnamep' names a device that was not actually added or deleted or it
763  * returns ENOBUFS without any change.
764  *
765  * Returns EAGAIN if the set of ports in 'dpif' has not changed.  May also
766  * return other positive errno values to indicate that something has gone
767  * wrong. */
768 int
769 dpif_port_poll(const struct dpif *dpif, char **devnamep)
770 {
771     int error = dpif->dpif_class->port_poll(dpif, devnamep);
772     if (error) {
773         *devnamep = NULL;
774     }
775     return error;
776 }
777
778 /* Arranges for the poll loop to wake up when port_poll(dpif) will return a
779  * value other than EAGAIN. */
780 void
781 dpif_port_poll_wait(const struct dpif *dpif)
782 {
783     dpif->dpif_class->port_poll_wait(dpif);
784 }
785
786 /* Extracts the flow stats for a packet.  The 'flow' and 'packet'
787  * arguments must have been initialized through a call to flow_extract().
788  * 'used' is stored into stats->used. */
789 void
790 dpif_flow_stats_extract(const struct flow *flow, const struct ofpbuf *packet,
791                         long long int used, struct dpif_flow_stats *stats)
792 {
793     stats->tcp_flags = ntohs(flow->tcp_flags);
794     stats->n_bytes = ofpbuf_size(packet);
795     stats->n_packets = 1;
796     stats->used = used;
797 }
798
799 /* Appends a human-readable representation of 'stats' to 's'. */
800 void
801 dpif_flow_stats_format(const struct dpif_flow_stats *stats, struct ds *s)
802 {
803     ds_put_format(s, "packets:%"PRIu64", bytes:%"PRIu64", used:",
804                   stats->n_packets, stats->n_bytes);
805     if (stats->used) {
806         ds_put_format(s, "%.3fs", (time_msec() - stats->used) / 1000.0);
807     } else {
808         ds_put_format(s, "never");
809     }
810     if (stats->tcp_flags) {
811         ds_put_cstr(s, ", flags:");
812         packet_format_tcp_flags(s, stats->tcp_flags);
813     }
814 }
815
816 /* Deletes all flows from 'dpif'.  Returns 0 if successful, otherwise a
817  * positive errno value.  */
818 int
819 dpif_flow_flush(struct dpif *dpif)
820 {
821     int error;
822
823     COVERAGE_INC(dpif_flow_flush);
824
825     error = dpif->dpif_class->flow_flush(dpif);
826     log_operation(dpif, "flow_flush", error);
827     return error;
828 }
829
830 /* Queries 'dpif' for a flow entry.  The flow is specified by the Netlink
831  * attributes with types OVS_KEY_ATTR_* in the 'key_len' bytes starting at
832  * 'key'.
833  *
834  * Returns 0 if successful.  If no flow matches, returns ENOENT.  On other
835  * failure, returns a positive errno value.
836  *
837  * On success, '*bufp' will be set to an ofpbuf owned by the caller that
838  * contains the response for 'flow->mask' and 'flow->actions'. The caller must
839  * supply a valid pointer, and must free the ofpbuf (with ofpbuf_delete()) when
840  * it is no longer needed.
841  *
842  * On success, 'flow' will be populated with the mask, actions and stats for
843  * the datapath flow corresponding to 'key'. The mask and actions will point
844  * within '*bufp'.
845  */
846 int
847 dpif_flow_get(const struct dpif *dpif,
848               const struct nlattr *key, size_t key_len,
849               struct ofpbuf **bufp, struct dpif_flow *flow)
850 {
851     int error;
852     struct nlattr *mask, *actions;
853     size_t mask_len, actions_len;
854     struct dpif_flow_stats stats;
855
856     COVERAGE_INC(dpif_flow_get);
857
858     *bufp = NULL;
859     error = dpif->dpif_class->flow_get(dpif, key, key_len, bufp,
860                                        &mask, &mask_len,
861                                        &actions, &actions_len, &stats);
862     if (error) {
863         memset(flow, 0, sizeof *flow);
864         ofpbuf_delete(*bufp);
865         *bufp = NULL;
866     } else {
867         flow->mask = mask;
868         flow->mask_len = mask_len;
869         flow->actions = actions;
870         flow->actions_len = actions_len;
871         flow->stats = stats;
872     }
873     if (should_log_flow_message(error)) {
874         log_flow_message(dpif, error, "flow_get", key, key_len,
875                          NULL, 0, &flow->stats,
876                          flow->actions, flow->actions_len);
877     }
878     return error;
879 }
880
881 static int
882 dpif_flow_put__(struct dpif *dpif, const struct dpif_flow_put *put)
883 {
884     int error;
885
886     COVERAGE_INC(dpif_flow_put);
887     ovs_assert(!(put->flags & ~(DPIF_FP_CREATE | DPIF_FP_MODIFY
888                                 | DPIF_FP_ZERO_STATS)));
889
890     error = dpif->dpif_class->flow_put(dpif, put);
891     if (error && put->stats) {
892         memset(put->stats, 0, sizeof *put->stats);
893     }
894     log_flow_put_message(dpif, put, error);
895     return error;
896 }
897
898 /* Adds or modifies a flow in 'dpif'.  The flow is specified by the Netlink
899  * attribute OVS_FLOW_ATTR_KEY with types OVS_KEY_ATTR_* in the 'key_len' bytes
900  * starting at 'key', and OVS_FLOW_ATTR_MASK with types of OVS_KEY_ATTR_* in
901  * the 'mask_len' bytes starting at 'mask'. The associated actions are
902  * specified by the Netlink attributes with types OVS_ACTION_ATTR_* in the
903  * 'actions_len' bytes starting at 'actions'.
904  *
905  * - If the flow's key does not exist in 'dpif', then the flow will be added if
906  *   'flags' includes DPIF_FP_CREATE.  Otherwise the operation will fail with
907  *   ENOENT.
908  *
909  *   The datapath may reject attempts to insert overlapping flows with EINVAL
910  *   or EEXIST, but clients should not rely on this: avoiding overlapping flows
911  *   is primarily the client's responsibility.
912  *
913  *   If the operation succeeds, then 'stats', if nonnull, will be zeroed.
914  *
915  * - If the flow's key does exist in 'dpif', then the flow's actions will be
916  *   updated if 'flags' includes DPIF_FP_MODIFY.  Otherwise the operation will
917  *   fail with EEXIST.  If the flow's actions are updated, then its statistics
918  *   will be zeroed if 'flags' includes DPIF_FP_ZERO_STATS, and left as-is
919  *   otherwise.
920  *
921  *   If the operation succeeds, then 'stats', if nonnull, will be set to the
922  *   flow's statistics before the update.
923  */
924 int
925 dpif_flow_put(struct dpif *dpif, enum dpif_flow_put_flags flags,
926               const struct nlattr *key, size_t key_len,
927               const struct nlattr *mask, size_t mask_len,
928               const struct nlattr *actions, size_t actions_len,
929               struct dpif_flow_stats *stats)
930 {
931     struct dpif_flow_put put;
932
933     put.flags = flags;
934     put.key = key;
935     put.key_len = key_len;
936     put.mask = mask;
937     put.mask_len = mask_len;
938     put.actions = actions;
939     put.actions_len = actions_len;
940     put.stats = stats;
941     return dpif_flow_put__(dpif, &put);
942 }
943
944 static int
945 dpif_flow_del__(struct dpif *dpif, struct dpif_flow_del *del)
946 {
947     int error;
948
949     COVERAGE_INC(dpif_flow_del);
950
951     error = dpif->dpif_class->flow_del(dpif, del);
952     if (error && del->stats) {
953         memset(del->stats, 0, sizeof *del->stats);
954     }
955     log_flow_del_message(dpif, del, error);
956     return error;
957 }
958
959 /* Deletes a flow from 'dpif' and returns 0, or returns ENOENT if 'dpif' does
960  * not contain such a flow.  The flow is specified by the Netlink attributes
961  * with types OVS_KEY_ATTR_* in the 'key_len' bytes starting at 'key'.
962  *
963  * If the operation succeeds, then 'stats', if nonnull, will be set to the
964  * flow's statistics before its deletion. */
965 int
966 dpif_flow_del(struct dpif *dpif,
967               const struct nlattr *key, size_t key_len,
968               struct dpif_flow_stats *stats)
969 {
970     struct dpif_flow_del del;
971
972     del.key = key;
973     del.key_len = key_len;
974     del.stats = stats;
975     return dpif_flow_del__(dpif, &del);
976 }
977
978 /* Creates and returns a new 'struct dpif_flow_dump' for iterating through the
979  * flows in 'dpif'.
980  *
981  * This function always successfully returns a dpif_flow_dump.  Error
982  * reporting is deferred to dpif_flow_dump_destroy(). */
983 struct dpif_flow_dump *
984 dpif_flow_dump_create(const struct dpif *dpif)
985 {
986     return dpif->dpif_class->flow_dump_create(dpif);
987 }
988
989 /* Destroys 'dump', which must have been created with dpif_flow_dump_create().
990  * All dpif_flow_dump_thread structures previously created for 'dump' must
991  * previously have been destroyed.
992  *
993  * Returns 0 if the dump operation was error-free, otherwise a positive errno
994  * value describing the problem. */
995 int
996 dpif_flow_dump_destroy(struct dpif_flow_dump *dump)
997 {
998     const struct dpif *dpif = dump->dpif;
999     int error = dpif->dpif_class->flow_dump_destroy(dump);
1000     log_operation(dpif, "flow_dump_destroy", error);
1001     return error == EOF ? 0 : error;
1002 }
1003
1004 /* Returns new thread-local state for use with dpif_flow_dump_next(). */
1005 struct dpif_flow_dump_thread *
1006 dpif_flow_dump_thread_create(struct dpif_flow_dump *dump)
1007 {
1008     return dump->dpif->dpif_class->flow_dump_thread_create(dump);
1009 }
1010
1011 /* Releases 'thread'. */
1012 void
1013 dpif_flow_dump_thread_destroy(struct dpif_flow_dump_thread *thread)
1014 {
1015     thread->dpif->dpif_class->flow_dump_thread_destroy(thread);
1016 }
1017
1018 /* Attempts to retrieve up to 'max_flows' more flows from 'thread'.  Returns 0
1019  * if and only if no flows remained to be retrieved, otherwise a positive
1020  * number reflecting the number of elements in 'flows[]' that were updated.
1021  * The number of flows returned might be less than 'max_flows' because
1022  * fewer than 'max_flows' remained, because this particular datapath does not
1023  * benefit from batching, or because an error occurred partway through
1024  * retrieval.  Thus, the caller should continue calling until a 0 return value,
1025  * even if intermediate return values are less than 'max_flows'.
1026  *
1027  * No error status is immediately provided.  An error status for the entire
1028  * dump operation is provided when it is completed by calling
1029  * dpif_flow_dump_destroy().
1030  *
1031  * All of the data stored into 'flows' is owned by the datapath, not by the
1032  * caller, and the caller must not modify or free it.  The datapath guarantees
1033  * that it remains accessible and unchanged until at least the next call to
1034  * dpif_flow_dump_next() for 'thread'. */
1035 int
1036 dpif_flow_dump_next(struct dpif_flow_dump_thread *thread,
1037                     struct dpif_flow *flows, int max_flows)
1038 {
1039     struct dpif *dpif = thread->dpif;
1040     int n;
1041
1042     ovs_assert(max_flows > 0);
1043     n = dpif->dpif_class->flow_dump_next(thread, flows, max_flows);
1044     if (n > 0) {
1045         struct dpif_flow *f;
1046
1047         for (f = flows; f < &flows[n] && should_log_flow_message(0); f++) {
1048             log_flow_message(dpif, 0, "flow_dump",
1049                              f->key, f->key_len, f->mask, f->mask_len,
1050                              &f->stats, f->actions, f->actions_len);
1051         }
1052     } else {
1053         VLOG_DBG_RL(&dpmsg_rl, "%s: dumped all flows", dpif_name(dpif));
1054     }
1055     return n;
1056 }
1057
1058 struct dpif_execute_helper_aux {
1059     struct dpif *dpif;
1060     int error;
1061 };
1062
1063 /* This is called for actions that need the context of the datapath to be
1064  * meaningful. */
1065 static void
1066 dpif_execute_helper_cb(void *aux_, struct dpif_packet **packets, int cnt,
1067                        struct pkt_metadata *md,
1068                        const struct nlattr *action, bool may_steal OVS_UNUSED)
1069 {
1070     struct dpif_execute_helper_aux *aux = aux_;
1071     int type = nl_attr_type(action);
1072     struct ofpbuf * packet = &packets[0]->ofpbuf;
1073
1074     ovs_assert(cnt == 1);
1075
1076     switch ((enum ovs_action_attr)type) {
1077     case OVS_ACTION_ATTR_OUTPUT:
1078     case OVS_ACTION_ATTR_USERSPACE:
1079     case OVS_ACTION_ATTR_RECIRC: {
1080         struct dpif_execute execute;
1081         struct ofpbuf execute_actions;
1082         uint64_t stub[256 / 8];
1083
1084         if (md->tunnel.ip_dst) {
1085             /* The Linux kernel datapath throws away the tunnel information
1086              * that we supply as metadata.  We have to use a "set" action to
1087              * supply it. */
1088             ofpbuf_use_stub(&execute_actions, stub, sizeof stub);
1089             odp_put_tunnel_action(&md->tunnel, &execute_actions);
1090             ofpbuf_put(&execute_actions, action, NLA_ALIGN(action->nla_len));
1091
1092             execute.actions = ofpbuf_data(&execute_actions);
1093             execute.actions_len = ofpbuf_size(&execute_actions);
1094         } else {
1095             execute.actions = action;
1096             execute.actions_len = NLA_ALIGN(action->nla_len);
1097         }
1098
1099         execute.packet = packet;
1100         execute.md = *md;
1101         execute.needs_help = false;
1102         aux->error = aux->dpif->dpif_class->execute(aux->dpif, &execute);
1103
1104         log_execute_message(aux->dpif, &execute, true, aux->error);
1105
1106         if (md->tunnel.ip_dst) {
1107             ofpbuf_uninit(&execute_actions);
1108         }
1109         break;
1110     }
1111
1112     case OVS_ACTION_ATTR_HASH:
1113     case OVS_ACTION_ATTR_PUSH_VLAN:
1114     case OVS_ACTION_ATTR_POP_VLAN:
1115     case OVS_ACTION_ATTR_PUSH_MPLS:
1116     case OVS_ACTION_ATTR_POP_MPLS:
1117     case OVS_ACTION_ATTR_SET:
1118     case OVS_ACTION_ATTR_SAMPLE:
1119     case OVS_ACTION_ATTR_UNSPEC:
1120     case __OVS_ACTION_ATTR_MAX:
1121         OVS_NOT_REACHED();
1122     }
1123 }
1124
1125 /* Executes 'execute' by performing most of the actions in userspace and
1126  * passing the fully constructed packets to 'dpif' for output and userspace
1127  * actions.
1128  *
1129  * This helps with actions that a given 'dpif' doesn't implement directly. */
1130 static int
1131 dpif_execute_with_help(struct dpif *dpif, struct dpif_execute *execute)
1132 {
1133     struct dpif_execute_helper_aux aux = {dpif, 0};
1134     struct dpif_packet packet, *pp;
1135
1136     COVERAGE_INC(dpif_execute_with_help);
1137
1138     packet.ofpbuf = *execute->packet;
1139     pp = &packet;
1140
1141     odp_execute_actions(&aux, &pp, 1, false, &execute->md, execute->actions,
1142                         execute->actions_len, dpif_execute_helper_cb);
1143
1144     /* Even though may_steal is set to false, some actions could modify or
1145      * reallocate the ofpbuf memory. We need to pass those changes to the
1146      * caller */
1147     *execute->packet = packet.ofpbuf;
1148
1149     return aux.error;
1150 }
1151
1152 /* Returns true if the datapath needs help executing 'execute'. */
1153 static bool
1154 dpif_execute_needs_help(const struct dpif_execute *execute)
1155 {
1156     return execute->needs_help || nl_attr_oversized(execute->actions_len);
1157 }
1158
1159 /* Causes 'dpif' to perform the 'execute->actions_len' bytes of actions in
1160  * 'execute->actions' on the Ethernet frame in 'execute->packet' and on packet
1161  * metadata in 'execute->md'.  The implementation is allowed to modify both the
1162  * '*execute->packet' and 'execute->md'.
1163  *
1164  * Some dpif providers do not implement every action.  The Linux kernel
1165  * datapath, in particular, does not implement ARP field modification.  If
1166  * 'needs_help' is true, the dpif layer executes in userspace all of the
1167  * actions that it can, and for OVS_ACTION_ATTR_OUTPUT and
1168  * OVS_ACTION_ATTR_USERSPACE actions it passes the packet through to the dpif
1169  * implementation.
1170  *
1171  * This works even if 'execute->actions_len' is too long for a Netlink
1172  * attribute.
1173  *
1174  * Returns 0 if successful, otherwise a positive errno value. */
1175 int
1176 dpif_execute(struct dpif *dpif, struct dpif_execute *execute)
1177 {
1178     int error;
1179
1180     COVERAGE_INC(dpif_execute);
1181     if (execute->actions_len > 0) {
1182         error = (dpif_execute_needs_help(execute)
1183                  ? dpif_execute_with_help(dpif, execute)
1184                  : dpif->dpif_class->execute(dpif, execute));
1185     } else {
1186         error = 0;
1187     }
1188
1189     log_execute_message(dpif, execute, false, error);
1190
1191     return error;
1192 }
1193
1194 /* Executes each of the 'n_ops' operations in 'ops' on 'dpif', in the order in
1195  * which they are specified, placing each operation's results in the "output"
1196  * members documented in comments.
1197  *
1198  * This function exists because some datapaths can perform batched operations
1199  * faster than individual operations. */
1200 void
1201 dpif_operate(struct dpif *dpif, struct dpif_op **ops, size_t n_ops)
1202 {
1203     if (dpif->dpif_class->operate) {
1204         while (n_ops > 0) {
1205             size_t chunk;
1206
1207             /* Count 'chunk', the number of ops that can be executed without
1208              * needing any help.  Ops that need help should be rare, so we
1209              * expect this to ordinarily be 'n_ops', that is, all the ops. */
1210             for (chunk = 0; chunk < n_ops; chunk++) {
1211                 struct dpif_op *op = ops[chunk];
1212
1213                 if (op->type == DPIF_OP_EXECUTE
1214                     && dpif_execute_needs_help(&op->u.execute)) {
1215                     break;
1216                 }
1217             }
1218
1219             if (chunk) {
1220                 /* Execute a chunk full of ops that the dpif provider can
1221                  * handle itself, without help. */
1222                 size_t i;
1223
1224                 dpif->dpif_class->operate(dpif, ops, chunk);
1225
1226                 for (i = 0; i < chunk; i++) {
1227                     struct dpif_op *op = ops[i];
1228
1229                     switch (op->type) {
1230                     case DPIF_OP_FLOW_PUT:
1231                         log_flow_put_message(dpif, &op->u.flow_put, op->error);
1232                         break;
1233
1234                     case DPIF_OP_FLOW_DEL:
1235                         log_flow_del_message(dpif, &op->u.flow_del, op->error);
1236                         break;
1237
1238                     case DPIF_OP_EXECUTE:
1239                         log_execute_message(dpif, &op->u.execute, false,
1240                                             op->error);
1241                         break;
1242                     }
1243                 }
1244
1245                 ops += chunk;
1246                 n_ops -= chunk;
1247             } else {
1248                 /* Help the dpif provider to execute one op. */
1249                 struct dpif_op *op = ops[0];
1250
1251                 op->error = dpif_execute(dpif, &op->u.execute);
1252                 ops++;
1253                 n_ops--;
1254             }
1255         }
1256     } else {
1257         size_t i;
1258
1259         for (i = 0; i < n_ops; i++) {
1260             struct dpif_op *op = ops[i];
1261
1262             switch (op->type) {
1263             case DPIF_OP_FLOW_PUT:
1264                 op->error = dpif_flow_put__(dpif, &op->u.flow_put);
1265                 break;
1266
1267             case DPIF_OP_FLOW_DEL:
1268                 op->error = dpif_flow_del__(dpif, &op->u.flow_del);
1269                 break;
1270
1271             case DPIF_OP_EXECUTE:
1272                 op->error = dpif_execute(dpif, &op->u.execute);
1273                 break;
1274
1275             default:
1276                 OVS_NOT_REACHED();
1277             }
1278         }
1279     }
1280 }
1281
1282 /* Returns a string that represents 'type', for use in log messages. */
1283 const char *
1284 dpif_upcall_type_to_string(enum dpif_upcall_type type)
1285 {
1286     switch (type) {
1287     case DPIF_UC_MISS: return "miss";
1288     case DPIF_UC_ACTION: return "action";
1289     case DPIF_N_UC_TYPES: default: return "<unknown>";
1290     }
1291 }
1292
1293 /* Enables or disables receiving packets with dpif_recv() on 'dpif'.  Returns 0
1294  * if successful, otherwise a positive errno value.
1295  *
1296  * Turning packet receive off and then back on may change the Netlink PID
1297  * assignments returned by dpif_port_get_pid().  If the client does this, it
1298  * must update all of the flows that have OVS_ACTION_ATTR_USERSPACE actions
1299  * using the new PID assignment. */
1300 int
1301 dpif_recv_set(struct dpif *dpif, bool enable)
1302 {
1303     int error = dpif->dpif_class->recv_set(dpif, enable);
1304     log_operation(dpif, "recv_set", error);
1305     return error;
1306 }
1307
1308 /* Refreshes the poll loops and Netlink sockets associated to each port,
1309  * when the number of upcall handlers (upcall receiving thread) is changed
1310  * to 'n_handlers' and receiving packets for 'dpif' is enabled by
1311  * recv_set().
1312  *
1313  * Since multiple upcall handlers can read upcalls simultaneously from
1314  * 'dpif', each port can have multiple Netlink sockets, one per upcall
1315  * handler.  So, handlers_set() is responsible for the following tasks:
1316  *
1317  *    When receiving upcall is enabled, extends or creates the
1318  *    configuration to support:
1319  *
1320  *        - 'n_handlers' Netlink sockets for each port.
1321  *
1322  *        - 'n_handlers' poll loops, one for each upcall handler.
1323  *
1324  *        - registering the Netlink sockets for the same upcall handler to
1325  *          the corresponding poll loop.
1326  *
1327  * Returns 0 if successful, otherwise a positive errno value. */
1328 int
1329 dpif_handlers_set(struct dpif *dpif, uint32_t n_handlers)
1330 {
1331     int error = dpif->dpif_class->handlers_set(dpif, n_handlers);
1332     log_operation(dpif, "handlers_set", error);
1333     return error;
1334 }
1335
1336 /* Polls for an upcall from 'dpif' for an upcall handler.  Since there
1337  * there can be multiple poll loops, 'handler_id' is needed as index to
1338  * identify the corresponding poll loop.  If successful, stores the upcall
1339  * into '*upcall', using 'buf' for storage.  Should only be called if
1340  * 'recv_set' has been used to enable receiving packets from 'dpif'.
1341  *
1342  * 'upcall->key' and 'upcall->userdata' point into data in the caller-provided
1343  * 'buf', so their memory cannot be freed separately from 'buf'.
1344  *
1345  * The caller owns the data of 'upcall->packet' and may modify it.  If
1346  * packet's headroom is exhausted as it is manipulated, 'upcall->packet'
1347  * will be reallocated.  This requires the data of 'upcall->packet' to be
1348  * released with ofpbuf_uninit() before 'upcall' is destroyed.  However,
1349  * when an error is returned, the 'upcall->packet' may be uninitialized
1350  * and should not be released.
1351  *
1352  * Returns 0 if successful, otherwise a positive errno value.  Returns EAGAIN
1353  * if no upcall is immediately available. */
1354 int
1355 dpif_recv(struct dpif *dpif, uint32_t handler_id, struct dpif_upcall *upcall,
1356           struct ofpbuf *buf)
1357 {
1358     int error = dpif->dpif_class->recv(dpif, handler_id, upcall, buf);
1359     if (!error && !VLOG_DROP_DBG(&dpmsg_rl)) {
1360         struct ds flow;
1361         char *packet;
1362
1363         packet = ofp_packet_to_string(ofpbuf_data(&upcall->packet),
1364                                       ofpbuf_size(&upcall->packet));
1365
1366         ds_init(&flow);
1367         odp_flow_key_format(upcall->key, upcall->key_len, &flow);
1368
1369         VLOG_DBG("%s: %s upcall:\n%s\n%s",
1370                  dpif_name(dpif), dpif_upcall_type_to_string(upcall->type),
1371                  ds_cstr(&flow), packet);
1372
1373         ds_destroy(&flow);
1374         free(packet);
1375     } else if (error && error != EAGAIN) {
1376         log_operation(dpif, "recv", error);
1377     }
1378     return error;
1379 }
1380
1381 /* Discards all messages that would otherwise be received by dpif_recv() on
1382  * 'dpif'. */
1383 void
1384 dpif_recv_purge(struct dpif *dpif)
1385 {
1386     COVERAGE_INC(dpif_purge);
1387     if (dpif->dpif_class->recv_purge) {
1388         dpif->dpif_class->recv_purge(dpif);
1389     }
1390 }
1391
1392 /* Arranges for the poll loop for an upcall handler to wake up when 'dpif'
1393  * 'dpif' has a message queued to be received with the recv member
1394  * function.  Since there can be multiple poll loops, 'handler_id' is
1395  * needed as index to identify the corresponding poll loop. */
1396 void
1397 dpif_recv_wait(struct dpif *dpif, uint32_t handler_id)
1398 {
1399     dpif->dpif_class->recv_wait(dpif, handler_id);
1400 }
1401
1402 /* Obtains the NetFlow engine type and engine ID for 'dpif' into '*engine_type'
1403  * and '*engine_id', respectively. */
1404 void
1405 dpif_get_netflow_ids(const struct dpif *dpif,
1406                      uint8_t *engine_type, uint8_t *engine_id)
1407 {
1408     *engine_type = dpif->netflow_engine_type;
1409     *engine_id = dpif->netflow_engine_id;
1410 }
1411
1412 /* Translates OpenFlow queue ID 'queue_id' (in host byte order) into a priority
1413  * value used for setting packet priority.
1414  * On success, returns 0 and stores the priority into '*priority'.
1415  * On failure, returns a positive errno value and stores 0 into '*priority'. */
1416 int
1417 dpif_queue_to_priority(const struct dpif *dpif, uint32_t queue_id,
1418                        uint32_t *priority)
1419 {
1420     int error = (dpif->dpif_class->queue_to_priority
1421                  ? dpif->dpif_class->queue_to_priority(dpif, queue_id,
1422                                                        priority)
1423                  : EOPNOTSUPP);
1424     if (error) {
1425         *priority = 0;
1426     }
1427     log_operation(dpif, "queue_to_priority", error);
1428     return error;
1429 }
1430 \f
1431 void
1432 dpif_init(struct dpif *dpif, const struct dpif_class *dpif_class,
1433           const char *name,
1434           uint8_t netflow_engine_type, uint8_t netflow_engine_id)
1435 {
1436     dpif->dpif_class = dpif_class;
1437     dpif->base_name = xstrdup(name);
1438     dpif->full_name = xasprintf("%s@%s", dpif_class->type, name);
1439     dpif->netflow_engine_type = netflow_engine_type;
1440     dpif->netflow_engine_id = netflow_engine_id;
1441 }
1442
1443 /* Undoes the results of initialization.
1444  *
1445  * Normally this function only needs to be called from dpif_close().
1446  * However, it may be called by providers due to an error on opening
1447  * that occurs after initialization.  It this case dpif_close() would
1448  * never be called. */
1449 void
1450 dpif_uninit(struct dpif *dpif, bool close)
1451 {
1452     char *base_name = dpif->base_name;
1453     char *full_name = dpif->full_name;
1454
1455     if (close) {
1456         dpif->dpif_class->close(dpif);
1457     }
1458
1459     free(base_name);
1460     free(full_name);
1461 }
1462 \f
1463 static void
1464 log_operation(const struct dpif *dpif, const char *operation, int error)
1465 {
1466     if (!error) {
1467         VLOG_DBG_RL(&dpmsg_rl, "%s: %s success", dpif_name(dpif), operation);
1468     } else if (ofperr_is_valid(error)) {
1469         VLOG_WARN_RL(&error_rl, "%s: %s failed (%s)",
1470                      dpif_name(dpif), operation, ofperr_get_name(error));
1471     } else {
1472         VLOG_WARN_RL(&error_rl, "%s: %s failed (%s)",
1473                      dpif_name(dpif), operation, ovs_strerror(error));
1474     }
1475 }
1476
1477 static enum vlog_level
1478 flow_message_log_level(int error)
1479 {
1480     /* If flows arrive in a batch, userspace may push down multiple
1481      * unique flow definitions that overlap when wildcards are applied.
1482      * Kernels that support flow wildcarding will reject these flows as
1483      * duplicates (EEXIST), so lower the log level to debug for these
1484      * types of messages. */
1485     return (error && error != EEXIST) ? VLL_WARN : VLL_DBG;
1486 }
1487
1488 static bool
1489 should_log_flow_message(int error)
1490 {
1491     return !vlog_should_drop(THIS_MODULE, flow_message_log_level(error),
1492                              error ? &error_rl : &dpmsg_rl);
1493 }
1494
1495 static void
1496 log_flow_message(const struct dpif *dpif, int error, const char *operation,
1497                  const struct nlattr *key, size_t key_len,
1498                  const struct nlattr *mask, size_t mask_len,
1499                  const struct dpif_flow_stats *stats,
1500                  const struct nlattr *actions, size_t actions_len)
1501 {
1502     struct ds ds = DS_EMPTY_INITIALIZER;
1503     ds_put_format(&ds, "%s: ", dpif_name(dpif));
1504     if (error) {
1505         ds_put_cstr(&ds, "failed to ");
1506     }
1507     ds_put_format(&ds, "%s ", operation);
1508     if (error) {
1509         ds_put_format(&ds, "(%s) ", ovs_strerror(error));
1510     }
1511     odp_flow_format(key, key_len, mask, mask_len, NULL, &ds, true);
1512     if (stats) {
1513         ds_put_cstr(&ds, ", ");
1514         dpif_flow_stats_format(stats, &ds);
1515     }
1516     if (actions || actions_len) {
1517         ds_put_cstr(&ds, ", actions:");
1518         format_odp_actions(&ds, actions, actions_len);
1519     }
1520     vlog(THIS_MODULE, flow_message_log_level(error), "%s", ds_cstr(&ds));
1521     ds_destroy(&ds);
1522 }
1523
1524 static void
1525 log_flow_put_message(struct dpif *dpif, const struct dpif_flow_put *put,
1526                      int error)
1527 {
1528     if (should_log_flow_message(error)) {
1529         struct ds s;
1530
1531         ds_init(&s);
1532         ds_put_cstr(&s, "put");
1533         if (put->flags & DPIF_FP_CREATE) {
1534             ds_put_cstr(&s, "[create]");
1535         }
1536         if (put->flags & DPIF_FP_MODIFY) {
1537             ds_put_cstr(&s, "[modify]");
1538         }
1539         if (put->flags & DPIF_FP_ZERO_STATS) {
1540             ds_put_cstr(&s, "[zero]");
1541         }
1542         log_flow_message(dpif, error, ds_cstr(&s),
1543                          put->key, put->key_len, put->mask, put->mask_len,
1544                          put->stats, put->actions, put->actions_len);
1545         ds_destroy(&s);
1546     }
1547 }
1548
1549 static void
1550 log_flow_del_message(struct dpif *dpif, const struct dpif_flow_del *del,
1551                      int error)
1552 {
1553     if (should_log_flow_message(error)) {
1554         log_flow_message(dpif, error, "flow_del", del->key, del->key_len,
1555                          NULL, 0, !error ? del->stats : NULL, NULL, 0);
1556     }
1557 }
1558
1559 /* Logs that 'execute' was executed on 'dpif' and completed with errno 'error'
1560  * (0 for success).  'subexecute' should be true if the execution is a result
1561  * of breaking down a larger execution that needed help, false otherwise.
1562  *
1563  *
1564  * XXX In theory, the log message could be deceptive because this function is
1565  * called after the dpif_provider's '->execute' function, which is allowed to
1566  * modify execute->packet and execute->md.  In practice, though:
1567  *
1568  *     - dpif-linux doesn't modify execute->packet or execute->md.
1569  *
1570  *     - dpif-netdev does modify them but it is less likely to have problems
1571  *       because it is built into ovs-vswitchd and cannot have version skew,
1572  *       etc.
1573  *
1574  * It would still be better to avoid the potential problem.  I don't know of a
1575  * good way to do that, though, that isn't expensive. */
1576 static void
1577 log_execute_message(struct dpif *dpif, const struct dpif_execute *execute,
1578                     bool subexecute, int error)
1579 {
1580     if (!(error ? VLOG_DROP_WARN(&error_rl) : VLOG_DROP_DBG(&dpmsg_rl))) {
1581         struct ds ds = DS_EMPTY_INITIALIZER;
1582         char *packet;
1583
1584         packet = ofp_packet_to_string(ofpbuf_data(execute->packet),
1585                                       ofpbuf_size(execute->packet));
1586         ds_put_format(&ds, "%s: %sexecute ",
1587                       dpif_name(dpif),
1588                       (subexecute ? "sub-"
1589                        : dpif_execute_needs_help(execute) ? "super-"
1590                        : ""));
1591         format_odp_actions(&ds, execute->actions, execute->actions_len);
1592         if (error) {
1593             ds_put_format(&ds, " failed (%s)", ovs_strerror(error));
1594         }
1595         ds_put_format(&ds, " on packet %s", packet);
1596         vlog(THIS_MODULE, error ? VLL_WARN : VLL_DBG, "%s", ds_cstr(&ds));
1597         ds_destroy(&ds);
1598         free(packet);
1599     }
1600 }