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