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