userspace: Define and use struct eth_addr.
[cascardo/ovs.git] / lib / netdev-provider.h
1 /*
2  * Copyright (c) 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 #ifndef NETDEV_PROVIDER_H
18 #define NETDEV_PROVIDER_H 1
19
20 /* Generic interface to network devices. */
21
22 #include "connectivity.h"
23 #include "netdev.h"
24 #include "list.h"
25 #include "ovs-numa.h"
26 #include "packets.h"
27 #include "seq.h"
28 #include "shash.h"
29 #include "smap.h"
30
31 #ifdef  __cplusplus
32 extern "C" {
33 #endif
34
35 #define NETDEV_NUMA_UNSPEC OVS_NUMA_UNSPEC
36
37 /* A network device (e.g. an Ethernet device).
38  *
39  * Network device implementations may read these members but should not modify
40  * them. */
41 struct netdev {
42     /* The following do not change during the lifetime of a struct netdev. */
43     char *name;                         /* Name of network device. */
44     const struct netdev_class *netdev_class; /* Functions to control
45                                                 this device. */
46
47     /* A sequence number which indicates changes in one of 'netdev''s
48      * properties.   It must be nonzero so that users have a value which
49      * they may use as a reset when tracking 'netdev'.
50      *
51      * Minimally, the sequence number is required to change whenever
52      * 'netdev''s flags, features, ethernet address, or carrier changes. */
53     uint64_t change_seq;
54
55     /* The following are protected by 'netdev_mutex' (internal to netdev.c). */
56     int n_txq;
57     int n_rxq;
58     int ref_cnt;                        /* Times this devices was opened. */
59     struct shash_node *node;            /* Pointer to element in global map. */
60     struct ovs_list saved_flags_list; /* Contains "struct netdev_saved_flags". */
61 };
62
63 static void
64 netdev_change_seq_changed(const struct netdev *netdev_)
65 {
66     struct netdev *netdev = CONST_CAST(struct netdev *, netdev_);
67     seq_change(connectivity_seq_get());
68     netdev->change_seq++;
69     if (!netdev->change_seq) {
70         netdev->change_seq++;
71     }
72 }
73
74 const char *netdev_get_type(const struct netdev *);
75 const struct netdev_class *netdev_get_class(const struct netdev *);
76 const char *netdev_get_name(const struct netdev *);
77 struct netdev *netdev_from_name(const char *name);
78 void netdev_get_devices(const struct netdev_class *,
79                         struct shash *device_list);
80 struct netdev **netdev_get_vports(size_t *size);
81
82 /* A data structure for capturing packets received by a network device.
83  *
84  * Network device implementations may read these members but should not modify
85  * them.
86  *
87  * None of these members change during the lifetime of a struct netdev_rxq. */
88 struct netdev_rxq {
89     struct netdev *netdev;      /* Owns a reference to the netdev. */
90     int queue_id;
91 };
92
93 struct netdev *netdev_rxq_get_netdev(const struct netdev_rxq *);
94
95 /* Network device class structure, to be defined by each implementation of a
96  * network device.
97  *
98  * These functions return 0 if successful or a positive errno value on failure,
99  * except where otherwise noted.
100  *
101  *
102  * Data Structures
103  * ===============
104  *
105  * These functions work primarily with two different kinds of data structures:
106  *
107  *   - "struct netdev", which represents a network device.
108  *
109  *   - "struct netdev_rxq", which represents a handle for capturing packets
110  *     received on a network device
111  *
112  * Each of these data structures contains all of the implementation-independent
113  * generic state for the respective concept, called the "base" state.  None of
114  * them contains any extra space for implementations to use.  Instead, each
115  * implementation is expected to declare its own data structure that contains
116  * an instance of the generic data structure plus additional
117  * implementation-specific members, called the "derived" state.  The
118  * implementation can use casts or (preferably) the CONTAINER_OF macro to
119  * obtain access to derived state given only a pointer to the embedded generic
120  * data structure.
121  *
122  *
123  * Life Cycle
124  * ==========
125  *
126  * Four stylized functions accompany each of these data structures:
127  *
128  *            "alloc"          "construct"        "destruct"       "dealloc"
129  *            ------------   ----------------  ---------------  --------------
130  * netdev      ->alloc        ->construct        ->destruct        ->dealloc
131  * netdev_rxq  ->rxq_alloc    ->rxq_construct    ->rxq_destruct    ->rxq_dealloc
132  *
133  * Any instance of a given data structure goes through the following life
134  * cycle:
135  *
136  *   1. The client calls the "alloc" function to obtain raw memory.  If "alloc"
137  *      fails, skip all the other steps.
138  *
139  *   2. The client initializes all of the data structure's base state.  If this
140  *      fails, skip to step 7.
141  *
142  *   3. The client calls the "construct" function.  The implementation
143  *      initializes derived state.  It may refer to the already-initialized
144  *      base state.  If "construct" fails, skip to step 6.
145  *
146  *   4. The data structure is now initialized and in use.
147  *
148  *   5. When the data structure is no longer needed, the client calls the
149  *      "destruct" function.  The implementation uninitializes derived state.
150  *      The base state has not been uninitialized yet, so the implementation
151  *      may still refer to it.
152  *
153  *   6. The client uninitializes all of the data structure's base state.
154  *
155  *   7. The client calls the "dealloc" to free the raw memory.  The
156  *      implementation must not refer to base or derived state in the data
157  *      structure, because it has already been uninitialized.
158  *
159  * If netdev support multi-queue IO then netdev->construct should set initialize
160  * netdev->n_rxq to number of queues.
161  *
162  * Each "alloc" function allocates and returns a new instance of the respective
163  * data structure.  The "alloc" function is not given any information about the
164  * use of the new data structure, so it cannot perform much initialization.
165  * Its purpose is just to ensure that the new data structure has enough room
166  * for base and derived state.  It may return a null pointer if memory is not
167  * available, in which case none of the other functions is called.
168  *
169  * Each "construct" function initializes derived state in its respective data
170  * structure.  When "construct" is called, all of the base state has already
171  * been initialized, so the "construct" function may refer to it.  The
172  * "construct" function is allowed to fail, in which case the client calls the
173  * "dealloc" function (but not the "destruct" function).
174  *
175  * Each "destruct" function uninitializes and frees derived state in its
176  * respective data structure.  When "destruct" is called, the base state has
177  * not yet been uninitialized, so the "destruct" function may refer to it.  The
178  * "destruct" function is not allowed to fail.
179  *
180  * Each "dealloc" function frees raw memory that was allocated by the
181  * "alloc" function.  The memory's base and derived members might not have ever
182  * been initialized (but if "construct" returned successfully, then it has been
183  * "destruct"ed already).  The "dealloc" function is not allowed to fail.
184  *
185  *
186  * Device Change Notification
187  * ==========================
188  *
189  * Minimally, implementations are required to report changes to netdev flags,
190  * features, ethernet address or carrier through connectivity_seq. Changes to
191  * other properties are allowed to cause notification through this interface,
192  * although implementations should try to avoid this. connectivity_seq_get()
193  * can be used to acquire a reference to the struct seq. The interface is
194  * described in detail in seq.h. */
195 struct netdev_class {
196     /* Type of netdevs in this class, e.g. "system", "tap", "gre", etc.
197      *
198      * One of the providers should supply a "system" type, since this is
199      * the type assumed if no type is specified when opening a netdev.
200      * The "system" type corresponds to an existing network device on
201      * the system. */
202     const char *type;
203
204 /* ## ------------------- ## */
205 /* ## Top-Level Functions ## */
206 /* ## ------------------- ## */
207
208     /* Called when the netdev provider is registered, typically at program
209      * startup.  Returning an error from this function will prevent any network
210      * device in this class from being opened.
211      *
212      * This function may be set to null if a network device class needs no
213      * initialization at registration time. */
214     int (*init)(void);
215
216     /* Performs periodic work needed by netdevs of this class.  May be null if
217      * no periodic work is necessary. */
218     void (*run)(void);
219
220     /* Arranges for poll_block() to wake up if the "run" member function needs
221      * to be called.  Implementations are additionally required to wake
222      * whenever something changes in any of its netdevs which would cause their
223      * ->change_seq() function to change its result.  May be null if nothing is
224      * needed here. */
225     void (*wait)(void);
226
227 /* ## ---------------- ## */
228 /* ## netdev Functions ## */
229 /* ## ---------------- ## */
230
231     /* Life-cycle functions for a netdev.  See the large comment above on
232      * struct netdev_class. */
233     struct netdev *(*alloc)(void);
234     int (*construct)(struct netdev *);
235     void (*destruct)(struct netdev *);
236     void (*dealloc)(struct netdev *);
237
238     /* Fetches the device 'netdev''s configuration, storing it in 'args'.
239      * The caller owns 'args' and pre-initializes it to an empty smap.
240      *
241      * If this netdev class does not have any configuration options, this may
242      * be a null pointer. */
243     int (*get_config)(const struct netdev *netdev, struct smap *args);
244
245     /* Changes the device 'netdev''s configuration to 'args'.
246      *
247      * If this netdev class does not support configuration, this may be a null
248      * pointer. */
249     int (*set_config)(struct netdev *netdev, const struct smap *args);
250
251     /* Returns the tunnel configuration of 'netdev'.  If 'netdev' is
252      * not a tunnel, returns null.
253      *
254      * If this function would always return null, it may be null instead. */
255     const struct netdev_tunnel_config *
256         (*get_tunnel_config)(const struct netdev *netdev);
257
258     /* Build Partial Tunnel header.  Ethernet and ip header is already built,
259      * build_header() is suppose build protocol specific part of header. */
260     int (*build_header)(const struct netdev *, struct ovs_action_push_tnl *data,
261                         const struct flow *tnl_flow);
262
263     /* build_header() can not build entire header for all packets for given
264      * flow.  Push header is called for packet to build header specific to
265      * a packet on actual transmit.  It uses partial header build by
266      * build_header() which is passed as data. */
267     void (*push_header)(struct dp_packet *packet,
268                         const struct ovs_action_push_tnl *data);
269
270     /* Pop tunnel header from packet, build tunnel metadata and resize packet
271      * for further processing. */
272     int (*pop_header)(struct dp_packet *packet);
273
274     /* Returns the id of the numa node the 'netdev' is on.  If there is no
275      * such info, returns NETDEV_NUMA_UNSPEC. */
276     int (*get_numa_id)(const struct netdev *netdev);
277
278     /* Configures the number of tx queues and rx queues of 'netdev'.
279      * Return 0 if successful, otherwise a positive errno value.
280      *
281      * 'n_rxq' specifies the maximum number of receive queues to create.
282      * The netdev provider might choose to create less (e.g. if the hardware
283      * supports only a smaller number).  The actual number of queues created
284      * is stored in the 'netdev->n_rxq' field.
285      *
286      * 'n_txq' specifies the exact number of transmission queues to create.
287      * The caller will call netdev_send() concurrently from 'n_txq' different
288      * threads (with different qid).  The netdev provider is responsible for
289      * making sure that these concurrent calls do not create a race condition
290      * by using multiple hw queues or locking.
291      *
292      * On error, the tx queue and rx queue configuration is indeterminant.
293      * Caller should make decision on whether to restore the previous or
294      * the default configuration.  Also, caller must make sure there is no
295      * other thread accessing the queues at the same time. */
296     int (*set_multiq)(struct netdev *netdev, unsigned int n_txq,
297                       unsigned int n_rxq);
298
299     /* Sends buffers on 'netdev'.
300      * Returns 0 if successful (for every buffer), otherwise a positive errno
301      * value.  Returns EAGAIN without blocking if one or more packets cannot be
302      * queued immediately. Returns EMSGSIZE if a partial packet was transmitted
303      * or if a packet is too big or too small to transmit on the device.
304      *
305      * If the function returns a non-zero value, some of the packets might have
306      * been sent anyway.
307      *
308      * To retain ownership of 'buffers' caller can set may_steal to false.
309      *
310      * The network device is expected to maintain one or more packet
311      * transmission queues, so that the caller does not ordinarily have to
312      * do additional queuing of packets.  'qid' specifies the queue to use
313      * and can be ignored if the implementation does not support multiple
314      * queues.
315      *
316      * May return EOPNOTSUPP if a network device does not implement packet
317      * transmission through this interface.  This function may be set to null
318      * if it would always return EOPNOTSUPP anyhow.  (This will prevent the
319      * network device from being usefully used by the netdev-based "userspace
320      * datapath".  It will also prevent the OVS implementation of bonding from
321      * working properly over 'netdev'.) */
322     int (*send)(struct netdev *netdev, int qid, struct dp_packet **buffers,
323                 int cnt, bool may_steal);
324
325     /* Registers with the poll loop to wake up from the next call to
326      * poll_block() when the packet transmission queue for 'netdev' has
327      * sufficient room to transmit a packet with netdev_send().
328      *
329      * The network device is expected to maintain one or more packet
330      * transmission queues, so that the caller does not ordinarily have to
331      * do additional queuing of packets.  'qid' specifies the queue to use
332      * and can be ignored if the implementation does not support multiple
333      * queues.
334      *
335      * May be null if not needed, such as for a network device that does not
336      * implement packet transmission through the 'send' member function. */
337     void (*send_wait)(struct netdev *netdev, int qid);
338
339     /* Sets 'netdev''s Ethernet address to 'mac' */
340     int (*set_etheraddr)(struct netdev *netdev, const struct eth_addr mac);
341
342     /* Retrieves 'netdev''s Ethernet address into 'mac'.
343      *
344      * This address will be advertised as 'netdev''s MAC address through the
345      * OpenFlow protocol, among other uses. */
346     int (*get_etheraddr)(const struct netdev *netdev, struct eth_addr *mac);
347
348     /* Retrieves 'netdev''s MTU into '*mtup'.
349      *
350      * The MTU is the maximum size of transmitted (and received) packets, in
351      * bytes, not including the hardware header; thus, this is typically 1500
352      * bytes for Ethernet devices.
353      *
354      * If 'netdev' does not have an MTU (e.g. as some tunnels do not), then
355      * this function should return EOPNOTSUPP.  This function may be set to
356      * null if it would always return EOPNOTSUPP. */
357     int (*get_mtu)(const struct netdev *netdev, int *mtup);
358
359     /* Sets 'netdev''s MTU to 'mtu'.
360      *
361      * If 'netdev' does not have an MTU (e.g. as some tunnels do not), then
362      * this function should return EOPNOTSUPP.  This function may be set to
363      * null if it would always return EOPNOTSUPP. */
364     int (*set_mtu)(const struct netdev *netdev, int mtu);
365
366     /* Returns the ifindex of 'netdev', if successful, as a positive number.
367      * On failure, returns a negative errno value.
368      *
369      * The desired semantics of the ifindex value are a combination of those
370      * specified by POSIX for if_nametoindex() and by SNMP for ifIndex.  An
371      * ifindex value should be unique within a host and remain stable at least
372      * until reboot.  SNMP says an ifindex "ranges between 1 and the value of
373      * ifNumber" but many systems do not follow this rule anyhow.
374      *
375      * This function may be set to null if it would always return -EOPNOTSUPP.
376      */
377     int (*get_ifindex)(const struct netdev *netdev);
378
379     /* Sets 'carrier' to true if carrier is active (link light is on) on
380      * 'netdev'.
381      *
382      * May be null if device does not provide carrier status (will be always
383      * up as long as device is up).
384      */
385     int (*get_carrier)(const struct netdev *netdev, bool *carrier);
386
387     /* Returns the number of times 'netdev''s carrier has changed since being
388      * initialized.
389      *
390      * If null, callers will assume the number of carrier resets is zero. */
391     long long int (*get_carrier_resets)(const struct netdev *netdev);
392
393     /* Forces ->get_carrier() to poll 'netdev''s MII registers for link status
394      * instead of checking 'netdev''s carrier.  'netdev''s MII registers will
395      * be polled once every 'interval' milliseconds.  If 'netdev' does not
396      * support MII, another method may be used as a fallback.  If 'interval' is
397      * less than or equal to zero, reverts ->get_carrier() to its normal
398      * behavior.
399      *
400      * Most network devices won't support this feature and will set this
401      * function pointer to NULL, which is equivalent to returning EOPNOTSUPP.
402      */
403     int (*set_miimon_interval)(struct netdev *netdev, long long int interval);
404
405     /* Retrieves current device stats for 'netdev' into 'stats'.
406      *
407      * A network device that supports some statistics but not others, it should
408      * set the values of the unsupported statistics to all-1-bits
409      * (UINT64_MAX). */
410     int (*get_stats)(const struct netdev *netdev, struct netdev_stats *);
411
412     /* Stores the features supported by 'netdev' into each of '*current',
413      * '*advertised', '*supported', and '*peer'.  Each value is a bitmap of
414      * NETDEV_F_* bits.
415      *
416      * This function may be set to null if it would always return EOPNOTSUPP.
417      */
418     int (*get_features)(const struct netdev *netdev,
419                         enum netdev_features *current,
420                         enum netdev_features *advertised,
421                         enum netdev_features *supported,
422                         enum netdev_features *peer);
423
424     /* Set the features advertised by 'netdev' to 'advertise', which is a
425      * set of NETDEV_F_* bits.
426      *
427      * This function may be set to null for a network device that does not
428      * support configuring advertisements. */
429     int (*set_advertisements)(struct netdev *netdev,
430                               enum netdev_features advertise);
431
432     /* Attempts to set input rate limiting (policing) policy, such that up to
433      * 'kbits_rate' kbps of traffic is accepted, with a maximum accumulative
434      * burst size of 'kbits' kb.
435      *
436      * This function may be set to null if policing is not supported. */
437     int (*set_policing)(struct netdev *netdev, unsigned int kbits_rate,
438                         unsigned int kbits_burst);
439
440     /* Adds to 'types' all of the forms of QoS supported by 'netdev', or leaves
441      * it empty if 'netdev' does not support QoS.  Any names added to 'types'
442      * should be documented as valid for the "type" column in the "QoS" table
443      * in vswitchd/vswitch.xml (which is built as ovs-vswitchd.conf.db(8)).
444      *
445      * Every network device must support disabling QoS with a type of "", but
446      * this function must not add "" to 'types'.
447      *
448      * The caller is responsible for initializing 'types' (e.g. with
449      * sset_init()) before calling this function.  The caller retains ownership
450      * of 'types'.
451      *
452      * May be NULL if 'netdev' does not support QoS at all. */
453     int (*get_qos_types)(const struct netdev *netdev, struct sset *types);
454
455     /* Queries 'netdev' for its capabilities regarding the specified 'type' of
456      * QoS.  On success, initializes 'caps' with the QoS capabilities.
457      *
458      * Should return EOPNOTSUPP if 'netdev' does not support 'type'.  May be
459      * NULL if 'netdev' does not support QoS at all. */
460     int (*get_qos_capabilities)(const struct netdev *netdev,
461                                 const char *type,
462                                 struct netdev_qos_capabilities *caps);
463
464     /* Queries 'netdev' about its currently configured form of QoS.  If
465      * successful, stores the name of the current form of QoS into '*typep'
466      * and any details of configuration as string key-value pairs in
467      * 'details'.
468      *
469      * A '*typep' of "" indicates that QoS is currently disabled on 'netdev'.
470      *
471      * The caller initializes 'details' before calling this function.  The
472      * caller takes ownership of the string key-values pairs added to
473      * 'details'.
474      *
475      * The netdev retains ownership of '*typep'.
476      *
477      * '*typep' will be one of the types returned by netdev_get_qos_types() for
478      * 'netdev'.  The contents of 'details' should be documented as valid for
479      * '*typep' in the "other_config" column in the "QoS" table in
480      * vswitchd/vswitch.xml (which is built as ovs-vswitchd.conf.db(8)).
481      *
482      * May be NULL if 'netdev' does not support QoS at all. */
483     int (*get_qos)(const struct netdev *netdev,
484                    const char **typep, struct smap *details);
485
486     /* Attempts to reconfigure QoS on 'netdev', changing the form of QoS to
487      * 'type' with details of configuration from 'details'.
488      *
489      * On error, the previous QoS configuration is retained.
490      *
491      * When this function changes the type of QoS (not just 'details'), this
492      * also resets all queue configuration for 'netdev' to their defaults
493      * (which depend on the specific type of QoS).  Otherwise, the queue
494      * configuration for 'netdev' is unchanged.
495      *
496      * 'type' should be "" (to disable QoS) or one of the types returned by
497      * netdev_get_qos_types() for 'netdev'.  The contents of 'details' should
498      * be documented as valid for the given 'type' in the "other_config" column
499      * in the "QoS" table in vswitchd/vswitch.xml (which is built as
500      * ovs-vswitchd.conf.db(8)).
501      *
502      * May be NULL if 'netdev' does not support QoS at all. */
503     int (*set_qos)(struct netdev *netdev,
504                    const char *type, const struct smap *details);
505
506     /* Queries 'netdev' for information about the queue numbered 'queue_id'.
507      * If successful, adds that information as string key-value pairs to
508      * 'details'.  Returns 0 if successful, otherwise a positive errno value.
509      *
510      * Should return EINVAL if 'queue_id' is greater than or equal to the
511      * number of supported queues (as reported in the 'n_queues' member of
512      * struct netdev_qos_capabilities by 'get_qos_capabilities').
513      *
514      * The caller initializes 'details' before calling this function.  The
515      * caller takes ownership of the string key-values pairs added to
516      * 'details'.
517      *
518      * The returned contents of 'details' should be documented as valid for the
519      * given 'type' in the "other_config" column in the "Queue" table in
520      * vswitchd/vswitch.xml (which is built as ovs-vswitchd.conf.db(8)).
521      */
522     int (*get_queue)(const struct netdev *netdev,
523                      unsigned int queue_id, struct smap *details);
524
525     /* Configures the queue numbered 'queue_id' on 'netdev' with the key-value
526      * string pairs in 'details'.  The contents of 'details' should be
527      * documented as valid for the given 'type' in the "other_config" column in
528      * the "Queue" table in vswitchd/vswitch.xml (which is built as
529      * ovs-vswitchd.conf.db(8)).  Returns 0 if successful, otherwise a positive
530      * errno value.  On failure, the given queue's configuration should be
531      * unmodified.
532      *
533      * Should return EINVAL if 'queue_id' is greater than or equal to the
534      * number of supported queues (as reported in the 'n_queues' member of
535      * struct netdev_qos_capabilities by 'get_qos_capabilities'), or if
536      * 'details' is invalid for the type of queue.
537      *
538      * This function does not modify 'details', and the caller retains
539      * ownership of it.
540      *
541      * May be NULL if 'netdev' does not support QoS at all. */
542     int (*set_queue)(struct netdev *netdev,
543                      unsigned int queue_id, const struct smap *details);
544
545     /* Attempts to delete the queue numbered 'queue_id' from 'netdev'.
546      *
547      * Should return EINVAL if 'queue_id' is greater than or equal to the
548      * number of supported queues (as reported in the 'n_queues' member of
549      * struct netdev_qos_capabilities by 'get_qos_capabilities').  Should
550      * return EOPNOTSUPP if 'queue_id' is valid but may not be deleted (e.g. if
551      * 'netdev' has a fixed set of queues with the current QoS mode).
552      *
553      * May be NULL if 'netdev' does not support QoS at all, or if all of its
554      * QoS modes have fixed sets of queues. */
555     int (*delete_queue)(struct netdev *netdev, unsigned int queue_id);
556
557     /* Obtains statistics about 'queue_id' on 'netdev'.  Fills 'stats' with the
558      * queue's statistics.  May set individual members of 'stats' to all-1-bits
559      * if the statistic is unavailable.
560      *
561      * May be NULL if 'netdev' does not support QoS at all. */
562     int (*get_queue_stats)(const struct netdev *netdev, unsigned int queue_id,
563                            struct netdev_queue_stats *stats);
564
565     /* Attempts to begin dumping the queues in 'netdev'.  On success, returns 0
566      * and initializes '*statep' with any data needed for iteration.  On
567      * failure, returns a positive errno value.
568      *
569      * May be NULL if 'netdev' does not support QoS at all. */
570     int (*queue_dump_start)(const struct netdev *netdev, void **statep);
571
572     /* Attempts to retrieve another queue from 'netdev' for 'state', which was
573      * initialized by a successful call to the 'queue_dump_start' function for
574      * 'netdev'.  On success, stores a queue ID into '*queue_id' and fills
575      * 'details' with the configuration of the queue with that ID.  Returns EOF
576      * if the last queue has been dumped, or a positive errno value on error.
577      * This function will not be called again once it returns nonzero once for
578      * a given iteration (but the 'queue_dump_done' function will be called
579      * afterward).
580      *
581      * The caller initializes and clears 'details' before calling this
582      * function.  The caller takes ownership of the string key-values pairs
583      * added to 'details'.
584      *
585      * The returned contents of 'details' should be documented as valid for the
586      * given 'type' in the "other_config" column in the "Queue" table in
587      * vswitchd/vswitch.xml (which is built as ovs-vswitchd.conf.db(8)).
588      *
589      * May be NULL if 'netdev' does not support QoS at all. */
590     int (*queue_dump_next)(const struct netdev *netdev, void *state,
591                            unsigned int *queue_id, struct smap *details);
592
593     /* Releases resources from 'netdev' for 'state', which was initialized by a
594      * successful call to the 'queue_dump_start' function for 'netdev'.
595      *
596      * May be NULL if 'netdev' does not support QoS at all. */
597     int (*queue_dump_done)(const struct netdev *netdev, void *state);
598
599     /* Iterates over all of 'netdev''s queues, calling 'cb' with the queue's
600      * ID, its statistics, and the 'aux' specified by the caller.  The order of
601      * iteration is unspecified, but (when successful) each queue must be
602      * visited exactly once.
603      *
604      * 'cb' will not modify or free the statistics passed in. */
605     int (*dump_queue_stats)(const struct netdev *netdev,
606                             void (*cb)(unsigned int queue_id,
607                                        struct netdev_queue_stats *,
608                                        void *aux),
609                             void *aux);
610
611     /* If 'netdev' has an assigned IPv4 address, sets '*address' to that
612      * address and '*netmask' to the associated netmask.
613      *
614      * The following error values have well-defined meanings:
615      *
616      *   - EADDRNOTAVAIL: 'netdev' has no assigned IPv4 address.
617      *
618      *   - EOPNOTSUPP: No IPv4 network stack attached to 'netdev'.
619      *
620      * This function may be set to null if it would always return EOPNOTSUPP
621      * anyhow. */
622     int (*get_in4)(const struct netdev *netdev, struct in_addr *address,
623                    struct in_addr *netmask);
624
625     /* Assigns 'addr' as 'netdev''s IPv4 address and 'mask' as its netmask.  If
626      * 'addr' is INADDR_ANY, 'netdev''s IPv4 address is cleared.
627      *
628      * This function may be set to null if it would always return EOPNOTSUPP
629      * anyhow. */
630     int (*set_in4)(struct netdev *netdev, struct in_addr addr,
631                    struct in_addr mask);
632
633     /* If 'netdev' has an assigned IPv6 address, sets '*in6' to that address.
634      *
635      * The following error values have well-defined meanings:
636      *
637      *   - EADDRNOTAVAIL: 'netdev' has no assigned IPv6 address.
638      *
639      *   - EOPNOTSUPP: No IPv6 network stack attached to 'netdev'.
640      *
641      * This function may be set to null if it would always return EOPNOTSUPP
642      * anyhow. */
643     int (*get_in6)(const struct netdev *netdev, struct in6_addr *in6);
644
645     /* Adds 'router' as a default IP gateway for the TCP/IP stack that
646      * corresponds to 'netdev'.
647      *
648      * This function may be set to null if it would always return EOPNOTSUPP
649      * anyhow. */
650     int (*add_router)(struct netdev *netdev, struct in_addr router);
651
652     /* Looks up the next hop for 'host' in the host's routing table.  If
653      * successful, stores the next hop gateway's address (0 if 'host' is on a
654      * directly connected network) in '*next_hop' and a copy of the name of the
655      * device to reach 'host' in '*netdev_name', and returns 0.  The caller is
656      * responsible for freeing '*netdev_name' (by calling free()).
657      *
658      * This function may be set to null if it would always return EOPNOTSUPP
659      * anyhow. */
660     int (*get_next_hop)(const struct in_addr *host, struct in_addr *next_hop,
661                         char **netdev_name);
662
663     /* Retrieves driver information of the device.
664      *
665      * Populates 'smap' with key-value pairs representing the status of the
666      * device.  'smap' is a set of key-value string pairs representing netdev
667      * type specific information.  For more information see
668      * ovs-vswitchd.conf.db(5).
669      *
670      * The caller is responsible for destroying 'smap' and its data.
671      *
672      * This function may be set to null if it would always return EOPNOTSUPP
673      * anyhow. */
674     int (*get_status)(const struct netdev *netdev, struct smap *smap);
675
676     /* Looks up the ARP table entry for 'ip' on 'netdev' and stores the
677      * corresponding MAC address in 'mac'.  A return value of ENXIO, in
678      * particular, indicates that there is no ARP table entry for 'ip' on
679      * 'netdev'.
680      *
681      * This function may be set to null if it would always return EOPNOTSUPP
682      * anyhow. */
683     int (*arp_lookup)(const struct netdev *netdev, ovs_be32 ip,
684                       struct eth_addr *mac);
685
686     /* Retrieves the current set of flags on 'netdev' into '*old_flags'.  Then,
687      * turns off the flags that are set to 1 in 'off' and turns on the flags
688      * that are set to 1 in 'on'.  (No bit will be set to 1 in both 'off' and
689      * 'on'; that is, off & on == 0.)
690      *
691      * This function may be invoked from a signal handler.  Therefore, it
692      * should not do anything that is not signal-safe (such as logging). */
693     int (*update_flags)(struct netdev *netdev, enum netdev_flags off,
694                         enum netdev_flags on, enum netdev_flags *old_flags);
695
696 /* ## -------------------- ## */
697 /* ## netdev_rxq Functions ## */
698 /* ## -------------------- ## */
699
700 /* If a particular netdev class does not support receiving packets, all these
701  * function pointers must be NULL. */
702
703     /* Life-cycle functions for a netdev_rxq.  See the large comment above on
704      * struct netdev_class. */
705     struct netdev_rxq *(*rxq_alloc)(void);
706     int (*rxq_construct)(struct netdev_rxq *);
707     void (*rxq_destruct)(struct netdev_rxq *);
708     void (*rxq_dealloc)(struct netdev_rxq *);
709
710     /* Attempts to receive batch of packets from 'rx' and place array of
711      * pointers into '*pkts'. netdev is responsible for allocating buffers.
712      * '*cnt' points to packet count for given batch. Once packets are returned
713      * to caller, netdev should give up ownership of ofpbuf data.
714      *
715      * Implementations should allocate buffer with DP_NETDEV_HEADROOM headroom
716      * and add a VLAN header which is obtained out-of-band to the packet.
717      *
718      * Caller is expected to pass array of size MAX_RX_BATCH.
719      * This function may be set to null if it would always return EOPNOTSUPP
720      * anyhow. */
721     int (*rxq_recv)(struct netdev_rxq *rx, struct dp_packet **pkts,
722                     int *cnt);
723
724     /* Registers with the poll loop to wake up from the next call to
725      * poll_block() when a packet is ready to be received with netdev_rxq_recv()
726      * on 'rx'. */
727     void (*rxq_wait)(struct netdev_rxq *rx);
728
729     /* Discards all packets waiting to be received from 'rx'. */
730     int (*rxq_drain)(struct netdev_rxq *rx);
731 };
732
733 int netdev_register_provider(const struct netdev_class *);
734 int netdev_unregister_provider(const char *type);
735
736 #if defined(__FreeBSD__) || defined(__NetBSD__)
737 extern const struct netdev_class netdev_bsd_class;
738 #elif defined(_WIN32)
739 extern const struct netdev_class netdev_windows_class;
740 #else
741 extern const struct netdev_class netdev_linux_class;
742 #endif
743 extern const struct netdev_class netdev_internal_class;
744 extern const struct netdev_class netdev_tap_class;
745
746 #ifdef  __cplusplus
747 }
748 #endif
749
750 #endif /* netdev.h */