vswitchd: New column "link_resets".
[sliver-openvswitch.git] / lib / netdev-provider.h
1 /*
2  * Copyright (c) 2009, 2010, 2011 Nicira Networks.
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 <assert.h>
23
24 #include "netdev.h"
25 #include "list.h"
26 #include "shash.h"
27
28 #ifdef  __cplusplus
29 extern "C" {
30 #endif
31
32 /* A network device (e.g. an Ethernet device).
33  *
34  * This structure should be treated as opaque by network device
35  * implementations. */
36 struct netdev_dev {
37     char *name;                         /* Name of network device. */
38     const struct netdev_class *netdev_class; /* Functions to control
39                                                 this device. */
40     int ref_cnt;                        /* Times this devices was opened. */
41     struct shash_node *node;            /* Pointer to element in global map. */
42 };
43
44 void netdev_dev_init(struct netdev_dev *, const char *name,
45                      const struct netdev_class *);
46 void netdev_dev_uninit(struct netdev_dev *, bool destroy);
47 const char *netdev_dev_get_type(const struct netdev_dev *);
48 const struct netdev_class *netdev_dev_get_class(const struct netdev_dev *);
49 const char *netdev_dev_get_name(const struct netdev_dev *);
50 struct netdev_dev *netdev_dev_from_name(const char *name);
51 void netdev_dev_get_devices(const struct netdev_class *,
52                             struct shash *device_list);
53
54 static inline void netdev_dev_assert_class(const struct netdev_dev *netdev_dev,
55                                            const struct netdev_class *class_)
56 {
57     assert(netdev_dev->netdev_class == class_);
58 }
59
60 /* A instance of an open network device.
61  *
62  * This structure should be treated as opaque by network device
63  * implementations. */
64 struct netdev {
65     struct netdev_dev *netdev_dev;   /* Parent netdev_dev. */
66     struct list node;                /* Element in global list. */
67
68     enum netdev_flags save_flags;    /* Initial device flags. */
69     enum netdev_flags changed_flags; /* Flags that we changed. */
70 };
71
72 void netdev_init(struct netdev *, struct netdev_dev *);
73 void netdev_uninit(struct netdev *, bool close);
74 struct netdev_dev *netdev_get_dev(const struct netdev *);
75
76 static inline void netdev_assert_class(const struct netdev *netdev,
77                                        const struct netdev_class *netdev_class)
78 {
79     netdev_dev_assert_class(netdev_get_dev(netdev), netdev_class);
80 }
81
82 /* Network device class structure, to be defined by each implementation of a
83  * network device.
84  *
85  * These functions return 0 if successful or a positive errno value on failure,
86  * except where otherwise noted. */
87 struct netdev_class {
88     /* Type of netdevs in this class, e.g. "system", "tap", "gre", etc.
89      *
90      * One of the providers should supply a "system" type, since this is
91      * the type assumed if no type is specified when opening a netdev.
92      * The "system" type corresponds to an existing network device on
93      * the system. */
94     const char *type;
95
96     /* Called when the netdev provider is registered, typically at program
97      * startup.  Returning an error from this function will prevent any network
98      * device in this class from being opened.
99      *
100      * This function may be set to null if a network device class needs no
101      * initialization at registration time. */
102     int (*init)(void);
103
104     /* Performs periodic work needed by netdevs of this class.  May be null if
105      * no periodic work is necessary. */
106     void (*run)(void);
107
108     /* Arranges for poll_block() to wake up if the "run" member function needs
109      * to be called.  Implementations are additionally required to wake
110      * whenever something changes in any of its netdevs which would cause their
111      * ->change_seq() function to change its result.  May be null if nothing is
112      * needed here. */
113     void (*wait)(void);
114
115     /* Attempts to create a network device named 'name' in 'netdev_class'.  On
116      * success sets 'netdev_devp' to the newly created device. */
117     int (*create)(const struct netdev_class *netdev_class, const char *name,
118                   struct netdev_dev **netdev_devp);
119
120     /* Destroys 'netdev_dev'.
121      *
122      * Netdev devices maintain a reference count that is incremented on
123      * netdev_open() and decremented on netdev_close().  If 'netdev_dev'
124      * has a non-zero reference count, then this function will not be
125      * called. */
126     void (*destroy)(struct netdev_dev *netdev_dev);
127
128     /* Fetches the device 'netdev_dev''s configuration, storing it in 'args'.
129      * The caller owns 'args' and pre-initializes it to an empty shash.
130      *
131      * If this netdev class does not have any configuration options, this may
132      * be a null pointer. */
133     int (*get_config)(struct netdev_dev *netdev_dev, struct shash *args);
134
135     /* Changes the device 'netdev_dev''s configuration to 'args'.
136      *
137      * If this netdev class does not support configuration, this may be a null
138      * pointer. */
139     int (*set_config)(struct netdev_dev *netdev_dev, const struct shash *args);
140
141     /* Attempts to open a network device.  On success, sets 'netdevp'
142      * to the new network device. */
143     int (*open)(struct netdev_dev *netdev_dev, struct netdev **netdevp);
144
145     /* Closes 'netdev'. */
146     void (*close)(struct netdev *netdev);
147 \f
148 /* ## ----------------- ## */
149 /* ## Receiving Packets ## */
150 /* ## ----------------- ## */
151
152 /* The network provider interface is mostly used for inspecting and configuring
153  * device "metadata", not for sending and receiving packets directly.  It may
154  * be impractical to implement these functions on some operating systems and
155  * hardware.  These functions may all be NULL in such cases.
156  *
157  * (However, the "dpif-netdev" implementation, which is the easiest way to
158  * integrate Open vSwitch with a new operating system or hardware, does require
159  * the ability to receive packets.) */
160
161     /* Attempts to set up 'netdev' for receiving packets with ->recv().
162      * Returns 0 if successful, otherwise a positive errno value.  Return
163      * EOPNOTSUPP to indicate that the network device does not implement packet
164      * reception through this interface.  This function may be set to null if
165      * it would always return EOPNOTSUPP anyhow.  (This will prevent the
166      * network device from being usefully used by the netdev-based "userspace
167      * datapath".)*/
168     int (*listen)(struct netdev *netdev);
169
170     /* Attempts to receive a packet from 'netdev' into the 'size' bytes in
171      * 'buffer'.  If successful, returns the number of bytes in the received
172      * packet, otherwise a negative errno value.  Returns -EAGAIN immediately
173      * if no packet is ready to be received.
174      *
175      * This function can only be expected to return a packet if ->listen() has
176      * been called successfully.
177      *
178      * May be null if not needed, such as for a network device that does not
179      * implement packet reception through the 'recv' member function. */
180     int (*recv)(struct netdev *netdev, void *buffer, size_t size);
181
182     /* Registers with the poll loop to wake up from the next call to
183      * poll_block() when a packet is ready to be received with netdev_recv() on
184      * 'netdev'.
185      *
186      * May be null if not needed, such as for a network device that does not
187      * implement packet reception through the 'recv' member function. */
188     void (*recv_wait)(struct netdev *netdev);
189
190     /* Discards all packets waiting to be received from 'netdev'.
191      *
192      * May be null if not needed, such as for a network device that does not
193      * implement packet reception through the 'recv' member function. */
194     int (*drain)(struct netdev *netdev);
195 \f
196     /* Sends the 'size'-byte packet in 'buffer' on 'netdev'.  Returns 0 if
197      * successful, otherwise a positive errno value.  Returns EAGAIN without
198      * blocking if the packet cannot be queued immediately.  Returns EMSGSIZE
199      * if a partial packet was transmitted or if the packet is too big or too
200      * small to transmit on the device.
201      *
202      * The caller retains ownership of 'buffer' in all cases.
203      *
204      * The network device is expected to maintain a packet transmission queue,
205      * so that the caller does not ordinarily have to do additional queuing of
206      * packets.
207      *
208      * May return EOPNOTSUPP if a network device does not implement packet
209      * transmission through this interface.  This function may be set to null
210      * if it would always return EOPNOTSUPP anyhow.  (This will prevent the
211      * network device from being usefully used by the netdev-based "userspace
212      * datapath".  It will also prevent the OVS implementation of bonding from
213      * working properly over 'netdev'.) */
214     int (*send)(struct netdev *netdev, const void *buffer, size_t size);
215
216     /* Registers with the poll loop to wake up from the next call to
217      * poll_block() when the packet transmission queue for 'netdev' has
218      * sufficient room to transmit a packet with netdev_send().
219      *
220      * The network device is expected to maintain a packet transmission queue,
221      * so that the caller does not ordinarily have to do additional queuing of
222      * packets.  Thus, this function is unlikely to ever be useful.
223      *
224      * May be null if not needed, such as for a network device that does not
225      * implement packet transmission through the 'send' member function. */
226     void (*send_wait)(struct netdev *netdev);
227
228     /* Sets 'netdev''s Ethernet address to 'mac' */
229     int (*set_etheraddr)(struct netdev *netdev, const uint8_t mac[6]);
230
231     /* Retrieves 'netdev''s Ethernet address into 'mac'. */
232     int (*get_etheraddr)(const struct netdev *netdev, uint8_t mac[6]);
233
234     /* Retrieves 'netdev''s MTU into '*mtup'.
235      *
236      * The MTU is the maximum size of transmitted (and received) packets, in
237      * bytes, not including the hardware header; thus, this is typically 1500
238      * bytes for Ethernet devices.
239      *
240      * If 'netdev' does not have an MTU (e.g. as some tunnels do not), then
241      * this function should return EOPNOTSUPP.  This function may be set to
242      * null if it would always return EOPNOTSUPP. */
243     int (*get_mtu)(const struct netdev *netdev, int *mtup);
244
245     /* Sets 'netdev''s MTU to 'mtu'.
246      *
247      * If 'netdev' does not have an MTU (e.g. as some tunnels do not), then
248      * this function should return EOPNOTSUPP.  This function may be set to
249      * null if it would always return EOPNOTSUPP. */
250     int (*set_mtu)(const struct netdev *netdev, int mtu);
251
252     /* Returns the ifindex of 'netdev', if successful, as a positive number.
253      * On failure, returns a negative errno value.
254      *
255      * The desired semantics of the ifindex value are a combination of those
256      * specified by POSIX for if_nametoindex() and by SNMP for ifIndex.  An
257      * ifindex value should be unique within a host and remain stable at least
258      * until reboot.  SNMP says an ifindex "ranges between 1 and the value of
259      * ifNumber" but many systems do not follow this rule anyhow.
260      *
261      * This function may be set to null if it would always return -EOPNOTSUPP.
262      */
263     int (*get_ifindex)(const struct netdev *netdev);
264
265     /* Sets 'carrier' to true if carrier is active (link light is on) on
266      * 'netdev'.
267      *
268      * May be null if device does not provide carrier status (will be always
269      * up as long as device is up).
270      */
271     int (*get_carrier)(const struct netdev *netdev, bool *carrier);
272
273     /* Returns the number of times 'netdev''s carrier has changed since being
274      * initialized.
275      *
276      * If null, callers will assume the number of carrier resets is zero. */
277     long long int (*get_carrier_resets)(const struct netdev *netdev);
278
279     /* Forces ->get_carrier() to poll 'netdev''s MII registers for link status
280      * instead of checking 'netdev''s carrier.  'netdev''s MII registers will
281      * be polled once ever 'interval' milliseconds.  If 'netdev' does not
282      * support MII, another method may be used as a fallback.  If 'interval' is
283      * less than or equal to zero, reverts ->get_carrier() to its normal
284      * behavior.
285      *
286      * Most network devices won't support this feature and will set this
287      * function pointer to NULL, which is equivalent to returning EOPNOTSUPP.
288      */
289     int (*set_miimon_interval)(struct netdev *netdev, long long int interval);
290
291     /* Retrieves current device stats for 'netdev' into 'stats'.
292      *
293      * A network device that supports some statistics but not others, it should
294      * set the values of the unsupported statistics to all-1-bits
295      * (UINT64_MAX). */
296     int (*get_stats)(const struct netdev *netdev, struct netdev_stats *);
297
298     /* Sets the device stats for 'netdev' to 'stats'.
299      *
300      * Most network devices won't support this feature and will set this
301      * function pointer to NULL, which is equivalent to returning EOPNOTSUPP.
302      *
303      * Some network devices might only allow setting their stats to 0. */
304     int (*set_stats)(struct netdev *netdev, const struct netdev_stats *);
305
306     /* Stores the features supported by 'netdev' into each of '*current',
307      * '*advertised', '*supported', and '*peer'.  Each value is a bitmap of
308      * "enum ofp_port_features" bits, in host byte order.
309      *
310      * This function may be set to null if it would always return EOPNOTSUPP.
311      */
312     int (*get_features)(const struct netdev *netdev,
313                         uint32_t *current, uint32_t *advertised,
314                         uint32_t *supported, uint32_t *peer);
315
316     /* Set the features advertised by 'netdev' to 'advertise', which is a
317      * bitmap of "enum ofp_port_features" bits, in host byte order.
318      *
319      * This function may be set to null for a network device that does not
320      * support configuring advertisements. */
321     int (*set_advertisements)(struct netdev *netdev, uint32_t advertise);
322
323     /* If 'netdev' is a VLAN network device (e.g. one created with vconfig(8)),
324      * sets '*vlan_vid' to the VLAN VID associated with that device and returns
325      * 0.
326      *
327      * Returns ENOENT if 'netdev' is a network device that is not a
328      * VLAN device.
329      *
330      * This function should be set to null if it doesn't make any sense for
331      * your network device (it probably doesn't). */
332     int (*get_vlan_vid)(const struct netdev *netdev, int *vlan_vid);
333
334     /* Attempts to set input rate limiting (policing) policy, such that up to
335      * 'kbits_rate' kbps of traffic is accepted, with a maximum accumulative
336      * burst size of 'kbits' kb.
337      *
338      * This function may be set to null if policing is not supported. */
339     int (*set_policing)(struct netdev *netdev, unsigned int kbits_rate,
340                         unsigned int kbits_burst);
341
342     /* Adds to 'types' all of the forms of QoS supported by 'netdev', or leaves
343      * it empty if 'netdev' does not support QoS.  Any names added to 'types'
344      * should be documented as valid for the "type" column in the "QoS" table
345      * in vswitchd/vswitch.xml (which is built as ovs-vswitchd.conf.db(8)).
346      *
347      * Every network device must support disabling QoS with a type of "", but
348      * this function must not add "" to 'types'.
349      *
350      * The caller is responsible for initializing 'types' (e.g. with
351      * sset_init()) before calling this function.  The caller retains ownership
352      * of 'types'.
353      *
354      * May be NULL if 'netdev' does not support QoS at all. */
355     int (*get_qos_types)(const struct netdev *netdev, struct sset *types);
356
357     /* Queries 'netdev' for its capabilities regarding the specified 'type' of
358      * QoS.  On success, initializes 'caps' with the QoS capabilities.
359      *
360      * Should return EOPNOTSUPP if 'netdev' does not support 'type'.  May be
361      * NULL if 'netdev' does not support QoS at all. */
362     int (*get_qos_capabilities)(const struct netdev *netdev,
363                                 const char *type,
364                                 struct netdev_qos_capabilities *caps);
365
366     /* Queries 'netdev' about its currently configured form of QoS.  If
367      * successful, stores the name of the current form of QoS into '*typep'
368      * and any details of configuration as string key-value pairs in
369      * 'details'.
370      *
371      * A '*typep' of "" indicates that QoS is currently disabled on 'netdev'.
372      *
373      * The caller initializes 'details' before calling this function.  The
374      * caller takes ownership of the string key-values pairs added to
375      * 'details'.
376      *
377      * The netdev retains ownership of '*typep'.
378      *
379      * '*typep' will be one of the types returned by netdev_get_qos_types() for
380      * 'netdev'.  The contents of 'details' should be documented as valid for
381      * '*typep' in the "other_config" column in the "QoS" table in
382      * vswitchd/vswitch.xml (which is built as ovs-vswitchd.conf.db(8)).
383      *
384      * May be NULL if 'netdev' does not support QoS at all. */
385     int (*get_qos)(const struct netdev *netdev,
386                    const char **typep, struct shash *details);
387
388     /* Attempts to reconfigure QoS on 'netdev', changing the form of QoS to
389      * 'type' with details of configuration from 'details'.
390      *
391      * On error, the previous QoS configuration is retained.
392      *
393      * When this function changes the type of QoS (not just 'details'), this
394      * also resets all queue configuration for 'netdev' to their defaults
395      * (which depend on the specific type of QoS).  Otherwise, the queue
396      * configuration for 'netdev' is unchanged.
397      *
398      * 'type' should be "" (to disable QoS) or one of the types returned by
399      * netdev_get_qos_types() for 'netdev'.  The contents of 'details' should
400      * be documented as valid for the given 'type' in the "other_config" column
401      * in the "QoS" table in vswitchd/vswitch.xml (which is built as
402      * ovs-vswitchd.conf.db(8)).
403      *
404      * May be NULL if 'netdev' does not support QoS at all. */
405     int (*set_qos)(struct netdev *netdev,
406                    const char *type, const struct shash *details);
407
408     /* Queries 'netdev' for information about the queue numbered 'queue_id'.
409      * If successful, adds that information as string key-value pairs to
410      * 'details'.  Returns 0 if successful, otherwise a positive errno value.
411      *
412      * Should return EINVAL if 'queue_id' is greater than or equal to the
413      * number of supported queues (as reported in the 'n_queues' member of
414      * struct netdev_qos_capabilities by 'get_qos_capabilities').
415      *
416      * The caller initializes 'details' before calling this function.  The
417      * caller takes ownership of the string key-values pairs added to
418      * 'details'.
419      *
420      * The returned contents of 'details' should be documented as valid for the
421      * given 'type' in the "other_config" column in the "Queue" table in
422      * vswitchd/vswitch.xml (which is built as ovs-vswitchd.conf.db(8)).
423      */
424     int (*get_queue)(const struct netdev *netdev,
425                      unsigned int queue_id, struct shash *details);
426
427     /* Configures the queue numbered 'queue_id' on 'netdev' with the key-value
428      * string pairs in 'details'.  The contents of 'details' should be
429      * documented as valid for the given 'type' in the "other_config" column in
430      * the "Queue" table in vswitchd/vswitch.xml (which is built as
431      * ovs-vswitchd.conf.db(8)).  Returns 0 if successful, otherwise a positive
432      * errno value.  On failure, the given queue's configuration should be
433      * unmodified.
434      *
435      * Should return EINVAL if 'queue_id' is greater than or equal to the
436      * number of supported queues (as reported in the 'n_queues' member of
437      * struct netdev_qos_capabilities by 'get_qos_capabilities'), or if
438      * 'details' is invalid for the type of queue.
439      *
440      * This function does not modify 'details', and the caller retains
441      * ownership of it.
442      *
443      * May be NULL if 'netdev' does not support QoS at all. */
444     int (*set_queue)(struct netdev *netdev,
445                      unsigned int queue_id, const struct shash *details);
446
447     /* Attempts to delete the queue numbered 'queue_id' from 'netdev'.
448      *
449      * Should return EINVAL if 'queue_id' is greater than or equal to the
450      * number of supported queues (as reported in the 'n_queues' member of
451      * struct netdev_qos_capabilities by 'get_qos_capabilities').  Should
452      * return EOPNOTSUPP if 'queue_id' is valid but may not be deleted (e.g. if
453      * 'netdev' has a fixed set of queues with the current QoS mode).
454      *
455      * May be NULL if 'netdev' does not support QoS at all, or if all of its
456      * QoS modes have fixed sets of queues. */
457     int (*delete_queue)(struct netdev *netdev, unsigned int queue_id);
458
459     /* Obtains statistics about 'queue_id' on 'netdev'.  Fills 'stats' with the
460      * queue's statistics.  May set individual members of 'stats' to all-1-bits
461      * if the statistic is unavailable.
462      *
463      * May be NULL if 'netdev' does not support QoS at all. */
464     int (*get_queue_stats)(const struct netdev *netdev, unsigned int queue_id,
465                            struct netdev_queue_stats *stats);
466
467     /* Iterates over all of 'netdev''s queues, calling 'cb' with the queue's
468      * ID, its configuration, and the 'aux' specified by the caller.  The order
469      * of iteration is unspecified, but (when successful) each queue is visited
470      * exactly once.
471      *
472      * 'cb' will not modify or free the 'details' argument passed in. */
473     int (*dump_queues)(const struct netdev *netdev,
474                        void (*cb)(unsigned int queue_id,
475                                   const struct shash *details,
476                                   void *aux),
477                        void *aux);
478
479     /* Iterates over all of 'netdev''s queues, calling 'cb' with the queue's
480      * ID, its statistics, and the 'aux' specified by the caller.  The order of
481      * iteration is unspecified, but (when successful) each queue must be
482      * visited exactly once.
483      *
484      * 'cb' will not modify or free the statistics passed in. */
485     int (*dump_queue_stats)(const struct netdev *netdev,
486                             void (*cb)(unsigned int queue_id,
487                                        struct netdev_queue_stats *,
488                                        void *aux),
489                             void *aux);
490
491     /* If 'netdev' has an assigned IPv4 address, sets '*address' to that
492      * address and '*netmask' to the associated netmask.
493      *
494      * The following error values have well-defined meanings:
495      *
496      *   - EADDRNOTAVAIL: 'netdev' has no assigned IPv4 address.
497      *
498      *   - EOPNOTSUPP: No IPv4 network stack attached to 'netdev'.
499      *
500      * This function may be set to null if it would always return EOPNOTSUPP
501      * anyhow. */
502     int (*get_in4)(const struct netdev *netdev, struct in_addr *address,
503                    struct in_addr *netmask);
504
505     /* Assigns 'addr' as 'netdev''s IPv4 address and 'mask' as its netmask.  If
506      * 'addr' is INADDR_ANY, 'netdev''s IPv4 address is cleared.
507      *
508      * This function may be set to null if it would always return EOPNOTSUPP
509      * anyhow. */
510     int (*set_in4)(struct netdev *netdev, struct in_addr addr,
511                    struct in_addr mask);
512
513     /* If 'netdev' has an assigned IPv6 address, sets '*in6' to that address.
514      *
515      * The following error values have well-defined meanings:
516      *
517      *   - EADDRNOTAVAIL: 'netdev' has no assigned IPv6 address.
518      *
519      *   - EOPNOTSUPP: No IPv6 network stack attached to 'netdev'.
520      *
521      * This function may be set to null if it would always return EOPNOTSUPP
522      * anyhow. */
523     int (*get_in6)(const struct netdev *netdev, struct in6_addr *in6);
524
525     /* Adds 'router' as a default IP gateway for the TCP/IP stack that
526      * corresponds to 'netdev'.
527      *
528      * This function may be set to null if it would always return EOPNOTSUPP
529      * anyhow. */
530     int (*add_router)(struct netdev *netdev, struct in_addr router);
531
532     /* Looks up the next hop for 'host'.  If succesful, stores the next hop
533      * gateway's address (0 if 'host' is on a directly connected network) in
534      * '*next_hop' and a copy of the name of the device to reach 'host' in
535      * '*netdev_name', and returns 0.  The caller is responsible for freeing
536      * '*netdev_name' (by calling free()).
537      *
538      * This function may be set to null if it would always return EOPNOTSUPP
539      * anyhow. */
540     int (*get_next_hop)(const struct in_addr *host, struct in_addr *next_hop,
541                         char **netdev_name);
542
543     /* Retrieves the status of the device.
544      *
545      * Populates 'sh' with key-value pairs representing the status of the
546      * device.  A device's status is a set of key-value string pairs
547      * representing netdev type specific information.  For more information see
548      * ovs-vswitchd.conf.db(5).
549      *
550      * The data of 'sh' are heap allocated strings which the caller is
551      * responsible for deallocating.
552      *
553      * This function may be set to null if it would always return EOPNOTSUPP
554      * anyhow. */
555     int (*get_status)(const struct netdev *netdev, struct shash *sh);
556
557     /* Looks up the ARP table entry for 'ip' on 'netdev' and stores the
558      * corresponding MAC address in 'mac'.  A return value of ENXIO, in
559      * particular, indicates that there is no ARP table entry for 'ip' on
560      * 'netdev'.
561      *
562      * This function may be set to null if it would always return EOPNOTSUPP
563      * anyhow. */
564     int (*arp_lookup)(const struct netdev *netdev, ovs_be32 ip,
565                       uint8_t mac[6]);
566
567     /* Retrieves the current set of flags on 'netdev' into '*old_flags'.
568      * Then, turns off the flags that are set to 1 in 'off' and turns on the
569      * flags that are set to 1 in 'on'.  (No bit will be set to 1 in both 'off'
570      * and 'on'; that is, off & on == 0.)
571      *
572      * This function may be invoked from a signal handler.  Therefore, it
573      * should not do anything that is not signal-safe (such as logging). */
574     int (*update_flags)(struct netdev *netdev, enum netdev_flags off,
575                         enum netdev_flags on, enum netdev_flags *old_flags);
576
577     /* Returns a sequence number which indicates changes in one of 'netdev''s
578      * properties.  The returned sequence number must be nonzero so that
579      * callers have a value which they may use as a reset when tracking
580      * 'netdev'.
581      *
582      * Minimally, the returned sequence number is required to change whenever
583      * 'netdev''s flags, features, ethernet address, or carrier changes.  The
584      * returned sequence number is allowed to change even when 'netdev' doesn't
585      * change, although implementations should try to avoid this. */
586     unsigned int (*change_seq)(const struct netdev *netdev);
587 };
588
589 int netdev_register_provider(const struct netdev_class *);
590 int netdev_unregister_provider(const char *type);
591 const struct netdev_class *netdev_lookup_provider(const char *type);
592
593 extern const struct netdev_class netdev_linux_class;
594 extern const struct netdev_class netdev_internal_class;
595 extern const struct netdev_class netdev_tap_class;
596
597 #ifdef  __cplusplus
598 }
599 #endif
600
601 #endif /* netdev.h */