]> git.proxmox.com Git - ovs.git/blame - ofproto/ofproto.h
ofproto: Improve abstraction by adding function ofproto_parse_name().
[ovs.git] / ofproto / ofproto.h
CommitLineData
064af421 1/*
195c8086 2 * Copyright (c) 2009, 2010, 2011 Nicira Networks.
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>
25#include "flow.h"
0193b2af 26#include "netflow.h"
81e2083f 27#include "sset.h"
064af421
BP
28#include "tag.h"
29
03292c46
JG
30#ifdef __cplusplus
31extern "C" {
32#endif
33
9e97e8bb 34struct cfm;
cf3fad8a 35struct cls_rule;
b5827b24
BP
36struct dpif_port;
37struct netdev;
064af421 38struct ofproto;
bffc0589 39struct shash;
064af421 40
bffc0589
AE
41struct ofproto_controller_info {
42 bool is_connected;
43 enum nx_role role;
44 struct {
2cdcb898
AE
45 const char *keys[4];
46 const char *values[4];
bffc0589
AE
47 size_t n;
48 } pairs;
49};
50
064af421 51struct ofexpired {
ae412e7d 52 struct flow flow;
0193b2af
JG
53 uint64_t packet_count; /* Packets from subrules. */
54 uint64_t byte_count; /* Bytes from subrules. */
064af421 55 long long int used; /* Last-used time (0 if never used). */
064af421
BP
56};
57
72b06300 58struct ofproto_sflow_options {
81e2083f 59 struct sset targets;
72b06300
BP
60 uint32_t sampling_rate;
61 uint32_t polling_interval;
62 uint32_t header_len;
63 uint32_t sub_id;
64 char *agent_device;
65 char *control_ip;
66};
67
79c9f2ee
BP
68/* How the switch should act if the controller cannot be contacted. */
69enum ofproto_fail_mode {
70 OFPROTO_FAIL_SECURE, /* Preserve flow table. */
71 OFPROTO_FAIL_STANDALONE /* Act as a standalone switch. */
72};
73
74enum ofproto_band {
75 OFPROTO_IN_BAND, /* In-band connection to controller. */
76 OFPROTO_OUT_OF_BAND /* Out-of-band connection to controller. */
77};
78
79struct ofproto_controller {
80 char *target; /* e.g. "tcp:127.0.0.1" */
81 int max_backoff; /* Maximum reconnection backoff, in seconds. */
82 int probe_interval; /* Max idle time before probing, in seconds. */
79c9f2ee
BP
83 enum ofproto_band band; /* In-band or out-of-band? */
84
79c9f2ee
BP
85 /* OpenFlow packet-in rate-limiting. */
86 int rate_limit; /* Max packet-in rate in packets per second. */
87 int burst_limit; /* Limit on accumulating packet credits. */
88};
89
23ff2821
JP
90#define DEFAULT_MFR_DESC "Nicira Networks, Inc."
91#define DEFAULT_HW_DESC "Open vSwitch"
92#define DEFAULT_SW_DESC VERSION BUILDNR
93#define DEFAULT_SERIAL_DESC "None"
94#define DEFAULT_DP_DESC "None"
95
63d347ce
BP
96void ofproto_parse_name(const char *name, char **dp_name, char **dp_type);
97
1a6f1e2a 98int ofproto_create(const char *datapath, const char *datapath_type,
064af421
BP
99 struct ofproto **ofprotop);
100void ofproto_destroy(struct ofproto *);
101int ofproto_run(struct ofproto *);
064af421
BP
102void ofproto_wait(struct ofproto *);
103bool ofproto_is_alive(const struct ofproto *);
104
b5827b24
BP
105/* A port within an OpenFlow switch.
106 *
107 * 'name' and 'type' are suitable for passing to netdev_open(). */
108struct ofproto_port {
109 char *name; /* Network device name, e.g. "eth0". */
110 char *type; /* Network device type, e.g. "system". */
111 uint16_t ofp_port; /* OpenFlow port number. */
112};
113void ofproto_port_clone(struct ofproto_port *, const struct ofproto_port *);
114void ofproto_port_destroy(struct ofproto_port *);
115
116struct ofproto_port_dump {
117 const struct ofproto *ofproto;
118 int error;
119 void *state;
120};
121void ofproto_port_dump_start(struct ofproto_port_dump *,
122 const struct ofproto *);
123bool ofproto_port_dump_next(struct ofproto_port_dump *, struct ofproto_port *);
124int ofproto_port_dump_done(struct ofproto_port_dump *);
125
126/* Iterates through each DPIF_PORT in OFPROTO, using DUMP as state.
127 *
128 * Arguments all have pointer type.
129 *
130 * If you break out of the loop, then you need to free the dump structure by
131 * hand using ofproto_port_dump_done(). */
132#define OFPROTO_PORT_FOR_EACH(OFPROTO_PORT, DUMP, OFPROTO) \
133 for (ofproto_port_dump_start(DUMP, OFPROTO); \
134 (ofproto_port_dump_next(DUMP, OFPROTO_PORT) \
135 ? true \
136 : (ofproto_port_dump_done(DUMP), false)); \
137 )
138
139int ofproto_port_add(struct ofproto *, struct netdev *, uint16_t *ofp_portp);
140int ofproto_port_del(struct ofproto *, uint16_t ofp_port);
3a6ccc8c 141
b5827b24
BP
142int ofproto_port_query_by_name(const struct ofproto *, const char *devname,
143 struct ofproto_port *);
144
e7934396 145/* Top-level configuration. */
064af421 146void ofproto_set_datapath_id(struct ofproto *, uint64_t datapath_id);
76ce9432
BP
147void ofproto_set_controllers(struct ofproto *,
148 const struct ofproto_controller *, size_t n);
31681a5d 149void ofproto_set_fail_mode(struct ofproto *, enum ofproto_fail_mode fail_mode);
fa05809b 150void ofproto_reconnect_controllers(struct ofproto *);
917e50e1
BP
151void ofproto_set_extra_in_band_remotes(struct ofproto *,
152 const struct sockaddr_in *, size_t n);
b1da6250 153void ofproto_set_in_band_queue(struct ofproto *, int queue_id);
064af421 154void ofproto_set_desc(struct ofproto *,
5a719c38
JP
155 const char *mfr_desc, const char *hw_desc,
156 const char *sw_desc, const char *serial_desc,
8abc4ed7 157 const char *dp_desc);
81e2083f 158int ofproto_set_snoops(struct ofproto *, const struct sset *snoops);
0193b2af
JG
159int ofproto_set_netflow(struct ofproto *,
160 const struct netflow_options *nf_options);
72b06300 161void ofproto_set_sflow(struct ofproto *, const struct ofproto_sflow_options *);
064af421 162
fa066f01
BP
163/* Configuration of ports. */
164
165void ofproto_port_unregister(struct ofproto *, uint32_t port_no);
166
35c33856
BP
167void ofproto_port_clear_cfm(struct ofproto *, uint32_t port_no);
168void ofproto_port_set_cfm(struct ofproto *, uint32_t port_no,
169 const struct cfm *,
170 const uint16_t *remote_mps, size_t n_remote_mps);
171const struct cfm *ofproto_port_get_cfm(struct ofproto *, uint32_t port_no);
fa066f01
BP
172int ofproto_port_is_lacp_current(struct ofproto *, uint16_t ofp_port);
173
174/* Configuration of bundles. */
175struct ofproto_bundle_settings {
176 char *name; /* For use in log messages. */
177
178 uint32_t *slaves; /* OpenFlow port numbers for slaves. */
179 size_t n_slaves;
180
181 int vlan; /* VLAN if access port, -1 if trunk port. */
182 unsigned long *trunks; /* vlan_bitmap, NULL to trunk all VLANs. */
183
184 struct bond_settings *bond; /* Must be nonnull iff if n_slaves > 1. */
185
186 struct lacp_settings *lacp; /* Nonnull to enable LACP. */
187 struct lacp_slave_settings *lacp_slaves; /* Array of n_slaves elements. */
188};
189
190void ofproto_bundle_register(struct ofproto *, void *aux,
191 const struct ofproto_bundle_settings *);
192void ofproto_bundle_unregister(struct ofproto *, void *aux);
193
194/* Configuration of mirrors. */
195struct ofproto_mirror_settings {
196 /* Name for log messages. */
197 char *name;
198
199 /* Bundles that select packets for mirroring upon ingress. */
200 void **srcs; /* A set of registered ofbundle handles. */
201 size_t n_srcs;
202
203 /* Bundles that select packets for mirroring upon egress. */
204 void **dsts; /* A set of registered ofbundle handles. */
205 size_t n_dsts;
206
207 /* VLANs of packets to select for mirroring. */
208 unsigned long *src_vlans; /* vlan_bitmap, NULL selects all VLANs. */
209
210 /* Output (mutually exclusive). */
211 void *out_bundle; /* A registered ofbundle handle or NULL. */
212 uint16_t out_vlan; /* Output VLAN, only if out_bundle is NULL. */
213};
214
215void ofproto_mirror_register(struct ofproto *, void *aux,
216 const struct ofproto_mirror_settings *);
217void ofproto_mirror_unregister(struct ofproto *, void *aux);
218
219void ofproto_set_flood_vlans(struct ofproto *, unsigned long *flood_vlans);
220bool ofproto_is_mirror_output_bundle(struct ofproto *, void *aux);
e7934396 221
064af421 222/* Configuration querying. */
81e2083f
BP
223bool ofproto_has_snoops(const struct ofproto *);
224void ofproto_get_snoops(const struct ofproto *, struct sset *);
4f2cad2c 225void ofproto_get_all_flows(struct ofproto *p, struct ds *);
b5827b24
BP
226void ofproto_get_netflow_ids(const struct ofproto *,
227 uint8_t *engine_type, uint8_t *engine_id);
064af421 228
bffc0589
AE
229void ofproto_get_ofproto_controller_info(const struct ofproto *, struct shash *);
230void ofproto_free_ofproto_controller_info(struct shash *);
231
03292c46
JG
232#ifdef __cplusplus
233}
234#endif
235
064af421 236#endif /* ofproto.h */