include/openflow: Move union ofp_action away from headers.
[sliver-openvswitch.git] / lib / ofp-util.h
1 /*
2  * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013 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 "classifier.h"
24 #include "compiler.h"
25 #include "flow.h"
26 #include "match.h"
27 #include "netdev.h"
28 #include "openflow/nicira-ext.h"
29 #include "openvswitch/types.h"
30 #include "type-props.h"
31
32 struct ofpbuf;
33 union ofp_action;
34
35 /* Port numbers. */
36 enum ofperr ofputil_port_from_ofp11(ovs_be32 ofp11_port,
37                                     ofp_port_t *ofp10_port);
38 ovs_be32 ofputil_port_to_ofp11(ofp_port_t ofp10_port);
39
40 enum ofperr ofputil_check_output_port(ofp_port_t ofp_port,
41                                       ofp_port_t max_ports);
42 bool ofputil_port_from_string(const char *, ofp_port_t *portp);
43 void ofputil_format_port(ofp_port_t port, struct ds *);
44 void ofputil_port_to_string(ofp_port_t, char namebuf[OFP_MAX_PORT_NAME_LEN],
45                             size_t bufsize);
46
47 /* Group numbers. */
48 enum { MAX_GROUP_NAME_LEN = INT_STRLEN(uint32_t) };
49 bool ofputil_group_from_string(const char *, uint32_t *group_id);
50 void ofputil_format_group(uint32_t group_id, struct ds *);
51 void ofputil_group_to_string(uint32_t group_id,
52                              char namebuf[MAX_GROUP_NAME_LEN + 1],
53                              size_t bufsize);
54
55 /* Converting OFPFW10_NW_SRC_MASK and OFPFW10_NW_DST_MASK wildcard bit counts
56  * to and from IP bitmasks. */
57 ovs_be32 ofputil_wcbits_to_netmask(int wcbits);
58 int ofputil_netmask_to_wcbits(ovs_be32 netmask);
59
60 /* Protocols.
61  *
62  * A "protocol" is an OpenFlow version plus, for some OpenFlow versions,
63  * a bit extra about the flow match format in use.
64  *
65  * These are arranged from most portable to least portable, or alternatively
66  * from least powerful to most powerful.  Protocols earlier on the list are
67  * more likely to be understood for the purpose of making requests, but
68  * protocol later on the list are more likely to accurately describe a flow
69  * within a switch.
70  *
71  * On any given OpenFlow connection, a single protocol is in effect at any
72  * given time.  These values use separate bits only because that makes it easy
73  * to test whether a particular protocol is within a given set of protocols and
74  * to implement set union and intersection.
75  */
76 enum ofputil_protocol {
77     /* OpenFlow 1.0 protocols.
78      *
79      * The "STD" protocols use the standard OpenFlow 1.0 flow format.
80      * The "NXM" protocols use the Nicira Extensible Match (NXM) flow format.
81      *
82      * The protocols with "TID" mean that the nx_flow_mod_table_id Nicira
83      * extension has been enabled.  The other protocols have it disabled.
84      */
85 #define OFPUTIL_P_NONE 0
86     OFPUTIL_P_OF10_STD     = 1 << 0,
87     OFPUTIL_P_OF10_STD_TID = 1 << 1,
88     OFPUTIL_P_OF10_NXM     = 1 << 2,
89     OFPUTIL_P_OF10_NXM_TID = 1 << 3,
90 #define OFPUTIL_P_OF10_STD_ANY (OFPUTIL_P_OF10_STD | OFPUTIL_P_OF10_STD_TID)
91 #define OFPUTIL_P_OF10_NXM_ANY (OFPUTIL_P_OF10_NXM | OFPUTIL_P_OF10_NXM_TID)
92
93     /* OpenFlow 1.1 protocol.
94      *
95      * We only support the standard OpenFlow 1.1 flow format.
96      *
97      * OpenFlow 1.1 always operates with an equivalent of the
98      * nx_flow_mod_table_id Nicira extension enabled, so there is no "TID"
99      * variant. */
100     OFPUTIL_P_OF11_STD     = 1 << 4,
101
102     /* OpenFlow 1.2+ protocols (only one variant each).
103      *
104      * These use the standard OpenFlow Extensible Match (OXM) flow format.
105      *
106      * OpenFlow 1.2+ always operates with an equivalent of the
107      * nx_flow_mod_table_id Nicira extension enabled, so there is no "TID"
108      * variant. */
109     OFPUTIL_P_OF12_OXM      = 1 << 5,
110     OFPUTIL_P_OF13_OXM      = 1 << 6,
111 #define OFPUTIL_P_ANY_OXM (OFPUTIL_P_OF12_OXM | OFPUTIL_P_OF13_OXM)
112
113 #define OFPUTIL_P_NXM_OF11_UP (OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF11_STD | \
114                                OFPUTIL_P_ANY_OXM)
115
116 #define OFPUTIL_P_NXM_OXM_ANY (OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_ANY_OXM)
117
118 #define OFPUTIL_P_OF11_UP (OFPUTIL_P_OF11_STD | OFPUTIL_P_ANY_OXM)
119
120 #define OFPUTIL_P_OF12_UP (OFPUTIL_P_ANY_OXM)
121
122 #define OFPUTIL_P_OF13_UP (OFPUTIL_P_OF13_OXM)
123
124     /* All protocols. */
125 #define OFPUTIL_P_ANY ((1 << 7) - 1)
126
127     /* Protocols in which a specific table may be specified in flow_mods. */
128 #define OFPUTIL_P_TID (OFPUTIL_P_OF10_STD_TID | \
129                        OFPUTIL_P_OF10_NXM_TID | \
130                        OFPUTIL_P_OF11_STD |     \
131                        OFPUTIL_P_ANY_OXM)
132 };
133
134 /* Protocols to use for flow dumps, from most to least preferred. */
135 extern enum ofputil_protocol ofputil_flow_dump_protocols[];
136 extern size_t ofputil_n_flow_dump_protocols;
137
138 enum ofputil_protocol ofputil_protocol_from_ofp_version(enum ofp_version);
139 enum ofputil_protocol ofputil_protocols_from_ofp_version(enum ofp_version);
140 enum ofp_version ofputil_protocol_to_ofp_version(enum ofputil_protocol);
141
142 bool ofputil_protocol_is_valid(enum ofputil_protocol);
143 enum ofputil_protocol ofputil_protocol_set_tid(enum ofputil_protocol,
144                                                bool enable);
145 enum ofputil_protocol ofputil_protocol_to_base(enum ofputil_protocol);
146 enum ofputil_protocol ofputil_protocol_set_base(
147     enum ofputil_protocol cur, enum ofputil_protocol new_base);
148
149 const char *ofputil_protocol_to_string(enum ofputil_protocol);
150 char *ofputil_protocols_to_string(enum ofputil_protocol);
151 enum ofputil_protocol ofputil_protocols_from_string(const char *);
152
153 void ofputil_format_version(struct ds *, enum ofp_version);
154 void ofputil_format_version_name(struct ds *, enum ofp_version);
155
156 /* A bitmap of version numbers
157  *
158  * Bit offsets correspond to ofp_version numbers which in turn correspond to
159  * wire-protocol numbers for Open Flow versions..  E.g. (1u << OFP11_VERSION)
160  * is the mask for Open Flow 1.1.  If the bit for a version is set then it is
161  * allowed, otherwise it is disallowed. */
162
163 void ofputil_format_version_bitmap(struct ds *msg, uint32_t bitmap);
164 void ofputil_format_version_bitmap_names(struct ds *msg, uint32_t bitmap);
165
166 uint32_t ofputil_protocols_to_version_bitmap(enum ofputil_protocol);
167 enum ofputil_protocol ofputil_protocols_from_version_bitmap(uint32_t bitmap);
168
169 /* Bitmap of OpenFlow versions that Open vSwitch supports. */
170 #define OFPUTIL_SUPPORTED_VERSIONS \
171     ((1u << OFP10_VERSION) | (1u << OFP12_VERSION) | (1u << OFP13_VERSION))
172
173 /* Bitmap of OpenFlow versions to enable by default (a subset of
174  * OFPUTIL_SUPPORTED_VERSIONS). */
175 #define OFPUTIL_DEFAULT_VERSIONS (1u << OFP10_VERSION)
176
177 enum ofputil_protocol ofputil_protocols_from_string(const char *s);
178
179 const char *ofputil_version_to_string(enum ofp_version ofp_version);
180 uint32_t ofputil_versions_from_string(const char *s);
181 uint32_t ofputil_versions_from_strings(char ** const s, size_t count);
182
183 bool ofputil_decode_hello(const struct ofp_header *,
184                           uint32_t *allowed_versions);
185 struct ofpbuf *ofputil_encode_hello(uint32_t version_bitmap);
186
187 struct ofpbuf *ofputil_encode_set_protocol(enum ofputil_protocol current,
188                                            enum ofputil_protocol want,
189                                            enum ofputil_protocol *next);
190
191 /* nx_flow_format */
192 struct ofpbuf *ofputil_encode_nx_set_flow_format(enum nx_flow_format);
193 enum ofputil_protocol ofputil_nx_flow_format_to_protocol(enum nx_flow_format);
194 bool ofputil_nx_flow_format_is_valid(enum nx_flow_format);
195 const char *ofputil_nx_flow_format_to_string(enum nx_flow_format);
196
197 /* Work with ofp10_match. */
198 void ofputil_wildcard_from_ofpfw10(uint32_t ofpfw, struct flow_wildcards *);
199 void ofputil_match_from_ofp10_match(const struct ofp10_match *,
200                                     struct match *);
201 void ofputil_normalize_match(struct match *);
202 void ofputil_normalize_match_quiet(struct match *);
203 void ofputil_match_to_ofp10_match(const struct match *, struct ofp10_match *);
204
205 /* Work with ofp11_match. */
206 enum ofperr ofputil_pull_ofp11_match(struct ofpbuf *, struct match *,
207                                      uint16_t *padded_match_len);
208 enum ofperr ofputil_match_from_ofp11_match(const struct ofp11_match *,
209                                            struct match *);
210 int ofputil_put_ofp11_match(struct ofpbuf *, const struct match *,
211                             enum ofputil_protocol);
212 void ofputil_match_to_ofp11_match(const struct match *, struct ofp11_match *);
213 int ofputil_match_typical_len(enum ofputil_protocol);
214
215 /* dl_type translation between OpenFlow and 'struct flow' format. */
216 ovs_be16 ofputil_dl_type_to_openflow(ovs_be16 flow_dl_type);
217 ovs_be16 ofputil_dl_type_from_openflow(ovs_be16 ofp_dl_type);
218
219 /* PACKET_IN. */
220 bool ofputil_packet_in_format_is_valid(enum nx_packet_in_format);
221 int ofputil_packet_in_format_from_string(const char *);
222 const char *ofputil_packet_in_format_to_string(enum nx_packet_in_format);
223 struct ofpbuf *ofputil_make_set_packet_in_format(enum ofp_version,
224                                                  enum nx_packet_in_format);
225
226 /* NXT_FLOW_MOD_TABLE_ID extension. */
227 struct ofpbuf *ofputil_make_flow_mod_table_id(bool flow_mod_table_id);
228
229 /* Protocol-independent flow_mod flags. */
230 enum ofputil_flow_mod_flags {
231     /* Flags that are maintained with a flow as part of its state.
232      *
233      * (OFPUTIL_FF_EMERG would be here too, if OVS supported it.) */
234     OFPUTIL_FF_SEND_FLOW_REM = 1 << 0, /* All versions. */
235     OFPUTIL_FF_NO_PKT_COUNTS = 1 << 1, /* OpenFlow 1.3+. */
236     OFPUTIL_FF_NO_BYT_COUNTS = 1 << 2, /* OpenFlow 1.3+. */
237 #define OFPUTIL_FF_STATE (OFPUTIL_FF_SEND_FLOW_REM      \
238                           | OFPUTIL_FF_NO_PKT_COUNTS    \
239                           | OFPUTIL_FF_NO_BYT_COUNTS)
240
241     /* Flags that affect flow_mod behavior but are not part of flow state. */
242     OFPUTIL_FF_CHECK_OVERLAP = 1 << 3, /* All versions. */
243     OFPUTIL_FF_EMERG         = 1 << 4, /* OpenFlow 1.0 only. */
244     OFPUTIL_FF_RESET_COUNTS  = 1 << 5, /* OpenFlow 1.2+. */
245 };
246
247 /* Protocol-independent flow_mod.
248  *
249  * The handling of cookies across multiple versions of OpenFlow is a bit
250  * confusing.  See DESIGN for the details. */
251 struct ofputil_flow_mod {
252     struct list list_node;    /* For queuing flow_mods. */
253
254     struct match match;
255     unsigned int priority;
256
257     /* Cookie matching.  The flow_mod affects only flows that have cookies that
258      * bitwise match 'cookie' bits in positions where 'cookie_mask has 1-bits.
259      *
260      * 'cookie_mask' should be zero for OFPFC_ADD flow_mods. */
261     ovs_be64 cookie;         /* Cookie bits to match. */
262     ovs_be64 cookie_mask;    /* 1-bit in each 'cookie' bit to match. */
263
264     /* Cookie changes.
265      *
266      * OFPFC_ADD uses 'new_cookie' as the new flow's cookie.  'new_cookie'
267      * should not be UINT64_MAX.
268      *
269      * OFPFC_MODIFY and OFPFC_MODIFY_STRICT have two cases:
270      *
271      *   - If one or more matching flows exist and 'modify_cookie' is true,
272      *     then the flow_mod changes the existing flows' cookies to
273      *     'new_cookie'.  'new_cookie' should not be UINT64_MAX.
274      *
275      *   - If no matching flow exists, 'new_cookie' is not UINT64_MAX, and
276      *     'cookie_mask' is 0, then the flow_mod adds a new flow with
277      *     'new_cookie' as its cookie.
278      */
279     ovs_be64 new_cookie;     /* New cookie to install or UINT64_MAX. */
280     bool modify_cookie;      /* Set cookie of existing flow to 'new_cookie'? */
281
282     uint8_t table_id;
283     uint16_t command;
284     uint16_t idle_timeout;
285     uint16_t hard_timeout;
286     uint32_t buffer_id;
287     ofp_port_t out_port;
288     uint32_t out_group;
289     enum ofputil_flow_mod_flags flags;
290     struct ofpact *ofpacts;     /* Series of "struct ofpact"s. */
291     size_t ofpacts_len;         /* Length of ofpacts, in bytes. */
292 };
293
294 enum ofperr ofputil_decode_flow_mod(struct ofputil_flow_mod *,
295                                     const struct ofp_header *,
296                                     enum ofputil_protocol,
297                                     struct ofpbuf *ofpacts);
298 struct ofpbuf *ofputil_encode_flow_mod(const struct ofputil_flow_mod *,
299                                        enum ofputil_protocol);
300
301 /* Flow stats or aggregate stats request, independent of protocol. */
302 struct ofputil_flow_stats_request {
303     bool aggregate;             /* Aggregate results? */
304     struct match match;
305     ovs_be64 cookie;
306     ovs_be64 cookie_mask;
307     ofp_port_t out_port;
308     uint32_t out_group;
309     uint8_t table_id;
310 };
311
312 enum ofperr ofputil_decode_flow_stats_request(
313     struct ofputil_flow_stats_request *, const struct ofp_header *);
314 struct ofpbuf *ofputil_encode_flow_stats_request(
315     const struct ofputil_flow_stats_request *, enum ofputil_protocol);
316
317 /* Flow stats reply, independent of protocol. */
318 struct ofputil_flow_stats {
319     struct match match;
320     ovs_be64 cookie;
321     uint8_t table_id;
322     uint32_t duration_sec;
323     uint32_t duration_nsec;
324     uint16_t priority;
325     uint16_t idle_timeout;
326     uint16_t hard_timeout;
327     int idle_age;               /* Seconds since last packet, -1 if unknown. */
328     int hard_age;               /* Seconds since last change, -1 if unknown. */
329     uint64_t packet_count;      /* Packet count, UINT64_MAX if unknown. */
330     uint64_t byte_count;        /* Byte count, UINT64_MAX if unknown. */
331     struct ofpact *ofpacts;
332     size_t ofpacts_len;
333     enum ofputil_flow_mod_flags flags;
334 };
335
336 int ofputil_decode_flow_stats_reply(struct ofputil_flow_stats *,
337                                     struct ofpbuf *msg,
338                                     bool flow_age_extension,
339                                     struct ofpbuf *ofpacts);
340 void ofputil_append_flow_stats_reply(const struct ofputil_flow_stats *,
341                                      struct list *replies);
342
343 /* Aggregate stats reply, independent of protocol. */
344 struct ofputil_aggregate_stats {
345     uint64_t packet_count;      /* Packet count, UINT64_MAX if unknown. */
346     uint64_t byte_count;        /* Byte count, UINT64_MAX if unknown. */
347     uint32_t flow_count;
348 };
349
350 struct ofpbuf *ofputil_encode_aggregate_stats_reply(
351     const struct ofputil_aggregate_stats *stats,
352     const struct ofp_header *request);
353 enum ofperr ofputil_decode_aggregate_stats_reply(
354     struct ofputil_aggregate_stats *,
355     const struct ofp_header *reply);
356
357 /* Flow removed message, independent of protocol. */
358 struct ofputil_flow_removed {
359     struct match match;
360     uint16_t priority;
361     ovs_be64 cookie;
362     uint8_t reason;             /* One of OFPRR_*. */
363     uint8_t table_id;           /* 255 if message didn't include table ID. */
364     uint32_t duration_sec;
365     uint32_t duration_nsec;
366     uint16_t idle_timeout;
367     uint16_t hard_timeout;
368     uint64_t packet_count;      /* Packet count, UINT64_MAX if unknown. */
369     uint64_t byte_count;        /* Byte count, UINT64_MAX if unknown. */
370 };
371
372 enum ofperr ofputil_decode_flow_removed(struct ofputil_flow_removed *,
373                                         const struct ofp_header *);
374 struct ofpbuf *ofputil_encode_flow_removed(const struct ofputil_flow_removed *,
375                                            enum ofputil_protocol);
376
377 /* Abstract packet-in message. */
378 struct ofputil_packet_in {
379     struct list list_node; /* For queueing packet_ins. */
380
381     const void *packet;
382     size_t packet_len;
383
384     enum ofp_packet_in_reason reason;    /* One of OFPR_*. */
385     uint16_t controller_id;              /* Controller ID to send to. */
386     uint8_t table_id;
387     ovs_be64 cookie;
388
389     uint32_t buffer_id;
390     int send_len;
391     uint16_t total_len;         /* Full length of frame. */
392
393     struct flow_metadata fmd;   /* Metadata at creation time. */
394 };
395
396 enum ofperr ofputil_decode_packet_in(struct ofputil_packet_in *,
397                                      const struct ofp_header *);
398 struct ofpbuf *ofputil_encode_packet_in(const struct ofputil_packet_in *,
399                                         enum ofputil_protocol protocol,
400                                         enum nx_packet_in_format);
401
402 enum { OFPUTIL_PACKET_IN_REASON_BUFSIZE = INT_STRLEN(int) + 1 };
403 const char *ofputil_packet_in_reason_to_string(enum ofp_packet_in_reason,
404                                                char *reasonbuf,
405                                                size_t bufsize);
406 bool ofputil_packet_in_reason_from_string(const char *,
407                                           enum ofp_packet_in_reason *);
408
409 /* Abstract packet-out message.
410  *
411  * ofputil_decode_packet_out() will ensure that 'in_port' is a physical port
412  * (OFPP_MAX or less) or one of OFPP_LOCAL, OFPP_NONE, or OFPP_CONTROLLER. */
413 struct ofputil_packet_out {
414     const void *packet;         /* Packet data, if buffer_id == UINT32_MAX. */
415     size_t packet_len;          /* Length of packet data in bytes. */
416     uint32_t buffer_id;         /* Buffer id or UINT32_MAX if no buffer. */
417     ofp_port_t in_port;         /* Packet's input port. */
418     struct ofpact *ofpacts;     /* Actions. */
419     size_t ofpacts_len;         /* Size of ofpacts in bytes. */
420 };
421
422 enum ofperr ofputil_decode_packet_out(struct ofputil_packet_out *,
423                                       const struct ofp_header *,
424                                       struct ofpbuf *ofpacts);
425 struct ofpbuf *ofputil_encode_packet_out(const struct ofputil_packet_out *,
426                                          enum ofputil_protocol protocol);
427
428 enum ofputil_port_config {
429     /* OpenFlow 1.0 and 1.1 share these values for these port config bits. */
430     OFPUTIL_PC_PORT_DOWN    = 1 << 0, /* Port is administratively down. */
431     OFPUTIL_PC_NO_RECV      = 1 << 2, /* Drop all packets received by port. */
432     OFPUTIL_PC_NO_FWD       = 1 << 5, /* Drop packets forwarded to port. */
433     OFPUTIL_PC_NO_PACKET_IN = 1 << 6, /* No send packet-in msgs for port. */
434     /* OpenFlow 1.0 only. */
435     OFPUTIL_PC_NO_STP       = 1 << 1, /* No 802.1D spanning tree for port. */
436     OFPUTIL_PC_NO_RECV_STP  = 1 << 3, /* Drop received 802.1D STP packets. */
437     OFPUTIL_PC_NO_FLOOD     = 1 << 4, /* Do not include port when flooding. */
438     /* There are no OpenFlow 1.1-only bits. */
439 };
440
441 enum ofputil_port_state {
442     /* OpenFlow 1.0 and 1.1 share this values for these port state bits. */
443     OFPUTIL_PS_LINK_DOWN   = 1 << 0, /* No physical link present. */
444     /* OpenFlow 1.1 only. */
445     OFPUTIL_PS_BLOCKED     = 1 << 1, /* Port is blocked */
446     OFPUTIL_PS_LIVE        = 1 << 2, /* Live for Fast Failover Group. */
447     /* OpenFlow 1.0 only. */
448     OFPUTIL_PS_STP_LISTEN  = 0 << 8, /* Not learning or relaying frames. */
449     OFPUTIL_PS_STP_LEARN   = 1 << 8, /* Learning but not relaying frames. */
450     OFPUTIL_PS_STP_FORWARD = 2 << 8, /* Learning and relaying frames. */
451     OFPUTIL_PS_STP_BLOCK   = 3 << 8, /* Not part of spanning tree. */
452     OFPUTIL_PS_STP_MASK    = 3 << 8  /* Bit mask for OFPPS10_STP_* values. */
453 };
454
455 /* Abstract ofp10_phy_port or ofp11_port. */
456 struct ofputil_phy_port {
457     ofp_port_t port_no;
458     uint8_t hw_addr[OFP_ETH_ALEN];
459     char name[OFP_MAX_PORT_NAME_LEN];
460     enum ofputil_port_config config;
461     enum ofputil_port_state state;
462
463     /* NETDEV_F_* feature bitmasks. */
464     enum netdev_features curr;       /* Current features. */
465     enum netdev_features advertised; /* Features advertised by the port. */
466     enum netdev_features supported;  /* Features supported by the port. */
467     enum netdev_features peer;       /* Features advertised by peer. */
468
469     /* Speed. */
470     uint32_t curr_speed;        /* Current speed, in kbps. */
471     uint32_t max_speed;         /* Maximum supported speed, in kbps. */
472 };
473
474 enum ofputil_capabilities {
475     /* OpenFlow 1.0, 1.1, 1.2, and 1.3 share these capability values. */
476     OFPUTIL_C_FLOW_STATS     = 1 << 0,  /* Flow statistics. */
477     OFPUTIL_C_TABLE_STATS    = 1 << 1,  /* Table statistics. */
478     OFPUTIL_C_PORT_STATS     = 1 << 2,  /* Port statistics. */
479     OFPUTIL_C_IP_REASM       = 1 << 5,  /* Can reassemble IP fragments. */
480     OFPUTIL_C_QUEUE_STATS    = 1 << 6,  /* Queue statistics. */
481
482     /* OpenFlow 1.0 and 1.1 share this capability. */
483     OFPUTIL_C_ARP_MATCH_IP   = 1 << 7,  /* Match IP addresses in ARP pkts. */
484
485     /* OpenFlow 1.0 only. */
486     OFPUTIL_C_STP            = 1 << 3,  /* 802.1d spanning tree. */
487
488     /* OpenFlow 1.1, 1.2, and 1.3 share this capability. */
489     OFPUTIL_C_GROUP_STATS    = 1 << 4,  /* Group statistics. */
490
491     /* OpenFlow 1.2 and 1.3 share this capability */
492     OFPUTIL_C_PORT_BLOCKED   = 1 << 8,  /* Switch will block looping ports */
493 };
494
495 enum ofputil_action_bitmap {
496     OFPUTIL_A_OUTPUT         = 1 << 0,
497     OFPUTIL_A_SET_VLAN_VID   = 1 << 1,
498     OFPUTIL_A_SET_VLAN_PCP   = 1 << 2,
499     OFPUTIL_A_STRIP_VLAN     = 1 << 3,
500     OFPUTIL_A_SET_DL_SRC     = 1 << 4,
501     OFPUTIL_A_SET_DL_DST     = 1 << 5,
502     OFPUTIL_A_SET_NW_SRC     = 1 << 6,
503     OFPUTIL_A_SET_NW_DST     = 1 << 7,
504     OFPUTIL_A_SET_NW_ECN     = 1 << 8,
505     OFPUTIL_A_SET_NW_TOS     = 1 << 9,
506     OFPUTIL_A_SET_TP_SRC     = 1 << 10,
507     OFPUTIL_A_SET_TP_DST     = 1 << 11,
508     OFPUTIL_A_ENQUEUE        = 1 << 12,
509     OFPUTIL_A_COPY_TTL_OUT   = 1 << 13,
510     OFPUTIL_A_COPY_TTL_IN    = 1 << 14,
511     OFPUTIL_A_SET_MPLS_LABEL = 1 << 15,
512     OFPUTIL_A_SET_MPLS_TC    = 1 << 16,
513     OFPUTIL_A_SET_MPLS_TTL   = 1 << 17,
514     OFPUTIL_A_DEC_MPLS_TTL   = 1 << 18,
515     OFPUTIL_A_PUSH_VLAN      = 1 << 19,
516     OFPUTIL_A_POP_VLAN       = 1 << 20,
517     OFPUTIL_A_PUSH_MPLS      = 1 << 21,
518     OFPUTIL_A_POP_MPLS       = 1 << 22,
519     OFPUTIL_A_SET_QUEUE      = 1 << 23,
520     OFPUTIL_A_GROUP          = 1 << 24,
521     OFPUTIL_A_SET_NW_TTL     = 1 << 25,
522     OFPUTIL_A_DEC_NW_TTL     = 1 << 26,
523     OFPUTIL_A_SET_FIELD      = 1 << 27,
524 };
525
526 /* Abstract ofp_switch_features. */
527 struct ofputil_switch_features {
528     uint64_t datapath_id;       /* Datapath unique ID. */
529     uint32_t n_buffers;         /* Max packets buffered at once. */
530     uint8_t n_tables;           /* Number of tables supported by datapath. */
531     uint8_t auxiliary_id;       /* Identify auxiliary connections */
532     enum ofputil_capabilities capabilities;
533     enum ofputil_action_bitmap actions;
534 };
535
536 enum ofperr ofputil_decode_switch_features(const struct ofp_header *,
537                                            struct ofputil_switch_features *,
538                                            struct ofpbuf *);
539
540 struct ofpbuf *ofputil_encode_switch_features(
541     const struct ofputil_switch_features *, enum ofputil_protocol,
542     ovs_be32 xid);
543 void ofputil_put_switch_features_port(const struct ofputil_phy_port *,
544                                       struct ofpbuf *);
545 bool ofputil_switch_features_ports_trunc(struct ofpbuf *b);
546
547 /* phy_port helper functions. */
548 int ofputil_pull_phy_port(enum ofp_version ofp_version, struct ofpbuf *,
549                           struct ofputil_phy_port *);
550 size_t ofputil_count_phy_ports(uint8_t ofp_version, struct ofpbuf *);
551
552 /* Abstract ofp_port_status. */
553 struct ofputil_port_status {
554     enum ofp_port_reason reason;
555     struct ofputil_phy_port desc;
556 };
557
558 enum ofperr ofputil_decode_port_status(const struct ofp_header *,
559                                        struct ofputil_port_status *);
560 struct ofpbuf *ofputil_encode_port_status(const struct ofputil_port_status *,
561                                           enum ofputil_protocol);
562
563 /* Abstract ofp_port_mod. */
564 struct ofputil_port_mod {
565     ofp_port_t port_no;
566     uint8_t hw_addr[OFP_ETH_ALEN];
567     enum ofputil_port_config config;
568     enum ofputil_port_config mask;
569     enum netdev_features advertise;
570 };
571
572 enum ofperr ofputil_decode_port_mod(const struct ofp_header *,
573                                     struct ofputil_port_mod *);
574 struct ofpbuf *ofputil_encode_port_mod(const struct ofputil_port_mod *,
575                                        enum ofputil_protocol);
576
577 /* Abstract ofp_table_mod. */
578 struct ofputil_table_mod {
579     uint8_t table_id;         /* ID of the table, 0xff indicates all tables. */
580     uint32_t config;
581 };
582
583 enum ofperr ofputil_decode_table_mod(const struct ofp_header *,
584                                     struct ofputil_table_mod *);
585 struct ofpbuf *ofputil_encode_table_mod(const struct ofputil_table_mod *,
586                                        enum ofputil_protocol);
587
588 /* Meter band configuration for all supported band types. */
589 struct ofputil_meter_band {
590     uint16_t type;
591     uint8_t prec_level;         /* Non-zero if type == OFPMBT_DSCP_REMARK. */
592     uint32_t rate;
593     uint32_t burst_size;
594 };
595
596 struct ofputil_meter_band_stats {
597     uint64_t packet_count;
598     uint64_t byte_count;
599 };
600
601 struct ofputil_meter_config {
602     uint32_t meter_id;
603     uint16_t flags;
604     uint16_t n_bands;
605     struct ofputil_meter_band *bands;
606 };
607
608 /* Abstract ofp_meter_mod. */
609 struct ofputil_meter_mod {
610     uint16_t command;
611     struct ofputil_meter_config meter;
612 };
613
614 struct ofputil_meter_stats {
615     uint32_t meter_id;
616     uint32_t flow_count;
617     uint64_t packet_in_count;
618     uint64_t byte_in_count;
619     uint32_t duration_sec;
620     uint32_t duration_nsec;
621     uint16_t n_bands;
622     struct ofputil_meter_band_stats *bands;
623 };
624
625 struct ofputil_meter_features {
626     uint32_t max_meters;        /* Maximum number of meters. */
627     uint32_t band_types;        /* Can support max 32 band types. */
628     uint32_t capabilities;      /* Supported flags. */
629     uint8_t  max_bands;
630     uint8_t  max_color;
631 };
632
633 enum ofperr ofputil_decode_meter_mod(const struct ofp_header *,
634                                      struct ofputil_meter_mod *,
635                                      struct ofpbuf *bands);
636 struct ofpbuf *ofputil_encode_meter_mod(enum ofp_version,
637                                         const struct ofputil_meter_mod *);
638
639 void ofputil_decode_meter_features(const struct ofp_header *,
640                                    struct ofputil_meter_features *);
641 struct ofpbuf *ofputil_encode_meter_features_reply(const struct
642                                                    ofputil_meter_features *,
643                                                    const struct ofp_header *
644                                                    request);
645 void ofputil_decode_meter_request(const struct ofp_header *,
646                                   uint32_t *meter_id);
647
648 void ofputil_append_meter_config(struct list *replies,
649                                  const struct ofputil_meter_config *);
650
651 void ofputil_append_meter_stats(struct list *replies,
652                                 const struct ofputil_meter_stats *);
653
654 enum ofputil_meter_request_type {
655     OFPUTIL_METER_FEATURES,
656     OFPUTIL_METER_CONFIG,
657     OFPUTIL_METER_STATS
658 };
659
660 struct ofpbuf *ofputil_encode_meter_request(enum ofp_version,
661                                             enum ofputil_meter_request_type,
662                                             uint32_t meter_id);
663
664 int ofputil_decode_meter_stats(struct ofpbuf *,
665                                struct ofputil_meter_stats *,
666                                struct ofpbuf *bands);
667
668 int ofputil_decode_meter_config(struct ofpbuf *,
669                                 struct ofputil_meter_config *,
670                                 struct ofpbuf *bands);
671
672 /* Type for meter_id in ofproto provider interface, UINT32_MAX if invalid. */
673 typedef struct { uint32_t uint32; } ofproto_meter_id;
674
675 /* Abstract ofp_role_request and reply. */
676 struct ofputil_role_request {
677     enum ofp12_controller_role role;
678     bool have_generation_id;
679     uint64_t generation_id;
680 };
681
682 enum ofperr ofputil_decode_role_message(const struct ofp_header *,
683                                         struct ofputil_role_request *);
684 struct ofpbuf *ofputil_encode_role_reply(const struct ofp_header *,
685                                          const struct ofputil_role_request *);
686
687 /* Abstract table stats.
688  *
689  * For now we use ofp12_table_stats as a superset of the other protocol
690  * versions' table stats. */
691
692 struct ofpbuf *ofputil_encode_table_stats_reply(
693     const struct ofp12_table_stats[], int n,
694     const struct ofp_header *request);
695
696 /* Abstract nx_flow_monitor_request. */
697 struct ofputil_flow_monitor_request {
698     uint32_t id;
699     enum nx_flow_monitor_flags flags;
700     ofp_port_t out_port;
701     uint8_t table_id;
702     struct match match;
703 };
704
705 int ofputil_decode_flow_monitor_request(struct ofputil_flow_monitor_request *,
706                                         struct ofpbuf *msg);
707 void ofputil_append_flow_monitor_request(
708     const struct ofputil_flow_monitor_request *, struct ofpbuf *msg);
709
710 /* Abstract nx_flow_update. */
711 struct ofputil_flow_update {
712     enum nx_flow_update_event event;
713
714     /* Used only for NXFME_ADDED, NXFME_DELETED, NXFME_MODIFIED. */
715     enum ofp_flow_removed_reason reason;
716     uint16_t idle_timeout;
717     uint16_t hard_timeout;
718     uint8_t table_id;
719     ovs_be64 cookie;
720     struct match *match;
721     uint16_t priority;
722     struct ofpact *ofpacts;
723     size_t ofpacts_len;
724
725     /* Used only for NXFME_ABBREV. */
726     ovs_be32 xid;
727 };
728
729 int ofputil_decode_flow_update(struct ofputil_flow_update *,
730                                struct ofpbuf *msg, struct ofpbuf *ofpacts);
731 void ofputil_start_flow_update(struct list *replies);
732 void ofputil_append_flow_update(const struct ofputil_flow_update *,
733                                 struct list *replies);
734
735 /* Abstract nx_flow_monitor_cancel. */
736 uint32_t ofputil_decode_flow_monitor_cancel(const struct ofp_header *);
737 struct ofpbuf *ofputil_encode_flow_monitor_cancel(uint32_t id);
738
739 /* Encoding OpenFlow stats messages. */
740 void ofputil_append_port_desc_stats_reply(enum ofp_version ofp_version,
741                                           const struct ofputil_phy_port *pp,
742                                           struct list *replies);
743
744 /* Encoding simple OpenFlow messages. */
745 struct ofpbuf *make_echo_request(enum ofp_version);
746 struct ofpbuf *make_echo_reply(const struct ofp_header *rq);
747
748 struct ofpbuf *ofputil_encode_barrier_request(enum ofp_version);
749
750 const char *ofputil_frag_handling_to_string(enum ofp_config_flags);
751 bool ofputil_frag_handling_from_string(const char *, enum ofp_config_flags *);
752
753 \f
754 /* Actions. */
755
756 /* The type of an action.
757  *
758  * For each implemented OFPAT10_* and NXAST_* action type, there is a
759  * corresponding constant prefixed with OFPUTIL_, e.g.:
760  *
761  * OFPUTIL_OFPAT10_OUTPUT
762  * OFPUTIL_OFPAT10_SET_VLAN_VID
763  * OFPUTIL_OFPAT10_SET_VLAN_PCP
764  * OFPUTIL_OFPAT10_STRIP_VLAN
765  * OFPUTIL_OFPAT10_SET_DL_SRC
766  * OFPUTIL_OFPAT10_SET_DL_DST
767  * OFPUTIL_OFPAT10_SET_NW_SRC
768  * OFPUTIL_OFPAT10_SET_NW_DST
769  * OFPUTIL_OFPAT10_SET_NW_TOS
770  * OFPUTIL_OFPAT10_SET_TP_SRC
771  * OFPUTIL_OFPAT10_SET_TP_DST
772  * OFPUTIL_OFPAT10_ENQUEUE
773  * OFPUTIL_NXAST_RESUBMIT
774  * OFPUTIL_NXAST_SET_TUNNEL
775  * OFPUTIL_NXAST_SET_METADATA
776  * OFPUTIL_NXAST_SET_QUEUE
777  * OFPUTIL_NXAST_POP_QUEUE
778  * OFPUTIL_NXAST_REG_MOVE
779  * OFPUTIL_NXAST_REG_LOAD
780  * OFPUTIL_NXAST_NOTE
781  * OFPUTIL_NXAST_SET_TUNNEL64
782  * OFPUTIL_NXAST_MULTIPATH
783  * OFPUTIL_NXAST_BUNDLE
784  * OFPUTIL_NXAST_BUNDLE_LOAD
785  * OFPUTIL_NXAST_RESUBMIT_TABLE
786  * OFPUTIL_NXAST_OUTPUT_REG
787  * OFPUTIL_NXAST_LEARN
788  * OFPUTIL_NXAST_DEC_TTL
789  * OFPUTIL_NXAST_FIN_TIMEOUT
790  *
791  * (The above list helps developers who want to "grep" for these definitions.)
792  */
793 enum OVS_PACKED_ENUM ofputil_action_code {
794     OFPUTIL_ACTION_INVALID,
795 #define OFPAT10_ACTION(ENUM, STRUCT, NAME)             OFPUTIL_##ENUM,
796 #define OFPAT11_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) OFPUTIL_##ENUM,
797 #define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME)   OFPUTIL_##ENUM,
798 #include "ofp-util.def"
799 };
800
801 /* The number of values of "enum ofputil_action_code". */
802 enum {
803 #define OFPAT10_ACTION(ENUM, STRUCT, NAME)             + 1
804 #define OFPAT11_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) + 1
805 #define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME)   + 1
806     OFPUTIL_N_ACTIONS = 1
807 #include "ofp-util.def"
808 };
809
810 int ofputil_action_code_from_name(const char *);
811
812 void *ofputil_put_action(enum ofputil_action_code, struct ofpbuf *buf);
813
814 /* For each OpenFlow action <ENUM> that has a corresponding action structure
815  * struct <STRUCT>, this defines two functions:
816  *
817  *   void ofputil_init_<ENUM>(struct <STRUCT> *action);
818  *
819  *     Initializes the parts of 'action' that identify it as having type <ENUM>
820  *     and length 'sizeof *action' and zeros the rest.  For actions that have
821  *     variable length, the length used and cleared is that of struct <STRUCT>.
822  *
823  *  struct <STRUCT> *ofputil_put_<ENUM>(struct ofpbuf *buf);
824  *
825  *     Appends a new 'action', of length 'sizeof(struct <STRUCT>)', to 'buf',
826  *     initializes it with ofputil_init_<ENUM>(), and returns it.
827  */
828 #define OFPAT10_ACTION(ENUM, STRUCT, NAME)              \
829     void ofputil_init_##ENUM(struct STRUCT *);          \
830     struct STRUCT *ofputil_put_##ENUM(struct ofpbuf *);
831 #define OFPAT11_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME)  \
832     void ofputil_init_##ENUM(struct STRUCT *);          \
833     struct STRUCT *ofputil_put_##ENUM(struct ofpbuf *);
834 #define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME)    \
835     void ofputil_init_##ENUM(struct STRUCT *);          \
836     struct STRUCT *ofputil_put_##ENUM(struct ofpbuf *);
837 #include "ofp-util.def"
838
839 #define OFP_ACTION_ALIGN 8      /* Alignment of ofp_actions. */
840
841 bool action_outputs_to_port(const union ofp_action *, ovs_be16 port);
842
843 enum ofperr ofputil_pull_actions(struct ofpbuf *, unsigned int actions_len,
844                                  union ofp_action **, size_t *);
845
846 bool ofputil_actions_equal(const union ofp_action *a, size_t n_a,
847                            const union ofp_action *b, size_t n_b);
848 union ofp_action *ofputil_actions_clone(const union ofp_action *, size_t n);
849
850 /* Handy utility for parsing flows and actions. */
851 bool ofputil_parse_key_value(char **stringp, char **keyp, char **valuep);
852
853 struct ofputil_port_stats {
854     ofp_port_t port_no;
855     struct netdev_stats stats;
856     uint32_t duration_sec;      /* UINT32_MAX if unknown. */
857     uint32_t duration_nsec;
858 };
859
860 struct ofpbuf *ofputil_encode_dump_ports_request(enum ofp_version ofp_version,
861                                                  ofp_port_t port);
862 void ofputil_append_port_stat(struct list *replies,
863                               const struct ofputil_port_stats *ops);
864 size_t ofputil_count_port_stats(const struct ofp_header *);
865 int ofputil_decode_port_stats(struct ofputil_port_stats *, struct ofpbuf *msg);
866 enum ofperr ofputil_decode_port_stats_request(const struct ofp_header *request,
867                                               ofp_port_t *ofp10_port);
868
869 struct ofputil_queue_stats_request {
870     ofp_port_t port_no;           /* OFPP_ANY means "all ports". */
871     uint32_t queue_id;
872 };
873
874 enum ofperr
875 ofputil_decode_queue_stats_request(const struct ofp_header *request,
876                                    struct ofputil_queue_stats_request *oqsr);
877 struct ofpbuf *
878 ofputil_encode_queue_stats_request(enum ofp_version ofp_version,
879                                    const struct ofputil_queue_stats_request *oqsr);
880
881 struct ofputil_queue_stats {
882     ofp_port_t port_no;
883     uint32_t queue_id;
884
885     /* Values of unsupported statistics are set to all-1-bits (UINT64_MAX). */
886     uint64_t tx_bytes;
887     uint64_t tx_packets;
888     uint64_t tx_errors;
889
890     /* UINT32_MAX if unknown. */
891     uint32_t duration_sec;
892     uint32_t duration_nsec;
893 };
894
895 size_t ofputil_count_queue_stats(const struct ofp_header *);
896 int ofputil_decode_queue_stats(struct ofputil_queue_stats *qs, struct ofpbuf *msg);
897 void ofputil_append_queue_stat(struct list *replies,
898                                const struct ofputil_queue_stats *oqs);
899
900 /* Bucket for use in groups. */
901 struct ofputil_bucket {
902     struct list list_node;
903     uint16_t weight;            /* Relative weight, for "select" groups. */
904     ofp_port_t watch_port;      /* Port whose state affects whether this bucket
905                                  * is live. Only required for fast failover
906                                  * groups. */
907     uint32_t watch_group;       /* Group whose state affects whether this
908                                  * bucket is live. Only required for fast
909                                  * failover groups. */
910     struct ofpact *ofpacts;     /* Series of "struct ofpact"s. */
911     size_t ofpacts_len;         /* Length of ofpacts, in bytes. */
912 };
913
914 /* Protocol-independent group_mod. */
915 struct ofputil_group_mod {
916     uint16_t command;             /* One of OFPGC11_*. */
917     uint8_t type;                 /* One of OFPGT11_*. */
918     uint32_t group_id;            /* Group identifier. */
919     struct list buckets;          /* Contains "struct ofputil_bucket"s. */
920 };
921
922 struct bucket_counter {
923     uint64_t packet_count;   /* Number of packets processed by bucket. */
924     uint64_t byte_count;     /* Number of bytes processed by bucket. */
925 };
926
927 /* Group stats reply, independent of protocol. */
928 struct ofputil_group_stats {
929     uint32_t group_id;    /* Group identifier. */
930     uint32_t ref_count;
931     uint64_t packet_count;      /* Packet count, UINT64_MAX if unknown. */
932     uint64_t byte_count;        /* Byte count, UINT64_MAX if unknown. */
933     uint32_t duration_sec;      /* UINT32_MAX if unknown. */
934     uint32_t duration_nsec;
935     uint32_t n_buckets;
936     struct bucket_counter *bucket_stats;
937 };
938
939 /* Group features reply, independent of protocol. */
940 struct ofputil_group_features {
941     uint32_t  types;           /* Bitmap of OFPGT_* values supported. */
942     uint32_t  capabilities;    /* Bitmap of OFPGFC12_* capability supported. */
943     uint32_t  max_groups[4];   /* Maximum number of groups for each type. */
944     uint32_t  actions[4];      /* Bitmaps of OFPAT_* that are supported. */
945 };
946
947 /* Group desc reply, independent of protocol. */
948 struct ofputil_group_desc {
949     uint8_t type;               /* One of OFPGT_*. */
950     uint32_t group_id;          /* Group identifier. */
951     struct list buckets;        /* Contains "struct ofputil_bucket"s. */
952 };
953
954 void ofputil_bucket_list_destroy(struct list *buckets);
955
956 struct ofpbuf *ofputil_encode_group_stats_request(enum ofp_version,
957                                                   uint32_t group_id);
958 enum ofperr ofputil_decode_group_stats_request(
959     const struct ofp_header *request, uint32_t *group_id);
960 void ofputil_append_group_stats(struct list *replies,
961                                 const struct ofputil_group_stats *);
962 struct ofpbuf *ofputil_encode_group_features_request(enum ofp_version);
963 struct ofpbuf *ofputil_encode_group_features_reply(
964     const struct ofputil_group_features *, const struct ofp_header *request);
965 void ofputil_decode_group_features_reply(const struct ofp_header *,
966                                          struct ofputil_group_features *);
967 struct ofpbuf *ofputil_encode_group_mod(enum ofp_version ofp_version,
968                                         const struct ofputil_group_mod *gm);
969
970 enum ofperr ofputil_decode_group_mod(const struct ofp_header *,
971                                      struct ofputil_group_mod *);
972
973 int ofputil_decode_group_stats_reply(struct ofpbuf *,
974                                      struct ofputil_group_stats *);
975
976 int ofputil_decode_group_desc_reply(struct ofputil_group_desc *,
977                                     struct ofpbuf *);
978
979 void ofputil_append_group_desc_reply(const struct ofputil_group_desc *,
980                                      struct list *buckets,
981                                      struct list *replies);
982 struct ofpbuf *ofputil_encode_group_desc_request(enum ofp_version);
983
984 #endif /* ofp-util.h */