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