dpif: Make dpif_flow_get() results predictable on error.
[sliver-openvswitch.git] / lib / dpif.c
1 /*
2  * Copyright (c) 2008, 2009, 2010 Nicira Networks.
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 <assert.h>
21 #include <ctype.h>
22 #include <errno.h>
23 #include <inttypes.h>
24 #include <stdlib.h>
25 #include <string.h>
26
27 #include "coverage.h"
28 #include "dynamic-string.h"
29 #include "flow.h"
30 #include "netlink.h"
31 #include "odp-util.h"
32 #include "ofp-print.h"
33 #include "ofpbuf.h"
34 #include "packets.h"
35 #include "poll-loop.h"
36 #include "shash.h"
37 #include "svec.h"
38 #include "util.h"
39 #include "valgrind.h"
40
41 #include "vlog.h"
42 #define THIS_MODULE VLM_dpif
43
44 static const struct dpif_class *base_dpif_classes[] = {
45     &dpif_linux_class,
46     &dpif_netdev_class,
47 };
48
49 struct registered_dpif_class {
50     struct dpif_class dpif_class;
51     int refcount;
52 };
53 static struct shash dpif_classes = SHASH_INITIALIZER(&dpif_classes);
54
55 /* Rate limit for individual messages going to or from the datapath, output at
56  * DBG level.  This is very high because, if these are enabled, it is because
57  * we really need to see them. */
58 static struct vlog_rate_limit dpmsg_rl = VLOG_RATE_LIMIT_INIT(600, 600);
59
60 /* Not really much point in logging many dpif errors. */
61 static struct vlog_rate_limit error_rl = VLOG_RATE_LIMIT_INIT(60, 5);
62
63 static void log_operation(const struct dpif *, const char *operation,
64                           int error);
65 static void log_flow_operation(const struct dpif *, const char *operation,
66                                int error, struct odp_flow *flow);
67 static void log_flow_put(struct dpif *, int error,
68                          const struct odp_flow_put *);
69 static bool should_log_flow_message(int error);
70 static void check_rw_odp_flow(struct odp_flow *);
71
72 static void
73 dp_initialize(void)
74 {
75     static int status = -1;
76
77     if (status < 0) {
78         int i;
79
80         status = 0;
81         for (i = 0; i < ARRAY_SIZE(base_dpif_classes); i++) {
82             dp_register_provider(base_dpif_classes[i]);
83         }
84     }
85 }
86
87 /* Performs periodic work needed by all the various kinds of dpifs.
88  *
89  * If your program opens any dpifs, it must call both this function and
90  * netdev_run() within its main poll loop. */
91 void
92 dp_run(void)
93 {
94     struct shash_node *node;
95     SHASH_FOR_EACH(node, &dpif_classes) {
96         const struct registered_dpif_class *registered_class = node->data;
97         if (registered_class->dpif_class.run) {
98             registered_class->dpif_class.run();
99         }
100     }
101 }
102
103 /* Arranges for poll_block() to wake up when dp_run() needs to be called.
104  *
105  * If your program opens any dpifs, it must call both this function and
106  * netdev_wait() within its main poll loop. */
107 void
108 dp_wait(void)
109 {
110     struct shash_node *node;
111     SHASH_FOR_EACH(node, &dpif_classes) {
112         const struct registered_dpif_class *registered_class = node->data;
113         if (registered_class->dpif_class.wait) {
114             registered_class->dpif_class.wait();
115         }
116     }
117 }
118
119 /* Registers a new datapath provider.  After successful registration, new
120  * datapaths of that type can be opened using dpif_open(). */
121 int
122 dp_register_provider(const struct dpif_class *new_class)
123 {
124     struct registered_dpif_class *registered_class;
125
126     if (shash_find(&dpif_classes, new_class->type)) {
127         VLOG_WARN("attempted to register duplicate datapath provider: %s",
128                   new_class->type);
129         return EEXIST;
130     }
131
132     registered_class = xmalloc(sizeof *registered_class);
133     memcpy(&registered_class->dpif_class, new_class,
134            sizeof registered_class->dpif_class);
135     registered_class->refcount = 0;
136
137     shash_add(&dpif_classes, new_class->type, registered_class);
138
139     return 0;
140 }
141
142 /* Unregisters a datapath provider.  'type' must have been previously
143  * registered and not currently be in use by any dpifs.  After unregistration
144  * new datapaths of that type cannot be opened using dpif_open(). */
145 int
146 dp_unregister_provider(const char *type)
147 {
148     struct shash_node *node;
149     struct registered_dpif_class *registered_class;
150
151     node = shash_find(&dpif_classes, type);
152     if (!node) {
153         VLOG_WARN("attempted to unregister a datapath provider that is not "
154                   "registered: %s", type);
155         return EAFNOSUPPORT;
156     }
157
158     registered_class = node->data;
159     if (registered_class->refcount) {
160         VLOG_WARN("attempted to unregister in use datapath provider: %s", type);
161         return EBUSY;
162     }
163
164     shash_delete(&dpif_classes, node);
165     free(registered_class);
166
167     return 0;
168 }
169
170 /* Clears 'types' and enumerates the types of all currently registered datapath
171  * providers into it.  The caller must first initialize the svec. */
172 void
173 dp_enumerate_types(struct svec *types)
174 {
175     struct shash_node *node;
176
177     dp_initialize();
178     svec_clear(types);
179
180     SHASH_FOR_EACH(node, &dpif_classes) {
181         const struct registered_dpif_class *registered_class = node->data;
182         svec_add(types, registered_class->dpif_class.type);
183     }
184 }
185
186 /* Clears 'names' and enumerates the names of all known created datapaths with
187  * the given 'type'.  The caller must first initialize the svec. Returns 0 if
188  * successful, otherwise a positive errno value.
189  *
190  * Some kinds of datapaths might not be practically enumerable.  This is not
191  * considered an error. */
192 int
193 dp_enumerate_names(const char *type, struct svec *names)
194 {
195     const struct registered_dpif_class *registered_class;
196     const struct dpif_class *dpif_class;
197     int error;
198
199     dp_initialize();
200     svec_clear(names);
201
202     registered_class = shash_find_data(&dpif_classes, type);
203     if (!registered_class) {
204         VLOG_WARN("could not enumerate unknown type: %s", type);
205         return EAFNOSUPPORT;
206     }
207
208     dpif_class = &registered_class->dpif_class;
209     error = dpif_class->enumerate ? dpif_class->enumerate(names) : 0;
210
211     if (error) {
212         VLOG_WARN("failed to enumerate %s datapaths: %s", dpif_class->type,
213                    strerror(error));
214     }
215
216     return error;
217 }
218
219 /* Parses 'datapath name', which is of the form type@name into its
220  * component pieces.  'name' and 'type' must be freed by the caller. */
221 void
222 dp_parse_name(const char *datapath_name_, char **name, char **type)
223 {
224     char *datapath_name = xstrdup(datapath_name_);
225     char *separator;
226
227     separator = strchr(datapath_name, '@');
228     if (separator) {
229         *separator = '\0';
230         *type = datapath_name;
231         *name = xstrdup(separator + 1);
232     } else {
233         *name = datapath_name;
234         *type = NULL;
235     }
236 }
237
238 static int
239 do_open(const char *name, const char *type, bool create, struct dpif **dpifp)
240 {
241     struct dpif *dpif = NULL;
242     int error;
243     struct registered_dpif_class *registered_class;
244
245     dp_initialize();
246
247     if (!type || *type == '\0') {
248         type = "system";
249     }
250
251     registered_class = shash_find_data(&dpif_classes, type);
252     if (!registered_class) {
253         VLOG_WARN("could not create datapath %s of unknown type %s", name,
254                   type);
255         error = EAFNOSUPPORT;
256         goto exit;
257     }
258
259     error = registered_class->dpif_class.open(name, type, create, &dpif);
260     if (!error) {
261         registered_class->refcount++;
262     }
263
264 exit:
265     *dpifp = error ? NULL : dpif;
266     return error;
267 }
268
269 /* Tries to open an existing datapath named 'name' and type 'type'.  Will fail
270  * if no datapath with 'name' and 'type' exists.  'type' may be either NULL or
271  * the empty string to specify the default system type.  Returns 0 if
272  * successful, otherwise a positive errno value.  On success stores a pointer
273  * to the datapath in '*dpifp', otherwise a null pointer. */
274 int
275 dpif_open(const char *name, const char *type, struct dpif **dpifp)
276 {
277     return do_open(name, type, false, dpifp);
278 }
279
280 /* Tries to create and open a new datapath with the given 'name' and 'type'.
281  * 'type' may be either NULL or the empty string to specify the default system
282  * type.  Will fail if a datapath with 'name' and 'type' already exists.
283  * Returns 0 if successful, otherwise a positive errno value.  On success
284  * stores a pointer to the datapath in '*dpifp', otherwise a null pointer. */
285 int
286 dpif_create(const char *name, const char *type, struct dpif **dpifp)
287 {
288     return do_open(name, type, true, dpifp);
289 }
290
291 /* Tries to open a datapath with the given 'name' and 'type', creating it if it
292  * does not exist.  'type' may be either NULL or the empty string to specify
293  * the default system type.  Returns 0 if successful, otherwise a positive
294  * errno value. On success stores a pointer to the datapath in '*dpifp',
295  * otherwise a null pointer. */
296 int
297 dpif_create_and_open(const char *name, const char *type, struct dpif **dpifp)
298 {
299     int error;
300
301     error = dpif_create(name, type, dpifp);
302     if (error == EEXIST || error == EBUSY) {
303         error = dpif_open(name, type, dpifp);
304         if (error) {
305             VLOG_WARN("datapath %s already exists but cannot be opened: %s",
306                       name, strerror(error));
307         }
308     } else if (error) {
309         VLOG_WARN("failed to create datapath %s: %s", name, strerror(error));
310     }
311     return error;
312 }
313
314 /* Closes and frees the connection to 'dpif'.  Does not destroy the datapath
315  * itself; call dpif_delete() first, instead, if that is desirable. */
316 void
317 dpif_close(struct dpif *dpif)
318 {
319     if (dpif) {
320         struct registered_dpif_class *registered_class;
321
322         registered_class = shash_find_data(&dpif_classes, 
323                 dpif->dpif_class->type);
324         assert(registered_class);
325         assert(registered_class->refcount);
326
327         registered_class->refcount--;
328         dpif_uninit(dpif, true);
329     }
330 }
331
332 /* Returns the name of datapath 'dpif' prefixed with the type
333  * (for use in log messages). */
334 const char *
335 dpif_name(const struct dpif *dpif)
336 {
337     return dpif->full_name;
338 }
339
340 /* Returns the name of datapath 'dpif' without the type
341  * (for use in device names). */
342 const char *
343 dpif_base_name(const struct dpif *dpif)
344 {
345     return dpif->base_name;
346 }
347
348 /* Enumerates all names that may be used to open 'dpif' into 'all_names'.  The
349  * Linux datapath, for example, supports opening a datapath both by number,
350  * e.g. "dp0", and by the name of the datapath's local port.  For some
351  * datapaths, this might be an infinite set (e.g. in a file name, slashes may
352  * be duplicated any number of times), in which case only the names most likely
353  * to be used will be enumerated.
354  *
355  * The caller must already have initialized 'all_names'.  Any existing names in
356  * 'all_names' will not be disturbed. */
357 int
358 dpif_get_all_names(const struct dpif *dpif, struct svec *all_names)
359 {
360     if (dpif->dpif_class->get_all_names) {
361         int error = dpif->dpif_class->get_all_names(dpif, all_names);
362         if (error) {
363             VLOG_WARN_RL(&error_rl,
364                          "failed to retrieve names for datpath %s: %s",
365                          dpif_name(dpif), strerror(error));
366         }
367         return error;
368     } else {
369         svec_add(all_names, dpif_base_name(dpif));
370         return 0;
371     }
372 }
373
374 /* Destroys the datapath that 'dpif' is connected to, first removing all of its
375  * ports.  After calling this function, it does not make sense to pass 'dpif'
376  * to any functions other than dpif_name() or dpif_close(). */
377 int
378 dpif_delete(struct dpif *dpif)
379 {
380     int error;
381
382     COVERAGE_INC(dpif_destroy);
383
384     error = dpif->dpif_class->destroy(dpif);
385     log_operation(dpif, "delete", error);
386     return error;
387 }
388
389 /* Retrieves statistics for 'dpif' into 'stats'.  Returns 0 if successful,
390  * otherwise a positive errno value. */
391 int
392 dpif_get_dp_stats(const struct dpif *dpif, struct odp_stats *stats)
393 {
394     int error = dpif->dpif_class->get_stats(dpif, stats);
395     if (error) {
396         memset(stats, 0, sizeof *stats);
397     }
398     log_operation(dpif, "get_stats", error);
399     return error;
400 }
401
402 /* Retrieves the current IP fragment handling policy for 'dpif' into
403  * '*drop_frags': true indicates that fragments are dropped, false indicates
404  * that fragments are treated in the same way as other IP packets (except that
405  * the L4 header cannot be read).  Returns 0 if successful, otherwise a
406  * positive errno value. */
407 int
408 dpif_get_drop_frags(const struct dpif *dpif, bool *drop_frags)
409 {
410     int error = dpif->dpif_class->get_drop_frags(dpif, drop_frags);
411     if (error) {
412         *drop_frags = false;
413     }
414     log_operation(dpif, "get_drop_frags", error);
415     return error;
416 }
417
418 /* Changes 'dpif''s treatment of IP fragments to 'drop_frags', whose meaning is
419  * the same as for the get_drop_frags member function.  Returns 0 if
420  * successful, otherwise a positive errno value. */
421 int
422 dpif_set_drop_frags(struct dpif *dpif, bool drop_frags)
423 {
424     int error = dpif->dpif_class->set_drop_frags(dpif, drop_frags);
425     log_operation(dpif, "set_drop_frags", error);
426     return error;
427 }
428
429 /* Attempts to add 'devname' as a port on 'dpif', given the combination of
430  * ODP_PORT_* flags in 'flags'.  If successful, returns 0 and sets '*port_nop'
431  * to the new port's port number (if 'port_nop' is non-null).  On failure,
432  * returns a positive errno value and sets '*port_nop' to UINT16_MAX (if
433  * 'port_nop' is non-null). */
434 int
435 dpif_port_add(struct dpif *dpif, const char *devname, uint16_t flags,
436               uint16_t *port_nop)
437 {
438     uint16_t port_no;
439     int error;
440
441     COVERAGE_INC(dpif_port_add);
442
443     error = dpif->dpif_class->port_add(dpif, devname, flags, &port_no);
444     if (!error) {
445         VLOG_DBG_RL(&dpmsg_rl, "%s: added %s as port %"PRIu16,
446                     dpif_name(dpif), devname, port_no);
447     } else {
448         VLOG_WARN_RL(&error_rl, "%s: failed to add %s as port: %s",
449                      dpif_name(dpif), devname, strerror(error));
450         port_no = UINT16_MAX;
451     }
452     if (port_nop) {
453         *port_nop = port_no;
454     }
455     return error;
456 }
457
458 /* Attempts to remove 'dpif''s port number 'port_no'.  Returns 0 if successful,
459  * otherwise a positive errno value. */
460 int
461 dpif_port_del(struct dpif *dpif, uint16_t port_no)
462 {
463     int error;
464
465     COVERAGE_INC(dpif_port_del);
466
467     error = dpif->dpif_class->port_del(dpif, port_no);
468     log_operation(dpif, "port_del", error);
469     return error;
470 }
471
472 /* Looks up port number 'port_no' in 'dpif'.  On success, returns 0 and
473  * initializes '*port' appropriately; on failure, returns a positive errno
474  * value. */
475 int
476 dpif_port_query_by_number(const struct dpif *dpif, uint16_t port_no,
477                           struct odp_port *port)
478 {
479     int error = dpif->dpif_class->port_query_by_number(dpif, port_no, port);
480     if (!error) {
481         VLOG_DBG_RL(&dpmsg_rl, "%s: port %"PRIu16" is device %s",
482                     dpif_name(dpif), port_no, port->devname);
483     } else {
484         memset(port, 0, sizeof *port);
485         VLOG_WARN_RL(&error_rl, "%s: failed to query port %"PRIu16": %s",
486                      dpif_name(dpif), port_no, strerror(error));
487     }
488     return error;
489 }
490
491 /* Looks up port named 'devname' in 'dpif'.  On success, returns 0 and
492  * initializes '*port' appropriately; on failure, returns a positive errno
493  * value. */
494 int
495 dpif_port_query_by_name(const struct dpif *dpif, const char *devname,
496                         struct odp_port *port)
497 {
498     int error = dpif->dpif_class->port_query_by_name(dpif, devname, port);
499     if (!error) {
500         VLOG_DBG_RL(&dpmsg_rl, "%s: device %s is on port %"PRIu16,
501                     dpif_name(dpif), devname, port->port);
502     } else {
503         memset(port, 0, sizeof *port);
504
505         /* Log level is DBG here because all the current callers are interested
506          * in whether 'dpif' actually has a port 'devname', so that it's not an
507          * issue worth logging if it doesn't. */
508         VLOG_DBG_RL(&error_rl, "%s: failed to query port %s: %s",
509                     dpif_name(dpif), devname, strerror(error));
510     }
511     return error;
512 }
513
514 /* Looks up port number 'port_no' in 'dpif'.  On success, returns 0 and copies
515  * the port's name into the 'name_size' bytes in 'name', ensuring that the
516  * result is null-terminated.  On failure, returns a positive errno value and
517  * makes 'name' the empty string. */
518 int
519 dpif_port_get_name(struct dpif *dpif, uint16_t port_no,
520                    char *name, size_t name_size)
521 {
522     struct odp_port port;
523     int error;
524
525     assert(name_size > 0);
526
527     error = dpif_port_query_by_number(dpif, port_no, &port);
528     if (!error) {
529         ovs_strlcpy(name, port.devname, name_size);
530     } else {
531         *name = '\0';
532     }
533     return error;
534 }
535
536 /* Obtains a list of all the ports in 'dpif'.
537  *
538  * If successful, returns 0 and sets '*portsp' to point to an array of
539  * appropriately initialized port structures and '*n_portsp' to the number of
540  * ports in the array.  The caller is responsible for freeing '*portp' by
541  * calling free().
542  *
543  * On failure, returns a positive errno value and sets '*portsp' to NULL and
544  * '*n_portsp' to 0. */
545 int
546 dpif_port_list(const struct dpif *dpif,
547                struct odp_port **portsp, size_t *n_portsp)
548 {
549     struct odp_port *ports;
550     size_t n_ports = 0;
551     int error;
552
553     for (;;) {
554         struct odp_stats stats;
555         int retval;
556
557         error = dpif_get_dp_stats(dpif, &stats);
558         if (error) {
559             goto exit;
560         }
561
562         ports = xcalloc(stats.n_ports, sizeof *ports);
563         retval = dpif->dpif_class->port_list(dpif, ports, stats.n_ports);
564         if (retval < 0) {
565             /* Hard error. */
566             error = -retval;
567             free(ports);
568             goto exit;
569         } else if (retval <= stats.n_ports) {
570             /* Success. */
571             error = 0;
572             n_ports = retval;
573             goto exit;
574         } else {
575             /* Soft error: port count increased behind our back.  Try again. */
576             free(ports);
577         }
578     }
579
580 exit:
581     if (error) {
582         *portsp = NULL;
583         *n_portsp = 0;
584     } else {
585         *portsp = ports;
586         *n_portsp = n_ports;
587     }
588     log_operation(dpif, "port_list", error);
589     return error;
590 }
591
592 /* Polls for changes in the set of ports in 'dpif'.  If the set of ports in
593  * 'dpif' has changed, this function does one of the following:
594  *
595  * - Stores the name of the device that was added to or deleted from 'dpif' in
596  *   '*devnamep' and returns 0.  The caller is responsible for freeing
597  *   '*devnamep' (with free()) when it no longer needs it.
598  *
599  * - Returns ENOBUFS and sets '*devnamep' to NULL.
600  *
601  * This function may also return 'false positives', where it returns 0 and
602  * '*devnamep' names a device that was not actually added or deleted or it
603  * returns ENOBUFS without any change.
604  *
605  * Returns EAGAIN if the set of ports in 'dpif' has not changed.  May also
606  * return other positive errno values to indicate that something has gone
607  * wrong. */
608 int
609 dpif_port_poll(const struct dpif *dpif, char **devnamep)
610 {
611     int error = dpif->dpif_class->port_poll(dpif, devnamep);
612     if (error) {
613         *devnamep = NULL;
614     }
615     return error;
616 }
617
618 /* Arranges for the poll loop to wake up when port_poll(dpif) will return a
619  * value other than EAGAIN. */
620 void
621 dpif_port_poll_wait(const struct dpif *dpif)
622 {
623     dpif->dpif_class->port_poll_wait(dpif);
624 }
625
626 /* Retrieves a list of the port numbers in port group 'group' in 'dpif'.
627  *
628  * On success, returns 0 and points '*ports' to a newly allocated array of
629  * integers, each of which is a 'dpif' port number for a port in
630  * 'group'.  Stores the number of elements in the array in '*n_ports'.  The
631  * caller is responsible for freeing '*ports' by calling free().
632  *
633  * On failure, returns a positive errno value and sets '*ports' to NULL and
634  * '*n_ports' to 0. */
635 int
636 dpif_port_group_get(const struct dpif *dpif, uint16_t group,
637                     uint16_t **ports, size_t *n_ports)
638 {
639     int error;
640
641     *ports = NULL;
642     *n_ports = 0;
643     for (;;) {
644         int retval = dpif->dpif_class->port_group_get(dpif, group,
645                                                       *ports, *n_ports);
646         if (retval < 0) {
647             /* Hard error. */
648             error = -retval;
649             free(*ports);
650             *ports = NULL;
651             *n_ports = 0;
652             break;
653         } else if (retval <= *n_ports) {
654             /* Success. */
655             error = 0;
656             *n_ports = retval;
657             break;
658         } else {
659             /* Soft error: there were more ports than we expected in the
660              * group.  Try again. */
661             free(*ports);
662             *ports = xcalloc(retval, sizeof **ports);
663             *n_ports = retval;
664         }
665     }
666     log_operation(dpif, "port_group_get", error);
667     return error;
668 }
669
670 /* Updates port group 'group' in 'dpif', making it contain the 'n_ports' ports
671  * whose 'dpif' port numbers are given in 'n_ports'.  Returns 0 if
672  * successful, otherwise a positive errno value.
673  *
674  * Behavior is undefined if the values in ports[] are not unique. */
675 int
676 dpif_port_group_set(struct dpif *dpif, uint16_t group,
677                     const uint16_t ports[], size_t n_ports)
678 {
679     int error;
680
681     COVERAGE_INC(dpif_port_group_set);
682
683     error = dpif->dpif_class->port_group_set(dpif, group, ports, n_ports);
684     log_operation(dpif, "port_group_set", error);
685     return error;
686 }
687
688 /* Deletes all flows from 'dpif'.  Returns 0 if successful, otherwise a
689  * positive errno value.  */
690 int
691 dpif_flow_flush(struct dpif *dpif)
692 {
693     int error;
694
695     COVERAGE_INC(dpif_flow_flush);
696
697     error = dpif->dpif_class->flow_flush(dpif);
698     log_operation(dpif, "flow_flush", error);
699     return error;
700 }
701
702 /* Queries 'dpif' for a flow entry matching 'flow->key'.
703  *
704  * If a flow matching 'flow->key' exists in 'dpif', stores statistics for the
705  * flow into 'flow->stats'.  If 'flow->n_actions' is zero, then 'flow->actions'
706  * is ignored.  If 'flow->n_actions' is nonzero, then 'flow->actions' should
707  * point to an array of the specified number of actions.  At most that many of
708  * the flow's actions will be copied into that array.  'flow->n_actions' will
709  * be updated to the number of actions actually present in the flow, which may
710  * be greater than the number stored if the flow has more actions than space
711  * available in the array.
712  *
713  * If no flow matching 'flow->key' exists in 'dpif', returns ENOENT.  On other
714  * failure, returns a positive errno value. */
715 int
716 dpif_flow_get(const struct dpif *dpif, struct odp_flow *flow)
717 {
718     int error;
719
720     COVERAGE_INC(dpif_flow_get);
721
722     check_rw_odp_flow(flow);
723     error = dpif->dpif_class->flow_get(dpif, flow, 1);
724     if (!error) {
725         error = flow->stats.error;
726     }
727     if (error) {
728         /* Make the results predictable on error. */
729         memset(&flow->stats, 0, sizeof flow->stats);
730         flow->n_actions = 0;
731     }
732     if (should_log_flow_message(error)) {
733         log_flow_operation(dpif, "flow_get", error, flow);
734     }
735     return error;
736 }
737
738 /* For each flow 'flow' in the 'n' flows in 'flows':
739  *
740  * - If a flow matching 'flow->key' exists in 'dpif':
741  *
742  *     Stores 0 into 'flow->stats.error' and stores statistics for the flow
743  *     into 'flow->stats'.
744  *
745  *     If 'flow->n_actions' is zero, then 'flow->actions' is ignored.  If
746  *     'flow->n_actions' is nonzero, then 'flow->actions' should point to an
747  *     array of the specified number of actions.  At most that many of the
748  *     flow's actions will be copied into that array.  'flow->n_actions' will
749  *     be updated to the number of actions actually present in the flow, which
750  *     may be greater than the number stored if the flow has more actions than
751  *     space available in the array.
752  *
753  * - Flow-specific errors are indicated by a positive errno value in
754  *   'flow->stats.error'.  In particular, ENOENT indicates that no flow
755  *   matching 'flow->key' exists in 'dpif'.  When an error value is stored, the
756  *   contents of 'flow->key' are preserved but other members of 'flow' should
757  *   be treated as indeterminate.
758  *
759  * Returns 0 if all 'n' flows in 'flows' were updated (whether they were
760  * individually successful or not is indicated by 'flow->stats.error',
761  * however).  Returns a positive errno value if an error that prevented this
762  * update occurred, in which the caller must not depend on any elements in
763  * 'flows' being updated or not updated.
764  */
765 int
766 dpif_flow_get_multiple(const struct dpif *dpif,
767                        struct odp_flow flows[], size_t n)
768 {
769     int error;
770     size_t i;
771
772     COVERAGE_ADD(dpif_flow_get, n);
773
774     for (i = 0; i < n; i++) {
775         check_rw_odp_flow(&flows[i]);
776     }
777
778     error = dpif->dpif_class->flow_get(dpif, flows, n);
779     log_operation(dpif, "flow_get_multiple", error);
780     return error;
781 }
782
783 /* Adds or modifies a flow in 'dpif' as specified in 'put':
784  *
785  * - If the flow specified in 'put->flow' does not exist in 'dpif', then
786  *   behavior depends on whether ODPPF_CREATE is specified in 'put->flags': if
787  *   it is, the flow will be added, otherwise the operation will fail with
788  *   ENOENT.
789  *
790  * - Otherwise, the flow specified in 'put->flow' does exist in 'dpif'.
791  *   Behavior in this case depends on whether ODPPF_MODIFY is specified in
792  *   'put->flags': if it is, the flow's actions will be updated, otherwise the
793  *   operation will fail with EEXIST.  If the flow's actions are updated, then
794  *   its statistics will be zeroed if ODPPF_ZERO_STATS is set in 'put->flags',
795  *   left as-is otherwise.
796  *
797  * Returns 0 if successful, otherwise a positive errno value.
798  */
799 int
800 dpif_flow_put(struct dpif *dpif, struct odp_flow_put *put)
801 {
802     int error;
803
804     COVERAGE_INC(dpif_flow_put);
805
806     error = dpif->dpif_class->flow_put(dpif, put);
807     if (should_log_flow_message(error)) {
808         log_flow_put(dpif, error, put);
809     }
810     return error;
811 }
812
813 /* Deletes a flow matching 'flow->key' from 'dpif' or returns ENOENT if 'dpif'
814  * does not contain such a flow.
815  *
816  * If successful, updates 'flow->stats', 'flow->n_actions', and 'flow->actions'
817  * as described for dpif_flow_get(). */
818 int
819 dpif_flow_del(struct dpif *dpif, struct odp_flow *flow)
820 {
821     int error;
822
823     COVERAGE_INC(dpif_flow_del);
824
825     check_rw_odp_flow(flow);
826     memset(&flow->stats, 0, sizeof flow->stats);
827
828     error = dpif->dpif_class->flow_del(dpif, flow);
829     if (should_log_flow_message(error)) {
830         log_flow_operation(dpif, "delete flow", error, flow);
831     }
832     return error;
833 }
834
835 /* Stores up to 'n' flows in 'dpif' into 'flows', including their statistics
836  * but not including any information about their actions.  If successful,
837  * returns 0 and sets '*n_out' to the number of flows actually present in
838  * 'dpif', which might be greater than the number stored (if 'dpif' has more
839  * than 'n' flows).  On failure, returns a negative errno value and sets
840  * '*n_out' to 0. */
841 int
842 dpif_flow_list(const struct dpif *dpif, struct odp_flow flows[], size_t n,
843                size_t *n_out)
844 {
845     uint32_t i;
846     int retval;
847
848     COVERAGE_INC(dpif_flow_query_list);
849     if (RUNNING_ON_VALGRIND) {
850         memset(flows, 0, n * sizeof *flows);
851     } else {
852         for (i = 0; i < n; i++) {
853             flows[i].actions = NULL;
854             flows[i].n_actions = 0;
855         }
856     }
857     retval = dpif->dpif_class->flow_list(dpif, flows, n);
858     if (retval < 0) {
859         *n_out = 0;
860         VLOG_WARN_RL(&error_rl, "%s: flow list failed (%s)",
861                      dpif_name(dpif), strerror(-retval));
862         return -retval;
863     } else {
864         COVERAGE_ADD(dpif_flow_query_list_n, retval);
865         *n_out = MIN(n, retval);
866         VLOG_DBG_RL(&dpmsg_rl, "%s: listed %zu flows (of %d)",
867                     dpif_name(dpif), *n_out, retval);
868         return 0;
869     }
870 }
871
872 /* Retrieves all of the flows in 'dpif'.
873  *
874  * If successful, returns 0 and stores in '*flowsp' a pointer to a newly
875  * allocated array of flows, including their statistics but not including any
876  * information about their actions, and sets '*np' to the number of flows in
877  * '*flowsp'.  The caller is responsible for freeing '*flowsp' by calling
878  * free().
879  *
880  * On failure, returns a positive errno value and sets '*flowsp' to NULL and
881  * '*np' to 0. */
882 int
883 dpif_flow_list_all(const struct dpif *dpif,
884                    struct odp_flow **flowsp, size_t *np)
885 {
886     struct odp_stats stats;
887     struct odp_flow *flows;
888     size_t n_flows;
889     int error;
890
891     *flowsp = NULL;
892     *np = 0;
893
894     error = dpif_get_dp_stats(dpif, &stats);
895     if (error) {
896         return error;
897     }
898
899     flows = xmalloc(sizeof *flows * stats.n_flows);
900     error = dpif_flow_list(dpif, flows, stats.n_flows, &n_flows);
901     if (error) {
902         free(flows);
903         return error;
904     }
905
906     if (stats.n_flows != n_flows) {
907         VLOG_WARN_RL(&error_rl, "%s: datapath stats reported %"PRIu32" "
908                      "flows but flow listing reported %zu",
909                      dpif_name(dpif), stats.n_flows, n_flows);
910     }
911     *flowsp = flows;
912     *np = n_flows;
913     return 0;
914 }
915
916 /* Causes 'dpif' to perform the 'n_actions' actions in 'actions' on the
917  * Ethernet frame specified in 'packet'.
918  *
919  * Pretends that the frame was originally received on the port numbered
920  * 'in_port'.  This affects only ODPAT_OUTPUT_GROUP actions, which will not
921  * send a packet out their input port.  Specify the number of an unused port
922  * (e.g. UINT16_MAX is currently always unused) to avoid this behavior.
923  *
924  * Returns 0 if successful, otherwise a positive errno value. */
925 int
926 dpif_execute(struct dpif *dpif, uint16_t in_port,
927              const union odp_action actions[], size_t n_actions,
928              const struct ofpbuf *buf)
929 {
930     int error;
931
932     COVERAGE_INC(dpif_execute);
933     if (n_actions > 0) {
934         error = dpif->dpif_class->execute(dpif, in_port, actions,
935                                           n_actions, buf);
936     } else {
937         error = 0;
938     }
939
940     if (!(error ? VLOG_DROP_WARN(&error_rl) : VLOG_DROP_DBG(&dpmsg_rl))) {
941         struct ds ds = DS_EMPTY_INITIALIZER;
942         char *packet = ofp_packet_to_string(buf->data, buf->size, buf->size);
943         ds_put_format(&ds, "%s: execute ", dpif_name(dpif));
944         format_odp_actions(&ds, actions, n_actions);
945         if (error) {
946             ds_put_format(&ds, " failed (%s)", strerror(error));
947         }
948         ds_put_format(&ds, " on packet %s", packet);
949         vlog(THIS_MODULE, error ? VLL_WARN : VLL_DBG, "%s", ds_cstr(&ds));
950         ds_destroy(&ds);
951         free(packet);
952     }
953     return error;
954 }
955
956 /* Retrieves 'dpif''s "listen mask" into '*listen_mask'.  Each ODPL_* bit set
957  * in '*listen_mask' indicates that dpif_recv() will receive messages of that
958  * type.  Returns 0 if successful, otherwise a positive errno value. */
959 int
960 dpif_recv_get_mask(const struct dpif *dpif, int *listen_mask)
961 {
962     int error = dpif->dpif_class->recv_get_mask(dpif, listen_mask);
963     if (error) {
964         *listen_mask = 0;
965     }
966     log_operation(dpif, "recv_get_mask", error);
967     return error;
968 }
969
970 /* Sets 'dpif''s "listen mask" to 'listen_mask'.  Each ODPL_* bit set in
971  * '*listen_mask' requests that dpif_recv() receive messages of that type.
972  * Returns 0 if successful, otherwise a positive errno value. */
973 int
974 dpif_recv_set_mask(struct dpif *dpif, int listen_mask)
975 {
976     int error = dpif->dpif_class->recv_set_mask(dpif, listen_mask);
977     log_operation(dpif, "recv_set_mask", error);
978     return error;
979 }
980
981 /* Retrieve the sFlow sampling probability.  '*probability' is expressed as the
982  * number of packets out of UINT_MAX to sample, e.g. probability/UINT_MAX is
983  * the probability of sampling a given packet.
984  *
985  * Returns 0 if successful, otherwise a positive errno value.  EOPNOTSUPP
986  * indicates that 'dpif' does not support sFlow sampling. */
987 int
988 dpif_get_sflow_probability(const struct dpif *dpif, uint32_t *probability)
989 {
990     int error = (dpif->dpif_class->get_sflow_probability
991                  ? dpif->dpif_class->get_sflow_probability(dpif, probability)
992                  : EOPNOTSUPP);
993     if (error) {
994         *probability = 0;
995     }
996     log_operation(dpif, "get_sflow_probability", error);
997     return error;
998 }
999
1000 /* Set the sFlow sampling probability.  'probability' is expressed as the
1001  * number of packets out of UINT_MAX to sample, e.g. probability/UINT_MAX is
1002  * the probability of sampling a given packet.
1003  *
1004  * Returns 0 if successful, otherwise a positive errno value.  EOPNOTSUPP
1005  * indicates that 'dpif' does not support sFlow sampling. */
1006 int
1007 dpif_set_sflow_probability(struct dpif *dpif, uint32_t probability)
1008 {
1009     int error = (dpif->dpif_class->set_sflow_probability
1010                  ? dpif->dpif_class->set_sflow_probability(dpif, probability)
1011                  : EOPNOTSUPP);
1012     log_operation(dpif, "set_sflow_probability", error);
1013     return error;
1014 }
1015
1016 /* Attempts to receive a message from 'dpif'.  If successful, stores the
1017  * message into '*packetp'.  The message, if one is received, will begin with
1018  * 'struct odp_msg' as a header.  Only messages of the types selected with
1019  * dpif_set_listen_mask() will ordinarily be received (but if a message type is
1020  * enabled and then later disabled, some stragglers might pop up).
1021  *
1022  * Returns 0 if successful, otherwise a positive errno value.  Returns EAGAIN
1023  * if no message is immediately available. */
1024 int
1025 dpif_recv(struct dpif *dpif, struct ofpbuf **packetp)
1026 {
1027     int error = dpif->dpif_class->recv(dpif, packetp);
1028     if (!error) {
1029         if (VLOG_IS_DBG_ENABLED()) {
1030             struct ofpbuf *buf = *packetp;
1031             struct odp_msg *msg = buf->data;
1032             void *payload = msg + 1;
1033             size_t payload_len = buf->size - sizeof *msg;
1034             char *s = ofp_packet_to_string(payload, payload_len, payload_len);
1035             VLOG_DBG_RL(&dpmsg_rl, "%s: received %s message of length "
1036                         "%zu on port %"PRIu16": %s", dpif_name(dpif),
1037                         (msg->type == _ODPL_MISS_NR ? "miss"
1038                          : msg->type == _ODPL_ACTION_NR ? "action"
1039                          : msg->type == _ODPL_SFLOW_NR ? "sFlow"
1040                          : "<unknown>"),
1041                         payload_len, msg->port, s);
1042             free(s);
1043         }
1044     } else {
1045         *packetp = NULL;
1046     }
1047     return error;
1048 }
1049
1050 /* Discards all messages that would otherwise be received by dpif_recv() on
1051  * 'dpif'.  Returns 0 if successful, otherwise a positive errno value. */
1052 int
1053 dpif_recv_purge(struct dpif *dpif)
1054 {
1055     struct odp_stats stats;
1056     unsigned int i;
1057     int error;
1058
1059     COVERAGE_INC(dpif_purge);
1060
1061     error = dpif_get_dp_stats(dpif, &stats);
1062     if (error) {
1063         return error;
1064     }
1065
1066     for (i = 0; i < stats.max_miss_queue + stats.max_action_queue + stats.max_sflow_queue; i++) {
1067         struct ofpbuf *buf;
1068         error = dpif_recv(dpif, &buf);
1069         if (error) {
1070             return error == EAGAIN ? 0 : error;
1071         }
1072         ofpbuf_delete(buf);
1073     }
1074     return 0;
1075 }
1076
1077 /* Arranges for the poll loop to wake up when 'dpif' has a message queued to be
1078  * received with dpif_recv(). */
1079 void
1080 dpif_recv_wait(struct dpif *dpif)
1081 {
1082     dpif->dpif_class->recv_wait(dpif);
1083 }
1084
1085 /* Obtains the NetFlow engine type and engine ID for 'dpif' into '*engine_type'
1086  * and '*engine_id', respectively. */
1087 void
1088 dpif_get_netflow_ids(const struct dpif *dpif,
1089                      uint8_t *engine_type, uint8_t *engine_id)
1090 {
1091     *engine_type = dpif->netflow_engine_type;
1092     *engine_id = dpif->netflow_engine_id;
1093 }
1094 \f
1095 void
1096 dpif_init(struct dpif *dpif, const struct dpif_class *dpif_class,
1097           const char *name,
1098           uint8_t netflow_engine_type, uint8_t netflow_engine_id)
1099 {
1100     dpif->dpif_class = dpif_class;
1101     dpif->base_name = xstrdup(name);
1102     dpif->full_name = xasprintf("%s@%s", dpif_class->type, name);
1103     dpif->netflow_engine_type = netflow_engine_type;
1104     dpif->netflow_engine_id = netflow_engine_id;
1105 }
1106
1107 /* Undoes the results of initialization.
1108  *
1109  * Normally this function only needs to be called from dpif_close().
1110  * However, it may be called by providers due to an error on opening
1111  * that occurs after initialization.  It this case dpif_close() would
1112  * never be called. */
1113 void
1114 dpif_uninit(struct dpif *dpif, bool close)
1115 {
1116     char *base_name = dpif->base_name;
1117     char *full_name = dpif->full_name;
1118
1119     if (close) {
1120         dpif->dpif_class->close(dpif);
1121     }
1122
1123     free(base_name);
1124     free(full_name);
1125 }
1126 \f
1127 static void
1128 log_operation(const struct dpif *dpif, const char *operation, int error)
1129 {
1130     if (!error) {
1131         VLOG_DBG_RL(&dpmsg_rl, "%s: %s success", dpif_name(dpif), operation);
1132     } else {
1133         VLOG_WARN_RL(&error_rl, "%s: %s failed (%s)",
1134                      dpif_name(dpif), operation, strerror(error));
1135     }
1136 }
1137
1138 static enum vlog_level
1139 flow_message_log_level(int error)
1140 {
1141     return error ? VLL_WARN : VLL_DBG;
1142 }
1143
1144 static bool
1145 should_log_flow_message(int error)
1146 {
1147     return !vlog_should_drop(THIS_MODULE, flow_message_log_level(error),
1148                              error ? &error_rl : &dpmsg_rl);
1149 }
1150
1151 static void
1152 log_flow_message(const struct dpif *dpif, int error, const char *operation,
1153                  const flow_t *flow, const struct odp_flow_stats *stats,
1154                  const union odp_action *actions, size_t n_actions)
1155 {
1156     struct ds ds = DS_EMPTY_INITIALIZER;
1157     ds_put_format(&ds, "%s: ", dpif_name(dpif));
1158     if (error) {
1159         ds_put_cstr(&ds, "failed to ");
1160     }
1161     ds_put_format(&ds, "%s ", operation);
1162     if (error) {
1163         ds_put_format(&ds, "(%s) ", strerror(error));
1164     }
1165     flow_format(&ds, flow);
1166     if (stats) {
1167         ds_put_cstr(&ds, ", ");
1168         format_odp_flow_stats(&ds, stats);
1169     }
1170     if (actions || n_actions) {
1171         ds_put_cstr(&ds, ", actions:");
1172         format_odp_actions(&ds, actions, n_actions);
1173     }
1174     vlog(THIS_MODULE, flow_message_log_level(error), "%s", ds_cstr(&ds));
1175     ds_destroy(&ds);
1176 }
1177
1178 static void
1179 log_flow_operation(const struct dpif *dpif, const char *operation, int error,
1180                    struct odp_flow *flow)
1181 {
1182     if (error) {
1183         flow->n_actions = 0;
1184     }
1185     log_flow_message(dpif, error, operation, &flow->key,
1186                      !error ? &flow->stats : NULL,
1187                      flow->actions, flow->n_actions);
1188 }
1189
1190 static void
1191 log_flow_put(struct dpif *dpif, int error, const struct odp_flow_put *put)
1192 {
1193     enum { ODPPF_ALL = ODPPF_CREATE | ODPPF_MODIFY | ODPPF_ZERO_STATS };
1194     struct ds s;
1195
1196     ds_init(&s);
1197     ds_put_cstr(&s, "put");
1198     if (put->flags & ODPPF_CREATE) {
1199         ds_put_cstr(&s, "[create]");
1200     }
1201     if (put->flags & ODPPF_MODIFY) {
1202         ds_put_cstr(&s, "[modify]");
1203     }
1204     if (put->flags & ODPPF_ZERO_STATS) {
1205         ds_put_cstr(&s, "[zero]");
1206     }
1207     if (put->flags & ~ODPPF_ALL) {
1208         ds_put_format(&s, "[%x]", put->flags & ~ODPPF_ALL);
1209     }
1210     log_flow_message(dpif, error, ds_cstr(&s), &put->flow.key,
1211                      !error ? &put->flow.stats : NULL,
1212                      put->flow.actions, put->flow.n_actions);
1213     ds_destroy(&s);
1214 }
1215
1216 /* There is a tendency to construct odp_flow objects on the stack and to
1217  * forget to properly initialize their "actions" and "n_actions" members.
1218  * When this happens, we get memory corruption because the kernel
1219  * writes through the random pointer that is in the "actions" member.
1220  *
1221  * This function attempts to combat the problem by:
1222  *
1223  *      - Forcing a segfault if "actions" points to an invalid region (instead
1224  *        of just getting back EFAULT, which can be easily missed in the log).
1225  *
1226  *      - Storing a distinctive value that is likely to cause an
1227  *        easy-to-identify error later if it is dereferenced, etc.
1228  *
1229  *      - Triggering a warning on uninitialized memory from Valgrind if
1230  *        "actions" or "n_actions" was not initialized.
1231  */
1232 static void
1233 check_rw_odp_flow(struct odp_flow *flow)
1234 {
1235     if (flow->n_actions) {
1236         memset(&flow->actions[0], 0xcc, sizeof flow->actions[0]);
1237     }
1238 }