]> git.proxmox.com Git - mirror_ovs.git/blob - lib/dpif.c
Generic encap and decap support for NSH
[mirror_ovs.git] / lib / dpif.c
1 /*
2 * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 Nicira, Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 #include <config.h>
18 #include "dpif-provider.h"
19
20 #include <ctype.h>
21 #include <errno.h>
22 #include <inttypes.h>
23 #include <stdlib.h>
24 #include <string.h>
25
26 #include "coverage.h"
27 #include "dpctl.h"
28 #include "dp-packet.h"
29 #include "dpif-netdev.h"
30 #include "openvswitch/dynamic-string.h"
31 #include "flow.h"
32 #include "netdev.h"
33 #include "netlink.h"
34 #include "odp-execute.h"
35 #include "odp-util.h"
36 #include "openvswitch/ofp-print.h"
37 #include "openvswitch/ofp-util.h"
38 #include "openvswitch/ofpbuf.h"
39 #include "packets.h"
40 #include "poll-loop.h"
41 #include "route-table.h"
42 #include "seq.h"
43 #include "openvswitch/shash.h"
44 #include "sset.h"
45 #include "timeval.h"
46 #include "tnl-neigh-cache.h"
47 #include "tnl-ports.h"
48 #include "util.h"
49 #include "uuid.h"
50 #include "valgrind.h"
51 #include "openvswitch/ofp-errors.h"
52 #include "openvswitch/vlog.h"
53
54 VLOG_DEFINE_THIS_MODULE(dpif);
55
56 COVERAGE_DEFINE(dpif_destroy);
57 COVERAGE_DEFINE(dpif_port_add);
58 COVERAGE_DEFINE(dpif_port_del);
59 COVERAGE_DEFINE(dpif_flow_flush);
60 COVERAGE_DEFINE(dpif_flow_get);
61 COVERAGE_DEFINE(dpif_flow_put);
62 COVERAGE_DEFINE(dpif_flow_del);
63 COVERAGE_DEFINE(dpif_execute);
64 COVERAGE_DEFINE(dpif_purge);
65 COVERAGE_DEFINE(dpif_execute_with_help);
66 COVERAGE_DEFINE(dpif_meter_set);
67 COVERAGE_DEFINE(dpif_meter_get);
68 COVERAGE_DEFINE(dpif_meter_del);
69
70 static const struct dpif_class *base_dpif_classes[] = {
71 #if defined(__linux__) || defined(_WIN32)
72 &dpif_netlink_class,
73 #endif
74 &dpif_netdev_class,
75 };
76
77 struct registered_dpif_class {
78 const struct dpif_class *dpif_class;
79 int refcount;
80 };
81 static struct shash dpif_classes = SHASH_INITIALIZER(&dpif_classes);
82 static struct sset dpif_blacklist = SSET_INITIALIZER(&dpif_blacklist);
83
84 /* Protects 'dpif_classes', including the refcount, and 'dpif_blacklist'. */
85 static struct ovs_mutex dpif_mutex = OVS_MUTEX_INITIALIZER;
86
87 /* Rate limit for individual messages going to or from the datapath, output at
88 * DBG level. This is very high because, if these are enabled, it is because
89 * we really need to see them. */
90 static struct vlog_rate_limit dpmsg_rl = VLOG_RATE_LIMIT_INIT(600, 600);
91
92 /* Not really much point in logging many dpif errors. */
93 static struct vlog_rate_limit error_rl = VLOG_RATE_LIMIT_INIT(60, 5);
94
95 static void log_operation(const struct dpif *, const char *operation,
96 int error);
97 static bool should_log_flow_message(const struct vlog_module *module,
98 int error);
99
100 /* Incremented whenever tnl route, arp, etc changes. */
101 struct seq *tnl_conf_seq;
102
103 static bool
104 dpif_is_internal_port(const char *type)
105 {
106 /* For userspace datapath, tap devices are the equivalent
107 * of internal devices in the kernel datapath, so both
108 * these types are 'internal' devices. */
109 return !strcmp(type, "internal") || !strcmp(type, "tap");
110 }
111
112 static void
113 dp_initialize(void)
114 {
115 static struct ovsthread_once once = OVSTHREAD_ONCE_INITIALIZER;
116
117 if (ovsthread_once_start(&once)) {
118 int i;
119
120 tnl_conf_seq = seq_create();
121 dpctl_unixctl_register();
122 tnl_port_map_init();
123 tnl_neigh_cache_init();
124 route_table_init();
125
126 for (i = 0; i < ARRAY_SIZE(base_dpif_classes); i++) {
127 dp_register_provider(base_dpif_classes[i]);
128 }
129
130 ovsthread_once_done(&once);
131 }
132 }
133
134 static int
135 dp_register_provider__(const struct dpif_class *new_class)
136 {
137 struct registered_dpif_class *registered_class;
138 int error;
139
140 if (sset_contains(&dpif_blacklist, new_class->type)) {
141 VLOG_DBG("attempted to register blacklisted provider: %s",
142 new_class->type);
143 return EINVAL;
144 }
145
146 if (shash_find(&dpif_classes, new_class->type)) {
147 VLOG_WARN("attempted to register duplicate datapath provider: %s",
148 new_class->type);
149 return EEXIST;
150 }
151
152 error = new_class->init ? new_class->init() : 0;
153 if (error) {
154 VLOG_WARN("failed to initialize %s datapath class: %s",
155 new_class->type, ovs_strerror(error));
156 return error;
157 }
158
159 registered_class = xmalloc(sizeof *registered_class);
160 registered_class->dpif_class = new_class;
161 registered_class->refcount = 0;
162
163 shash_add(&dpif_classes, new_class->type, registered_class);
164
165 return 0;
166 }
167
168 /* Registers a new datapath provider. After successful registration, new
169 * datapaths of that type can be opened using dpif_open(). */
170 int
171 dp_register_provider(const struct dpif_class *new_class)
172 {
173 int error;
174
175 ovs_mutex_lock(&dpif_mutex);
176 error = dp_register_provider__(new_class);
177 ovs_mutex_unlock(&dpif_mutex);
178
179 return error;
180 }
181
182 /* Unregisters a datapath provider. 'type' must have been previously
183 * registered and not currently be in use by any dpifs. After unregistration
184 * new datapaths of that type cannot be opened using dpif_open(). */
185 static int
186 dp_unregister_provider__(const char *type)
187 {
188 struct shash_node *node;
189 struct registered_dpif_class *registered_class;
190
191 node = shash_find(&dpif_classes, type);
192 if (!node) {
193 return EAFNOSUPPORT;
194 }
195
196 registered_class = node->data;
197 if (registered_class->refcount) {
198 VLOG_WARN("attempted to unregister in use datapath provider: %s", type);
199 return EBUSY;
200 }
201
202 shash_delete(&dpif_classes, node);
203 free(registered_class);
204
205 return 0;
206 }
207
208 /* Unregisters a datapath provider. 'type' must have been previously
209 * registered and not currently be in use by any dpifs. After unregistration
210 * new datapaths of that type cannot be opened using dpif_open(). */
211 int
212 dp_unregister_provider(const char *type)
213 {
214 int error;
215
216 dp_initialize();
217
218 ovs_mutex_lock(&dpif_mutex);
219 error = dp_unregister_provider__(type);
220 ovs_mutex_unlock(&dpif_mutex);
221
222 return error;
223 }
224
225 /* Blacklists a provider. Causes future calls of dp_register_provider() with
226 * a dpif_class which implements 'type' to fail. */
227 void
228 dp_blacklist_provider(const char *type)
229 {
230 ovs_mutex_lock(&dpif_mutex);
231 sset_add(&dpif_blacklist, type);
232 ovs_mutex_unlock(&dpif_mutex);
233 }
234
235 /* Adds the types of all currently registered datapath providers to 'types'.
236 * The caller must first initialize the sset. */
237 void
238 dp_enumerate_types(struct sset *types)
239 {
240 struct shash_node *node;
241
242 dp_initialize();
243
244 ovs_mutex_lock(&dpif_mutex);
245 SHASH_FOR_EACH(node, &dpif_classes) {
246 const struct registered_dpif_class *registered_class = node->data;
247 sset_add(types, registered_class->dpif_class->type);
248 }
249 ovs_mutex_unlock(&dpif_mutex);
250 }
251
252 static void
253 dp_class_unref(struct registered_dpif_class *rc)
254 {
255 ovs_mutex_lock(&dpif_mutex);
256 ovs_assert(rc->refcount);
257 rc->refcount--;
258 ovs_mutex_unlock(&dpif_mutex);
259 }
260
261 static struct registered_dpif_class *
262 dp_class_lookup(const char *type)
263 {
264 struct registered_dpif_class *rc;
265
266 ovs_mutex_lock(&dpif_mutex);
267 rc = shash_find_data(&dpif_classes, type);
268 if (rc) {
269 rc->refcount++;
270 }
271 ovs_mutex_unlock(&dpif_mutex);
272
273 return rc;
274 }
275
276 /* Clears 'names' and enumerates the names of all known created datapaths with
277 * the given 'type'. The caller must first initialize the sset. Returns 0 if
278 * successful, otherwise a positive errno value.
279 *
280 * Some kinds of datapaths might not be practically enumerable. This is not
281 * considered an error. */
282 int
283 dp_enumerate_names(const char *type, struct sset *names)
284 {
285 struct registered_dpif_class *registered_class;
286 const struct dpif_class *dpif_class;
287 int error;
288
289 dp_initialize();
290 sset_clear(names);
291
292 registered_class = dp_class_lookup(type);
293 if (!registered_class) {
294 VLOG_WARN("could not enumerate unknown type: %s", type);
295 return EAFNOSUPPORT;
296 }
297
298 dpif_class = registered_class->dpif_class;
299 error = (dpif_class->enumerate
300 ? dpif_class->enumerate(names, dpif_class)
301 : 0);
302 if (error) {
303 VLOG_WARN("failed to enumerate %s datapaths: %s", dpif_class->type,
304 ovs_strerror(error));
305 }
306 dp_class_unref(registered_class);
307
308 return error;
309 }
310
311 /* Parses 'datapath_name_', which is of the form [type@]name into its
312 * component pieces. 'name' and 'type' must be freed by the caller.
313 *
314 * The returned 'type' is normalized, as if by dpif_normalize_type(). */
315 void
316 dp_parse_name(const char *datapath_name_, char **name, char **type)
317 {
318 char *datapath_name = xstrdup(datapath_name_);
319 char *separator;
320
321 separator = strchr(datapath_name, '@');
322 if (separator) {
323 *separator = '\0';
324 *type = datapath_name;
325 *name = xstrdup(dpif_normalize_type(separator + 1));
326 } else {
327 *name = datapath_name;
328 *type = xstrdup(dpif_normalize_type(NULL));
329 }
330 }
331
332 static int
333 do_open(const char *name, const char *type, bool create, struct dpif **dpifp)
334 {
335 struct dpif *dpif = NULL;
336 int error;
337 struct registered_dpif_class *registered_class;
338
339 dp_initialize();
340
341 type = dpif_normalize_type(type);
342 registered_class = dp_class_lookup(type);
343 if (!registered_class) {
344 VLOG_WARN("could not create datapath %s of unknown type %s", name,
345 type);
346 error = EAFNOSUPPORT;
347 goto exit;
348 }
349
350 error = registered_class->dpif_class->open(registered_class->dpif_class,
351 name, create, &dpif);
352 if (!error) {
353 struct dpif_port_dump port_dump;
354 struct dpif_port dpif_port;
355
356 ovs_assert(dpif->dpif_class == registered_class->dpif_class);
357
358 DPIF_PORT_FOR_EACH(&dpif_port, &port_dump, dpif) {
359 struct netdev *netdev;
360 int err;
361
362 if (dpif_is_internal_port(dpif_port.type)) {
363 continue;
364 }
365
366 err = netdev_open(dpif_port.name, dpif_port.type, &netdev);
367
368 if (!err) {
369 netdev_ports_insert(netdev, dpif->dpif_class, &dpif_port);
370 netdev_close(netdev);
371 } else {
372 VLOG_WARN("could not open netdev %s type %s: %s",
373 dpif_port.name, dpif_port.type, ovs_strerror(err));
374 }
375 }
376 } else {
377 dp_class_unref(registered_class);
378 }
379
380 exit:
381 *dpifp = error ? NULL : dpif;
382 return error;
383 }
384
385 /* Tries to open an existing datapath named 'name' and type 'type'. Will fail
386 * if no datapath with 'name' and 'type' exists. 'type' may be either NULL or
387 * the empty string to specify the default system type. Returns 0 if
388 * successful, otherwise a positive errno value. On success stores a pointer
389 * to the datapath in '*dpifp', otherwise a null pointer. */
390 int
391 dpif_open(const char *name, const char *type, struct dpif **dpifp)
392 {
393 return do_open(name, type, false, dpifp);
394 }
395
396 /* Tries to create and open a new datapath with the given 'name' and 'type'.
397 * 'type' may be either NULL or the empty string to specify the default system
398 * type. Will fail if a datapath with 'name' and 'type' already exists.
399 * Returns 0 if successful, otherwise a positive errno value. On success
400 * stores a pointer to the datapath in '*dpifp', otherwise a null pointer. */
401 int
402 dpif_create(const char *name, const char *type, struct dpif **dpifp)
403 {
404 return do_open(name, type, true, dpifp);
405 }
406
407 /* Tries to open a datapath with the given 'name' and 'type', creating it if it
408 * does not exist. 'type' may be either NULL or the empty string to specify
409 * the default system type. Returns 0 if successful, otherwise a positive
410 * errno value. On success stores a pointer to the datapath in '*dpifp',
411 * otherwise a null pointer. */
412 int
413 dpif_create_and_open(const char *name, const char *type, struct dpif **dpifp)
414 {
415 int error;
416
417 error = dpif_create(name, type, dpifp);
418 if (error == EEXIST || error == EBUSY) {
419 error = dpif_open(name, type, dpifp);
420 if (error) {
421 VLOG_WARN("datapath %s already exists but cannot be opened: %s",
422 name, ovs_strerror(error));
423 }
424 } else if (error) {
425 VLOG_WARN("failed to create datapath %s: %s",
426 name, ovs_strerror(error));
427 }
428 return error;
429 }
430
431 /* Closes and frees the connection to 'dpif'. Does not destroy the datapath
432 * itself; call dpif_delete() first, instead, if that is desirable. */
433 void
434 dpif_close(struct dpif *dpif)
435 {
436 if (dpif) {
437 struct registered_dpif_class *rc;
438
439 rc = shash_find_data(&dpif_classes, dpif->dpif_class->type);
440 dpif_uninit(dpif, true);
441 dp_class_unref(rc);
442 }
443 }
444
445 /* Performs periodic work needed by 'dpif'. */
446 bool
447 dpif_run(struct dpif *dpif)
448 {
449 if (dpif->dpif_class->run) {
450 return dpif->dpif_class->run(dpif);
451 }
452 return false;
453 }
454
455 /* Arranges for poll_block() to wake up when dp_run() needs to be called for
456 * 'dpif'. */
457 void
458 dpif_wait(struct dpif *dpif)
459 {
460 if (dpif->dpif_class->wait) {
461 dpif->dpif_class->wait(dpif);
462 }
463 }
464
465 /* Returns the name of datapath 'dpif' prefixed with the type
466 * (for use in log messages). */
467 const char *
468 dpif_name(const struct dpif *dpif)
469 {
470 return dpif->full_name;
471 }
472
473 /* Returns the name of datapath 'dpif' without the type
474 * (for use in device names). */
475 const char *
476 dpif_base_name(const struct dpif *dpif)
477 {
478 return dpif->base_name;
479 }
480
481 /* Returns the type of datapath 'dpif'. */
482 const char *
483 dpif_type(const struct dpif *dpif)
484 {
485 return dpif->dpif_class->type;
486 }
487
488 /* Returns the fully spelled out name for the given datapath 'type'.
489 *
490 * Normalized type string can be compared with strcmp(). Unnormalized type
491 * string might be the same even if they have different spellings. */
492 const char *
493 dpif_normalize_type(const char *type)
494 {
495 return type && type[0] ? type : "system";
496 }
497
498 /* Destroys the datapath that 'dpif' is connected to, first removing all of its
499 * ports. After calling this function, it does not make sense to pass 'dpif'
500 * to any functions other than dpif_name() or dpif_close(). */
501 int
502 dpif_delete(struct dpif *dpif)
503 {
504 int error;
505
506 COVERAGE_INC(dpif_destroy);
507
508 error = dpif->dpif_class->destroy(dpif);
509 log_operation(dpif, "delete", error);
510 return error;
511 }
512
513 /* Retrieves statistics for 'dpif' into 'stats'. Returns 0 if successful,
514 * otherwise a positive errno value. */
515 int
516 dpif_get_dp_stats(const struct dpif *dpif, struct dpif_dp_stats *stats)
517 {
518 int error = dpif->dpif_class->get_stats(dpif, stats);
519 if (error) {
520 memset(stats, 0, sizeof *stats);
521 }
522 log_operation(dpif, "get_stats", error);
523 return error;
524 }
525
526 const char *
527 dpif_port_open_type(const char *datapath_type, const char *port_type)
528 {
529 struct registered_dpif_class *rc;
530
531 datapath_type = dpif_normalize_type(datapath_type);
532
533 ovs_mutex_lock(&dpif_mutex);
534 rc = shash_find_data(&dpif_classes, datapath_type);
535 if (rc && rc->dpif_class->port_open_type) {
536 port_type = rc->dpif_class->port_open_type(rc->dpif_class, port_type);
537 }
538 ovs_mutex_unlock(&dpif_mutex);
539
540 return port_type;
541 }
542
543 /* Attempts to add 'netdev' as a port on 'dpif'. If 'port_nop' is
544 * non-null and its value is not ODPP_NONE, then attempts to use the
545 * value as the port number.
546 *
547 * If successful, returns 0 and sets '*port_nop' to the new port's port
548 * number (if 'port_nop' is non-null). On failure, returns a positive
549 * errno value and sets '*port_nop' to ODPP_NONE (if 'port_nop' is
550 * non-null). */
551 int
552 dpif_port_add(struct dpif *dpif, struct netdev *netdev, odp_port_t *port_nop)
553 {
554 const char *netdev_name = netdev_get_name(netdev);
555 odp_port_t port_no = ODPP_NONE;
556 int error;
557
558 COVERAGE_INC(dpif_port_add);
559
560 if (port_nop) {
561 port_no = *port_nop;
562 }
563
564 error = dpif->dpif_class->port_add(dpif, netdev, &port_no);
565 if (!error) {
566 VLOG_DBG_RL(&dpmsg_rl, "%s: added %s as port %"PRIu32,
567 dpif_name(dpif), netdev_name, port_no);
568
569 if (!dpif_is_internal_port(netdev_get_type(netdev))) {
570
571 struct dpif_port dpif_port;
572
573 dpif_port.type = CONST_CAST(char *, netdev_get_type(netdev));
574 dpif_port.name = CONST_CAST(char *, netdev_name);
575 dpif_port.port_no = port_no;
576 netdev_ports_insert(netdev, dpif->dpif_class, &dpif_port);
577 }
578 } else {
579 VLOG_WARN_RL(&error_rl, "%s: failed to add %s as port: %s",
580 dpif_name(dpif), netdev_name, ovs_strerror(error));
581 port_no = ODPP_NONE;
582 }
583 if (port_nop) {
584 *port_nop = port_no;
585 }
586 return error;
587 }
588
589 /* Attempts to remove 'dpif''s port number 'port_no'. Returns 0 if successful,
590 * otherwise a positive errno value. */
591 int
592 dpif_port_del(struct dpif *dpif, odp_port_t port_no)
593 {
594 int error;
595
596 COVERAGE_INC(dpif_port_del);
597
598 error = dpif->dpif_class->port_del(dpif, port_no);
599 if (!error) {
600 VLOG_DBG_RL(&dpmsg_rl, "%s: port_del(%"PRIu32")",
601 dpif_name(dpif), port_no);
602
603 netdev_ports_remove(port_no, dpif->dpif_class);
604 } else {
605 log_operation(dpif, "port_del", error);
606 }
607 return error;
608 }
609
610 /* Makes a deep copy of 'src' into 'dst'. */
611 void
612 dpif_port_clone(struct dpif_port *dst, const struct dpif_port *src)
613 {
614 dst->name = xstrdup(src->name);
615 dst->type = xstrdup(src->type);
616 dst->port_no = src->port_no;
617 }
618
619 /* Frees memory allocated to members of 'dpif_port'.
620 *
621 * Do not call this function on a dpif_port obtained from
622 * dpif_port_dump_next(): that function retains ownership of the data in the
623 * dpif_port. */
624 void
625 dpif_port_destroy(struct dpif_port *dpif_port)
626 {
627 free(dpif_port->name);
628 free(dpif_port->type);
629 }
630
631 /* Checks if port named 'devname' exists in 'dpif'. If so, returns
632 * true; otherwise, returns false. */
633 bool
634 dpif_port_exists(const struct dpif *dpif, const char *devname)
635 {
636 int error = dpif->dpif_class->port_query_by_name(dpif, devname, NULL);
637 if (error != 0 && error != ENODEV) {
638 VLOG_WARN_RL(&error_rl, "%s: failed to query port %s: %s",
639 dpif_name(dpif), devname, ovs_strerror(error));
640 }
641
642 return !error;
643 }
644
645 /* Refreshes configuration of 'dpif's port. */
646 int
647 dpif_port_set_config(struct dpif *dpif, odp_port_t port_no,
648 const struct smap *cfg)
649 {
650 int error = 0;
651
652 if (dpif->dpif_class->port_set_config) {
653 error = dpif->dpif_class->port_set_config(dpif, port_no, cfg);
654 if (error) {
655 log_operation(dpif, "port_set_config", error);
656 }
657 }
658
659 return error;
660 }
661
662 /* Looks up port number 'port_no' in 'dpif'. On success, returns 0 and
663 * initializes '*port' appropriately; on failure, returns a positive errno
664 * value.
665 *
666 * Retuns ENODEV if the port doesn't exist.
667 *
668 * The caller owns the data in 'port' and must free it with
669 * dpif_port_destroy() when it is no longer needed. */
670 int
671 dpif_port_query_by_number(const struct dpif *dpif, odp_port_t port_no,
672 struct dpif_port *port)
673 {
674 int error = dpif->dpif_class->port_query_by_number(dpif, port_no, port);
675 if (!error) {
676 VLOG_DBG_RL(&dpmsg_rl, "%s: port %"PRIu32" is device %s",
677 dpif_name(dpif), port_no, port->name);
678 } else {
679 memset(port, 0, sizeof *port);
680 VLOG_WARN_RL(&error_rl, "%s: failed to query port %"PRIu32": %s",
681 dpif_name(dpif), port_no, ovs_strerror(error));
682 }
683 return error;
684 }
685
686 /* Looks up port named 'devname' in 'dpif'. On success, returns 0 and
687 * initializes '*port' appropriately; on failure, returns a positive errno
688 * value.
689 *
690 * Retuns ENODEV if the port doesn't exist.
691 *
692 * The caller owns the data in 'port' and must free it with
693 * dpif_port_destroy() when it is no longer needed. */
694 int
695 dpif_port_query_by_name(const struct dpif *dpif, const char *devname,
696 struct dpif_port *port)
697 {
698 int error = dpif->dpif_class->port_query_by_name(dpif, devname, port);
699 if (!error) {
700 VLOG_DBG_RL(&dpmsg_rl, "%s: device %s is on port %"PRIu32,
701 dpif_name(dpif), devname, port->port_no);
702 } else {
703 memset(port, 0, sizeof *port);
704
705 /* For ENODEV we use DBG level because the caller is probably
706 * interested in whether 'dpif' actually has a port 'devname', so that
707 * it's not an issue worth logging if it doesn't. Other errors are
708 * uncommon and more likely to indicate a real problem. */
709 VLOG_RL(&error_rl, error == ENODEV ? VLL_DBG : VLL_WARN,
710 "%s: failed to query port %s: %s",
711 dpif_name(dpif), devname, ovs_strerror(error));
712 }
713 return error;
714 }
715
716 /* Returns the Netlink PID value to supply in OVS_ACTION_ATTR_USERSPACE
717 * actions as the OVS_USERSPACE_ATTR_PID attribute's value, for use in
718 * flows whose packets arrived on port 'port_no'. In the case where the
719 * provider allocates multiple Netlink PIDs to a single port, it may use
720 * 'hash' to spread load among them. The caller need not use a particular
721 * hash function; a 5-tuple hash is suitable.
722 *
723 * (The datapath implementation might use some different hash function for
724 * distributing packets received via flow misses among PIDs. This means
725 * that packets received via flow misses might be reordered relative to
726 * packets received via userspace actions. This is not ordinarily a
727 * problem.)
728 *
729 * A 'port_no' of ODPP_NONE is a special case: it returns a reserved PID, not
730 * allocated to any port, that the client may use for special purposes.
731 *
732 * The return value is only meaningful when DPIF_UC_ACTION has been enabled in
733 * the 'dpif''s listen mask. It is allowed to change when DPIF_UC_ACTION is
734 * disabled and then re-enabled, so a client that does that must be prepared to
735 * update all of the flows that it installed that contain
736 * OVS_ACTION_ATTR_USERSPACE actions. */
737 uint32_t
738 dpif_port_get_pid(const struct dpif *dpif, odp_port_t port_no, uint32_t hash)
739 {
740 return (dpif->dpif_class->port_get_pid
741 ? (dpif->dpif_class->port_get_pid)(dpif, port_no, hash)
742 : 0);
743 }
744
745 /* Looks up port number 'port_no' in 'dpif'. On success, returns 0 and copies
746 * the port's name into the 'name_size' bytes in 'name', ensuring that the
747 * result is null-terminated. On failure, returns a positive errno value and
748 * makes 'name' the empty string. */
749 int
750 dpif_port_get_name(struct dpif *dpif, odp_port_t port_no,
751 char *name, size_t name_size)
752 {
753 struct dpif_port port;
754 int error;
755
756 ovs_assert(name_size > 0);
757
758 error = dpif_port_query_by_number(dpif, port_no, &port);
759 if (!error) {
760 ovs_strlcpy(name, port.name, name_size);
761 dpif_port_destroy(&port);
762 } else {
763 *name = '\0';
764 }
765 return error;
766 }
767
768 /* Initializes 'dump' to begin dumping the ports in a dpif.
769 *
770 * This function provides no status indication. An error status for the entire
771 * dump operation is provided when it is completed by calling
772 * dpif_port_dump_done().
773 */
774 void
775 dpif_port_dump_start(struct dpif_port_dump *dump, const struct dpif *dpif)
776 {
777 dump->dpif = dpif;
778 dump->error = dpif->dpif_class->port_dump_start(dpif, &dump->state);
779 log_operation(dpif, "port_dump_start", dump->error);
780 }
781
782 /* Attempts to retrieve another port from 'dump', which must have been
783 * initialized with dpif_port_dump_start(). On success, stores a new dpif_port
784 * into 'port' and returns true. On failure, returns false.
785 *
786 * Failure might indicate an actual error or merely that the last port has been
787 * dumped. An error status for the entire dump operation is provided when it
788 * is completed by calling dpif_port_dump_done().
789 *
790 * The dpif owns the data stored in 'port'. It will remain valid until at
791 * least the next time 'dump' is passed to dpif_port_dump_next() or
792 * dpif_port_dump_done(). */
793 bool
794 dpif_port_dump_next(struct dpif_port_dump *dump, struct dpif_port *port)
795 {
796 const struct dpif *dpif = dump->dpif;
797
798 if (dump->error) {
799 return false;
800 }
801
802 dump->error = dpif->dpif_class->port_dump_next(dpif, dump->state, port);
803 if (dump->error == EOF) {
804 VLOG_DBG_RL(&dpmsg_rl, "%s: dumped all ports", dpif_name(dpif));
805 } else {
806 log_operation(dpif, "port_dump_next", dump->error);
807 }
808
809 if (dump->error) {
810 dpif->dpif_class->port_dump_done(dpif, dump->state);
811 return false;
812 }
813 return true;
814 }
815
816 /* Completes port table dump operation 'dump', which must have been initialized
817 * with dpif_port_dump_start(). Returns 0 if the dump operation was
818 * error-free, otherwise a positive errno value describing the problem. */
819 int
820 dpif_port_dump_done(struct dpif_port_dump *dump)
821 {
822 const struct dpif *dpif = dump->dpif;
823 if (!dump->error) {
824 dump->error = dpif->dpif_class->port_dump_done(dpif, dump->state);
825 log_operation(dpif, "port_dump_done", dump->error);
826 }
827 return dump->error == EOF ? 0 : dump->error;
828 }
829
830 /* Polls for changes in the set of ports in 'dpif'. If the set of ports in
831 * 'dpif' has changed, this function does one of the following:
832 *
833 * - Stores the name of the device that was added to or deleted from 'dpif' in
834 * '*devnamep' and returns 0. The caller is responsible for freeing
835 * '*devnamep' (with free()) when it no longer needs it.
836 *
837 * - Returns ENOBUFS and sets '*devnamep' to NULL.
838 *
839 * This function may also return 'false positives', where it returns 0 and
840 * '*devnamep' names a device that was not actually added or deleted or it
841 * returns ENOBUFS without any change.
842 *
843 * Returns EAGAIN if the set of ports in 'dpif' has not changed. May also
844 * return other positive errno values to indicate that something has gone
845 * wrong. */
846 int
847 dpif_port_poll(const struct dpif *dpif, char **devnamep)
848 {
849 int error = dpif->dpif_class->port_poll(dpif, devnamep);
850 if (error) {
851 *devnamep = NULL;
852 }
853 return error;
854 }
855
856 /* Arranges for the poll loop to wake up when port_poll(dpif) will return a
857 * value other than EAGAIN. */
858 void
859 dpif_port_poll_wait(const struct dpif *dpif)
860 {
861 dpif->dpif_class->port_poll_wait(dpif);
862 }
863
864 /* Extracts the flow stats for a packet. The 'flow' and 'packet'
865 * arguments must have been initialized through a call to flow_extract().
866 * 'used' is stored into stats->used. */
867 void
868 dpif_flow_stats_extract(const struct flow *flow, const struct dp_packet *packet,
869 long long int used, struct dpif_flow_stats *stats)
870 {
871 stats->tcp_flags = ntohs(flow->tcp_flags);
872 stats->n_bytes = dp_packet_size(packet);
873 stats->n_packets = 1;
874 stats->used = used;
875 }
876
877 /* Appends a human-readable representation of 'stats' to 's'. */
878 void
879 dpif_flow_stats_format(const struct dpif_flow_stats *stats, struct ds *s)
880 {
881 ds_put_format(s, "packets:%"PRIu64", bytes:%"PRIu64", used:",
882 stats->n_packets, stats->n_bytes);
883 if (stats->used) {
884 ds_put_format(s, "%.3fs", (time_msec() - stats->used) / 1000.0);
885 } else {
886 ds_put_format(s, "never");
887 }
888 if (stats->tcp_flags) {
889 ds_put_cstr(s, ", flags:");
890 packet_format_tcp_flags(s, stats->tcp_flags);
891 }
892 }
893
894 /* Places the hash of the 'key_len' bytes starting at 'key' into '*hash'. */
895 void
896 dpif_flow_hash(const struct dpif *dpif OVS_UNUSED,
897 const void *key, size_t key_len, ovs_u128 *hash)
898 {
899 static struct ovsthread_once once = OVSTHREAD_ONCE_INITIALIZER;
900 static uint32_t secret;
901
902 if (ovsthread_once_start(&once)) {
903 secret = random_uint32();
904 ovsthread_once_done(&once);
905 }
906 hash_bytes128(key, key_len, secret, hash);
907 uuid_set_bits_v4((struct uuid *)hash);
908 }
909
910 /* Deletes all flows from 'dpif'. Returns 0 if successful, otherwise a
911 * positive errno value. */
912 int
913 dpif_flow_flush(struct dpif *dpif)
914 {
915 int error;
916
917 COVERAGE_INC(dpif_flow_flush);
918
919 error = dpif->dpif_class->flow_flush(dpif);
920 log_operation(dpif, "flow_flush", error);
921 return error;
922 }
923
924 /* Attempts to install 'key' into the datapath, fetches it, then deletes it.
925 * Returns true if the datapath supported installing 'flow', false otherwise.
926 */
927 bool
928 dpif_probe_feature(struct dpif *dpif, const char *name,
929 const struct ofpbuf *key, const struct ofpbuf *actions,
930 const ovs_u128 *ufid)
931 {
932 struct dpif_flow flow;
933 struct ofpbuf reply;
934 uint64_t stub[DPIF_FLOW_BUFSIZE / 8];
935 bool enable_feature = false;
936 int error;
937 const struct nlattr *nl_actions = actions ? actions->data : NULL;
938 const size_t nl_actions_size = actions ? actions->size : 0;
939
940 /* Use DPIF_FP_MODIFY to cover the case where ovs-vswitchd is killed (and
941 * restarted) at just the right time such that feature probes from the
942 * previous run are still present in the datapath. */
943 error = dpif_flow_put(dpif, DPIF_FP_CREATE | DPIF_FP_MODIFY | DPIF_FP_PROBE,
944 key->data, key->size, NULL, 0,
945 nl_actions, nl_actions_size,
946 ufid, NON_PMD_CORE_ID, NULL);
947 if (error) {
948 if (error != EINVAL && error != EOVERFLOW) {
949 VLOG_WARN("%s: %s flow probe failed (%s)",
950 dpif_name(dpif), name, ovs_strerror(error));
951 }
952 return false;
953 }
954
955 ofpbuf_use_stack(&reply, &stub, sizeof stub);
956 error = dpif_flow_get(dpif, key->data, key->size, ufid,
957 NON_PMD_CORE_ID, &reply, &flow);
958 if (!error
959 && (!ufid || (flow.ufid_present
960 && ovs_u128_equals(*ufid, flow.ufid)))) {
961 enable_feature = true;
962 }
963
964 error = dpif_flow_del(dpif, key->data, key->size, ufid,
965 NON_PMD_CORE_ID, NULL);
966 if (error) {
967 VLOG_WARN("%s: failed to delete %s feature probe flow",
968 dpif_name(dpif), name);
969 }
970
971 return enable_feature;
972 }
973
974 /* A dpif_operate() wrapper for performing a single DPIF_OP_FLOW_GET. */
975 int
976 dpif_flow_get(struct dpif *dpif,
977 const struct nlattr *key, size_t key_len, const ovs_u128 *ufid,
978 const unsigned pmd_id, struct ofpbuf *buf, struct dpif_flow *flow)
979 {
980 struct dpif_op *opp;
981 struct dpif_op op;
982
983 op.type = DPIF_OP_FLOW_GET;
984 op.u.flow_get.key = key;
985 op.u.flow_get.key_len = key_len;
986 op.u.flow_get.ufid = ufid;
987 op.u.flow_get.pmd_id = pmd_id;
988 op.u.flow_get.buffer = buf;
989
990 memset(flow, 0, sizeof *flow);
991 op.u.flow_get.flow = flow;
992 op.u.flow_get.flow->key = key;
993 op.u.flow_get.flow->key_len = key_len;
994
995 opp = &op;
996 dpif_operate(dpif, &opp, 1);
997
998 return op.error;
999 }
1000
1001 /* A dpif_operate() wrapper for performing a single DPIF_OP_FLOW_PUT. */
1002 int
1003 dpif_flow_put(struct dpif *dpif, enum dpif_flow_put_flags flags,
1004 const struct nlattr *key, size_t key_len,
1005 const struct nlattr *mask, size_t mask_len,
1006 const struct nlattr *actions, size_t actions_len,
1007 const ovs_u128 *ufid, const unsigned pmd_id,
1008 struct dpif_flow_stats *stats)
1009 {
1010 struct dpif_op *opp;
1011 struct dpif_op op;
1012
1013 op.type = DPIF_OP_FLOW_PUT;
1014 op.u.flow_put.flags = flags;
1015 op.u.flow_put.key = key;
1016 op.u.flow_put.key_len = key_len;
1017 op.u.flow_put.mask = mask;
1018 op.u.flow_put.mask_len = mask_len;
1019 op.u.flow_put.actions = actions;
1020 op.u.flow_put.actions_len = actions_len;
1021 op.u.flow_put.ufid = ufid;
1022 op.u.flow_put.pmd_id = pmd_id;
1023 op.u.flow_put.stats = stats;
1024
1025 opp = &op;
1026 dpif_operate(dpif, &opp, 1);
1027
1028 return op.error;
1029 }
1030
1031 /* A dpif_operate() wrapper for performing a single DPIF_OP_FLOW_DEL. */
1032 int
1033 dpif_flow_del(struct dpif *dpif,
1034 const struct nlattr *key, size_t key_len, const ovs_u128 *ufid,
1035 const unsigned pmd_id, struct dpif_flow_stats *stats)
1036 {
1037 struct dpif_op *opp;
1038 struct dpif_op op;
1039
1040 op.type = DPIF_OP_FLOW_DEL;
1041 op.u.flow_del.key = key;
1042 op.u.flow_del.key_len = key_len;
1043 op.u.flow_del.ufid = ufid;
1044 op.u.flow_del.pmd_id = pmd_id;
1045 op.u.flow_del.stats = stats;
1046 op.u.flow_del.terse = false;
1047
1048 opp = &op;
1049 dpif_operate(dpif, &opp, 1);
1050
1051 return op.error;
1052 }
1053
1054 /* Creates and returns a new 'struct dpif_flow_dump' for iterating through the
1055 * flows in 'dpif'. If 'terse' is true, then only UFID and statistics will
1056 * be returned in the dump. Otherwise, all fields will be returned.
1057 *
1058 * This function always successfully returns a dpif_flow_dump. Error
1059 * reporting is deferred to dpif_flow_dump_destroy(). */
1060 struct dpif_flow_dump *
1061 dpif_flow_dump_create(const struct dpif *dpif, bool terse, char *type)
1062 {
1063 return dpif->dpif_class->flow_dump_create(dpif, terse, type);
1064 }
1065
1066 /* Destroys 'dump', which must have been created with dpif_flow_dump_create().
1067 * All dpif_flow_dump_thread structures previously created for 'dump' must
1068 * previously have been destroyed.
1069 *
1070 * Returns 0 if the dump operation was error-free, otherwise a positive errno
1071 * value describing the problem. */
1072 int
1073 dpif_flow_dump_destroy(struct dpif_flow_dump *dump)
1074 {
1075 const struct dpif *dpif = dump->dpif;
1076 int error = dpif->dpif_class->flow_dump_destroy(dump);
1077 log_operation(dpif, "flow_dump_destroy", error);
1078 return error == EOF ? 0 : error;
1079 }
1080
1081 /* Returns new thread-local state for use with dpif_flow_dump_next(). */
1082 struct dpif_flow_dump_thread *
1083 dpif_flow_dump_thread_create(struct dpif_flow_dump *dump)
1084 {
1085 return dump->dpif->dpif_class->flow_dump_thread_create(dump);
1086 }
1087
1088 /* Releases 'thread'. */
1089 void
1090 dpif_flow_dump_thread_destroy(struct dpif_flow_dump_thread *thread)
1091 {
1092 thread->dpif->dpif_class->flow_dump_thread_destroy(thread);
1093 }
1094
1095 /* Attempts to retrieve up to 'max_flows' more flows from 'thread'. Returns 0
1096 * if and only if no flows remained to be retrieved, otherwise a positive
1097 * number reflecting the number of elements in 'flows[]' that were updated.
1098 * The number of flows returned might be less than 'max_flows' because
1099 * fewer than 'max_flows' remained, because this particular datapath does not
1100 * benefit from batching, or because an error occurred partway through
1101 * retrieval. Thus, the caller should continue calling until a 0 return value,
1102 * even if intermediate return values are less than 'max_flows'.
1103 *
1104 * No error status is immediately provided. An error status for the entire
1105 * dump operation is provided when it is completed by calling
1106 * dpif_flow_dump_destroy().
1107 *
1108 * All of the data stored into 'flows' is owned by the datapath, not by the
1109 * caller, and the caller must not modify or free it. The datapath guarantees
1110 * that it remains accessible and unchanged until the first of:
1111 * - The next call to dpif_flow_dump_next() for 'thread', or
1112 * - The next rcu quiescent period. */
1113 int
1114 dpif_flow_dump_next(struct dpif_flow_dump_thread *thread,
1115 struct dpif_flow *flows, int max_flows)
1116 {
1117 struct dpif *dpif = thread->dpif;
1118 int n;
1119
1120 ovs_assert(max_flows > 0);
1121 n = dpif->dpif_class->flow_dump_next(thread, flows, max_flows);
1122 if (n > 0) {
1123 struct dpif_flow *f;
1124
1125 for (f = flows; f < &flows[n]
1126 && should_log_flow_message(&this_module, 0); f++) {
1127 log_flow_message(dpif, 0, &this_module, "flow_dump",
1128 f->key, f->key_len, f->mask, f->mask_len,
1129 &f->ufid, &f->stats, f->actions, f->actions_len);
1130 }
1131 } else {
1132 VLOG_DBG_RL(&dpmsg_rl, "%s: dumped all flows", dpif_name(dpif));
1133 }
1134 return n;
1135 }
1136
1137 struct dpif_execute_helper_aux {
1138 struct dpif *dpif;
1139 const struct flow *flow;
1140 int error;
1141 const struct nlattr *meter_action; /* Non-NULL, if have a meter action. */
1142 };
1143
1144 /* This is called for actions that need the context of the datapath to be
1145 * meaningful. */
1146 static void
1147 dpif_execute_helper_cb(void *aux_, struct dp_packet_batch *packets_,
1148 const struct nlattr *action, bool may_steal)
1149 {
1150 struct dpif_execute_helper_aux *aux = aux_;
1151 int type = nl_attr_type(action);
1152 struct dp_packet *packet = packets_->packets[0];
1153
1154 ovs_assert(packets_->count == 1);
1155
1156 switch ((enum ovs_action_attr)type) {
1157 case OVS_ACTION_ATTR_METER:
1158 /* Maintain a pointer to the first meter action seen. */
1159 if (!aux->meter_action) {
1160 aux->meter_action = action;
1161 }
1162 break;
1163
1164 case OVS_ACTION_ATTR_CT:
1165 case OVS_ACTION_ATTR_OUTPUT:
1166 case OVS_ACTION_ATTR_TUNNEL_PUSH:
1167 case OVS_ACTION_ATTR_TUNNEL_POP:
1168 case OVS_ACTION_ATTR_USERSPACE:
1169 case OVS_ACTION_ATTR_RECIRC: {
1170 struct dpif_execute execute;
1171 struct ofpbuf execute_actions;
1172 uint64_t stub[256 / 8];
1173 struct pkt_metadata *md = &packet->md;
1174
1175 if (flow_tnl_dst_is_set(&md->tunnel) || aux->meter_action) {
1176 ofpbuf_use_stub(&execute_actions, stub, sizeof stub);
1177
1178 if (aux->meter_action) {
1179 const struct nlattr *a = aux->meter_action;
1180
1181 /* XXX: This code collects meter actions since the last action
1182 * execution via the datapath to be executed right before the
1183 * current action that needs to be executed by the datapath.
1184 * This is only an approximation, but better than nothing.
1185 * Fundamentally, we should have a mechanism by which the
1186 * datapath could return the result of the meter action so that
1187 * we could execute them at the right order. */
1188 do {
1189 ofpbuf_put(&execute_actions, a, NLA_ALIGN(a->nla_len));
1190 /* Find next meter action before 'action', if any. */
1191 do {
1192 a = nl_attr_next(a);
1193 } while (a != action &&
1194 nl_attr_type(a) != OVS_ACTION_ATTR_METER);
1195 } while (a != action);
1196 }
1197
1198 /* The Linux kernel datapath throws away the tunnel information
1199 * that we supply as metadata. We have to use a "set" action to
1200 * supply it. */
1201 if (md->tunnel.ip_dst) {
1202 odp_put_tunnel_action(&md->tunnel, &execute_actions);
1203 }
1204 ofpbuf_put(&execute_actions, action, NLA_ALIGN(action->nla_len));
1205
1206 execute.actions = execute_actions.data;
1207 execute.actions_len = execute_actions.size;
1208 } else {
1209 execute.actions = action;
1210 execute.actions_len = NLA_ALIGN(action->nla_len);
1211 }
1212
1213 struct dp_packet *clone = NULL;
1214 uint32_t cutlen = dp_packet_get_cutlen(packet);
1215 if (cutlen && (type == OVS_ACTION_ATTR_OUTPUT
1216 || type == OVS_ACTION_ATTR_TUNNEL_PUSH
1217 || type == OVS_ACTION_ATTR_TUNNEL_POP
1218 || type == OVS_ACTION_ATTR_USERSPACE)) {
1219 dp_packet_reset_cutlen(packet);
1220 if (!may_steal) {
1221 packet = clone = dp_packet_clone(packet);
1222 }
1223 dp_packet_set_size(packet, dp_packet_size(packet) - cutlen);
1224 }
1225
1226 execute.packet = packet;
1227 execute.flow = aux->flow;
1228 execute.needs_help = false;
1229 execute.probe = false;
1230 execute.mtu = 0;
1231 aux->error = dpif_execute(aux->dpif, &execute);
1232 log_execute_message(aux->dpif, &this_module, &execute,
1233 true, aux->error);
1234
1235 dp_packet_delete(clone);
1236
1237 if (flow_tnl_dst_is_set(&md->tunnel) || aux->meter_action) {
1238 ofpbuf_uninit(&execute_actions);
1239
1240 /* Do not re-use the same meters for later output actions. */
1241 aux->meter_action = NULL;
1242 }
1243 break;
1244 }
1245
1246 case OVS_ACTION_ATTR_HASH:
1247 case OVS_ACTION_ATTR_PUSH_VLAN:
1248 case OVS_ACTION_ATTR_POP_VLAN:
1249 case OVS_ACTION_ATTR_PUSH_MPLS:
1250 case OVS_ACTION_ATTR_POP_MPLS:
1251 case OVS_ACTION_ATTR_SET:
1252 case OVS_ACTION_ATTR_SET_MASKED:
1253 case OVS_ACTION_ATTR_SAMPLE:
1254 case OVS_ACTION_ATTR_TRUNC:
1255 case OVS_ACTION_ATTR_PUSH_ETH:
1256 case OVS_ACTION_ATTR_POP_ETH:
1257 case OVS_ACTION_ATTR_CLONE:
1258 case OVS_ACTION_ATTR_ENCAP_NSH:
1259 case OVS_ACTION_ATTR_DECAP_NSH:
1260 case OVS_ACTION_ATTR_UNSPEC:
1261 case __OVS_ACTION_ATTR_MAX:
1262 OVS_NOT_REACHED();
1263 }
1264 }
1265
1266 /* Executes 'execute' by performing most of the actions in userspace and
1267 * passing the fully constructed packets to 'dpif' for output and userspace
1268 * actions.
1269 *
1270 * This helps with actions that a given 'dpif' doesn't implement directly. */
1271 static int
1272 dpif_execute_with_help(struct dpif *dpif, struct dpif_execute *execute)
1273 {
1274 struct dpif_execute_helper_aux aux = {dpif, execute->flow, 0, NULL};
1275 struct dp_packet_batch pb;
1276
1277 COVERAGE_INC(dpif_execute_with_help);
1278
1279 dp_packet_batch_init_packet(&pb, execute->packet);
1280 odp_execute_actions(&aux, &pb, false, execute->actions,
1281 execute->actions_len, dpif_execute_helper_cb);
1282 return aux.error;
1283 }
1284
1285 /* Returns true if the datapath needs help executing 'execute'. */
1286 static bool
1287 dpif_execute_needs_help(const struct dpif_execute *execute)
1288 {
1289 return execute->needs_help || nl_attr_oversized(execute->actions_len);
1290 }
1291
1292 /* A dpif_operate() wrapper for performing a single DPIF_OP_EXECUTE. */
1293 int
1294 dpif_execute(struct dpif *dpif, struct dpif_execute *execute)
1295 {
1296 if (execute->actions_len) {
1297 struct dpif_op *opp;
1298 struct dpif_op op;
1299
1300 op.type = DPIF_OP_EXECUTE;
1301 op.u.execute = *execute;
1302
1303 opp = &op;
1304 dpif_operate(dpif, &opp, 1);
1305
1306 return op.error;
1307 } else {
1308 return 0;
1309 }
1310 }
1311
1312 /* Executes each of the 'n_ops' operations in 'ops' on 'dpif', in the order in
1313 * which they are specified. Places each operation's results in the "output"
1314 * members documented in comments, and 0 in the 'error' member on success or a
1315 * positive errno on failure. */
1316 void
1317 dpif_operate(struct dpif *dpif, struct dpif_op **ops, size_t n_ops)
1318 {
1319 while (n_ops > 0) {
1320 size_t chunk;
1321
1322 /* Count 'chunk', the number of ops that can be executed without
1323 * needing any help. Ops that need help should be rare, so we
1324 * expect this to ordinarily be 'n_ops', that is, all the ops. */
1325 for (chunk = 0; chunk < n_ops; chunk++) {
1326 struct dpif_op *op = ops[chunk];
1327
1328 if (op->type == DPIF_OP_EXECUTE
1329 && dpif_execute_needs_help(&op->u.execute)) {
1330 break;
1331 }
1332 }
1333
1334 if (chunk) {
1335 /* Execute a chunk full of ops that the dpif provider can
1336 * handle itself, without help. */
1337 size_t i;
1338
1339 dpif->dpif_class->operate(dpif, ops, chunk);
1340
1341 for (i = 0; i < chunk; i++) {
1342 struct dpif_op *op = ops[i];
1343 int error = op->error;
1344
1345 switch (op->type) {
1346 case DPIF_OP_FLOW_PUT: {
1347 struct dpif_flow_put *put = &op->u.flow_put;
1348
1349 COVERAGE_INC(dpif_flow_put);
1350 log_flow_put_message(dpif, &this_module, put, error);
1351 if (error && put->stats) {
1352 memset(put->stats, 0, sizeof *put->stats);
1353 }
1354 break;
1355 }
1356
1357 case DPIF_OP_FLOW_GET: {
1358 struct dpif_flow_get *get = &op->u.flow_get;
1359
1360 COVERAGE_INC(dpif_flow_get);
1361 if (error) {
1362 memset(get->flow, 0, sizeof *get->flow);
1363 }
1364 log_flow_get_message(dpif, &this_module, get, error);
1365
1366 break;
1367 }
1368
1369 case DPIF_OP_FLOW_DEL: {
1370 struct dpif_flow_del *del = &op->u.flow_del;
1371
1372 COVERAGE_INC(dpif_flow_del);
1373 log_flow_del_message(dpif, &this_module, del, error);
1374 if (error && del->stats) {
1375 memset(del->stats, 0, sizeof *del->stats);
1376 }
1377 break;
1378 }
1379
1380 case DPIF_OP_EXECUTE:
1381 COVERAGE_INC(dpif_execute);
1382 log_execute_message(dpif, &this_module, &op->u.execute,
1383 false, error);
1384 break;
1385 }
1386 }
1387
1388 ops += chunk;
1389 n_ops -= chunk;
1390 } else {
1391 /* Help the dpif provider to execute one op. */
1392 struct dpif_op *op = ops[0];
1393
1394 COVERAGE_INC(dpif_execute);
1395 op->error = dpif_execute_with_help(dpif, &op->u.execute);
1396 ops++;
1397 n_ops--;
1398 }
1399 }
1400 }
1401
1402 /* Returns a string that represents 'type', for use in log messages. */
1403 const char *
1404 dpif_upcall_type_to_string(enum dpif_upcall_type type)
1405 {
1406 switch (type) {
1407 case DPIF_UC_MISS: return "miss";
1408 case DPIF_UC_ACTION: return "action";
1409 case DPIF_N_UC_TYPES: default: return "<unknown>";
1410 }
1411 }
1412
1413 /* Enables or disables receiving packets with dpif_recv() on 'dpif'. Returns 0
1414 * if successful, otherwise a positive errno value.
1415 *
1416 * Turning packet receive off and then back on may change the Netlink PID
1417 * assignments returned by dpif_port_get_pid(). If the client does this, it
1418 * must update all of the flows that have OVS_ACTION_ATTR_USERSPACE actions
1419 * using the new PID assignment. */
1420 int
1421 dpif_recv_set(struct dpif *dpif, bool enable)
1422 {
1423 int error = 0;
1424
1425 if (dpif->dpif_class->recv_set) {
1426 error = dpif->dpif_class->recv_set(dpif, enable);
1427 log_operation(dpif, "recv_set", error);
1428 }
1429 return error;
1430 }
1431
1432 /* Refreshes the poll loops and Netlink sockets associated to each port,
1433 * when the number of upcall handlers (upcall receiving thread) is changed
1434 * to 'n_handlers' and receiving packets for 'dpif' is enabled by
1435 * recv_set().
1436 *
1437 * Since multiple upcall handlers can read upcalls simultaneously from
1438 * 'dpif', each port can have multiple Netlink sockets, one per upcall
1439 * handler. So, handlers_set() is responsible for the following tasks:
1440 *
1441 * When receiving upcall is enabled, extends or creates the
1442 * configuration to support:
1443 *
1444 * - 'n_handlers' Netlink sockets for each port.
1445 *
1446 * - 'n_handlers' poll loops, one for each upcall handler.
1447 *
1448 * - registering the Netlink sockets for the same upcall handler to
1449 * the corresponding poll loop.
1450 *
1451 * Returns 0 if successful, otherwise a positive errno value. */
1452 int
1453 dpif_handlers_set(struct dpif *dpif, uint32_t n_handlers)
1454 {
1455 int error = 0;
1456
1457 if (dpif->dpif_class->handlers_set) {
1458 error = dpif->dpif_class->handlers_set(dpif, n_handlers);
1459 log_operation(dpif, "handlers_set", error);
1460 }
1461 return error;
1462 }
1463
1464 void
1465 dpif_register_dp_purge_cb(struct dpif *dpif, dp_purge_callback *cb, void *aux)
1466 {
1467 if (dpif->dpif_class->register_dp_purge_cb) {
1468 dpif->dpif_class->register_dp_purge_cb(dpif, cb, aux);
1469 }
1470 }
1471
1472 void
1473 dpif_register_upcall_cb(struct dpif *dpif, upcall_callback *cb, void *aux)
1474 {
1475 if (dpif->dpif_class->register_upcall_cb) {
1476 dpif->dpif_class->register_upcall_cb(dpif, cb, aux);
1477 }
1478 }
1479
1480 void
1481 dpif_enable_upcall(struct dpif *dpif)
1482 {
1483 if (dpif->dpif_class->enable_upcall) {
1484 dpif->dpif_class->enable_upcall(dpif);
1485 }
1486 }
1487
1488 void
1489 dpif_disable_upcall(struct dpif *dpif)
1490 {
1491 if (dpif->dpif_class->disable_upcall) {
1492 dpif->dpif_class->disable_upcall(dpif);
1493 }
1494 }
1495
1496 void
1497 dpif_print_packet(struct dpif *dpif, struct dpif_upcall *upcall)
1498 {
1499 if (!VLOG_DROP_DBG(&dpmsg_rl)) {
1500 struct ds flow;
1501 char *packet;
1502
1503 packet = ofp_dp_packet_to_string(&upcall->packet);
1504
1505 ds_init(&flow);
1506 odp_flow_key_format(upcall->key, upcall->key_len, &flow);
1507
1508 VLOG_DBG("%s: %s upcall:\n%s\n%s",
1509 dpif_name(dpif), dpif_upcall_type_to_string(upcall->type),
1510 ds_cstr(&flow), packet);
1511
1512 ds_destroy(&flow);
1513 free(packet);
1514 }
1515 }
1516
1517 /* Pass custom configuration to the datapath implementation. Some of the
1518 * changes can be postponed until dpif_run() is called. */
1519 int
1520 dpif_set_config(struct dpif *dpif, const struct smap *cfg)
1521 {
1522 int error = 0;
1523
1524 if (dpif->dpif_class->set_config) {
1525 error = dpif->dpif_class->set_config(dpif, cfg);
1526 if (error) {
1527 log_operation(dpif, "set_config", error);
1528 }
1529 }
1530
1531 return error;
1532 }
1533
1534 /* Polls for an upcall from 'dpif' for an upcall handler. Since there
1535 * there can be multiple poll loops, 'handler_id' is needed as index to
1536 * identify the corresponding poll loop. If successful, stores the upcall
1537 * into '*upcall', using 'buf' for storage. Should only be called if
1538 * 'recv_set' has been used to enable receiving packets from 'dpif'.
1539 *
1540 * 'upcall->key' and 'upcall->userdata' point into data in the caller-provided
1541 * 'buf', so their memory cannot be freed separately from 'buf'.
1542 *
1543 * The caller owns the data of 'upcall->packet' and may modify it. If
1544 * packet's headroom is exhausted as it is manipulated, 'upcall->packet'
1545 * will be reallocated. This requires the data of 'upcall->packet' to be
1546 * released with ofpbuf_uninit() before 'upcall' is destroyed. However,
1547 * when an error is returned, the 'upcall->packet' may be uninitialized
1548 * and should not be released.
1549 *
1550 * Returns 0 if successful, otherwise a positive errno value. Returns EAGAIN
1551 * if no upcall is immediately available. */
1552 int
1553 dpif_recv(struct dpif *dpif, uint32_t handler_id, struct dpif_upcall *upcall,
1554 struct ofpbuf *buf)
1555 {
1556 int error = EAGAIN;
1557
1558 if (dpif->dpif_class->recv) {
1559 error = dpif->dpif_class->recv(dpif, handler_id, upcall, buf);
1560 if (!error) {
1561 dpif_print_packet(dpif, upcall);
1562 } else if (error != EAGAIN) {
1563 log_operation(dpif, "recv", error);
1564 }
1565 }
1566 return error;
1567 }
1568
1569 /* Discards all messages that would otherwise be received by dpif_recv() on
1570 * 'dpif'. */
1571 void
1572 dpif_recv_purge(struct dpif *dpif)
1573 {
1574 COVERAGE_INC(dpif_purge);
1575 if (dpif->dpif_class->recv_purge) {
1576 dpif->dpif_class->recv_purge(dpif);
1577 }
1578 }
1579
1580 /* Arranges for the poll loop for an upcall handler to wake up when 'dpif'
1581 * 'dpif' has a message queued to be received with the recv member
1582 * function. Since there can be multiple poll loops, 'handler_id' is
1583 * needed as index to identify the corresponding poll loop. */
1584 void
1585 dpif_recv_wait(struct dpif *dpif, uint32_t handler_id)
1586 {
1587 if (dpif->dpif_class->recv_wait) {
1588 dpif->dpif_class->recv_wait(dpif, handler_id);
1589 }
1590 }
1591
1592 /*
1593 * Return the datapath version. Caller is responsible for freeing
1594 * the string.
1595 */
1596 char *
1597 dpif_get_dp_version(const struct dpif *dpif)
1598 {
1599 char *version = NULL;
1600
1601 if (dpif->dpif_class->get_datapath_version) {
1602 version = dpif->dpif_class->get_datapath_version();
1603 }
1604
1605 return version;
1606 }
1607
1608 /* Obtains the NetFlow engine type and engine ID for 'dpif' into '*engine_type'
1609 * and '*engine_id', respectively. */
1610 void
1611 dpif_get_netflow_ids(const struct dpif *dpif,
1612 uint8_t *engine_type, uint8_t *engine_id)
1613 {
1614 *engine_type = dpif->netflow_engine_type;
1615 *engine_id = dpif->netflow_engine_id;
1616 }
1617
1618 /* Translates OpenFlow queue ID 'queue_id' (in host byte order) into a priority
1619 * value used for setting packet priority.
1620 * On success, returns 0 and stores the priority into '*priority'.
1621 * On failure, returns a positive errno value and stores 0 into '*priority'. */
1622 int
1623 dpif_queue_to_priority(const struct dpif *dpif, uint32_t queue_id,
1624 uint32_t *priority)
1625 {
1626 int error = (dpif->dpif_class->queue_to_priority
1627 ? dpif->dpif_class->queue_to_priority(dpif, queue_id,
1628 priority)
1629 : EOPNOTSUPP);
1630 if (error) {
1631 *priority = 0;
1632 }
1633 log_operation(dpif, "queue_to_priority", error);
1634 return error;
1635 }
1636 \f
1637 void
1638 dpif_init(struct dpif *dpif, const struct dpif_class *dpif_class,
1639 const char *name,
1640 uint8_t netflow_engine_type, uint8_t netflow_engine_id)
1641 {
1642 dpif->dpif_class = dpif_class;
1643 dpif->base_name = xstrdup(name);
1644 dpif->full_name = xasprintf("%s@%s", dpif_class->type, name);
1645 dpif->netflow_engine_type = netflow_engine_type;
1646 dpif->netflow_engine_id = netflow_engine_id;
1647 }
1648
1649 /* Undoes the results of initialization.
1650 *
1651 * Normally this function only needs to be called from dpif_close().
1652 * However, it may be called by providers due to an error on opening
1653 * that occurs after initialization. It this case dpif_close() would
1654 * never be called. */
1655 void
1656 dpif_uninit(struct dpif *dpif, bool close)
1657 {
1658 char *base_name = dpif->base_name;
1659 char *full_name = dpif->full_name;
1660
1661 if (close) {
1662 dpif->dpif_class->close(dpif);
1663 }
1664
1665 free(base_name);
1666 free(full_name);
1667 }
1668 \f
1669 static void
1670 log_operation(const struct dpif *dpif, const char *operation, int error)
1671 {
1672 if (!error) {
1673 VLOG_DBG_RL(&dpmsg_rl, "%s: %s success", dpif_name(dpif), operation);
1674 } else if (ofperr_is_valid(error)) {
1675 VLOG_WARN_RL(&error_rl, "%s: %s failed (%s)",
1676 dpif_name(dpif), operation, ofperr_get_name(error));
1677 } else {
1678 VLOG_WARN_RL(&error_rl, "%s: %s failed (%s)",
1679 dpif_name(dpif), operation, ovs_strerror(error));
1680 }
1681 }
1682
1683 static enum vlog_level
1684 flow_message_log_level(int error)
1685 {
1686 /* If flows arrive in a batch, userspace may push down multiple
1687 * unique flow definitions that overlap when wildcards are applied.
1688 * Kernels that support flow wildcarding will reject these flows as
1689 * duplicates (EEXIST), so lower the log level to debug for these
1690 * types of messages. */
1691 return (error && error != EEXIST) ? VLL_WARN : VLL_DBG;
1692 }
1693
1694 static bool
1695 should_log_flow_message(const struct vlog_module *module, int error)
1696 {
1697 return !vlog_should_drop(module, flow_message_log_level(error),
1698 error ? &error_rl : &dpmsg_rl);
1699 }
1700
1701 void
1702 log_flow_message(const struct dpif *dpif, int error,
1703 const struct vlog_module *module,
1704 const char *operation,
1705 const struct nlattr *key, size_t key_len,
1706 const struct nlattr *mask, size_t mask_len,
1707 const ovs_u128 *ufid, const struct dpif_flow_stats *stats,
1708 const struct nlattr *actions, size_t actions_len)
1709 {
1710 struct ds ds = DS_EMPTY_INITIALIZER;
1711 ds_put_format(&ds, "%s: ", dpif_name(dpif));
1712 if (error) {
1713 ds_put_cstr(&ds, "failed to ");
1714 }
1715 ds_put_format(&ds, "%s ", operation);
1716 if (error) {
1717 ds_put_format(&ds, "(%s) ", ovs_strerror(error));
1718 }
1719 if (ufid) {
1720 odp_format_ufid(ufid, &ds);
1721 ds_put_cstr(&ds, " ");
1722 }
1723 odp_flow_format(key, key_len, mask, mask_len, NULL, &ds, true);
1724 if (stats) {
1725 ds_put_cstr(&ds, ", ");
1726 dpif_flow_stats_format(stats, &ds);
1727 }
1728 if (actions || actions_len) {
1729 ds_put_cstr(&ds, ", actions:");
1730 format_odp_actions(&ds, actions, actions_len, NULL);
1731 }
1732 vlog(module, flow_message_log_level(error), "%s", ds_cstr(&ds));
1733 ds_destroy(&ds);
1734 }
1735
1736 void
1737 log_flow_put_message(const struct dpif *dpif,
1738 const struct vlog_module *module,
1739 const struct dpif_flow_put *put,
1740 int error)
1741 {
1742 if (should_log_flow_message(module, error)
1743 && !(put->flags & DPIF_FP_PROBE)) {
1744 struct ds s;
1745
1746 ds_init(&s);
1747 ds_put_cstr(&s, "put");
1748 if (put->flags & DPIF_FP_CREATE) {
1749 ds_put_cstr(&s, "[create]");
1750 }
1751 if (put->flags & DPIF_FP_MODIFY) {
1752 ds_put_cstr(&s, "[modify]");
1753 }
1754 if (put->flags & DPIF_FP_ZERO_STATS) {
1755 ds_put_cstr(&s, "[zero]");
1756 }
1757 log_flow_message(dpif, error, module, ds_cstr(&s),
1758 put->key, put->key_len, put->mask, put->mask_len,
1759 put->ufid, put->stats, put->actions,
1760 put->actions_len);
1761 ds_destroy(&s);
1762 }
1763 }
1764
1765 void
1766 log_flow_del_message(const struct dpif *dpif,
1767 const struct vlog_module *module,
1768 const struct dpif_flow_del *del,
1769 int error)
1770 {
1771 if (should_log_flow_message(module, error)) {
1772 log_flow_message(dpif, error, module, "flow_del",
1773 del->key, del->key_len,
1774 NULL, 0, del->ufid, !error ? del->stats : NULL,
1775 NULL, 0);
1776 }
1777 }
1778
1779 /* Logs that 'execute' was executed on 'dpif' and completed with errno 'error'
1780 * (0 for success). 'subexecute' should be true if the execution is a result
1781 * of breaking down a larger execution that needed help, false otherwise.
1782 *
1783 *
1784 * XXX In theory, the log message could be deceptive because this function is
1785 * called after the dpif_provider's '->execute' function, which is allowed to
1786 * modify execute->packet and execute->md. In practice, though:
1787 *
1788 * - dpif-netlink doesn't modify execute->packet or execute->md.
1789 *
1790 * - dpif-netdev does modify them but it is less likely to have problems
1791 * because it is built into ovs-vswitchd and cannot have version skew,
1792 * etc.
1793 *
1794 * It would still be better to avoid the potential problem. I don't know of a
1795 * good way to do that, though, that isn't expensive. */
1796 void
1797 log_execute_message(const struct dpif *dpif,
1798 const struct vlog_module *module,
1799 const struct dpif_execute *execute,
1800 bool subexecute, int error)
1801 {
1802 if (!(error ? VLOG_DROP_WARN(&error_rl) : VLOG_DROP_DBG(&dpmsg_rl))
1803 && !execute->probe) {
1804 struct ds ds = DS_EMPTY_INITIALIZER;
1805 char *packet;
1806 uint64_t stub[1024 / 8];
1807 struct ofpbuf md = OFPBUF_STUB_INITIALIZER(stub);
1808
1809 packet = ofp_packet_to_string(dp_packet_data(execute->packet),
1810 dp_packet_size(execute->packet),
1811 execute->packet->packet_type);
1812 odp_key_from_dp_packet(&md, execute->packet);
1813 ds_put_format(&ds, "%s: %sexecute ",
1814 dpif_name(dpif),
1815 (subexecute ? "sub-"
1816 : dpif_execute_needs_help(execute) ? "super-"
1817 : ""));
1818 format_odp_actions(&ds, execute->actions, execute->actions_len, NULL);
1819 if (error) {
1820 ds_put_format(&ds, " failed (%s)", ovs_strerror(error));
1821 }
1822 ds_put_format(&ds, " on packet %s", packet);
1823 ds_put_format(&ds, " with metadata ");
1824 odp_flow_format(md.data, md.size, NULL, 0, NULL, &ds, true);
1825 ds_put_format(&ds, " mtu %d", execute->mtu);
1826 vlog(module, error ? VLL_WARN : VLL_DBG, "%s", ds_cstr(&ds));
1827 ds_destroy(&ds);
1828 free(packet);
1829 ofpbuf_uninit(&md);
1830 }
1831 }
1832
1833 void
1834 log_flow_get_message(const struct dpif *dpif,
1835 const struct vlog_module *module,
1836 const struct dpif_flow_get *get,
1837 int error)
1838 {
1839 if (should_log_flow_message(module, error)) {
1840 log_flow_message(dpif, error, module, "flow_get",
1841 get->key, get->key_len,
1842 get->flow->mask, get->flow->mask_len,
1843 get->ufid, &get->flow->stats,
1844 get->flow->actions, get->flow->actions_len);
1845 }
1846 }
1847
1848 bool
1849 dpif_supports_tnl_push_pop(const struct dpif *dpif)
1850 {
1851 return dpif_is_netdev(dpif);
1852 }
1853
1854 /* Meters */
1855 void
1856 dpif_meter_get_features(const struct dpif *dpif,
1857 struct ofputil_meter_features *features)
1858 {
1859 memset(features, 0, sizeof *features);
1860 if (dpif->dpif_class->meter_get_features) {
1861 dpif->dpif_class->meter_get_features(dpif, features);
1862 }
1863 }
1864
1865 /* Adds or modifies meter identified by 'meter_id' in 'dpif'. If '*meter_id'
1866 * is UINT32_MAX, adds a new meter, otherwise modifies an existing meter.
1867 *
1868 * If meter is successfully added, sets '*meter_id' to the new meter's
1869 * meter number. */
1870 int
1871 dpif_meter_set(struct dpif *dpif, ofproto_meter_id *meter_id,
1872 struct ofputil_meter_config *config)
1873 {
1874 int error;
1875
1876 COVERAGE_INC(dpif_meter_set);
1877
1878 error = dpif->dpif_class->meter_set(dpif, meter_id, config);
1879 if (!error) {
1880 VLOG_DBG_RL(&dpmsg_rl, "%s: DPIF meter %"PRIu32" set",
1881 dpif_name(dpif), meter_id->uint32);
1882 } else {
1883 VLOG_WARN_RL(&error_rl, "%s: failed to set DPIF meter %"PRIu32": %s",
1884 dpif_name(dpif), meter_id->uint32, ovs_strerror(error));
1885 meter_id->uint32 = UINT32_MAX;
1886 }
1887 return error;
1888 }
1889
1890 int
1891 dpif_meter_get(const struct dpif *dpif, ofproto_meter_id meter_id,
1892 struct ofputil_meter_stats *stats, uint16_t n_bands)
1893 {
1894 int error;
1895
1896 COVERAGE_INC(dpif_meter_get);
1897
1898 error = dpif->dpif_class->meter_get(dpif, meter_id, stats, n_bands);
1899 if (!error) {
1900 VLOG_DBG_RL(&dpmsg_rl, "%s: DPIF meter %"PRIu32" get stats",
1901 dpif_name(dpif), meter_id.uint32);
1902 } else {
1903 VLOG_WARN_RL(&error_rl,
1904 "%s: failed to get DPIF meter %"PRIu32" stats: %s",
1905 dpif_name(dpif), meter_id.uint32, ovs_strerror(error));
1906 stats->packet_in_count = ~0;
1907 stats->byte_in_count = ~0;
1908 stats->n_bands = 0;
1909 }
1910 return error;
1911 }
1912
1913 int
1914 dpif_meter_del(struct dpif *dpif, ofproto_meter_id meter_id,
1915 struct ofputil_meter_stats *stats, uint16_t n_bands)
1916 {
1917 int error;
1918
1919 COVERAGE_INC(dpif_meter_del);
1920
1921 error = dpif->dpif_class->meter_del(dpif, meter_id, stats, n_bands);
1922 if (!error) {
1923 VLOG_DBG_RL(&dpmsg_rl, "%s: DPIF meter %"PRIu32" deleted",
1924 dpif_name(dpif), meter_id.uint32);
1925 } else {
1926 VLOG_WARN_RL(&error_rl,
1927 "%s: failed to delete DPIF meter %"PRIu32": %s",
1928 dpif_name(dpif), meter_id.uint32, ovs_strerror(error));
1929 if (stats) {
1930 stats->packet_in_count = ~0;
1931 stats->byte_in_count = ~0;
1932 stats->n_bands = 0;
1933 }
1934 }
1935 return error;
1936 }