netdev: Add 'change_seq' back to netdev.
[sliver-openvswitch.git] / lib / netdev.h
1 /*
2  * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef NETDEV_H
18 #define NETDEV_H 1
19
20 #include <stdbool.h>
21 #include <stddef.h>
22 #include <stdint.h>
23 #include "openvswitch/types.h"
24
25 #ifdef  __cplusplus
26 extern "C" {
27 #endif
28
29 /* Generic interface to network devices ("netdev"s).
30  *
31  * Every port on a switch must have a corresponding netdev that must minimally
32  * support a few operations, such as the ability to read the netdev's MTU.
33  * The PORTING file at the top of the source tree has more information in the
34  * "Writing a netdev Provider" section.
35  *
36  * Thread-safety
37  * =============
38  *
39  * Most of the netdev functions are fully thread-safe: they may be called from
40  * any number of threads on the same or different netdev objects.  The
41  * exceptions are:
42  *
43  *    netdev_rxq_recv()
44  *    netdev_rxq_wait()
45  *    netdev_rxq_drain()
46  *
47  *      These functions are conditionally thread-safe: they may be called from
48  *      different threads only on different netdev_rxq objects.  (The client may
49  *      create multiple netdev_rxq objects for a single netdev and access each
50  *      of those from a different thread.)
51  *
52  *    NETDEV_FOR_EACH_QUEUE
53  *    netdev_queue_dump_next()
54  *    netdev_queue_dump_done()
55  *
56  *      These functions are conditionally thread-safe: they may be called from
57  *      different threads only on different netdev_queue_dump objects.  (The
58  *      client may create multiple netdev_queue_dump objects for a single
59  *      netdev and access each of those from a different thread.)
60  */
61
62 struct netdev;
63 struct netdev_class;
64 struct netdev_rxq;
65 struct netdev_saved_flags;
66 struct ofpbuf;
67 struct in_addr;
68 struct in6_addr;
69 struct smap;
70 struct sset;
71
72 /* Network device statistics.
73  *
74  * Values of unsupported statistics are set to all-1-bits (UINT64_MAX). */
75 struct netdev_stats {
76     uint64_t rx_packets;        /* Total packets received. */
77     uint64_t tx_packets;        /* Total packets transmitted. */
78     uint64_t rx_bytes;          /* Total bytes received. */
79     uint64_t tx_bytes;          /* Total bytes transmitted. */
80     uint64_t rx_errors;         /* Bad packets received. */
81     uint64_t tx_errors;         /* Packet transmit problems. */
82     uint64_t rx_dropped;        /* No buffer space. */
83     uint64_t tx_dropped;        /* No buffer space. */
84     uint64_t multicast;         /* Multicast packets received. */
85     uint64_t collisions;
86
87     /* Detailed receive errors. */
88     uint64_t rx_length_errors;
89     uint64_t rx_over_errors;    /* Receiver ring buff overflow. */
90     uint64_t rx_crc_errors;     /* Recved pkt with crc error. */
91     uint64_t rx_frame_errors;   /* Recv'd frame alignment error. */
92     uint64_t rx_fifo_errors;    /* Recv'r fifo overrun . */
93     uint64_t rx_missed_errors;  /* Receiver missed packet. */
94
95     /* Detailed transmit errors. */
96     uint64_t tx_aborted_errors;
97     uint64_t tx_carrier_errors;
98     uint64_t tx_fifo_errors;
99     uint64_t tx_heartbeat_errors;
100     uint64_t tx_window_errors;
101 };
102
103 /* Configuration specific to tunnels. */
104 struct netdev_tunnel_config {
105     bool in_key_present;
106     bool in_key_flow;
107     ovs_be64 in_key;
108
109     bool out_key_present;
110     bool out_key_flow;
111     ovs_be64 out_key;
112
113     ovs_be16 dst_port;
114
115     bool ip_src_flow;
116     bool ip_dst_flow;
117     ovs_be32 ip_src;
118     ovs_be32 ip_dst;
119
120     uint8_t ttl;
121     bool ttl_inherit;
122
123     uint8_t tos;
124     bool tos_inherit;
125
126     bool csum;
127     bool ipsec;
128     bool dont_fragment;
129 };
130
131 void netdev_run(void);
132 void netdev_wait(void);
133
134 void netdev_enumerate_types(struct sset *types);
135 bool netdev_is_reserved_name(const char *name);
136
137 int netdev_n_rxq(const struct netdev *netdev);
138 bool netdev_is_pmd(const struct netdev *netdev);
139
140 /* Open and close. */
141 int netdev_open(const char *name, const char *type, struct netdev **netdevp);
142
143 struct netdev *netdev_ref(const struct netdev *);
144 void netdev_close(struct netdev *);
145
146 void netdev_parse_name(const char *netdev_name, char **name, char **type);
147
148 /* Options. */
149 int netdev_set_config(struct netdev *, const struct smap *args);
150 int netdev_get_config(const struct netdev *, struct smap *);
151 const struct netdev_tunnel_config *
152     netdev_get_tunnel_config(const struct netdev *);
153
154 /* Basic properties. */
155 const char *netdev_get_name(const struct netdev *);
156 const char *netdev_get_type(const struct netdev *);
157 const char *netdev_get_type_from_name(const char *);
158 int netdev_get_mtu(const struct netdev *, int *mtup);
159 int netdev_set_mtu(const struct netdev *, int mtu);
160 int netdev_get_ifindex(const struct netdev *);
161
162 /* Packet reception. */
163 int netdev_rxq_open(struct netdev *, struct netdev_rxq **, int id);
164 void netdev_rxq_close(struct netdev_rxq *);
165
166 const char *netdev_rxq_get_name(const struct netdev_rxq *);
167
168 int netdev_rxq_recv(struct netdev_rxq *rx, struct ofpbuf **buffers, int *cnt);
169 void netdev_rxq_wait(struct netdev_rxq *);
170 int netdev_rxq_drain(struct netdev_rxq *);
171
172 /* Packet transmission. */
173 int netdev_send(struct netdev *, struct ofpbuf *, bool may_steal);
174 void netdev_send_wait(struct netdev *);
175
176 /* Hardware address. */
177 int netdev_set_etheraddr(struct netdev *, const uint8_t mac[6]);
178 int netdev_get_etheraddr(const struct netdev *, uint8_t mac[6]);
179
180 /* PHY interface. */
181 bool netdev_get_carrier(const struct netdev *);
182 long long int netdev_get_carrier_resets(const struct netdev *);
183 int netdev_set_miimon_interval(struct netdev *, long long int interval);
184
185 /* Features. */
186 enum netdev_features {
187     NETDEV_F_10MB_HD =    1 << 0,  /* 10 Mb half-duplex rate support. */
188     NETDEV_F_10MB_FD =    1 << 1,  /* 10 Mb full-duplex rate support. */
189     NETDEV_F_100MB_HD =   1 << 2,  /* 100 Mb half-duplex rate support. */
190     NETDEV_F_100MB_FD =   1 << 3,  /* 100 Mb full-duplex rate support. */
191     NETDEV_F_1GB_HD =     1 << 4,  /* 1 Gb half-duplex rate support. */
192     NETDEV_F_1GB_FD =     1 << 5,  /* 1 Gb full-duplex rate support. */
193     NETDEV_F_10GB_FD =    1 << 6,  /* 10 Gb full-duplex rate support. */
194     NETDEV_F_40GB_FD =    1 << 7,  /* 40 Gb full-duplex rate support. */
195     NETDEV_F_100GB_FD =   1 << 8,  /* 100 Gb full-duplex rate support. */
196     NETDEV_F_1TB_FD =     1 << 9,  /* 1 Tb full-duplex rate support. */
197     NETDEV_F_OTHER =      1 << 10, /* Other rate, not in the list. */
198     NETDEV_F_COPPER =     1 << 11, /* Copper medium. */
199     NETDEV_F_FIBER =      1 << 12, /* Fiber medium. */
200     NETDEV_F_AUTONEG =    1 << 13, /* Auto-negotiation. */
201     NETDEV_F_PAUSE =      1 << 14, /* Pause. */
202     NETDEV_F_PAUSE_ASYM = 1 << 15, /* Asymmetric pause. */
203 };
204
205 int netdev_get_features(const struct netdev *,
206                         enum netdev_features *current,
207                         enum netdev_features *advertised,
208                         enum netdev_features *supported,
209                         enum netdev_features *peer);
210 uint64_t netdev_features_to_bps(enum netdev_features features,
211                                 uint64_t default_bps);
212 bool netdev_features_is_full_duplex(enum netdev_features features);
213 int netdev_set_advertisements(struct netdev *, enum netdev_features advertise);
214
215 /* Flags. */
216 enum netdev_flags {
217     NETDEV_UP = 0x0001,         /* Device enabled? */
218     NETDEV_PROMISC = 0x0002,    /* Promiscuous mode? */
219     NETDEV_LOOPBACK = 0x0004    /* This is a loopback device. */
220 };
221
222 int netdev_get_flags(const struct netdev *, enum netdev_flags *);
223 int netdev_set_flags(struct netdev *, enum netdev_flags,
224                      struct netdev_saved_flags **);
225 int netdev_turn_flags_on(struct netdev *, enum netdev_flags,
226                          struct netdev_saved_flags **);
227 int netdev_turn_flags_off(struct netdev *, enum netdev_flags,
228                           struct netdev_saved_flags **);
229
230 void netdev_restore_flags(struct netdev_saved_flags *);
231
232 /* TCP/IP stack interface. */
233 int netdev_get_in4(const struct netdev *, struct in_addr *address,
234                    struct in_addr *netmask);
235 int netdev_set_in4(struct netdev *, struct in_addr addr, struct in_addr mask);
236 int netdev_get_in4_by_name(const char *device_name, struct in_addr *in4);
237 int netdev_get_in6(const struct netdev *, struct in6_addr *);
238 int netdev_add_router(struct netdev *, struct in_addr router);
239 int netdev_get_next_hop(const struct netdev *, const struct in_addr *host,
240                         struct in_addr *next_hop, char **);
241 int netdev_get_status(const struct netdev *, struct smap *);
242 int netdev_arp_lookup(const struct netdev *, ovs_be32 ip, uint8_t mac[6]);
243
244 struct netdev *netdev_find_dev_by_in4(const struct in_addr *);
245
246 /* Statistics. */
247 int netdev_get_stats(const struct netdev *, struct netdev_stats *);
248 int netdev_set_stats(struct netdev *, const struct netdev_stats *);
249
250 /* Quality of service. */
251 struct netdev_qos_capabilities {
252     unsigned int n_queues;
253 };
254
255 struct netdev_queue_stats {
256     /* Values of unsupported statistics are set to all-1-bits (UINT64_MAX). */
257     uint64_t tx_bytes;
258     uint64_t tx_packets;
259     uint64_t tx_errors;
260
261     /* Time at which the queue was created, in msecs, LLONG_MIN if unknown. */
262     long long int created;
263 };
264
265 int netdev_set_policing(struct netdev *, uint32_t kbits_rate,
266                         uint32_t kbits_burst);
267
268 int netdev_get_qos_types(const struct netdev *, struct sset *types);
269 int netdev_get_qos_capabilities(const struct netdev *,
270                                 const char *type,
271                                 struct netdev_qos_capabilities *);
272 int netdev_get_n_queues(const struct netdev *,
273                         const char *type, unsigned int *n_queuesp);
274
275 int netdev_get_qos(const struct netdev *,
276                    const char **typep, struct smap *details);
277 int netdev_set_qos(struct netdev *,
278                    const char *type, const struct smap *details);
279
280 int netdev_get_queue(const struct netdev *,
281                      unsigned int queue_id, struct smap *details);
282 int netdev_set_queue(struct netdev *,
283                      unsigned int queue_id, const struct smap *details);
284 int netdev_delete_queue(struct netdev *, unsigned int queue_id);
285 int netdev_get_queue_stats(const struct netdev *, unsigned int queue_id,
286                            struct netdev_queue_stats *);
287 uint64_t netdev_get_change_seq(const struct netdev *);
288
289 struct netdev_queue_dump {
290     struct netdev *netdev;
291     int error;
292     void *state;
293 };
294 void netdev_queue_dump_start(struct netdev_queue_dump *,
295                              const struct netdev *);
296 bool netdev_queue_dump_next(struct netdev_queue_dump *,
297                             unsigned int *queue_id, struct smap *details);
298 int netdev_queue_dump_done(struct netdev_queue_dump *);
299
300 /* Iterates through each queue in NETDEV, using DUMP as state.  Fills QUEUE_ID
301  * and DETAILS with information about queues.  The client must initialize and
302  * destroy DETAILS.
303  *
304  * Arguments all have pointer type.
305  *
306  * If you break out of the loop, then you need to free the dump structure by
307  * hand using netdev_queue_dump_done(). */
308 #define NETDEV_QUEUE_FOR_EACH(QUEUE_ID, DETAILS, DUMP, NETDEV)  \
309     for (netdev_queue_dump_start(DUMP, NETDEV);                 \
310          (netdev_queue_dump_next(DUMP, QUEUE_ID, DETAILS)       \
311           ? true                                                \
312           : (netdev_queue_dump_done(DUMP), false));             \
313         )
314
315 typedef void netdev_dump_queue_stats_cb(unsigned int queue_id,
316                                         struct netdev_queue_stats *,
317                                         void *aux);
318 int netdev_dump_queue_stats(const struct netdev *,
319                             netdev_dump_queue_stats_cb *, void *aux);
320
321 enum { NETDEV_MAX_RX_BATCH = 256 };     /* Maximum number packets in rx_recv() batch. */
322
323 #ifdef  __cplusplus
324 }
325 #endif
326
327 #endif /* netdev.h */