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