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