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