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