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