]> git.proxmox.com Git - ovs.git/blame - ofproto/ofproto.h
datapath: Free skb dropped by lisp_tnl_send().
[ovs.git] / ofproto / ofproto.h
CommitLineData
064af421 1/*
f4f1ea7e 2 * Copyright (c) 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 OFPROTO_H
18#define OFPROTO_H 1
19
d2ede7bc
BP
20#include <sys/types.h>
21#include <netinet/in.h>
064af421
BP
22#include <stdbool.h>
23#include <stddef.h>
24#include <stdint.h>
1de11730 25#include "cfm.h"
064af421 26#include "flow.h"
0193b2af 27#include "netflow.h"
81e2083f 28#include "sset.h"
21f7563c 29#include "stp.h"
064af421
BP
30#include "tag.h"
31
03292c46
JG
32#ifdef __cplusplus
33extern "C" {
34#endif
35
cf3fad8a 36struct cls_rule;
b5827b24 37struct netdev;
064af421 38struct ofproto;
6527c598 39struct ofport;
bffc0589 40struct shash;
0d085684 41struct simap;
6527c598 42struct netdev_stats;
064af421 43
bffc0589
AE
44struct ofproto_controller_info {
45 bool is_connected;
f4f1ea7e 46 enum ofp12_controller_role role;
bffc0589 47 struct {
2cdcb898
AE
48 const char *keys[4];
49 const char *values[4];
bffc0589
AE
50 size_t n;
51 } pairs;
52};
53
064af421 54struct ofexpired {
ae412e7d 55 struct flow flow;
0193b2af
JG
56 uint64_t packet_count; /* Packets from subrules. */
57 uint64_t byte_count; /* Bytes from subrules. */
064af421 58 long long int used; /* Last-used time (0 if never used). */
064af421
BP
59};
60
72b06300 61struct ofproto_sflow_options {
81e2083f 62 struct sset targets;
72b06300
BP
63 uint32_t sampling_rate;
64 uint32_t polling_interval;
65 uint32_t header_len;
66 uint32_t sub_id;
67 char *agent_device;
68 char *control_ip;
69};
70
29089a54
RL
71
72struct ofproto_ipfix_bridge_exporter_options {
73 struct sset targets;
74 uint32_t sampling_rate;
75 uint32_t obs_domain_id; /* Bridge-wide Observation Domain ID. */
76 uint32_t obs_point_id; /* Bridge-wide Observation Point ID. */
77};
78
79struct ofproto_ipfix_flow_exporter_options {
80 uint32_t collector_set_id;
81 struct sset targets;
82};
83
21f7563c
JP
84struct ofproto_stp_settings {
85 stp_identifier system_id;
86 uint16_t priority;
87 uint16_t hello_time;
88 uint16_t max_age;
89 uint16_t fwd_delay;
90};
91
92struct ofproto_stp_status {
93 bool enabled; /* If false, ignore other members. */
94 stp_identifier bridge_id;
95 stp_identifier designated_root;
96 int root_path_cost;
97};
98
99struct ofproto_port_stp_settings {
100 bool enable;
101 uint8_t port_num; /* In the range 1-255, inclusive. */
102 uint8_t priority;
103 uint16_t path_cost;
104};
105
106struct ofproto_port_stp_status {
107 bool enabled; /* If false, ignore other members. */
108 int port_id;
109 enum stp_state state;
110 unsigned int sec_in_state;
111 enum stp_role role;
80740385
JP
112 int tx_count; /* Number of BPDUs transmitted. */
113 int rx_count; /* Number of valid BPDUs received. */
114 int error_count; /* Number of bad BPDUs received. */
21f7563c
JP
115};
116
8b36f51e
EJ
117struct ofproto_port_queue {
118 uint32_t queue; /* Queue ID. */
119 uint8_t dscp; /* DSCP bits (e.g. [0, 63]). */
120};
121
79c9f2ee
BP
122/* How the switch should act if the controller cannot be contacted. */
123enum ofproto_fail_mode {
124 OFPROTO_FAIL_SECURE, /* Preserve flow table. */
125 OFPROTO_FAIL_STANDALONE /* Act as a standalone switch. */
126};
127
128enum ofproto_band {
129 OFPROTO_IN_BAND, /* In-band connection to controller. */
130 OFPROTO_OUT_OF_BAND /* Out-of-band connection to controller. */
131};
132
133struct ofproto_controller {
134 char *target; /* e.g. "tcp:127.0.0.1" */
135 int max_backoff; /* Maximum reconnection backoff, in seconds. */
136 int probe_interval; /* Max idle time before probing, in seconds. */
9886b662
BP
137 enum ofproto_band band; /* In-band or out-of-band? */
138 bool enable_async_msgs; /* Initially enable asynchronous messages? */
79c9f2ee 139
79c9f2ee
BP
140 /* OpenFlow packet-in rate-limiting. */
141 int rate_limit; /* Max packet-in rate in packets per second. */
142 int burst_limit; /* Limit on accumulating packet credits. */
f125905c
MM
143
144 uint8_t dscp; /* DSCP value for controller connection. */
79c9f2ee
BP
145};
146
f79e673f
BP
147void ofproto_enumerate_types(struct sset *types);
148const char *ofproto_normalize_type(const char *);
149
150int ofproto_enumerate_names(const char *type, struct sset *names);
63d347ce
BP
151void ofproto_parse_name(const char *name, char **dp_name, char **dp_type);
152
b0408fca
JP
153/* An interface hint element, which is used by ofproto_init() to
154 * describe the caller's understanding of the startup state. */
155struct iface_hint {
156 char *br_name; /* Name of owning bridge. */
157 char *br_type; /* Type of owning bridge. */
158 uint16_t ofp_port; /* OpenFlow port number. */
159};
160
161void ofproto_init(const struct shash *iface_hints);
162
11a574a7
JP
163int ofproto_type_run(const char *datapath_type);
164int ofproto_type_run_fast(const char *datapath_type);
165void ofproto_type_wait(const char *datapath_type);
166
1a6f1e2a 167int ofproto_create(const char *datapath, const char *datapath_type,
064af421
BP
168 struct ofproto **ofprotop);
169void ofproto_destroy(struct ofproto *);
f79e673f
BP
170int ofproto_delete(const char *name, const char *type);
171
064af421 172int ofproto_run(struct ofproto *);
5fcc0d00 173int ofproto_run_fast(struct ofproto *);
064af421
BP
174void ofproto_wait(struct ofproto *);
175bool ofproto_is_alive(const struct ofproto *);
176
0d085684
BP
177void ofproto_get_memory_usage(const struct ofproto *, struct simap *);
178
b5827b24
BP
179/* A port within an OpenFlow switch.
180 *
181 * 'name' and 'type' are suitable for passing to netdev_open(). */
182struct ofproto_port {
183 char *name; /* Network device name, e.g. "eth0". */
184 char *type; /* Network device type, e.g. "system". */
185 uint16_t ofp_port; /* OpenFlow port number. */
186};
187void ofproto_port_clone(struct ofproto_port *, const struct ofproto_port *);
188void ofproto_port_destroy(struct ofproto_port *);
189
190struct ofproto_port_dump {
191 const struct ofproto *ofproto;
192 int error;
193 void *state;
194};
195void ofproto_port_dump_start(struct ofproto_port_dump *,
196 const struct ofproto *);
197bool ofproto_port_dump_next(struct ofproto_port_dump *, struct ofproto_port *);
198int ofproto_port_dump_done(struct ofproto_port_dump *);
199
892815f5 200/* Iterates through each OFPROTO_PORT in OFPROTO, using DUMP as state.
b5827b24
BP
201 *
202 * Arguments all have pointer type.
203 *
204 * If you break out of the loop, then you need to free the dump structure by
205 * hand using ofproto_port_dump_done(). */
206#define OFPROTO_PORT_FOR_EACH(OFPROTO_PORT, DUMP, OFPROTO) \
207 for (ofproto_port_dump_start(DUMP, OFPROTO); \
208 (ofproto_port_dump_next(DUMP, OFPROTO_PORT) \
209 ? true \
210 : (ofproto_port_dump_done(DUMP), false)); \
211 )
212
27a88d13 213#define OFPROTO_FLOW_EVICTION_THRESHOLD_DEFAULT 2500
05fe1764 214#define OFPROTO_FLOW_EVICTION_THRESHOLD_MIN 100
084f5290 215
0aeaabc8
JP
216const char *ofproto_port_open_type(const char *datapath_type,
217 const char *port_type);
b5827b24
BP
218int ofproto_port_add(struct ofproto *, struct netdev *, uint16_t *ofp_portp);
219int ofproto_port_del(struct ofproto *, uint16_t ofp_port);
6527c598 220int ofproto_port_get_stats(const struct ofport *, struct netdev_stats *stats);
3a6ccc8c 221
b5827b24
BP
222int ofproto_port_query_by_name(const struct ofproto *, const char *devname,
223 struct ofproto_port *);
224
e7934396 225/* Top-level configuration. */
e825ace2 226uint64_t ofproto_get_datapath_id(const struct ofproto *);
064af421 227void ofproto_set_datapath_id(struct ofproto *, uint64_t datapath_id);
76ce9432 228void ofproto_set_controllers(struct ofproto *,
1d9ffc17
SH
229 const struct ofproto_controller *, size_t n,
230 uint32_t allowed_versions);
31681a5d 231void ofproto_set_fail_mode(struct ofproto *, enum ofproto_fail_mode fail_mode);
fa05809b 232void ofproto_reconnect_controllers(struct ofproto *);
917e50e1
BP
233void ofproto_set_extra_in_band_remotes(struct ofproto *,
234 const struct sockaddr_in *, size_t n);
b1da6250 235void ofproto_set_in_band_queue(struct ofproto *, int queue_id);
084f5290 236void ofproto_set_flow_eviction_threshold(struct ofproto *, unsigned threshold);
8402c74b 237void ofproto_set_forward_bpdu(struct ofproto *, bool forward_bpdu);
c4069512
BP
238void ofproto_set_mac_table_config(struct ofproto *, unsigned idle_time,
239 size_t max_entries);
8b6ff729 240void ofproto_set_dp_desc(struct ofproto *, const char *dp_desc);
81e2083f 241int ofproto_set_snoops(struct ofproto *, const struct sset *snoops);
0193b2af
JG
242int ofproto_set_netflow(struct ofproto *,
243 const struct netflow_options *nf_options);
abe529af 244int ofproto_set_sflow(struct ofproto *, const struct ofproto_sflow_options *);
29089a54
RL
245int ofproto_set_ipfix(struct ofproto *,
246 const struct ofproto_ipfix_bridge_exporter_options *,
247 const struct ofproto_ipfix_flow_exporter_options *,
248 size_t);
21f7563c
JP
249int ofproto_set_stp(struct ofproto *, const struct ofproto_stp_settings *);
250int ofproto_get_stp_status(struct ofproto *, struct ofproto_stp_status *);
064af421 251
fa066f01 252/* Configuration of ports. */
892815f5 253void ofproto_port_unregister(struct ofproto *, uint16_t ofp_port);
fa066f01 254
892815f5
BP
255void ofproto_port_clear_cfm(struct ofproto *, uint16_t ofp_port);
256void ofproto_port_set_cfm(struct ofproto *, uint16_t ofp_port,
a5610457 257 const struct cfm_settings *);
fa066f01 258int ofproto_port_is_lacp_current(struct ofproto *, uint16_t ofp_port);
21f7563c
JP
259int ofproto_port_set_stp(struct ofproto *, uint16_t ofp_port,
260 const struct ofproto_port_stp_settings *);
261int ofproto_port_get_stp_status(struct ofproto *, uint16_t ofp_port,
262 struct ofproto_port_stp_status *);
8b36f51e
EJ
263int ofproto_port_set_queues(struct ofproto *, uint16_t ofp_port,
264 const struct ofproto_port_queue *,
265 size_t n_queues);
fa066f01 266
ecac4ebf
BP
267/* The behaviour of the port regarding VLAN handling */
268enum port_vlan_mode {
269 /* This port is an access port. 'vlan' is the VLAN ID. 'trunks' is
270 * ignored. */
271 PORT_VLAN_ACCESS,
272
273 /* This port is a trunk. 'trunks' is the set of trunks. 'vlan' is
274 * ignored. */
275 PORT_VLAN_TRUNK,
276
277 /* Untagged incoming packets are part of 'vlan', as are incoming packets
278 * tagged with 'vlan'. Outgoing packets tagged with 'vlan' stay tagged.
279 * Other VLANs in 'trunks' are trunked. */
280 PORT_VLAN_NATIVE_TAGGED,
281
282 /* Untagged incoming packets are part of 'vlan', as are incoming packets
283 * tagged with 'vlan'. Outgoing packets tagged with 'vlan' are untagged.
284 * Other VLANs in 'trunks' are trunked. */
285 PORT_VLAN_NATIVE_UNTAGGED
286};
287
fa066f01
BP
288/* Configuration of bundles. */
289struct ofproto_bundle_settings {
290 char *name; /* For use in log messages. */
291
892815f5 292 uint16_t *slaves; /* OpenFlow port numbers for slaves. */
fa066f01
BP
293 size_t n_slaves;
294
ecac4ebf
BP
295 enum port_vlan_mode vlan_mode; /* Selects mode for vlan and trunks */
296 int vlan; /* VLAN VID, except for PORT_VLAN_TRUNK. */
297 unsigned long *trunks; /* vlan_bitmap, except for PORT_VLAN_ACCESS. */
5e9ceccd 298 bool use_priority_tags; /* Use 802.1p tag for frames in VLAN 0? */
fa066f01
BP
299
300 struct bond_settings *bond; /* Must be nonnull iff if n_slaves > 1. */
301
302 struct lacp_settings *lacp; /* Nonnull to enable LACP. */
303 struct lacp_slave_settings *lacp_slaves; /* Array of n_slaves elements. */
52a90c29
BP
304
305 /* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
306 *
307 * This is deprecated. It is only for compatibility with broken device
308 * drivers in old versions of Linux that do not properly support VLANs when
309 * VLAN devices are not used. When broken device drivers are no longer in
310 * widespread use, we will delete these interfaces. */
311 uint16_t realdev_ofp_port; /* OpenFlow port number of real device. */
fa066f01
BP
312};
313
abe529af
BP
314int ofproto_bundle_register(struct ofproto *, void *aux,
315 const struct ofproto_bundle_settings *);
316int ofproto_bundle_unregister(struct ofproto *, void *aux);
fa066f01
BP
317
318/* Configuration of mirrors. */
319struct ofproto_mirror_settings {
320 /* Name for log messages. */
321 char *name;
322
323 /* Bundles that select packets for mirroring upon ingress. */
324 void **srcs; /* A set of registered ofbundle handles. */
325 size_t n_srcs;
326
327 /* Bundles that select packets for mirroring upon egress. */
328 void **dsts; /* A set of registered ofbundle handles. */
329 size_t n_dsts;
330
331 /* VLANs of packets to select for mirroring. */
332 unsigned long *src_vlans; /* vlan_bitmap, NULL selects all VLANs. */
333
334 /* Output (mutually exclusive). */
335 void *out_bundle; /* A registered ofbundle handle or NULL. */
336 uint16_t out_vlan; /* Output VLAN, only if out_bundle is NULL. */
337};
338
abe529af
BP
339int ofproto_mirror_register(struct ofproto *, void *aux,
340 const struct ofproto_mirror_settings *);
341int ofproto_mirror_unregister(struct ofproto *, void *aux);
9d24de3b
JP
342int ofproto_mirror_get_stats(struct ofproto *, void *aux,
343 uint64_t *packets, uint64_t *bytes);
fa066f01 344
abe529af 345int ofproto_set_flood_vlans(struct ofproto *, unsigned long *flood_vlans);
b4affc74 346bool ofproto_is_mirror_output_bundle(const struct ofproto *, void *aux);
e7934396 347
254750ce
BP
348/* Configuration of OpenFlow tables. */
349struct ofproto_table_settings {
350 char *name; /* Name exported via OpenFlow or NULL. */
351 unsigned int max_flows; /* Maximum number of flows or UINT_MAX. */
352
353 /* These members determine the handling of an attempt to add a flow that
354 * would cause the table to have more than 'max_flows' flows.
355 *
356 * If 'groups' is NULL, overflows will be rejected with an error.
357 *
358 * If 'groups' is nonnull, an overflow will cause a flow to be removed.
359 * The flow to be removed is chosen to give fairness among groups
360 * distinguished by different values for the subfields within 'groups'. */
361 struct mf_subfield *groups;
362 size_t n_groups;
363};
364
365int ofproto_get_n_tables(const struct ofproto *);
366void ofproto_configure_table(struct ofproto *, int table_id,
367 const struct ofproto_table_settings *);
368
064af421 369/* Configuration querying. */
81e2083f
BP
370bool ofproto_has_snoops(const struct ofproto *);
371void ofproto_get_snoops(const struct ofproto *, struct sset *);
4f2cad2c 372void ofproto_get_all_flows(struct ofproto *p, struct ds *);
b5827b24
BP
373void ofproto_get_netflow_ids(const struct ofproto *,
374 uint8_t *engine_type, uint8_t *engine_id);
9a9e3786 375
bffc0589
AE
376void ofproto_get_ofproto_controller_info(const struct ofproto *, struct shash *);
377void ofproto_free_ofproto_controller_info(struct shash *);
9a9e3786
BP
378
379/* CFM status query. */
380struct ofproto_cfm_status {
4cd9ab26
BP
381 /* 0 if not faulted, otherwise a combination of one or more reasons. */
382 enum cfm_fault_reason faults;
9a9e3786 383
18637fdc
BP
384 /* 0 if the remote CFM endpoint is operationally down,
385 * 1 if the remote CFM endpoint is operationally up,
386 * -1 if we don't know because the remote CFM endpoint is not in extended
387 * mode. */
388 int remote_opstate;
389
4cd9ab26
BP
390 /* Ordinarily a "health status" in the range 0...100 inclusive, with 0
391 * being worst and 100 being best, or -1 if the health status is not
392 * well-defined. */
393 int health;
394
9a9e3786
BP
395 /* MPIDs of remote maintenance points whose CCMs have been received. */
396 const uint64_t *rmps;
397 size_t n_rmps;
398};
399
400bool ofproto_port_get_cfm_status(const struct ofproto *, uint16_t ofp_port,
401 struct ofproto_cfm_status *);
52a90c29
BP
402\f
403/* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
404 *
405 * This is deprecated. It is only for compatibility with broken device drivers
406 * in old versions of Linux that do not properly support VLANs when VLAN
407 * devices are not used. When broken device drivers are no longer in
408 * widespread use, we will delete these interfaces. */
409
410void ofproto_get_vlan_usage(struct ofproto *, unsigned long int *vlan_bitmap);
411bool ofproto_has_vlan_usage_changed(const struct ofproto *);
412int ofproto_port_set_realdev(struct ofproto *, uint16_t vlandev_ofp_port,
413 uint16_t realdev_ofp_port, int vid);
bffc0589 414
03292c46
JG
415#ifdef __cplusplus
416}
417#endif
418
064af421 419#endif /* ofproto.h */