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