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