]> git.proxmox.com Git - mirror_ovs.git/blame - lib/netdev.c
vtep: Limit the split elements to 2 (maxsplit + 1)
[mirror_ovs.git] / lib / netdev.c
CommitLineData
064af421 1/*
da695497 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>
18#include "netdev.h"
19
064af421 20#include <errno.h>
064af421 21#include <inttypes.h>
064af421
BP
22#include <netinet/in.h>
23#include <stdlib.h>
24#include <string.h>
25#include <unistd.h>
26
27#include "coverage.h"
94a53842 28#include "dpif.h"
064af421
BP
29#include "dynamic-string.h"
30#include "fatal-signal.h"
149f577a 31#include "hash.h"
064af421 32#include "list.h"
8a9562d2 33#include "netdev-dpdk.h"
8b61709d 34#include "netdev-provider.h"
2b9d6589 35#include "netdev-vport.h"
064af421 36#include "ofpbuf.h"
622ee2cf 37#include "openflow/openflow.h"
064af421
BP
38#include "packets.h"
39#include "poll-loop.h"
a36de779 40#include "seq.h"
e9e28be3 41#include "shash.h"
79f1cbe9 42#include "smap.h"
b3c01ed3 43#include "sset.h"
064af421 44#include "svec.h"
e6211adc 45#include "openvswitch/vlog.h"
064af421 46
d98e6007 47VLOG_DEFINE_THIS_MODULE(netdev);
5136ce49 48
d76f09ea
BP
49COVERAGE_DEFINE(netdev_received);
50COVERAGE_DEFINE(netdev_sent);
51COVERAGE_DEFINE(netdev_add_router);
52COVERAGE_DEFINE(netdev_get_stats);
53
4b609110 54struct netdev_saved_flags {
b5d57fc8 55 struct netdev *netdev;
ca6ba700 56 struct ovs_list node; /* In struct netdev's saved_flags_list. */
4b609110
BP
57 enum netdev_flags saved_flags;
58 enum netdev_flags saved_values;
59};
60
86383816
BP
61/* Protects 'netdev_shash' and the mutable members of struct netdev. */
62static struct ovs_mutex netdev_mutex = OVS_MUTEX_INITIALIZER;
064af421 63
6c88d577 64/* All created network devices. */
86383816
BP
65static struct shash netdev_shash OVS_GUARDED_BY(netdev_mutex)
66 = SHASH_INITIALIZER(&netdev_shash);
67
68/* Protects 'netdev_classes' against insertions or deletions.
69 *
da695497
BP
70 * This is a recursive mutex to allow recursive acquisition when calling into
71 * providers. For example, netdev_run() calls into provider 'run' functions,
72 * which might reasonably want to call one of the netdev functions that takes
73 * netdev_class_mutex. */
74static struct ovs_mutex netdev_class_mutex OVS_ACQ_BEFORE(netdev_mutex);
86383816
BP
75
76/* Contains 'struct netdev_registered_class'es. */
da695497 77static struct hmap netdev_classes OVS_GUARDED_BY(netdev_class_mutex)
86383816
BP
78 = HMAP_INITIALIZER(&netdev_classes);
79
80struct netdev_registered_class {
fd0318be
JR
81 /* In 'netdev_classes', by class->type. */
82 struct hmap_node hmap_node OVS_GUARDED_BY(netdev_class_mutex);
83 const struct netdev_class *class OVS_GUARDED_BY(netdev_class_mutex);
84 /* Number of 'struct netdev's of this class. */
85 int ref_cnt OVS_GUARDED_BY(netdev_class_mutex);
86383816 86};
064af421 87
064af421
BP
88/* This is set pretty low because we probably won't learn anything from the
89 * additional log messages. */
90static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
91
4b609110 92static void restore_all_flags(void *aux OVS_UNUSED);
b5d57fc8 93void update_device_args(struct netdev *, const struct shash *args);
8b61709d 94
f00fa8cb
AW
95int
96netdev_n_txq(const struct netdev *netdev)
97{
98 return netdev->n_txq;
99}
100
55c955bd
PS
101int
102netdev_n_rxq(const struct netdev *netdev)
103{
104 return netdev->n_rxq;
105}
106
e4cfed38
PS
107bool
108netdev_is_pmd(const struct netdev *netdev)
109{
95fb793a 110 return (!strcmp(netdev->netdev_class->type, "dpdk") ||
111 !strcmp(netdev->netdev_class->type, "dpdkr"));
e4cfed38
PS
112}
113
77909859 114static void
a4fdb0f3 115netdev_class_mutex_initialize(void)
da695497 116 OVS_EXCLUDED(netdev_class_mutex, netdev_mutex)
064af421 117{
86383816 118 static struct ovsthread_once once = OVSTHREAD_ONCE_INITIALIZER;
8b61709d 119
86383816 120 if (ovsthread_once_start(&once)) {
da695497 121 ovs_mutex_init_recursive(&netdev_class_mutex);
a4fdb0f3
GS
122 ovsthread_once_done(&once);
123 }
124}
125
126static void
127netdev_initialize(void)
128 OVS_EXCLUDED(netdev_class_mutex, netdev_mutex)
129{
130 static struct ovsthread_once once = OVSTHREAD_ONCE_INITIALIZER;
131
132 if (ovsthread_once_start(&once)) {
133 netdev_class_mutex_initialize();
da695497 134
4b609110 135 fatal_signal_add_hook(restore_all_flags, NULL, NULL, true);
c060c4cf 136 netdev_vport_patch_register();
064af421 137
2f51a7eb 138#ifdef __linux__
2b9d6589 139 netdev_register_provider(&netdev_linux_class);
c3827f61 140 netdev_register_provider(&netdev_internal_class);
2b9d6589 141 netdev_register_provider(&netdev_tap_class);
c060c4cf 142 netdev_vport_tunnel_register();
f6eb6b20 143#endif
666afb55 144#if defined(__FreeBSD__) || defined(__NetBSD__)
f6eb6b20
GL
145 netdev_register_provider(&netdev_tap_class);
146 netdev_register_provider(&netdev_bsd_class);
078eedf4
NR
147#endif
148#ifdef _WIN32
149 netdev_register_provider(&netdev_windows_class);
150 netdev_register_provider(&netdev_internal_class);
151 netdev_vport_tunnel_register();
2b9d6589 152#endif
8a9562d2 153 netdev_dpdk_register();
86383816
BP
154
155 ovsthread_once_done(&once);
064af421 156 }
064af421
BP
157}
158
8b61709d
BP
159/* Performs periodic work needed by all the various kinds of netdevs.
160 *
161 * If your program opens any netdevs, it must call this function within its
162 * main poll loop. */
163void
164netdev_run(void)
da695497 165 OVS_EXCLUDED(netdev_class_mutex, netdev_mutex)
064af421 166{
86383816
BP
167 struct netdev_registered_class *rc;
168
aaea735b 169 netdev_initialize();
da695497 170 ovs_mutex_lock(&netdev_class_mutex);
86383816 171 HMAP_FOR_EACH (rc, hmap_node, &netdev_classes) {
3fd6ef29
EJ
172 if (rc->class->run) {
173 rc->class->run();
174 }
064af421 175 }
da695497 176 ovs_mutex_unlock(&netdev_class_mutex);
064af421
BP
177}
178
8b61709d
BP
179/* Arranges for poll_block() to wake up when netdev_run() needs to be called.
180 *
181 * If your program opens any netdevs, it must call this function within its
182 * main poll loop. */
183void
184netdev_wait(void)
da695497 185 OVS_EXCLUDED(netdev_class_mutex, netdev_mutex)
064af421 186{
86383816
BP
187 struct netdev_registered_class *rc;
188
da695497 189 ovs_mutex_lock(&netdev_class_mutex);
86383816 190 HMAP_FOR_EACH (rc, hmap_node, &netdev_classes) {
3fd6ef29
EJ
191 if (rc->class->wait) {
192 rc->class->wait();
193 }
86383816 194 }
da695497 195 ovs_mutex_unlock(&netdev_class_mutex);
86383816
BP
196}
197
198static struct netdev_registered_class *
199netdev_lookup_class(const char *type)
da695497 200 OVS_REQ_RDLOCK(netdev_class_mutex)
86383816
BP
201{
202 struct netdev_registered_class *rc;
203
204 HMAP_FOR_EACH_WITH_HASH (rc, hmap_node, hash_string(type, 0),
205 &netdev_classes) {
206 if (!strcmp(type, rc->class->type)) {
207 return rc;
8b61709d 208 }
064af421 209 }
86383816 210 return NULL;
064af421
BP
211}
212
77909859
JG
213/* Initializes and registers a new netdev provider. After successful
214 * registration, new netdevs of that type can be opened using netdev_open(). */
215int
216netdev_register_provider(const struct netdev_class *new_class)
da695497 217 OVS_EXCLUDED(netdev_class_mutex, netdev_mutex)
77909859 218{
86383816
BP
219 int error;
220
a4fdb0f3 221 netdev_class_mutex_initialize();
da695497 222 ovs_mutex_lock(&netdev_class_mutex);
86383816 223 if (netdev_lookup_class(new_class->type)) {
77909859
JG
224 VLOG_WARN("attempted to register duplicate netdev provider: %s",
225 new_class->type);
86383816
BP
226 error = EEXIST;
227 } else {
228 error = new_class->init ? new_class->init() : 0;
229 if (!error) {
230 struct netdev_registered_class *rc;
231
232 rc = xmalloc(sizeof *rc);
233 hmap_insert(&netdev_classes, &rc->hmap_node,
234 hash_string(new_class->type, 0));
235 rc->class = new_class;
fd0318be 236 rc->ref_cnt = 0;
86383816 237 } else {
77909859 238 VLOG_ERR("failed to initialize %s network device class: %s",
10a89ef0 239 new_class->type, ovs_strerror(error));
77909859
JG
240 }
241 }
da695497 242 ovs_mutex_unlock(&netdev_class_mutex);
77909859 243
86383816 244 return error;
77909859
JG
245}
246
247/* Unregisters a netdev provider. 'type' must have been previously
248 * registered and not currently be in use by any netdevs. After unregistration
249 * new netdevs of that type cannot be opened using netdev_open(). */
250int
251netdev_unregister_provider(const char *type)
da695497 252 OVS_EXCLUDED(netdev_class_mutex, netdev_mutex)
77909859 253{
86383816
BP
254 struct netdev_registered_class *rc;
255 int error;
77909859 256
da695497 257 ovs_mutex_lock(&netdev_class_mutex);
86383816
BP
258 rc = netdev_lookup_class(type);
259 if (!rc) {
77909859
JG
260 VLOG_WARN("attempted to unregister a netdev provider that is not "
261 "registered: %s", type);
86383816
BP
262 error = EAFNOSUPPORT;
263 } else {
fd0318be 264 if (!rc->ref_cnt) {
86383816
BP
265 hmap_remove(&netdev_classes, &rc->hmap_node);
266 free(rc);
267 error = 0;
268 } else {
77909859
JG
269 VLOG_WARN("attempted to unregister in use netdev provider: %s",
270 type);
86383816 271 error = EBUSY;
77909859
JG
272 }
273 }
da695497 274 ovs_mutex_unlock(&netdev_class_mutex);
77909859 275
86383816 276 return error;
c3827f61
BP
277}
278
77909859 279/* Clears 'types' and enumerates the types of all currently registered netdev
19993ef3 280 * providers into it. The caller must first initialize the sset. */
77909859 281void
19993ef3 282netdev_enumerate_types(struct sset *types)
86383816 283 OVS_EXCLUDED(netdev_mutex)
77909859 284{
86383816 285 struct netdev_registered_class *rc;
77909859
JG
286
287 netdev_initialize();
19993ef3 288 sset_clear(types);
77909859 289
da695497 290 ovs_mutex_lock(&netdev_class_mutex);
86383816
BP
291 HMAP_FOR_EACH (rc, hmap_node, &netdev_classes) {
292 sset_add(types, rc->class->type);
77909859 293 }
da695497 294 ovs_mutex_unlock(&netdev_class_mutex);
77909859
JG
295}
296
94a53842
AW
297/* Check that the network device name is not the same as any of the registered
298 * vport providers' dpif_port name (dpif_port is NULL if the vport provider
299 * does not define it) or the datapath internal port name (e.g. ovs-system).
300 *
301 * Returns true if there is a name conflict, false otherwise. */
302bool
303netdev_is_reserved_name(const char *name)
86383816 304 OVS_EXCLUDED(netdev_mutex)
94a53842 305{
86383816 306 struct netdev_registered_class *rc;
94a53842
AW
307
308 netdev_initialize();
86383816 309
da695497 310 ovs_mutex_lock(&netdev_class_mutex);
86383816
BP
311 HMAP_FOR_EACH (rc, hmap_node, &netdev_classes) {
312 const char *dpif_port = netdev_vport_class_get_dpif_port(rc->class);
a5d4fadd 313 if (dpif_port && !strncmp(name, dpif_port, strlen(dpif_port))) {
da695497 314 ovs_mutex_unlock(&netdev_class_mutex);
94a53842
AW
315 return true;
316 }
317 }
da695497 318 ovs_mutex_unlock(&netdev_class_mutex);
94a53842
AW
319
320 if (!strncmp(name, "ovs-", 4)) {
321 struct sset types;
322 const char *type;
323
324 sset_init(&types);
325 dp_enumerate_types(&types);
326 SSET_FOR_EACH (type, &types) {
327 if (!strcmp(name+4, type)) {
328 sset_destroy(&types);
329 return true;
330 }
331 }
332 sset_destroy(&types);
333 }
334
335 return false;
336}
337
18812dff
BP
338/* Opens the network device named 'name' (e.g. "eth0") of the specified 'type'
339 * (e.g. "system") and returns zero if successful, otherwise a positive errno
340 * value. On success, sets '*netdevp' to the new network device, otherwise to
341 * null.
064af421 342 *
de5cdb90
BP
343 * Some network devices may need to be configured (with netdev_set_config())
344 * before they can be used. */
064af421 345int
18812dff 346netdev_open(const char *name, const char *type, struct netdev **netdevp)
86383816 347 OVS_EXCLUDED(netdev_mutex)
064af421 348{
b5d57fc8 349 struct netdev *netdev;
064af421 350 int error;
064af421 351
559843ed 352 netdev_initialize();
6c88d577 353
da695497 354 ovs_mutex_lock(&netdev_class_mutex);
86383816 355 ovs_mutex_lock(&netdev_mutex);
b5d57fc8
BP
356 netdev = shash_find_data(&netdev_shash, name);
357 if (!netdev) {
86383816 358 struct netdev_registered_class *rc;
c3827f61 359
86383816
BP
360 rc = netdev_lookup_class(type && type[0] ? type : "system");
361 if (rc) {
362 netdev = rc->class->alloc();
9dc63482
BP
363 if (netdev) {
364 memset(netdev, 0, sizeof *netdev);
86383816 365 netdev->netdev_class = rc->class;
9dc63482 366 netdev->name = xstrdup(name);
3e912ffc 367 netdev->change_seq = 1;
9dc63482 368 netdev->node = shash_add(&netdev_shash, name, netdev);
55c955bd 369
f00fa8cb
AW
370 /* By default enable one tx and rx queue per netdev. */
371 netdev->n_txq = netdev->netdev_class->send ? 1 : 0;
372 netdev->n_rxq = netdev->netdev_class->rxq_alloc ? 1 : 0;
373
9dc63482
BP
374 list_init(&netdev->saved_flags_list);
375
86383816
BP
376 error = rc->class->construct(netdev);
377 if (!error) {
fd0318be 378 rc->ref_cnt++;
3e912ffc 379 netdev_change_seq_changed(netdev);
86383816 380 } else {
d72e22c8
BP
381 free(netdev->name);
382 ovs_assert(list_is_empty(&netdev->saved_flags_list));
383 shash_delete(&netdev_shash, netdev->node);
86383816 384 rc->class->dealloc(netdev);
9dc63482
BP
385 }
386 } else {
387 error = ENOMEM;
388 }
389 } else {
c3827f61 390 VLOG_WARN("could not create netdev %s of unknown type %s",
18812dff 391 name, type);
9dc63482 392 error = EAFNOSUPPORT;
149f577a 393 }
9dc63482
BP
394 } else {
395 error = 0;
6c88d577 396 }
064af421 397
9dc63482
BP
398 if (!error) {
399 netdev->ref_cnt++;
400 *netdevp = netdev;
401 } else {
402 *netdevp = NULL;
403 }
ca94dda6
JS
404 ovs_mutex_unlock(&netdev_mutex);
405 ovs_mutex_unlock(&netdev_class_mutex);
406
9dc63482 407 return error;
064af421
BP
408}
409
e20ae811
EJ
410/* Returns a reference to 'netdev_' for the caller to own. Returns null if
411 * 'netdev_' is null. */
0bb0393a
BP
412struct netdev *
413netdev_ref(const struct netdev *netdev_)
86383816 414 OVS_EXCLUDED(netdev_mutex)
0bb0393a
BP
415{
416 struct netdev *netdev = CONST_CAST(struct netdev *, netdev_);
417
e20ae811 418 if (netdev) {
86383816 419 ovs_mutex_lock(&netdev_mutex);
e20ae811
EJ
420 ovs_assert(netdev->ref_cnt > 0);
421 netdev->ref_cnt++;
86383816 422 ovs_mutex_unlock(&netdev_mutex);
e20ae811 423 }
0bb0393a
BP
424 return netdev;
425}
426
149f577a
JG
427/* Reconfigures the device 'netdev' with 'args'. 'args' may be empty
428 * or NULL if none are needed. */
429int
bbe6109d 430netdev_set_config(struct netdev *netdev, const struct smap *args, char **errp)
86383816 431 OVS_EXCLUDED(netdev_mutex)
149f577a 432{
b5d57fc8 433 if (netdev->netdev_class->set_config) {
86383816 434 const struct smap no_args = SMAP_INITIALIZER(&no_args);
4f6b9934
BP
435 int error;
436
437 error = netdev->netdev_class->set_config(netdev,
438 args ? args : &no_args);
439 if (error) {
bbe6109d
TG
440 VLOG_WARN_BUF(errp, "%s: could not set configuration (%s)",
441 netdev_get_name(netdev), ovs_strerror(error));
4f6b9934
BP
442 }
443 return error;
79f1cbe9 444 } else if (args && !smap_is_empty(args)) {
bbe6109d
TG
445 VLOG_WARN_BUF(errp, "%s: arguments provided to device that is not configurable",
446 netdev_get_name(netdev));
149f577a 447 }
149f577a
JG
448 return 0;
449}
450
de5cdb90 451/* Returns the current configuration for 'netdev' in 'args'. The caller must
79f1cbe9 452 * have already initialized 'args' with smap_init(). Returns 0 on success, in
de5cdb90
BP
453 * which case 'args' will be filled with 'netdev''s configuration. On failure
454 * returns a positive errno value, in which case 'args' will be empty.
6d9e6eb4 455 *
de5cdb90 456 * The caller owns 'args' and its contents and must eventually free them with
79f1cbe9 457 * smap_destroy(). */
de5cdb90 458int
79f1cbe9 459netdev_get_config(const struct netdev *netdev, struct smap *args)
86383816 460 OVS_EXCLUDED(netdev_mutex)
6d9e6eb4 461{
de5cdb90
BP
462 int error;
463
79f1cbe9 464 smap_clear(args);
b5d57fc8
BP
465 if (netdev->netdev_class->get_config) {
466 error = netdev->netdev_class->get_config(netdev, args);
de5cdb90 467 if (error) {
79f1cbe9 468 smap_clear(args);
de5cdb90
BP
469 }
470 } else {
471 error = 0;
472 }
473
474 return error;
6d9e6eb4
BP
475}
476
f431bf7d
EJ
477const struct netdev_tunnel_config *
478netdev_get_tunnel_config(const struct netdev *netdev)
86383816 479 OVS_EXCLUDED(netdev_mutex)
f431bf7d 480{
b5d57fc8
BP
481 if (netdev->netdev_class->get_tunnel_config) {
482 return netdev->netdev_class->get_tunnel_config(netdev);
f431bf7d
EJ
483 } else {
484 return NULL;
485 }
486}
487
7dec44fe
AW
488/* Returns the id of the numa node the 'netdev' is on. If the function
489 * is not implemented, returns NETDEV_NUMA_UNSPEC. */
490int
491netdev_get_numa_id(const struct netdev *netdev)
492{
493 if (netdev->netdev_class->get_numa_id) {
494 return netdev->netdev_class->get_numa_id(netdev);
495 } else {
496 return NETDEV_NUMA_UNSPEC;
497 }
498}
499
4b609110 500static void
b5d57fc8 501netdev_unref(struct netdev *dev)
86383816 502 OVS_RELEASES(netdev_mutex)
4b609110
BP
503{
504 ovs_assert(dev->ref_cnt);
505 if (!--dev->ref_cnt) {
86383816
BP
506 const struct netdev_class *class = dev->netdev_class;
507 struct netdev_registered_class *rc;
86383816 508
9dc63482
BP
509 dev->netdev_class->destruct(dev);
510
fe83f81d
RW
511 if (dev->node) {
512 shash_delete(&netdev_shash, dev->node);
513 }
9dc63482
BP
514 free(dev->name);
515 dev->netdev_class->dealloc(dev);
86383816
BP
516 ovs_mutex_unlock(&netdev_mutex);
517
da695497 518 ovs_mutex_lock(&netdev_class_mutex);
86383816 519 rc = netdev_lookup_class(class->type);
fd0318be
JR
520 ovs_assert(rc->ref_cnt > 0);
521 rc->ref_cnt--;
da695497 522 ovs_mutex_unlock(&netdev_class_mutex);
86383816
BP
523 } else {
524 ovs_mutex_unlock(&netdev_mutex);
4b609110
BP
525 }
526}
527
064af421
BP
528/* Closes and destroys 'netdev'. */
529void
530netdev_close(struct netdev *netdev)
86383816 531 OVS_EXCLUDED(netdev_mutex)
064af421
BP
532{
533 if (netdev) {
86383816 534 ovs_mutex_lock(&netdev_mutex);
b5d57fc8 535 netdev_unref(netdev);
064af421
BP
536 }
537}
538
fe83f81d
RW
539/* Removes 'netdev' from the global shash and unrefs 'netdev'.
540 *
541 * This allows handler and revalidator threads to still retain references
542 * to this netdev while the main thread changes interface configuration.
543 *
544 * This function should only be called by the main thread when closing
545 * netdevs during user configuration changes. Otherwise, netdev_close should be
546 * used to close netdevs. */
547void
548netdev_remove(struct netdev *netdev)
549{
550 if (netdev) {
551 ovs_mutex_lock(&netdev_mutex);
552 if (netdev->node) {
553 shash_delete(&netdev_shash, netdev->node);
554 netdev->node = NULL;
555 netdev_change_seq_changed(netdev);
556 }
557 netdev_unref(netdev);
558 }
559}
560
a75531e5
BP
561/* Parses 'netdev_name_', which is of the form [type@]name into its component
562 * pieces. 'name' and 'type' must be freed by the caller. */
563void
564netdev_parse_name(const char *netdev_name_, char **name, char **type)
565{
566 char *netdev_name = xstrdup(netdev_name_);
567 char *separator;
568
569 separator = strchr(netdev_name, '@');
570 if (separator) {
571 *separator = '\0';
572 *type = netdev_name;
573 *name = xstrdup(separator + 1);
574 } else {
575 *name = netdev_name;
576 *type = xstrdup("system");
577 }
578}
579
f7791740
PS
580/* Attempts to open a netdev_rxq handle for obtaining packets received on
581 * 'netdev'. On success, returns 0 and stores a nonnull 'netdev_rxq *' into
b73c8518
SH
582 * '*rxp'. On failure, returns a positive errno value and stores NULL into
583 * '*rxp'.
584 *
585 * Some kinds of network devices might not support receiving packets. This
586 * function returns EOPNOTSUPP in that case.*/
7b6b0ef4 587int
55c955bd 588netdev_rxq_open(struct netdev *netdev, struct netdev_rxq **rxp, int id)
86383816 589 OVS_EXCLUDED(netdev_mutex)
7b6b0ef4 590{
796223f5 591 int error;
7b6b0ef4 592
55c955bd 593 if (netdev->netdev_class->rxq_alloc && id < netdev->n_rxq) {
f7791740 594 struct netdev_rxq *rx = netdev->netdev_class->rxq_alloc();
9dc63482
BP
595 if (rx) {
596 rx->netdev = netdev;
55c955bd 597 rx->queue_id = id;
f7791740 598 error = netdev->netdev_class->rxq_construct(rx);
9dc63482 599 if (!error) {
a17ceb1b 600 netdev_ref(netdev);
9dc63482
BP
601 *rxp = rx;
602 return 0;
603 }
f7791740 604 netdev->netdev_class->rxq_dealloc(rx);
9dc63482
BP
605 } else {
606 error = ENOMEM;
607 }
796223f5 608 } else {
9dc63482 609 error = EOPNOTSUPP;
796223f5 610 }
9dc63482
BP
611
612 *rxp = NULL;
796223f5
BP
613 return error;
614}
615
b73c8518 616/* Closes 'rx'. */
796223f5 617void
f7791740 618netdev_rxq_close(struct netdev_rxq *rx)
86383816 619 OVS_EXCLUDED(netdev_mutex)
796223f5
BP
620{
621 if (rx) {
9dc63482 622 struct netdev *netdev = rx->netdev;
f7791740
PS
623 netdev->netdev_class->rxq_destruct(rx);
624 netdev->netdev_class->rxq_dealloc(rx);
9dc63482 625 netdev_close(netdev);
796223f5 626 }
7b6b0ef4
BP
627}
628
df1e5a3b 629/* Attempts to receive batch of packets from 'rx'.
b73c8518
SH
630 *
631 * Returns EAGAIN immediately if no packet is ready to be received.
632 *
633 * Returns EMSGSIZE, and discards the packet, if the received packet is longer
634 * than 'ofpbuf_tailroom(buffer)'.
635 *
b73c8518
SH
636 * It is advised that the tailroom of 'buffer' should be
637 * VLAN_HEADER_LEN bytes longer than the MTU to allow space for an
638 * out-of-band VLAN header to be added to the packet. At the very least,
639 * 'buffer' must have at least ETH_TOTAL_MIN bytes of tailroom.
640 *
641 * This function may be set to null if it would always return EOPNOTSUPP
642 * anyhow. */
064af421 643int
91088554 644netdev_rxq_recv(struct netdev_rxq *rx, struct dpif_packet **buffers, int *cnt)
064af421 645{
8b61709d 646 int retval;
064af421 647
f7791740 648 retval = rx->netdev->netdev_class->rxq_recv(rx, buffers, cnt);
bfd3367b 649 if (!retval) {
064af421 650 COVERAGE_INC(netdev_received);
064af421 651 }
df1e5a3b 652 return retval;
064af421
BP
653}
654
b73c8518
SH
655/* Arranges for poll_block() to wake up when a packet is ready to be received
656 * on 'rx'. */
064af421 657void
f7791740 658netdev_rxq_wait(struct netdev_rxq *rx)
064af421 659{
f7791740 660 rx->netdev->netdev_class->rxq_wait(rx);
064af421
BP
661}
662
b73c8518 663/* Discards any packets ready to be received on 'rx'. */
064af421 664int
f7791740 665netdev_rxq_drain(struct netdev_rxq *rx)
064af421 666{
f7791740
PS
667 return (rx->netdev->netdev_class->rxq_drain
668 ? rx->netdev->netdev_class->rxq_drain(rx)
9dc63482 669 : 0);
064af421
BP
670}
671
5496878c
AW
672/* Configures the number of tx queues and rx queues of 'netdev'.
673 * Return 0 if successful, otherwise a positive errno value.
674 *
675 * On error, the tx queue and rx queue configuration is indeterminant.
676 * Caller should make decision on whether to restore the previous or
677 * the default configuration. Also, caller must make sure there is no
678 * other thread accessing the queues at the same time. */
679int
680netdev_set_multiq(struct netdev *netdev, unsigned int n_txq,
681 unsigned int n_rxq)
682{
683 int error;
684
685 error = (netdev->netdev_class->set_multiq
686 ? netdev->netdev_class->set_multiq(netdev,
687 MAX(n_txq, 1),
688 MAX(n_rxq, 1))
689 : EOPNOTSUPP);
690
f6d0d4b3 691 if (error && error != EOPNOTSUPP) {
5496878c
AW
692 VLOG_DBG_RL(&rl, "failed to set tx/rx queue for network device %s:"
693 "%s", netdev_get_name(netdev), ovs_strerror(error));
694 }
695
696 return error;
697}
698
f4fd623c
DDP
699/* Sends 'buffers' on 'netdev'. Returns 0 if successful (for every packet),
700 * otherwise a positive errno value. Returns EAGAIN without blocking if
701 * at least one the packets cannot be queued immediately. Returns EMSGSIZE
702 * if a partial packet was transmitted or if a packet is too big or too small
703 * to transmit on the device.
704 *
705 * If the function returns a non-zero value, some of the packets might have
706 * been sent anyway.
064af421 707 *
40d26f04 708 * To retain ownership of 'buffer' caller can set may_steal to false.
064af421 709 *
f00fa8cb
AW
710 * The network device is expected to maintain one or more packet
711 * transmission queues, so that the caller does not ordinarily have to
712 * do additional queuing of packets. 'qid' specifies the queue to use
713 * and can be ignored if the implementation does not support multiple
714 * queues.
1ac98180
BP
715 *
716 * Some network devices may not implement support for this function. In such
717 * cases this function will always return EOPNOTSUPP. */
064af421 718int
f00fa8cb
AW
719netdev_send(struct netdev *netdev, int qid, struct dpif_packet **buffers,
720 int cnt, bool may_steal)
064af421 721{
1ac98180
BP
722 int error;
723
b5d57fc8 724 error = (netdev->netdev_class->send
f00fa8cb 725 ? netdev->netdev_class->send(netdev, qid, buffers, cnt, may_steal)
b5d57fc8 726 : EOPNOTSUPP);
8b61709d 727 if (!error) {
064af421 728 COVERAGE_INC(netdev_sent);
064af421 729 }
8b61709d 730 return error;
064af421
BP
731}
732
a36de779
PS
733int
734netdev_pop_header(struct netdev *netdev, struct dpif_packet **buffers, int cnt)
735{
736 return (netdev->netdev_class->pop_header
737 ? netdev->netdev_class->pop_header(netdev, buffers, cnt)
738 : EOPNOTSUPP);
739}
740
741int
742netdev_build_header(const struct netdev *netdev, struct ovs_action_push_tnl *data)
743{
744 if (netdev->netdev_class->build_header) {
745 return netdev->netdev_class->build_header(netdev, data);
746 }
747 return EOPNOTSUPP;
748}
749
750int
751netdev_push_header(const struct netdev *netdev,
752 struct dpif_packet **buffers, int cnt,
753 const struct ovs_action_push_tnl *data)
754{
755 if (netdev->netdev_class->push_header) {
756 return netdev->netdev_class->push_header(netdev, buffers, cnt, data);
757 } else {
758 return -EINVAL;
759 }
760}
761
064af421
BP
762/* Registers with the poll loop to wake up from the next call to poll_block()
763 * when the packet transmission queue has sufficient room to transmit a packet
764 * with netdev_send().
765 *
f00fa8cb
AW
766 * The network device is expected to maintain one or more packet
767 * transmission queues, so that the caller does not ordinarily have to
768 * do additional queuing of packets. 'qid' specifies the queue to use
769 * and can be ignored if the implementation does not support multiple
770 * queues. */
064af421 771void
f00fa8cb 772netdev_send_wait(struct netdev *netdev, int qid)
064af421 773{
b5d57fc8 774 if (netdev->netdev_class->send_wait) {
f00fa8cb 775 netdev->netdev_class->send_wait(netdev, qid);
1ac98180 776 }
064af421
BP
777}
778
779/* Attempts to set 'netdev''s MAC address to 'mac'. Returns 0 if successful,
780 * otherwise a positive errno value. */
781int
782netdev_set_etheraddr(struct netdev *netdev, const uint8_t mac[ETH_ADDR_LEN])
783{
b5d57fc8 784 return netdev->netdev_class->set_etheraddr(netdev, mac);
064af421
BP
785}
786
80992a35
BP
787/* Retrieves 'netdev''s MAC address. If successful, returns 0 and copies the
788 * the MAC address into 'mac'. On failure, returns a positive errno value and
789 * clears 'mac' to all-zeros. */
790int
791netdev_get_etheraddr(const struct netdev *netdev, uint8_t mac[ETH_ADDR_LEN])
064af421 792{
b5d57fc8 793 return netdev->netdev_class->get_etheraddr(netdev, mac);
064af421
BP
794}
795
796/* Returns the name of the network device that 'netdev' represents,
797 * e.g. "eth0". The caller must not modify or free the returned string. */
798const char *
799netdev_get_name(const struct netdev *netdev)
800{
b5d57fc8 801 return netdev->name;
064af421
BP
802}
803
3d222126
BP
804/* Retrieves the MTU of 'netdev'. The MTU is the maximum size of transmitted
805 * (and received) packets, in bytes, not including the hardware header; thus,
806 * this is typically 1500 bytes for Ethernet devices.
807 *
9b020780
PS
808 * If successful, returns 0 and stores the MTU size in '*mtup'. Returns
809 * EOPNOTSUPP if 'netdev' does not have an MTU (as e.g. some tunnels do not).
14622f22
BP
810 * On other failure, returns a positive errno value. On failure, sets '*mtup'
811 * to 0. */
064af421 812int
3d222126 813netdev_get_mtu(const struct netdev *netdev, int *mtup)
064af421 814{
b5d57fc8 815 const struct netdev_class *class = netdev->netdev_class;
14622f22
BP
816 int error;
817
818 error = class->get_mtu ? class->get_mtu(netdev, mtup) : EOPNOTSUPP;
819 if (error) {
820 *mtup = 0;
821 if (error != EOPNOTSUPP) {
90a6637d 822 VLOG_DBG_RL(&rl, "failed to retrieve MTU for network device %s: "
10a89ef0 823 "%s", netdev_get_name(netdev), ovs_strerror(error));
14622f22 824 }
8b61709d
BP
825 }
826 return error;
064af421
BP
827}
828
9b020780
PS
829/* Sets the MTU of 'netdev'. The MTU is the maximum size of transmitted
830 * (and received) packets, in bytes.
831 *
832 * If successful, returns 0. Returns EOPNOTSUPP if 'netdev' does not have an
833 * MTU (as e.g. some tunnels do not). On other failure, returns a positive
834 * errno value. */
835int
836netdev_set_mtu(const struct netdev *netdev, int mtu)
837{
b5d57fc8 838 const struct netdev_class *class = netdev->netdev_class;
14622f22 839 int error;
9b020780 840
14622f22 841 error = class->set_mtu ? class->set_mtu(netdev, mtu) : EOPNOTSUPP;
9b020780 842 if (error && error != EOPNOTSUPP) {
90a6637d 843 VLOG_DBG_RL(&rl, "failed to set MTU for network device %s: %s",
10a89ef0 844 netdev_get_name(netdev), ovs_strerror(error));
9b020780
PS
845 }
846
847 return error;
848}
849
9ab3d9a3
BP
850/* Returns the ifindex of 'netdev', if successful, as a positive number. On
851 * failure, returns a negative errno value.
852 *
853 * The desired semantics of the ifindex value are a combination of those
854 * specified by POSIX for if_nametoindex() and by SNMP for ifIndex. An ifindex
855 * value should be unique within a host and remain stable at least until
856 * reboot. SNMP says an ifindex "ranges between 1 and the value of ifNumber"
857 * but many systems do not follow this rule anyhow.
4c0f1780
JG
858 *
859 * Some network devices may not implement support for this function. In such
860 * cases this function will always return -EOPNOTSUPP.
9ab3d9a3
BP
861 */
862int
863netdev_get_ifindex(const struct netdev *netdev)
864{
4c0f1780
JG
865 int (*get_ifindex)(const struct netdev *);
866
b5d57fc8 867 get_ifindex = netdev->netdev_class->get_ifindex;
4c0f1780
JG
868
869 return get_ifindex ? get_ifindex(netdev) : -EOPNOTSUPP;
9ab3d9a3
BP
870}
871
064af421
BP
872/* Stores the features supported by 'netdev' into each of '*current',
873 * '*advertised', '*supported', and '*peer' that are non-null. Each value is a
874 * bitmap of "enum ofp_port_features" bits, in host byte order. Returns 0 if
875 * successful, otherwise a positive errno value. On failure, all of the
4c0f1780
JG
876 * passed-in values are set to 0.
877 *
878 * Some network devices may not implement support for this function. In such
c1fdab01 879 * cases this function will always return EOPNOTSUPP. */
064af421 880int
6f2f5cce 881netdev_get_features(const struct netdev *netdev,
6c038611
BP
882 enum netdev_features *current,
883 enum netdev_features *advertised,
884 enum netdev_features *supported,
885 enum netdev_features *peer)
064af421 886{
6f2f5cce 887 int (*get_features)(const struct netdev *netdev,
6c038611
BP
888 enum netdev_features *current,
889 enum netdev_features *advertised,
890 enum netdev_features *supported,
891 enum netdev_features *peer);
892 enum netdev_features dummy[4];
7671589a
BP
893 int error;
894
895 if (!current) {
896 current = &dummy[0];
897 }
898 if (!advertised) {
899 advertised = &dummy[1];
900 }
901 if (!supported) {
902 supported = &dummy[2];
903 }
904 if (!peer) {
905 peer = &dummy[3];
906 }
907
b5d57fc8 908 get_features = netdev->netdev_class->get_features;
4c0f1780 909 error = get_features
a00ca915
EJ
910 ? get_features(netdev, current, advertised, supported,
911 peer)
4c0f1780 912 : EOPNOTSUPP;
7671589a
BP
913 if (error) {
914 *current = *advertised = *supported = *peer = 0;
915 }
916 return error;
064af421
BP
917}
918
6c038611
BP
919/* Returns the maximum speed of a network connection that has the NETDEV_F_*
920 * bits in 'features', in bits per second. If no bits that indicate a speed
d02a5f8e 921 * are set in 'features', returns 'default_bps'. */
622ee2cf 922uint64_t
d02a5f8e
BP
923netdev_features_to_bps(enum netdev_features features,
924 uint64_t default_bps)
622ee2cf
BP
925{
926 enum {
6c038611
BP
927 F_1000000MB = NETDEV_F_1TB_FD,
928 F_100000MB = NETDEV_F_100GB_FD,
929 F_40000MB = NETDEV_F_40GB_FD,
930 F_10000MB = NETDEV_F_10GB_FD,
931 F_1000MB = NETDEV_F_1GB_HD | NETDEV_F_1GB_FD,
932 F_100MB = NETDEV_F_100MB_HD | NETDEV_F_100MB_FD,
933 F_10MB = NETDEV_F_10MB_HD | NETDEV_F_10MB_FD
622ee2cf
BP
934 };
935
6c038611
BP
936 return ( features & F_1000000MB ? UINT64_C(1000000000000)
937 : features & F_100000MB ? UINT64_C(100000000000)
938 : features & F_40000MB ? UINT64_C(40000000000)
939 : features & F_10000MB ? UINT64_C(10000000000)
940 : features & F_1000MB ? UINT64_C(1000000000)
941 : features & F_100MB ? UINT64_C(100000000)
942 : features & F_10MB ? UINT64_C(10000000)
d02a5f8e 943 : default_bps);
622ee2cf
BP
944}
945
6c038611
BP
946/* Returns true if any of the NETDEV_F_* bits that indicate a full-duplex link
947 * are set in 'features', otherwise false. */
622ee2cf 948bool
6c038611 949netdev_features_is_full_duplex(enum netdev_features features)
622ee2cf 950{
6c038611
BP
951 return (features & (NETDEV_F_10MB_FD | NETDEV_F_100MB_FD | NETDEV_F_1GB_FD
952 | NETDEV_F_10GB_FD | NETDEV_F_40GB_FD
953 | NETDEV_F_100GB_FD | NETDEV_F_1TB_FD)) != 0;
622ee2cf
BP
954}
955
8b61709d
BP
956/* Set the features advertised by 'netdev' to 'advertise'. Returns 0 if
957 * successful, otherwise a positive errno value. */
064af421 958int
6c038611
BP
959netdev_set_advertisements(struct netdev *netdev,
960 enum netdev_features advertise)
064af421 961{
b5d57fc8
BP
962 return (netdev->netdev_class->set_advertisements
963 ? netdev->netdev_class->set_advertisements(
a4af0040 964 netdev, advertise)
8b61709d 965 : EOPNOTSUPP);
064af421
BP
966}
967
f1acd62b
BP
968/* If 'netdev' has an assigned IPv4 address, sets '*address' to that address
969 * and '*netmask' to its netmask and returns 0. Otherwise, returns a positive
970 * errno value and sets '*address' to 0 (INADDR_ANY).
8b61709d
BP
971 *
972 * The following error values have well-defined meanings:
973 *
974 * - EADDRNOTAVAIL: 'netdev' has no assigned IPv4 address.
975 *
976 * - EOPNOTSUPP: No IPv4 network stack attached to 'netdev'.
977 *
b53055f4 978 * 'address' or 'netmask' or both may be null, in which case the address or
c1fdab01 979 * netmask is not reported. */
6b9bd979 980int
f1acd62b
BP
981netdev_get_in4(const struct netdev *netdev,
982 struct in_addr *address_, struct in_addr *netmask_)
064af421 983{
f1acd62b
BP
984 struct in_addr address;
985 struct in_addr netmask;
064af421
BP
986 int error;
987
b5d57fc8
BP
988 error = (netdev->netdev_class->get_in4
989 ? netdev->netdev_class->get_in4(netdev,
a4af0040 990 &address, &netmask)
8b61709d 991 : EOPNOTSUPP);
f1acd62b
BP
992 if (address_) {
993 address_->s_addr = error ? 0 : address.s_addr;
994 }
995 if (netmask_) {
996 netmask_->s_addr = error ? 0 : netmask.s_addr;
064af421
BP
997 }
998 return error;
999}
1000
1001/* Assigns 'addr' as 'netdev''s IPv4 address and 'mask' as its netmask. If
1002 * 'addr' is INADDR_ANY, 'netdev''s IPv4 address is cleared. Returns a
1003 * positive errno value. */
1004int
1005netdev_set_in4(struct netdev *netdev, struct in_addr addr, struct in_addr mask)
1006{
b5d57fc8
BP
1007 return (netdev->netdev_class->set_in4
1008 ? netdev->netdev_class->set_in4(netdev, addr, mask)
8b61709d 1009 : EOPNOTSUPP);
064af421
BP
1010}
1011
733adf2a
LG
1012/* Obtains ad IPv4 address from device name and save the address in
1013 * in4. Returns 0 if successful, otherwise a positive errno value.
1014 */
1015int
1016netdev_get_in4_by_name(const char *device_name, struct in_addr *in4)
1017{
1018 struct netdev *netdev;
1019 int error;
1020
1021 error = netdev_open(device_name, "system", &netdev);
1022 if (error) {
1023 in4->s_addr = htonl(0);
1024 return error;
1025 }
1026
1027 error = netdev_get_in4(netdev, in4, NULL);
1028 netdev_close(netdev);
1029 return error;
1030}
1031
0efaf4b5
BP
1032/* Adds 'router' as a default IP gateway for the TCP/IP stack that corresponds
1033 * to 'netdev'. */
064af421 1034int
8b61709d 1035netdev_add_router(struct netdev *netdev, struct in_addr router)
064af421 1036{
064af421 1037 COVERAGE_INC(netdev_add_router);
b5d57fc8
BP
1038 return (netdev->netdev_class->add_router
1039 ? netdev->netdev_class->add_router(netdev, router)
8b61709d 1040 : EOPNOTSUPP);
064af421
BP
1041}
1042
f1acd62b
BP
1043/* Looks up the next hop for 'host' for the TCP/IP stack that corresponds to
1044 * 'netdev'. If a route cannot not be determined, sets '*next_hop' to 0,
1045 * '*netdev_name' to null, and returns a positive errno value. Otherwise, if a
1046 * next hop is found, stores the next hop gateway's address (0 if 'host' is on
1047 * a directly connected network) in '*next_hop' and a copy of the name of the
1048 * device to reach 'host' in '*netdev_name', and returns 0. The caller is
1049 * responsible for freeing '*netdev_name' (by calling free()). */
1050int
1051netdev_get_next_hop(const struct netdev *netdev,
1052 const struct in_addr *host, struct in_addr *next_hop,
1053 char **netdev_name)
1054{
b5d57fc8
BP
1055 int error = (netdev->netdev_class->get_next_hop
1056 ? netdev->netdev_class->get_next_hop(
a4af0040 1057 host, next_hop, netdev_name)
f1acd62b 1058 : EOPNOTSUPP);
064af421 1059 if (error) {
f1acd62b
BP
1060 next_hop->s_addr = 0;
1061 *netdev_name = NULL;
064af421
BP
1062 }
1063 return error;
1064}
1065
79f1cbe9 1066/* Populates 'smap' with status information.
ea763e0e 1067 *
79f1cbe9
EJ
1068 * Populates 'smap' with 'netdev' specific status information. This
1069 * information may be used to populate the status column of the Interface table
1070 * as defined in ovs-vswitchd.conf.db(5). */
ea763e0e 1071int
275707c3 1072netdev_get_status(const struct netdev *netdev, struct smap *smap)
ea83a2fc 1073{
b5d57fc8
BP
1074 return (netdev->netdev_class->get_status
1075 ? netdev->netdev_class->get_status(netdev, smap)
ea763e0e 1076 : EOPNOTSUPP);
ea83a2fc
EJ
1077}
1078
8b61709d
BP
1079/* If 'netdev' has an assigned IPv6 address, sets '*in6' to that address and
1080 * returns 0. Otherwise, returns a positive errno value and sets '*in6' to
1081 * all-zero-bits (in6addr_any).
1082 *
1083 * The following error values have well-defined meanings:
1084 *
1085 * - EADDRNOTAVAIL: 'netdev' has no assigned IPv6 address.
1086 *
1087 * - EOPNOTSUPP: No IPv6 network stack attached to 'netdev'.
1088 *
1089 * 'in6' may be null, in which case the address itself is not reported. */
064af421 1090int
8b61709d 1091netdev_get_in6(const struct netdev *netdev, struct in6_addr *in6)
064af421 1092{
8b61709d
BP
1093 struct in6_addr dummy;
1094 int error;
b1bf7d43 1095
b5d57fc8
BP
1096 error = (netdev->netdev_class->get_in6
1097 ? netdev->netdev_class->get_in6(netdev,
a4af0040 1098 in6 ? in6 : &dummy)
8b61709d
BP
1099 : EOPNOTSUPP);
1100 if (error && in6) {
1101 memset(in6, 0, sizeof *in6);
b1bf7d43 1102 }
8b61709d 1103 return error;
064af421
BP
1104}
1105
1106/* On 'netdev', turns off the flags in 'off' and then turns on the flags in
4b609110 1107 * 'on'. Returns 0 if successful, otherwise a positive errno value. */
064af421
BP
1108static int
1109do_update_flags(struct netdev *netdev, enum netdev_flags off,
8b61709d 1110 enum netdev_flags on, enum netdev_flags *old_flagsp,
4b609110 1111 struct netdev_saved_flags **sfp)
86383816 1112 OVS_EXCLUDED(netdev_mutex)
064af421 1113{
4b609110 1114 struct netdev_saved_flags *sf = NULL;
8b61709d 1115 enum netdev_flags old_flags;
064af421
BP
1116 int error;
1117
b5d57fc8
BP
1118 error = netdev->netdev_class->update_flags(netdev, off & ~on, on,
1119 &old_flags);
064af421 1120 if (error) {
8b61709d
BP
1121 VLOG_WARN_RL(&rl, "failed to %s flags for network device %s: %s",
1122 off || on ? "set" : "get", netdev_get_name(netdev),
10a89ef0 1123 ovs_strerror(error));
8b61709d 1124 old_flags = 0;
4b609110 1125 } else if ((off || on) && sfp) {
8b61709d
BP
1126 enum netdev_flags new_flags = (old_flags & ~off) | on;
1127 enum netdev_flags changed_flags = old_flags ^ new_flags;
1128 if (changed_flags) {
86383816 1129 ovs_mutex_lock(&netdev_mutex);
4b609110 1130 *sfp = sf = xmalloc(sizeof *sf);
b5d57fc8
BP
1131 sf->netdev = netdev;
1132 list_push_front(&netdev->saved_flags_list, &sf->node);
4b609110
BP
1133 sf->saved_flags = changed_flags;
1134 sf->saved_values = changed_flags & new_flags;
1135
b5d57fc8 1136 netdev->ref_cnt++;
86383816 1137 ovs_mutex_unlock(&netdev_mutex);
8b61709d 1138 }
064af421 1139 }
4b609110 1140
8b61709d
BP
1141 if (old_flagsp) {
1142 *old_flagsp = old_flags;
064af421 1143 }
4b609110
BP
1144 if (sfp) {
1145 *sfp = sf;
1146 }
1147
064af421
BP
1148 return error;
1149}
1150
8b61709d
BP
1151/* Obtains the current flags for 'netdev' and stores them into '*flagsp'.
1152 * Returns 0 if successful, otherwise a positive errno value. On failure,
1153 * stores 0 into '*flagsp'. */
1154int
1155netdev_get_flags(const struct netdev *netdev_, enum netdev_flags *flagsp)
1156{
ebc56baa 1157 struct netdev *netdev = CONST_CAST(struct netdev *, netdev_);
4b609110 1158 return do_update_flags(netdev, 0, 0, flagsp, NULL);
8b61709d
BP
1159}
1160
064af421 1161/* Sets the flags for 'netdev' to 'flags'.
064af421
BP
1162 * Returns 0 if successful, otherwise a positive errno value. */
1163int
1164netdev_set_flags(struct netdev *netdev, enum netdev_flags flags,
4b609110 1165 struct netdev_saved_flags **sfp)
064af421 1166{
4b609110 1167 return do_update_flags(netdev, -1, flags, NULL, sfp);
064af421
BP
1168}
1169
4b609110
BP
1170/* Turns on the specified 'flags' on 'netdev':
1171 *
1172 * - On success, returns 0. If 'sfp' is nonnull, sets '*sfp' to a newly
1173 * allocated 'struct netdev_saved_flags *' that may be passed to
1174 * netdev_restore_flags() to restore the original values of 'flags' on
1175 * 'netdev' (this will happen automatically at program termination if
1176 * netdev_restore_flags() is never called) , or to NULL if no flags were
1177 * actually changed.
1178 *
1179 * - On failure, returns a positive errno value. If 'sfp' is nonnull, sets
1180 * '*sfp' to NULL. */
064af421
BP
1181int
1182netdev_turn_flags_on(struct netdev *netdev, enum netdev_flags flags,
4b609110 1183 struct netdev_saved_flags **sfp)
064af421 1184{
4b609110 1185 return do_update_flags(netdev, 0, flags, NULL, sfp);
064af421
BP
1186}
1187
4b609110
BP
1188/* Turns off the specified 'flags' on 'netdev'. See netdev_turn_flags_on() for
1189 * details of the interface. */
064af421
BP
1190int
1191netdev_turn_flags_off(struct netdev *netdev, enum netdev_flags flags,
4b609110
BP
1192 struct netdev_saved_flags **sfp)
1193{
1194 return do_update_flags(netdev, flags, 0, NULL, sfp);
1195}
1196
1197/* Restores the flags that were saved in 'sf', and destroys 'sf'.
1198 * Does nothing if 'sf' is NULL. */
1199void
1200netdev_restore_flags(struct netdev_saved_flags *sf)
86383816 1201 OVS_EXCLUDED(netdev_mutex)
064af421 1202{
4b609110 1203 if (sf) {
b5d57fc8 1204 struct netdev *netdev = sf->netdev;
4b609110
BP
1205 enum netdev_flags old_flags;
1206
b5d57fc8
BP
1207 netdev->netdev_class->update_flags(netdev,
1208 sf->saved_flags & sf->saved_values,
1209 sf->saved_flags & ~sf->saved_values,
1210 &old_flags);
86383816
BP
1211
1212 ovs_mutex_lock(&netdev_mutex);
4b609110
BP
1213 list_remove(&sf->node);
1214 free(sf);
b5d57fc8 1215 netdev_unref(netdev);
4b609110 1216 }
064af421
BP
1217}
1218
1219/* Looks up the ARP table entry for 'ip' on 'netdev'. If one exists and can be
1220 * successfully retrieved, it stores the corresponding MAC address in 'mac' and
1221 * returns 0. Otherwise, it returns a positive errno value; in particular,
8b61709d 1222 * ENXIO indicates that there is no ARP table entry for 'ip' on 'netdev'. */
064af421 1223int
8b61709d 1224netdev_arp_lookup(const struct netdev *netdev,
dbba996b 1225 ovs_be32 ip, uint8_t mac[ETH_ADDR_LEN])
064af421 1226{
b5d57fc8 1227 int error = (netdev->netdev_class->arp_lookup
15aee116 1228 ? netdev->netdev_class->arp_lookup(netdev, ip, mac)
8b61709d 1229 : EOPNOTSUPP);
064af421 1230 if (error) {
8b61709d 1231 memset(mac, 0, ETH_ADDR_LEN);
064af421 1232 }
8b61709d 1233 return error;
064af421
BP
1234}
1235
85da620e
JG
1236/* Returns true if carrier is active (link light is on) on 'netdev'. */
1237bool
1238netdev_get_carrier(const struct netdev *netdev)
064af421 1239{
85da620e
JG
1240 int error;
1241 enum netdev_flags flags;
1242 bool carrier;
1243
1244 netdev_get_flags(netdev, &flags);
1245 if (!(flags & NETDEV_UP)) {
1246 return false;
1247 }
1248
b5d57fc8 1249 if (!netdev->netdev_class->get_carrier) {
85da620e
JG
1250 return true;
1251 }
1252
15aee116 1253 error = netdev->netdev_class->get_carrier(netdev, &carrier);
8b61709d 1254 if (error) {
85da620e 1255 VLOG_DBG("%s: failed to get network device carrier status, assuming "
10a89ef0 1256 "down: %s", netdev_get_name(netdev), ovs_strerror(error));
85da620e 1257 carrier = false;
064af421 1258 }
85da620e
JG
1259
1260 return carrier;
064af421
BP
1261}
1262
65c3058c
EJ
1263/* Returns the number of times 'netdev''s carrier has changed. */
1264long long int
1265netdev_get_carrier_resets(const struct netdev *netdev)
1266{
b5d57fc8
BP
1267 return (netdev->netdev_class->get_carrier_resets
1268 ? netdev->netdev_class->get_carrier_resets(netdev)
65c3058c
EJ
1269 : 0);
1270}
1271
1670c579
EJ
1272/* Attempts to force netdev_get_carrier() to poll 'netdev''s MII registers for
1273 * link status instead of checking 'netdev''s carrier. 'netdev''s MII
1274 * registers will be polled once ever 'interval' milliseconds. If 'netdev'
1275 * does not support MII, another method may be used as a fallback. If
1276 * 'interval' is less than or equal to zero, reverts netdev_get_carrier() to
1277 * its normal behavior.
1278 *
1279 * Returns 0 if successful, otherwise a positive errno value. */
1280int
1281netdev_set_miimon_interval(struct netdev *netdev, long long int interval)
63331829 1282{
b5d57fc8
BP
1283 return (netdev->netdev_class->set_miimon_interval
1284 ? netdev->netdev_class->set_miimon_interval(netdev, interval)
1670c579 1285 : EOPNOTSUPP);
63331829
EJ
1286}
1287
887fd0ba 1288/* Retrieves current device stats for 'netdev'. */
064af421
BP
1289int
1290netdev_get_stats(const struct netdev *netdev, struct netdev_stats *stats)
1291{
1292 int error;
1293
1294 COVERAGE_INC(netdev_get_stats);
b5d57fc8
BP
1295 error = (netdev->netdev_class->get_stats
1296 ? netdev->netdev_class->get_stats(netdev, stats)
8b61709d 1297 : EOPNOTSUPP);
064af421
BP
1298 if (error) {
1299 memset(stats, 0xff, sizeof *stats);
1300 }
1301 return error;
1302}
1303
8b61709d
BP
1304/* Attempts to set input rate limiting (policing) policy, such that up to
1305 * 'kbits_rate' kbps of traffic is accepted, with a maximum accumulative burst
1306 * size of 'kbits' kb. */
064af421 1307int
b1bf7d43
BP
1308netdev_set_policing(struct netdev *netdev, uint32_t kbits_rate,
1309 uint32_t kbits_burst)
064af421 1310{
b5d57fc8
BP
1311 return (netdev->netdev_class->set_policing
1312 ? netdev->netdev_class->set_policing(netdev,
a4af0040 1313 kbits_rate, kbits_burst)
8b61709d 1314 : EOPNOTSUPP);
064af421
BP
1315}
1316
c1c9c9c4
BP
1317/* Adds to 'types' all of the forms of QoS supported by 'netdev', or leaves it
1318 * empty if 'netdev' does not support QoS. Any names added to 'types' should
1319 * be documented as valid for the "type" column in the "QoS" table in
1320 * vswitchd/vswitch.xml (which is built as ovs-vswitchd.conf.db(8)).
1321 *
1322 * Every network device supports disabling QoS with a type of "", but this type
1323 * will not be added to 'types'.
1324 *
19993ef3 1325 * The caller must initialize 'types' (e.g. with sset_init()) before calling
c1c9c9c4 1326 * this function. The caller is responsible for destroying 'types' (e.g. with
19993ef3 1327 * sset_destroy()) when it is no longer needed.
c1c9c9c4
BP
1328 *
1329 * Returns 0 if successful, otherwise a positive errno value. */
1330int
19993ef3 1331netdev_get_qos_types(const struct netdev *netdev, struct sset *types)
c1c9c9c4 1332{
b5d57fc8 1333 const struct netdev_class *class = netdev->netdev_class;
c1c9c9c4
BP
1334 return (class->get_qos_types
1335 ? class->get_qos_types(netdev, types)
1336 : 0);
1337}
1338
1339/* Queries 'netdev' for its capabilities regarding the specified 'type' of QoS,
1340 * which should be "" or one of the types returned by netdev_get_qos_types()
1341 * for 'netdev'. Returns 0 if successful, otherwise a positive errno value.
1342 * On success, initializes 'caps' with the QoS capabilities; on failure, clears
1343 * 'caps' to all zeros. */
1344int
1345netdev_get_qos_capabilities(const struct netdev *netdev, const char *type,
1346 struct netdev_qos_capabilities *caps)
1347{
b5d57fc8 1348 const struct netdev_class *class = netdev->netdev_class;
c1c9c9c4
BP
1349
1350 if (*type) {
1351 int retval = (class->get_qos_capabilities
1352 ? class->get_qos_capabilities(netdev, type, caps)
1353 : EOPNOTSUPP);
1354 if (retval) {
1355 memset(caps, 0, sizeof *caps);
1356 }
1357 return retval;
1358 } else {
1359 /* Every netdev supports turning off QoS. */
1360 memset(caps, 0, sizeof *caps);
1361 return 0;
1362 }
1363}
1364
1365/* Obtains the number of queues supported by 'netdev' for the specified 'type'
1366 * of QoS. Returns 0 if successful, otherwise a positive errno value. Stores
1367 * the number of queues (zero on failure) in '*n_queuesp'.
1368 *
1369 * This is just a simple wrapper around netdev_get_qos_capabilities(). */
1370int
1371netdev_get_n_queues(const struct netdev *netdev,
1372 const char *type, unsigned int *n_queuesp)
1373{
1374 struct netdev_qos_capabilities caps;
1375 int retval;
1376
1377 retval = netdev_get_qos_capabilities(netdev, type, &caps);
1378 *n_queuesp = caps.n_queues;
1379 return retval;
1380}
1381
1382/* Queries 'netdev' about its currently configured form of QoS. If successful,
1383 * stores the name of the current form of QoS into '*typep', stores any details
1384 * of configuration as string key-value pairs in 'details', and returns 0. On
1385 * failure, sets '*typep' to NULL and returns a positive errno value.
1386 *
1387 * A '*typep' of "" indicates that QoS is currently disabled on 'netdev'.
1388 *
79f1cbe9
EJ
1389 * The caller must initialize 'details' as an empty smap (e.g. with
1390 * smap_init()) before calling this function. The caller must free 'details'
1391 * when it is no longer needed (e.g. with smap_destroy()).
c1c9c9c4
BP
1392 *
1393 * The caller must not modify or free '*typep'.
1394 *
1395 * '*typep' will be one of the types returned by netdev_get_qos_types() for
1396 * 'netdev'. The contents of 'details' should be documented as valid for
1397 * '*typep' in the "other_config" column in the "QoS" table in
1398 * vswitchd/vswitch.xml (which is built as ovs-vswitchd.conf.db(8)). */
1399int
1400netdev_get_qos(const struct netdev *netdev,
79f1cbe9 1401 const char **typep, struct smap *details)
c1c9c9c4 1402{
b5d57fc8 1403 const struct netdev_class *class = netdev->netdev_class;
c1c9c9c4
BP
1404 int retval;
1405
1406 if (class->get_qos) {
1407 retval = class->get_qos(netdev, typep, details);
1408 if (retval) {
1409 *typep = NULL;
79f1cbe9 1410 smap_clear(details);
c1c9c9c4
BP
1411 }
1412 return retval;
1413 } else {
1414 /* 'netdev' doesn't support QoS, so report that QoS is disabled. */
1415 *typep = "";
1416 return 0;
1417 }
1418}
1419
1420/* Attempts to reconfigure QoS on 'netdev', changing the form of QoS to 'type'
1421 * with details of configuration from 'details'. Returns 0 if successful,
1422 * otherwise a positive errno value. On error, the previous QoS configuration
1423 * is retained.
1424 *
1425 * When this function changes the type of QoS (not just 'details'), this also
1426 * resets all queue configuration for 'netdev' to their defaults (which depend
1427 * on the specific type of QoS). Otherwise, the queue configuration for
1428 * 'netdev' is unchanged.
1429 *
1430 * 'type' should be "" (to disable QoS) or one of the types returned by
1431 * netdev_get_qos_types() for 'netdev'. The contents of 'details' should be
1432 * documented as valid for the given 'type' in the "other_config" column in the
1433 * "QoS" table in vswitchd/vswitch.xml (which is built as
1434 * ovs-vswitchd.conf.db(8)).
1435 *
1436 * NULL may be specified for 'details' if there are no configuration
1437 * details. */
1438int
1439netdev_set_qos(struct netdev *netdev,
79f1cbe9 1440 const char *type, const struct smap *details)
c1c9c9c4 1441{
b5d57fc8 1442 const struct netdev_class *class = netdev->netdev_class;
c1c9c9c4
BP
1443
1444 if (!type) {
1445 type = "";
1446 }
1447
1448 if (class->set_qos) {
1449 if (!details) {
edfbe9f7 1450 static const struct smap empty = SMAP_INITIALIZER(&empty);
c1c9c9c4
BP
1451 details = &empty;
1452 }
1453 return class->set_qos(netdev, type, details);
1454 } else {
1455 return *type ? EOPNOTSUPP : 0;
1456 }
1457}
1458
1459/* Queries 'netdev' for information about the queue numbered 'queue_id'. If
1460 * successful, adds that information as string key-value pairs to 'details'.
1461 * Returns 0 if successful, otherwise a positive errno value.
1462 *
1463 * 'queue_id' must be less than the number of queues supported by 'netdev' for
1464 * the current form of QoS (e.g. as returned by netdev_get_n_queues(netdev)).
1465 *
1466 * The returned contents of 'details' should be documented as valid for the
1467 * given 'type' in the "other_config" column in the "Queue" table in
1468 * vswitchd/vswitch.xml (which is built as ovs-vswitchd.conf.db(8)).
1469 *
79f1cbe9
EJ
1470 * The caller must initialize 'details' (e.g. with smap_init()) before calling
1471 * this function. The caller must free 'details' when it is no longer needed
1472 * (e.g. with smap_destroy()). */
c1c9c9c4
BP
1473int
1474netdev_get_queue(const struct netdev *netdev,
79f1cbe9 1475 unsigned int queue_id, struct smap *details)
c1c9c9c4 1476{
b5d57fc8 1477 const struct netdev_class *class = netdev->netdev_class;
c1c9c9c4
BP
1478 int retval;
1479
1480 retval = (class->get_queue
1481 ? class->get_queue(netdev, queue_id, details)
1482 : EOPNOTSUPP);
1483 if (retval) {
79f1cbe9 1484 smap_clear(details);
c1c9c9c4
BP
1485 }
1486 return retval;
1487}
1488
1489/* Configures the queue numbered 'queue_id' on 'netdev' with the key-value
1490 * string pairs in 'details'. The contents of 'details' should be documented
1491 * as valid for the given 'type' in the "other_config" column in the "Queue"
1492 * table in vswitchd/vswitch.xml (which is built as ovs-vswitchd.conf.db(8)).
1493 * Returns 0 if successful, otherwise a positive errno value. On failure, the
1494 * given queue's configuration should be unmodified.
1495 *
1496 * 'queue_id' must be less than the number of queues supported by 'netdev' for
1497 * the current form of QoS (e.g. as returned by netdev_get_n_queues(netdev)).
1498 *
1499 * This function does not modify 'details', and the caller retains ownership of
c1fdab01 1500 * it. */
c1c9c9c4
BP
1501int
1502netdev_set_queue(struct netdev *netdev,
79f1cbe9 1503 unsigned int queue_id, const struct smap *details)
c1c9c9c4 1504{
b5d57fc8 1505 const struct netdev_class *class = netdev->netdev_class;
c1c9c9c4
BP
1506 return (class->set_queue
1507 ? class->set_queue(netdev, queue_id, details)
1508 : EOPNOTSUPP);
1509}
1510
1511/* Attempts to delete the queue numbered 'queue_id' from 'netdev'. Some kinds
1512 * of QoS may have a fixed set of queues, in which case attempts to delete them
1513 * will fail with EOPNOTSUPP.
1514 *
1515 * Returns 0 if successful, otherwise a positive errno value. On failure, the
1516 * given queue will be unmodified.
1517 *
1518 * 'queue_id' must be less than the number of queues supported by 'netdev' for
1519 * the current form of QoS (e.g. as returned by
1520 * netdev_get_n_queues(netdev)). */
1521int
1522netdev_delete_queue(struct netdev *netdev, unsigned int queue_id)
1523{
b5d57fc8 1524 const struct netdev_class *class = netdev->netdev_class;
c1c9c9c4
BP
1525 return (class->delete_queue
1526 ? class->delete_queue(netdev, queue_id)
1527 : EOPNOTSUPP);
1528}
1529
1530/* Obtains statistics about 'queue_id' on 'netdev'. On success, returns 0 and
1531 * fills 'stats' with the queue's statistics; individual members of 'stats' may
1532 * be set to all-1-bits if the statistic is unavailable. On failure, returns a
6dc34a0d
BP
1533 * positive errno value and fills 'stats' with values indicating unsupported
1534 * statistics. */
c1c9c9c4
BP
1535int
1536netdev_get_queue_stats(const struct netdev *netdev, unsigned int queue_id,
1537 struct netdev_queue_stats *stats)
1538{
b5d57fc8 1539 const struct netdev_class *class = netdev->netdev_class;
c1c9c9c4
BP
1540 int retval;
1541
1542 retval = (class->get_queue_stats
1543 ? class->get_queue_stats(netdev, queue_id, stats)
1544 : EOPNOTSUPP);
1545 if (retval) {
6dc34a0d
BP
1546 stats->tx_bytes = UINT64_MAX;
1547 stats->tx_packets = UINT64_MAX;
1548 stats->tx_errors = UINT64_MAX;
1549 stats->created = LLONG_MIN;
c1c9c9c4
BP
1550 }
1551 return retval;
1552}
1553
89454bf4
BP
1554/* Initializes 'dump' to begin dumping the queues in a netdev.
1555 *
1556 * This function provides no status indication. An error status for the entire
1557 * dump operation is provided when it is completed by calling
1558 * netdev_queue_dump_done().
1559 */
1560void
1561netdev_queue_dump_start(struct netdev_queue_dump *dump,
1562 const struct netdev *netdev)
1563{
1564 dump->netdev = netdev_ref(netdev);
1565 if (netdev->netdev_class->queue_dump_start) {
1566 dump->error = netdev->netdev_class->queue_dump_start(netdev,
1567 &dump->state);
1568 } else {
1569 dump->error = EOPNOTSUPP;
1570 }
1571}
1572
1573/* Attempts to retrieve another queue from 'dump', which must have been
1574 * initialized with netdev_queue_dump_start(). On success, stores a new queue
1575 * ID into '*queue_id', fills 'details' with configuration details for the
1576 * queue, and returns true. On failure, returns false.
c1c9c9c4 1577 *
89454bf4
BP
1578 * Queues are not necessarily dumped in increasing order of queue ID (or any
1579 * other predictable order).
c1c9c9c4 1580 *
89454bf4
BP
1581 * Failure might indicate an actual error or merely that the last queue has
1582 * been dumped. An error status for the entire dump operation is provided when
1583 * it is completed by calling netdev_queue_dump_done().
c1c9c9c4 1584 *
89454bf4
BP
1585 * The returned contents of 'details' should be documented as valid for the
1586 * given 'type' in the "other_config" column in the "Queue" table in
1587 * vswitchd/vswitch.xml (which is built as ovs-vswitchd.conf.db(8)).
1588 *
1589 * The caller must initialize 'details' (e.g. with smap_init()) before calling
1590 * this function. This function will clear and replace its contents. The
1591 * caller must free 'details' when it is no longer needed (e.g. with
1592 * smap_destroy()). */
1593bool
1594netdev_queue_dump_next(struct netdev_queue_dump *dump,
1595 unsigned int *queue_id, struct smap *details)
1596{
1597 const struct netdev *netdev = dump->netdev;
1598
1599 if (dump->error) {
1600 return false;
1601 }
1602
1603 dump->error = netdev->netdev_class->queue_dump_next(netdev, dump->state,
1604 queue_id, details);
1605
1606 if (dump->error) {
1607 netdev->netdev_class->queue_dump_done(netdev, dump->state);
1608 return false;
1609 }
1610 return true;
1611}
1612
1613/* Completes queue table dump operation 'dump', which must have been
1614 * initialized with netdev_queue_dump_start(). Returns 0 if the dump operation
1615 * was error-free, otherwise a positive errno value describing the problem. */
c1c9c9c4 1616int
89454bf4 1617netdev_queue_dump_done(struct netdev_queue_dump *dump)
c1c9c9c4 1618{
89454bf4
BP
1619 const struct netdev *netdev = dump->netdev;
1620 if (!dump->error && netdev->netdev_class->queue_dump_done) {
1621 dump->error = netdev->netdev_class->queue_dump_done(netdev,
1622 dump->state);
1623 }
1624 netdev_close(dump->netdev);
1625 return dump->error == EOF ? 0 : dump->error;
c1c9c9c4
BP
1626}
1627
1628/* Iterates over all of 'netdev''s queues, calling 'cb' with the queue's ID,
1629 * its statistics, and the 'aux' specified by the caller. The order of
1630 * iteration is unspecified, but (when successful) each queue is visited
1631 * exactly once.
1632 *
1633 * Calling this function may be more efficient than calling
1634 * netdev_get_queue_stats() for every queue.
1635 *
1636 * 'cb' must not modify or free the statistics passed in.
1637 *
1638 * Returns 0 if successful, otherwise a positive errno value. On error, some
1639 * configured queues may not have been included in the iteration. */
1640int
1641netdev_dump_queue_stats(const struct netdev *netdev,
1642 netdev_dump_queue_stats_cb *cb, void *aux)
1643{
b5d57fc8 1644 const struct netdev_class *class = netdev->netdev_class;
c1c9c9c4
BP
1645 return (class->dump_queue_stats
1646 ? class->dump_queue_stats(netdev, cb, aux)
1647 : EOPNOTSUPP);
1648}
1649
8b61709d 1650\f
b5d57fc8 1651/* Returns the class type of 'netdev'.
a740f0de
JG
1652 *
1653 * The caller must not free the returned value. */
149f577a 1654const char *
b5d57fc8 1655netdev_get_type(const struct netdev *netdev)
a740f0de 1656{
b5d57fc8 1657 return netdev->netdev_class->type;
a740f0de
JG
1658}
1659
b5d57fc8 1660/* Returns the class associated with 'netdev'. */
15b3596a 1661const struct netdev_class *
b5d57fc8 1662netdev_get_class(const struct netdev *netdev)
a740f0de 1663{
b5d57fc8 1664 return netdev->netdev_class;
a740f0de
JG
1665}
1666
b5d57fc8 1667/* Returns the netdev with 'name' or NULL if there is none.
46415c90 1668 *
991e5fae 1669 * The caller must free the returned netdev with netdev_close(). */
b5d57fc8
BP
1670struct netdev *
1671netdev_from_name(const char *name)
86383816 1672 OVS_EXCLUDED(netdev_mutex)
46415c90 1673{
991e5fae
BP
1674 struct netdev *netdev;
1675
86383816 1676 ovs_mutex_lock(&netdev_mutex);
991e5fae
BP
1677 netdev = shash_find_data(&netdev_shash, name);
1678 if (netdev) {
86383816 1679 netdev->ref_cnt++;
991e5fae 1680 }
86383816 1681 ovs_mutex_unlock(&netdev_mutex);
991e5fae
BP
1682
1683 return netdev;
46415c90
JG
1684}
1685
7dab847a 1686/* Fills 'device_list' with devices that match 'netdev_class'.
46415c90 1687 *
2f980d74
BP
1688 * The caller is responsible for initializing and destroying 'device_list' and
1689 * must close each device on the list. */
46415c90 1690void
b5d57fc8
BP
1691netdev_get_devices(const struct netdev_class *netdev_class,
1692 struct shash *device_list)
86383816 1693 OVS_EXCLUDED(netdev_mutex)
46415c90
JG
1694{
1695 struct shash_node *node;
86383816
BP
1696
1697 ovs_mutex_lock(&netdev_mutex);
b5d57fc8
BP
1698 SHASH_FOR_EACH (node, &netdev_shash) {
1699 struct netdev *dev = node->data;
46415c90 1700
7dab847a 1701 if (dev->netdev_class == netdev_class) {
2f980d74 1702 dev->ref_cnt++;
46415c90
JG
1703 shash_add(device_list, node->name, node->data);
1704 }
1705 }
86383816 1706 ovs_mutex_unlock(&netdev_mutex);
46415c90
JG
1707}
1708
41ca1e0a
AW
1709/* Extracts pointers to all 'netdev-vports' into an array 'vports'
1710 * and returns it. Stores the size of the array into '*size'.
1711 *
1712 * The caller is responsible for freeing 'vports' and must close
1713 * each 'netdev-vport' in the list. */
1714struct netdev **
1715netdev_get_vports(size_t *size)
1716 OVS_EXCLUDED(netdev_mutex)
1717{
1718 struct netdev **vports;
1719 struct shash_node *node;
1720 size_t n = 0;
1721
1722 if (!size) {
1723 return NULL;
1724 }
1725
1726 /* Explicitly allocates big enough chunk of memory. */
1727 vports = xmalloc(shash_count(&netdev_shash) * sizeof *vports);
1728 ovs_mutex_lock(&netdev_mutex);
1729 SHASH_FOR_EACH (node, &netdev_shash) {
1730 struct netdev *dev = node->data;
1731
1732 if (netdev_vport_is_vport_class(dev->netdev_class)) {
1733 dev->ref_cnt++;
1734 vports[n] = dev;
1735 n++;
1736 }
1737 }
1738 ovs_mutex_unlock(&netdev_mutex);
1739 *size = n;
1740
1741 return vports;
1742}
1743
0a740f48
EJ
1744const char *
1745netdev_get_type_from_name(const char *name)
1746{
991e5fae
BP
1747 struct netdev *dev = netdev_from_name(name);
1748 const char *type = dev ? netdev_get_type(dev) : NULL;
1749 netdev_close(dev);
1750 return type;
6c88d577 1751}
e9e28be3 1752\f
b5d57fc8 1753struct netdev *
f7791740 1754netdev_rxq_get_netdev(const struct netdev_rxq *rx)
796223f5 1755{
b5d57fc8
BP
1756 ovs_assert(rx->netdev->ref_cnt > 0);
1757 return rx->netdev;
796223f5
BP
1758}
1759
1760const char *
f7791740 1761netdev_rxq_get_name(const struct netdev_rxq *rx)
796223f5 1762{
f7791740 1763 return netdev_get_name(netdev_rxq_get_netdev(rx));
796223f5
BP
1764}
1765
064af421 1766static void
4b609110 1767restore_all_flags(void *aux OVS_UNUSED)
064af421 1768{
4b609110
BP
1769 struct shash_node *node;
1770
b5d57fc8
BP
1771 SHASH_FOR_EACH (node, &netdev_shash) {
1772 struct netdev *netdev = node->data;
4b609110
BP
1773 const struct netdev_saved_flags *sf;
1774 enum netdev_flags saved_values;
1775 enum netdev_flags saved_flags;
1776
1777 saved_values = saved_flags = 0;
b5d57fc8 1778 LIST_FOR_EACH (sf, node, &netdev->saved_flags_list) {
4b609110
BP
1779 saved_flags |= sf->saved_flags;
1780 saved_values &= ~sf->saved_flags;
1781 saved_values |= sf->saved_flags & sf->saved_values;
1782 }
1783 if (saved_flags) {
1784 enum netdev_flags old_flags;
1785
b5d57fc8
BP
1786 netdev->netdev_class->update_flags(netdev,
1787 saved_flags & saved_values,
1788 saved_flags & ~saved_values,
1789 &old_flags);
4b609110 1790 }
064af421
BP
1791 }
1792}
3e912ffc
AW
1793
1794uint64_t
1795netdev_get_change_seq(const struct netdev *netdev)
1796{
1797 return netdev->change_seq;
1798}