Implement OpenFlow 1.4+ OFPTC_EVICTION.
[cascardo/ovs.git] / lib / ofp-util.h
1 /*
2  * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015 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 OFP_UTIL_H
18 #define OFP_UTIL_H 1
19
20 #include <stdbool.h>
21 #include <stddef.h>
22 #include <stdint.h>
23 #include "bitmap.h"
24 #include "compiler.h"
25 #include "flow.h"
26 #include "list.h"
27 #include "match.h"
28 #include "meta-flow.h"
29 #include "netdev.h"
30 #include "openflow/netronome-ext.h"
31 #include "openflow/nicira-ext.h"
32 #include "openvswitch/types.h"
33 #include "type-props.h"
34
35 struct ofpbuf;
36 union ofp_action;
37 struct ofpact_set_field;
38
39 /* Port numbers. */
40 enum ofperr ofputil_port_from_ofp11(ovs_be32 ofp11_port,
41                                     ofp_port_t *ofp10_port);
42 ovs_be32 ofputil_port_to_ofp11(ofp_port_t ofp10_port);
43
44 bool ofputil_port_from_string(const char *, ofp_port_t *portp);
45 void ofputil_format_port(ofp_port_t port, struct ds *);
46 void ofputil_port_to_string(ofp_port_t, char namebuf[OFP_MAX_PORT_NAME_LEN],
47                             size_t bufsize);
48
49 /* Group numbers. */
50 enum { MAX_GROUP_NAME_LEN = INT_STRLEN(uint32_t) };
51 bool ofputil_group_from_string(const char *, uint32_t *group_id);
52 void ofputil_format_group(uint32_t group_id, struct ds *);
53 void ofputil_group_to_string(uint32_t group_id,
54                              char namebuf[MAX_GROUP_NAME_LEN + 1],
55                              size_t bufsize);
56
57 /* Converting OFPFW10_NW_SRC_MASK and OFPFW10_NW_DST_MASK wildcard bit counts
58  * to and from IP bitmasks. */
59 ovs_be32 ofputil_wcbits_to_netmask(int wcbits);
60 int ofputil_netmask_to_wcbits(ovs_be32 netmask);
61
62 /* Protocols.
63  *
64  * A "protocol" is an OpenFlow version plus, for some OpenFlow versions,
65  * a bit extra about the flow match format in use.
66  *
67  * These are arranged from most portable to least portable, or alternatively
68  * from least powerful to most powerful.  Protocols earlier on the list are
69  * more likely to be understood for the purpose of making requests, but
70  * protocol later on the list are more likely to accurately describe a flow
71  * within a switch.
72  *
73  * On any given OpenFlow connection, a single protocol is in effect at any
74  * given time.  These values use separate bits only because that makes it easy
75  * to test whether a particular protocol is within a given set of protocols and
76  * to implement set union and intersection.
77  */
78 enum ofputil_protocol {
79     /* OpenFlow 1.0 protocols.
80      *
81      * The "STD" protocols use the standard OpenFlow 1.0 flow format.
82      * The "NXM" protocols use the Nicira Extensible Match (NXM) flow format.
83      *
84      * The protocols with "TID" mean that the nx_flow_mod_table_id Nicira
85      * extension has been enabled.  The other protocols have it disabled.
86      */
87 #define OFPUTIL_P_NONE 0
88     OFPUTIL_P_OF10_STD     = 1 << 0,
89     OFPUTIL_P_OF10_STD_TID = 1 << 1,
90     OFPUTIL_P_OF10_NXM     = 1 << 2,
91     OFPUTIL_P_OF10_NXM_TID = 1 << 3,
92 #define OFPUTIL_P_OF10_STD_ANY (OFPUTIL_P_OF10_STD | OFPUTIL_P_OF10_STD_TID)
93 #define OFPUTIL_P_OF10_NXM_ANY (OFPUTIL_P_OF10_NXM | OFPUTIL_P_OF10_NXM_TID)
94 #define OFPUTIL_P_OF10_ANY (OFPUTIL_P_OF10_STD_ANY | OFPUTIL_P_OF10_NXM_ANY)
95
96     /* OpenFlow 1.1 protocol.
97      *
98      * We only support the standard OpenFlow 1.1 flow format.
99      *
100      * OpenFlow 1.1 always operates with an equivalent of the
101      * nx_flow_mod_table_id Nicira extension enabled, so there is no "TID"
102      * variant. */
103     OFPUTIL_P_OF11_STD     = 1 << 4,
104
105     /* OpenFlow 1.2+ protocols (only one variant each).
106      *
107      * These use the standard OpenFlow Extensible Match (OXM) flow format.
108      *
109      * OpenFlow 1.2+ always operates with an equivalent of the
110      * nx_flow_mod_table_id Nicira extension enabled, so there is no "TID"
111      * variant. */
112     OFPUTIL_P_OF12_OXM      = 1 << 5,
113     OFPUTIL_P_OF13_OXM      = 1 << 6,
114     OFPUTIL_P_OF14_OXM      = 1 << 7,
115     OFPUTIL_P_OF15_OXM      = 1 << 8,
116 #define OFPUTIL_P_ANY_OXM (OFPUTIL_P_OF12_OXM | \
117                            OFPUTIL_P_OF13_OXM | \
118                            OFPUTIL_P_OF14_OXM | \
119                            OFPUTIL_P_OF15_OXM)
120
121 #define OFPUTIL_P_NXM_OF11_UP (OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF11_STD | \
122                                OFPUTIL_P_ANY_OXM)
123
124 #define OFPUTIL_P_NXM_OXM_ANY (OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_ANY_OXM)
125
126 #define OFPUTIL_P_OF11_UP (OFPUTIL_P_OF11_STD | OFPUTIL_P_ANY_OXM)
127
128 #define OFPUTIL_P_OF12_UP (OFPUTIL_P_OF12_OXM | OFPUTIL_P_OF13_UP)
129 #define OFPUTIL_P_OF13_UP (OFPUTIL_P_OF13_OXM | OFPUTIL_P_OF14_UP)
130 #define OFPUTIL_P_OF14_UP (OFPUTIL_P_OF14_OXM | OFPUTIL_P_OF15_UP)
131 #define OFPUTIL_P_OF15_UP OFPUTIL_P_OF15_OXM
132
133     /* All protocols. */
134 #define OFPUTIL_P_ANY ((1 << 9) - 1)
135
136     /* Protocols in which a specific table may be specified in flow_mods. */
137 #define OFPUTIL_P_TID (OFPUTIL_P_OF10_STD_TID | \
138                        OFPUTIL_P_OF10_NXM_TID | \
139                        OFPUTIL_P_OF11_STD |     \
140                        OFPUTIL_P_ANY_OXM)
141 };
142
143 /* Protocols to use for flow dumps, from most to least preferred. */
144 extern enum ofputil_protocol ofputil_flow_dump_protocols[];
145 extern size_t ofputil_n_flow_dump_protocols;
146
147 enum ofputil_protocol ofputil_protocol_from_ofp_version(enum ofp_version);
148 enum ofputil_protocol ofputil_protocols_from_ofp_version(enum ofp_version);
149 enum ofp_version ofputil_protocol_to_ofp_version(enum ofputil_protocol);
150
151 bool ofputil_protocol_is_valid(enum ofputil_protocol);
152 enum ofputil_protocol ofputil_protocol_set_tid(enum ofputil_protocol,
153                                                bool enable);
154 enum ofputil_protocol ofputil_protocol_to_base(enum ofputil_protocol);
155 enum ofputil_protocol ofputil_protocol_set_base(
156     enum ofputil_protocol cur, enum ofputil_protocol new_base);
157
158 const char *ofputil_protocol_to_string(enum ofputil_protocol);
159 char *ofputil_protocols_to_string(enum ofputil_protocol);
160 enum ofputil_protocol ofputil_protocols_from_string(const char *);
161
162 void ofputil_format_version(struct ds *, enum ofp_version);
163 void ofputil_format_version_name(struct ds *, enum ofp_version);
164
165 /* A bitmap of version numbers
166  *
167  * Bit offsets correspond to ofp_version numbers which in turn correspond to
168  * wire-protocol numbers for OpenFlow versions, e.g. (1u << OFP11_VERSION)
169  * is the mask for OpenFlow 1.1.  If the bit for a version is set then it is
170  * allowed, otherwise it is disallowed. */
171
172 void ofputil_format_version_bitmap(struct ds *msg, uint32_t bitmap);
173 void ofputil_format_version_bitmap_names(struct ds *msg, uint32_t bitmap);
174
175 enum ofp_version ofputil_version_from_string(const char *s);
176
177 uint32_t ofputil_protocols_to_version_bitmap(enum ofputil_protocol);
178 enum ofputil_protocol ofputil_protocols_from_version_bitmap(uint32_t bitmap);
179
180 /* Bitmaps of OpenFlow versions that Open vSwitch supports, and that it enables
181  * by default.  When Open vSwitch has experimental or incomplete support for
182  * newer versions of OpenFlow, those versions should not be supported by
183  * default and thus should be omitted from the latter bitmap. */
184 #define OFPUTIL_SUPPORTED_VERSIONS ((1u << OFP10_VERSION) | \
185                                     (1u << OFP11_VERSION) | \
186                                     (1u << OFP12_VERSION) | \
187                                     (1u << OFP13_VERSION))
188 #define OFPUTIL_DEFAULT_VERSIONS OFPUTIL_SUPPORTED_VERSIONS
189
190 enum ofputil_protocol ofputil_protocols_from_string(const char *s);
191
192 const char *ofputil_version_to_string(enum ofp_version ofp_version);
193 uint32_t ofputil_versions_from_string(const char *s);
194 uint32_t ofputil_versions_from_strings(char ** const s, size_t count);
195
196 bool ofputil_decode_hello(const struct ofp_header *,
197                           uint32_t *allowed_versions);
198 struct ofpbuf *ofputil_encode_hello(uint32_t version_bitmap);
199
200 struct ofpbuf *ofputil_encode_set_protocol(enum ofputil_protocol current,
201                                            enum ofputil_protocol want,
202                                            enum ofputil_protocol *next);
203
204 /* nx_flow_format */
205 struct ofpbuf *ofputil_encode_nx_set_flow_format(enum nx_flow_format);
206 enum ofputil_protocol ofputil_nx_flow_format_to_protocol(enum nx_flow_format);
207 bool ofputil_nx_flow_format_is_valid(enum nx_flow_format);
208 const char *ofputil_nx_flow_format_to_string(enum nx_flow_format);
209
210 /* Work with ofp10_match. */
211 void ofputil_wildcard_from_ofpfw10(uint32_t ofpfw, struct flow_wildcards *);
212 void ofputil_match_from_ofp10_match(const struct ofp10_match *,
213                                     struct match *);
214 void ofputil_normalize_match(struct match *);
215 void ofputil_normalize_match_quiet(struct match *);
216 void ofputil_match_to_ofp10_match(const struct match *, struct ofp10_match *);
217
218 /* Work with ofp11_match. */
219 enum ofperr ofputil_pull_ofp11_match(struct ofpbuf *, struct match *,
220                                      uint16_t *padded_match_len);
221 enum ofperr ofputil_pull_ofp11_mask(struct ofpbuf *, struct match *,
222                                     struct mf_bitmap *bm);
223 enum ofperr ofputil_match_from_ofp11_match(const struct ofp11_match *,
224                                            struct match *);
225 int ofputil_put_ofp11_match(struct ofpbuf *, const struct match *,
226                             enum ofputil_protocol);
227 void ofputil_match_to_ofp11_match(const struct match *, struct ofp11_match *);
228 int ofputil_match_typical_len(enum ofputil_protocol);
229
230 /* dl_type translation between OpenFlow and 'struct flow' format. */
231 ovs_be16 ofputil_dl_type_to_openflow(ovs_be16 flow_dl_type);
232 ovs_be16 ofputil_dl_type_from_openflow(ovs_be16 ofp_dl_type);
233
234 /* PACKET_IN. */
235 bool ofputil_packet_in_format_is_valid(enum nx_packet_in_format);
236 int ofputil_packet_in_format_from_string(const char *);
237 const char *ofputil_packet_in_format_to_string(enum nx_packet_in_format);
238 struct ofpbuf *ofputil_make_set_packet_in_format(enum ofp_version,
239                                                  enum nx_packet_in_format);
240
241 /* NXT_FLOW_MOD_TABLE_ID extension. */
242 struct ofpbuf *ofputil_make_flow_mod_table_id(bool flow_mod_table_id);
243
244 /* Protocol-independent flow_mod flags. */
245 enum ofputil_flow_mod_flags {
246     /* Flags that are maintained with a flow as part of its state.
247      *
248      * (OFPUTIL_FF_EMERG would be here too, if OVS supported it.) */
249     OFPUTIL_FF_SEND_FLOW_REM = 1 << 0, /* All versions. */
250     OFPUTIL_FF_NO_PKT_COUNTS = 1 << 1, /* OpenFlow 1.3+. */
251     OFPUTIL_FF_NO_BYT_COUNTS = 1 << 2, /* OpenFlow 1.3+. */
252 #define OFPUTIL_FF_STATE (OFPUTIL_FF_SEND_FLOW_REM      \
253                           | OFPUTIL_FF_NO_PKT_COUNTS    \
254                           | OFPUTIL_FF_NO_BYT_COUNTS)
255
256     /* Flags that affect flow_mod behavior but are not part of flow state. */
257     OFPUTIL_FF_CHECK_OVERLAP = 1 << 3, /* All versions. */
258     OFPUTIL_FF_EMERG         = 1 << 4, /* OpenFlow 1.0 only. */
259     OFPUTIL_FF_RESET_COUNTS  = 1 << 5, /* OpenFlow 1.2+. */
260
261     /* Flags that are only set by OVS for its internal use.  Cannot be set via
262      * OpenFlow. */
263     OFPUTIL_FF_HIDDEN_FIELDS = 1 << 6, /* Allow hidden match fields to be
264                                           set or modified. */
265     OFPUTIL_FF_NO_READONLY   = 1 << 7, /* Allow rules within read only tables
266                                           to be modified */
267 };
268
269 /* Protocol-independent flow_mod.
270  *
271  * The handling of cookies across multiple versions of OpenFlow is a bit
272  * confusing.  See DESIGN for the details. */
273 struct ofputil_flow_mod {
274     struct ovs_list list_node; /* For queuing flow_mods. */
275
276     struct match match;
277     int priority;
278
279     /* Cookie matching.  The flow_mod affects only flows that have cookies that
280      * bitwise match 'cookie' bits in positions where 'cookie_mask has 1-bits.
281      *
282      * 'cookie_mask' should be zero for OFPFC_ADD flow_mods. */
283     ovs_be64 cookie;         /* Cookie bits to match. */
284     ovs_be64 cookie_mask;    /* 1-bit in each 'cookie' bit to match. */
285
286     /* Cookie changes.
287      *
288      * OFPFC_ADD uses 'new_cookie' as the new flow's cookie.  'new_cookie'
289      * should not be UINT64_MAX.
290      *
291      * OFPFC_MODIFY and OFPFC_MODIFY_STRICT have two cases:
292      *
293      *   - If one or more matching flows exist and 'modify_cookie' is true,
294      *     then the flow_mod changes the existing flows' cookies to
295      *     'new_cookie'.  'new_cookie' should not be UINT64_MAX.
296      *
297      *   - If no matching flow exists, 'new_cookie' is not UINT64_MAX, and
298      *     'cookie_mask' is 0, then the flow_mod adds a new flow with
299      *     'new_cookie' as its cookie.
300      */
301     ovs_be64 new_cookie;     /* New cookie to install or UINT64_MAX. */
302     bool modify_cookie;      /* Set cookie of existing flow to 'new_cookie'? */
303
304     uint8_t table_id;
305     uint16_t command;
306     uint16_t idle_timeout;
307     uint16_t hard_timeout;
308     uint32_t buffer_id;
309     ofp_port_t out_port;
310     uint32_t out_group;
311     enum ofputil_flow_mod_flags flags;
312     uint16_t importance;     /* Eviction precedence. */
313     struct ofpact *ofpacts;  /* Series of "struct ofpact"s. */
314     size_t ofpacts_len;      /* Length of ofpacts, in bytes. */
315
316     /* Reason for delete; ignored for non-delete commands */
317     enum ofp_flow_removed_reason delete_reason;
318 };
319
320 enum ofperr ofputil_decode_flow_mod(struct ofputil_flow_mod *,
321                                     const struct ofp_header *,
322                                     enum ofputil_protocol,
323                                     struct ofpbuf *ofpacts,
324                                     ofp_port_t max_port,
325                                     uint8_t max_table);
326 struct ofpbuf *ofputil_encode_flow_mod(const struct ofputil_flow_mod *,
327                                        enum ofputil_protocol);
328
329 /* Flow stats or aggregate stats request, independent of protocol. */
330 struct ofputil_flow_stats_request {
331     bool aggregate;             /* Aggregate results? */
332     struct match match;
333     ovs_be64 cookie;
334     ovs_be64 cookie_mask;
335     ofp_port_t out_port;
336     uint32_t out_group;
337     uint8_t table_id;
338 };
339
340 enum ofperr ofputil_decode_flow_stats_request(
341     struct ofputil_flow_stats_request *, const struct ofp_header *);
342 struct ofpbuf *ofputil_encode_flow_stats_request(
343     const struct ofputil_flow_stats_request *, enum ofputil_protocol);
344
345 /* Flow stats reply, independent of protocol. */
346 struct ofputil_flow_stats {
347     struct match match;
348     ovs_be64 cookie;
349     uint8_t table_id;
350     uint16_t priority;
351     uint16_t idle_timeout;
352     uint16_t hard_timeout;
353     uint32_t duration_sec;
354     uint32_t duration_nsec;
355     int idle_age;               /* Seconds since last packet, -1 if unknown. */
356     int hard_age;               /* Seconds since last change, -1 if unknown. */
357     uint64_t packet_count;      /* Packet count, UINT64_MAX if unknown. */
358     uint64_t byte_count;        /* Byte count, UINT64_MAX if unknown. */
359     const struct ofpact *ofpacts;
360     size_t ofpacts_len;
361     enum ofputil_flow_mod_flags flags;
362     uint16_t importance;        /* Eviction precedence. */
363 };
364
365 int ofputil_decode_flow_stats_reply(struct ofputil_flow_stats *,
366                                     struct ofpbuf *msg,
367                                     bool flow_age_extension,
368                                     struct ofpbuf *ofpacts);
369 void ofputil_append_flow_stats_reply(const struct ofputil_flow_stats *,
370                                      struct ovs_list *replies);
371
372 /* Aggregate stats reply, independent of protocol. */
373 struct ofputil_aggregate_stats {
374     uint64_t packet_count;      /* Packet count, UINT64_MAX if unknown. */
375     uint64_t byte_count;        /* Byte count, UINT64_MAX if unknown. */
376     uint32_t flow_count;
377 };
378
379 struct ofpbuf *ofputil_encode_aggregate_stats_reply(
380     const struct ofputil_aggregate_stats *stats,
381     const struct ofp_header *request);
382 enum ofperr ofputil_decode_aggregate_stats_reply(
383     struct ofputil_aggregate_stats *,
384     const struct ofp_header *reply);
385
386 /* Flow removed message, independent of protocol. */
387 struct ofputil_flow_removed {
388     struct match match;
389     ovs_be64 cookie;
390     uint16_t priority;
391     uint8_t reason;             /* One of OFPRR_*. */
392     uint8_t table_id;           /* 255 if message didn't include table ID. */
393     uint32_t duration_sec;
394     uint32_t duration_nsec;
395     uint16_t idle_timeout;
396     uint16_t hard_timeout;
397     uint64_t packet_count;      /* Packet count, UINT64_MAX if unknown. */
398     uint64_t byte_count;        /* Byte count, UINT64_MAX if unknown. */
399 };
400
401 enum ofperr ofputil_decode_flow_removed(struct ofputil_flow_removed *,
402                                         const struct ofp_header *);
403 struct ofpbuf *ofputil_encode_flow_removed(const struct ofputil_flow_removed *,
404                                            enum ofputil_protocol);
405
406 /* Abstract packet-in message. */
407 struct ofputil_packet_in {
408     /* Packet data and metadata.
409      *
410      * To save bandwidth, in some cases a switch may send only the first
411      * several bytes of a packet, indicated by 'packet_len < total_len'.  When
412      * the full packet is included, 'packet_len == total_len'. */
413     const void *packet;
414     size_t packet_len;          /* Number of bytes in 'packet'. */
415     size_t total_len;           /* Size of packet, pre-truncation. */
416     struct match flow_metadata;
417
418     /* Identifies a buffer in the switch that contains the full packet, to
419      * allow the controller to reference it later without having to send the
420      * entire packet back to the switch.
421      *
422      * UINT32_MAX indicates that the packet is not buffered in the switch.  A
423      * switch should only use UINT32_MAX when it sends the entire packet. */
424     uint32_t buffer_id;
425
426     /* Reason that the packet-in is being sent. */
427     enum ofp_packet_in_reason reason;    /* One of OFPR_*. */
428
429     /* Information about the OpenFlow flow that triggered the packet-in.
430      *
431      * A packet-in triggered by a flow table miss has no associated flow.  In
432      * that case, 'cookie' is UINT64_MAX. */
433     uint8_t table_id;                    /* OpenFlow table ID. */
434     ovs_be64 cookie;                     /* Flow's cookie. */
435 };
436
437 enum ofperr ofputil_decode_packet_in(struct ofputil_packet_in *,
438                                      const struct ofp_header *);
439 struct ofpbuf *ofputil_encode_packet_in(const struct ofputil_packet_in *,
440                                         enum ofputil_protocol protocol,
441                                         enum nx_packet_in_format);
442
443 enum { OFPUTIL_PACKET_IN_REASON_BUFSIZE = INT_STRLEN(int) + 1 };
444 const char *ofputil_packet_in_reason_to_string(enum ofp_packet_in_reason,
445                                                char *reasonbuf,
446                                                size_t bufsize);
447 bool ofputil_packet_in_reason_from_string(const char *,
448                                           enum ofp_packet_in_reason *);
449
450 /* Abstract packet-out message.
451  *
452  * ofputil_decode_packet_out() will ensure that 'in_port' is a physical port
453  * (OFPP_MAX or less) or one of OFPP_LOCAL, OFPP_NONE, or OFPP_CONTROLLER. */
454 struct ofputil_packet_out {
455     const void *packet;         /* Packet data, if buffer_id == UINT32_MAX. */
456     size_t packet_len;          /* Length of packet data in bytes. */
457     uint32_t buffer_id;         /* Buffer id or UINT32_MAX if no buffer. */
458     ofp_port_t in_port;         /* Packet's input port. */
459     struct ofpact *ofpacts;     /* Actions. */
460     size_t ofpacts_len;         /* Size of ofpacts in bytes. */
461 };
462
463 enum ofperr ofputil_decode_packet_out(struct ofputil_packet_out *,
464                                       const struct ofp_header *,
465                                       struct ofpbuf *ofpacts);
466 struct ofpbuf *ofputil_encode_packet_out(const struct ofputil_packet_out *,
467                                          enum ofputil_protocol protocol);
468
469 enum ofputil_port_config {
470     /* OpenFlow 1.0 and 1.1 share these values for these port config bits. */
471     OFPUTIL_PC_PORT_DOWN    = 1 << 0, /* Port is administratively down. */
472     OFPUTIL_PC_NO_RECV      = 1 << 2, /* Drop all packets received by port. */
473     OFPUTIL_PC_NO_FWD       = 1 << 5, /* Drop packets forwarded to port. */
474     OFPUTIL_PC_NO_PACKET_IN = 1 << 6, /* No send packet-in msgs for port. */
475     /* OpenFlow 1.0 only. */
476     OFPUTIL_PC_NO_STP       = 1 << 1, /* No 802.1D spanning tree for port. */
477     OFPUTIL_PC_NO_RECV_STP  = 1 << 3, /* Drop received 802.1D STP packets. */
478     OFPUTIL_PC_NO_FLOOD     = 1 << 4, /* Do not include port when flooding. */
479     /* There are no OpenFlow 1.1-only bits. */
480 };
481
482 enum ofputil_port_state {
483     /* OpenFlow 1.0 and 1.1 share this values for these port state bits. */
484     OFPUTIL_PS_LINK_DOWN   = 1 << 0, /* No physical link present. */
485     /* OpenFlow 1.1 only. */
486     OFPUTIL_PS_BLOCKED     = 1 << 1, /* Port is blocked */
487     OFPUTIL_PS_LIVE        = 1 << 2, /* Live for Fast Failover Group. */
488     /* OpenFlow 1.0 only. */
489     OFPUTIL_PS_STP_LISTEN  = 0 << 8, /* Not learning or relaying frames. */
490     OFPUTIL_PS_STP_LEARN   = 1 << 8, /* Learning but not relaying frames. */
491     OFPUTIL_PS_STP_FORWARD = 2 << 8, /* Learning and relaying frames. */
492     OFPUTIL_PS_STP_BLOCK   = 3 << 8, /* Not part of spanning tree. */
493     OFPUTIL_PS_STP_MASK    = 3 << 8  /* Bit mask for OFPPS10_STP_* values. */
494 };
495
496 /* Abstract ofp10_phy_port or ofp11_port. */
497 struct ofputil_phy_port {
498     ofp_port_t port_no;
499     uint8_t hw_addr[OFP_ETH_ALEN];
500     char name[OFP_MAX_PORT_NAME_LEN];
501     enum ofputil_port_config config;
502     enum ofputil_port_state state;
503
504     /* NETDEV_F_* feature bitmasks. */
505     enum netdev_features curr;       /* Current features. */
506     enum netdev_features advertised; /* Features advertised by the port. */
507     enum netdev_features supported;  /* Features supported by the port. */
508     enum netdev_features peer;       /* Features advertised by peer. */
509
510     /* Speed. */
511     uint32_t curr_speed;        /* Current speed, in kbps. */
512     uint32_t max_speed;         /* Maximum supported speed, in kbps. */
513 };
514
515 enum ofputil_capabilities {
516     /* OpenFlow 1.0, 1.1, 1.2, and 1.3 share these capability values. */
517     OFPUTIL_C_FLOW_STATS     = 1 << 0,  /* Flow statistics. */
518     OFPUTIL_C_TABLE_STATS    = 1 << 1,  /* Table statistics. */
519     OFPUTIL_C_PORT_STATS     = 1 << 2,  /* Port statistics. */
520     OFPUTIL_C_IP_REASM       = 1 << 5,  /* Can reassemble IP fragments. */
521     OFPUTIL_C_QUEUE_STATS    = 1 << 6,  /* Queue statistics. */
522
523     /* OpenFlow 1.0 and 1.1 share this capability. */
524     OFPUTIL_C_ARP_MATCH_IP   = 1 << 7,  /* Match IP addresses in ARP pkts. */
525
526     /* OpenFlow 1.0 only. */
527     OFPUTIL_C_STP            = 1 << 3,  /* 802.1d spanning tree. */
528
529     /* OpenFlow 1.1, 1.2, and 1.3 share this capability. */
530     OFPUTIL_C_GROUP_STATS    = 1 << 4,  /* Group statistics. */
531
532     /* OpenFlow 1.2 and 1.3 share this capability */
533     OFPUTIL_C_PORT_BLOCKED   = 1 << 8,  /* Switch will block looping ports */
534 };
535
536 /* Abstract ofp_switch_features. */
537 struct ofputil_switch_features {
538     uint64_t datapath_id;       /* Datapath unique ID. */
539     uint32_t n_buffers;         /* Max packets buffered at once. */
540     uint8_t n_tables;           /* Number of tables supported by datapath. */
541     uint8_t auxiliary_id;       /* Identify auxiliary connections */
542     enum ofputil_capabilities capabilities;
543     uint64_t ofpacts;           /* Bitmap of OFPACT_* bits. */
544 };
545
546 enum ofperr ofputil_decode_switch_features(const struct ofp_header *,
547                                            struct ofputil_switch_features *,
548                                            struct ofpbuf *);
549
550 struct ofpbuf *ofputil_encode_switch_features(
551     const struct ofputil_switch_features *, enum ofputil_protocol,
552     ovs_be32 xid);
553 void ofputil_put_switch_features_port(const struct ofputil_phy_port *,
554                                       struct ofpbuf *);
555 bool ofputil_switch_features_has_ports(struct ofpbuf *b);
556
557 /* phy_port helper functions. */
558 int ofputil_pull_phy_port(enum ofp_version ofp_version, struct ofpbuf *,
559                           struct ofputil_phy_port *);
560
561 /* Abstract ofp_port_status. */
562 struct ofputil_port_status {
563     enum ofp_port_reason reason;
564     struct ofputil_phy_port desc;
565 };
566
567 enum ofperr ofputil_decode_port_status(const struct ofp_header *,
568                                        struct ofputil_port_status *);
569 struct ofpbuf *ofputil_encode_port_status(const struct ofputil_port_status *,
570                                           enum ofputil_protocol);
571
572 /* Abstract ofp_port_mod. */
573 struct ofputil_port_mod {
574     ofp_port_t port_no;
575     uint8_t hw_addr[OFP_ETH_ALEN];
576     enum ofputil_port_config config;
577     enum ofputil_port_config mask;
578     enum netdev_features advertise;
579 };
580
581 enum ofperr ofputil_decode_port_mod(const struct ofp_header *,
582                                     struct ofputil_port_mod *, bool loose);
583 struct ofpbuf *ofputil_encode_port_mod(const struct ofputil_port_mod *,
584                                        enum ofputil_protocol);
585
586 /* Abstract version of OFPTC11_TABLE_MISS_*.
587  *
588  * OpenFlow 1.0 always sends packets that miss to the next flow table, or to
589  * the controller if they miss in the last flow table.
590  *
591  * OpenFlow 1.1 and 1.2 can configure table miss behavior via a "table-mod"
592  * that specifies "send to controller", "miss", or "drop".
593  *
594  * OpenFlow 1.3 and later never sends packets that miss to the controller.
595  */
596 enum ofputil_table_miss {
597     /* Protocol-specific default behavior.  On OpenFlow 1.0 through 1.2
598      * connections, the packet is sent to the controller, and on OpenFlow 1.3
599      * and later connections, the packet is dropped.
600      *
601      * This is also used as a result of decoding OpenFlow 1.3+ "config" values
602      * in table-mods, to indicate that no table-miss was specified. */
603     OFPUTIL_TABLE_MISS_DEFAULT,    /* Protocol default behavior. */
604
605     /* These constants have the same meanings as those in OpenFlow with the
606      * same names. */
607     OFPUTIL_TABLE_MISS_CONTROLLER, /* Send to controller. */
608     OFPUTIL_TABLE_MISS_CONTINUE,   /* Go to next table. */
609     OFPUTIL_TABLE_MISS_DROP,       /* Drop the packet. */
610 };
611
612 /* Abstract version of OFPTC14_EVICTION.
613  *
614  * OpenFlow 1.0 through 1.3 don't know anything about eviction, so decoding a
615  * message for one of these protocols always yields
616  * OFPUTIL_TABLE_EVICTION_DEFAULT. */
617 enum ofputil_table_eviction {
618     OFPUTIL_TABLE_EVICTION_DEFAULT, /* No value. */
619     OFPUTIL_TABLE_EVICTION_ON,      /* Enable eviction. */
620     OFPUTIL_TABLE_EVICTION_OFF      /* Disable eviction. */
621 };
622
623 /* Abstract ofp_table_mod. */
624 struct ofputil_table_mod {
625     uint8_t table_id;         /* ID of the table, 0xff indicates all tables. */
626
627     /* OpenFlow 1.1 and 1.2 only.  For other versions, ignored on encoding,
628      * decoded to OFPUTIL_TABLE_MISS_DEFAULT. */
629     enum ofputil_table_miss miss;
630
631     /* OpenFlow 1.4+ only.  For other versions, ignored on encoding, decoded to
632      * OFPUTIL_TABLE_EVICTION_DEFAULT. */
633     enum ofputil_table_eviction eviction;
634
635     /* OpenFlow 1.4+ only and optional even there; UINT32_MAX indicates
636      * absence.  For other versions, ignored on encoding, decoded to
637      * UINT32_MAX.*/
638     uint32_t eviction_flags;    /* OFPTMPEF14_*. */
639 };
640
641 enum ofperr ofputil_decode_table_mod(const struct ofp_header *,
642                                     struct ofputil_table_mod *);
643 struct ofpbuf *ofputil_encode_table_mod(const struct ofputil_table_mod *,
644                                        enum ofputil_protocol);
645
646 /* Abstract ofp_table_features.
647  *
648  * This is used for all versions of OpenFlow, even though ofp_table_features
649  * was only introduced in OpenFlow 1.3, because earlier versions of OpenFlow
650  * include support for a subset of ofp_table_features through OFPST_TABLE (aka
651  * OFPMP_TABLE). */
652 struct ofputil_table_features {
653     uint8_t table_id;         /* Identifier of table. Lower numbered tables
654                                  are consulted first. */
655     char name[OFP_MAX_TABLE_NAME_LEN];
656     ovs_be64 metadata_match;  /* Bits of metadata table can match. */
657     ovs_be64 metadata_write;  /* Bits of metadata table can write. */
658     uint32_t max_entries;     /* Max number of entries supported. */
659
660     /* Flags.
661      *
662      * 'miss_config' is relevant for OpenFlow 1.1 and 1.2 only, because those
663      * versions include OFPTC_MISS_* flags in OFPST_TABLE.  For other versions,
664      * it is decoded to OFPUTIL_TABLE_MISS_DEFAULT and ignored for encoding.
665      *
666      * 'supports_eviction' and 'supports_vacancy_events' are relevant only for
667      * OpenFlow 1.4 and later only.  For OF1.4, they are boolean: 1 if
668      * supported, otherwise 0.  For other versions, they are decoded as -1 and
669      * ignored for encoding.
670      *
671      * See the section "OFPTC_* Table Configuration" in DESIGN.md for more
672      * details of how OpenFlow has changed in this area.
673      */
674     enum ofputil_table_miss miss_config; /* OF1.1 and 1.2 only. */
675     int supports_eviction;               /* OF1.4+ only. */
676     int supports_vacancy_events;         /* OF1.4+ only. */
677
678     /* Table features related to instructions.  There are two instances:
679      *
680      *   - 'miss' reports features available in the table miss flow.
681      *
682      *   - 'nonmiss' reports features available in other flows. */
683     struct ofputil_table_instruction_features {
684         /* Tables that "goto-table" may jump to. */
685         unsigned long int next[BITMAP_N_LONGS(255)];
686
687         /* Bitmap of OVSINST_* for supported instructions. */
688         uint32_t instructions;
689
690         /* Table features related to actions.  There are two instances:
691          *
692          *    - 'write' reports features available in a "write_actions"
693          *      instruction.
694          *
695          *    - 'apply' reports features available in an "apply_actions"
696          *      instruction. */
697         struct ofputil_table_action_features {
698             uint64_t ofpacts;     /* Bitmap of supported OFPACT_*. */
699             struct mf_bitmap set_fields; /* Fields for "set-field". */
700         } write, apply;
701     } nonmiss, miss;
702
703     /* MFF_* bitmaps.
704      *
705      * For any given field the following combinations are valid:
706      *
707      *    - match=0, wildcard=0, mask=0: Flows in this table cannot match on
708      *      this field.
709      *
710      *    - match=1, wildcard=0, mask=0: Flows in this table must match on all
711      *      the bits in this field.
712      *
713      *    - match=1, wildcard=1, mask=0: Flows in this table must either match
714      *      on all the bits in the field or wildcard the field entirely.
715      *
716      *    - match=1, wildcard=1, mask=1: Flows in this table may arbitrarily
717      *      mask this field (as special cases, they may match on all the bits
718      *      or wildcard it entirely).
719      *
720      * Other combinations do not make sense.
721      */
722     struct mf_bitmap match;     /* Fields that may be matched. */
723     struct mf_bitmap mask;      /* Subset of 'match' that may have masks. */
724     struct mf_bitmap wildcard;  /* Subset of 'match' that may be wildcarded. */
725 };
726
727 int ofputil_decode_table_features(struct ofpbuf *,
728                                   struct ofputil_table_features *, bool loose);
729 struct ofpbuf *ofputil_encode_table_features_request(enum ofp_version);
730
731 void ofputil_append_table_features_reply(
732     const struct ofputil_table_features *tf, struct ovs_list *replies);
733
734 /* Meter band configuration for all supported band types. */
735 struct ofputil_meter_band {
736     uint16_t type;
737     uint8_t prec_level;         /* Non-zero if type == OFPMBT_DSCP_REMARK. */
738     uint32_t rate;
739     uint32_t burst_size;
740 };
741
742 struct ofputil_meter_band_stats {
743     uint64_t packet_count;
744     uint64_t byte_count;
745 };
746
747 struct ofputil_meter_config {
748     uint32_t meter_id;
749     uint16_t flags;
750     uint16_t n_bands;
751     struct ofputil_meter_band *bands;
752 };
753
754 /* Abstract ofp_meter_mod. */
755 struct ofputil_meter_mod {
756     uint16_t command;
757     struct ofputil_meter_config meter;
758 };
759
760 struct ofputil_meter_stats {
761     uint32_t meter_id;
762     uint32_t flow_count;
763     uint64_t packet_in_count;
764     uint64_t byte_in_count;
765     uint32_t duration_sec;
766     uint32_t duration_nsec;
767     uint16_t n_bands;
768     struct ofputil_meter_band_stats *bands;
769 };
770
771 struct ofputil_meter_features {
772     uint32_t max_meters;        /* Maximum number of meters. */
773     uint32_t band_types;        /* Can support max 32 band types. */
774     uint32_t capabilities;      /* Supported flags. */
775     uint8_t  max_bands;
776     uint8_t  max_color;
777 };
778
779 enum ofperr ofputil_decode_meter_mod(const struct ofp_header *,
780                                      struct ofputil_meter_mod *,
781                                      struct ofpbuf *bands);
782 struct ofpbuf *ofputil_encode_meter_mod(enum ofp_version,
783                                         const struct ofputil_meter_mod *);
784
785 void ofputil_decode_meter_features(const struct ofp_header *,
786                                    struct ofputil_meter_features *);
787 struct ofpbuf *ofputil_encode_meter_features_reply(const struct
788                                                    ofputil_meter_features *,
789                                                    const struct ofp_header *
790                                                    request);
791 void ofputil_decode_meter_request(const struct ofp_header *,
792                                   uint32_t *meter_id);
793
794 void ofputil_append_meter_config(struct ovs_list *replies,
795                                  const struct ofputil_meter_config *);
796
797 void ofputil_append_meter_stats(struct ovs_list *replies,
798                                 const struct ofputil_meter_stats *);
799
800 enum ofputil_meter_request_type {
801     OFPUTIL_METER_FEATURES,
802     OFPUTIL_METER_CONFIG,
803     OFPUTIL_METER_STATS
804 };
805
806 struct ofpbuf *ofputil_encode_meter_request(enum ofp_version,
807                                             enum ofputil_meter_request_type,
808                                             uint32_t meter_id);
809
810 int ofputil_decode_meter_stats(struct ofpbuf *,
811                                struct ofputil_meter_stats *,
812                                struct ofpbuf *bands);
813
814 int ofputil_decode_meter_config(struct ofpbuf *,
815                                 struct ofputil_meter_config *,
816                                 struct ofpbuf *bands);
817
818 /* Type for meter_id in ofproto provider interface, UINT32_MAX if invalid. */
819 typedef struct { uint32_t uint32; } ofproto_meter_id;
820
821 /* Abstract ofp_role_request and reply. */
822 struct ofputil_role_request {
823     enum ofp12_controller_role role;
824     bool have_generation_id;
825     uint64_t generation_id;
826 };
827
828 struct ofputil_role_status {
829     enum ofp12_controller_role role;
830     enum ofp14_controller_role_reason reason;
831     uint64_t generation_id;
832 };
833
834 enum ofperr ofputil_decode_role_message(const struct ofp_header *,
835                                         struct ofputil_role_request *);
836 struct ofpbuf *ofputil_encode_role_reply(const struct ofp_header *,
837                                          const struct ofputil_role_request *);
838
839 struct ofpbuf *ofputil_encode_role_status(
840                                 const struct ofputil_role_status *status,
841                                 enum ofputil_protocol protocol);
842
843 enum ofperr ofputil_decode_role_status(const struct ofp_header *oh,
844                                        struct ofputil_role_status *rs);
845
846 /* Abstract table stats.
847  *
848  * This corresponds to the OpenFlow 1.3 table statistics structure, which only
849  * includes actual statistics.  In earlier versions of OpenFlow, several
850  * members describe table features, so this structure has to be paired with
851  * struct ofputil_table_features to get all information. */
852 struct ofputil_table_stats {
853     uint8_t table_id;           /* Identifier of table. */
854     uint32_t active_count;      /* Number of active entries. */
855     uint64_t lookup_count;      /* Number of packets looked up in table. */
856     uint64_t matched_count;     /* Number of packets that hit table. */
857 };
858
859 struct ofpbuf *ofputil_encode_table_stats_reply(const struct ofp_header *rq);
860 void ofputil_append_table_stats_reply(struct ofpbuf *reply,
861                                       const struct ofputil_table_stats *,
862                                       const struct ofputil_table_features *);
863
864 int ofputil_decode_table_stats_reply(struct ofpbuf *reply,
865                                      struct ofputil_table_stats *,
866                                      struct ofputil_table_features *);
867
868 /* Queue configuration request. */
869 struct ofpbuf *ofputil_encode_queue_get_config_request(enum ofp_version,
870                                                        ofp_port_t port);
871 enum ofperr ofputil_decode_queue_get_config_request(const struct ofp_header *,
872                                                     ofp_port_t *port);
873
874 /* Queue configuration reply. */
875 struct ofputil_queue_config {
876     uint32_t queue_id;
877
878     /* Each of these optional values is expressed in tenths of a percent.
879      * Values greater than 1000 indicate that the feature is disabled.
880      * UINT16_MAX indicates that the value is omitted. */
881     uint16_t min_rate;
882     uint16_t max_rate;
883 };
884
885 struct ofpbuf *ofputil_encode_queue_get_config_reply(
886     const struct ofp_header *request);
887 void ofputil_append_queue_get_config_reply(
888     struct ofpbuf *reply, const struct ofputil_queue_config *);
889
890 enum ofperr ofputil_decode_queue_get_config_reply(struct ofpbuf *reply,
891                                                   ofp_port_t *);
892 int ofputil_pull_queue_get_config_reply(struct ofpbuf *reply,
893                                         struct ofputil_queue_config *);
894
895
896 /* Abstract nx_flow_monitor_request. */
897 struct ofputil_flow_monitor_request {
898     uint32_t id;
899     enum nx_flow_monitor_flags flags;
900     ofp_port_t out_port;
901     uint8_t table_id;
902     struct match match;
903 };
904
905 int ofputil_decode_flow_monitor_request(struct ofputil_flow_monitor_request *,
906                                         struct ofpbuf *msg);
907 void ofputil_append_flow_monitor_request(
908     const struct ofputil_flow_monitor_request *, struct ofpbuf *msg);
909
910 /* Abstract nx_flow_update. */
911 struct ofputil_flow_update {
912     enum nx_flow_update_event event;
913
914     /* Used only for NXFME_ADDED, NXFME_DELETED, NXFME_MODIFIED. */
915     enum ofp_flow_removed_reason reason;
916     uint16_t idle_timeout;
917     uint16_t hard_timeout;
918     uint8_t table_id;
919     uint16_t priority;
920     ovs_be64 cookie;
921     struct match *match;
922     const struct ofpact *ofpacts;
923     size_t ofpacts_len;
924
925     /* Used only for NXFME_ABBREV. */
926     ovs_be32 xid;
927 };
928
929 int ofputil_decode_flow_update(struct ofputil_flow_update *,
930                                struct ofpbuf *msg, struct ofpbuf *ofpacts);
931 void ofputil_start_flow_update(struct ovs_list *replies);
932 void ofputil_append_flow_update(const struct ofputil_flow_update *,
933                                 struct ovs_list *replies);
934
935 /* Abstract nx_flow_monitor_cancel. */
936 uint32_t ofputil_decode_flow_monitor_cancel(const struct ofp_header *);
937 struct ofpbuf *ofputil_encode_flow_monitor_cancel(uint32_t id);
938
939 /* Port desc stats requests and replies. */
940 enum ofperr ofputil_decode_port_desc_stats_request(const struct ofp_header *,
941                                                    ofp_port_t *portp);
942 struct ofpbuf *ofputil_encode_port_desc_stats_request(
943     enum ofp_version ofp_version, ofp_port_t);
944
945 void ofputil_append_port_desc_stats_reply(const struct ofputil_phy_port *pp,
946                                           struct ovs_list *replies);
947
948 /* Encoding simple OpenFlow messages. */
949 struct ofpbuf *make_echo_request(enum ofp_version);
950 struct ofpbuf *make_echo_reply(const struct ofp_header *rq);
951
952 struct ofpbuf *ofputil_encode_barrier_request(enum ofp_version);
953
954 const char *ofputil_frag_handling_to_string(enum ofp_config_flags);
955 bool ofputil_frag_handling_from_string(const char *, enum ofp_config_flags *);
956
957 \f
958 /* Actions. */
959
960 bool action_outputs_to_port(const union ofp_action *, ovs_be16 port);
961
962 enum ofperr ofputil_pull_actions(struct ofpbuf *, unsigned int actions_len,
963                                  union ofp_action **, size_t *);
964
965 bool ofputil_actions_equal(const union ofp_action *a, size_t n_a,
966                            const union ofp_action *b, size_t n_b);
967 union ofp_action *ofputil_actions_clone(const union ofp_action *, size_t n);
968
969 /* Handy utility for parsing flows and actions. */
970 bool ofputil_parse_key_value(char **stringp, char **keyp, char **valuep);
971
972 struct ofputil_port_stats {
973     ofp_port_t port_no;
974     struct netdev_stats stats;
975     uint32_t duration_sec;      /* UINT32_MAX if unknown. */
976     uint32_t duration_nsec;
977 };
978
979 struct ofpbuf *ofputil_encode_dump_ports_request(enum ofp_version ofp_version,
980                                                  ofp_port_t port);
981 void ofputil_append_port_stat(struct ovs_list *replies,
982                               const struct ofputil_port_stats *ops);
983 size_t ofputil_count_port_stats(const struct ofp_header *);
984 int ofputil_decode_port_stats(struct ofputil_port_stats *, struct ofpbuf *msg);
985 enum ofperr ofputil_decode_port_stats_request(const struct ofp_header *request,
986                                               ofp_port_t *ofp10_port);
987
988 struct ofputil_queue_stats_request {
989     ofp_port_t port_no;           /* OFPP_ANY means "all ports". */
990     uint32_t queue_id;
991 };
992
993 enum ofperr
994 ofputil_decode_queue_stats_request(const struct ofp_header *request,
995                                    struct ofputil_queue_stats_request *oqsr);
996 struct ofpbuf *
997 ofputil_encode_queue_stats_request(enum ofp_version ofp_version,
998                                    const struct ofputil_queue_stats_request *oqsr);
999
1000 struct ofputil_queue_stats {
1001     ofp_port_t port_no;
1002     uint32_t queue_id;
1003
1004     /* Values of unsupported statistics are set to all-1-bits (UINT64_MAX). */
1005     uint64_t tx_bytes;
1006     uint64_t tx_packets;
1007     uint64_t tx_errors;
1008
1009     /* UINT32_MAX if unknown. */
1010     uint32_t duration_sec;
1011     uint32_t duration_nsec;
1012 };
1013
1014 size_t ofputil_count_queue_stats(const struct ofp_header *);
1015 int ofputil_decode_queue_stats(struct ofputil_queue_stats *qs, struct ofpbuf *msg);
1016 void ofputil_append_queue_stat(struct ovs_list *replies,
1017                                const struct ofputil_queue_stats *oqs);
1018
1019 struct bucket_counter {
1020     uint64_t packet_count;   /* Number of packets processed by bucket. */
1021     uint64_t byte_count;     /* Number of bytes processed by bucket. */
1022 };
1023
1024 /* Bucket for use in groups. */
1025 struct ofputil_bucket {
1026     struct ovs_list list_node;
1027     uint16_t weight;            /* Relative weight, for "select" groups. */
1028     ofp_port_t watch_port;      /* Port whose state affects whether this bucket
1029                                  * is live. Only required for fast failover
1030                                  * groups. */
1031     uint32_t watch_group;       /* Group whose state affects whether this
1032                                  * bucket is live. Only required for fast
1033                                  * failover groups. */
1034     uint32_t bucket_id;         /* Bucket Id used to identify bucket*/
1035     struct ofpact *ofpacts;     /* Series of "struct ofpact"s. */
1036     size_t ofpacts_len;         /* Length of ofpacts, in bytes. */
1037
1038     struct bucket_counter stats;
1039 };
1040
1041 /* Protocol-independent group_mod. */
1042 struct ofputil_group_props {
1043     /* NTR selection method */
1044     char selection_method[NTR_MAX_SELECTION_METHOD_LEN];
1045     uint64_t selection_method_param;
1046     struct field_array fields;
1047 };
1048
1049 /* Protocol-independent group_mod. */
1050 struct ofputil_group_mod {
1051     uint16_t command;             /* One of OFPGC15_*. */
1052     uint8_t type;                 /* One of OFPGT11_*. */
1053     uint32_t group_id;            /* Group identifier. */
1054     uint32_t command_bucket_id;   /* Bucket Id used as part of
1055                                    * OFPGC15_INSERT_BUCKET and
1056                                    * OFPGC15_REMOVE_BUCKET commands
1057                                    * execution.*/
1058     struct ovs_list buckets;      /* Contains "struct ofputil_bucket"s. */
1059     struct ofputil_group_props props; /* Group properties. */
1060 };
1061
1062 /* Group stats reply, independent of protocol. */
1063 struct ofputil_group_stats {
1064     uint32_t group_id;    /* Group identifier. */
1065     uint32_t ref_count;
1066     uint64_t packet_count;      /* Packet count, UINT64_MAX if unknown. */
1067     uint64_t byte_count;        /* Byte count, UINT64_MAX if unknown. */
1068     uint32_t duration_sec;      /* UINT32_MAX if unknown. */
1069     uint32_t duration_nsec;
1070     uint32_t n_buckets;
1071     struct bucket_counter *bucket_stats;
1072 };
1073
1074 /* Group features reply, independent of protocol.
1075  *
1076  * Only OF1.2 and later support group features replies. */
1077 struct ofputil_group_features {
1078     uint32_t  types;           /* Bitmap of OFPGT_* values supported. */
1079     uint32_t  capabilities;    /* Bitmap of OFPGFC12_* capability supported. */
1080     uint32_t  max_groups[4];   /* Maximum number of groups for each type. */
1081     uint64_t  ofpacts[4];      /* Bitmaps of supported OFPACT_* */
1082 };
1083
1084 /* Group desc reply, independent of protocol. */
1085 struct ofputil_group_desc {
1086     uint8_t type;               /* One of OFPGT_*. */
1087     uint32_t group_id;          /* Group identifier. */
1088     struct ovs_list buckets;    /* Contains "struct ofputil_bucket"s. */
1089     struct ofputil_group_props props; /* Group properties. */
1090 };
1091
1092 void ofputil_bucket_list_destroy(struct ovs_list *buckets);
1093 void ofputil_bucket_clone_list(struct ovs_list *dest,
1094                                const struct ovs_list *src,
1095                                const struct ofputil_bucket *);
1096 struct ofputil_bucket *ofputil_bucket_find(const struct ovs_list *,
1097                                            uint32_t bucket_id);
1098 bool ofputil_bucket_check_duplicate_id(const struct ovs_list *);
1099 struct ofputil_bucket *ofputil_bucket_list_front(const struct ovs_list *);
1100 struct ofputil_bucket *ofputil_bucket_list_back(const struct ovs_list *);
1101
1102 static inline bool
1103 ofputil_bucket_has_liveness(const struct ofputil_bucket *bucket)
1104 {
1105     return (bucket->watch_port != OFPP_ANY ||
1106             bucket->watch_group != OFPG_ANY);
1107 }
1108
1109 struct ofpbuf *ofputil_encode_group_stats_request(enum ofp_version,
1110                                                   uint32_t group_id);
1111 enum ofperr ofputil_decode_group_stats_request(
1112     const struct ofp_header *request, uint32_t *group_id);
1113 void ofputil_append_group_stats(struct ovs_list *replies,
1114                                 const struct ofputil_group_stats *);
1115 struct ofpbuf *ofputil_encode_group_features_request(enum ofp_version);
1116 struct ofpbuf *ofputil_encode_group_features_reply(
1117     const struct ofputil_group_features *, const struct ofp_header *request);
1118 void ofputil_decode_group_features_reply(const struct ofp_header *,
1119                                          struct ofputil_group_features *);
1120 void ofputil_uninit_group_mod(struct ofputil_group_mod *gm);
1121 struct ofpbuf *ofputil_encode_group_mod(enum ofp_version ofp_version,
1122                                         const struct ofputil_group_mod *gm);
1123
1124 enum ofperr ofputil_decode_group_mod(const struct ofp_header *,
1125                                      struct ofputil_group_mod *);
1126
1127 int ofputil_decode_group_stats_reply(struct ofpbuf *,
1128                                      struct ofputil_group_stats *);
1129
1130 void ofputil_uninit_group_desc(struct ofputil_group_desc *gd);
1131 uint32_t ofputil_decode_group_desc_request(const struct ofp_header *);
1132 struct ofpbuf *ofputil_encode_group_desc_request(enum ofp_version,
1133                                                  uint32_t group_id);
1134
1135 int ofputil_decode_group_desc_reply(struct ofputil_group_desc *,
1136                                     struct ofpbuf *, enum ofp_version);
1137
1138 void ofputil_append_group_desc_reply(const struct ofputil_group_desc *,
1139                                      const struct ovs_list *buckets,
1140                                      struct ovs_list *replies);
1141
1142 struct ofputil_bundle_ctrl_msg {
1143     uint32_t    bundle_id;
1144     uint16_t    type;
1145     uint16_t    flags;
1146 };
1147
1148 struct ofputil_bundle_add_msg {
1149     uint32_t            bundle_id;
1150     uint16_t            flags;
1151     const struct ofp_header   *msg;
1152 };
1153
1154 enum ofptype;
1155
1156 enum ofperr ofputil_decode_bundle_ctrl(const struct ofp_header *,
1157                                        struct ofputil_bundle_ctrl_msg *);
1158
1159 struct ofpbuf *ofputil_encode_bundle_ctrl_request(enum ofp_version,
1160                                                   struct ofputil_bundle_ctrl_msg *);
1161 struct ofpbuf *ofputil_encode_bundle_ctrl_reply(const struct ofp_header *,
1162                                                 struct ofputil_bundle_ctrl_msg *);
1163
1164 struct ofpbuf *ofputil_encode_bundle_add(enum ofp_version ofp_version,
1165                                          struct ofputil_bundle_add_msg *msg);
1166
1167 enum ofperr ofputil_decode_bundle_add(const struct ofp_header *,
1168                                       struct ofputil_bundle_add_msg *,
1169                                       enum ofptype *type);
1170
1171 struct ofputil_geneve_map {
1172     struct ovs_list list_node;
1173
1174     uint16_t option_class;
1175     uint8_t  option_type;
1176     uint8_t  option_len;
1177     uint16_t index;
1178 };
1179
1180 struct ofputil_geneve_table_mod {
1181     uint16_t command;
1182     struct ovs_list mappings;      /* Contains "struct ofputil_geneve_map"s. */
1183 };
1184
1185 struct ofputil_geneve_table_reply {
1186     uint32_t max_option_space;
1187     uint16_t max_fields;
1188     struct ovs_list mappings;      /* Contains "struct ofputil_geneve_map"s. */
1189 };
1190
1191 struct ofpbuf *ofputil_encode_geneve_table_mod(enum ofp_version ofp_version,
1192                                                struct ofputil_geneve_table_mod *);
1193 enum ofperr ofputil_decode_geneve_table_mod(const struct ofp_header *,
1194                                             struct ofputil_geneve_table_mod *);
1195 struct ofpbuf *ofputil_encode_geneve_table_reply(const struct ofp_header *,
1196                                                struct ofputil_geneve_table_reply *);
1197 enum ofperr ofputil_decode_geneve_table_reply(const struct ofp_header *,
1198                                               struct ofputil_geneve_table_reply *);
1199 void ofputil_uninit_geneve_table(struct ovs_list *mappings);
1200
1201 #endif /* ofp-util.h */