]> git.proxmox.com Git - ovs.git/blame - OPENFLOW-1.1+.md
FAQ: Add entry for OVS/DPDK version dependencies.
[ovs.git] / OPENFLOW-1.1+.md
CommitLineData
542cc9bb
TG
1OpenFlow 1.1+ support in Open vSwitch
2=====================================
3
4Open vSwitch support for OpenFlow 1.1 and beyond is a work in
5progress. This file describes the work still to be done.
6
7The Plan
8--------
9
10OpenFlow version support is not a build-time option. A single build
11of Open vSwitch must be able to handle all supported versions of
12OpenFlow. Ideally, even at runtime it should be able to support all
13protocol versions at the same time on different OpenFlow bridges (and
14perhaps even on the same bridge).
15
16At the same time, it would be a shame to litter the core of the OVS
17code with lots of ugly code concerned with the details of various
18OpenFlow protocol versions.
19
20The primary approach to compatibility is to abstract most of the
21details of the differences from the core code, by adding a protocol
22layer that translates between OF1.x and a slightly higher-level
23abstract representation. The core of this approach is the many struct
f4248336 24ofputil_* structures in include/openvswitch/ofp-util.h.
542cc9bb
TG
25
26As a consequence of this approach, OVS cannot use OpenFlow protocol
27definitions that closely resemble those in the OpenFlow specification,
28because openflow.h in different versions of the OpenFlow specification
29defines the same identifier with different values. Instead,
30openflow-common.h contains definitions that are common to all the
31specifications and separate protocol version-specific headers contain
32protocol-specific definitions renamed so as not to conflict,
33e.g. OFPAT10_ENQUEUE and OFPAT11_ENQUEUE for the OpenFlow 1.0 and 1.1
34values for OFPAT_ENQUEUE. Generally, in cases of conflict, the
35protocol layer will define a more abstract OFPUTIL_* or struct
36ofputil_*.
37
38Here are the current approaches in a few tricky areas:
39
40 * Port numbering. OpenFlow 1.0 has 16-bit port numbers and later
41 OpenFlow versions have 32-bit port numbers. For now, OVS
42 support for later protocol versions requires all port numbers to
43 fall into the 16-bit range, translating the reserved OFPP_* port
44 numbers.
45
46 * Actions. OpenFlow 1.0 and later versions have very different
47 ideas of actions. OVS reconciles by translating all the
48 versions' actions (and instructions) to and from a common
49 internal representation.
50
51OpenFlow 1.1
52------------
53
54The list of remaining work items for OpenFlow 1.1 is below. It is
55probably incomplete.
56
57 * Match and set double-tagged VLANs (QinQ). This requires kernel
58 work for reasonable performance.
59 [optional for OF1.1+]
60
61 * VLANs tagged with 88a8 Ethertype. This requires kernel work for
62 reasonable performance.
63 [required for OF1.1+]
64
65OpenFlow 1.2
66------------
67
68OpenFlow 1.2 support requires OpenFlow 1.1 as a prerequisite. All the
69additional work specific to Openflow 1.2 are complete. (This is based
70on the change log at the end of the OF1.2 spec. I didn't compare the
71specs carefully yet.)
72
73OpenFlow 1.3
74------------
75
76OpenFlow 1.3 support requires OpenFlow 1.2 as a prerequisite, plus the
77following additional work. (This is based on the change log at the
78end of the OF1.3 spec, reusing most of the section titles directly. I
79didn't compare the specs carefully yet.)
80
81 * Add support for multipart requests.
82 Currently we always report OFPBRC_MULTIPART_BUFFER_OVERFLOW.
83 [optional for OF1.3+]
84
85 * IPv6 extension header handling support. Fully implementing this
86 requires kernel support. This likely will take some careful and
87 probably time-consuming design work. The actual coding, once
88 that is all done, is probably 2 or 3 days work.
89 [optional for OF1.3+]
90
91 * Per-flow meters. OpenFlow protocol support is now implemented.
92 Support for the special OFPM_SLOWPATH and OFPM_CONTROLLER meters
93 is missing. Support for the software switch is under review.
94 [optional for OF1.3+]
95
96 * Auxiliary connections. An implementation in generic code might
97 be a week's worth of work. The value of an implementation in
98 generic code is questionable, though, since much of the benefit
99 of axuiliary connections is supposed to be to take advantage of
100 hardware support. (We could make the kernel module somehow
101 send packets across the auxiliary connections directly, for
102 some kind of "hardware" support, if we judged it useful enough.)
103 [optional for OF1.3+]
104
105 * Provider Backbone Bridge tagging. I don't plan to implement
106 this (but we'd accept an implementation).
107 [optional for OF1.3+]
108
109 * On-demand flow counters. I think this might be a real
110 optimization in some cases for the software switch.
111 [optional for OF1.3+]
112
41acd777
JT
113OpenFlow 1.4 & ONF Extensions for 1.3.X Pack1
114---------------------------------------------
115
116The following features are both defined as a set of ONF Extensions
117for 1.3 and integrated in 1.4.
118When defined as an ONF Extension for 1.3, the feature is using the
119Experimenter mechanism with the ONF Experimenter ID.
120When defined integrated in 1.4, the feature use the standard OpenFlow
121structures (for example defined in openflow-1.4.h).
122The two definitions for each feature are independant and can exist in
123parallel in OVS.
542cc9bb
TG
124
125 * Flow entry notifications
126 This seems to be modelled after OVS's NXST_FLOW_MONITOR.
127 (Simon Horman is working on this.)
128 [EXT-187]
41acd777 129 [optional for OF1.4+]
542cc9bb
TG
130
131 * Role Status
41acd777 132 Already implemented as a 1.4 feature.
542cc9bb
TG
133 [EXT-191]
134 [required for OF1.4+]
135
136 * Flow entry eviction
137 OVS has flow eviction functionality.
138 table_mod OFPTC_EVICTION, flow_mod 'importance', and
139 table_desc ofp_table_mod_prop_eviction need to be implemented.
140 [EXT-192-e]
141 [optional for OF1.4+]
142
143 * Vacancy events
144 [EXT-192-v]
145 [optional for OF1.4+]
146
147 * Bundle
148 Transactional modification. OpenFlow 1.4 requires to support
41acd777 149 flow_mods and port_mods in a bundle if bundle is supported.
542cc9bb 150 (Not related to OVS's 'ofbundle' stuff.)
1c38055d
JR
151 Implemented as an OpenFlow 1.4 feature. Only flow_mods and
152 port_mods are supported in a bundle. If the bundle includes port
153 mods, it may not specify the OFPBF_ATOMIC flag. Nevertheless,
154 port mods and flow mods in a bundle are always applied in order
155 and consecutive flow mods between port mods are made available to
156 lookups atomically.
542cc9bb 157 [EXT-230]
41acd777 158 [optional for OF1.4+]
542cc9bb
TG
159
160 * Table synchronisation
41acd777 161 Probably not so useful to the software switch.
542cc9bb
TG
162 [EXT-232]
163 [optional for OF1.4+]
164
41acd777 165 * Group and Meter change notifications
542cc9bb
TG
166 [EXT-235]
167 [optional for OF1.4+]
168
169 * Bad flow entry priority error
170 Probably not so useful to the software switch.
171 [EXT-236]
172 [optional for OF1.4+]
173
174 * Set async config error
175 [EXT-237]
176 [optional for OF1.4+]
177
178 * PBB UCA header field
41acd777 179 See comment on Provider Backbone Bridge in section about OpenFlow 1.3.
542cc9bb
TG
180 [EXT-256]
181 [optional for OF1.4+]
182
183 * Multipart timeout error
184 [EXT-264]
185 [required for OF1.4+]
186
41acd777
JT
187OpenFlow 1.4 only
188-----------------
189
190Those features are those only available in OpenFlow 1.4, other
191OpenFlow 1.4 features are listed in the previous section.
542cc9bb
TG
192
193 * More extensible wire protocol
194 Many on-wire structures got TLVs.
5876b4db 195 All required features are now supported.
41acd777 196 Remaining optional: table desc, table-status
542cc9bb
TG
197 [EXT-262]
198 [required for OF1.4+]
199
200 * More descriptive reasons for packet-in
201 Distinguish OFPR_APPLY_ACTION, OFPR_ACTION_SET, OFPR_GROUP,
202 OFPR_PACKET_OUT. NO_MATCH was renamed to OFPR_TABLE_MISS.
029ca940 203 (OFPR_ACTION_SET and OFPR_GROUP are now supported)
542cc9bb
TG
204 [EXT-136]
205 [required for OF1.4+]
206
207 * Optical port properties
208 [EXT-154]
209 [optional for OF1.4+]
210
d24f701b
JT
211OpenFlow 1.5 & ONF Extensions for 1.3.X Pack2
212---------------------------------------------
213
214The following features are both defined as a set of ONF Extensions for
2151.3 and integrated in 1.5. Note that this list is not definitive as
216those are not yet published.
217When defined as an ONF Extension for 1.3, the feature is using the
218Experimenter mechanism with the ONF Experimenter ID.
219When defined integrated in 1.5, the feature use the standard OpenFlow
220structures (for example defined in openflow-1.5.h).
221The two definitions for each feature are independant and can exist in
222parallel in OVS.
223
224 * Time scheduled bundles
225 [EXT-340]
226 [optional for OF1.5+]
227
228OpenFlow 1.5 only
229-----------------
230
231Those features are those only available in OpenFlow 1.5, other
232OpenFlow 1.5 features are listed in the previous section.
233Note that this list is not definitive as OpenFlow 1.5 is not yet
234published.
235
236 * Egress Tables
237 [EXT-306]
238 [optional for OF1.5+]
239
240 * Packet Type aware pipeline
241 Prototype for OVS was done during specification.
242 [EXT-112]
243 [optional for OF1.5+]
244
245 * Extensible Flow Entry Statistics
246 [EXT-334]
247 [required for OF1.5+]
248
249 * Flow Entry Statistics Trigger
250 [EXT-335]
251 [optional for OF1.5+]
252
253 * Controller connection status
254 Prototype for OVS was done during specification.
255 [EXT-454]
256 [optional for OF1.5+]
257
258 * Meter action
259 [EXT-379]
260 [required for OF1.5+ if metering is supported]
261
262 * Enable setting all pipeline fields in packet-out
263 Prototype for OVS was done during specification.
264 [EXT-427]
265 [required for OF1.5+]
266
267 * Port properties for pipeline fields
268 Prototype for OVS was done during specification.
269 [EXT-388]
270 [optional for OF1.5+]
271
272 * Port property for recirculation
273 Prototype for OVS was done during specification.
274 [EXT-399]
275 [optional for OF1.5+]
276
542cc9bb
TG
277General
278-----
279
280 * ovs-ofctl(8) often lists as Nicira extensions features that
281 later OpenFlow versions support in standard ways.
282
283How to contribute
284-----------------
285
286If you plan to contribute code for a feature, please let everyone know
287on ovs-dev before you start work. This will help avoid duplicating
288work.
289
290Please consider the following:
291
292 * Testing. Please test your code.
293
294 * Unit tests. Please consider writing some. The tests directory
295 has many examples that you can use as a starting point.
296
297 * ovs-ofctl. If you add a feature that is useful for some
298 ovs-ofctl command then you should add support for it there.
299
300 * Documentation. If you add a user-visible feature, then you
301 should document it in the appropriate manpage and mention it in
302 NEWS as well.
303
9feb1017
TG
304 * Coding style (see the [CodingStyle.md] file at the top of the
305 source tree).
542cc9bb 306
9feb1017 307 * The patch submission guidelines (see [CONTRIBUTING.md]). I
542cc9bb
TG
308 recommend using "git send-email", which automatically follows a
309 lot of those guidelines.
310
311Bug Reporting
312-------------
313
314Please report problems to bugs@openvswitch.org.
9feb1017
TG
315
316[CONTRIBUTING.md]:CONTRIBUTING.md
317[CodingStyle.md]:CodingStyle.md