Add ability to restrict flow mods and flow stats requests to cookies.
[sliver-openvswitch.git] / lib / ofp-util.c
1 /*
2  * Copyright (c) 2008, 2009, 2010, 2011 Nicira Networks.
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 #include <config.h>
18 #include "ofp-print.h"
19 #include <errno.h>
20 #include <inttypes.h>
21 #include <sys/types.h>
22 #include <netinet/in.h>
23 #include <netinet/icmp6.h>
24 #include <stdlib.h>
25 #include "autopath.h"
26 #include "bundle.h"
27 #include "byte-order.h"
28 #include "classifier.h"
29 #include "dynamic-string.h"
30 #include "learn.h"
31 #include "multipath.h"
32 #include "nx-match.h"
33 #include "ofp-errors.h"
34 #include "ofp-util.h"
35 #include "ofpbuf.h"
36 #include "packets.h"
37 #include "random.h"
38 #include "unaligned.h"
39 #include "type-props.h"
40 #include "vlog.h"
41
42 VLOG_DEFINE_THIS_MODULE(ofp_util);
43
44 /* Rate limit for OpenFlow message parse errors.  These always indicate a bug
45  * in the peer and so there's not much point in showing a lot of them. */
46 static struct vlog_rate_limit bad_ofmsg_rl = VLOG_RATE_LIMIT_INIT(1, 5);
47
48 /* Given the wildcard bit count in the least-significant 6 of 'wcbits', returns
49  * an IP netmask with a 1 in each bit that must match and a 0 in each bit that
50  * is wildcarded.
51  *
52  * The bits in 'wcbits' are in the format used in enum ofp_flow_wildcards: 0
53  * is exact match, 1 ignores the LSB, 2 ignores the 2 least-significant bits,
54  * ..., 32 and higher wildcard the entire field.  This is the *opposite* of the
55  * usual convention where e.g. /24 indicates that 8 bits (not 24 bits) are
56  * wildcarded. */
57 ovs_be32
58 ofputil_wcbits_to_netmask(int wcbits)
59 {
60     wcbits &= 0x3f;
61     return wcbits < 32 ? htonl(~((1u << wcbits) - 1)) : 0;
62 }
63
64 /* Given the IP netmask 'netmask', returns the number of bits of the IP address
65  * that it wildcards, that is, the number of 0-bits in 'netmask'.  'netmask'
66  * must be a CIDR netmask (see ip_is_cidr()). */
67 int
68 ofputil_netmask_to_wcbits(ovs_be32 netmask)
69 {
70     return 32 - ip_count_cidr_bits(netmask);
71 }
72
73 /* A list of the FWW_* and OFPFW_ bits that have the same value, meaning, and
74  * name. */
75 #define WC_INVARIANT_LIST \
76     WC_INVARIANT_BIT(IN_PORT) \
77     WC_INVARIANT_BIT(DL_SRC) \
78     WC_INVARIANT_BIT(DL_DST) \
79     WC_INVARIANT_BIT(DL_TYPE) \
80     WC_INVARIANT_BIT(NW_PROTO) \
81     WC_INVARIANT_BIT(TP_SRC) \
82     WC_INVARIANT_BIT(TP_DST)
83
84 /* Verify that all of the invariant bits (as defined on WC_INVARIANT_LIST)
85  * actually have the same names and values. */
86 #define WC_INVARIANT_BIT(NAME) BUILD_ASSERT_DECL(FWW_##NAME == OFPFW_##NAME);
87     WC_INVARIANT_LIST
88 #undef WC_INVARIANT_BIT
89
90 /* WC_INVARIANTS is the invariant bits (as defined on WC_INVARIANT_LIST) all
91  * OR'd together. */
92 static const flow_wildcards_t WC_INVARIANTS = 0
93 #define WC_INVARIANT_BIT(NAME) | FWW_##NAME
94     WC_INVARIANT_LIST
95 #undef WC_INVARIANT_BIT
96 ;
97
98 /* Converts the wildcard in 'ofpfw' into a flow_wildcards in 'wc' for use in
99  * struct cls_rule.  It is the caller's responsibility to handle the special
100  * case where the flow match's dl_vlan is set to OFP_VLAN_NONE. */
101 void
102 ofputil_wildcard_from_openflow(uint32_t ofpfw, struct flow_wildcards *wc)
103 {
104     BUILD_ASSERT_DECL(FLOW_WC_SEQ == 7);
105
106     /* Initialize most of rule->wc. */
107     flow_wildcards_init_catchall(wc);
108     wc->wildcards = (OVS_FORCE flow_wildcards_t) ofpfw & WC_INVARIANTS;
109
110     /* Wildcard fields that aren't defined by ofp_match or tun_id. */
111     wc->wildcards |= (FWW_ARP_SHA | FWW_ARP_THA | FWW_NW_ECN | FWW_NW_TTL
112                       | FWW_ND_TARGET | FWW_IPV6_LABEL);
113
114     if (ofpfw & OFPFW_NW_TOS) {
115         /* OpenFlow 1.0 defines a TOS wildcard, but it's much later in
116          * the enum than we can use. */
117         wc->wildcards |= FWW_NW_DSCP;
118     }
119
120     wc->nw_src_mask = ofputil_wcbits_to_netmask(ofpfw >> OFPFW_NW_SRC_SHIFT);
121     wc->nw_dst_mask = ofputil_wcbits_to_netmask(ofpfw >> OFPFW_NW_DST_SHIFT);
122
123     if (ofpfw & OFPFW_DL_DST) {
124         /* OpenFlow 1.0 OFPFW_DL_DST covers the whole Ethernet destination, but
125          * Open vSwitch breaks the Ethernet destination into bits as FWW_DL_DST
126          * and FWW_ETH_MCAST. */
127         wc->wildcards |= FWW_ETH_MCAST;
128     }
129
130     /* VLAN TCI mask. */
131     if (!(ofpfw & OFPFW_DL_VLAN_PCP)) {
132         wc->vlan_tci_mask |= htons(VLAN_PCP_MASK | VLAN_CFI);
133     }
134     if (!(ofpfw & OFPFW_DL_VLAN)) {
135         wc->vlan_tci_mask |= htons(VLAN_VID_MASK | VLAN_CFI);
136     }
137 }
138
139 /* Converts the ofp_match in 'match' into a cls_rule in 'rule', with the given
140  * 'priority'. */
141 void
142 ofputil_cls_rule_from_match(const struct ofp_match *match,
143                             unsigned int priority, struct cls_rule *rule)
144 {
145     uint32_t ofpfw = ntohl(match->wildcards) & OFPFW_ALL;
146
147     /* Initialize rule->priority, rule->wc. */
148     rule->priority = !ofpfw ? UINT16_MAX : priority;
149     ofputil_wildcard_from_openflow(ofpfw, &rule->wc);
150
151     /* Initialize most of rule->flow. */
152     rule->flow.nw_src = match->nw_src;
153     rule->flow.nw_dst = match->nw_dst;
154     rule->flow.in_port = ntohs(match->in_port);
155     rule->flow.dl_type = ofputil_dl_type_from_openflow(match->dl_type);
156     rule->flow.tp_src = match->tp_src;
157     rule->flow.tp_dst = match->tp_dst;
158     memcpy(rule->flow.dl_src, match->dl_src, ETH_ADDR_LEN);
159     memcpy(rule->flow.dl_dst, match->dl_dst, ETH_ADDR_LEN);
160     rule->flow.nw_tos = match->nw_tos & IP_DSCP_MASK;
161     rule->flow.nw_proto = match->nw_proto;
162
163     /* Translate VLANs. */
164     if (!(ofpfw & OFPFW_DL_VLAN) && match->dl_vlan == htons(OFP_VLAN_NONE)) {
165         /* Match only packets without 802.1Q header.
166          *
167          * When OFPFW_DL_VLAN_PCP is wildcarded, this is obviously correct.
168          *
169          * If OFPFW_DL_VLAN_PCP is matched, the flow match is contradictory,
170          * because we can't have a specific PCP without an 802.1Q header.
171          * However, older versions of OVS treated this as matching packets
172          * withut an 802.1Q header, so we do here too. */
173         rule->flow.vlan_tci = htons(0);
174         rule->wc.vlan_tci_mask = htons(0xffff);
175     } else {
176         ovs_be16 vid, pcp, tci;
177
178         vid = match->dl_vlan & htons(VLAN_VID_MASK);
179         pcp = htons((match->dl_vlan_pcp << VLAN_PCP_SHIFT) & VLAN_PCP_MASK);
180         tci = vid | pcp | htons(VLAN_CFI);
181         rule->flow.vlan_tci = tci & rule->wc.vlan_tci_mask;
182     }
183
184     /* Clean up. */
185     cls_rule_zero_wildcarded_fields(rule);
186 }
187
188 /* Convert 'rule' into the OpenFlow match structure 'match'. */
189 void
190 ofputil_cls_rule_to_match(const struct cls_rule *rule, struct ofp_match *match)
191 {
192     const struct flow_wildcards *wc = &rule->wc;
193     uint32_t ofpfw;
194
195     /* Figure out most OpenFlow wildcards. */
196     ofpfw = (OVS_FORCE uint32_t) (wc->wildcards & WC_INVARIANTS);
197     ofpfw |= ofputil_netmask_to_wcbits(wc->nw_src_mask) << OFPFW_NW_SRC_SHIFT;
198     ofpfw |= ofputil_netmask_to_wcbits(wc->nw_dst_mask) << OFPFW_NW_DST_SHIFT;
199     if (wc->wildcards & FWW_NW_DSCP) {
200         ofpfw |= OFPFW_NW_TOS;
201     }
202
203     /* Translate VLANs. */
204     match->dl_vlan = htons(0);
205     match->dl_vlan_pcp = 0;
206     if (rule->wc.vlan_tci_mask == htons(0)) {
207         ofpfw |= OFPFW_DL_VLAN | OFPFW_DL_VLAN_PCP;
208     } else if (rule->wc.vlan_tci_mask & htons(VLAN_CFI)
209                && !(rule->flow.vlan_tci & htons(VLAN_CFI))) {
210         match->dl_vlan = htons(OFP_VLAN_NONE);
211     } else {
212         if (!(rule->wc.vlan_tci_mask & htons(VLAN_VID_MASK))) {
213             ofpfw |= OFPFW_DL_VLAN;
214         } else {
215             match->dl_vlan = htons(vlan_tci_to_vid(rule->flow.vlan_tci));
216         }
217
218         if (!(rule->wc.vlan_tci_mask & htons(VLAN_PCP_MASK))) {
219             ofpfw |= OFPFW_DL_VLAN_PCP;
220         } else {
221             match->dl_vlan_pcp = vlan_tci_to_pcp(rule->flow.vlan_tci);
222         }
223     }
224
225     /* Compose most of the match structure. */
226     match->wildcards = htonl(ofpfw);
227     match->in_port = htons(rule->flow.in_port);
228     memcpy(match->dl_src, rule->flow.dl_src, ETH_ADDR_LEN);
229     memcpy(match->dl_dst, rule->flow.dl_dst, ETH_ADDR_LEN);
230     match->dl_type = ofputil_dl_type_to_openflow(rule->flow.dl_type);
231     match->nw_src = rule->flow.nw_src;
232     match->nw_dst = rule->flow.nw_dst;
233     match->nw_tos = rule->flow.nw_tos & IP_DSCP_MASK;
234     match->nw_proto = rule->flow.nw_proto;
235     match->tp_src = rule->flow.tp_src;
236     match->tp_dst = rule->flow.tp_dst;
237     memset(match->pad1, '\0', sizeof match->pad1);
238     memset(match->pad2, '\0', sizeof match->pad2);
239 }
240
241 /* Given a 'dl_type' value in the format used in struct flow, returns the
242  * corresponding 'dl_type' value for use in an OpenFlow ofp_match structure. */
243 ovs_be16
244 ofputil_dl_type_to_openflow(ovs_be16 flow_dl_type)
245 {
246     return (flow_dl_type == htons(FLOW_DL_TYPE_NONE)
247             ? htons(OFP_DL_TYPE_NOT_ETH_TYPE)
248             : flow_dl_type);
249 }
250
251 /* Given a 'dl_type' value in the format used in an OpenFlow ofp_match
252  * structure, returns the corresponding 'dl_type' value for use in struct
253  * flow. */
254 ovs_be16
255 ofputil_dl_type_from_openflow(ovs_be16 ofp_dl_type)
256 {
257     return (ofp_dl_type == htons(OFP_DL_TYPE_NOT_ETH_TYPE)
258             ? htons(FLOW_DL_TYPE_NONE)
259             : ofp_dl_type);
260 }
261
262 /* Returns a transaction ID to use for an outgoing OpenFlow message. */
263 static ovs_be32
264 alloc_xid(void)
265 {
266     static uint32_t next_xid = 1;
267     return htonl(next_xid++);
268 }
269 \f
270 /* Basic parsing of OpenFlow messages. */
271
272 struct ofputil_msg_type {
273     enum ofputil_msg_code code; /* OFPUTIL_*. */
274     uint32_t value;             /* OFPT_*, OFPST_*, NXT_*, or NXST_*. */
275     const char *name;           /* e.g. "OFPT_FLOW_REMOVED". */
276     unsigned int min_size;      /* Minimum total message size in bytes. */
277     /* 0 if 'min_size' is the exact size that the message must be.  Otherwise,
278      * the message may exceed 'min_size' by an even multiple of this value. */
279     unsigned int extra_multiple;
280 };
281
282 /* Represents a malformed OpenFlow message. */
283 static const struct ofputil_msg_type ofputil_invalid_type = {
284     OFPUTIL_MSG_INVALID, 0, "OFPUTIL_MSG_INVALID", 0, 0
285 };
286
287 struct ofputil_msg_category {
288     const char *name;           /* e.g. "OpenFlow message" */
289     const struct ofputil_msg_type *types;
290     size_t n_types;
291     int missing_error;          /* ofp_mkerr() value for missing type. */
292 };
293
294 static int
295 ofputil_check_length(const struct ofputil_msg_type *type, unsigned int size)
296 {
297     switch (type->extra_multiple) {
298     case 0:
299         if (size != type->min_size) {
300             VLOG_WARN_RL(&bad_ofmsg_rl, "received %s with incorrect "
301                          "length %u (expected length %u)",
302                          type->name, size, type->min_size);
303             return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
304         }
305         return 0;
306
307     case 1:
308         if (size < type->min_size) {
309             VLOG_WARN_RL(&bad_ofmsg_rl, "received %s with incorrect "
310                          "length %u (expected length at least %u bytes)",
311                          type->name, size, type->min_size);
312             return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
313         }
314         return 0;
315
316     default:
317         if (size < type->min_size
318             || (size - type->min_size) % type->extra_multiple) {
319             VLOG_WARN_RL(&bad_ofmsg_rl, "received %s with incorrect "
320                          "length %u (must be exactly %u bytes or longer "
321                          "by an integer multiple of %u bytes)",
322                          type->name, size,
323                          type->min_size, type->extra_multiple);
324             return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
325         }
326         return 0;
327     }
328 }
329
330 static int
331 ofputil_lookup_openflow_message(const struct ofputil_msg_category *cat,
332                                 uint32_t value,
333                                 const struct ofputil_msg_type **typep)
334 {
335     const struct ofputil_msg_type *type;
336
337     for (type = cat->types; type < &cat->types[cat->n_types]; type++) {
338         if (type->value == value) {
339             *typep = type;
340             return 0;
341         }
342     }
343
344     VLOG_WARN_RL(&bad_ofmsg_rl, "received %s of unknown type %"PRIu32,
345                  cat->name, value);
346     return cat->missing_error;
347 }
348
349 static int
350 ofputil_decode_vendor(const struct ofp_header *oh, size_t length,
351                       const struct ofputil_msg_type **typep)
352 {
353     static const struct ofputil_msg_type nxt_messages[] = {
354         { OFPUTIL_NXT_ROLE_REQUEST,
355           NXT_ROLE_REQUEST, "NXT_ROLE_REQUEST",
356           sizeof(struct nx_role_request), 0 },
357
358         { OFPUTIL_NXT_ROLE_REPLY,
359           NXT_ROLE_REPLY, "NXT_ROLE_REPLY",
360           sizeof(struct nx_role_request), 0 },
361
362         { OFPUTIL_NXT_SET_FLOW_FORMAT,
363           NXT_SET_FLOW_FORMAT, "NXT_SET_FLOW_FORMAT",
364           sizeof(struct nxt_set_flow_format), 0 },
365
366         { OFPUTIL_NXT_FLOW_MOD,
367           NXT_FLOW_MOD, "NXT_FLOW_MOD",
368           sizeof(struct nx_flow_mod), 8 },
369
370         { OFPUTIL_NXT_FLOW_REMOVED,
371           NXT_FLOW_REMOVED, "NXT_FLOW_REMOVED",
372           sizeof(struct nx_flow_removed), 8 },
373
374         { OFPUTIL_NXT_FLOW_MOD_TABLE_ID,
375           NXT_FLOW_MOD_TABLE_ID, "NXT_FLOW_MOD_TABLE_ID",
376           sizeof(struct nxt_flow_mod_table_id), 0 },
377     };
378
379     static const struct ofputil_msg_category nxt_category = {
380         "Nicira extension message",
381         nxt_messages, ARRAY_SIZE(nxt_messages),
382         OFP_MKERR(OFPET_BAD_REQUEST, OFPBRC_BAD_SUBTYPE)
383     };
384
385     const struct ofp_vendor_header *ovh;
386     const struct nicira_header *nh;
387
388     if (length < sizeof(struct ofp_vendor_header)) {
389         if (length == ntohs(oh->length)) {
390             VLOG_WARN_RL(&bad_ofmsg_rl, "truncated vendor message");
391         }
392         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
393     }
394
395     ovh = (const struct ofp_vendor_header *) oh;
396     if (ovh->vendor != htonl(NX_VENDOR_ID)) {
397         VLOG_WARN_RL(&bad_ofmsg_rl, "received vendor message for unknown "
398                      "vendor %"PRIx32, ntohl(ovh->vendor));
399         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_VENDOR);
400     }
401
402     if (length < sizeof(struct nicira_header)) {
403         if (length == ntohs(oh->length)) {
404             VLOG_WARN_RL(&bad_ofmsg_rl, "received Nicira vendor message of "
405                          "length %u (expected at least %zu)",
406                          ntohs(ovh->header.length),
407                          sizeof(struct nicira_header));
408         }
409         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
410     }
411
412     nh = (const struct nicira_header *) oh;
413     return ofputil_lookup_openflow_message(&nxt_category, ntohl(nh->subtype),
414                                            typep);
415 }
416
417 static int
418 check_nxstats_msg(const struct ofp_header *oh, size_t length)
419 {
420     const struct ofp_stats_msg *osm = (const struct ofp_stats_msg *) oh;
421     ovs_be32 vendor;
422
423     if (length < sizeof(struct ofp_vendor_stats_msg)) {
424         if (length == ntohs(oh->length)) {
425             VLOG_WARN_RL(&bad_ofmsg_rl, "truncated vendor stats message");
426         }
427         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
428     }
429
430     memcpy(&vendor, osm + 1, sizeof vendor);
431     if (vendor != htonl(NX_VENDOR_ID)) {
432         VLOG_WARN_RL(&bad_ofmsg_rl, "received vendor stats message for "
433                      "unknown vendor %"PRIx32, ntohl(vendor));
434         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_VENDOR);
435     }
436
437     if (length < sizeof(struct nicira_stats_msg)) {
438         if (length == ntohs(osm->header.length)) {
439             VLOG_WARN_RL(&bad_ofmsg_rl, "truncated Nicira stats message");
440         }
441         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
442     }
443
444     return 0;
445 }
446
447 static int
448 ofputil_decode_nxst_request(const struct ofp_header *oh, size_t length,
449                             const struct ofputil_msg_type **typep)
450 {
451     static const struct ofputil_msg_type nxst_requests[] = {
452         { OFPUTIL_NXST_FLOW_REQUEST,
453           NXST_FLOW, "NXST_FLOW request",
454           sizeof(struct nx_flow_stats_request), 8 },
455
456         { OFPUTIL_NXST_AGGREGATE_REQUEST,
457           NXST_AGGREGATE, "NXST_AGGREGATE request",
458           sizeof(struct nx_aggregate_stats_request), 8 },
459     };
460
461     static const struct ofputil_msg_category nxst_request_category = {
462         "Nicira extension statistics request",
463         nxst_requests, ARRAY_SIZE(nxst_requests),
464         OFP_MKERR(OFPET_BAD_REQUEST, OFPBRC_BAD_SUBTYPE)
465     };
466
467     const struct nicira_stats_msg *nsm;
468     int error;
469
470     error = check_nxstats_msg(oh, length);
471     if (error) {
472         return error;
473     }
474
475     nsm = (struct nicira_stats_msg *) oh;
476     return ofputil_lookup_openflow_message(&nxst_request_category,
477                                            ntohl(nsm->subtype), typep);
478 }
479
480 static int
481 ofputil_decode_nxst_reply(const struct ofp_header *oh, size_t length,
482                           const struct ofputil_msg_type **typep)
483 {
484     static const struct ofputil_msg_type nxst_replies[] = {
485         { OFPUTIL_NXST_FLOW_REPLY,
486           NXST_FLOW, "NXST_FLOW reply",
487           sizeof(struct nicira_stats_msg), 8 },
488
489         { OFPUTIL_NXST_AGGREGATE_REPLY,
490           NXST_AGGREGATE, "NXST_AGGREGATE reply",
491           sizeof(struct nx_aggregate_stats_reply), 0 },
492     };
493
494     static const struct ofputil_msg_category nxst_reply_category = {
495         "Nicira extension statistics reply",
496         nxst_replies, ARRAY_SIZE(nxst_replies),
497         OFP_MKERR(OFPET_BAD_REQUEST, OFPBRC_BAD_SUBTYPE)
498     };
499
500     const struct nicira_stats_msg *nsm;
501     int error;
502
503     error = check_nxstats_msg(oh, length);
504     if (error) {
505         return error;
506     }
507
508     nsm = (struct nicira_stats_msg *) oh;
509     return ofputil_lookup_openflow_message(&nxst_reply_category,
510                                            ntohl(nsm->subtype), typep);
511 }
512
513 static int
514 check_stats_msg(const struct ofp_header *oh, size_t length)
515 {
516     if (length < sizeof(struct ofp_stats_msg)) {
517         if (length == ntohs(oh->length)) {
518             VLOG_WARN_RL(&bad_ofmsg_rl, "truncated stats message");
519         }
520         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
521     }
522
523     return 0;
524 }
525
526 static int
527 ofputil_decode_ofpst_request(const struct ofp_header *oh, size_t length,
528                              const struct ofputil_msg_type **typep)
529 {
530     static const struct ofputil_msg_type ofpst_requests[] = {
531         { OFPUTIL_OFPST_DESC_REQUEST,
532           OFPST_DESC, "OFPST_DESC request",
533           sizeof(struct ofp_stats_msg), 0 },
534
535         { OFPUTIL_OFPST_FLOW_REQUEST,
536           OFPST_FLOW, "OFPST_FLOW request",
537           sizeof(struct ofp_flow_stats_request), 0 },
538
539         { OFPUTIL_OFPST_AGGREGATE_REQUEST,
540           OFPST_AGGREGATE, "OFPST_AGGREGATE request",
541           sizeof(struct ofp_flow_stats_request), 0 },
542
543         { OFPUTIL_OFPST_TABLE_REQUEST,
544           OFPST_TABLE, "OFPST_TABLE request",
545           sizeof(struct ofp_stats_msg), 0 },
546
547         { OFPUTIL_OFPST_PORT_REQUEST,
548           OFPST_PORT, "OFPST_PORT request",
549           sizeof(struct ofp_port_stats_request), 0 },
550
551         { OFPUTIL_OFPST_QUEUE_REQUEST,
552           OFPST_QUEUE, "OFPST_QUEUE request",
553           sizeof(struct ofp_queue_stats_request), 0 },
554
555         { 0,
556           OFPST_VENDOR, "OFPST_VENDOR request",
557           sizeof(struct ofp_vendor_stats_msg), 1 },
558     };
559
560     static const struct ofputil_msg_category ofpst_request_category = {
561         "OpenFlow statistics",
562         ofpst_requests, ARRAY_SIZE(ofpst_requests),
563         OFP_MKERR(OFPET_BAD_REQUEST, OFPBRC_BAD_STAT)
564     };
565
566     const struct ofp_stats_msg *request = (const struct ofp_stats_msg *) oh;
567     int error;
568
569     error = check_stats_msg(oh, length);
570     if (error) {
571         return error;
572     }
573
574     error = ofputil_lookup_openflow_message(&ofpst_request_category,
575                                             ntohs(request->type), typep);
576     if (!error && request->type == htons(OFPST_VENDOR)) {
577         error = ofputil_decode_nxst_request(oh, length, typep);
578     }
579     return error;
580 }
581
582 static int
583 ofputil_decode_ofpst_reply(const struct ofp_header *oh, size_t length,
584                            const struct ofputil_msg_type **typep)
585 {
586     static const struct ofputil_msg_type ofpst_replies[] = {
587         { OFPUTIL_OFPST_DESC_REPLY,
588           OFPST_DESC, "OFPST_DESC reply",
589           sizeof(struct ofp_desc_stats), 0 },
590
591         { OFPUTIL_OFPST_FLOW_REPLY,
592           OFPST_FLOW, "OFPST_FLOW reply",
593           sizeof(struct ofp_stats_msg), 1 },
594
595         { OFPUTIL_OFPST_AGGREGATE_REPLY,
596           OFPST_AGGREGATE, "OFPST_AGGREGATE reply",
597           sizeof(struct ofp_aggregate_stats_reply), 0 },
598
599         { OFPUTIL_OFPST_TABLE_REPLY,
600           OFPST_TABLE, "OFPST_TABLE reply",
601           sizeof(struct ofp_stats_msg), sizeof(struct ofp_table_stats) },
602
603         { OFPUTIL_OFPST_PORT_REPLY,
604           OFPST_PORT, "OFPST_PORT reply",
605           sizeof(struct ofp_stats_msg), sizeof(struct ofp_port_stats) },
606
607         { OFPUTIL_OFPST_QUEUE_REPLY,
608           OFPST_QUEUE, "OFPST_QUEUE reply",
609           sizeof(struct ofp_stats_msg), sizeof(struct ofp_queue_stats) },
610
611         { 0,
612           OFPST_VENDOR, "OFPST_VENDOR reply",
613           sizeof(struct ofp_vendor_stats_msg), 1 },
614     };
615
616     static const struct ofputil_msg_category ofpst_reply_category = {
617         "OpenFlow statistics",
618         ofpst_replies, ARRAY_SIZE(ofpst_replies),
619         OFP_MKERR(OFPET_BAD_REQUEST, OFPBRC_BAD_STAT)
620     };
621
622     const struct ofp_stats_msg *reply = (const struct ofp_stats_msg *) oh;
623     int error;
624
625     error = check_stats_msg(oh, length);
626     if (error) {
627         return error;
628     }
629
630     error = ofputil_lookup_openflow_message(&ofpst_reply_category,
631                                            ntohs(reply->type), typep);
632     if (!error && reply->type == htons(OFPST_VENDOR)) {
633         error = ofputil_decode_nxst_reply(oh, length, typep);
634     }
635     return error;
636 }
637
638 static int
639 ofputil_decode_msg_type__(const struct ofp_header *oh, size_t length,
640                           const struct ofputil_msg_type **typep)
641 {
642     static const struct ofputil_msg_type ofpt_messages[] = {
643         { OFPUTIL_OFPT_HELLO,
644           OFPT_HELLO, "OFPT_HELLO",
645           sizeof(struct ofp_hello), 1 },
646
647         { OFPUTIL_OFPT_ERROR,
648           OFPT_ERROR, "OFPT_ERROR",
649           sizeof(struct ofp_error_msg), 1 },
650
651         { OFPUTIL_OFPT_ECHO_REQUEST,
652           OFPT_ECHO_REQUEST, "OFPT_ECHO_REQUEST",
653           sizeof(struct ofp_header), 1 },
654
655         { OFPUTIL_OFPT_ECHO_REPLY,
656           OFPT_ECHO_REPLY, "OFPT_ECHO_REPLY",
657           sizeof(struct ofp_header), 1 },
658
659         { OFPUTIL_OFPT_FEATURES_REQUEST,
660           OFPT_FEATURES_REQUEST, "OFPT_FEATURES_REQUEST",
661           sizeof(struct ofp_header), 0 },
662
663         { OFPUTIL_OFPT_FEATURES_REPLY,
664           OFPT_FEATURES_REPLY, "OFPT_FEATURES_REPLY",
665           sizeof(struct ofp_switch_features), sizeof(struct ofp_phy_port) },
666
667         { OFPUTIL_OFPT_GET_CONFIG_REQUEST,
668           OFPT_GET_CONFIG_REQUEST, "OFPT_GET_CONFIG_REQUEST",
669           sizeof(struct ofp_header), 0 },
670
671         { OFPUTIL_OFPT_GET_CONFIG_REPLY,
672           OFPT_GET_CONFIG_REPLY, "OFPT_GET_CONFIG_REPLY",
673           sizeof(struct ofp_switch_config), 0 },
674
675         { OFPUTIL_OFPT_SET_CONFIG,
676           OFPT_SET_CONFIG, "OFPT_SET_CONFIG",
677           sizeof(struct ofp_switch_config), 0 },
678
679         { OFPUTIL_OFPT_PACKET_IN,
680           OFPT_PACKET_IN, "OFPT_PACKET_IN",
681           offsetof(struct ofp_packet_in, data), 1 },
682
683         { OFPUTIL_OFPT_FLOW_REMOVED,
684           OFPT_FLOW_REMOVED, "OFPT_FLOW_REMOVED",
685           sizeof(struct ofp_flow_removed), 0 },
686
687         { OFPUTIL_OFPT_PORT_STATUS,
688           OFPT_PORT_STATUS, "OFPT_PORT_STATUS",
689           sizeof(struct ofp_port_status), 0 },
690
691         { OFPUTIL_OFPT_PACKET_OUT,
692           OFPT_PACKET_OUT, "OFPT_PACKET_OUT",
693           sizeof(struct ofp_packet_out), 1 },
694
695         { OFPUTIL_OFPT_FLOW_MOD,
696           OFPT_FLOW_MOD, "OFPT_FLOW_MOD",
697           sizeof(struct ofp_flow_mod), 1 },
698
699         { OFPUTIL_OFPT_PORT_MOD,
700           OFPT_PORT_MOD, "OFPT_PORT_MOD",
701           sizeof(struct ofp_port_mod), 0 },
702
703         { 0,
704           OFPT_STATS_REQUEST, "OFPT_STATS_REQUEST",
705           sizeof(struct ofp_stats_msg), 1 },
706
707         { 0,
708           OFPT_STATS_REPLY, "OFPT_STATS_REPLY",
709           sizeof(struct ofp_stats_msg), 1 },
710
711         { OFPUTIL_OFPT_BARRIER_REQUEST,
712           OFPT_BARRIER_REQUEST, "OFPT_BARRIER_REQUEST",
713           sizeof(struct ofp_header), 0 },
714
715         { OFPUTIL_OFPT_BARRIER_REPLY,
716           OFPT_BARRIER_REPLY, "OFPT_BARRIER_REPLY",
717           sizeof(struct ofp_header), 0 },
718
719         { 0,
720           OFPT_VENDOR, "OFPT_VENDOR",
721           sizeof(struct ofp_vendor_header), 1 },
722     };
723
724     static const struct ofputil_msg_category ofpt_category = {
725         "OpenFlow message",
726         ofpt_messages, ARRAY_SIZE(ofpt_messages),
727         OFP_MKERR(OFPET_BAD_REQUEST, OFPBRC_BAD_TYPE)
728     };
729
730     int error;
731
732     error = ofputil_lookup_openflow_message(&ofpt_category, oh->type, typep);
733     if (!error) {
734         switch (oh->type) {
735         case OFPT_VENDOR:
736             error = ofputil_decode_vendor(oh, length, typep);
737             break;
738
739         case OFPT_STATS_REQUEST:
740             error = ofputil_decode_ofpst_request(oh, length, typep);
741             break;
742
743         case OFPT_STATS_REPLY:
744             error = ofputil_decode_ofpst_reply(oh, length, typep);
745
746         default:
747             break;
748         }
749     }
750     return error;
751 }
752
753 /* Decodes the message type represented by 'oh'.  Returns 0 if successful or
754  * an OpenFlow error code constructed with ofp_mkerr() on failure.  Either
755  * way, stores in '*typep' a type structure that can be inspected with the
756  * ofputil_msg_type_*() functions.
757  *
758  * oh->length must indicate the correct length of the message (and must be at
759  * least sizeof(struct ofp_header)).
760  *
761  * Success indicates that 'oh' is at least as long as the minimum-length
762  * message of its type. */
763 int
764 ofputil_decode_msg_type(const struct ofp_header *oh,
765                         const struct ofputil_msg_type **typep)
766 {
767     size_t length = ntohs(oh->length);
768     int error;
769
770     error = ofputil_decode_msg_type__(oh, length, typep);
771     if (!error) {
772         error = ofputil_check_length(*typep, length);
773     }
774     if (error) {
775         *typep = &ofputil_invalid_type;
776     }
777     return error;
778 }
779
780 /* Decodes the message type represented by 'oh', of which only the first
781  * 'length' bytes are available.  Returns 0 if successful or an OpenFlow error
782  * code constructed with ofp_mkerr() on failure.  Either way, stores in
783  * '*typep' a type structure that can be inspected with the
784  * ofputil_msg_type_*() functions.  */
785 int
786 ofputil_decode_msg_type_partial(const struct ofp_header *oh, size_t length,
787                                 const struct ofputil_msg_type **typep)
788 {
789     int error;
790
791     error = (length >= sizeof *oh
792              ? ofputil_decode_msg_type__(oh, length, typep)
793              : ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN));
794     if (error) {
795         *typep = &ofputil_invalid_type;
796     }
797     return error;
798 }
799
800 /* Returns an OFPUTIL_* message type code for 'type'. */
801 enum ofputil_msg_code
802 ofputil_msg_type_code(const struct ofputil_msg_type *type)
803 {
804     return type->code;
805 }
806 \f
807 /* Flow formats. */
808
809 bool
810 ofputil_flow_format_is_valid(enum nx_flow_format flow_format)
811 {
812     switch (flow_format) {
813     case NXFF_OPENFLOW10:
814     case NXFF_NXM:
815         return true;
816     }
817
818     return false;
819 }
820
821 const char *
822 ofputil_flow_format_to_string(enum nx_flow_format flow_format)
823 {
824     switch (flow_format) {
825     case NXFF_OPENFLOW10:
826         return "openflow10";
827     case NXFF_NXM:
828         return "nxm";
829     default:
830         NOT_REACHED();
831     }
832 }
833
834 int
835 ofputil_flow_format_from_string(const char *s)
836 {
837     return (!strcmp(s, "openflow10") ? NXFF_OPENFLOW10
838             : !strcmp(s, "nxm") ? NXFF_NXM
839             : -1);
840 }
841
842 static bool
843 regs_fully_wildcarded(const struct flow_wildcards *wc)
844 {
845     int i;
846
847     for (i = 0; i < FLOW_N_REGS; i++) {
848         if (wc->reg_masks[i] != 0) {
849             return false;
850         }
851     }
852     return true;
853 }
854
855 /* Returns the minimum nx_flow_format to use for sending 'rule' to a switch
856  * (e.g. to add or remove a flow).  Only NXM can handle tunnel IDs, registers,
857  * or fixing the Ethernet multicast bit.  Otherwise, it's better to use
858  * NXFF_OPENFLOW10 for backward compatibility. */
859 enum nx_flow_format
860 ofputil_min_flow_format(const struct cls_rule *rule)
861 {
862     const struct flow_wildcards *wc = &rule->wc;
863
864     BUILD_ASSERT_DECL(FLOW_WC_SEQ == 7);
865
866     /* Only NXM supports separately wildcards the Ethernet multicast bit. */
867     if (!(wc->wildcards & FWW_DL_DST) != !(wc->wildcards & FWW_ETH_MCAST)) {
868         return NXFF_NXM;
869     }
870
871     /* Only NXM supports matching ARP hardware addresses. */
872     if (!(wc->wildcards & FWW_ARP_SHA) || !(wc->wildcards & FWW_ARP_THA)) {
873         return NXFF_NXM;
874     }
875
876     /* Only NXM supports matching IPv6 traffic. */
877     if (!(wc->wildcards & FWW_DL_TYPE)
878             && (rule->flow.dl_type == htons(ETH_TYPE_IPV6))) {
879         return NXFF_NXM;
880     }
881
882     /* Only NXM supports matching registers. */
883     if (!regs_fully_wildcarded(wc)) {
884         return NXFF_NXM;
885     }
886
887     /* Only NXM supports matching tun_id. */
888     if (wc->tun_id_mask != htonll(0)) {
889         return NXFF_NXM;
890     }
891
892     /* Only NXM supports matching fragments. */
893     if (wc->nw_frag_mask) {
894         return NXFF_NXM;
895     }
896
897     /* Only NXM supports matching IPv6 flow label. */
898     if (!(wc->wildcards & FWW_IPV6_LABEL)) {
899         return NXFF_NXM;
900     }
901
902     /* Only NXM supports matching IP ECN bits. */
903     if (!(wc->wildcards & FWW_NW_ECN)) {
904         return NXFF_NXM;
905     }
906
907     /* Only NXM supports matching IP TTL/hop limit. */
908     if (!(wc->wildcards & FWW_NW_TTL)) {
909         return NXFF_NXM;
910     }
911
912     /* Other formats can express this rule. */
913     return NXFF_OPENFLOW10;
914 }
915
916 /* Returns an OpenFlow message that can be used to set the flow format to
917  * 'flow_format'.  */
918 struct ofpbuf *
919 ofputil_make_set_flow_format(enum nx_flow_format flow_format)
920 {
921     struct nxt_set_flow_format *sff;
922     struct ofpbuf *msg;
923
924     sff = make_nxmsg(sizeof *sff, NXT_SET_FLOW_FORMAT, &msg);
925     sff->format = htonl(flow_format);
926
927     return msg;
928 }
929
930 /* Returns an OpenFlow message that can be used to turn the flow_mod_table_id
931  * extension on or off (according to 'flow_mod_table_id'). */
932 struct ofpbuf *
933 ofputil_make_flow_mod_table_id(bool flow_mod_table_id)
934 {
935     struct nxt_flow_mod_table_id *nfmti;
936     struct ofpbuf *msg;
937
938     nfmti = make_nxmsg(sizeof *nfmti, NXT_FLOW_MOD_TABLE_ID, &msg);
939     nfmti->set = flow_mod_table_id;
940     return msg;
941 }
942
943 /* Converts an OFPT_FLOW_MOD or NXT_FLOW_MOD message 'oh' into an abstract
944  * flow_mod in 'fm'.  Returns 0 if successful, otherwise an OpenFlow error
945  * code.
946  *
947  * 'flow_mod_table_id' should be true if the NXT_FLOW_MOD_TABLE_ID extension is
948  * enabled, false otherwise.
949  *
950  * Does not validate the flow_mod actions. */
951 int
952 ofputil_decode_flow_mod(struct ofputil_flow_mod *fm,
953                         const struct ofp_header *oh, bool flow_mod_table_id)
954 {
955     const struct ofputil_msg_type *type;
956     uint16_t command;
957     struct ofpbuf b;
958
959     ofpbuf_use_const(&b, oh, ntohs(oh->length));
960
961     ofputil_decode_msg_type(oh, &type);
962     if (ofputil_msg_type_code(type) == OFPUTIL_OFPT_FLOW_MOD) {
963         /* Standard OpenFlow flow_mod. */
964         const struct ofp_flow_mod *ofm;
965         uint16_t priority;
966         int error;
967
968         /* Dissect the message. */
969         ofm = ofpbuf_pull(&b, sizeof *ofm);
970         error = ofputil_pull_actions(&b, b.size, &fm->actions, &fm->n_actions);
971         if (error) {
972             return error;
973         }
974
975         /* Set priority based on original wildcards.  Normally we'd allow
976          * ofputil_cls_rule_from_match() to do this for us, but
977          * ofputil_normalize_rule() can put wildcards where the original flow
978          * didn't have them. */
979         priority = ntohs(ofm->priority);
980         if (!(ofm->match.wildcards & htonl(OFPFW_ALL))) {
981             priority = UINT16_MAX;
982         }
983
984         /* Translate the rule. */
985         ofputil_cls_rule_from_match(&ofm->match, priority, &fm->cr);
986         ofputil_normalize_rule(&fm->cr, NXFF_OPENFLOW10);
987
988         /* Translate the message. */
989         fm->cookie = ofm->cookie;
990         fm->cookie_mask = htonll(UINT64_MAX);
991         command = ntohs(ofm->command);
992         fm->idle_timeout = ntohs(ofm->idle_timeout);
993         fm->hard_timeout = ntohs(ofm->hard_timeout);
994         fm->buffer_id = ntohl(ofm->buffer_id);
995         fm->out_port = ntohs(ofm->out_port);
996         fm->flags = ntohs(ofm->flags);
997     } else if (ofputil_msg_type_code(type) == OFPUTIL_NXT_FLOW_MOD) {
998         /* Nicira extended flow_mod. */
999         const struct nx_flow_mod *nfm;
1000         int error;
1001
1002         /* Dissect the message. */
1003         nfm = ofpbuf_pull(&b, sizeof *nfm);
1004         error = nx_pull_match(&b, ntohs(nfm->match_len), ntohs(nfm->priority),
1005                               &fm->cr, &fm->cookie, &fm->cookie_mask);
1006         if (error) {
1007             return error;
1008         }
1009         error = ofputil_pull_actions(&b, b.size, &fm->actions, &fm->n_actions);
1010         if (error) {
1011             return error;
1012         }
1013
1014         /* Translate the message. */
1015         command = ntohs(nfm->command);
1016         if (command == OFPFC_ADD) {
1017             if (fm->cookie_mask) {
1018                 /* The "NXM_NX_COOKIE*" matches are not valid for flow
1019                  * additions.  Additions must use the "cookie" field of
1020                  * the "nx_flow_mod" structure. */
1021                 return ofp_mkerr(OFPET_BAD_REQUEST, NXBRC_NXM_INVALID);
1022             } else {
1023                 fm->cookie = nfm->cookie;
1024                 fm->cookie_mask = htonll(UINT64_MAX);
1025             }
1026         }
1027         fm->idle_timeout = ntohs(nfm->idle_timeout);
1028         fm->hard_timeout = ntohs(nfm->hard_timeout);
1029         fm->buffer_id = ntohl(nfm->buffer_id);
1030         fm->out_port = ntohs(nfm->out_port);
1031         fm->flags = ntohs(nfm->flags);
1032     } else {
1033         NOT_REACHED();
1034     }
1035
1036     if (flow_mod_table_id) {
1037         fm->command = command & 0xff;
1038         fm->table_id = command >> 8;
1039     } else {
1040         fm->command = command;
1041         fm->table_id = 0xff;
1042     }
1043
1044     return 0;
1045 }
1046
1047 /* Converts 'fm' into an OFPT_FLOW_MOD or NXT_FLOW_MOD message according to
1048  * 'flow_format' and returns the message.
1049  *
1050  * 'flow_mod_table_id' should be true if the NXT_FLOW_MOD_TABLE_ID extension is
1051  * enabled, false otherwise. */
1052 struct ofpbuf *
1053 ofputil_encode_flow_mod(const struct ofputil_flow_mod *fm,
1054                         enum nx_flow_format flow_format,
1055                         bool flow_mod_table_id)
1056 {
1057     size_t actions_len = fm->n_actions * sizeof *fm->actions;
1058     struct ofpbuf *msg;
1059     uint16_t command;
1060
1061     command = (flow_mod_table_id
1062                ? (fm->command & 0xff) | (fm->table_id << 8)
1063                : fm->command);
1064
1065     if (flow_format == NXFF_OPENFLOW10) {
1066         struct ofp_flow_mod *ofm;
1067
1068         msg = ofpbuf_new(sizeof *ofm + actions_len);
1069         ofm = put_openflow(sizeof *ofm, OFPT_FLOW_MOD, msg);
1070         ofputil_cls_rule_to_match(&fm->cr, &ofm->match);
1071         ofm->cookie = fm->cookie;
1072         ofm->command = htons(command);
1073         ofm->idle_timeout = htons(fm->idle_timeout);
1074         ofm->hard_timeout = htons(fm->hard_timeout);
1075         ofm->priority = htons(fm->cr.priority);
1076         ofm->buffer_id = htonl(fm->buffer_id);
1077         ofm->out_port = htons(fm->out_port);
1078         ofm->flags = htons(fm->flags);
1079     } else if (flow_format == NXFF_NXM) {
1080         struct nx_flow_mod *nfm;
1081         int match_len;
1082
1083         msg = ofpbuf_new(sizeof *nfm + NXM_TYPICAL_LEN + actions_len);
1084         put_nxmsg(sizeof *nfm, NXT_FLOW_MOD, msg);
1085         nfm = msg->data;
1086         nfm->command = htons(command);
1087         if (command == OFPFC_ADD) {
1088             nfm->cookie = fm->cookie;
1089             match_len = nx_put_match(msg, &fm->cr, 0, 0);
1090         } else {
1091             nfm->cookie = 0;
1092             match_len = nx_put_match(msg, &fm->cr,
1093                                      fm->cookie, fm->cookie_mask);
1094         }
1095         nfm->idle_timeout = htons(fm->idle_timeout);
1096         nfm->hard_timeout = htons(fm->hard_timeout);
1097         nfm->priority = htons(fm->cr.priority);
1098         nfm->buffer_id = htonl(fm->buffer_id);
1099         nfm->out_port = htons(fm->out_port);
1100         nfm->flags = htons(fm->flags);
1101         nfm->match_len = htons(match_len);
1102     } else {
1103         NOT_REACHED();
1104     }
1105
1106     ofpbuf_put(msg, fm->actions, actions_len);
1107     update_openflow_length(msg);
1108     return msg;
1109 }
1110
1111 static int
1112 ofputil_decode_ofpst_flow_request(struct ofputil_flow_stats_request *fsr,
1113                                   const struct ofp_header *oh,
1114                                   bool aggregate)
1115 {
1116     const struct ofp_flow_stats_request *ofsr =
1117         (const struct ofp_flow_stats_request *) oh;
1118
1119     fsr->aggregate = aggregate;
1120     ofputil_cls_rule_from_match(&ofsr->match, 0, &fsr->match);
1121     fsr->out_port = ntohs(ofsr->out_port);
1122     fsr->table_id = ofsr->table_id;
1123     fsr->cookie = fsr->cookie_mask = htonll(0);
1124
1125     return 0;
1126 }
1127
1128 static int
1129 ofputil_decode_nxst_flow_request(struct ofputil_flow_stats_request *fsr,
1130                                  const struct ofp_header *oh,
1131                                  bool aggregate)
1132 {
1133     const struct nx_flow_stats_request *nfsr;
1134     struct ofpbuf b;
1135     int error;
1136
1137     ofpbuf_use_const(&b, oh, ntohs(oh->length));
1138
1139     nfsr = ofpbuf_pull(&b, sizeof *nfsr);
1140     error = nx_pull_match(&b, ntohs(nfsr->match_len), 0, &fsr->match,
1141                           &fsr->cookie, &fsr->cookie_mask);
1142     if (error) {
1143         return error;
1144     }
1145     if (b.size) {
1146         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
1147     }
1148
1149     fsr->aggregate = aggregate;
1150     fsr->out_port = ntohs(nfsr->out_port);
1151     fsr->table_id = nfsr->table_id;
1152
1153     return 0;
1154 }
1155
1156 /* Converts an OFPST_FLOW, OFPST_AGGREGATE, NXST_FLOW, or NXST_AGGREGATE
1157  * request 'oh', into an abstract flow_stats_request in 'fsr'.  Returns 0 if
1158  * successful, otherwise an OpenFlow error code. */
1159 int
1160 ofputil_decode_flow_stats_request(struct ofputil_flow_stats_request *fsr,
1161                                   const struct ofp_header *oh)
1162 {
1163     const struct ofputil_msg_type *type;
1164     struct ofpbuf b;
1165     int code;
1166
1167     ofpbuf_use_const(&b, oh, ntohs(oh->length));
1168
1169     ofputil_decode_msg_type(oh, &type);
1170     code = ofputil_msg_type_code(type);
1171     switch (code) {
1172     case OFPUTIL_OFPST_FLOW_REQUEST:
1173         return ofputil_decode_ofpst_flow_request(fsr, oh, false);
1174
1175     case OFPUTIL_OFPST_AGGREGATE_REQUEST:
1176         return ofputil_decode_ofpst_flow_request(fsr, oh, true);
1177
1178     case OFPUTIL_NXST_FLOW_REQUEST:
1179         return ofputil_decode_nxst_flow_request(fsr, oh, false);
1180
1181     case OFPUTIL_NXST_AGGREGATE_REQUEST:
1182         return ofputil_decode_nxst_flow_request(fsr, oh, true);
1183
1184     default:
1185         /* Hey, the caller lied. */
1186         NOT_REACHED();
1187     }
1188 }
1189
1190 /* Converts abstract flow_stats_request 'fsr' into an OFPST_FLOW,
1191  * OFPST_AGGREGATE, NXST_FLOW, or NXST_AGGREGATE request 'oh' according to
1192  * 'flow_format', and returns the message. */
1193 struct ofpbuf *
1194 ofputil_encode_flow_stats_request(const struct ofputil_flow_stats_request *fsr,
1195                                   enum nx_flow_format flow_format)
1196 {
1197     struct ofpbuf *msg;
1198
1199     if (flow_format == NXFF_OPENFLOW10) {
1200         struct ofp_flow_stats_request *ofsr;
1201         int type;
1202
1203         type = fsr->aggregate ? OFPST_AGGREGATE : OFPST_FLOW;
1204         ofsr = ofputil_make_stats_request(sizeof *ofsr, type, 0, &msg);
1205         ofputil_cls_rule_to_match(&fsr->match, &ofsr->match);
1206         ofsr->table_id = fsr->table_id;
1207         ofsr->out_port = htons(fsr->out_port);
1208     } else if (flow_format == NXFF_NXM) {
1209         struct nx_flow_stats_request *nfsr;
1210         int match_len;
1211         int subtype;
1212
1213         subtype = fsr->aggregate ? NXST_AGGREGATE : NXST_FLOW;
1214         ofputil_make_stats_request(sizeof *nfsr, OFPST_VENDOR, subtype, &msg);
1215         match_len = nx_put_match(msg, &fsr->match,
1216                                  fsr->cookie, fsr->cookie_mask);
1217
1218         nfsr = msg->data;
1219         nfsr->out_port = htons(fsr->out_port);
1220         nfsr->match_len = htons(match_len);
1221         nfsr->table_id = fsr->table_id;
1222     } else {
1223         NOT_REACHED();
1224     }
1225
1226     return msg;
1227 }
1228
1229 /* Converts an OFPST_FLOW or NXST_FLOW reply in 'msg' into an abstract
1230  * ofputil_flow_stats in 'fs'.
1231  *
1232  * Multiple OFPST_FLOW or NXST_FLOW replies can be packed into a single
1233  * OpenFlow message.  Calling this function multiple times for a single 'msg'
1234  * iterates through the replies.  The caller must initially leave 'msg''s layer
1235  * pointers null and not modify them between calls.
1236  *
1237  * Returns 0 if successful, EOF if no replies were left in this 'msg',
1238  * otherwise a positive errno value. */
1239 int
1240 ofputil_decode_flow_stats_reply(struct ofputil_flow_stats *fs,
1241                                 struct ofpbuf *msg)
1242 {
1243     const struct ofputil_msg_type *type;
1244     int code;
1245
1246     ofputil_decode_msg_type(msg->l2 ? msg->l2 : msg->data, &type);
1247     code = ofputil_msg_type_code(type);
1248     if (!msg->l2) {
1249         msg->l2 = msg->data;
1250         if (code == OFPUTIL_OFPST_FLOW_REPLY) {
1251             ofpbuf_pull(msg, sizeof(struct ofp_stats_msg));
1252         } else if (code == OFPUTIL_NXST_FLOW_REPLY) {
1253             ofpbuf_pull(msg, sizeof(struct nicira_stats_msg));
1254         } else {
1255             NOT_REACHED();
1256         }
1257     }
1258
1259     if (!msg->size) {
1260         return EOF;
1261     } else if (code == OFPUTIL_OFPST_FLOW_REPLY) {
1262         const struct ofp_flow_stats *ofs;
1263         size_t length;
1264
1265         ofs = ofpbuf_try_pull(msg, sizeof *ofs);
1266         if (!ofs) {
1267             VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_FLOW reply has %zu leftover "
1268                          "bytes at end", msg->size);
1269             return EINVAL;
1270         }
1271
1272         length = ntohs(ofs->length);
1273         if (length < sizeof *ofs) {
1274             VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_FLOW reply claims invalid "
1275                          "length %zu", length);
1276             return EINVAL;
1277         }
1278
1279         if (ofputil_pull_actions(msg, length - sizeof *ofs,
1280                                  &fs->actions, &fs->n_actions)) {
1281             return EINVAL;
1282         }
1283
1284         fs->cookie = get_32aligned_be64(&ofs->cookie);
1285         ofputil_cls_rule_from_match(&ofs->match, ntohs(ofs->priority),
1286                                     &fs->rule);
1287         fs->table_id = ofs->table_id;
1288         fs->duration_sec = ntohl(ofs->duration_sec);
1289         fs->duration_nsec = ntohl(ofs->duration_nsec);
1290         fs->idle_timeout = ntohs(ofs->idle_timeout);
1291         fs->hard_timeout = ntohs(ofs->hard_timeout);
1292         fs->packet_count = ntohll(get_32aligned_be64(&ofs->packet_count));
1293         fs->byte_count = ntohll(get_32aligned_be64(&ofs->byte_count));
1294     } else if (code == OFPUTIL_NXST_FLOW_REPLY) {
1295         const struct nx_flow_stats *nfs;
1296         size_t match_len, length;
1297
1298         nfs = ofpbuf_try_pull(msg, sizeof *nfs);
1299         if (!nfs) {
1300             VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW reply has %zu leftover "
1301                          "bytes at end", msg->size);
1302             return EINVAL;
1303         }
1304
1305         length = ntohs(nfs->length);
1306         match_len = ntohs(nfs->match_len);
1307         if (length < sizeof *nfs + ROUND_UP(match_len, 8)) {
1308             VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW reply with match_len=%zu "
1309                          "claims invalid length %zu", match_len, length);
1310             return EINVAL;
1311         }
1312         if (nx_pull_match(msg, match_len, ntohs(nfs->priority), &fs->rule,
1313                           NULL, NULL)) {
1314             return EINVAL;
1315         }
1316
1317         if (ofputil_pull_actions(msg,
1318                                  length - sizeof *nfs - ROUND_UP(match_len, 8),
1319                                  &fs->actions, &fs->n_actions)) {
1320             return EINVAL;
1321         }
1322
1323         fs->cookie = nfs->cookie;
1324         fs->table_id = nfs->table_id;
1325         fs->duration_sec = ntohl(nfs->duration_sec);
1326         fs->duration_nsec = ntohl(nfs->duration_nsec);
1327         fs->idle_timeout = ntohs(nfs->idle_timeout);
1328         fs->hard_timeout = ntohs(nfs->hard_timeout);
1329         fs->packet_count = ntohll(nfs->packet_count);
1330         fs->byte_count = ntohll(nfs->byte_count);
1331     } else {
1332         NOT_REACHED();
1333     }
1334
1335     return 0;
1336 }
1337
1338 /* Returns 'count' unchanged except that UINT64_MAX becomes 0.
1339  *
1340  * We use this in situations where OVS internally uses UINT64_MAX to mean
1341  * "value unknown" but OpenFlow 1.0 does not define any unknown value. */
1342 static uint64_t
1343 unknown_to_zero(uint64_t count)
1344 {
1345     return count != UINT64_MAX ? count : 0;
1346 }
1347
1348 /* Appends an OFPST_FLOW or NXST_FLOW reply that contains the data in 'fs' to
1349  * those already present in the list of ofpbufs in 'replies'.  'replies' should
1350  * have been initialized with ofputil_start_stats_reply(). */
1351 void
1352 ofputil_append_flow_stats_reply(const struct ofputil_flow_stats *fs,
1353                                 struct list *replies)
1354 {
1355     size_t act_len = fs->n_actions * sizeof *fs->actions;
1356     const struct ofp_stats_msg *osm;
1357
1358     osm = ofpbuf_from_list(list_back(replies))->data;
1359     if (osm->type == htons(OFPST_FLOW)) {
1360         size_t len = offsetof(struct ofp_flow_stats, actions) + act_len;
1361         struct ofp_flow_stats *ofs;
1362
1363         ofs = ofputil_append_stats_reply(len, replies);
1364         ofs->length = htons(len);
1365         ofs->table_id = fs->table_id;
1366         ofs->pad = 0;
1367         ofputil_cls_rule_to_match(&fs->rule, &ofs->match);
1368         ofs->duration_sec = htonl(fs->duration_sec);
1369         ofs->duration_nsec = htonl(fs->duration_nsec);
1370         ofs->priority = htons(fs->rule.priority);
1371         ofs->idle_timeout = htons(fs->idle_timeout);
1372         ofs->hard_timeout = htons(fs->hard_timeout);
1373         memset(ofs->pad2, 0, sizeof ofs->pad2);
1374         put_32aligned_be64(&ofs->cookie, fs->cookie);
1375         put_32aligned_be64(&ofs->packet_count,
1376                            htonll(unknown_to_zero(fs->packet_count)));
1377         put_32aligned_be64(&ofs->byte_count,
1378                            htonll(unknown_to_zero(fs->byte_count)));
1379         memcpy(ofs->actions, fs->actions, act_len);
1380     } else if (osm->type == htons(OFPST_VENDOR)) {
1381         struct nx_flow_stats *nfs;
1382         struct ofpbuf *msg;
1383         size_t start_len;
1384
1385         msg = ofputil_reserve_stats_reply(
1386             sizeof *nfs + NXM_MAX_LEN + act_len, replies);
1387         start_len = msg->size;
1388
1389         nfs = ofpbuf_put_uninit(msg, sizeof *nfs);
1390         nfs->table_id = fs->table_id;
1391         nfs->pad = 0;
1392         nfs->duration_sec = htonl(fs->duration_sec);
1393         nfs->duration_nsec = htonl(fs->duration_nsec);
1394         nfs->priority = htons(fs->rule.priority);
1395         nfs->idle_timeout = htons(fs->idle_timeout);
1396         nfs->hard_timeout = htons(fs->hard_timeout);
1397         nfs->match_len = htons(nx_put_match(msg, &fs->rule, 0, 0));
1398         memset(nfs->pad2, 0, sizeof nfs->pad2);
1399         nfs->cookie = fs->cookie;
1400         nfs->packet_count = htonll(fs->packet_count);
1401         nfs->byte_count = htonll(fs->byte_count);
1402         ofpbuf_put(msg, fs->actions, act_len);
1403         nfs->length = htons(msg->size - start_len);
1404     } else {
1405         NOT_REACHED();
1406     }
1407 }
1408
1409 /* Converts abstract ofputil_aggregate_stats 'stats' into an OFPST_AGGREGATE or
1410  * NXST_AGGREGATE reply according to 'flow_format', and returns the message. */
1411 struct ofpbuf *
1412 ofputil_encode_aggregate_stats_reply(
1413     const struct ofputil_aggregate_stats *stats,
1414     const struct ofp_stats_msg *request)
1415 {
1416     struct ofpbuf *msg;
1417
1418     if (request->type == htons(OFPST_AGGREGATE)) {
1419         struct ofp_aggregate_stats_reply *asr;
1420
1421         asr = ofputil_make_stats_reply(sizeof *asr, request, &msg);
1422         put_32aligned_be64(&asr->packet_count,
1423                            htonll(unknown_to_zero(stats->packet_count)));
1424         put_32aligned_be64(&asr->byte_count,
1425                            htonll(unknown_to_zero(stats->byte_count)));
1426         asr->flow_count = htonl(stats->flow_count);
1427     } else if (request->type == htons(OFPST_VENDOR)) {
1428         struct nx_aggregate_stats_reply *nasr;
1429
1430         nasr = ofputil_make_stats_reply(sizeof *nasr, request, &msg);
1431         assert(nasr->nsm.subtype == htonl(NXST_AGGREGATE));
1432         nasr->packet_count = htonll(stats->packet_count);
1433         nasr->byte_count = htonll(stats->byte_count);
1434         nasr->flow_count = htonl(stats->flow_count);
1435     } else {
1436         NOT_REACHED();
1437     }
1438
1439     return msg;
1440 }
1441
1442 /* Converts an OFPT_FLOW_REMOVED or NXT_FLOW_REMOVED message 'oh' into an
1443  * abstract ofputil_flow_removed in 'fr'.  Returns 0 if successful, otherwise
1444  * an OpenFlow error code. */
1445 int
1446 ofputil_decode_flow_removed(struct ofputil_flow_removed *fr,
1447                             const struct ofp_header *oh)
1448 {
1449     const struct ofputil_msg_type *type;
1450     enum ofputil_msg_code code;
1451
1452     ofputil_decode_msg_type(oh, &type);
1453     code = ofputil_msg_type_code(type);
1454     if (code == OFPUTIL_OFPT_FLOW_REMOVED) {
1455         const struct ofp_flow_removed *ofr;
1456
1457         ofr = (const struct ofp_flow_removed *) oh;
1458         ofputil_cls_rule_from_match(&ofr->match, ntohs(ofr->priority),
1459                                     &fr->rule);
1460         fr->cookie = ofr->cookie;
1461         fr->reason = ofr->reason;
1462         fr->duration_sec = ntohl(ofr->duration_sec);
1463         fr->duration_nsec = ntohl(ofr->duration_nsec);
1464         fr->idle_timeout = ntohs(ofr->idle_timeout);
1465         fr->packet_count = ntohll(ofr->packet_count);
1466         fr->byte_count = ntohll(ofr->byte_count);
1467     } else if (code == OFPUTIL_NXT_FLOW_REMOVED) {
1468         struct nx_flow_removed *nfr;
1469         struct ofpbuf b;
1470         int error;
1471
1472         ofpbuf_use_const(&b, oh, ntohs(oh->length));
1473
1474         nfr = ofpbuf_pull(&b, sizeof *nfr);
1475         error = nx_pull_match(&b, ntohs(nfr->match_len), ntohs(nfr->priority),
1476                               &fr->rule, NULL, NULL);
1477         if (error) {
1478             return error;
1479         }
1480         if (b.size) {
1481             return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
1482         }
1483
1484         fr->cookie = nfr->cookie;
1485         fr->reason = nfr->reason;
1486         fr->duration_sec = ntohl(nfr->duration_sec);
1487         fr->duration_nsec = ntohl(nfr->duration_nsec);
1488         fr->idle_timeout = ntohs(nfr->idle_timeout);
1489         fr->packet_count = ntohll(nfr->packet_count);
1490         fr->byte_count = ntohll(nfr->byte_count);
1491     } else {
1492         NOT_REACHED();
1493     }
1494
1495     return 0;
1496 }
1497
1498 /* Converts abstract ofputil_flow_removed 'fr' into an OFPT_FLOW_REMOVED or
1499  * NXT_FLOW_REMOVED message 'oh' according to 'flow_format', and returns the
1500  * message. */
1501 struct ofpbuf *
1502 ofputil_encode_flow_removed(const struct ofputil_flow_removed *fr,
1503                             enum nx_flow_format flow_format)
1504 {
1505     struct ofpbuf *msg;
1506
1507     if (flow_format == NXFF_OPENFLOW10) {
1508         struct ofp_flow_removed *ofr;
1509
1510         ofr = make_openflow_xid(sizeof *ofr, OFPT_FLOW_REMOVED, htonl(0),
1511                                 &msg);
1512         ofputil_cls_rule_to_match(&fr->rule, &ofr->match);
1513         ofr->cookie = fr->cookie;
1514         ofr->priority = htons(fr->rule.priority);
1515         ofr->reason = fr->reason;
1516         ofr->duration_sec = htonl(fr->duration_sec);
1517         ofr->duration_nsec = htonl(fr->duration_nsec);
1518         ofr->idle_timeout = htons(fr->idle_timeout);
1519         ofr->packet_count = htonll(unknown_to_zero(fr->packet_count));
1520         ofr->byte_count = htonll(unknown_to_zero(fr->byte_count));
1521     } else if (flow_format == NXFF_NXM) {
1522         struct nx_flow_removed *nfr;
1523         int match_len;
1524
1525         make_nxmsg_xid(sizeof *nfr, NXT_FLOW_REMOVED, htonl(0), &msg);
1526         match_len = nx_put_match(msg, &fr->rule, 0, 0);
1527
1528         nfr = msg->data;
1529         nfr->cookie = fr->cookie;
1530         nfr->priority = htons(fr->rule.priority);
1531         nfr->reason = fr->reason;
1532         nfr->duration_sec = htonl(fr->duration_sec);
1533         nfr->duration_nsec = htonl(fr->duration_nsec);
1534         nfr->idle_timeout = htons(fr->idle_timeout);
1535         nfr->match_len = htons(match_len);
1536         nfr->packet_count = htonll(fr->packet_count);
1537         nfr->byte_count = htonll(fr->byte_count);
1538     } else {
1539         NOT_REACHED();
1540     }
1541
1542     return msg;
1543 }
1544
1545 /* Converts abstract ofputil_packet_in 'pin' into an OFPT_PACKET_IN message
1546  * and returns the message.
1547  *
1548  * If 'rw_packet' is NULL, the caller takes ownership of the newly allocated
1549  * returned ofpbuf.
1550  *
1551  * If 'rw_packet' is nonnull, then it must contain the same data as
1552  * pin->packet.  'rw_packet' is allowed to be the same ofpbuf as pin->packet.
1553  * It is modified in-place into an OFPT_PACKET_IN message according to 'pin',
1554  * and then ofputil_encode_packet_in() returns 'rw_packet'.  If 'rw_packet' has
1555  * enough headroom to insert a "struct ofp_packet_in", this is more efficient
1556  * than ofputil_encode_packet_in() because it does not copy the packet
1557  * payload. */
1558 struct ofpbuf *
1559 ofputil_encode_packet_in(const struct ofputil_packet_in *pin,
1560                         struct ofpbuf *rw_packet)
1561 {
1562     int total_len = pin->packet->size;
1563     struct ofp_packet_in opi;
1564
1565     if (rw_packet) {
1566         if (pin->send_len < rw_packet->size) {
1567             rw_packet->size = pin->send_len;
1568         }
1569     } else {
1570         rw_packet = ofpbuf_clone_data_with_headroom(
1571             pin->packet->data, MIN(pin->send_len, pin->packet->size),
1572             offsetof(struct ofp_packet_in, data));
1573     }
1574
1575     /* Add OFPT_PACKET_IN. */
1576     memset(&opi, 0, sizeof opi);
1577     opi.header.version = OFP_VERSION;
1578     opi.header.type = OFPT_PACKET_IN;
1579     opi.total_len = htons(total_len);
1580     opi.in_port = htons(pin->in_port);
1581     opi.reason = pin->reason;
1582     opi.buffer_id = htonl(pin->buffer_id);
1583     ofpbuf_push(rw_packet, &opi, offsetof(struct ofp_packet_in, data));
1584     update_openflow_length(rw_packet);
1585
1586     return rw_packet;
1587 }
1588
1589 /* Returns a string representing the message type of 'type'.  The string is the
1590  * enumeration constant for the type, e.g. "OFPT_HELLO".  For statistics
1591  * messages, the constant is followed by "request" or "reply",
1592  * e.g. "OFPST_AGGREGATE reply". */
1593 const char *
1594 ofputil_msg_type_name(const struct ofputil_msg_type *type)
1595 {
1596     return type->name;
1597 }
1598 \f
1599 /* Allocates and stores in '*bufferp' a new ofpbuf with a size of
1600  * 'openflow_len', starting with an OpenFlow header with the given 'type' and
1601  * an arbitrary transaction id.  Allocated bytes beyond the header, if any, are
1602  * zeroed.
1603  *
1604  * The caller is responsible for freeing '*bufferp' when it is no longer
1605  * needed.
1606  *
1607  * The OpenFlow header length is initially set to 'openflow_len'; if the
1608  * message is later extended, the length should be updated with
1609  * update_openflow_length() before sending.
1610  *
1611  * Returns the header. */
1612 void *
1613 make_openflow(size_t openflow_len, uint8_t type, struct ofpbuf **bufferp)
1614 {
1615     *bufferp = ofpbuf_new(openflow_len);
1616     return put_openflow_xid(openflow_len, type, alloc_xid(), *bufferp);
1617 }
1618
1619 /* Similar to make_openflow() but creates a Nicira vendor extension message
1620  * with the specific 'subtype'.  'subtype' should be in host byte order. */
1621 void *
1622 make_nxmsg(size_t openflow_len, uint32_t subtype, struct ofpbuf **bufferp)
1623 {
1624     return make_nxmsg_xid(openflow_len, subtype, alloc_xid(), bufferp);
1625 }
1626
1627 /* Allocates and stores in '*bufferp' a new ofpbuf with a size of
1628  * 'openflow_len', starting with an OpenFlow header with the given 'type' and
1629  * transaction id 'xid'.  Allocated bytes beyond the header, if any, are
1630  * zeroed.
1631  *
1632  * The caller is responsible for freeing '*bufferp' when it is no longer
1633  * needed.
1634  *
1635  * The OpenFlow header length is initially set to 'openflow_len'; if the
1636  * message is later extended, the length should be updated with
1637  * update_openflow_length() before sending.
1638  *
1639  * Returns the header. */
1640 void *
1641 make_openflow_xid(size_t openflow_len, uint8_t type, ovs_be32 xid,
1642                   struct ofpbuf **bufferp)
1643 {
1644     *bufferp = ofpbuf_new(openflow_len);
1645     return put_openflow_xid(openflow_len, type, xid, *bufferp);
1646 }
1647
1648 /* Similar to make_openflow_xid() but creates a Nicira vendor extension message
1649  * with the specific 'subtype'.  'subtype' should be in host byte order. */
1650 void *
1651 make_nxmsg_xid(size_t openflow_len, uint32_t subtype, ovs_be32 xid,
1652                struct ofpbuf **bufferp)
1653 {
1654     *bufferp = ofpbuf_new(openflow_len);
1655     return put_nxmsg_xid(openflow_len, subtype, xid, *bufferp);
1656 }
1657
1658 /* Appends 'openflow_len' bytes to 'buffer', starting with an OpenFlow header
1659  * with the given 'type' and an arbitrary transaction id.  Allocated bytes
1660  * beyond the header, if any, are zeroed.
1661  *
1662  * The OpenFlow header length is initially set to 'openflow_len'; if the
1663  * message is later extended, the length should be updated with
1664  * update_openflow_length() before sending.
1665  *
1666  * Returns the header. */
1667 void *
1668 put_openflow(size_t openflow_len, uint8_t type, struct ofpbuf *buffer)
1669 {
1670     return put_openflow_xid(openflow_len, type, alloc_xid(), buffer);
1671 }
1672
1673 /* Appends 'openflow_len' bytes to 'buffer', starting with an OpenFlow header
1674  * with the given 'type' and an transaction id 'xid'.  Allocated bytes beyond
1675  * the header, if any, are zeroed.
1676  *
1677  * The OpenFlow header length is initially set to 'openflow_len'; if the
1678  * message is later extended, the length should be updated with
1679  * update_openflow_length() before sending.
1680  *
1681  * Returns the header. */
1682 void *
1683 put_openflow_xid(size_t openflow_len, uint8_t type, ovs_be32 xid,
1684                  struct ofpbuf *buffer)
1685 {
1686     struct ofp_header *oh;
1687
1688     assert(openflow_len >= sizeof *oh);
1689     assert(openflow_len <= UINT16_MAX);
1690
1691     oh = ofpbuf_put_uninit(buffer, openflow_len);
1692     oh->version = OFP_VERSION;
1693     oh->type = type;
1694     oh->length = htons(openflow_len);
1695     oh->xid = xid;
1696     memset(oh + 1, 0, openflow_len - sizeof *oh);
1697     return oh;
1698 }
1699
1700 /* Similar to put_openflow() but append a Nicira vendor extension message with
1701  * the specific 'subtype'.  'subtype' should be in host byte order. */
1702 void *
1703 put_nxmsg(size_t openflow_len, uint32_t subtype, struct ofpbuf *buffer)
1704 {
1705     return put_nxmsg_xid(openflow_len, subtype, alloc_xid(), buffer);
1706 }
1707
1708 /* Similar to put_openflow_xid() but append a Nicira vendor extension message
1709  * with the specific 'subtype'.  'subtype' should be in host byte order. */
1710 void *
1711 put_nxmsg_xid(size_t openflow_len, uint32_t subtype, ovs_be32 xid,
1712               struct ofpbuf *buffer)
1713 {
1714     struct nicira_header *nxh;
1715
1716     nxh = put_openflow_xid(openflow_len, OFPT_VENDOR, xid, buffer);
1717     nxh->vendor = htonl(NX_VENDOR_ID);
1718     nxh->subtype = htonl(subtype);
1719     return nxh;
1720 }
1721
1722 /* Updates the 'length' field of the OpenFlow message in 'buffer' to
1723  * 'buffer->size'. */
1724 void
1725 update_openflow_length(struct ofpbuf *buffer)
1726 {
1727     struct ofp_header *oh = ofpbuf_at_assert(buffer, 0, sizeof *oh);
1728     oh->length = htons(buffer->size);
1729 }
1730
1731 static void
1732 put_stats__(ovs_be32 xid, uint8_t ofp_type,
1733             ovs_be16 ofpst_type, ovs_be32 nxst_subtype,
1734             struct ofpbuf *msg)
1735 {
1736     if (ofpst_type == htons(OFPST_VENDOR)) {
1737         struct nicira_stats_msg *nsm;
1738
1739         nsm = put_openflow_xid(sizeof *nsm, ofp_type, xid, msg);
1740         nsm->vsm.osm.type = ofpst_type;
1741         nsm->vsm.vendor = htonl(NX_VENDOR_ID);
1742         nsm->subtype = nxst_subtype;
1743     } else {
1744         struct ofp_stats_msg *osm;
1745
1746         osm = put_openflow_xid(sizeof *osm, ofp_type, xid, msg);
1747         osm->type = ofpst_type;
1748     }
1749 }
1750
1751 /* Creates a statistics request message with total length 'openflow_len'
1752  * (including all headers) and the given 'ofpst_type', and stores the buffer
1753  * containing the new message in '*bufferp'.  If 'ofpst_type' is OFPST_VENDOR
1754  * then 'nxst_subtype' is used as the Nicira vendor extension statistics
1755  * subtype (otherwise 'nxst_subtype' is ignored).
1756  *
1757  * Initializes bytes following the headers to all-bits-zero.
1758  *
1759  * Returns the first byte of the new message. */
1760 void *
1761 ofputil_make_stats_request(size_t openflow_len, uint16_t ofpst_type,
1762                            uint32_t nxst_subtype, struct ofpbuf **bufferp)
1763 {
1764     struct ofpbuf *msg;
1765
1766     msg = *bufferp = ofpbuf_new(openflow_len);
1767     put_stats__(alloc_xid(), OFPT_STATS_REQUEST,
1768                 htons(ofpst_type), htonl(nxst_subtype), msg);
1769     ofpbuf_padto(msg, openflow_len);
1770
1771     return msg->data;
1772 }
1773
1774 static void
1775 put_stats_reply__(const struct ofp_stats_msg *request, struct ofpbuf *msg)
1776 {
1777     assert(request->header.type == OFPT_STATS_REQUEST ||
1778            request->header.type == OFPT_STATS_REPLY);
1779     put_stats__(request->header.xid, OFPT_STATS_REPLY, request->type,
1780                 (request->type != htons(OFPST_VENDOR)
1781                  ? htonl(0)
1782                  : ((const struct nicira_stats_msg *) request)->subtype),
1783                 msg);
1784 }
1785
1786 /* Creates a statistics reply message with total length 'openflow_len'
1787  * (including all headers) and the same type (either a standard OpenFlow
1788  * statistics type or a Nicira extension type and subtype) as 'request', and
1789  * stores the buffer containing the new message in '*bufferp'.
1790  *
1791  * Initializes bytes following the headers to all-bits-zero.
1792  *
1793  * Returns the first byte of the new message. */
1794 void *
1795 ofputil_make_stats_reply(size_t openflow_len,
1796                          const struct ofp_stats_msg *request,
1797                          struct ofpbuf **bufferp)
1798 {
1799     struct ofpbuf *msg;
1800
1801     msg = *bufferp = ofpbuf_new(openflow_len);
1802     put_stats_reply__(request, msg);
1803     ofpbuf_padto(msg, openflow_len);
1804
1805     return msg->data;
1806 }
1807
1808 /* Initializes 'replies' as a list of ofpbufs that will contain a series of
1809  * replies to 'request', which should be an OpenFlow or Nicira extension
1810  * statistics request.  Initially 'replies' will have a single reply message
1811  * that has only a header.  The functions ofputil_reserve_stats_reply() and
1812  * ofputil_append_stats_reply() may be used to add to the reply. */
1813 void
1814 ofputil_start_stats_reply(const struct ofp_stats_msg *request,
1815                           struct list *replies)
1816 {
1817     struct ofpbuf *msg;
1818
1819     msg = ofpbuf_new(1024);
1820     put_stats_reply__(request, msg);
1821
1822     list_init(replies);
1823     list_push_back(replies, &msg->list_node);
1824 }
1825
1826 /* Prepares to append up to 'len' bytes to the series of statistics replies in
1827  * 'replies', which should have been initialized with
1828  * ofputil_start_stats_reply().  Returns an ofpbuf with at least 'len' bytes of
1829  * tailroom.  (The 'len' bytes have not actually be allocated; the caller must
1830  * do so with e.g. ofpbuf_put_uninit().) */
1831 struct ofpbuf *
1832 ofputil_reserve_stats_reply(size_t len, struct list *replies)
1833 {
1834     struct ofpbuf *msg = ofpbuf_from_list(list_back(replies));
1835     struct ofp_stats_msg *osm = msg->data;
1836
1837     if (msg->size + len <= UINT16_MAX) {
1838         ofpbuf_prealloc_tailroom(msg, len);
1839     } else {
1840         osm->flags |= htons(OFPSF_REPLY_MORE);
1841
1842         msg = ofpbuf_new(MAX(1024, sizeof(struct nicira_stats_msg) + len));
1843         put_stats_reply__(osm, msg);
1844         list_push_back(replies, &msg->list_node);
1845     }
1846     return msg;
1847 }
1848
1849 /* Appends 'len' bytes to the series of statistics replies in 'replies', and
1850  * returns the first byte. */
1851 void *
1852 ofputil_append_stats_reply(size_t len, struct list *replies)
1853 {
1854     return ofpbuf_put_uninit(ofputil_reserve_stats_reply(len, replies), len);
1855 }
1856
1857 /* Returns the first byte past the ofp_stats_msg header in 'oh'. */
1858 const void *
1859 ofputil_stats_body(const struct ofp_header *oh)
1860 {
1861     assert(oh->type == OFPT_STATS_REQUEST || oh->type == OFPT_STATS_REPLY);
1862     return (const struct ofp_stats_msg *) oh + 1;
1863 }
1864
1865 /* Returns the number of bytes past the ofp_stats_msg header in 'oh'. */
1866 size_t
1867 ofputil_stats_body_len(const struct ofp_header *oh)
1868 {
1869     assert(oh->type == OFPT_STATS_REQUEST || oh->type == OFPT_STATS_REPLY);
1870     return ntohs(oh->length) - sizeof(struct ofp_stats_msg);
1871 }
1872
1873 /* Returns the first byte past the nicira_stats_msg header in 'oh'. */
1874 const void *
1875 ofputil_nxstats_body(const struct ofp_header *oh)
1876 {
1877     assert(oh->type == OFPT_STATS_REQUEST || oh->type == OFPT_STATS_REPLY);
1878     return ((const struct nicira_stats_msg *) oh) + 1;
1879 }
1880
1881 /* Returns the number of bytes past the nicira_stats_msg header in 'oh'. */
1882 size_t
1883 ofputil_nxstats_body_len(const struct ofp_header *oh)
1884 {
1885     assert(oh->type == OFPT_STATS_REQUEST || oh->type == OFPT_STATS_REPLY);
1886     return ntohs(oh->length) - sizeof(struct nicira_stats_msg);
1887 }
1888
1889 struct ofpbuf *
1890 make_flow_mod(uint16_t command, const struct cls_rule *rule,
1891               size_t actions_len)
1892 {
1893     struct ofp_flow_mod *ofm;
1894     size_t size = sizeof *ofm + actions_len;
1895     struct ofpbuf *out = ofpbuf_new(size);
1896     ofm = ofpbuf_put_zeros(out, sizeof *ofm);
1897     ofm->header.version = OFP_VERSION;
1898     ofm->header.type = OFPT_FLOW_MOD;
1899     ofm->header.length = htons(size);
1900     ofm->cookie = 0;
1901     ofm->priority = htons(MIN(rule->priority, UINT16_MAX));
1902     ofputil_cls_rule_to_match(rule, &ofm->match);
1903     ofm->command = htons(command);
1904     return out;
1905 }
1906
1907 struct ofpbuf *
1908 make_add_flow(const struct cls_rule *rule, uint32_t buffer_id,
1909               uint16_t idle_timeout, size_t actions_len)
1910 {
1911     struct ofpbuf *out = make_flow_mod(OFPFC_ADD, rule, actions_len);
1912     struct ofp_flow_mod *ofm = out->data;
1913     ofm->idle_timeout = htons(idle_timeout);
1914     ofm->hard_timeout = htons(OFP_FLOW_PERMANENT);
1915     ofm->buffer_id = htonl(buffer_id);
1916     return out;
1917 }
1918
1919 struct ofpbuf *
1920 make_del_flow(const struct cls_rule *rule)
1921 {
1922     struct ofpbuf *out = make_flow_mod(OFPFC_DELETE_STRICT, rule, 0);
1923     struct ofp_flow_mod *ofm = out->data;
1924     ofm->out_port = htons(OFPP_NONE);
1925     return out;
1926 }
1927
1928 struct ofpbuf *
1929 make_add_simple_flow(const struct cls_rule *rule,
1930                      uint32_t buffer_id, uint16_t out_port,
1931                      uint16_t idle_timeout)
1932 {
1933     if (out_port != OFPP_NONE) {
1934         struct ofp_action_output *oao;
1935         struct ofpbuf *buffer;
1936
1937         buffer = make_add_flow(rule, buffer_id, idle_timeout, sizeof *oao);
1938         ofputil_put_OFPAT_OUTPUT(buffer)->port = htons(out_port);
1939         return buffer;
1940     } else {
1941         return make_add_flow(rule, buffer_id, idle_timeout, 0);
1942     }
1943 }
1944
1945 struct ofpbuf *
1946 make_packet_in(uint32_t buffer_id, uint16_t in_port, uint8_t reason,
1947                const struct ofpbuf *payload, int max_send_len)
1948 {
1949     struct ofp_packet_in *opi;
1950     struct ofpbuf *buf;
1951     int send_len;
1952
1953     send_len = MIN(max_send_len, payload->size);
1954     buf = ofpbuf_new(sizeof *opi + send_len);
1955     opi = put_openflow_xid(offsetof(struct ofp_packet_in, data),
1956                            OFPT_PACKET_IN, 0, buf);
1957     opi->buffer_id = htonl(buffer_id);
1958     opi->total_len = htons(payload->size);
1959     opi->in_port = htons(in_port);
1960     opi->reason = reason;
1961     ofpbuf_put(buf, payload->data, send_len);
1962     update_openflow_length(buf);
1963
1964     return buf;
1965 }
1966
1967 struct ofpbuf *
1968 make_packet_out(const struct ofpbuf *packet, uint32_t buffer_id,
1969                 uint16_t in_port,
1970                 const struct ofp_action_header *actions, size_t n_actions)
1971 {
1972     size_t actions_len = n_actions * sizeof *actions;
1973     struct ofp_packet_out *opo;
1974     size_t size = sizeof *opo + actions_len + (packet ? packet->size : 0);
1975     struct ofpbuf *out = ofpbuf_new(size);
1976
1977     opo = ofpbuf_put_uninit(out, sizeof *opo);
1978     opo->header.version = OFP_VERSION;
1979     opo->header.type = OFPT_PACKET_OUT;
1980     opo->header.length = htons(size);
1981     opo->header.xid = htonl(0);
1982     opo->buffer_id = htonl(buffer_id);
1983     opo->in_port = htons(in_port);
1984     opo->actions_len = htons(actions_len);
1985     ofpbuf_put(out, actions, actions_len);
1986     if (packet) {
1987         ofpbuf_put(out, packet->data, packet->size);
1988     }
1989     return out;
1990 }
1991
1992 struct ofpbuf *
1993 make_unbuffered_packet_out(const struct ofpbuf *packet,
1994                            uint16_t in_port, uint16_t out_port)
1995 {
1996     struct ofp_action_output action;
1997     action.type = htons(OFPAT_OUTPUT);
1998     action.len = htons(sizeof action);
1999     action.port = htons(out_port);
2000     return make_packet_out(packet, UINT32_MAX, in_port,
2001                            (struct ofp_action_header *) &action, 1);
2002 }
2003
2004 struct ofpbuf *
2005 make_buffered_packet_out(uint32_t buffer_id,
2006                          uint16_t in_port, uint16_t out_port)
2007 {
2008     if (out_port != OFPP_NONE) {
2009         struct ofp_action_output action;
2010         action.type = htons(OFPAT_OUTPUT);
2011         action.len = htons(sizeof action);
2012         action.port = htons(out_port);
2013         return make_packet_out(NULL, buffer_id, in_port,
2014                                (struct ofp_action_header *) &action, 1);
2015     } else {
2016         return make_packet_out(NULL, buffer_id, in_port, NULL, 0);
2017     }
2018 }
2019
2020 /* Creates and returns an OFPT_ECHO_REQUEST message with an empty payload. */
2021 struct ofpbuf *
2022 make_echo_request(void)
2023 {
2024     struct ofp_header *rq;
2025     struct ofpbuf *out = ofpbuf_new(sizeof *rq);
2026     rq = ofpbuf_put_uninit(out, sizeof *rq);
2027     rq->version = OFP_VERSION;
2028     rq->type = OFPT_ECHO_REQUEST;
2029     rq->length = htons(sizeof *rq);
2030     rq->xid = htonl(0);
2031     return out;
2032 }
2033
2034 /* Creates and returns an OFPT_ECHO_REPLY message matching the
2035  * OFPT_ECHO_REQUEST message in 'rq'. */
2036 struct ofpbuf *
2037 make_echo_reply(const struct ofp_header *rq)
2038 {
2039     size_t size = ntohs(rq->length);
2040     struct ofpbuf *out = ofpbuf_new(size);
2041     struct ofp_header *reply = ofpbuf_put(out, rq, size);
2042     reply->type = OFPT_ECHO_REPLY;
2043     return out;
2044 }
2045
2046 const char *
2047 ofputil_frag_handling_to_string(enum ofp_config_flags flags)
2048 {
2049     switch (flags & OFPC_FRAG_MASK) {
2050     case OFPC_FRAG_NORMAL:   return "normal";
2051     case OFPC_FRAG_DROP:     return "drop";
2052     case OFPC_FRAG_REASM:    return "reassemble";
2053     case OFPC_FRAG_NX_MATCH: return "nx-match";
2054     }
2055
2056     NOT_REACHED();
2057 }
2058
2059 bool
2060 ofputil_frag_handling_from_string(const char *s, enum ofp_config_flags *flags)
2061 {
2062     if (!strcasecmp(s, "normal")) {
2063         *flags = OFPC_FRAG_NORMAL;
2064     } else if (!strcasecmp(s, "drop")) {
2065         *flags = OFPC_FRAG_DROP;
2066     } else if (!strcasecmp(s, "reassemble")) {
2067         *flags = OFPC_FRAG_REASM;
2068     } else if (!strcasecmp(s, "nx-match")) {
2069         *flags = OFPC_FRAG_NX_MATCH;
2070     } else {
2071         return false;
2072     }
2073     return true;
2074 }
2075
2076 /* Checks that 'port' is a valid output port for the OFPAT_OUTPUT action, given
2077  * that the switch will never have more than 'max_ports' ports.  Returns 0 if
2078  * 'port' is valid, otherwise an ofp_mkerr() return code. */
2079 int
2080 ofputil_check_output_port(uint16_t port, int max_ports)
2081 {
2082     switch (port) {
2083     case OFPP_IN_PORT:
2084     case OFPP_TABLE:
2085     case OFPP_NORMAL:
2086     case OFPP_FLOOD:
2087     case OFPP_ALL:
2088     case OFPP_CONTROLLER:
2089     case OFPP_LOCAL:
2090         return 0;
2091
2092     default:
2093         if (port < max_ports) {
2094             return 0;
2095         }
2096         return ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_OUT_PORT);
2097     }
2098 }
2099
2100 #define OFPUTIL_NAMED_PORTS                     \
2101         OFPUTIL_NAMED_PORT(IN_PORT)             \
2102         OFPUTIL_NAMED_PORT(TABLE)               \
2103         OFPUTIL_NAMED_PORT(NORMAL)              \
2104         OFPUTIL_NAMED_PORT(FLOOD)               \
2105         OFPUTIL_NAMED_PORT(ALL)                 \
2106         OFPUTIL_NAMED_PORT(CONTROLLER)          \
2107         OFPUTIL_NAMED_PORT(LOCAL)               \
2108         OFPUTIL_NAMED_PORT(NONE)
2109
2110 /* Checks whether 's' is the string representation of an OpenFlow port number,
2111  * either as an integer or a string name (e.g. "LOCAL").  If it is, stores the
2112  * number in '*port' and returns true.  Otherwise, returns false. */
2113 bool
2114 ofputil_port_from_string(const char *name, uint16_t *port)
2115 {
2116     struct pair {
2117         const char *name;
2118         uint16_t value;
2119     };
2120     static const struct pair pairs[] = {
2121 #define OFPUTIL_NAMED_PORT(NAME) {#NAME, OFPP_##NAME},
2122         OFPUTIL_NAMED_PORTS
2123 #undef OFPUTIL_NAMED_PORT
2124     };
2125     static const int n_pairs = ARRAY_SIZE(pairs);
2126     int i;
2127
2128     if (str_to_int(name, 0, &i) && i >= 0 && i < UINT16_MAX) {
2129         *port = i;
2130         return true;
2131     }
2132
2133     for (i = 0; i < n_pairs; i++) {
2134         if (!strcasecmp(name, pairs[i].name)) {
2135             *port = pairs[i].value;
2136             return true;
2137         }
2138     }
2139     return false;
2140 }
2141
2142 /* Appends to 's' a string representation of the OpenFlow port number 'port'.
2143  * Most ports' string representation is just the port number, but for special
2144  * ports, e.g. OFPP_LOCAL, it is the name, e.g. "LOCAL". */
2145 void
2146 ofputil_format_port(uint16_t port, struct ds *s)
2147 {
2148     const char *name;
2149
2150     switch (port) {
2151 #define OFPUTIL_NAMED_PORT(NAME) case OFPP_##NAME: name = #NAME; break;
2152         OFPUTIL_NAMED_PORTS
2153 #undef OFPUTIL_NAMED_PORT
2154
2155     default:
2156         ds_put_format(s, "%"PRIu16, port);
2157         return;
2158     }
2159     ds_put_cstr(s, name);
2160 }
2161
2162 static int
2163 check_resubmit_table(const struct nx_action_resubmit *nar)
2164 {
2165     if (nar->pad[0] || nar->pad[1] || nar->pad[2]) {
2166         return ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_ARGUMENT);
2167     }
2168     return 0;
2169 }
2170
2171 static int
2172 check_output_reg(const struct nx_action_output_reg *naor,
2173                  const struct flow *flow)
2174 {
2175     size_t i;
2176
2177     for (i = 0; i < sizeof naor->zero; i++) {
2178         if (naor->zero[i]) {
2179             return ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_ARGUMENT);
2180         }
2181     }
2182
2183     return nxm_src_check(naor->src, nxm_decode_ofs(naor->ofs_nbits),
2184                          nxm_decode_n_bits(naor->ofs_nbits), flow);
2185 }
2186
2187 int
2188 validate_actions(const union ofp_action *actions, size_t n_actions,
2189                  const struct flow *flow, int max_ports)
2190 {
2191     const union ofp_action *a;
2192     size_t left;
2193
2194     OFPUTIL_ACTION_FOR_EACH (a, left, actions, n_actions) {
2195         uint16_t port;
2196         int error;
2197         int code;
2198
2199         code = ofputil_decode_action(a);
2200         if (code < 0) {
2201             char *msg;
2202
2203             error = -code;
2204             msg = ofputil_error_to_string(error);
2205             VLOG_WARN_RL(&bad_ofmsg_rl,
2206                          "action decoding error at offset %td (%s)",
2207                          (a - actions) * sizeof *a, msg);
2208             free(msg);
2209
2210             return error;
2211         }
2212
2213         error = 0;
2214         switch ((enum ofputil_action_code) code) {
2215         case OFPUTIL_OFPAT_OUTPUT:
2216             error = ofputil_check_output_port(ntohs(a->output.port),
2217                                               max_ports);
2218             break;
2219
2220         case OFPUTIL_OFPAT_SET_VLAN_VID:
2221             if (a->vlan_vid.vlan_vid & ~htons(0xfff)) {
2222                 error = ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_ARGUMENT);
2223             }
2224             break;
2225
2226         case OFPUTIL_OFPAT_SET_VLAN_PCP:
2227             if (a->vlan_pcp.vlan_pcp & ~7) {
2228                 error = ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_ARGUMENT);
2229             }
2230             break;
2231
2232         case OFPUTIL_OFPAT_ENQUEUE:
2233             port = ntohs(((const struct ofp_action_enqueue *) a)->port);
2234             if (port >= max_ports && port != OFPP_IN_PORT
2235                 && port != OFPP_LOCAL) {
2236                 error = ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_OUT_PORT);
2237             }
2238             break;
2239
2240         case OFPUTIL_NXAST_REG_MOVE:
2241             error = nxm_check_reg_move((const struct nx_action_reg_move *) a,
2242                                        flow);
2243             break;
2244
2245         case OFPUTIL_NXAST_REG_LOAD:
2246             error = nxm_check_reg_load((const struct nx_action_reg_load *) a,
2247                                        flow);
2248             break;
2249
2250         case OFPUTIL_NXAST_MULTIPATH:
2251             error = multipath_check((const struct nx_action_multipath *) a,
2252                                     flow);
2253             break;
2254
2255         case OFPUTIL_NXAST_AUTOPATH:
2256             error = autopath_check((const struct nx_action_autopath *) a,
2257                                    flow);
2258             break;
2259
2260         case OFPUTIL_NXAST_BUNDLE:
2261         case OFPUTIL_NXAST_BUNDLE_LOAD:
2262             error = bundle_check((const struct nx_action_bundle *) a,
2263                                  max_ports, flow);
2264             break;
2265
2266         case OFPUTIL_NXAST_OUTPUT_REG:
2267             error = check_output_reg((const struct nx_action_output_reg *) a,
2268                                      flow);
2269             break;
2270
2271         case OFPUTIL_NXAST_RESUBMIT_TABLE:
2272             error = check_resubmit_table(
2273                 (const struct nx_action_resubmit *) a);
2274             break;
2275
2276         case OFPUTIL_NXAST_LEARN:
2277             error = learn_check((const struct nx_action_learn *) a, flow);
2278             break;
2279
2280         case OFPUTIL_OFPAT_STRIP_VLAN:
2281         case OFPUTIL_OFPAT_SET_NW_SRC:
2282         case OFPUTIL_OFPAT_SET_NW_DST:
2283         case OFPUTIL_OFPAT_SET_NW_TOS:
2284         case OFPUTIL_OFPAT_SET_TP_SRC:
2285         case OFPUTIL_OFPAT_SET_TP_DST:
2286         case OFPUTIL_OFPAT_SET_DL_SRC:
2287         case OFPUTIL_OFPAT_SET_DL_DST:
2288         case OFPUTIL_NXAST_RESUBMIT:
2289         case OFPUTIL_NXAST_SET_TUNNEL:
2290         case OFPUTIL_NXAST_SET_QUEUE:
2291         case OFPUTIL_NXAST_POP_QUEUE:
2292         case OFPUTIL_NXAST_NOTE:
2293         case OFPUTIL_NXAST_SET_TUNNEL64:
2294         case OFPUTIL_NXAST_EXIT:
2295             break;
2296         }
2297
2298         if (error) {
2299             char *msg = ofputil_error_to_string(error);
2300             VLOG_WARN_RL(&bad_ofmsg_rl, "bad action at offset %td (%s)",
2301                          (a - actions) * sizeof *a, msg);
2302             free(msg);
2303             return error;
2304         }
2305     }
2306     if (left) {
2307         VLOG_WARN_RL(&bad_ofmsg_rl, "bad action format at offset %zu",
2308                      (n_actions - left) * sizeof *a);
2309         return ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_LEN);
2310     }
2311     return 0;
2312 }
2313
2314 struct ofputil_action {
2315     int code;
2316     unsigned int min_len;
2317     unsigned int max_len;
2318 };
2319
2320 static const struct ofputil_action action_bad_type
2321     = { -OFP_MKERR(OFPET_BAD_ACTION, OFPBAC_BAD_TYPE),   0, UINT_MAX };
2322 static const struct ofputil_action action_bad_len
2323     = { -OFP_MKERR(OFPET_BAD_ACTION, OFPBAC_BAD_LEN),    0, UINT_MAX };
2324 static const struct ofputil_action action_bad_vendor
2325     = { -OFP_MKERR(OFPET_BAD_ACTION, OFPBAC_BAD_VENDOR), 0, UINT_MAX };
2326
2327 static const struct ofputil_action *
2328 ofputil_decode_ofpat_action(const union ofp_action *a)
2329 {
2330     enum ofp_action_type type = ntohs(a->type);
2331
2332     switch (type) {
2333 #define OFPAT_ACTION(ENUM, STRUCT, NAME)                    \
2334         case ENUM: {                                        \
2335             static const struct ofputil_action action = {   \
2336                 OFPUTIL_##ENUM,                             \
2337                 sizeof(struct STRUCT),                      \
2338                 sizeof(struct STRUCT)                       \
2339             };                                              \
2340             return &action;                                 \
2341         }
2342 #include "ofp-util.def"
2343
2344     case OFPAT_VENDOR:
2345     default:
2346         return &action_bad_type;
2347     }
2348 }
2349
2350 static const struct ofputil_action *
2351 ofputil_decode_nxast_action(const union ofp_action *a)
2352 {
2353     const struct nx_action_header *nah = (const struct nx_action_header *) a;
2354     enum nx_action_subtype subtype = ntohs(nah->subtype);
2355
2356     switch (subtype) {
2357 #define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME)            \
2358         case ENUM: {                                            \
2359             static const struct ofputil_action action = {       \
2360                 OFPUTIL_##ENUM,                                 \
2361                 sizeof(struct STRUCT),                          \
2362                 EXTENSIBLE ? UINT_MAX : sizeof(struct STRUCT)   \
2363             };                                                  \
2364             return &action;                                     \
2365         }
2366 #include "ofp-util.def"
2367
2368     case NXAST_SNAT__OBSOLETE:
2369     case NXAST_DROP_SPOOFED_ARP__OBSOLETE:
2370     default:
2371         return &action_bad_type;
2372     }
2373 }
2374
2375 /* Parses 'a' to determine its type.  Returns a nonnegative OFPUTIL_OFPAT_* or
2376  * OFPUTIL_NXAST_* constant if successful, otherwise a negative OpenFlow error
2377  * code (as returned by ofp_mkerr()).
2378  *
2379  * The caller must have already verified that 'a''s length is correct (that is,
2380  * a->header.len is nonzero and a multiple of sizeof(union ofp_action) and no
2381  * longer than the amount of space allocated to 'a').
2382  *
2383  * This function verifies that 'a''s length is correct for the type of action
2384  * that it represents. */
2385 int
2386 ofputil_decode_action(const union ofp_action *a)
2387 {
2388     const struct ofputil_action *action;
2389     uint16_t len = ntohs(a->header.len);
2390
2391     if (a->type != htons(OFPAT_VENDOR)) {
2392         action = ofputil_decode_ofpat_action(a);
2393     } else {
2394         switch (ntohl(a->vendor.vendor)) {
2395         case NX_VENDOR_ID:
2396             if (len < sizeof(struct nx_action_header)) {
2397                 return -ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_LEN);
2398             }
2399             action = ofputil_decode_nxast_action(a);
2400             break;
2401         default:
2402             action = &action_bad_vendor;
2403             break;
2404         }
2405     }
2406
2407     return (len >= action->min_len && len <= action->max_len
2408             ? action->code
2409             : -ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_LEN));
2410 }
2411
2412 /* Parses 'a' and returns its type as an OFPUTIL_OFPAT_* or OFPUTIL_NXAST_*
2413  * constant.  The caller must have already validated that 'a' is a valid action
2414  * understood by Open vSwitch (e.g. by a previous successful call to
2415  * ofputil_decode_action()). */
2416 enum ofputil_action_code
2417 ofputil_decode_action_unsafe(const union ofp_action *a)
2418 {
2419     const struct ofputil_action *action;
2420
2421     if (a->type != htons(OFPAT_VENDOR)) {
2422         action = ofputil_decode_ofpat_action(a);
2423     } else {
2424         action = ofputil_decode_nxast_action(a);
2425     }
2426
2427     return action->code;
2428 }
2429
2430 /* Returns the 'enum ofputil_action_code' corresponding to 'name' (e.g. if
2431  * 'name' is "output" then the return value is OFPUTIL_OFPAT_OUTPUT), or -1 if
2432  * 'name' is not the name of any action.
2433  *
2434  * ofp-util.def lists the mapping from names to action. */
2435 int
2436 ofputil_action_code_from_name(const char *name)
2437 {
2438     static const char *names[OFPUTIL_N_ACTIONS] = {
2439 #define OFPAT_ACTION(ENUM, STRUCT, NAME)             NAME,
2440 #define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) NAME,
2441 #include "ofp-util.def"
2442     };
2443
2444     const char **p;
2445
2446     for (p = names; p < &names[ARRAY_SIZE(names)]; p++) {
2447         if (*p && !strcasecmp(name, *p)) {
2448             return p - names;
2449         }
2450     }
2451     return -1;
2452 }
2453
2454 /* Appends an action of the type specified by 'code' to 'buf' and returns the
2455  * action.  Initializes the parts of 'action' that identify it as having type
2456  * <ENUM> and length 'sizeof *action' and zeros the rest.  For actions that
2457  * have variable length, the length used and cleared is that of struct
2458  * <STRUCT>.  */
2459 void *
2460 ofputil_put_action(enum ofputil_action_code code, struct ofpbuf *buf)
2461 {
2462     switch (code) {
2463 #define OFPAT_ACTION(ENUM, STRUCT, NAME)                    \
2464     case OFPUTIL_##ENUM: return ofputil_put_##ENUM(buf);
2465 #define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME)        \
2466     case OFPUTIL_##ENUM: return ofputil_put_##ENUM(buf);
2467 #include "ofp-util.def"
2468     }
2469     NOT_REACHED();
2470 }
2471
2472 #define OFPAT_ACTION(ENUM, STRUCT, NAME)                        \
2473     void                                                        \
2474     ofputil_init_##ENUM(struct STRUCT *s)                       \
2475     {                                                           \
2476         memset(s, 0, sizeof *s);                                \
2477         s->type = htons(ENUM);                                  \
2478         s->len = htons(sizeof *s);                              \
2479     }                                                           \
2480                                                                 \
2481     struct STRUCT *                                             \
2482     ofputil_put_##ENUM(struct ofpbuf *buf)                      \
2483     {                                                           \
2484         struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s);   \
2485         ofputil_init_##ENUM(s);                                 \
2486         return s;                                               \
2487     }
2488 #define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME)            \
2489     void                                                        \
2490     ofputil_init_##ENUM(struct STRUCT *s)                       \
2491     {                                                           \
2492         memset(s, 0, sizeof *s);                                \
2493         s->type = htons(OFPAT_VENDOR);                          \
2494         s->len = htons(sizeof *s);                              \
2495         s->vendor = htonl(NX_VENDOR_ID);                        \
2496         s->subtype = htons(ENUM);                               \
2497     }                                                           \
2498                                                                 \
2499     struct STRUCT *                                             \
2500     ofputil_put_##ENUM(struct ofpbuf *buf)                      \
2501     {                                                           \
2502         struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s);   \
2503         ofputil_init_##ENUM(s);                                 \
2504         return s;                                               \
2505     }
2506 #include "ofp-util.def"
2507
2508 /* Returns true if 'action' outputs to 'port', false otherwise. */
2509 bool
2510 action_outputs_to_port(const union ofp_action *action, ovs_be16 port)
2511 {
2512     switch (ntohs(action->type)) {
2513     case OFPAT_OUTPUT:
2514         return action->output.port == port;
2515     case OFPAT_ENQUEUE:
2516         return ((const struct ofp_action_enqueue *) action)->port == port;
2517     default:
2518         return false;
2519     }
2520 }
2521
2522 /* "Normalizes" the wildcards in 'rule'.  That means:
2523  *
2524  *    1. If the type of level N is known, then only the valid fields for that
2525  *       level may be specified.  For example, ARP does not have a TOS field,
2526  *       so nw_tos must be wildcarded if 'rule' specifies an ARP flow.
2527  *       Similarly, IPv4 does not have any IPv6 addresses, so ipv6_src and
2528  *       ipv6_dst (and other fields) must be wildcarded if 'rule' specifies an
2529  *       IPv4 flow.
2530  *
2531  *    2. If the type of level N is not known (or not understood by Open
2532  *       vSwitch), then no fields at all for that level may be specified.  For
2533  *       example, Open vSwitch does not understand SCTP, an L4 protocol, so the
2534  *       L4 fields tp_src and tp_dst must be wildcarded if 'rule' specifies an
2535  *       SCTP flow.
2536  *
2537  * 'flow_format' specifies the format of the flow as received or as intended to
2538  * be sent.  This is important for IPv6 and ARP, for which NXM supports more
2539  * detailed matching. */
2540 void
2541 ofputil_normalize_rule(struct cls_rule *rule, enum nx_flow_format flow_format)
2542 {
2543     enum {
2544         MAY_NW_ADDR     = 1 << 0, /* nw_src, nw_dst */
2545         MAY_TP_ADDR     = 1 << 1, /* tp_src, tp_dst */
2546         MAY_NW_PROTO    = 1 << 2, /* nw_proto */
2547         MAY_IPVx        = 1 << 3, /* tos, frag, ttl */
2548         MAY_ARP_SHA     = 1 << 4, /* arp_sha */
2549         MAY_ARP_THA     = 1 << 5, /* arp_tha */
2550         MAY_IPV6        = 1 << 6, /* ipv6_src, ipv6_dst, ipv6_label */
2551         MAY_ND_TARGET   = 1 << 7  /* nd_target */
2552     } may_match;
2553
2554     struct flow_wildcards wc;
2555
2556     /* Figure out what fields may be matched. */
2557     if (rule->flow.dl_type == htons(ETH_TYPE_IP)) {
2558         may_match = MAY_NW_PROTO | MAY_IPVx | MAY_NW_ADDR;
2559         if (rule->flow.nw_proto == IPPROTO_TCP ||
2560             rule->flow.nw_proto == IPPROTO_UDP ||
2561             rule->flow.nw_proto == IPPROTO_ICMP) {
2562             may_match |= MAY_TP_ADDR;
2563         }
2564     } else if (rule->flow.dl_type == htons(ETH_TYPE_IPV6)
2565                && flow_format == NXFF_NXM) {
2566         may_match = MAY_NW_PROTO | MAY_IPVx | MAY_IPV6;
2567         if (rule->flow.nw_proto == IPPROTO_TCP ||
2568             rule->flow.nw_proto == IPPROTO_UDP) {
2569             may_match |= MAY_TP_ADDR;
2570         } else if (rule->flow.nw_proto == IPPROTO_ICMPV6) {
2571             may_match |= MAY_TP_ADDR;
2572             if (rule->flow.tp_src == htons(ND_NEIGHBOR_SOLICIT)) {
2573                 may_match |= MAY_ND_TARGET | MAY_ARP_SHA;
2574             } else if (rule->flow.tp_src == htons(ND_NEIGHBOR_ADVERT)) {
2575                 may_match |= MAY_ND_TARGET | MAY_ARP_THA;
2576             }
2577         }
2578     } else if (rule->flow.dl_type == htons(ETH_TYPE_ARP)) {
2579         may_match = MAY_NW_PROTO | MAY_NW_ADDR;
2580         if (flow_format == NXFF_NXM) {
2581             may_match |= MAY_ARP_SHA | MAY_ARP_THA;
2582         }
2583     } else {
2584         may_match = 0;
2585     }
2586
2587     /* Clear the fields that may not be matched. */
2588     wc = rule->wc;
2589     if (!(may_match & MAY_NW_ADDR)) {
2590         wc.nw_src_mask = wc.nw_dst_mask = htonl(0);
2591     }
2592     if (!(may_match & MAY_TP_ADDR)) {
2593         wc.wildcards |= FWW_TP_SRC | FWW_TP_DST;
2594     }
2595     if (!(may_match & MAY_NW_PROTO)) {
2596         wc.wildcards |= FWW_NW_PROTO;
2597     }
2598     if (!(may_match & MAY_IPVx)) {
2599         wc.wildcards |= FWW_NW_DSCP;
2600         wc.wildcards |= FWW_NW_ECN;
2601         wc.wildcards |= FWW_NW_TTL;
2602     }
2603     if (!(may_match & MAY_ARP_SHA)) {
2604         wc.wildcards |= FWW_ARP_SHA;
2605     }
2606     if (!(may_match & MAY_ARP_THA)) {
2607         wc.wildcards |= FWW_ARP_THA;
2608     }
2609     if (!(may_match & MAY_IPV6)) {
2610         wc.ipv6_src_mask = wc.ipv6_dst_mask = in6addr_any;
2611         wc.wildcards |= FWW_IPV6_LABEL;
2612     }
2613     if (!(may_match & MAY_ND_TARGET)) {
2614         wc.wildcards |= FWW_ND_TARGET;
2615     }
2616
2617     /* Log any changes. */
2618     if (!flow_wildcards_equal(&wc, &rule->wc)) {
2619         bool log = !VLOG_DROP_INFO(&bad_ofmsg_rl);
2620         char *pre = log ? cls_rule_to_string(rule) : NULL;
2621
2622         rule->wc = wc;
2623         cls_rule_zero_wildcarded_fields(rule);
2624
2625         if (log) {
2626             char *post = cls_rule_to_string(rule);
2627             VLOG_INFO("normalization changed ofp_match, details:");
2628             VLOG_INFO(" pre: %s", pre);
2629             VLOG_INFO("post: %s", post);
2630             free(pre);
2631             free(post);
2632         }
2633     }
2634 }
2635
2636 static uint32_t
2637 vendor_code_to_id(uint8_t code)
2638 {
2639     switch (code) {
2640 #define OFPUTIL_VENDOR(NAME, VENDOR_ID) case NAME: return VENDOR_ID;
2641         OFPUTIL_VENDORS
2642 #undef OFPUTIL_VENDOR
2643     default:
2644         return UINT32_MAX;
2645     }
2646 }
2647
2648 static int
2649 vendor_id_to_code(uint32_t id)
2650 {
2651     switch (id) {
2652 #define OFPUTIL_VENDOR(NAME, VENDOR_ID) case VENDOR_ID: return NAME;
2653         OFPUTIL_VENDORS
2654 #undef OFPUTIL_VENDOR
2655     default:
2656         return -1;
2657     }
2658 }
2659
2660 /* Creates and returns an OpenFlow message of type OFPT_ERROR with the error
2661  * information taken from 'error', whose encoding must be as described in the
2662  * large comment in ofp-util.h.  If 'oh' is nonnull, then the error will use
2663  * oh->xid as its transaction ID, and it will include up to the first 64 bytes
2664  * of 'oh'.
2665  *
2666  * Returns NULL if 'error' is not an OpenFlow error code. */
2667 struct ofpbuf *
2668 ofputil_encode_error_msg(int error, const struct ofp_header *oh)
2669 {
2670     static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2671
2672     struct ofpbuf *buf;
2673     const void *data;
2674     size_t len;
2675     uint8_t vendor;
2676     uint16_t type;
2677     uint16_t code;
2678     ovs_be32 xid;
2679
2680     if (!is_ofp_error(error)) {
2681         /* We format 'error' with strerror() here since it seems likely to be
2682          * a system errno value. */
2683         VLOG_WARN_RL(&rl, "invalid OpenFlow error code %d (%s)",
2684                      error, strerror(error));
2685         return NULL;
2686     }
2687
2688     if (oh) {
2689         xid = oh->xid;
2690         data = oh;
2691         len = ntohs(oh->length);
2692         if (len > 64) {
2693             len = 64;
2694         }
2695     } else {
2696         xid = 0;
2697         data = NULL;
2698         len = 0;
2699     }
2700
2701     vendor = get_ofp_err_vendor(error);
2702     type = get_ofp_err_type(error);
2703     code = get_ofp_err_code(error);
2704     if (vendor == OFPUTIL_VENDOR_OPENFLOW) {
2705         struct ofp_error_msg *oem;
2706
2707         oem = make_openflow_xid(len + sizeof *oem, OFPT_ERROR, xid, &buf);
2708         oem->type = htons(type);
2709         oem->code = htons(code);
2710     } else {
2711         struct ofp_error_msg *oem;
2712         struct nx_vendor_error *nve;
2713         uint32_t vendor_id;
2714
2715         vendor_id = vendor_code_to_id(vendor);
2716         if (vendor_id == UINT32_MAX) {
2717             VLOG_WARN_RL(&rl, "error %x contains invalid vendor code %d",
2718                          error, vendor);
2719             return NULL;
2720         }
2721
2722         oem = make_openflow_xid(len + sizeof *oem + sizeof *nve,
2723                                 OFPT_ERROR, xid, &buf);
2724         oem->type = htons(NXET_VENDOR);
2725         oem->code = htons(NXVC_VENDOR_ERROR);
2726
2727         nve = (struct nx_vendor_error *)oem->data;
2728         nve->vendor = htonl(vendor_id);
2729         nve->type = htons(type);
2730         nve->code = htons(code);
2731     }
2732
2733     if (len) {
2734         buf->size -= len;
2735         ofpbuf_put(buf, data, len);
2736     }
2737
2738     return buf;
2739 }
2740
2741 /* Decodes 'oh', which should be an OpenFlow OFPT_ERROR message, and returns an
2742  * Open vSwitch internal error code in the format described in the large
2743  * comment in ofp-util.h.
2744  *
2745  * If 'payload_ofs' is nonnull, on success '*payload_ofs' is set to the offset
2746  * to the payload starting from 'oh' and on failure it is set to 0. */
2747 int
2748 ofputil_decode_error_msg(const struct ofp_header *oh, size_t *payload_ofs)
2749 {
2750     static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2751
2752     const struct ofp_error_msg *oem;
2753     uint16_t type, code;
2754     struct ofpbuf b;
2755     int vendor;
2756
2757     if (payload_ofs) {
2758         *payload_ofs = 0;
2759     }
2760     if (oh->type != OFPT_ERROR) {
2761         return EPROTO;
2762     }
2763
2764     ofpbuf_use_const(&b, oh, ntohs(oh->length));
2765     oem = ofpbuf_try_pull(&b, sizeof *oem);
2766     if (!oem) {
2767         return EPROTO;
2768     }
2769
2770     type = ntohs(oem->type);
2771     code = ntohs(oem->code);
2772     if (type == NXET_VENDOR && code == NXVC_VENDOR_ERROR) {
2773         const struct nx_vendor_error *nve = ofpbuf_try_pull(&b, sizeof *nve);
2774         if (!nve) {
2775             return EPROTO;
2776         }
2777
2778         vendor = vendor_id_to_code(ntohl(nve->vendor));
2779         if (vendor < 0) {
2780             VLOG_WARN_RL(&rl, "error contains unknown vendor ID %#"PRIx32,
2781                          ntohl(nve->vendor));
2782             return EPROTO;
2783         }
2784         type = ntohs(nve->type);
2785         code = ntohs(nve->code);
2786     } else {
2787         vendor = OFPUTIL_VENDOR_OPENFLOW;
2788     }
2789
2790     if (type >= 1024) {
2791         VLOG_WARN_RL(&rl, "error contains type %"PRIu16" greater than "
2792                      "supported maximum value 1023", type);
2793         return EPROTO;
2794     }
2795
2796     if (payload_ofs) {
2797         *payload_ofs = (uint8_t *) b.data - (uint8_t *) oh;
2798     }
2799     return ofp_mkerr_vendor(vendor, type, code);
2800 }
2801
2802 void
2803 ofputil_format_error(struct ds *s, int error)
2804 {
2805     if (is_errno(error)) {
2806         ds_put_cstr(s, strerror(error));
2807     } else {
2808         uint16_t type = get_ofp_err_type(error);
2809         uint16_t code = get_ofp_err_code(error);
2810         const char *type_s = ofp_error_type_to_string(type);
2811         const char *code_s = ofp_error_code_to_string(type, code);
2812
2813         ds_put_format(s, "type ");
2814         if (type_s) {
2815             ds_put_cstr(s, type_s);
2816         } else {
2817             ds_put_format(s, "%"PRIu16, type);
2818         }
2819
2820         ds_put_cstr(s, ", code ");
2821         if (code_s) {
2822             ds_put_cstr(s, code_s);
2823         } else {
2824             ds_put_format(s, "%"PRIu16, code);
2825         }
2826     }
2827 }
2828
2829 char *
2830 ofputil_error_to_string(int error)
2831 {
2832     struct ds s = DS_EMPTY_INITIALIZER;
2833     ofputil_format_error(&s, error);
2834     return ds_steal_cstr(&s);
2835 }
2836
2837 /* Attempts to pull 'actions_len' bytes from the front of 'b'.  Returns 0 if
2838  * successful, otherwise an OpenFlow error.
2839  *
2840  * If successful, the first action is stored in '*actionsp' and the number of
2841  * "union ofp_action" size elements into '*n_actionsp'.  Otherwise NULL and 0
2842  * are stored, respectively.
2843  *
2844  * This function does not check that the actions are valid (the caller should
2845  * do so, with validate_actions()).  The caller is also responsible for making
2846  * sure that 'b->data' is initially aligned appropriately for "union
2847  * ofp_action". */
2848 int
2849 ofputil_pull_actions(struct ofpbuf *b, unsigned int actions_len,
2850                      union ofp_action **actionsp, size_t *n_actionsp)
2851 {
2852     if (actions_len % OFP_ACTION_ALIGN != 0) {
2853         VLOG_WARN_RL(&bad_ofmsg_rl, "OpenFlow message actions length %u "
2854                      "is not a multiple of %d", actions_len, OFP_ACTION_ALIGN);
2855         goto error;
2856     }
2857
2858     *actionsp = ofpbuf_try_pull(b, actions_len);
2859     if (*actionsp == NULL) {
2860         VLOG_WARN_RL(&bad_ofmsg_rl, "OpenFlow message actions length %u "
2861                      "exceeds remaining message length (%zu)",
2862                      actions_len, b->size);
2863         goto error;
2864     }
2865
2866     *n_actionsp = actions_len / OFP_ACTION_ALIGN;
2867     return 0;
2868
2869 error:
2870     *actionsp = NULL;
2871     *n_actionsp = 0;
2872     return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
2873 }
2874
2875 bool
2876 ofputil_actions_equal(const union ofp_action *a, size_t n_a,
2877                       const union ofp_action *b, size_t n_b)
2878 {
2879     return n_a == n_b && (!n_a || !memcmp(a, b, n_a * sizeof *a));
2880 }
2881
2882 union ofp_action *
2883 ofputil_actions_clone(const union ofp_action *actions, size_t n)
2884 {
2885     return n ? xmemdup(actions, n * sizeof *actions) : NULL;
2886 }
2887
2888 /* Parses a key or a key-value pair from '*stringp'.
2889  *
2890  * On success: Stores the key into '*keyp'.  Stores the value, if present, into
2891  * '*valuep', otherwise an empty string.  Advances '*stringp' past the end of
2892  * the key-value pair, preparing it for another call.  '*keyp' and '*valuep'
2893  * are substrings of '*stringp' created by replacing some of its bytes by null
2894  * terminators.  Returns true.
2895  *
2896  * If '*stringp' is just white space or commas, sets '*keyp' and '*valuep' to
2897  * NULL and returns false. */
2898 bool
2899 ofputil_parse_key_value(char **stringp, char **keyp, char **valuep)
2900 {
2901     char *pos, *key, *value;
2902     size_t key_len;
2903
2904     pos = *stringp;
2905     pos += strspn(pos, ", \t\r\n");
2906     if (*pos == '\0') {
2907         *keyp = *valuep = NULL;
2908         return false;
2909     }
2910
2911     key = pos;
2912     key_len = strcspn(pos, ":=(, \t\r\n");
2913     if (key[key_len] == ':' || key[key_len] == '=') {
2914         /* The value can be separated by a colon. */
2915         size_t value_len;
2916
2917         value = key + key_len + 1;
2918         value_len = strcspn(value, ", \t\r\n");
2919         pos = value + value_len + (value[value_len] != '\0');
2920         value[value_len] = '\0';
2921     } else if (key[key_len] == '(') {
2922         /* The value can be surrounded by balanced parentheses.  The outermost
2923          * set of parentheses is removed. */
2924         int level = 1;
2925         size_t value_len;
2926
2927         value = key + key_len + 1;
2928         for (value_len = 0; level > 0; value_len++) {
2929             switch (value[value_len]) {
2930             case '\0':
2931                 ovs_fatal(0, "unbalanced parentheses in argument to %s", key);
2932
2933             case '(':
2934                 level++;
2935                 break;
2936
2937             case ')':
2938                 level--;
2939                 break;
2940             }
2941         }
2942         value[value_len - 1] = '\0';
2943         pos = value + value_len;
2944     } else {
2945         /* There might be no value at all. */
2946         value = key + key_len;  /* Will become the empty string below. */
2947         pos = key + key_len + (key[key_len] != '\0');
2948     }
2949     key[key_len] = '\0';
2950
2951     *stringp = pos;
2952     *keyp = key;
2953     *valuep = value;
2954     return true;
2955 }