ofp-util: Don't return static data in ofputil_packet_in_reason_to_string().
[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
34 /* Port numbers. */
35 enum ofperr ofputil_port_from_ofp11(ovs_be32 ofp11_port, uint16_t *ofp10_port);
36 ovs_be32 ofputil_port_to_ofp11(uint16_t ofp10_port);
37
38 enum ofperr ofputil_check_output_port(uint16_t ofp_port, int max_ports);
39 bool ofputil_port_from_string(const char *, uint16_t *portp);
40 void ofputil_format_port(uint16_t port, struct ds *);
41
42 /* Converting OFPFW10_NW_SRC_MASK and OFPFW10_NW_DST_MASK wildcard bit counts
43  * to and from IP bitmasks. */
44 ovs_be32 ofputil_wcbits_to_netmask(int wcbits);
45 int ofputil_netmask_to_wcbits(ovs_be32 netmask);
46
47 /* Protocols.
48  *
49  * A "protocol" is an OpenFlow version plus, for some OpenFlow versions,
50  * a bit extra about the flow match format in use.
51  *
52  * These are arranged from most portable to least portable, or alternatively
53  * from least powerful to most powerful.  Protocols earlier on the list are
54  * more likely to be understood for the purpose of making requests, but
55  * protocol later on the list are more likely to accurately describe a flow
56  * within a switch.
57  *
58  * On any given OpenFlow connection, a single protocol is in effect at any
59  * given time.  These values use separate bits only because that makes it easy
60  * to test whether a particular protocol is within a given set of protocols and
61  * to implement set union and intersection.
62  */
63 enum ofputil_protocol {
64     /* OpenFlow 1.0 protocols.
65      *
66      * The "STD" protocols use the standard OpenFlow 1.0 flow format.
67      * The "NXM" protocols use the Nicira Extensible Match (NXM) flow format.
68      *
69      * The protocols with "TID" mean that the nx_flow_mod_table_id Nicira
70      * extension has been enabled.  The other protocols have it disabled.
71      */
72 #define OFPUTIL_P_NONE 0
73     OFPUTIL_P_OF10_STD     = 1 << 0,
74     OFPUTIL_P_OF10_STD_TID = 1 << 1,
75     OFPUTIL_P_OF10_NXM     = 1 << 2,
76     OFPUTIL_P_OF10_NXM_TID = 1 << 3,
77 #define OFPUTIL_P_OF10_STD_ANY (OFPUTIL_P_OF10_STD | OFPUTIL_P_OF10_STD_TID)
78 #define OFPUTIL_P_OF10_NXM_ANY (OFPUTIL_P_OF10_NXM | OFPUTIL_P_OF10_NXM_TID)
79
80     /* OpenFlow 1.2+ protocols (only one variant each).
81      *
82      * These use the standard OpenFlow Extensible Match (OXM) flow format.
83      *
84      * OpenFlow 1.2+ always operates with an equivalent of the
85      * nx_flow_mod_table_id Nicira extension enabled, so there is no "TID"
86      * variant. */
87     OFPUTIL_P_OF12_OXM      = 1 << 4,
88     OFPUTIL_P_OF13_OXM      = 1 << 5,
89 #define OFPUTIL_P_ANY_OXM (OFPUTIL_P_OF12_OXM | OFPUTIL_P_OF13_OXM)
90
91     /* All protocols. */
92 #define OFPUTIL_P_ANY ((1 << 6) - 1)
93
94     /* Protocols in which a specific table may be specified in flow_mods. */
95 #define OFPUTIL_P_TID (OFPUTIL_P_OF10_STD_TID | \
96                        OFPUTIL_P_OF10_NXM_TID | \
97                        OFPUTIL_P_ANY_OXM)
98 };
99
100 /* Protocols to use for flow dumps, from most to least preferred. */
101 extern enum ofputil_protocol ofputil_flow_dump_protocols[];
102 extern size_t ofputil_n_flow_dump_protocols;
103
104 enum ofputil_protocol ofputil_protocol_from_ofp_version(enum ofp_version);
105 enum ofputil_protocol ofputil_protocols_from_ofp_version(enum ofp_version);
106 enum ofp_version ofputil_protocol_to_ofp_version(enum ofputil_protocol);
107
108 bool ofputil_protocol_is_valid(enum ofputil_protocol);
109 enum ofputil_protocol ofputil_protocol_set_tid(enum ofputil_protocol,
110                                                bool enable);
111 enum ofputil_protocol ofputil_protocol_to_base(enum ofputil_protocol);
112 enum ofputil_protocol ofputil_protocol_set_base(
113     enum ofputil_protocol cur, enum ofputil_protocol new_base);
114
115 const char *ofputil_protocol_to_string(enum ofputil_protocol);
116 char *ofputil_protocols_to_string(enum ofputil_protocol);
117 enum ofputil_protocol ofputil_protocols_from_string(const char *);
118 enum ofputil_protocol ofputil_usable_protocols(const struct match *);
119
120 void ofputil_format_version(struct ds *, enum ofp_version);
121 void ofputil_format_version_name(struct ds *, enum ofp_version);
122
123 /* A bitmap of version numbers
124  *
125  * Bit offsets correspond to ofp_version numbers which in turn correspond to
126  * wire-protocol numbers for Open Flow versions..  E.g. (1u << OFP11_VERSION)
127  * is the mask for Open Flow 1.1.  If the bit for a version is set then it is
128  * allowed, otherwise it is disallowed. */
129
130 void ofputil_format_version_bitmap(struct ds *msg, uint32_t bitmap);
131 void ofputil_format_version_bitmap_names(struct ds *msg, uint32_t bitmap);
132
133 uint32_t ofputil_protocols_to_version_bitmap(enum ofputil_protocol);
134 enum ofputil_protocol ofputil_protocols_from_version_bitmap(uint32_t bitmap);
135
136 /* Bitmap of OpenFlow versions that Open vSwitch supports. */
137 #define OFPUTIL_SUPPORTED_VERSIONS \
138     ((1u << OFP10_VERSION) | (1u << OFP12_VERSION) | (1u << OFP13_VERSION))
139
140 /* Bitmap of OpenFlow versions to enable by default (a subset of
141  * OFPUTIL_SUPPORTED_VERSIONS). */
142 #define OFPUTIL_DEFAULT_VERSIONS (1u << OFP10_VERSION)
143
144 enum ofputil_protocol ofputil_protocols_from_string(const char *s);
145
146 const char *ofputil_version_to_string(enum ofp_version ofp_version);
147 uint32_t ofputil_versions_from_string(const char *s);
148 uint32_t ofputil_versions_from_strings(char ** const s, size_t count);
149
150 bool ofputil_decode_hello(const struct ofp_header *,
151                           uint32_t *allowed_versions);
152 struct ofpbuf *ofputil_encode_hello(uint32_t version_bitmap);
153
154 struct ofpbuf *ofputil_encode_set_protocol(enum ofputil_protocol current,
155                                            enum ofputil_protocol want,
156                                            enum ofputil_protocol *next);
157
158 /* nx_flow_format */
159 struct ofpbuf *ofputil_encode_nx_set_flow_format(enum nx_flow_format);
160 enum ofputil_protocol ofputil_nx_flow_format_to_protocol(enum nx_flow_format);
161 bool ofputil_nx_flow_format_is_valid(enum nx_flow_format);
162 const char *ofputil_nx_flow_format_to_string(enum nx_flow_format);
163
164 /* Work with ofp10_match. */
165 void ofputil_wildcard_from_ofpfw10(uint32_t ofpfw, struct flow_wildcards *);
166 void ofputil_match_from_ofp10_match(const struct ofp10_match *,
167                                     struct match *);
168 void ofputil_normalize_match(struct match *);
169 void ofputil_normalize_match_quiet(struct match *);
170 void ofputil_match_to_ofp10_match(const struct match *, struct ofp10_match *);
171
172 /* Work with ofp11_match. */
173 enum ofperr ofputil_pull_ofp11_match(struct ofpbuf *, struct match *,
174                                      uint16_t *padded_match_len);
175 enum ofperr ofputil_match_from_ofp11_match(const struct ofp11_match *,
176                                            struct match *);
177 void ofputil_match_to_ofp11_match(const struct match *, struct ofp11_match *);
178
179 /* dl_type translation between OpenFlow and 'struct flow' format. */
180 ovs_be16 ofputil_dl_type_to_openflow(ovs_be16 flow_dl_type);
181 ovs_be16 ofputil_dl_type_from_openflow(ovs_be16 ofp_dl_type);
182
183 /* PACKET_IN. */
184 bool ofputil_packet_in_format_is_valid(enum nx_packet_in_format);
185 int ofputil_packet_in_format_from_string(const char *);
186 const char *ofputil_packet_in_format_to_string(enum nx_packet_in_format);
187 struct ofpbuf *ofputil_make_set_packet_in_format(enum ofp_version,
188                                                  enum nx_packet_in_format);
189
190 /* NXT_FLOW_MOD_TABLE_ID extension. */
191 struct ofpbuf *ofputil_make_flow_mod_table_id(bool flow_mod_table_id);
192
193 /* Protocol-independent flow_mod.
194  *
195  * The handling of cookies across multiple versions of OpenFlow is a bit
196  * confusing.  A full description of Open vSwitch's cookie handling is
197  * in the DESIGN file.  The following table shows the expected values of
198  * the cookie-related fields for the different flow_mod commands in
199  * OpenFlow 1.0 ("OF10") and NXM.  "<used>" and "-" indicate a value
200  * that may be populated and an ignored field, respectively.
201  *
202  *               cookie  cookie_mask  new_cookie
203  *               ======  ===========  ==========
204  * OF10 Add        -          0         <used>
205  * OF10 Modify     -          0         <used>
206  * OF10 Delete     -          0           -
207  * NXM Add         -          0         <used>
208  * NXM Modify    <used>     <used>      <used>
209  * NXM Delete    <used>     <used>        -
210  */
211 struct ofputil_flow_mod {
212     struct match match;
213     unsigned int priority;
214     ovs_be64 cookie;         /* Cookie bits to match. */
215     ovs_be64 cookie_mask;    /* 1-bit in each 'cookie' bit to match. */
216     ovs_be64 new_cookie;     /* New cookie to install or -1. */
217     uint8_t table_id;
218     uint16_t command;
219     uint16_t idle_timeout;
220     uint16_t hard_timeout;
221     uint32_t buffer_id;
222     uint16_t out_port;
223     uint16_t flags;
224     struct ofpact *ofpacts;     /* Series of "struct ofpact"s. */
225     size_t ofpacts_len;         /* Length of ofpacts, in bytes. */
226 };
227
228 enum ofperr ofputil_decode_flow_mod(struct ofputil_flow_mod *,
229                                     const struct ofp_header *,
230                                     enum ofputil_protocol,
231                                     struct ofpbuf *ofpacts);
232 struct ofpbuf *ofputil_encode_flow_mod(const struct ofputil_flow_mod *,
233                                        enum ofputil_protocol);
234
235 enum ofputil_protocol ofputil_flow_mod_usable_protocols(
236     const struct ofputil_flow_mod *fms, size_t n_fms);
237
238 /* Flow stats or aggregate stats request, independent of protocol. */
239 struct ofputil_flow_stats_request {
240     bool aggregate;             /* Aggregate results? */
241     struct match match;
242     ovs_be64 cookie;
243     ovs_be64 cookie_mask;
244     uint16_t out_port;
245     uint8_t table_id;
246 };
247
248 enum ofperr ofputil_decode_flow_stats_request(
249     struct ofputil_flow_stats_request *, const struct ofp_header *);
250 struct ofpbuf *ofputil_encode_flow_stats_request(
251     const struct ofputil_flow_stats_request *, enum ofputil_protocol);
252 enum ofputil_protocol ofputil_flow_stats_request_usable_protocols(
253     const struct ofputil_flow_stats_request *);
254
255 /* Flow stats reply, independent of protocol. */
256 struct ofputil_flow_stats {
257     struct match match;
258     ovs_be64 cookie;
259     uint8_t table_id;
260     uint32_t duration_sec;
261     uint32_t duration_nsec;
262     uint16_t priority;
263     uint16_t idle_timeout;
264     uint16_t hard_timeout;
265     int idle_age;               /* Seconds since last packet, -1 if unknown. */
266     int hard_age;               /* Seconds since last change, -1 if unknown. */
267     uint64_t packet_count;      /* Packet count, UINT64_MAX if unknown. */
268     uint64_t byte_count;        /* Byte count, UINT64_MAX if unknown. */
269     struct ofpact *ofpacts;
270     size_t ofpacts_len;
271     uint16_t flags;             /* Added for OF 1.3 */
272 };
273
274 int ofputil_decode_flow_stats_reply(struct ofputil_flow_stats *,
275                                     struct ofpbuf *msg,
276                                     bool flow_age_extension,
277                                     struct ofpbuf *ofpacts);
278 void ofputil_append_flow_stats_reply(const struct ofputil_flow_stats *,
279                                      struct list *replies);
280
281 /* Aggregate stats reply, independent of protocol. */
282 struct ofputil_aggregate_stats {
283     uint64_t packet_count;      /* Packet count, UINT64_MAX if unknown. */
284     uint64_t byte_count;        /* Byte count, UINT64_MAX if unknown. */
285     uint32_t flow_count;
286 };
287
288 struct ofpbuf *ofputil_encode_aggregate_stats_reply(
289     const struct ofputil_aggregate_stats *stats,
290     const struct ofp_header *request);
291 enum ofperr ofputil_decode_aggregate_stats_reply(
292     struct ofputil_aggregate_stats *,
293     const struct ofp_header *reply);
294
295 /* Flow removed message, independent of protocol. */
296 struct ofputil_flow_removed {
297     struct match match;
298     uint16_t priority;
299     ovs_be64 cookie;
300     uint8_t reason;             /* One of OFPRR_*. */
301     uint8_t table_id;           /* 255 if message didn't include table ID. */
302     uint32_t duration_sec;
303     uint32_t duration_nsec;
304     uint16_t idle_timeout;
305     uint16_t hard_timeout;
306     uint64_t packet_count;      /* Packet count, UINT64_MAX if unknown. */
307     uint64_t byte_count;        /* Byte count, UINT64_MAX if unknown. */
308 };
309
310 enum ofperr ofputil_decode_flow_removed(struct ofputil_flow_removed *,
311                                         const struct ofp_header *);
312 struct ofpbuf *ofputil_encode_flow_removed(const struct ofputil_flow_removed *,
313                                            enum ofputil_protocol);
314
315 /* Abstract packet-in message. */
316 struct ofputil_packet_in {
317     const void *packet;
318     size_t packet_len;
319
320     enum ofp_packet_in_reason reason;    /* One of OFPR_*. */
321     uint16_t controller_id;              /* Controller ID to send to. */
322     uint8_t table_id;
323     ovs_be64 cookie;
324
325     uint32_t buffer_id;
326     int send_len;
327     uint16_t total_len;         /* Full length of frame. */
328
329     struct flow_metadata fmd;   /* Metadata at creation time. */
330 };
331
332 enum ofperr ofputil_decode_packet_in(struct ofputil_packet_in *,
333                                      const struct ofp_header *);
334 struct ofpbuf *ofputil_encode_packet_in(const struct ofputil_packet_in *,
335                                         enum ofputil_protocol protocol,
336                                         enum nx_packet_in_format);
337
338 enum { OFPUTIL_PACKET_IN_REASON_BUFSIZE = INT_STRLEN(int) + 1 };
339 const char *ofputil_packet_in_reason_to_string(enum ofp_packet_in_reason,
340                                                char *reasonbuf,
341                                                size_t bufsize);
342 bool ofputil_packet_in_reason_from_string(const char *,
343                                           enum ofp_packet_in_reason *);
344
345 /* Abstract packet-out message.
346  *
347  * ofputil_decode_packet_out() will ensure that 'in_port' is a physical port
348  * (OFPP_MAX or less) or one of OFPP_LOCAL, OFPP_NONE, or OFPP_CONTROLLER. */
349 struct ofputil_packet_out {
350     const void *packet;         /* Packet data, if buffer_id == UINT32_MAX. */
351     size_t packet_len;          /* Length of packet data in bytes. */
352     uint32_t buffer_id;         /* Buffer id or UINT32_MAX if no buffer. */
353     uint16_t in_port;           /* Packet's input port. */
354     struct ofpact *ofpacts;     /* Actions. */
355     size_t ofpacts_len;         /* Size of ofpacts in bytes. */
356 };
357
358 enum ofperr ofputil_decode_packet_out(struct ofputil_packet_out *,
359                                       const struct ofp_header *,
360                                       struct ofpbuf *ofpacts);
361 struct ofpbuf *ofputil_encode_packet_out(const struct ofputil_packet_out *,
362                                          enum ofputil_protocol protocol);
363
364 enum ofputil_port_config {
365     /* OpenFlow 1.0 and 1.1 share these values for these port config bits. */
366     OFPUTIL_PC_PORT_DOWN    = 1 << 0, /* Port is administratively down. */
367     OFPUTIL_PC_NO_RECV      = 1 << 2, /* Drop all packets received by port. */
368     OFPUTIL_PC_NO_FWD       = 1 << 5, /* Drop packets forwarded to port. */
369     OFPUTIL_PC_NO_PACKET_IN = 1 << 6, /* No send packet-in msgs for port. */
370     /* OpenFlow 1.0 only. */
371     OFPUTIL_PC_NO_STP       = 1 << 1, /* No 802.1D spanning tree for port. */
372     OFPUTIL_PC_NO_RECV_STP  = 1 << 3, /* Drop received 802.1D STP packets. */
373     OFPUTIL_PC_NO_FLOOD     = 1 << 4, /* Do not include port when flooding. */
374     /* There are no OpenFlow 1.1-only bits. */
375 };
376
377 enum ofputil_port_state {
378     /* OpenFlow 1.0 and 1.1 share this values for these port state bits. */
379     OFPUTIL_PS_LINK_DOWN   = 1 << 0, /* No physical link present. */
380     /* OpenFlow 1.1 only. */
381     OFPUTIL_PS_BLOCKED     = 1 << 1, /* Port is blocked */
382     OFPUTIL_PS_LIVE        = 1 << 2, /* Live for Fast Failover Group. */
383     /* OpenFlow 1.0 only. */
384     OFPUTIL_PS_STP_LISTEN  = 0 << 8, /* Not learning or relaying frames. */
385     OFPUTIL_PS_STP_LEARN   = 1 << 8, /* Learning but not relaying frames. */
386     OFPUTIL_PS_STP_FORWARD = 2 << 8, /* Learning and relaying frames. */
387     OFPUTIL_PS_STP_BLOCK   = 3 << 8, /* Not part of spanning tree. */
388     OFPUTIL_PS_STP_MASK    = 3 << 8  /* Bit mask for OFPPS10_STP_* values. */
389 };
390
391 /* Abstract ofp10_phy_port or ofp11_port. */
392 struct ofputil_phy_port {
393     uint16_t port_no;
394     uint8_t hw_addr[OFP_ETH_ALEN];
395     char name[OFP_MAX_PORT_NAME_LEN];
396     enum ofputil_port_config config;
397     enum ofputil_port_state state;
398
399     /* NETDEV_F_* feature bitmasks. */
400     enum netdev_features curr;       /* Current features. */
401     enum netdev_features advertised; /* Features advertised by the port. */
402     enum netdev_features supported;  /* Features supported by the port. */
403     enum netdev_features peer;       /* Features advertised by peer. */
404
405     /* Speed. */
406     uint32_t curr_speed;        /* Current speed, in kbps. */
407     uint32_t max_speed;         /* Maximum supported speed, in kbps. */
408 };
409
410 enum ofputil_capabilities {
411     /* OpenFlow 1.0, 1.1, 1.2, and 1.3 share these capability values. */
412     OFPUTIL_C_FLOW_STATS     = 1 << 0,  /* Flow statistics. */
413     OFPUTIL_C_TABLE_STATS    = 1 << 1,  /* Table statistics. */
414     OFPUTIL_C_PORT_STATS     = 1 << 2,  /* Port statistics. */
415     OFPUTIL_C_IP_REASM       = 1 << 5,  /* Can reassemble IP fragments. */
416     OFPUTIL_C_QUEUE_STATS    = 1 << 6,  /* Queue statistics. */
417
418     /* OpenFlow 1.0 and 1.1 share this capability. */
419     OFPUTIL_C_ARP_MATCH_IP   = 1 << 7,  /* Match IP addresses in ARP pkts. */
420
421     /* OpenFlow 1.0 only. */
422     OFPUTIL_C_STP            = 1 << 3,  /* 802.1d spanning tree. */
423
424     /* OpenFlow 1.1, 1.2, and 1.3 share this capability. */
425     OFPUTIL_C_GROUP_STATS    = 1 << 4,  /* Group statistics. */
426
427     /* OpenFlow 1.2 and 1.3 share this capability */
428     OFPUTIL_C_PORT_BLOCKED   = 1 << 8,  /* Switch will block looping ports */
429 };
430
431 enum ofputil_action_bitmap {
432     OFPUTIL_A_OUTPUT         = 1 << 0,
433     OFPUTIL_A_SET_VLAN_VID   = 1 << 1,
434     OFPUTIL_A_SET_VLAN_PCP   = 1 << 2,
435     OFPUTIL_A_STRIP_VLAN     = 1 << 3,
436     OFPUTIL_A_SET_DL_SRC     = 1 << 4,
437     OFPUTIL_A_SET_DL_DST     = 1 << 5,
438     OFPUTIL_A_SET_NW_SRC     = 1 << 6,
439     OFPUTIL_A_SET_NW_DST     = 1 << 7,
440     OFPUTIL_A_SET_NW_ECN     = 1 << 8,
441     OFPUTIL_A_SET_NW_TOS     = 1 << 9,
442     OFPUTIL_A_SET_TP_SRC     = 1 << 10,
443     OFPUTIL_A_SET_TP_DST     = 1 << 11,
444     OFPUTIL_A_ENQUEUE        = 1 << 12,
445     OFPUTIL_A_COPY_TTL_OUT   = 1 << 13,
446     OFPUTIL_A_COPY_TTL_IN    = 1 << 14,
447     OFPUTIL_A_SET_MPLS_LABEL = 1 << 15,
448     OFPUTIL_A_SET_MPLS_TC    = 1 << 16,
449     OFPUTIL_A_SET_MPLS_TTL   = 1 << 17,
450     OFPUTIL_A_DEC_MPLS_TTL   = 1 << 18,
451     OFPUTIL_A_PUSH_VLAN      = 1 << 19,
452     OFPUTIL_A_POP_VLAN       = 1 << 20,
453     OFPUTIL_A_PUSH_MPLS      = 1 << 21,
454     OFPUTIL_A_POP_MPLS       = 1 << 22,
455     OFPUTIL_A_SET_QUEUE      = 1 << 23,
456     OFPUTIL_A_GROUP          = 1 << 24,
457     OFPUTIL_A_SET_NW_TTL     = 1 << 25,
458     OFPUTIL_A_DEC_NW_TTL     = 1 << 26,
459     OFPUTIL_A_SET_FIELD      = 1 << 27,
460 };
461
462 /* Abstract ofp_switch_features. */
463 struct ofputil_switch_features {
464     uint64_t datapath_id;       /* Datapath unique ID. */
465     uint32_t n_buffers;         /* Max packets buffered at once. */
466     uint8_t n_tables;           /* Number of tables supported by datapath. */
467     uint8_t auxiliary_id;       /* Identify auxiliary connections */
468     enum ofputil_capabilities capabilities;
469     enum ofputil_action_bitmap actions;
470 };
471
472 enum ofperr ofputil_decode_switch_features(const struct ofp_header *,
473                                            struct ofputil_switch_features *,
474                                            struct ofpbuf *);
475
476 struct ofpbuf *ofputil_encode_switch_features(
477     const struct ofputil_switch_features *, enum ofputil_protocol,
478     ovs_be32 xid);
479 void ofputil_put_switch_features_port(const struct ofputil_phy_port *,
480                                       struct ofpbuf *);
481 bool ofputil_switch_features_ports_trunc(struct ofpbuf *b);
482
483 /* phy_port helper functions. */
484 int ofputil_pull_phy_port(enum ofp_version ofp_version, struct ofpbuf *,
485                           struct ofputil_phy_port *);
486 size_t ofputil_count_phy_ports(uint8_t ofp_version, struct ofpbuf *);
487
488 /* Abstract ofp_port_status. */
489 struct ofputil_port_status {
490     enum ofp_port_reason reason;
491     struct ofputil_phy_port desc;
492 };
493
494 enum ofperr ofputil_decode_port_status(const struct ofp_header *,
495                                        struct ofputil_port_status *);
496 struct ofpbuf *ofputil_encode_port_status(const struct ofputil_port_status *,
497                                           enum ofputil_protocol);
498
499 /* Abstract ofp_port_mod. */
500 struct ofputil_port_mod {
501     uint16_t port_no;
502     uint8_t hw_addr[OFP_ETH_ALEN];
503     enum ofputil_port_config config;
504     enum ofputil_port_config mask;
505     enum netdev_features advertise;
506 };
507
508 enum ofperr ofputil_decode_port_mod(const struct ofp_header *,
509                                     struct ofputil_port_mod *);
510 struct ofpbuf *ofputil_encode_port_mod(const struct ofputil_port_mod *,
511                                        enum ofputil_protocol);
512
513 /* Abstract ofp_role_request and reply. */
514 struct ofputil_role_request {
515     enum ofp12_controller_role role;
516     bool have_generation_id;
517     uint64_t generation_id;
518 };
519
520 enum ofperr ofputil_decode_role_message(const struct ofp_header *,
521                                         struct ofputil_role_request *);
522 struct ofpbuf *ofputil_encode_role_reply(const struct ofp_header *,
523                                          const struct ofputil_role_request *);
524
525 /* Abstract table stats.
526  *
527  * For now we use ofp12_table_stats as a superset of the other protocol
528  * versions' table stats. */
529
530 struct ofpbuf *ofputil_encode_table_stats_reply(
531     const struct ofp12_table_stats[], int n,
532     const struct ofp_header *request);
533
534 /* Abstract nx_flow_monitor_request. */
535 struct ofputil_flow_monitor_request {
536     uint32_t id;
537     enum nx_flow_monitor_flags flags;
538     uint16_t out_port;
539     uint8_t table_id;
540     struct match match;
541 };
542
543 int ofputil_decode_flow_monitor_request(struct ofputil_flow_monitor_request *,
544                                         struct ofpbuf *msg);
545 void ofputil_append_flow_monitor_request(
546     const struct ofputil_flow_monitor_request *, struct ofpbuf *msg);
547
548 /* Abstract nx_flow_update. */
549 struct ofputil_flow_update {
550     enum nx_flow_update_event event;
551
552     /* Used only for NXFME_ADDED, NXFME_DELETED, NXFME_MODIFIED. */
553     enum ofp_flow_removed_reason reason;
554     uint16_t idle_timeout;
555     uint16_t hard_timeout;
556     uint8_t table_id;
557     ovs_be64 cookie;
558     struct match *match;
559     uint16_t priority;
560     struct ofpact *ofpacts;
561     size_t ofpacts_len;
562
563     /* Used only for NXFME_ABBREV. */
564     ovs_be32 xid;
565 };
566
567 int ofputil_decode_flow_update(struct ofputil_flow_update *,
568                                struct ofpbuf *msg, struct ofpbuf *ofpacts);
569 void ofputil_start_flow_update(struct list *replies);
570 void ofputil_append_flow_update(const struct ofputil_flow_update *,
571                                 struct list *replies);
572
573 /* Abstract nx_flow_monitor_cancel. */
574 uint32_t ofputil_decode_flow_monitor_cancel(const struct ofp_header *);
575 struct ofpbuf *ofputil_encode_flow_monitor_cancel(uint32_t id);
576
577 /* Encoding OpenFlow stats messages. */
578 void ofputil_append_port_desc_stats_reply(enum ofp_version ofp_version,
579                                           const struct ofputil_phy_port *pp,
580                                           struct list *replies);
581
582 /* Encoding simple OpenFlow messages. */
583 struct ofpbuf *make_echo_request(enum ofp_version);
584 struct ofpbuf *make_echo_reply(const struct ofp_header *rq);
585
586 struct ofpbuf *ofputil_encode_barrier_request(enum ofp_version);
587
588 const char *ofputil_frag_handling_to_string(enum ofp_config_flags);
589 bool ofputil_frag_handling_from_string(const char *, enum ofp_config_flags *);
590
591 \f
592 /* Actions. */
593
594 /* The type of an action.
595  *
596  * For each implemented OFPAT10_* and NXAST_* action type, there is a
597  * corresponding constant prefixed with OFPUTIL_, e.g.:
598  *
599  * OFPUTIL_OFPAT10_OUTPUT
600  * OFPUTIL_OFPAT10_SET_VLAN_VID
601  * OFPUTIL_OFPAT10_SET_VLAN_PCP
602  * OFPUTIL_OFPAT10_STRIP_VLAN
603  * OFPUTIL_OFPAT10_SET_DL_SRC
604  * OFPUTIL_OFPAT10_SET_DL_DST
605  * OFPUTIL_OFPAT10_SET_NW_SRC
606  * OFPUTIL_OFPAT10_SET_NW_DST
607  * OFPUTIL_OFPAT10_SET_NW_TOS
608  * OFPUTIL_OFPAT10_SET_TP_SRC
609  * OFPUTIL_OFPAT10_SET_TP_DST
610  * OFPUTIL_OFPAT10_ENQUEUE
611  * OFPUTIL_NXAST_RESUBMIT
612  * OFPUTIL_NXAST_SET_TUNNEL
613  * OFPUTIL_NXAST_SET_METADATA
614  * OFPUTIL_NXAST_SET_QUEUE
615  * OFPUTIL_NXAST_POP_QUEUE
616  * OFPUTIL_NXAST_REG_MOVE
617  * OFPUTIL_NXAST_REG_LOAD
618  * OFPUTIL_NXAST_NOTE
619  * OFPUTIL_NXAST_SET_TUNNEL64
620  * OFPUTIL_NXAST_MULTIPATH
621  * OFPUTIL_NXAST_BUNDLE
622  * OFPUTIL_NXAST_BUNDLE_LOAD
623  * OFPUTIL_NXAST_RESUBMIT_TABLE
624  * OFPUTIL_NXAST_OUTPUT_REG
625  * OFPUTIL_NXAST_LEARN
626  * OFPUTIL_NXAST_DEC_TTL
627  * OFPUTIL_NXAST_FIN_TIMEOUT
628  *
629  * (The above list helps developers who want to "grep" for these definitions.)
630  */
631 enum OVS_PACKED_ENUM ofputil_action_code {
632     OFPUTIL_ACTION_INVALID,
633 #define OFPAT10_ACTION(ENUM, STRUCT, NAME)             OFPUTIL_##ENUM,
634 #define OFPAT11_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) OFPUTIL_##ENUM,
635 #define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME)   OFPUTIL_##ENUM,
636 #include "ofp-util.def"
637 };
638
639 /* The number of values of "enum ofputil_action_code". */
640 enum {
641 #define OFPAT10_ACTION(ENUM, STRUCT, NAME)             + 1
642 #define OFPAT11_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) + 1
643 #define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME)   + 1
644     OFPUTIL_N_ACTIONS = 1
645 #include "ofp-util.def"
646 };
647
648 int ofputil_action_code_from_name(const char *);
649
650 void *ofputil_put_action(enum ofputil_action_code, struct ofpbuf *buf);
651
652 /* For each OpenFlow action <ENUM> that has a corresponding action structure
653  * struct <STRUCT>, this defines two functions:
654  *
655  *   void ofputil_init_<ENUM>(struct <STRUCT> *action);
656  *
657  *     Initializes the parts of 'action' that identify it as having type <ENUM>
658  *     and length 'sizeof *action' and zeros the rest.  For actions that have
659  *     variable length, the length used and cleared is that of struct <STRUCT>.
660  *
661  *  struct <STRUCT> *ofputil_put_<ENUM>(struct ofpbuf *buf);
662  *
663  *     Appends a new 'action', of length 'sizeof(struct <STRUCT>)', to 'buf',
664  *     initializes it with ofputil_init_<ENUM>(), and returns it.
665  */
666 #define OFPAT10_ACTION(ENUM, STRUCT, NAME)              \
667     void ofputil_init_##ENUM(struct STRUCT *);          \
668     struct STRUCT *ofputil_put_##ENUM(struct ofpbuf *);
669 #define OFPAT11_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME)  \
670     void ofputil_init_##ENUM(struct STRUCT *);          \
671     struct STRUCT *ofputil_put_##ENUM(struct ofpbuf *);
672 #define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME)    \
673     void ofputil_init_##ENUM(struct STRUCT *);          \
674     struct STRUCT *ofputil_put_##ENUM(struct ofpbuf *);
675 #include "ofp-util.def"
676
677 #define OFP_ACTION_ALIGN 8      /* Alignment of ofp_actions. */
678
679 enum ofperr validate_actions(const union ofp_action *, size_t n_actions,
680                              const struct flow *, int max_ports);
681 bool action_outputs_to_port(const union ofp_action *, ovs_be16 port);
682
683 enum ofperr ofputil_pull_actions(struct ofpbuf *, unsigned int actions_len,
684                                  union ofp_action **, size_t *);
685
686 bool ofputil_actions_equal(const union ofp_action *a, size_t n_a,
687                            const union ofp_action *b, size_t n_b);
688 union ofp_action *ofputil_actions_clone(const union ofp_action *, size_t n);
689
690 /* Handy utility for parsing flows and actions. */
691 bool ofputil_parse_key_value(char **stringp, char **keyp, char **valuep);
692
693 struct ofputil_port_stats {
694     uint16_t port_no;
695     struct netdev_stats stats;
696     uint32_t duration_sec;      /* UINT32_MAX if unknown. */
697     uint32_t duration_nsec;
698 };
699
700 struct ofpbuf *ofputil_encode_dump_ports_request(enum ofp_version ofp_version,
701                                                  uint16_t port);
702 void ofputil_append_port_stat(struct list *replies,
703                               const struct ofputil_port_stats *ops);
704 size_t ofputil_count_port_stats(const struct ofp_header *);
705 int ofputil_decode_port_stats(struct ofputil_port_stats *, struct ofpbuf *msg);
706 enum ofperr ofputil_decode_port_stats_request(const struct ofp_header *request,
707                                               uint16_t *ofp10_port);
708
709 struct ofputil_queue_stats_request {
710     uint16_t port_no;           /* OFPP_ANY means "all ports". */
711     uint32_t queue_id;
712 };
713
714 enum ofperr
715 ofputil_decode_queue_stats_request(const struct ofp_header *request,
716                                    struct ofputil_queue_stats_request *oqsr);
717 struct ofpbuf *
718 ofputil_encode_queue_stats_request(enum ofp_version ofp_version,
719                                    const struct ofputil_queue_stats_request *oqsr);
720
721 struct ofputil_queue_stats {
722     uint16_t port_no;
723     uint32_t queue_id;
724     struct netdev_queue_stats stats;
725 };
726
727 size_t ofputil_count_queue_stats(const struct ofp_header *);
728 int ofputil_decode_queue_stats(struct ofputil_queue_stats *qs, struct ofpbuf *msg);
729 void ofputil_append_queue_stat(struct list *replies,
730                                const struct ofputil_queue_stats *oqs);
731
732 #endif /* ofp-util.h */