]> git.proxmox.com Git - mirror_ovs.git/blame - lib/netdev.h
netdev-native-tnl: refactor the tunnel push header.
[mirror_ovs.git] / lib / netdev.h
CommitLineData
064af421 1/*
275707c3 2 * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
064af421 3 *
a14bc59f
BP
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:
064af421 7 *
a14bc59f
BP
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.
064af421
BP
15 */
16
17#ifndef NETDEV_H
18#define NETDEV_H 1
19
b129cc98 20#include "openvswitch/netdev.h"
dbba996b 21#include "openvswitch/types.h"
3bd0fd39 22#include "packets.h"
c876a4bb 23#include "flow.h"
064af421 24
fbfffdbb
BP
25#ifdef __cplusplus
26extern "C" {
27#endif
28
ef5b15ac 29/* Generic interface to network devices ("netdev"s).
064af421 30 *
ef5b15ac
BP
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.
7c9afefd 33 * The Porting section of the documentation has more information in the
86383816
BP
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 *
f7791740
PS
43 * netdev_rxq_recv()
44 * netdev_rxq_wait()
45 * netdev_rxq_drain()
86383816
BP
46 *
47 * These functions are conditionally thread-safe: they may be called from
f7791740
PS
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
89454bf4
BP
50 * of those from a different thread.)
51 *
258e42fa 52 * NETDEV_QUEUE_FOR_EACH
89454bf4
BP
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 */
064af421 61
1895cc8d 62struct dp_packet_batch;
e14deea0 63struct dp_packet;
796223f5 64struct netdev_class;
f7791740 65struct netdev_rxq;
4b609110 66struct netdev_saved_flags;
064af421
BP
67struct ofpbuf;
68struct in_addr;
69struct in6_addr;
79f1cbe9 70struct smap;
19993ef3 71struct sset;
a36de779 72struct ovs_action_push_tnl;
064af421 73
875ab130
BP
74enum netdev_pt_mode {
75 /* The netdev is packet type aware. It can potentially carry any kind of
76 * packet. This "modern" mode is appropriate for both netdevs that handle
77 * only a single kind of packet (such as a virtual or physical Ethernet
78 * interface) and for those that can handle multiple (such as VXLAN-GPE or
79 * Geneve). */
80 NETDEV_PT_AWARE,
81
82 /* The netdev sends and receives only Ethernet frames. The netdev cannot
83 * carry packets other than Ethernet frames. This is a legacy mode for
84 * backward compability with controllers that are not prepared to handle
85 * OpenFlow 1.5+ "packet_type". */
86 NETDEV_PT_LEGACY_L2,
87
88 /* The netdev sends and receives only IPv4 and IPv6 packets. The netdev
89 * cannot carry Ethernet frames or other kinds of packets.
90 *
91 * IPv4 and IPv6 packets carried over the netdev are treated as Ethernet:
92 * when they are received, they are converted to Ethernet by adding a dummy
93 * header with the proper Ethertype; on tranmission, the Ethernet header is
94 * stripped. This is a legacy mode for backward compability with
95 * controllers that are not prepared to handle OpenFlow 1.5+
96 * "packet_type". */
97 NETDEV_PT_LEGACY_L3,
98};
99
f431bf7d
EJ
100/* Configuration specific to tunnels. */
101struct netdev_tunnel_config {
fea6740f 102 ovs_be64 in_key;
f431bf7d
EJ
103 bool in_key_present;
104 bool in_key_flow;
f431bf7d
EJ
105
106 bool out_key_present;
107 bool out_key_flow;
108 ovs_be64 out_key;
109
110 ovs_be16 dst_port;
111
0ad90c84
JR
112 bool ip_src_flow;
113 bool ip_dst_flow;
3ae91c01
JB
114 struct in6_addr ipv6_src;
115 struct in6_addr ipv6_dst;
f431bf7d 116
526df7d8 117 uint32_t exts;
bf4bbd0d 118 uint32_t egress_pkt_mark;
fea6740f 119 bool set_egress_pkt_mark;
526df7d8 120
f431bf7d
EJ
121 uint8_t ttl;
122 bool ttl_inherit;
123
124 uint8_t tos;
125 bool tos_inherit;
126
127 bool csum;
f431bf7d 128 bool dont_fragment;
875ab130 129 enum netdev_pt_mode pt_mode;
f431bf7d
EJ
130};
131
8b61709d
BP
132void netdev_run(void);
133void netdev_wait(void);
134
19993ef3 135void netdev_enumerate_types(struct sset *types);
94a53842 136bool netdev_is_reserved_name(const char *name);
77909859 137
f00fa8cb 138int netdev_n_txq(const struct netdev *netdev);
55c955bd 139int netdev_n_rxq(const struct netdev *netdev);
e4cfed38 140bool netdev_is_pmd(const struct netdev *netdev);
57eebbb4 141bool netdev_has_tunnel_push_pop(const struct netdev *netdev);
e4cfed38 142
c1c9c9c4 143/* Open and close. */
e4cfed38
PS
144int netdev_open(const char *name, const char *type, struct netdev **netdevp);
145
0bb0393a 146struct netdev *netdev_ref(const struct netdev *);
fe83f81d 147void netdev_remove(struct netdev *);
064af421
BP
148void netdev_close(struct netdev *);
149
a75531e5
BP
150void netdev_parse_name(const char *netdev_name, char **name, char **type);
151
6d9e6eb4 152/* Options. */
bbe6109d 153int netdev_set_config(struct netdev *, const struct smap *args, char **errp);
79f1cbe9 154int netdev_get_config(const struct netdev *, struct smap *);
f431bf7d
EJ
155const struct netdev_tunnel_config *
156 netdev_get_tunnel_config(const struct netdev *);
7dec44fe 157int netdev_get_numa_id(const struct netdev *);
6d9e6eb4 158
c1c9c9c4 159/* Basic properties. */
8b61709d 160const char *netdev_get_name(const struct netdev *);
149f577a 161const char *netdev_get_type(const struct netdev *);
0a740f48 162const char *netdev_get_type_from_name(const char *);
8b61709d 163int netdev_get_mtu(const struct netdev *, int *mtup);
4124cb12 164int netdev_set_mtu(struct netdev *, int mtu);
3a414a0a
DDP
165void netdev_mtu_user_config(struct netdev *, bool);
166bool netdev_mtu_is_user_config(struct netdev *);
9ab3d9a3 167int netdev_get_ifindex(const struct netdev *);
050c60bf 168int netdev_set_tx_multiq(struct netdev *, unsigned int n_txq);
875ab130 169enum netdev_pt_mode netdev_get_pt_mode(const struct netdev *);
5bfc0cd3 170
796223f5 171/* Packet reception. */
55c955bd 172int netdev_rxq_open(struct netdev *, struct netdev_rxq **, int id);
f7791740 173void netdev_rxq_close(struct netdev_rxq *);
796223f5 174
f7791740 175const char *netdev_rxq_get_name(const struct netdev_rxq *);
ce179f11 176int netdev_rxq_get_queue_id(const struct netdev_rxq *);
796223f5 177
8492adc2
JS
178int netdev_rxq_recv(struct netdev_rxq *rx, struct dp_packet_batch *,
179 int *qfill);
f7791740
PS
180void netdev_rxq_wait(struct netdev_rxq *);
181int netdev_rxq_drain(struct netdev_rxq *);
8b61709d 182
796223f5 183/* Packet transmission. */
1895cc8d 184int netdev_send(struct netdev *, int qid, struct dp_packet_batch *,
b30896c9 185 bool concurrent_txq);
f00fa8cb 186void netdev_send_wait(struct netdev *, int qid);
8b61709d 187
18ebd48c
PB
188/* Flow offloading. */
189struct offload_info {
dfaf79dd 190 const struct dpif_class *dpif_class;
18ebd48c
PB
191 ovs_be16 tp_dst_port; /* Destination port for tunnel in SET action */
192};
dfaf79dd 193struct dpif_class;
18ebd48c
PB
194struct netdev_flow_dump;
195int netdev_flow_flush(struct netdev *);
196int netdev_flow_dump_create(struct netdev *, struct netdev_flow_dump **dump);
197int netdev_flow_dump_destroy(struct netdev_flow_dump *);
198bool netdev_flow_dump_next(struct netdev_flow_dump *, struct match *,
199 struct nlattr **actions, struct dpif_flow_stats *,
200 ovs_u128 *ufid, struct ofpbuf *rbuffer,
201 struct ofpbuf *wbuffer);
202int netdev_flow_put(struct netdev *, struct match *, struct nlattr *actions,
203 size_t actions_len, const ovs_u128 *,
204 struct offload_info *, struct dpif_flow_stats *);
205int netdev_flow_get(struct netdev *, struct match *, struct nlattr **actions,
206 const ovs_u128 *, struct dpif_flow_stats *,
207 struct ofpbuf *wbuffer);
208int netdev_flow_del(struct netdev *, const ovs_u128 *,
209 struct dpif_flow_stats *);
210int netdev_init_flow_api(struct netdev *);
53611f7b
PB
211bool netdev_is_flow_api_enabled(void);
212void netdev_set_flow_api_enabled(const struct smap *ovs_other_config);
18ebd48c 213
32b77c31 214struct dpif_port;
dfaf79dd
RD
215int netdev_ports_insert(struct netdev *, const struct dpif_class *,
216 struct dpif_port *);
217struct netdev *netdev_ports_get(odp_port_t port, const struct dpif_class *);
218int netdev_ports_remove(odp_port_t port, const struct dpif_class *);
32b77c31 219odp_port_t netdev_ifindex_to_odp_port(int ifindex);
dfaf79dd
RD
220struct netdev_flow_dump **netdev_ports_flow_dump_create(
221 const struct dpif_class *,
222 int *ports);
223void netdev_ports_flow_flush(const struct dpif_class *);
224int netdev_ports_flow_del(const struct dpif_class *, const ovs_u128 *ufid,
0335a89c 225 struct dpif_flow_stats *stats);
dfaf79dd 226int netdev_ports_flow_get(const struct dpif_class *, struct match *match,
6c343984
PB
227 struct nlattr **actions,
228 const ovs_u128 *ufid,
229 struct dpif_flow_stats *stats,
230 struct ofpbuf *buf);
32b77c31 231
4975aa3e
PS
232/* native tunnel APIs */
233/* Structure to pass parameters required to build a tunnel header. */
234struct netdev_tnl_build_header_params {
235 const struct flow *flow;
236 const struct in6_addr *s_ip;
237 struct eth_addr dmac;
238 struct eth_addr smac;
239 bool is_ipv6;
240};
241
242void
243netdev_init_tnl_build_header_params(struct netdev_tnl_build_header_params *params,
244 const struct flow *tnl_flow,
245 const struct in6_addr *src,
246 struct eth_addr dmac,
247 struct eth_addr smac);
248
c876a4bb 249int netdev_build_header(const struct netdev *, struct ovs_action_push_tnl *data,
4975aa3e
PS
250 const struct netdev_tnl_build_header_params *params);
251
a36de779 252int netdev_push_header(const struct netdev *netdev,
1895cc8d 253 struct dp_packet_batch *,
a36de779 254 const struct ovs_action_push_tnl *data);
9235b479 255void netdev_pop_header(struct netdev *netdev, struct dp_packet_batch *);
a36de779 256
c1c9c9c4 257/* Hardware address. */
74ff3298
JR
258int netdev_set_etheraddr(struct netdev *, const struct eth_addr mac);
259int netdev_get_etheraddr(const struct netdev *, struct eth_addr *mac);
8b61709d 260
c1c9c9c4 261/* PHY interface. */
85da620e 262bool netdev_get_carrier(const struct netdev *);
65c3058c 263long long int netdev_get_carrier_resets(const struct netdev *);
1670c579 264int netdev_set_miimon_interval(struct netdev *, long long int interval);
6c038611 265
4b609110
BP
266/* Flags. */
267enum netdev_flags {
268 NETDEV_UP = 0x0001, /* Device enabled? */
269 NETDEV_PROMISC = 0x0002, /* Promiscuous mode? */
270 NETDEV_LOOPBACK = 0x0004 /* This is a loopback device. */
271};
272
273int netdev_get_flags(const struct netdev *, enum netdev_flags *);
274int netdev_set_flags(struct netdev *, enum netdev_flags,
275 struct netdev_saved_flags **);
276int netdev_turn_flags_on(struct netdev *, enum netdev_flags,
277 struct netdev_saved_flags **);
278int netdev_turn_flags_off(struct netdev *, enum netdev_flags,
279 struct netdev_saved_flags **);
280
281void netdev_restore_flags(struct netdev_saved_flags *);
282
c1c9c9c4 283/* TCP/IP stack interface. */
064af421 284int netdev_set_in4(struct netdev *, struct in_addr addr, struct in_addr mask);
733adf2a 285int netdev_get_in4_by_name(const char *device_name, struct in_addr *in4);
ee4776b8 286int netdev_get_ip_by_name(const char *device_name, struct in6_addr *);
a8704b50
PS
287int netdev_get_addr_list(const struct netdev *netdev, struct in6_addr **addr,
288 struct in6_addr **mask, int *n_in6);
289
0efaf4b5 290int netdev_add_router(struct netdev *, struct in_addr router);
f1acd62b
BP
291int netdev_get_next_hop(const struct netdev *, const struct in_addr *host,
292 struct in_addr *next_hop, char **);
275707c3 293int netdev_get_status(const struct netdev *, struct smap *);
3bd0fd39 294int netdev_arp_lookup(const struct netdev *, ovs_be32 ip,
74ff3298 295 struct eth_addr *mac);
8b61709d 296
c1c9c9c4 297struct netdev *netdev_find_dev_by_in4(const struct in_addr *);
8b61709d 298
c1c9c9c4 299/* Statistics. */
064af421 300int netdev_get_stats(const struct netdev *, struct netdev_stats *);
971f4b39
MW
301int netdev_get_custom_stats(const struct netdev *,
302 struct netdev_custom_stats *);
c1c9c9c4
BP
303
304/* Quality of service. */
305struct netdev_qos_capabilities {
306 unsigned int n_queues;
307};
308
309struct netdev_queue_stats {
310 /* Values of unsupported statistics are set to all-1-bits (UINT64_MAX). */
311 uint64_t tx_bytes;
312 uint64_t tx_packets;
313 uint64_t tx_errors;
6dc34a0d
BP
314
315 /* Time at which the queue was created, in msecs, LLONG_MIN if unknown. */
316 long long int created;
c1c9c9c4
BP
317};
318
319int netdev_set_policing(struct netdev *, uint32_t kbits_rate,
064af421
BP
320 uint32_t kbits_burst);
321
19993ef3 322int netdev_get_qos_types(const struct netdev *, struct sset *types);
c1c9c9c4
BP
323int netdev_get_qos_capabilities(const struct netdev *,
324 const char *type,
325 struct netdev_qos_capabilities *);
326int netdev_get_n_queues(const struct netdev *,
327 const char *type, unsigned int *n_queuesp);
328
329int netdev_get_qos(const struct netdev *,
79f1cbe9 330 const char **typep, struct smap *details);
c1c9c9c4 331int netdev_set_qos(struct netdev *,
79f1cbe9 332 const char *type, const struct smap *details);
c1c9c9c4
BP
333
334int netdev_get_queue(const struct netdev *,
79f1cbe9 335 unsigned int queue_id, struct smap *details);
c1c9c9c4 336int netdev_set_queue(struct netdev *,
79f1cbe9 337 unsigned int queue_id, const struct smap *details);
c1c9c9c4
BP
338int netdev_delete_queue(struct netdev *, unsigned int queue_id);
339int netdev_get_queue_stats(const struct netdev *, unsigned int queue_id,
340 struct netdev_queue_stats *);
3e912ffc 341uint64_t netdev_get_change_seq(const struct netdev *);
c1c9c9c4 342
790fb3b7
DDP
343int netdev_reconfigure(struct netdev *netdev);
344void netdev_wait_reconf_required(struct netdev *netdev);
345bool netdev_is_reconf_required(struct netdev *netdev);
346
89454bf4
BP
347struct netdev_queue_dump {
348 struct netdev *netdev;
349 int error;
350 void *state;
351};
352void netdev_queue_dump_start(struct netdev_queue_dump *,
353 const struct netdev *);
354bool netdev_queue_dump_next(struct netdev_queue_dump *,
355 unsigned int *queue_id, struct smap *details);
356int netdev_queue_dump_done(struct netdev_queue_dump *);
357
358/* Iterates through each queue in NETDEV, using DUMP as state. Fills QUEUE_ID
359 * and DETAILS with information about queues. The client must initialize and
360 * destroy DETAILS.
361 *
362 * Arguments all have pointer type.
363 *
364 * If you break out of the loop, then you need to free the dump structure by
365 * hand using netdev_queue_dump_done(). */
366#define NETDEV_QUEUE_FOR_EACH(QUEUE_ID, DETAILS, DUMP, NETDEV) \
367 for (netdev_queue_dump_start(DUMP, NETDEV); \
368 (netdev_queue_dump_next(DUMP, QUEUE_ID, DETAILS) \
369 ? true \
370 : (netdev_queue_dump_done(DUMP), false)); \
371 )
c1c9c9c4
BP
372
373typedef void netdev_dump_queue_stats_cb(unsigned int queue_id,
374 struct netdev_queue_stats *,
375 void *aux);
376int netdev_dump_queue_stats(const struct netdev *,
377 netdev_dump_queue_stats_cb *, void *aux);
378
a36de779 379extern struct seq *tnl_conf_seq;
df1e5a3b 380
a8704b50
PS
381#ifndef _WIN32
382void netdev_get_addrs_list_flush(void);
383int netdev_get_addrs(const char dev[], struct in6_addr **paddr,
384 struct in6_addr **pmask, int *n_in6);
385#endif
386
fbfffdbb
BP
387#ifdef __cplusplus
388}
389#endif
390
064af421 391#endif /* netdev.h */