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