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