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