ofp-util: Remove ofputil_get_phy_port_size().
[cascardo/ovs.git] / lib / ofp-util.c
1 /*
2  * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014 Nicira, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <config.h>
18 #include "ofp-print.h"
19 #include <ctype.h>
20 #include <errno.h>
21 #include <inttypes.h>
22 #include <sys/types.h>
23 #include <netinet/in.h>
24 #include <netinet/icmp6.h>
25 #include <stdlib.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 "meta-flow.h"
32 #include "multipath.h"
33 #include "netdev.h"
34 #include "nx-match.h"
35 #include "ofp-actions.h"
36 #include "ofp-errors.h"
37 #include "ofp-msgs.h"
38 #include "ofp-util.h"
39 #include "ofpbuf.h"
40 #include "packets.h"
41 #include "random.h"
42 #include "unaligned.h"
43 #include "type-props.h"
44 #include "vlog.h"
45 #include "bitmap.h"
46
47 VLOG_DEFINE_THIS_MODULE(ofp_util);
48
49 /* Rate limit for OpenFlow message parse errors.  These always indicate a bug
50  * in the peer and so there's not much point in showing a lot of them. */
51 static struct vlog_rate_limit bad_ofmsg_rl = VLOG_RATE_LIMIT_INIT(1, 5);
52
53 struct ofp_prop_header {
54     ovs_be16 type;
55     ovs_be16 len;
56 };
57
58 /* Pulls a property, beginning with struct ofp_prop_header, from the beginning
59  * of 'msg'.  Stores the type of the property in '*typep' and, if 'property' is
60  * nonnull, the entire property, including the header, in '*property'.  Returns
61  * 0 if successful, otherwise an error code. */
62 static enum ofperr
63 ofputil_pull_property(struct ofpbuf *msg, struct ofpbuf *property,
64                       uint16_t *typep)
65 {
66     struct ofp_prop_header *oph;
67     unsigned int len;
68
69     if (ofpbuf_size(msg) < sizeof *oph) {
70         return OFPERR_OFPBPC_BAD_LEN;
71     }
72
73     oph = ofpbuf_data(msg);
74     len = ntohs(oph->len);
75     if (len < sizeof *oph || ROUND_UP(len, 8) > ofpbuf_size(msg)) {
76         return OFPERR_OFPBPC_BAD_LEN;
77     }
78
79     *typep = ntohs(oph->type);
80     if (property) {
81         ofpbuf_use_const(property, ofpbuf_data(msg), len);
82     }
83     ofpbuf_pull(msg, ROUND_UP(len, 8));
84     return 0;
85 }
86
87 static void PRINTF_FORMAT(2, 3)
88 log_property(bool loose, const char *message, ...)
89 {
90     enum vlog_level level = loose ? VLL_DBG : VLL_WARN;
91     if (!vlog_should_drop(THIS_MODULE, level, &bad_ofmsg_rl)) {
92         va_list args;
93
94         va_start(args, message);
95         vlog_valist(THIS_MODULE, level, message, args);
96         va_end(args);
97     }
98 }
99
100 /* Given the wildcard bit count in the least-significant 6 of 'wcbits', returns
101  * an IP netmask with a 1 in each bit that must match and a 0 in each bit that
102  * is wildcarded.
103  *
104  * The bits in 'wcbits' are in the format used in enum ofp_flow_wildcards: 0
105  * is exact match, 1 ignores the LSB, 2 ignores the 2 least-significant bits,
106  * ..., 32 and higher wildcard the entire field.  This is the *opposite* of the
107  * usual convention where e.g. /24 indicates that 8 bits (not 24 bits) are
108  * wildcarded. */
109 ovs_be32
110 ofputil_wcbits_to_netmask(int wcbits)
111 {
112     wcbits &= 0x3f;
113     return wcbits < 32 ? htonl(~((1u << wcbits) - 1)) : 0;
114 }
115
116 /* Given the IP netmask 'netmask', returns the number of bits of the IP address
117  * that it wildcards, that is, the number of 0-bits in 'netmask', a number
118  * between 0 and 32 inclusive.
119  *
120  * If 'netmask' is not a CIDR netmask (see ip_is_cidr()), the return value will
121  * still be in the valid range but isn't otherwise meaningful. */
122 int
123 ofputil_netmask_to_wcbits(ovs_be32 netmask)
124 {
125     return 32 - ip_count_cidr_bits(netmask);
126 }
127
128 /* Converts the OpenFlow 1.0 wildcards in 'ofpfw' (OFPFW10_*) into a
129  * flow_wildcards in 'wc' for use in struct match.  It is the caller's
130  * responsibility to handle the special case where the flow match's dl_vlan is
131  * set to OFP_VLAN_NONE. */
132 void
133 ofputil_wildcard_from_ofpfw10(uint32_t ofpfw, struct flow_wildcards *wc)
134 {
135     BUILD_ASSERT_DECL(FLOW_WC_SEQ == 26);
136
137     /* Initialize most of wc. */
138     flow_wildcards_init_catchall(wc);
139
140     if (!(ofpfw & OFPFW10_IN_PORT)) {
141         wc->masks.in_port.ofp_port = u16_to_ofp(UINT16_MAX);
142     }
143
144     if (!(ofpfw & OFPFW10_NW_TOS)) {
145         wc->masks.nw_tos |= IP_DSCP_MASK;
146     }
147
148     if (!(ofpfw & OFPFW10_NW_PROTO)) {
149         wc->masks.nw_proto = UINT8_MAX;
150     }
151     wc->masks.nw_src = ofputil_wcbits_to_netmask(ofpfw
152                                                  >> OFPFW10_NW_SRC_SHIFT);
153     wc->masks.nw_dst = ofputil_wcbits_to_netmask(ofpfw
154                                                  >> OFPFW10_NW_DST_SHIFT);
155
156     if (!(ofpfw & OFPFW10_TP_SRC)) {
157         wc->masks.tp_src = OVS_BE16_MAX;
158     }
159     if (!(ofpfw & OFPFW10_TP_DST)) {
160         wc->masks.tp_dst = OVS_BE16_MAX;
161     }
162
163     if (!(ofpfw & OFPFW10_DL_SRC)) {
164         memset(wc->masks.dl_src, 0xff, ETH_ADDR_LEN);
165     }
166     if (!(ofpfw & OFPFW10_DL_DST)) {
167         memset(wc->masks.dl_dst, 0xff, ETH_ADDR_LEN);
168     }
169     if (!(ofpfw & OFPFW10_DL_TYPE)) {
170         wc->masks.dl_type = OVS_BE16_MAX;
171     }
172
173     /* VLAN TCI mask. */
174     if (!(ofpfw & OFPFW10_DL_VLAN_PCP)) {
175         wc->masks.vlan_tci |= htons(VLAN_PCP_MASK | VLAN_CFI);
176     }
177     if (!(ofpfw & OFPFW10_DL_VLAN)) {
178         wc->masks.vlan_tci |= htons(VLAN_VID_MASK | VLAN_CFI);
179     }
180 }
181
182 /* Converts the ofp10_match in 'ofmatch' into a struct match in 'match'. */
183 void
184 ofputil_match_from_ofp10_match(const struct ofp10_match *ofmatch,
185                                struct match *match)
186 {
187     uint32_t ofpfw = ntohl(ofmatch->wildcards) & OFPFW10_ALL;
188
189     /* Initialize match->wc. */
190     memset(&match->flow, 0, sizeof match->flow);
191     ofputil_wildcard_from_ofpfw10(ofpfw, &match->wc);
192
193     /* Initialize most of match->flow. */
194     match->flow.nw_src = ofmatch->nw_src;
195     match->flow.nw_dst = ofmatch->nw_dst;
196     match->flow.in_port.ofp_port = u16_to_ofp(ntohs(ofmatch->in_port));
197     match->flow.dl_type = ofputil_dl_type_from_openflow(ofmatch->dl_type);
198     match->flow.tp_src = ofmatch->tp_src;
199     match->flow.tp_dst = ofmatch->tp_dst;
200     memcpy(match->flow.dl_src, ofmatch->dl_src, ETH_ADDR_LEN);
201     memcpy(match->flow.dl_dst, ofmatch->dl_dst, ETH_ADDR_LEN);
202     match->flow.nw_tos = ofmatch->nw_tos & IP_DSCP_MASK;
203     match->flow.nw_proto = ofmatch->nw_proto;
204
205     /* Translate VLANs. */
206     if (!(ofpfw & OFPFW10_DL_VLAN) &&
207         ofmatch->dl_vlan == htons(OFP10_VLAN_NONE)) {
208         /* Match only packets without 802.1Q header.
209          *
210          * When OFPFW10_DL_VLAN_PCP is wildcarded, this is obviously correct.
211          *
212          * If OFPFW10_DL_VLAN_PCP is matched, the flow match is contradictory,
213          * because we can't have a specific PCP without an 802.1Q header.
214          * However, older versions of OVS treated this as matching packets
215          * withut an 802.1Q header, so we do here too. */
216         match->flow.vlan_tci = htons(0);
217         match->wc.masks.vlan_tci = htons(0xffff);
218     } else {
219         ovs_be16 vid, pcp, tci;
220         uint16_t hpcp;
221
222         vid = ofmatch->dl_vlan & htons(VLAN_VID_MASK);
223         hpcp = (ofmatch->dl_vlan_pcp << VLAN_PCP_SHIFT) & VLAN_PCP_MASK;
224         pcp = htons(hpcp);
225         tci = vid | pcp | htons(VLAN_CFI);
226         match->flow.vlan_tci = tci & match->wc.masks.vlan_tci;
227     }
228
229     /* Clean up. */
230     match_zero_wildcarded_fields(match);
231 }
232
233 /* Convert 'match' into the OpenFlow 1.0 match structure 'ofmatch'. */
234 void
235 ofputil_match_to_ofp10_match(const struct match *match,
236                              struct ofp10_match *ofmatch)
237 {
238     const struct flow_wildcards *wc = &match->wc;
239     uint32_t ofpfw;
240
241     /* Figure out most OpenFlow wildcards. */
242     ofpfw = 0;
243     if (!wc->masks.in_port.ofp_port) {
244         ofpfw |= OFPFW10_IN_PORT;
245     }
246     if (!wc->masks.dl_type) {
247         ofpfw |= OFPFW10_DL_TYPE;
248     }
249     if (!wc->masks.nw_proto) {
250         ofpfw |= OFPFW10_NW_PROTO;
251     }
252     ofpfw |= (ofputil_netmask_to_wcbits(wc->masks.nw_src)
253               << OFPFW10_NW_SRC_SHIFT);
254     ofpfw |= (ofputil_netmask_to_wcbits(wc->masks.nw_dst)
255               << OFPFW10_NW_DST_SHIFT);
256     if (!(wc->masks.nw_tos & IP_DSCP_MASK)) {
257         ofpfw |= OFPFW10_NW_TOS;
258     }
259     if (!wc->masks.tp_src) {
260         ofpfw |= OFPFW10_TP_SRC;
261     }
262     if (!wc->masks.tp_dst) {
263         ofpfw |= OFPFW10_TP_DST;
264     }
265     if (eth_addr_is_zero(wc->masks.dl_src)) {
266         ofpfw |= OFPFW10_DL_SRC;
267     }
268     if (eth_addr_is_zero(wc->masks.dl_dst)) {
269         ofpfw |= OFPFW10_DL_DST;
270     }
271
272     /* Translate VLANs. */
273     ofmatch->dl_vlan = htons(0);
274     ofmatch->dl_vlan_pcp = 0;
275     if (match->wc.masks.vlan_tci == htons(0)) {
276         ofpfw |= OFPFW10_DL_VLAN | OFPFW10_DL_VLAN_PCP;
277     } else if (match->wc.masks.vlan_tci & htons(VLAN_CFI)
278                && !(match->flow.vlan_tci & htons(VLAN_CFI))) {
279         ofmatch->dl_vlan = htons(OFP10_VLAN_NONE);
280         ofpfw |= OFPFW10_DL_VLAN_PCP;
281     } else {
282         if (!(match->wc.masks.vlan_tci & htons(VLAN_VID_MASK))) {
283             ofpfw |= OFPFW10_DL_VLAN;
284         } else {
285             ofmatch->dl_vlan = htons(vlan_tci_to_vid(match->flow.vlan_tci));
286         }
287
288         if (!(match->wc.masks.vlan_tci & htons(VLAN_PCP_MASK))) {
289             ofpfw |= OFPFW10_DL_VLAN_PCP;
290         } else {
291             ofmatch->dl_vlan_pcp = vlan_tci_to_pcp(match->flow.vlan_tci);
292         }
293     }
294
295     /* Compose most of the match structure. */
296     ofmatch->wildcards = htonl(ofpfw);
297     ofmatch->in_port = htons(ofp_to_u16(match->flow.in_port.ofp_port));
298     memcpy(ofmatch->dl_src, match->flow.dl_src, ETH_ADDR_LEN);
299     memcpy(ofmatch->dl_dst, match->flow.dl_dst, ETH_ADDR_LEN);
300     ofmatch->dl_type = ofputil_dl_type_to_openflow(match->flow.dl_type);
301     ofmatch->nw_src = match->flow.nw_src;
302     ofmatch->nw_dst = match->flow.nw_dst;
303     ofmatch->nw_tos = match->flow.nw_tos & IP_DSCP_MASK;
304     ofmatch->nw_proto = match->flow.nw_proto;
305     ofmatch->tp_src = match->flow.tp_src;
306     ofmatch->tp_dst = match->flow.tp_dst;
307     memset(ofmatch->pad1, '\0', sizeof ofmatch->pad1);
308     memset(ofmatch->pad2, '\0', sizeof ofmatch->pad2);
309 }
310
311 enum ofperr
312 ofputil_pull_ofp11_match(struct ofpbuf *buf, struct match *match,
313                          uint16_t *padded_match_len)
314 {
315     struct ofp11_match_header *omh = ofpbuf_data(buf);
316     uint16_t match_len;
317
318     if (ofpbuf_size(buf) < sizeof *omh) {
319         return OFPERR_OFPBMC_BAD_LEN;
320     }
321
322     match_len = ntohs(omh->length);
323
324     switch (ntohs(omh->type)) {
325     case OFPMT_STANDARD: {
326         struct ofp11_match *om;
327
328         if (match_len != sizeof *om || ofpbuf_size(buf) < sizeof *om) {
329             return OFPERR_OFPBMC_BAD_LEN;
330         }
331         om = ofpbuf_pull(buf, sizeof *om);
332         if (padded_match_len) {
333             *padded_match_len = match_len;
334         }
335         return ofputil_match_from_ofp11_match(om, match);
336     }
337
338     case OFPMT_OXM:
339         if (padded_match_len) {
340             *padded_match_len = ROUND_UP(match_len, 8);
341         }
342         return oxm_pull_match(buf, match);
343
344     default:
345         return OFPERR_OFPBMC_BAD_TYPE;
346     }
347 }
348
349 /* Converts the ofp11_match in 'ofmatch' into a struct match in 'match'.
350  * Returns 0 if successful, otherwise an OFPERR_* value. */
351 enum ofperr
352 ofputil_match_from_ofp11_match(const struct ofp11_match *ofmatch,
353                                struct match *match)
354 {
355     uint16_t wc = ntohl(ofmatch->wildcards);
356     uint8_t dl_src_mask[ETH_ADDR_LEN];
357     uint8_t dl_dst_mask[ETH_ADDR_LEN];
358     bool ipv4, arp, rarp;
359     int i;
360
361     match_init_catchall(match);
362
363     if (!(wc & OFPFW11_IN_PORT)) {
364         ofp_port_t ofp_port;
365         enum ofperr error;
366
367         error = ofputil_port_from_ofp11(ofmatch->in_port, &ofp_port);
368         if (error) {
369             return OFPERR_OFPBMC_BAD_VALUE;
370         }
371         match_set_in_port(match, ofp_port);
372     }
373
374     for (i = 0; i < ETH_ADDR_LEN; i++) {
375         dl_src_mask[i] = ~ofmatch->dl_src_mask[i];
376     }
377     match_set_dl_src_masked(match, ofmatch->dl_src, dl_src_mask);
378
379     for (i = 0; i < ETH_ADDR_LEN; i++) {
380         dl_dst_mask[i] = ~ofmatch->dl_dst_mask[i];
381     }
382     match_set_dl_dst_masked(match, ofmatch->dl_dst, dl_dst_mask);
383
384     if (!(wc & OFPFW11_DL_VLAN)) {
385         if (ofmatch->dl_vlan == htons(OFPVID11_NONE)) {
386             /* Match only packets without a VLAN tag. */
387             match->flow.vlan_tci = htons(0);
388             match->wc.masks.vlan_tci = OVS_BE16_MAX;
389         } else {
390             if (ofmatch->dl_vlan == htons(OFPVID11_ANY)) {
391                 /* Match any packet with a VLAN tag regardless of VID. */
392                 match->flow.vlan_tci = htons(VLAN_CFI);
393                 match->wc.masks.vlan_tci = htons(VLAN_CFI);
394             } else if (ntohs(ofmatch->dl_vlan) < 4096) {
395                 /* Match only packets with the specified VLAN VID. */
396                 match->flow.vlan_tci = htons(VLAN_CFI) | ofmatch->dl_vlan;
397                 match->wc.masks.vlan_tci = htons(VLAN_CFI | VLAN_VID_MASK);
398             } else {
399                 /* Invalid VID. */
400                 return OFPERR_OFPBMC_BAD_VALUE;
401             }
402
403             if (!(wc & OFPFW11_DL_VLAN_PCP)) {
404                 if (ofmatch->dl_vlan_pcp <= 7) {
405                     match->flow.vlan_tci |= htons(ofmatch->dl_vlan_pcp
406                                                   << VLAN_PCP_SHIFT);
407                     match->wc.masks.vlan_tci |= htons(VLAN_PCP_MASK);
408                 } else {
409                     /* Invalid PCP. */
410                     return OFPERR_OFPBMC_BAD_VALUE;
411                 }
412             }
413         }
414     }
415
416     if (!(wc & OFPFW11_DL_TYPE)) {
417         match_set_dl_type(match,
418                           ofputil_dl_type_from_openflow(ofmatch->dl_type));
419     }
420
421     ipv4 = match->flow.dl_type == htons(ETH_TYPE_IP);
422     arp = match->flow.dl_type == htons(ETH_TYPE_ARP);
423     rarp = match->flow.dl_type == htons(ETH_TYPE_RARP);
424
425     if (ipv4 && !(wc & OFPFW11_NW_TOS)) {
426         if (ofmatch->nw_tos & ~IP_DSCP_MASK) {
427             /* Invalid TOS. */
428             return OFPERR_OFPBMC_BAD_VALUE;
429         }
430
431         match_set_nw_dscp(match, ofmatch->nw_tos);
432     }
433
434     if (ipv4 || arp || rarp) {
435         if (!(wc & OFPFW11_NW_PROTO)) {
436             match_set_nw_proto(match, ofmatch->nw_proto);
437         }
438         match_set_nw_src_masked(match, ofmatch->nw_src, ~ofmatch->nw_src_mask);
439         match_set_nw_dst_masked(match, ofmatch->nw_dst, ~ofmatch->nw_dst_mask);
440     }
441
442 #define OFPFW11_TP_ALL (OFPFW11_TP_SRC | OFPFW11_TP_DST)
443     if (ipv4 && (wc & OFPFW11_TP_ALL) != OFPFW11_TP_ALL) {
444         switch (match->flow.nw_proto) {
445         case IPPROTO_ICMP:
446             /* "A.2.3 Flow Match Structures" in OF1.1 says:
447              *
448              *    The tp_src and tp_dst fields will be ignored unless the
449              *    network protocol specified is as TCP, UDP or SCTP.
450              *
451              * but I'm pretty sure we should support ICMP too, otherwise
452              * that's a regression from OF1.0. */
453             if (!(wc & OFPFW11_TP_SRC)) {
454                 uint16_t icmp_type = ntohs(ofmatch->tp_src);
455                 if (icmp_type < 0x100) {
456                     match_set_icmp_type(match, icmp_type);
457                 } else {
458                     return OFPERR_OFPBMC_BAD_FIELD;
459                 }
460             }
461             if (!(wc & OFPFW11_TP_DST)) {
462                 uint16_t icmp_code = ntohs(ofmatch->tp_dst);
463                 if (icmp_code < 0x100) {
464                     match_set_icmp_code(match, icmp_code);
465                 } else {
466                     return OFPERR_OFPBMC_BAD_FIELD;
467                 }
468             }
469             break;
470
471         case IPPROTO_TCP:
472         case IPPROTO_UDP:
473         case IPPROTO_SCTP:
474             if (!(wc & (OFPFW11_TP_SRC))) {
475                 match_set_tp_src(match, ofmatch->tp_src);
476             }
477             if (!(wc & (OFPFW11_TP_DST))) {
478                 match_set_tp_dst(match, ofmatch->tp_dst);
479             }
480             break;
481
482         default:
483             /* OF1.1 says explicitly to ignore this. */
484             break;
485         }
486     }
487
488     if (eth_type_mpls(match->flow.dl_type)) {
489         if (!(wc & OFPFW11_MPLS_LABEL)) {
490             match_set_mpls_label(match, 0, ofmatch->mpls_label);
491         }
492         if (!(wc & OFPFW11_MPLS_TC)) {
493             match_set_mpls_tc(match, 0, ofmatch->mpls_tc);
494         }
495     }
496
497     match_set_metadata_masked(match, ofmatch->metadata,
498                               ~ofmatch->metadata_mask);
499
500     return 0;
501 }
502
503 /* Convert 'match' into the OpenFlow 1.1 match structure 'ofmatch'. */
504 void
505 ofputil_match_to_ofp11_match(const struct match *match,
506                              struct ofp11_match *ofmatch)
507 {
508     uint32_t wc = 0;
509     int i;
510
511     memset(ofmatch, 0, sizeof *ofmatch);
512     ofmatch->omh.type = htons(OFPMT_STANDARD);
513     ofmatch->omh.length = htons(OFPMT11_STANDARD_LENGTH);
514
515     if (!match->wc.masks.in_port.ofp_port) {
516         wc |= OFPFW11_IN_PORT;
517     } else {
518         ofmatch->in_port = ofputil_port_to_ofp11(match->flow.in_port.ofp_port);
519     }
520
521     memcpy(ofmatch->dl_src, match->flow.dl_src, ETH_ADDR_LEN);
522     for (i = 0; i < ETH_ADDR_LEN; i++) {
523         ofmatch->dl_src_mask[i] = ~match->wc.masks.dl_src[i];
524     }
525
526     memcpy(ofmatch->dl_dst, match->flow.dl_dst, ETH_ADDR_LEN);
527     for (i = 0; i < ETH_ADDR_LEN; i++) {
528         ofmatch->dl_dst_mask[i] = ~match->wc.masks.dl_dst[i];
529     }
530
531     if (match->wc.masks.vlan_tci == htons(0)) {
532         wc |= OFPFW11_DL_VLAN | OFPFW11_DL_VLAN_PCP;
533     } else if (match->wc.masks.vlan_tci & htons(VLAN_CFI)
534                && !(match->flow.vlan_tci & htons(VLAN_CFI))) {
535         ofmatch->dl_vlan = htons(OFPVID11_NONE);
536         wc |= OFPFW11_DL_VLAN_PCP;
537     } else {
538         if (!(match->wc.masks.vlan_tci & htons(VLAN_VID_MASK))) {
539             ofmatch->dl_vlan = htons(OFPVID11_ANY);
540         } else {
541             ofmatch->dl_vlan = htons(vlan_tci_to_vid(match->flow.vlan_tci));
542         }
543
544         if (!(match->wc.masks.vlan_tci & htons(VLAN_PCP_MASK))) {
545             wc |= OFPFW11_DL_VLAN_PCP;
546         } else {
547             ofmatch->dl_vlan_pcp = vlan_tci_to_pcp(match->flow.vlan_tci);
548         }
549     }
550
551     if (!match->wc.masks.dl_type) {
552         wc |= OFPFW11_DL_TYPE;
553     } else {
554         ofmatch->dl_type = ofputil_dl_type_to_openflow(match->flow.dl_type);
555     }
556
557     if (!(match->wc.masks.nw_tos & IP_DSCP_MASK)) {
558         wc |= OFPFW11_NW_TOS;
559     } else {
560         ofmatch->nw_tos = match->flow.nw_tos & IP_DSCP_MASK;
561     }
562
563     if (!match->wc.masks.nw_proto) {
564         wc |= OFPFW11_NW_PROTO;
565     } else {
566         ofmatch->nw_proto = match->flow.nw_proto;
567     }
568
569     ofmatch->nw_src = match->flow.nw_src;
570     ofmatch->nw_src_mask = ~match->wc.masks.nw_src;
571     ofmatch->nw_dst = match->flow.nw_dst;
572     ofmatch->nw_dst_mask = ~match->wc.masks.nw_dst;
573
574     if (!match->wc.masks.tp_src) {
575         wc |= OFPFW11_TP_SRC;
576     } else {
577         ofmatch->tp_src = match->flow.tp_src;
578     }
579
580     if (!match->wc.masks.tp_dst) {
581         wc |= OFPFW11_TP_DST;
582     } else {
583         ofmatch->tp_dst = match->flow.tp_dst;
584     }
585
586     if (!(match->wc.masks.mpls_lse[0] & htonl(MPLS_LABEL_MASK))) {
587         wc |= OFPFW11_MPLS_LABEL;
588     } else {
589         ofmatch->mpls_label = htonl(mpls_lse_to_label(
590                                         match->flow.mpls_lse[0]));
591     }
592
593     if (!(match->wc.masks.mpls_lse[0] & htonl(MPLS_TC_MASK))) {
594         wc |= OFPFW11_MPLS_TC;
595     } else {
596         ofmatch->mpls_tc = mpls_lse_to_tc(match->flow.mpls_lse[0]);
597     }
598
599     ofmatch->metadata = match->flow.metadata;
600     ofmatch->metadata_mask = ~match->wc.masks.metadata;
601
602     ofmatch->wildcards = htonl(wc);
603 }
604
605 /* Returns the "typical" length of a match for 'protocol', for use in
606  * estimating space to preallocate. */
607 int
608 ofputil_match_typical_len(enum ofputil_protocol protocol)
609 {
610     switch (protocol) {
611     case OFPUTIL_P_OF10_STD:
612     case OFPUTIL_P_OF10_STD_TID:
613         return sizeof(struct ofp10_match);
614
615     case OFPUTIL_P_OF10_NXM:
616     case OFPUTIL_P_OF10_NXM_TID:
617         return NXM_TYPICAL_LEN;
618
619     case OFPUTIL_P_OF11_STD:
620         return sizeof(struct ofp11_match);
621
622     case OFPUTIL_P_OF12_OXM:
623     case OFPUTIL_P_OF13_OXM:
624     case OFPUTIL_P_OF14_OXM:
625         return NXM_TYPICAL_LEN;
626
627     default:
628         OVS_NOT_REACHED();
629     }
630 }
631
632 /* Appends to 'b' an struct ofp11_match_header followed by a match that
633  * expresses 'match' properly for 'protocol', plus enough zero bytes to pad the
634  * data appended out to a multiple of 8.  'protocol' must be one that is usable
635  * in OpenFlow 1.1 or later.
636  *
637  * This function can cause 'b''s data to be reallocated.
638  *
639  * Returns the number of bytes appended to 'b', excluding the padding.  Never
640  * returns zero. */
641 int
642 ofputil_put_ofp11_match(struct ofpbuf *b, const struct match *match,
643                         enum ofputil_protocol protocol)
644 {
645     switch (protocol) {
646     case OFPUTIL_P_OF10_STD:
647     case OFPUTIL_P_OF10_STD_TID:
648     case OFPUTIL_P_OF10_NXM:
649     case OFPUTIL_P_OF10_NXM_TID:
650         OVS_NOT_REACHED();
651
652     case OFPUTIL_P_OF11_STD: {
653         struct ofp11_match *om;
654
655         /* Make sure that no padding is needed. */
656         BUILD_ASSERT_DECL(sizeof *om % 8 == 0);
657
658         om = ofpbuf_put_uninit(b, sizeof *om);
659         ofputil_match_to_ofp11_match(match, om);
660         return sizeof *om;
661     }
662
663     case OFPUTIL_P_OF12_OXM:
664     case OFPUTIL_P_OF13_OXM:
665     case OFPUTIL_P_OF14_OXM:
666         return oxm_put_match(b, match);
667     }
668
669     OVS_NOT_REACHED();
670 }
671
672 /* Given a 'dl_type' value in the format used in struct flow, returns the
673  * corresponding 'dl_type' value for use in an ofp10_match or ofp11_match
674  * structure. */
675 ovs_be16
676 ofputil_dl_type_to_openflow(ovs_be16 flow_dl_type)
677 {
678     return (flow_dl_type == htons(FLOW_DL_TYPE_NONE)
679             ? htons(OFP_DL_TYPE_NOT_ETH_TYPE)
680             : flow_dl_type);
681 }
682
683 /* Given a 'dl_type' value in the format used in an ofp10_match or ofp11_match
684  * structure, returns the corresponding 'dl_type' value for use in struct
685  * flow. */
686 ovs_be16
687 ofputil_dl_type_from_openflow(ovs_be16 ofp_dl_type)
688 {
689     return (ofp_dl_type == htons(OFP_DL_TYPE_NOT_ETH_TYPE)
690             ? htons(FLOW_DL_TYPE_NONE)
691             : ofp_dl_type);
692 }
693 \f
694 /* Protocols. */
695
696 struct proto_abbrev {
697     enum ofputil_protocol protocol;
698     const char *name;
699 };
700
701 /* Most users really don't care about some of the differences between
702  * protocols.  These abbreviations help with that.
703  *
704  * Until it is safe to use the OpenFlow 1.4 protocol (which currently can
705  * cause aborts due to unimplemented features), we omit OpenFlow 1.4 from all
706  * abbrevations. */
707 static const struct proto_abbrev proto_abbrevs[] = {
708     { OFPUTIL_P_ANY          & ~OFPUTIL_P_OF14_OXM, "any" },
709     { OFPUTIL_P_OF10_STD_ANY & ~OFPUTIL_P_OF14_OXM, "OpenFlow10" },
710     { OFPUTIL_P_OF10_NXM_ANY & ~OFPUTIL_P_OF14_OXM, "NXM" },
711     { OFPUTIL_P_ANY_OXM      & ~OFPUTIL_P_OF14_OXM, "OXM" },
712 };
713 #define N_PROTO_ABBREVS ARRAY_SIZE(proto_abbrevs)
714
715 enum ofputil_protocol ofputil_flow_dump_protocols[] = {
716     OFPUTIL_P_OF14_OXM,
717     OFPUTIL_P_OF13_OXM,
718     OFPUTIL_P_OF12_OXM,
719     OFPUTIL_P_OF11_STD,
720     OFPUTIL_P_OF10_NXM,
721     OFPUTIL_P_OF10_STD,
722 };
723 size_t ofputil_n_flow_dump_protocols = ARRAY_SIZE(ofputil_flow_dump_protocols);
724
725 /* Returns the set of ofputil_protocols that are supported with the given
726  * OpenFlow 'version'.  'version' should normally be an 8-bit OpenFlow version
727  * identifier (e.g. 0x01 for OpenFlow 1.0, 0x02 for OpenFlow 1.1).  Returns 0
728  * if 'version' is not supported or outside the valid range.  */
729 enum ofputil_protocol
730 ofputil_protocols_from_ofp_version(enum ofp_version version)
731 {
732     switch (version) {
733     case OFP10_VERSION:
734         return OFPUTIL_P_OF10_STD_ANY | OFPUTIL_P_OF10_NXM_ANY;
735     case OFP11_VERSION:
736         return OFPUTIL_P_OF11_STD;
737     case OFP12_VERSION:
738         return OFPUTIL_P_OF12_OXM;
739     case OFP13_VERSION:
740         return OFPUTIL_P_OF13_OXM;
741     case OFP14_VERSION:
742         return OFPUTIL_P_OF14_OXM;
743     default:
744         return 0;
745     }
746 }
747
748 /* Returns the ofputil_protocol that is initially in effect on an OpenFlow
749  * connection that has negotiated the given 'version'.  'version' should
750  * normally be an 8-bit OpenFlow version identifier (e.g. 0x01 for OpenFlow
751  * 1.0, 0x02 for OpenFlow 1.1).  Returns 0 if 'version' is not supported or
752  * outside the valid range.  */
753 enum ofputil_protocol
754 ofputil_protocol_from_ofp_version(enum ofp_version version)
755 {
756     return rightmost_1bit(ofputil_protocols_from_ofp_version(version));
757 }
758
759 /* Returns the OpenFlow protocol version number (e.g. OFP10_VERSION,
760  * etc.) that corresponds to 'protocol'. */
761 enum ofp_version
762 ofputil_protocol_to_ofp_version(enum ofputil_protocol protocol)
763 {
764     switch (protocol) {
765     case OFPUTIL_P_OF10_STD:
766     case OFPUTIL_P_OF10_STD_TID:
767     case OFPUTIL_P_OF10_NXM:
768     case OFPUTIL_P_OF10_NXM_TID:
769         return OFP10_VERSION;
770     case OFPUTIL_P_OF11_STD:
771         return OFP11_VERSION;
772     case OFPUTIL_P_OF12_OXM:
773         return OFP12_VERSION;
774     case OFPUTIL_P_OF13_OXM:
775         return OFP13_VERSION;
776     case OFPUTIL_P_OF14_OXM:
777         return OFP14_VERSION;
778     }
779
780     OVS_NOT_REACHED();
781 }
782
783 /* Returns a bitmap of OpenFlow versions that are supported by at
784  * least one of the 'protocols'. */
785 uint32_t
786 ofputil_protocols_to_version_bitmap(enum ofputil_protocol protocols)
787 {
788     uint32_t bitmap = 0;
789
790     for (; protocols; protocols = zero_rightmost_1bit(protocols)) {
791         enum ofputil_protocol protocol = rightmost_1bit(protocols);
792
793         bitmap |= 1u << ofputil_protocol_to_ofp_version(protocol);
794     }
795
796     return bitmap;
797 }
798
799 /* Returns the set of protocols that are supported on top of the
800  * OpenFlow versions included in 'bitmap'. */
801 enum ofputil_protocol
802 ofputil_protocols_from_version_bitmap(uint32_t bitmap)
803 {
804     enum ofputil_protocol protocols = 0;
805
806     for (; bitmap; bitmap = zero_rightmost_1bit(bitmap)) {
807         enum ofp_version version = rightmost_1bit_idx(bitmap);
808
809         protocols |= ofputil_protocols_from_ofp_version(version);
810     }
811
812     return protocols;
813 }
814
815 /* Returns true if 'protocol' is a single OFPUTIL_P_* value, false
816  * otherwise. */
817 bool
818 ofputil_protocol_is_valid(enum ofputil_protocol protocol)
819 {
820     return protocol & OFPUTIL_P_ANY && is_pow2(protocol);
821 }
822
823 /* Returns the equivalent of 'protocol' with the Nicira flow_mod_table_id
824  * extension turned on or off if 'enable' is true or false, respectively.
825  *
826  * This extension is only useful for protocols whose "standard" version does
827  * not allow specific tables to be modified.  In particular, this is true of
828  * OpenFlow 1.0.  In later versions of OpenFlow, a flow_mod request always
829  * specifies a table ID and so there is no need for such an extension.  When
830  * 'protocol' is such a protocol that doesn't need a flow_mod_table_id
831  * extension, this function just returns its 'protocol' argument unchanged
832  * regardless of the value of 'enable'.  */
833 enum ofputil_protocol
834 ofputil_protocol_set_tid(enum ofputil_protocol protocol, bool enable)
835 {
836     switch (protocol) {
837     case OFPUTIL_P_OF10_STD:
838     case OFPUTIL_P_OF10_STD_TID:
839         return enable ? OFPUTIL_P_OF10_STD_TID : OFPUTIL_P_OF10_STD;
840
841     case OFPUTIL_P_OF10_NXM:
842     case OFPUTIL_P_OF10_NXM_TID:
843         return enable ? OFPUTIL_P_OF10_NXM_TID : OFPUTIL_P_OF10_NXM;
844
845     case OFPUTIL_P_OF11_STD:
846         return OFPUTIL_P_OF11_STD;
847
848     case OFPUTIL_P_OF12_OXM:
849         return OFPUTIL_P_OF12_OXM;
850
851     case OFPUTIL_P_OF13_OXM:
852         return OFPUTIL_P_OF13_OXM;
853
854     case OFPUTIL_P_OF14_OXM:
855         return OFPUTIL_P_OF14_OXM;
856
857     default:
858         OVS_NOT_REACHED();
859     }
860 }
861
862 /* Returns the "base" version of 'protocol'.  That is, if 'protocol' includes
863  * some extension to a standard protocol version, the return value is the
864  * standard version of that protocol without any extension.  If 'protocol' is a
865  * standard protocol version, returns 'protocol' unchanged. */
866 enum ofputil_protocol
867 ofputil_protocol_to_base(enum ofputil_protocol protocol)
868 {
869     return ofputil_protocol_set_tid(protocol, false);
870 }
871
872 /* Returns 'new_base' with any extensions taken from 'cur'. */
873 enum ofputil_protocol
874 ofputil_protocol_set_base(enum ofputil_protocol cur,
875                           enum ofputil_protocol new_base)
876 {
877     bool tid = (cur & OFPUTIL_P_TID) != 0;
878
879     switch (new_base) {
880     case OFPUTIL_P_OF10_STD:
881     case OFPUTIL_P_OF10_STD_TID:
882         return ofputil_protocol_set_tid(OFPUTIL_P_OF10_STD, tid);
883
884     case OFPUTIL_P_OF10_NXM:
885     case OFPUTIL_P_OF10_NXM_TID:
886         return ofputil_protocol_set_tid(OFPUTIL_P_OF10_NXM, tid);
887
888     case OFPUTIL_P_OF11_STD:
889         return ofputil_protocol_set_tid(OFPUTIL_P_OF11_STD, tid);
890
891     case OFPUTIL_P_OF12_OXM:
892         return ofputil_protocol_set_tid(OFPUTIL_P_OF12_OXM, tid);
893
894     case OFPUTIL_P_OF13_OXM:
895         return ofputil_protocol_set_tid(OFPUTIL_P_OF13_OXM, tid);
896
897     case OFPUTIL_P_OF14_OXM:
898         return ofputil_protocol_set_tid(OFPUTIL_P_OF14_OXM, tid);
899
900     default:
901         OVS_NOT_REACHED();
902     }
903 }
904
905 /* Returns a string form of 'protocol', if a simple form exists (that is, if
906  * 'protocol' is either a single protocol or it is a combination of protocols
907  * that have a single abbreviation).  Otherwise, returns NULL. */
908 const char *
909 ofputil_protocol_to_string(enum ofputil_protocol protocol)
910 {
911     const struct proto_abbrev *p;
912
913     /* Use a "switch" statement for single-bit names so that we get a compiler
914      * warning if we forget any. */
915     switch (protocol) {
916     case OFPUTIL_P_OF10_NXM:
917         return "NXM-table_id";
918
919     case OFPUTIL_P_OF10_NXM_TID:
920         return "NXM+table_id";
921
922     case OFPUTIL_P_OF10_STD:
923         return "OpenFlow10-table_id";
924
925     case OFPUTIL_P_OF10_STD_TID:
926         return "OpenFlow10+table_id";
927
928     case OFPUTIL_P_OF11_STD:
929         return "OpenFlow11";
930
931     case OFPUTIL_P_OF12_OXM:
932         return "OXM-OpenFlow12";
933
934     case OFPUTIL_P_OF13_OXM:
935         return "OXM-OpenFlow13";
936
937     case OFPUTIL_P_OF14_OXM:
938         return "OXM-OpenFlow14";
939     }
940
941     /* Check abbreviations. */
942     for (p = proto_abbrevs; p < &proto_abbrevs[N_PROTO_ABBREVS]; p++) {
943         if (protocol == p->protocol) {
944             return p->name;
945         }
946     }
947
948     return NULL;
949 }
950
951 /* Returns a string that represents 'protocols'.  The return value might be a
952  * comma-separated list if 'protocols' doesn't have a simple name.  The return
953  * value is "none" if 'protocols' is 0.
954  *
955  * The caller must free the returned string (with free()). */
956 char *
957 ofputil_protocols_to_string(enum ofputil_protocol protocols)
958 {
959     struct ds s;
960
961     ovs_assert(!(protocols & ~OFPUTIL_P_ANY));
962     if (protocols == 0) {
963         return xstrdup("none");
964     }
965
966     ds_init(&s);
967     while (protocols) {
968         const struct proto_abbrev *p;
969         int i;
970
971         if (s.length) {
972             ds_put_char(&s, ',');
973         }
974
975         for (p = proto_abbrevs; p < &proto_abbrevs[N_PROTO_ABBREVS]; p++) {
976             if ((protocols & p->protocol) == p->protocol) {
977                 ds_put_cstr(&s, p->name);
978                 protocols &= ~p->protocol;
979                 goto match;
980             }
981         }
982
983         for (i = 0; i < CHAR_BIT * sizeof(enum ofputil_protocol); i++) {
984             enum ofputil_protocol bit = 1u << i;
985
986             if (protocols & bit) {
987                 ds_put_cstr(&s, ofputil_protocol_to_string(bit));
988                 protocols &= ~bit;
989                 goto match;
990             }
991         }
992         OVS_NOT_REACHED();
993
994     match: ;
995     }
996     return ds_steal_cstr(&s);
997 }
998
999 static enum ofputil_protocol
1000 ofputil_protocol_from_string__(const char *s, size_t n)
1001 {
1002     const struct proto_abbrev *p;
1003     int i;
1004
1005     for (i = 0; i < CHAR_BIT * sizeof(enum ofputil_protocol); i++) {
1006         enum ofputil_protocol bit = 1u << i;
1007         const char *name = ofputil_protocol_to_string(bit);
1008
1009         if (name && n == strlen(name) && !strncasecmp(s, name, n)) {
1010             return bit;
1011         }
1012     }
1013
1014     for (p = proto_abbrevs; p < &proto_abbrevs[N_PROTO_ABBREVS]; p++) {
1015         if (n == strlen(p->name) && !strncasecmp(s, p->name, n)) {
1016             return p->protocol;
1017         }
1018     }
1019
1020     return 0;
1021 }
1022
1023 /* Returns the nonempty set of protocols represented by 's', which can be a
1024  * single protocol name or abbreviation or a comma-separated list of them.
1025  *
1026  * Aborts the program with an error message if 's' is invalid. */
1027 enum ofputil_protocol
1028 ofputil_protocols_from_string(const char *s)
1029 {
1030     const char *orig_s = s;
1031     enum ofputil_protocol protocols;
1032
1033     protocols = 0;
1034     while (*s) {
1035         enum ofputil_protocol p;
1036         size_t n;
1037
1038         n = strcspn(s, ",");
1039         if (n == 0) {
1040             s++;
1041             continue;
1042         }
1043
1044         p = ofputil_protocol_from_string__(s, n);
1045         if (!p) {
1046             ovs_fatal(0, "%.*s: unknown flow protocol", (int) n, s);
1047         }
1048         protocols |= p;
1049
1050         s += n;
1051     }
1052
1053     if (!protocols) {
1054         ovs_fatal(0, "%s: no flow protocol specified", orig_s);
1055     }
1056     return protocols;
1057 }
1058
1059 static int
1060 ofputil_version_from_string(const char *s)
1061 {
1062     if (!strcasecmp(s, "OpenFlow10")) {
1063         return OFP10_VERSION;
1064     }
1065     if (!strcasecmp(s, "OpenFlow11")) {
1066         return OFP11_VERSION;
1067     }
1068     if (!strcasecmp(s, "OpenFlow12")) {
1069         return OFP12_VERSION;
1070     }
1071     if (!strcasecmp(s, "OpenFlow13")) {
1072         return OFP13_VERSION;
1073     }
1074     if (!strcasecmp(s, "OpenFlow14")) {
1075         return OFP14_VERSION;
1076     }
1077     return 0;
1078 }
1079
1080 static bool
1081 is_delimiter(unsigned char c)
1082 {
1083     return isspace(c) || c == ',';
1084 }
1085
1086 uint32_t
1087 ofputil_versions_from_string(const char *s)
1088 {
1089     size_t i = 0;
1090     uint32_t bitmap = 0;
1091
1092     while (s[i]) {
1093         size_t j;
1094         int version;
1095         char *key;
1096
1097         if (is_delimiter(s[i])) {
1098             i++;
1099             continue;
1100         }
1101         j = 0;
1102         while (s[i + j] && !is_delimiter(s[i + j])) {
1103             j++;
1104         }
1105         key = xmemdup0(s + i, j);
1106         version = ofputil_version_from_string(key);
1107         if (!version) {
1108             VLOG_FATAL("Unknown OpenFlow version: \"%s\"", key);
1109         }
1110         free(key);
1111         bitmap |= 1u << version;
1112         i += j;
1113     }
1114
1115     return bitmap;
1116 }
1117
1118 uint32_t
1119 ofputil_versions_from_strings(char ** const s, size_t count)
1120 {
1121     uint32_t bitmap = 0;
1122
1123     while (count--) {
1124         int version = ofputil_version_from_string(s[count]);
1125         if (!version) {
1126             VLOG_WARN("Unknown OpenFlow version: \"%s\"", s[count]);
1127         } else {
1128             bitmap |= 1u << version;
1129         }
1130     }
1131
1132     return bitmap;
1133 }
1134
1135 const char *
1136 ofputil_version_to_string(enum ofp_version ofp_version)
1137 {
1138     switch (ofp_version) {
1139     case OFP10_VERSION:
1140         return "OpenFlow10";
1141     case OFP11_VERSION:
1142         return "OpenFlow11";
1143     case OFP12_VERSION:
1144         return "OpenFlow12";
1145     case OFP13_VERSION:
1146         return "OpenFlow13";
1147     case OFP14_VERSION:
1148         return "OpenFlow14";
1149     default:
1150         OVS_NOT_REACHED();
1151     }
1152 }
1153
1154 bool
1155 ofputil_packet_in_format_is_valid(enum nx_packet_in_format packet_in_format)
1156 {
1157     switch (packet_in_format) {
1158     case NXPIF_OPENFLOW10:
1159     case NXPIF_NXM:
1160         return true;
1161     }
1162
1163     return false;
1164 }
1165
1166 const char *
1167 ofputil_packet_in_format_to_string(enum nx_packet_in_format packet_in_format)
1168 {
1169     switch (packet_in_format) {
1170     case NXPIF_OPENFLOW10:
1171         return "openflow10";
1172     case NXPIF_NXM:
1173         return "nxm";
1174     default:
1175         OVS_NOT_REACHED();
1176     }
1177 }
1178
1179 int
1180 ofputil_packet_in_format_from_string(const char *s)
1181 {
1182     return (!strcmp(s, "openflow10") ? NXPIF_OPENFLOW10
1183             : !strcmp(s, "nxm") ? NXPIF_NXM
1184             : -1);
1185 }
1186
1187 void
1188 ofputil_format_version(struct ds *msg, enum ofp_version version)
1189 {
1190     ds_put_format(msg, "0x%02x", version);
1191 }
1192
1193 void
1194 ofputil_format_version_name(struct ds *msg, enum ofp_version version)
1195 {
1196     ds_put_cstr(msg, ofputil_version_to_string(version));
1197 }
1198
1199 static void
1200 ofputil_format_version_bitmap__(struct ds *msg, uint32_t bitmap,
1201                                 void (*format_version)(struct ds *msg,
1202                                                        enum ofp_version))
1203 {
1204     while (bitmap) {
1205         format_version(msg, raw_ctz(bitmap));
1206         bitmap = zero_rightmost_1bit(bitmap);
1207         if (bitmap) {
1208             ds_put_cstr(msg, ", ");
1209         }
1210     }
1211 }
1212
1213 void
1214 ofputil_format_version_bitmap(struct ds *msg, uint32_t bitmap)
1215 {
1216     ofputil_format_version_bitmap__(msg, bitmap, ofputil_format_version);
1217 }
1218
1219 void
1220 ofputil_format_version_bitmap_names(struct ds *msg, uint32_t bitmap)
1221 {
1222     ofputil_format_version_bitmap__(msg, bitmap, ofputil_format_version_name);
1223 }
1224
1225 static bool
1226 ofputil_decode_hello_bitmap(const struct ofp_hello_elem_header *oheh,
1227                             uint32_t *allowed_versionsp)
1228 {
1229     uint16_t bitmap_len = ntohs(oheh->length) - sizeof *oheh;
1230     const ovs_be32 *bitmap = ALIGNED_CAST(const ovs_be32 *, oheh + 1);
1231     uint32_t allowed_versions;
1232
1233     if (!bitmap_len || bitmap_len % sizeof *bitmap) {
1234         return false;
1235     }
1236
1237     /* Only use the first 32-bit element of the bitmap as that is all the
1238      * current implementation supports.  Subsequent elements are ignored which
1239      * should have no effect on session negotiation until Open vSwtich supports
1240      * wire-protocol versions greater than 31.
1241      */
1242     allowed_versions = ntohl(bitmap[0]);
1243
1244     if (allowed_versions & 1) {
1245         /* There's no OpenFlow version 0. */
1246         VLOG_WARN_RL(&bad_ofmsg_rl, "peer claims to support invalid OpenFlow "
1247                      "version 0x00");
1248         allowed_versions &= ~1u;
1249     }
1250
1251     if (!allowed_versions) {
1252         VLOG_WARN_RL(&bad_ofmsg_rl, "peer does not support any OpenFlow "
1253                      "version (between 0x01 and 0x1f)");
1254         return false;
1255     }
1256
1257     *allowed_versionsp = allowed_versions;
1258     return true;
1259 }
1260
1261 static uint32_t
1262 version_bitmap_from_version(uint8_t ofp_version)
1263 {
1264     return ((ofp_version < 32 ? 1u << ofp_version : 0) - 1) << 1;
1265 }
1266
1267 /* Decodes OpenFlow OFPT_HELLO message 'oh', storing into '*allowed_versions'
1268  * the set of OpenFlow versions for which 'oh' announces support.
1269  *
1270  * Because of how OpenFlow defines OFPT_HELLO messages, this function is always
1271  * successful, and thus '*allowed_versions' is always initialized.  However, it
1272  * returns false if 'oh' contains some data that could not be fully understood,
1273  * true if 'oh' was completely parsed. */
1274 bool
1275 ofputil_decode_hello(const struct ofp_header *oh, uint32_t *allowed_versions)
1276 {
1277     struct ofpbuf msg;
1278     bool ok = true;
1279
1280     ofpbuf_use_const(&msg, oh, ntohs(oh->length));
1281     ofpbuf_pull(&msg, sizeof *oh);
1282
1283     *allowed_versions = version_bitmap_from_version(oh->version);
1284     while (ofpbuf_size(&msg)) {
1285         const struct ofp_hello_elem_header *oheh;
1286         unsigned int len;
1287
1288         if (ofpbuf_size(&msg) < sizeof *oheh) {
1289             return false;
1290         }
1291
1292         oheh = ofpbuf_data(&msg);
1293         len = ntohs(oheh->length);
1294         if (len < sizeof *oheh || !ofpbuf_try_pull(&msg, ROUND_UP(len, 8))) {
1295             return false;
1296         }
1297
1298         if (oheh->type != htons(OFPHET_VERSIONBITMAP)
1299             || !ofputil_decode_hello_bitmap(oheh, allowed_versions)) {
1300             ok = false;
1301         }
1302     }
1303
1304     return ok;
1305 }
1306
1307 /* Returns true if 'allowed_versions' needs to be accompanied by a version
1308  * bitmap to be correctly expressed in an OFPT_HELLO message. */
1309 static bool
1310 should_send_version_bitmap(uint32_t allowed_versions)
1311 {
1312     return !is_pow2((allowed_versions >> 1) + 1);
1313 }
1314
1315 /* Create an OFPT_HELLO message that expresses support for the OpenFlow
1316  * versions in the 'allowed_versions' bitmaps and returns the message. */
1317 struct ofpbuf *
1318 ofputil_encode_hello(uint32_t allowed_versions)
1319 {
1320     enum ofp_version ofp_version;
1321     struct ofpbuf *msg;
1322
1323     ofp_version = leftmost_1bit_idx(allowed_versions);
1324     msg = ofpraw_alloc(OFPRAW_OFPT_HELLO, ofp_version, 0);
1325
1326     if (should_send_version_bitmap(allowed_versions)) {
1327         struct ofp_hello_elem_header *oheh;
1328         uint16_t map_len;
1329
1330         map_len = sizeof allowed_versions;
1331         oheh = ofpbuf_put_zeros(msg, ROUND_UP(map_len + sizeof *oheh, 8));
1332         oheh->type = htons(OFPHET_VERSIONBITMAP);
1333         oheh->length = htons(map_len + sizeof *oheh);
1334         *ALIGNED_CAST(ovs_be32 *, oheh + 1) = htonl(allowed_versions);
1335
1336         ofpmsg_update_length(msg);
1337     }
1338
1339     return msg;
1340 }
1341
1342 /* Returns an OpenFlow message that, sent on an OpenFlow connection whose
1343  * protocol is 'current', at least partly transitions the protocol to 'want'.
1344  * Stores in '*next' the protocol that will be in effect on the OpenFlow
1345  * connection if the switch processes the returned message correctly.  (If
1346  * '*next != want' then the caller will have to iterate.)
1347  *
1348  * If 'current == want', or if it is not possible to transition from 'current'
1349  * to 'want' (because, for example, 'current' and 'want' use different OpenFlow
1350  * protocol versions), returns NULL and stores 'current' in '*next'. */
1351 struct ofpbuf *
1352 ofputil_encode_set_protocol(enum ofputil_protocol current,
1353                             enum ofputil_protocol want,
1354                             enum ofputil_protocol *next)
1355 {
1356     enum ofp_version cur_version, want_version;
1357     enum ofputil_protocol cur_base, want_base;
1358     bool cur_tid, want_tid;
1359
1360     cur_version = ofputil_protocol_to_ofp_version(current);
1361     want_version = ofputil_protocol_to_ofp_version(want);
1362     if (cur_version != want_version) {
1363         *next = current;
1364         return NULL;
1365     }
1366
1367     cur_base = ofputil_protocol_to_base(current);
1368     want_base = ofputil_protocol_to_base(want);
1369     if (cur_base != want_base) {
1370         *next = ofputil_protocol_set_base(current, want_base);
1371
1372         switch (want_base) {
1373         case OFPUTIL_P_OF10_NXM:
1374             return ofputil_encode_nx_set_flow_format(NXFF_NXM);
1375
1376         case OFPUTIL_P_OF10_STD:
1377             return ofputil_encode_nx_set_flow_format(NXFF_OPENFLOW10);
1378
1379         case OFPUTIL_P_OF11_STD:
1380         case OFPUTIL_P_OF12_OXM:
1381         case OFPUTIL_P_OF13_OXM:
1382         case OFPUTIL_P_OF14_OXM:
1383             /* There is only one variant of each OpenFlow 1.1+ protocol, and we
1384              * verified above that we're not trying to change versions. */
1385             OVS_NOT_REACHED();
1386
1387         case OFPUTIL_P_OF10_STD_TID:
1388         case OFPUTIL_P_OF10_NXM_TID:
1389             OVS_NOT_REACHED();
1390         }
1391     }
1392
1393     cur_tid = (current & OFPUTIL_P_TID) != 0;
1394     want_tid = (want & OFPUTIL_P_TID) != 0;
1395     if (cur_tid != want_tid) {
1396         *next = ofputil_protocol_set_tid(current, want_tid);
1397         return ofputil_make_flow_mod_table_id(want_tid);
1398     }
1399
1400     ovs_assert(current == want);
1401
1402     *next = current;
1403     return NULL;
1404 }
1405
1406 /* Returns an NXT_SET_FLOW_FORMAT message that can be used to set the flow
1407  * format to 'nxff'.  */
1408 struct ofpbuf *
1409 ofputil_encode_nx_set_flow_format(enum nx_flow_format nxff)
1410 {
1411     struct nx_set_flow_format *sff;
1412     struct ofpbuf *msg;
1413
1414     ovs_assert(ofputil_nx_flow_format_is_valid(nxff));
1415
1416     msg = ofpraw_alloc(OFPRAW_NXT_SET_FLOW_FORMAT, OFP10_VERSION, 0);
1417     sff = ofpbuf_put_zeros(msg, sizeof *sff);
1418     sff->format = htonl(nxff);
1419
1420     return msg;
1421 }
1422
1423 /* Returns the base protocol if 'flow_format' is a valid NXFF_* value, false
1424  * otherwise. */
1425 enum ofputil_protocol
1426 ofputil_nx_flow_format_to_protocol(enum nx_flow_format flow_format)
1427 {
1428     switch (flow_format) {
1429     case NXFF_OPENFLOW10:
1430         return OFPUTIL_P_OF10_STD;
1431
1432     case NXFF_NXM:
1433         return OFPUTIL_P_OF10_NXM;
1434
1435     default:
1436         return 0;
1437     }
1438 }
1439
1440 /* Returns true if 'flow_format' is a valid NXFF_* value, false otherwise. */
1441 bool
1442 ofputil_nx_flow_format_is_valid(enum nx_flow_format flow_format)
1443 {
1444     return ofputil_nx_flow_format_to_protocol(flow_format) != 0;
1445 }
1446
1447 /* Returns a string version of 'flow_format', which must be a valid NXFF_*
1448  * value. */
1449 const char *
1450 ofputil_nx_flow_format_to_string(enum nx_flow_format flow_format)
1451 {
1452     switch (flow_format) {
1453     case NXFF_OPENFLOW10:
1454         return "openflow10";
1455     case NXFF_NXM:
1456         return "nxm";
1457     default:
1458         OVS_NOT_REACHED();
1459     }
1460 }
1461
1462 struct ofpbuf *
1463 ofputil_make_set_packet_in_format(enum ofp_version ofp_version,
1464                                   enum nx_packet_in_format packet_in_format)
1465 {
1466     struct nx_set_packet_in_format *spif;
1467     struct ofpbuf *msg;
1468
1469     msg = ofpraw_alloc(OFPRAW_NXT_SET_PACKET_IN_FORMAT, ofp_version, 0);
1470     spif = ofpbuf_put_zeros(msg, sizeof *spif);
1471     spif->format = htonl(packet_in_format);
1472
1473     return msg;
1474 }
1475
1476 /* Returns an OpenFlow message that can be used to turn the flow_mod_table_id
1477  * extension on or off (according to 'flow_mod_table_id'). */
1478 struct ofpbuf *
1479 ofputil_make_flow_mod_table_id(bool flow_mod_table_id)
1480 {
1481     struct nx_flow_mod_table_id *nfmti;
1482     struct ofpbuf *msg;
1483
1484     msg = ofpraw_alloc(OFPRAW_NXT_FLOW_MOD_TABLE_ID, OFP10_VERSION, 0);
1485     nfmti = ofpbuf_put_zeros(msg, sizeof *nfmti);
1486     nfmti->set = flow_mod_table_id;
1487     return msg;
1488 }
1489
1490 struct ofputil_flow_mod_flag {
1491     uint16_t raw_flag;
1492     enum ofp_version min_version, max_version;
1493     enum ofputil_flow_mod_flags flag;
1494 };
1495
1496 static const struct ofputil_flow_mod_flag ofputil_flow_mod_flags[] = {
1497     { OFPFF_SEND_FLOW_REM,   OFP10_VERSION, 0, OFPUTIL_FF_SEND_FLOW_REM },
1498     { OFPFF_CHECK_OVERLAP,   OFP10_VERSION, 0, OFPUTIL_FF_CHECK_OVERLAP },
1499     { OFPFF10_EMERG,         OFP10_VERSION, OFP10_VERSION,
1500       OFPUTIL_FF_EMERG },
1501     { OFPFF12_RESET_COUNTS,  OFP12_VERSION, 0, OFPUTIL_FF_RESET_COUNTS },
1502     { OFPFF13_NO_PKT_COUNTS, OFP13_VERSION, 0, OFPUTIL_FF_NO_PKT_COUNTS },
1503     { OFPFF13_NO_BYT_COUNTS, OFP13_VERSION, 0, OFPUTIL_FF_NO_BYT_COUNTS },
1504     { 0, 0, 0, 0 },
1505 };
1506
1507 static enum ofperr
1508 ofputil_decode_flow_mod_flags(ovs_be16 raw_flags_,
1509                               enum ofp_flow_mod_command command,
1510                               enum ofp_version version,
1511                               enum ofputil_flow_mod_flags *flagsp)
1512 {
1513     uint16_t raw_flags = ntohs(raw_flags_);
1514     const struct ofputil_flow_mod_flag *f;
1515
1516     *flagsp = 0;
1517     for (f = ofputil_flow_mod_flags; f->raw_flag; f++) {
1518         if (raw_flags & f->raw_flag
1519             && version >= f->min_version
1520             && (!f->max_version || version <= f->max_version)) {
1521             raw_flags &= ~f->raw_flag;
1522             *flagsp |= f->flag;
1523         }
1524     }
1525
1526     /* In OF1.0 and OF1.1, "add" always resets counters, and other commands
1527      * never do.
1528      *
1529      * In OF1.2 and later, OFPFF12_RESET_COUNTS controls whether each command
1530      * resets counters. */
1531     if ((version == OFP10_VERSION || version == OFP11_VERSION)
1532         && command == OFPFC_ADD) {
1533         *flagsp |= OFPUTIL_FF_RESET_COUNTS;
1534     }
1535
1536     return raw_flags ? OFPERR_OFPFMFC_BAD_FLAGS : 0;
1537 }
1538
1539 static ovs_be16
1540 ofputil_encode_flow_mod_flags(enum ofputil_flow_mod_flags flags,
1541                               enum ofp_version version)
1542 {
1543     const struct ofputil_flow_mod_flag *f;
1544     uint16_t raw_flags;
1545
1546     raw_flags = 0;
1547     for (f = ofputil_flow_mod_flags; f->raw_flag; f++) {
1548         if (f->flag & flags
1549             && version >= f->min_version
1550             && (!f->max_version || version <= f->max_version)) {
1551             raw_flags |= f->raw_flag;
1552         }
1553     }
1554
1555     return htons(raw_flags);
1556 }
1557
1558 /* Converts an OFPT_FLOW_MOD or NXT_FLOW_MOD message 'oh' into an abstract
1559  * flow_mod in 'fm'.  Returns 0 if successful, otherwise an OpenFlow error
1560  * code.
1561  *
1562  * Uses 'ofpacts' to store the abstract OFPACT_* version of 'oh''s actions.
1563  * The caller must initialize 'ofpacts' and retains ownership of it.
1564  * 'fm->ofpacts' will point into the 'ofpacts' buffer.
1565  *
1566  * Does not validate the flow_mod actions.  The caller should do that, with
1567  * ofpacts_check(). */
1568 enum ofperr
1569 ofputil_decode_flow_mod(struct ofputil_flow_mod *fm,
1570                         const struct ofp_header *oh,
1571                         enum ofputil_protocol protocol,
1572                         struct ofpbuf *ofpacts,
1573                         ofp_port_t max_port, uint8_t max_table)
1574 {
1575     ovs_be16 raw_flags;
1576     enum ofperr error;
1577     struct ofpbuf b;
1578     enum ofpraw raw;
1579
1580     ofpbuf_use_const(&b, oh, ntohs(oh->length));
1581     raw = ofpraw_pull_assert(&b);
1582     if (raw == OFPRAW_OFPT11_FLOW_MOD) {
1583         /* Standard OpenFlow 1.1+ flow_mod. */
1584         const struct ofp11_flow_mod *ofm;
1585
1586         ofm = ofpbuf_pull(&b, sizeof *ofm);
1587
1588         error = ofputil_pull_ofp11_match(&b, &fm->match, NULL);
1589         if (error) {
1590             return error;
1591         }
1592
1593         error = ofpacts_pull_openflow_instructions(&b, ofpbuf_size(&b), oh->version,
1594                                                    ofpacts);
1595         if (error) {
1596             return error;
1597         }
1598
1599         /* Translate the message. */
1600         fm->priority = ntohs(ofm->priority);
1601         if (ofm->command == OFPFC_ADD
1602             || (oh->version == OFP11_VERSION
1603                 && (ofm->command == OFPFC_MODIFY ||
1604                     ofm->command == OFPFC_MODIFY_STRICT)
1605                 && ofm->cookie_mask == htonll(0))) {
1606             /* In OpenFlow 1.1 only, a "modify" or "modify-strict" that does
1607              * not match on the cookie is treated as an "add" if there is no
1608              * match. */
1609             fm->cookie = htonll(0);
1610             fm->cookie_mask = htonll(0);
1611             fm->new_cookie = ofm->cookie;
1612         } else {
1613             fm->cookie = ofm->cookie;
1614             fm->cookie_mask = ofm->cookie_mask;
1615             fm->new_cookie = OVS_BE64_MAX;
1616         }
1617         fm->modify_cookie = false;
1618         fm->command = ofm->command;
1619
1620         /* Get table ID.
1621          *
1622          * OF1.1 entirely forbids table_id == OFPTT_ALL.
1623          * OF1.2+ allows table_id == OFPTT_ALL only for deletes. */
1624         fm->table_id = ofm->table_id;
1625         if (fm->table_id == OFPTT_ALL
1626             && (oh->version == OFP11_VERSION
1627                 || (ofm->command != OFPFC_DELETE &&
1628                     ofm->command != OFPFC_DELETE_STRICT))) {
1629             return OFPERR_OFPFMFC_BAD_TABLE_ID;
1630         }
1631
1632         fm->idle_timeout = ntohs(ofm->idle_timeout);
1633         fm->hard_timeout = ntohs(ofm->hard_timeout);
1634         fm->buffer_id = ntohl(ofm->buffer_id);
1635         error = ofputil_port_from_ofp11(ofm->out_port, &fm->out_port);
1636         if (error) {
1637             return error;
1638         }
1639
1640         fm->out_group = (ofm->command == OFPFC_DELETE ||
1641                          ofm->command == OFPFC_DELETE_STRICT
1642                          ? ntohl(ofm->out_group)
1643                          : OFPG11_ANY);
1644         raw_flags = ofm->flags;
1645     } else {
1646         uint16_t command;
1647
1648         if (raw == OFPRAW_OFPT10_FLOW_MOD) {
1649             /* Standard OpenFlow 1.0 flow_mod. */
1650             const struct ofp10_flow_mod *ofm;
1651
1652             /* Get the ofp10_flow_mod. */
1653             ofm = ofpbuf_pull(&b, sizeof *ofm);
1654
1655             /* Translate the rule. */
1656             ofputil_match_from_ofp10_match(&ofm->match, &fm->match);
1657             ofputil_normalize_match(&fm->match);
1658
1659             /* Now get the actions. */
1660             error = ofpacts_pull_openflow_actions(&b, ofpbuf_size(&b), oh->version,
1661                                                   ofpacts);
1662             if (error) {
1663                 return error;
1664             }
1665
1666             /* OpenFlow 1.0 says that exact-match rules have to have the
1667              * highest possible priority. */
1668             fm->priority = (ofm->match.wildcards & htonl(OFPFW10_ALL)
1669                             ? ntohs(ofm->priority)
1670                             : UINT16_MAX);
1671
1672             /* Translate the message. */
1673             command = ntohs(ofm->command);
1674             fm->cookie = htonll(0);
1675             fm->cookie_mask = htonll(0);
1676             fm->new_cookie = ofm->cookie;
1677             fm->idle_timeout = ntohs(ofm->idle_timeout);
1678             fm->hard_timeout = ntohs(ofm->hard_timeout);
1679             fm->buffer_id = ntohl(ofm->buffer_id);
1680             fm->out_port = u16_to_ofp(ntohs(ofm->out_port));
1681             fm->out_group = OFPG11_ANY;
1682             raw_flags = ofm->flags;
1683         } else if (raw == OFPRAW_NXT_FLOW_MOD) {
1684             /* Nicira extended flow_mod. */
1685             const struct nx_flow_mod *nfm;
1686
1687             /* Dissect the message. */
1688             nfm = ofpbuf_pull(&b, sizeof *nfm);
1689             error = nx_pull_match(&b, ntohs(nfm->match_len),
1690                                   &fm->match, &fm->cookie, &fm->cookie_mask);
1691             if (error) {
1692                 return error;
1693             }
1694             error = ofpacts_pull_openflow_actions(&b, ofpbuf_size(&b), oh->version,
1695                                                   ofpacts);
1696             if (error) {
1697                 return error;
1698             }
1699
1700             /* Translate the message. */
1701             command = ntohs(nfm->command);
1702             if ((command & 0xff) == OFPFC_ADD && fm->cookie_mask) {
1703                 /* Flow additions may only set a new cookie, not match an
1704                  * existing cookie. */
1705                 return OFPERR_NXBRC_NXM_INVALID;
1706             }
1707             fm->priority = ntohs(nfm->priority);
1708             fm->new_cookie = nfm->cookie;
1709             fm->idle_timeout = ntohs(nfm->idle_timeout);
1710             fm->hard_timeout = ntohs(nfm->hard_timeout);
1711             fm->buffer_id = ntohl(nfm->buffer_id);
1712             fm->out_port = u16_to_ofp(ntohs(nfm->out_port));
1713             fm->out_group = OFPG11_ANY;
1714             raw_flags = nfm->flags;
1715         } else {
1716             OVS_NOT_REACHED();
1717         }
1718
1719         fm->modify_cookie = fm->new_cookie != OVS_BE64_MAX;
1720         if (protocol & OFPUTIL_P_TID) {
1721             fm->command = command & 0xff;
1722             fm->table_id = command >> 8;
1723         } else {
1724             fm->command = command;
1725             fm->table_id = 0xff;
1726         }
1727     }
1728
1729     fm->ofpacts = ofpbuf_data(ofpacts);
1730     fm->ofpacts_len = ofpbuf_size(ofpacts);
1731
1732     error = ofputil_decode_flow_mod_flags(raw_flags, fm->command,
1733                                           oh->version, &fm->flags);
1734     if (error) {
1735         return error;
1736     }
1737
1738     if (fm->flags & OFPUTIL_FF_EMERG) {
1739         /* We do not support the OpenFlow 1.0 emergency flow cache, which
1740          * is not required in OpenFlow 1.0.1 and removed from OpenFlow 1.1.
1741          *
1742          * OpenFlow 1.0 specifies the error code to use when idle_timeout
1743          * or hard_timeout is nonzero.  Otherwise, there is no good error
1744          * code, so just state that the flow table is full. */
1745         return (fm->hard_timeout || fm->idle_timeout
1746                 ? OFPERR_OFPFMFC_BAD_EMERG_TIMEOUT
1747                 : OFPERR_OFPFMFC_TABLE_FULL);
1748     }
1749
1750     return ofpacts_check_consistency(fm->ofpacts, fm->ofpacts_len,
1751                                      &fm->match.flow, max_port,
1752                                      fm->table_id, max_table, protocol);
1753 }
1754
1755 static enum ofperr
1756 ofputil_pull_bands(struct ofpbuf *msg, size_t len, uint16_t *n_bands,
1757                    struct ofpbuf *bands)
1758 {
1759     const struct ofp13_meter_band_header *ombh;
1760     struct ofputil_meter_band *mb;
1761     uint16_t n = 0;
1762
1763     ombh = ofpbuf_try_pull(msg, len);
1764     if (!ombh) {
1765         return OFPERR_OFPBRC_BAD_LEN;
1766     }
1767
1768     while (len >= sizeof (struct ofp13_meter_band_drop)) {
1769         size_t ombh_len = ntohs(ombh->len);
1770         /* All supported band types have the same length. */
1771         if (ombh_len != sizeof (struct ofp13_meter_band_drop)) {
1772             return OFPERR_OFPBRC_BAD_LEN;
1773         }
1774         mb = ofpbuf_put_uninit(bands, sizeof *mb);
1775         mb->type = ntohs(ombh->type);
1776         if (mb->type != OFPMBT13_DROP && mb->type != OFPMBT13_DSCP_REMARK) {
1777             return OFPERR_OFPMMFC_BAD_BAND;
1778         }
1779         mb->rate = ntohl(ombh->rate);
1780         mb->burst_size = ntohl(ombh->burst_size);
1781         mb->prec_level = (mb->type == OFPMBT13_DSCP_REMARK) ?
1782             ((struct ofp13_meter_band_dscp_remark *)ombh)->prec_level : 0;
1783         n++;
1784         len -= ombh_len;
1785         ombh = ALIGNED_CAST(struct ofp13_meter_band_header *,
1786                             (char *) ombh + ombh_len);
1787     }
1788     if (len) {
1789         return OFPERR_OFPBRC_BAD_LEN;
1790     }
1791     *n_bands = n;
1792     return 0;
1793 }
1794
1795 enum ofperr
1796 ofputil_decode_meter_mod(const struct ofp_header *oh,
1797                          struct ofputil_meter_mod *mm,
1798                          struct ofpbuf *bands)
1799 {
1800     const struct ofp13_meter_mod *omm;
1801     struct ofpbuf b;
1802
1803     ofpbuf_use_const(&b, oh, ntohs(oh->length));
1804     ofpraw_pull_assert(&b);
1805     omm = ofpbuf_pull(&b, sizeof *omm);
1806
1807     /* Translate the message. */
1808     mm->command = ntohs(omm->command);
1809     if (mm->command != OFPMC13_ADD &&
1810         mm->command != OFPMC13_MODIFY &&
1811         mm->command != OFPMC13_DELETE) {
1812         return OFPERR_OFPMMFC_BAD_COMMAND;
1813     }
1814     mm->meter.meter_id = ntohl(omm->meter_id);
1815
1816     if (mm->command == OFPMC13_DELETE) {
1817         mm->meter.flags = 0;
1818         mm->meter.n_bands = 0;
1819         mm->meter.bands = NULL;
1820     } else {
1821         enum ofperr error;
1822
1823         mm->meter.flags = ntohs(omm->flags);
1824         if (mm->meter.flags & OFPMF13_KBPS &&
1825             mm->meter.flags & OFPMF13_PKTPS) {
1826             return OFPERR_OFPMMFC_BAD_FLAGS;
1827         }
1828         mm->meter.bands = ofpbuf_data(bands);
1829
1830         error = ofputil_pull_bands(&b, ofpbuf_size(&b), &mm->meter.n_bands, bands);
1831         if (error) {
1832             return error;
1833         }
1834     }
1835     return 0;
1836 }
1837
1838 void
1839 ofputil_decode_meter_request(const struct ofp_header *oh, uint32_t *meter_id)
1840 {
1841     const struct ofp13_meter_multipart_request *omr = ofpmsg_body(oh);
1842     *meter_id = ntohl(omr->meter_id);
1843 }
1844
1845 struct ofpbuf *
1846 ofputil_encode_meter_request(enum ofp_version ofp_version,
1847                              enum ofputil_meter_request_type type,
1848                              uint32_t meter_id)
1849 {
1850     struct ofpbuf *msg;
1851
1852     enum ofpraw raw;
1853
1854     switch (type) {
1855     case OFPUTIL_METER_CONFIG:
1856         raw = OFPRAW_OFPST13_METER_CONFIG_REQUEST;
1857         break;
1858     case OFPUTIL_METER_STATS:
1859         raw = OFPRAW_OFPST13_METER_REQUEST;
1860         break;
1861     default:
1862     case OFPUTIL_METER_FEATURES:
1863         raw = OFPRAW_OFPST13_METER_FEATURES_REQUEST;
1864         break;
1865     }
1866
1867     msg = ofpraw_alloc(raw, ofp_version, 0);
1868
1869     if (type != OFPUTIL_METER_FEATURES) {
1870         struct ofp13_meter_multipart_request *omr;
1871         omr = ofpbuf_put_zeros(msg, sizeof *omr);
1872         omr->meter_id = htonl(meter_id);
1873     }
1874     return msg;
1875 }
1876
1877 static void
1878 ofputil_put_bands(uint16_t n_bands, const struct ofputil_meter_band *mb,
1879                   struct ofpbuf *msg)
1880 {
1881     uint16_t n = 0;
1882
1883     for (n = 0; n < n_bands; ++n) {
1884         /* Currently all band types have same size. */
1885         struct ofp13_meter_band_dscp_remark *ombh;
1886         size_t ombh_len = sizeof *ombh;
1887
1888         ombh = ofpbuf_put_zeros(msg, ombh_len);
1889
1890         ombh->type = htons(mb->type);
1891         ombh->len = htons(ombh_len);
1892         ombh->rate = htonl(mb->rate);
1893         ombh->burst_size = htonl(mb->burst_size);
1894         ombh->prec_level = mb->prec_level;
1895
1896         mb++;
1897     }
1898 }
1899
1900 /* Encode a meter stat for 'mc' and append it to 'replies'. */
1901 void
1902 ofputil_append_meter_config(struct list *replies,
1903                             const struct ofputil_meter_config *mc)
1904 {
1905     struct ofpbuf *msg = ofpbuf_from_list(list_back(replies));
1906     size_t start_ofs = ofpbuf_size(msg);
1907     struct ofp13_meter_config *reply = ofpbuf_put_uninit(msg, sizeof *reply);
1908     reply->flags = htons(mc->flags);
1909     reply->meter_id = htonl(mc->meter_id);
1910
1911     ofputil_put_bands(mc->n_bands, mc->bands, msg);
1912
1913     reply->length = htons(ofpbuf_size(msg) - start_ofs);
1914
1915     ofpmp_postappend(replies, start_ofs);
1916 }
1917
1918 /* Encode a meter stat for 'ms' and append it to 'replies'. */
1919 void
1920 ofputil_append_meter_stats(struct list *replies,
1921                            const struct ofputil_meter_stats *ms)
1922 {
1923     struct ofp13_meter_stats *reply;
1924     uint16_t n = 0;
1925     uint16_t len;
1926
1927     len = sizeof *reply + ms->n_bands * sizeof(struct ofp13_meter_band_stats);
1928     reply = ofpmp_append(replies, len);
1929
1930     reply->meter_id = htonl(ms->meter_id);
1931     reply->len = htons(len);
1932     memset(reply->pad, 0, sizeof reply->pad);
1933     reply->flow_count = htonl(ms->flow_count);
1934     reply->packet_in_count = htonll(ms->packet_in_count);
1935     reply->byte_in_count = htonll(ms->byte_in_count);
1936     reply->duration_sec = htonl(ms->duration_sec);
1937     reply->duration_nsec = htonl(ms->duration_nsec);
1938
1939     for (n = 0; n < ms->n_bands; ++n) {
1940         const struct ofputil_meter_band_stats *src = &ms->bands[n];
1941         struct ofp13_meter_band_stats *dst = &reply->band_stats[n];
1942
1943         dst->packet_band_count = htonll(src->packet_count);
1944         dst->byte_band_count = htonll(src->byte_count);
1945     }
1946 }
1947
1948 /* Converts an OFPMP_METER_CONFIG reply in 'msg' into an abstract
1949  * ofputil_meter_config in 'mc', with mc->bands pointing to bands decoded into
1950  * 'bands'.  The caller must have initialized 'bands' and retains ownership of
1951  * it across the call.
1952  *
1953  * Multiple OFPST13_METER_CONFIG replies can be packed into a single OpenFlow
1954  * message.  Calling this function multiple times for a single 'msg' iterates
1955  * through the replies.  'bands' is cleared for each reply.
1956  *
1957  * Returns 0 if successful, EOF if no replies were left in this 'msg',
1958  * otherwise a positive errno value. */
1959 int
1960 ofputil_decode_meter_config(struct ofpbuf *msg,
1961                             struct ofputil_meter_config *mc,
1962                             struct ofpbuf *bands)
1963 {
1964     const struct ofp13_meter_config *omc;
1965     enum ofperr err;
1966
1967     /* Pull OpenFlow headers for the first call. */
1968     if (!msg->frame) {
1969         ofpraw_pull_assert(msg);
1970     }
1971
1972     if (!ofpbuf_size(msg)) {
1973         return EOF;
1974     }
1975
1976     omc = ofpbuf_try_pull(msg, sizeof *omc);
1977     if (!omc) {
1978         VLOG_WARN_RL(&bad_ofmsg_rl,
1979                      "OFPMP_METER_CONFIG reply has %"PRIu32" leftover bytes at end",
1980                      ofpbuf_size(msg));
1981         return OFPERR_OFPBRC_BAD_LEN;
1982     }
1983
1984     ofpbuf_clear(bands);
1985     err = ofputil_pull_bands(msg, ntohs(omc->length) - sizeof *omc,
1986                              &mc->n_bands, bands);
1987     if (err) {
1988         return err;
1989     }
1990     mc->meter_id = ntohl(omc->meter_id);
1991     mc->flags = ntohs(omc->flags);
1992     mc->bands = ofpbuf_data(bands);
1993
1994     return 0;
1995 }
1996
1997 static enum ofperr
1998 ofputil_pull_band_stats(struct ofpbuf *msg, size_t len, uint16_t *n_bands,
1999                         struct ofpbuf *bands)
2000 {
2001     const struct ofp13_meter_band_stats *ombs;
2002     struct ofputil_meter_band_stats *mbs;
2003     uint16_t n, i;
2004
2005     ombs = ofpbuf_try_pull(msg, len);
2006     if (!ombs) {
2007         return OFPERR_OFPBRC_BAD_LEN;
2008     }
2009
2010     n = len / sizeof *ombs;
2011     if (len != n * sizeof *ombs) {
2012         return OFPERR_OFPBRC_BAD_LEN;
2013     }
2014
2015     mbs = ofpbuf_put_uninit(bands, len);
2016
2017     for (i = 0; i < n; ++i) {
2018         mbs[i].packet_count = ntohll(ombs[i].packet_band_count);
2019         mbs[i].byte_count = ntohll(ombs[i].byte_band_count);
2020     }
2021     *n_bands = n;
2022     return 0;
2023 }
2024
2025 /* Converts an OFPMP_METER reply in 'msg' into an abstract
2026  * ofputil_meter_stats in 'ms', with ms->bands pointing to band stats
2027  * decoded into 'bands'.
2028  *
2029  * Multiple OFPMP_METER replies can be packed into a single OpenFlow
2030  * message.  Calling this function multiple times for a single 'msg' iterates
2031  * through the replies.  'bands' is cleared for each reply.
2032  *
2033  * Returns 0 if successful, EOF if no replies were left in this 'msg',
2034  * otherwise a positive errno value. */
2035 int
2036 ofputil_decode_meter_stats(struct ofpbuf *msg,
2037                            struct ofputil_meter_stats *ms,
2038                            struct ofpbuf *bands)
2039 {
2040     const struct ofp13_meter_stats *oms;
2041     enum ofperr err;
2042
2043     /* Pull OpenFlow headers for the first call. */
2044     if (!msg->frame) {
2045         ofpraw_pull_assert(msg);
2046     }
2047
2048     if (!ofpbuf_size(msg)) {
2049         return EOF;
2050     }
2051
2052     oms = ofpbuf_try_pull(msg, sizeof *oms);
2053     if (!oms) {
2054         VLOG_WARN_RL(&bad_ofmsg_rl,
2055                      "OFPMP_METER reply has %"PRIu32" leftover bytes at end",
2056                      ofpbuf_size(msg));
2057         return OFPERR_OFPBRC_BAD_LEN;
2058     }
2059
2060     ofpbuf_clear(bands);
2061     err = ofputil_pull_band_stats(msg, ntohs(oms->len) - sizeof *oms,
2062                                   &ms->n_bands, bands);
2063     if (err) {
2064         return err;
2065     }
2066     ms->meter_id = ntohl(oms->meter_id);
2067     ms->flow_count = ntohl(oms->flow_count);
2068     ms->packet_in_count = ntohll(oms->packet_in_count);
2069     ms->byte_in_count = ntohll(oms->byte_in_count);
2070     ms->duration_sec = ntohl(oms->duration_sec);
2071     ms->duration_nsec = ntohl(oms->duration_nsec);
2072     ms->bands = ofpbuf_data(bands);
2073
2074     return 0;
2075 }
2076
2077 void
2078 ofputil_decode_meter_features(const struct ofp_header *oh,
2079                               struct ofputil_meter_features *mf)
2080 {
2081     const struct ofp13_meter_features *omf = ofpmsg_body(oh);
2082
2083     mf->max_meters = ntohl(omf->max_meter);
2084     mf->band_types = ntohl(omf->band_types);
2085     mf->capabilities = ntohl(omf->capabilities);
2086     mf->max_bands = omf->max_bands;
2087     mf->max_color = omf->max_color;
2088 }
2089
2090 struct ofpbuf *
2091 ofputil_encode_meter_features_reply(const struct ofputil_meter_features *mf,
2092                                     const struct ofp_header *request)
2093 {
2094     struct ofpbuf *reply;
2095     struct ofp13_meter_features *omf;
2096
2097     reply = ofpraw_alloc_stats_reply(request, 0);
2098     omf = ofpbuf_put_zeros(reply, sizeof *omf);
2099
2100     omf->max_meter = htonl(mf->max_meters);
2101     omf->band_types = htonl(mf->band_types);
2102     omf->capabilities = htonl(mf->capabilities);
2103     omf->max_bands = mf->max_bands;
2104     omf->max_color = mf->max_color;
2105
2106     return reply;
2107 }
2108
2109 struct ofpbuf *
2110 ofputil_encode_meter_mod(enum ofp_version ofp_version,
2111                          const struct ofputil_meter_mod *mm)
2112 {
2113     struct ofpbuf *msg;
2114
2115     struct ofp13_meter_mod *omm;
2116
2117     msg = ofpraw_alloc(OFPRAW_OFPT13_METER_MOD, ofp_version,
2118                        NXM_TYPICAL_LEN + mm->meter.n_bands * 16);
2119     omm = ofpbuf_put_zeros(msg, sizeof *omm);
2120     omm->command = htons(mm->command);
2121     if (mm->command != OFPMC13_DELETE) {
2122         omm->flags = htons(mm->meter.flags);
2123     }
2124     omm->meter_id = htonl(mm->meter.meter_id);
2125
2126     ofputil_put_bands(mm->meter.n_bands, mm->meter.bands, msg);
2127
2128     ofpmsg_update_length(msg);
2129     return msg;
2130 }
2131
2132 static ovs_be16
2133 ofputil_tid_command(const struct ofputil_flow_mod *fm,
2134                     enum ofputil_protocol protocol)
2135 {
2136     return htons(protocol & OFPUTIL_P_TID
2137                  ? (fm->command & 0xff) | (fm->table_id << 8)
2138                  : fm->command);
2139 }
2140
2141 /* Converts 'fm' into an OFPT_FLOW_MOD or NXT_FLOW_MOD message according to
2142  * 'protocol' and returns the message. */
2143 struct ofpbuf *
2144 ofputil_encode_flow_mod(const struct ofputil_flow_mod *fm,
2145                         enum ofputil_protocol protocol)
2146 {
2147     enum ofp_version version = ofputil_protocol_to_ofp_version(protocol);
2148     ovs_be16 raw_flags = ofputil_encode_flow_mod_flags(fm->flags, version);
2149     struct ofpbuf *msg;
2150
2151     switch (protocol) {
2152     case OFPUTIL_P_OF11_STD:
2153     case OFPUTIL_P_OF12_OXM:
2154     case OFPUTIL_P_OF13_OXM:
2155     case OFPUTIL_P_OF14_OXM: {
2156         struct ofp11_flow_mod *ofm;
2157         int tailroom;
2158
2159         tailroom = ofputil_match_typical_len(protocol) + fm->ofpacts_len;
2160         msg = ofpraw_alloc(OFPRAW_OFPT11_FLOW_MOD, version, tailroom);
2161         ofm = ofpbuf_put_zeros(msg, sizeof *ofm);
2162         if ((protocol == OFPUTIL_P_OF11_STD
2163              && (fm->command == OFPFC_MODIFY ||
2164                  fm->command == OFPFC_MODIFY_STRICT)
2165              && fm->cookie_mask == htonll(0))
2166             || fm->command == OFPFC_ADD) {
2167             ofm->cookie = fm->new_cookie;
2168         } else {
2169             ofm->cookie = fm->cookie;
2170         }
2171         ofm->cookie_mask = fm->cookie_mask;
2172         if (fm->table_id != OFPTT_ALL
2173             || (protocol != OFPUTIL_P_OF11_STD
2174                 && (fm->command == OFPFC_DELETE ||
2175                     fm->command == OFPFC_DELETE_STRICT))) {
2176             ofm->table_id = fm->table_id;
2177         } else {
2178             ofm->table_id = 0;
2179         }
2180         ofm->command = fm->command;
2181         ofm->idle_timeout = htons(fm->idle_timeout);
2182         ofm->hard_timeout = htons(fm->hard_timeout);
2183         ofm->priority = htons(fm->priority);
2184         ofm->buffer_id = htonl(fm->buffer_id);
2185         ofm->out_port = ofputil_port_to_ofp11(fm->out_port);
2186         ofm->out_group = htonl(fm->out_group);
2187         ofm->flags = raw_flags;
2188         ofputil_put_ofp11_match(msg, &fm->match, protocol);
2189         ofpacts_put_openflow_instructions(fm->ofpacts, fm->ofpacts_len, msg,
2190                                           version);
2191         break;
2192     }
2193
2194     case OFPUTIL_P_OF10_STD:
2195     case OFPUTIL_P_OF10_STD_TID: {
2196         struct ofp10_flow_mod *ofm;
2197
2198         msg = ofpraw_alloc(OFPRAW_OFPT10_FLOW_MOD, OFP10_VERSION,
2199                            fm->ofpacts_len);
2200         ofm = ofpbuf_put_zeros(msg, sizeof *ofm);
2201         ofputil_match_to_ofp10_match(&fm->match, &ofm->match);
2202         ofm->cookie = fm->new_cookie;
2203         ofm->command = ofputil_tid_command(fm, protocol);
2204         ofm->idle_timeout = htons(fm->idle_timeout);
2205         ofm->hard_timeout = htons(fm->hard_timeout);
2206         ofm->priority = htons(fm->priority);
2207         ofm->buffer_id = htonl(fm->buffer_id);
2208         ofm->out_port = htons(ofp_to_u16(fm->out_port));
2209         ofm->flags = raw_flags;
2210         ofpacts_put_openflow_actions(fm->ofpacts, fm->ofpacts_len, msg,
2211                                      version);
2212         break;
2213     }
2214
2215     case OFPUTIL_P_OF10_NXM:
2216     case OFPUTIL_P_OF10_NXM_TID: {
2217         struct nx_flow_mod *nfm;
2218         int match_len;
2219
2220         msg = ofpraw_alloc(OFPRAW_NXT_FLOW_MOD, OFP10_VERSION,
2221                            NXM_TYPICAL_LEN + fm->ofpacts_len);
2222         nfm = ofpbuf_put_zeros(msg, sizeof *nfm);
2223         nfm->command = ofputil_tid_command(fm, protocol);
2224         nfm->cookie = fm->new_cookie;
2225         match_len = nx_put_match(msg, &fm->match, fm->cookie, fm->cookie_mask);
2226         nfm = ofpbuf_l3(msg);
2227         nfm->idle_timeout = htons(fm->idle_timeout);
2228         nfm->hard_timeout = htons(fm->hard_timeout);
2229         nfm->priority = htons(fm->priority);
2230         nfm->buffer_id = htonl(fm->buffer_id);
2231         nfm->out_port = htons(ofp_to_u16(fm->out_port));
2232         nfm->flags = raw_flags;
2233         nfm->match_len = htons(match_len);
2234         ofpacts_put_openflow_actions(fm->ofpacts, fm->ofpacts_len, msg,
2235                                      version);
2236         break;
2237     }
2238
2239     default:
2240         OVS_NOT_REACHED();
2241     }
2242
2243     ofpmsg_update_length(msg);
2244     return msg;
2245 }
2246
2247 static enum ofperr
2248 ofputil_decode_ofpst10_flow_request(struct ofputil_flow_stats_request *fsr,
2249                                     const struct ofp10_flow_stats_request *ofsr,
2250                                     bool aggregate)
2251 {
2252     fsr->aggregate = aggregate;
2253     ofputil_match_from_ofp10_match(&ofsr->match, &fsr->match);
2254     fsr->out_port = u16_to_ofp(ntohs(ofsr->out_port));
2255     fsr->out_group = OFPG11_ANY;
2256     fsr->table_id = ofsr->table_id;
2257     fsr->cookie = fsr->cookie_mask = htonll(0);
2258
2259     return 0;
2260 }
2261
2262 static enum ofperr
2263 ofputil_decode_ofpst11_flow_request(struct ofputil_flow_stats_request *fsr,
2264                                     struct ofpbuf *b, bool aggregate)
2265 {
2266     const struct ofp11_flow_stats_request *ofsr;
2267     enum ofperr error;
2268
2269     ofsr = ofpbuf_pull(b, sizeof *ofsr);
2270     fsr->aggregate = aggregate;
2271     fsr->table_id = ofsr->table_id;
2272     error = ofputil_port_from_ofp11(ofsr->out_port, &fsr->out_port);
2273     if (error) {
2274         return error;
2275     }
2276     fsr->out_group = ntohl(ofsr->out_group);
2277     fsr->cookie = ofsr->cookie;
2278     fsr->cookie_mask = ofsr->cookie_mask;
2279     error = ofputil_pull_ofp11_match(b, &fsr->match, NULL);
2280     if (error) {
2281         return error;
2282     }
2283
2284     return 0;
2285 }
2286
2287 static enum ofperr
2288 ofputil_decode_nxst_flow_request(struct ofputil_flow_stats_request *fsr,
2289                                  struct ofpbuf *b, bool aggregate)
2290 {
2291     const struct nx_flow_stats_request *nfsr;
2292     enum ofperr error;
2293
2294     nfsr = ofpbuf_pull(b, sizeof *nfsr);
2295     error = nx_pull_match(b, ntohs(nfsr->match_len), &fsr->match,
2296                           &fsr->cookie, &fsr->cookie_mask);
2297     if (error) {
2298         return error;
2299     }
2300     if (ofpbuf_size(b)) {
2301         return OFPERR_OFPBRC_BAD_LEN;
2302     }
2303
2304     fsr->aggregate = aggregate;
2305     fsr->out_port = u16_to_ofp(ntohs(nfsr->out_port));
2306     fsr->out_group = OFPG11_ANY;
2307     fsr->table_id = nfsr->table_id;
2308
2309     return 0;
2310 }
2311
2312 /* Constructs and returns an OFPT_QUEUE_GET_CONFIG request for the specified
2313  * 'port', suitable for OpenFlow version 'version'. */
2314 struct ofpbuf *
2315 ofputil_encode_queue_get_config_request(enum ofp_version version,
2316                                         ofp_port_t port)
2317 {
2318     struct ofpbuf *request;
2319
2320     if (version == OFP10_VERSION) {
2321         struct ofp10_queue_get_config_request *qgcr10;
2322
2323         request = ofpraw_alloc(OFPRAW_OFPT10_QUEUE_GET_CONFIG_REQUEST,
2324                                version, 0);
2325         qgcr10 = ofpbuf_put_zeros(request, sizeof *qgcr10);
2326         qgcr10->port = htons(ofp_to_u16(port));
2327     } else {
2328         struct ofp11_queue_get_config_request *qgcr11;
2329
2330         request = ofpraw_alloc(OFPRAW_OFPT11_QUEUE_GET_CONFIG_REQUEST,
2331                                version, 0);
2332         qgcr11 = ofpbuf_put_zeros(request, sizeof *qgcr11);
2333         qgcr11->port = ofputil_port_to_ofp11(port);
2334     }
2335
2336     return request;
2337 }
2338
2339 /* Parses OFPT_QUEUE_GET_CONFIG request 'oh', storing the port specified by the
2340  * request into '*port'.  Returns 0 if successful, otherwise an OpenFlow error
2341  * code. */
2342 enum ofperr
2343 ofputil_decode_queue_get_config_request(const struct ofp_header *oh,
2344                                         ofp_port_t *port)
2345 {
2346     const struct ofp10_queue_get_config_request *qgcr10;
2347     const struct ofp11_queue_get_config_request *qgcr11;
2348     enum ofpraw raw;
2349     struct ofpbuf b;
2350
2351     ofpbuf_use_const(&b, oh, ntohs(oh->length));
2352     raw = ofpraw_pull_assert(&b);
2353
2354     switch ((int) raw) {
2355     case OFPRAW_OFPT10_QUEUE_GET_CONFIG_REQUEST:
2356         qgcr10 = ofpbuf_data(&b);
2357         *port = u16_to_ofp(ntohs(qgcr10->port));
2358         return 0;
2359
2360     case OFPRAW_OFPT11_QUEUE_GET_CONFIG_REQUEST:
2361         qgcr11 = ofpbuf_data(&b);
2362         return ofputil_port_from_ofp11(qgcr11->port, port);
2363     }
2364
2365     OVS_NOT_REACHED();
2366 }
2367
2368 /* Constructs and returns the beginning of a reply to
2369  * OFPT_QUEUE_GET_CONFIG_REQUEST 'oh'.  The caller may append information about
2370  * individual queues with ofputil_append_queue_get_config_reply(). */
2371 struct ofpbuf *
2372 ofputil_encode_queue_get_config_reply(const struct ofp_header *oh)
2373 {
2374     struct ofp10_queue_get_config_reply *qgcr10;
2375     struct ofp11_queue_get_config_reply *qgcr11;
2376     struct ofpbuf *reply;
2377     enum ofperr error;
2378     struct ofpbuf b;
2379     enum ofpraw raw;
2380     ofp_port_t port;
2381
2382     error = ofputil_decode_queue_get_config_request(oh, &port);
2383     ovs_assert(!error);
2384
2385     ofpbuf_use_const(&b, oh, ntohs(oh->length));
2386     raw = ofpraw_pull_assert(&b);
2387
2388     switch ((int) raw) {
2389     case OFPRAW_OFPT10_QUEUE_GET_CONFIG_REQUEST:
2390         reply = ofpraw_alloc_reply(OFPRAW_OFPT10_QUEUE_GET_CONFIG_REPLY,
2391                                    oh, 0);
2392         qgcr10 = ofpbuf_put_zeros(reply, sizeof *qgcr10);
2393         qgcr10->port = htons(ofp_to_u16(port));
2394         break;
2395
2396     case OFPRAW_OFPT11_QUEUE_GET_CONFIG_REQUEST:
2397         reply = ofpraw_alloc_reply(OFPRAW_OFPT11_QUEUE_GET_CONFIG_REPLY,
2398                                    oh, 0);
2399         qgcr11 = ofpbuf_put_zeros(reply, sizeof *qgcr11);
2400         qgcr11->port = ofputil_port_to_ofp11(port);
2401         break;
2402
2403     default:
2404         OVS_NOT_REACHED();
2405     }
2406
2407     return reply;
2408 }
2409
2410 static void
2411 put_queue_rate(struct ofpbuf *reply, enum ofp_queue_properties property,
2412                uint16_t rate)
2413 {
2414     if (rate != UINT16_MAX) {
2415         struct ofp_queue_prop_rate *oqpr;
2416
2417         oqpr = ofpbuf_put_zeros(reply, sizeof *oqpr);
2418         oqpr->prop_header.property = htons(property);
2419         oqpr->prop_header.len = htons(sizeof *oqpr);
2420         oqpr->rate = htons(rate);
2421     }
2422 }
2423
2424 /* Appends a queue description for 'queue_id' to the
2425  * OFPT_QUEUE_GET_CONFIG_REPLY already in 'oh'. */
2426 void
2427 ofputil_append_queue_get_config_reply(struct ofpbuf *reply,
2428                                       const struct ofputil_queue_config *oqc)
2429 {
2430     const struct ofp_header *oh = ofpbuf_data(reply);
2431     size_t start_ofs, len_ofs;
2432     ovs_be16 *len;
2433
2434     start_ofs = ofpbuf_size(reply);
2435     if (oh->version < OFP12_VERSION) {
2436         struct ofp10_packet_queue *opq10;
2437
2438         opq10 = ofpbuf_put_zeros(reply, sizeof *opq10);
2439         opq10->queue_id = htonl(oqc->queue_id);
2440         len_ofs = (char *) &opq10->len - (char *) ofpbuf_data(reply);
2441     } else {
2442         struct ofp11_queue_get_config_reply *qgcr11;
2443         struct ofp12_packet_queue *opq12;
2444         ovs_be32 port;
2445
2446         qgcr11 = ofpbuf_l3(reply);
2447         port = qgcr11->port;
2448
2449         opq12 = ofpbuf_put_zeros(reply, sizeof *opq12);
2450         opq12->port = port;
2451         opq12->queue_id = htonl(oqc->queue_id);
2452         len_ofs = (char *) &opq12->len - (char *) ofpbuf_data(reply);
2453     }
2454
2455     put_queue_rate(reply, OFPQT_MIN_RATE, oqc->min_rate);
2456     put_queue_rate(reply, OFPQT_MAX_RATE, oqc->max_rate);
2457
2458     len = ofpbuf_at(reply, len_ofs, sizeof *len);
2459     *len = htons(ofpbuf_size(reply) - start_ofs);
2460 }
2461
2462 /* Decodes the initial part of an OFPT_QUEUE_GET_CONFIG_REPLY from 'reply' and
2463  * stores in '*port' the port that the reply is about.  The caller may call
2464  * ofputil_pull_queue_get_config_reply() to obtain information about individual
2465  * queues included in the reply.  Returns 0 if successful, otherwise an
2466  * ofperr.*/
2467 enum ofperr
2468 ofputil_decode_queue_get_config_reply(struct ofpbuf *reply, ofp_port_t *port)
2469 {
2470     const struct ofp10_queue_get_config_reply *qgcr10;
2471     const struct ofp11_queue_get_config_reply *qgcr11;
2472     enum ofpraw raw;
2473
2474     raw = ofpraw_pull_assert(reply);
2475     switch ((int) raw) {
2476     case OFPRAW_OFPT10_QUEUE_GET_CONFIG_REPLY:
2477         qgcr10 = ofpbuf_pull(reply, sizeof *qgcr10);
2478         *port = u16_to_ofp(ntohs(qgcr10->port));
2479         return 0;
2480
2481     case OFPRAW_OFPT11_QUEUE_GET_CONFIG_REPLY:
2482         qgcr11 = ofpbuf_pull(reply, sizeof *qgcr11);
2483         return ofputil_port_from_ofp11(qgcr11->port, port);
2484     }
2485
2486     OVS_NOT_REACHED();
2487 }
2488
2489 static enum ofperr
2490 parse_queue_rate(const struct ofp_queue_prop_header *hdr, uint16_t *rate)
2491 {
2492     const struct ofp_queue_prop_rate *oqpr;
2493
2494     if (hdr->len == htons(sizeof *oqpr)) {
2495         oqpr = (const struct ofp_queue_prop_rate *) hdr;
2496         *rate = ntohs(oqpr->rate);
2497         return 0;
2498     } else {
2499         return OFPERR_OFPBRC_BAD_LEN;
2500     }
2501 }
2502
2503 /* Decodes information about a queue from the OFPT_QUEUE_GET_CONFIG_REPLY in
2504  * 'reply' and stores it in '*queue'.  ofputil_decode_queue_get_config_reply()
2505  * must already have pulled off the main header.
2506  *
2507  * This function returns EOF if the last queue has already been decoded, 0 if a
2508  * queue was successfully decoded into '*queue', or an ofperr if there was a
2509  * problem decoding 'reply'. */
2510 int
2511 ofputil_pull_queue_get_config_reply(struct ofpbuf *reply,
2512                                     struct ofputil_queue_config *queue)
2513 {
2514     const struct ofp_header *oh;
2515     unsigned int opq_len;
2516     unsigned int len;
2517
2518     if (!ofpbuf_size(reply)) {
2519         return EOF;
2520     }
2521
2522     queue->min_rate = UINT16_MAX;
2523     queue->max_rate = UINT16_MAX;
2524
2525     oh = reply->frame;
2526     if (oh->version < OFP12_VERSION) {
2527         const struct ofp10_packet_queue *opq10;
2528
2529         opq10 = ofpbuf_try_pull(reply, sizeof *opq10);
2530         if (!opq10) {
2531             return OFPERR_OFPBRC_BAD_LEN;
2532         }
2533         queue->queue_id = ntohl(opq10->queue_id);
2534         len = ntohs(opq10->len);
2535         opq_len = sizeof *opq10;
2536     } else {
2537         const struct ofp12_packet_queue *opq12;
2538
2539         opq12 = ofpbuf_try_pull(reply, sizeof *opq12);
2540         if (!opq12) {
2541             return OFPERR_OFPBRC_BAD_LEN;
2542         }
2543         queue->queue_id = ntohl(opq12->queue_id);
2544         len = ntohs(opq12->len);
2545         opq_len = sizeof *opq12;
2546     }
2547
2548     if (len < opq_len || len > ofpbuf_size(reply) + opq_len || len % 8) {
2549         return OFPERR_OFPBRC_BAD_LEN;
2550     }
2551     len -= opq_len;
2552
2553     while (len > 0) {
2554         const struct ofp_queue_prop_header *hdr;
2555         unsigned int property;
2556         unsigned int prop_len;
2557         enum ofperr error = 0;
2558
2559         hdr = ofpbuf_at_assert(reply, 0, sizeof *hdr);
2560         prop_len = ntohs(hdr->len);
2561         if (prop_len < sizeof *hdr || prop_len > ofpbuf_size(reply) || prop_len % 8) {
2562             return OFPERR_OFPBRC_BAD_LEN;
2563         }
2564
2565         property = ntohs(hdr->property);
2566         switch (property) {
2567         case OFPQT_MIN_RATE:
2568             error = parse_queue_rate(hdr, &queue->min_rate);
2569             break;
2570
2571         case OFPQT_MAX_RATE:
2572             error = parse_queue_rate(hdr, &queue->max_rate);
2573             break;
2574
2575         default:
2576             VLOG_INFO_RL(&bad_ofmsg_rl, "unknown queue property %u", property);
2577             break;
2578         }
2579         if (error) {
2580             return error;
2581         }
2582
2583         ofpbuf_pull(reply, prop_len);
2584         len -= prop_len;
2585     }
2586     return 0;
2587 }
2588
2589 /* Converts an OFPST_FLOW, OFPST_AGGREGATE, NXST_FLOW, or NXST_AGGREGATE
2590  * request 'oh', into an abstract flow_stats_request in 'fsr'.  Returns 0 if
2591  * successful, otherwise an OpenFlow error code. */
2592 enum ofperr
2593 ofputil_decode_flow_stats_request(struct ofputil_flow_stats_request *fsr,
2594                                   const struct ofp_header *oh)
2595 {
2596     enum ofpraw raw;
2597     struct ofpbuf b;
2598
2599     ofpbuf_use_const(&b, oh, ntohs(oh->length));
2600     raw = ofpraw_pull_assert(&b);
2601     switch ((int) raw) {
2602     case OFPRAW_OFPST10_FLOW_REQUEST:
2603         return ofputil_decode_ofpst10_flow_request(fsr, ofpbuf_data(&b), false);
2604
2605     case OFPRAW_OFPST10_AGGREGATE_REQUEST:
2606         return ofputil_decode_ofpst10_flow_request(fsr, ofpbuf_data(&b), true);
2607
2608     case OFPRAW_OFPST11_FLOW_REQUEST:
2609         return ofputil_decode_ofpst11_flow_request(fsr, &b, false);
2610
2611     case OFPRAW_OFPST11_AGGREGATE_REQUEST:
2612         return ofputil_decode_ofpst11_flow_request(fsr, &b, true);
2613
2614     case OFPRAW_NXST_FLOW_REQUEST:
2615         return ofputil_decode_nxst_flow_request(fsr, &b, false);
2616
2617     case OFPRAW_NXST_AGGREGATE_REQUEST:
2618         return ofputil_decode_nxst_flow_request(fsr, &b, true);
2619
2620     default:
2621         /* Hey, the caller lied. */
2622         OVS_NOT_REACHED();
2623     }
2624 }
2625
2626 /* Converts abstract flow_stats_request 'fsr' into an OFPST_FLOW,
2627  * OFPST_AGGREGATE, NXST_FLOW, or NXST_AGGREGATE request 'oh' according to
2628  * 'protocol', and returns the message. */
2629 struct ofpbuf *
2630 ofputil_encode_flow_stats_request(const struct ofputil_flow_stats_request *fsr,
2631                                   enum ofputil_protocol protocol)
2632 {
2633     struct ofpbuf *msg;
2634     enum ofpraw raw;
2635
2636     switch (protocol) {
2637     case OFPUTIL_P_OF11_STD:
2638     case OFPUTIL_P_OF12_OXM:
2639     case OFPUTIL_P_OF13_OXM:
2640     case OFPUTIL_P_OF14_OXM: {
2641         struct ofp11_flow_stats_request *ofsr;
2642
2643         raw = (fsr->aggregate
2644                ? OFPRAW_OFPST11_AGGREGATE_REQUEST
2645                : OFPRAW_OFPST11_FLOW_REQUEST);
2646         msg = ofpraw_alloc(raw, ofputil_protocol_to_ofp_version(protocol),
2647                            ofputil_match_typical_len(protocol));
2648         ofsr = ofpbuf_put_zeros(msg, sizeof *ofsr);
2649         ofsr->table_id = fsr->table_id;
2650         ofsr->out_port = ofputil_port_to_ofp11(fsr->out_port);
2651         ofsr->out_group = htonl(fsr->out_group);
2652         ofsr->cookie = fsr->cookie;
2653         ofsr->cookie_mask = fsr->cookie_mask;
2654         ofputil_put_ofp11_match(msg, &fsr->match, protocol);
2655         break;
2656     }
2657
2658     case OFPUTIL_P_OF10_STD:
2659     case OFPUTIL_P_OF10_STD_TID: {
2660         struct ofp10_flow_stats_request *ofsr;
2661
2662         raw = (fsr->aggregate
2663                ? OFPRAW_OFPST10_AGGREGATE_REQUEST
2664                : OFPRAW_OFPST10_FLOW_REQUEST);
2665         msg = ofpraw_alloc(raw, OFP10_VERSION, 0);
2666         ofsr = ofpbuf_put_zeros(msg, sizeof *ofsr);
2667         ofputil_match_to_ofp10_match(&fsr->match, &ofsr->match);
2668         ofsr->table_id = fsr->table_id;
2669         ofsr->out_port = htons(ofp_to_u16(fsr->out_port));
2670         break;
2671     }
2672
2673     case OFPUTIL_P_OF10_NXM:
2674     case OFPUTIL_P_OF10_NXM_TID: {
2675         struct nx_flow_stats_request *nfsr;
2676         int match_len;
2677
2678         raw = (fsr->aggregate
2679                ? OFPRAW_NXST_AGGREGATE_REQUEST
2680                : OFPRAW_NXST_FLOW_REQUEST);
2681         msg = ofpraw_alloc(raw, OFP10_VERSION, NXM_TYPICAL_LEN);
2682         ofpbuf_put_zeros(msg, sizeof *nfsr);
2683         match_len = nx_put_match(msg, &fsr->match,
2684                                  fsr->cookie, fsr->cookie_mask);
2685
2686         nfsr = ofpbuf_l3(msg);
2687         nfsr->out_port = htons(ofp_to_u16(fsr->out_port));
2688         nfsr->match_len = htons(match_len);
2689         nfsr->table_id = fsr->table_id;
2690         break;
2691     }
2692
2693     default:
2694         OVS_NOT_REACHED();
2695     }
2696
2697     return msg;
2698 }
2699
2700 /* Converts an OFPST_FLOW or NXST_FLOW reply in 'msg' into an abstract
2701  * ofputil_flow_stats in 'fs'.
2702  *
2703  * Multiple OFPST_FLOW or NXST_FLOW replies can be packed into a single
2704  * OpenFlow message.  Calling this function multiple times for a single 'msg'
2705  * iterates through the replies.  The caller must initially leave 'msg''s layer
2706  * pointers null and not modify them between calls.
2707  *
2708  * Most switches don't send the values needed to populate fs->idle_age and
2709  * fs->hard_age, so those members will usually be set to 0.  If the switch from
2710  * which 'msg' originated is known to implement NXT_FLOW_AGE, then pass
2711  * 'flow_age_extension' as true so that the contents of 'msg' determine the
2712  * 'idle_age' and 'hard_age' members in 'fs'.
2713  *
2714  * Uses 'ofpacts' to store the abstract OFPACT_* version of the flow stats
2715  * reply's actions.  The caller must initialize 'ofpacts' and retains ownership
2716  * of it.  'fs->ofpacts' will point into the 'ofpacts' buffer.
2717  *
2718  * Returns 0 if successful, EOF if no replies were left in this 'msg',
2719  * otherwise a positive errno value. */
2720 int
2721 ofputil_decode_flow_stats_reply(struct ofputil_flow_stats *fs,
2722                                 struct ofpbuf *msg,
2723                                 bool flow_age_extension,
2724                                 struct ofpbuf *ofpacts)
2725 {
2726     const struct ofp_header *oh;
2727     enum ofperr error;
2728     enum ofpraw raw;
2729
2730     error = (msg->frame
2731              ? ofpraw_decode(&raw, msg->frame)
2732              : ofpraw_pull(&raw, msg));
2733     if (error) {
2734         return error;
2735     }
2736     oh = msg->frame;
2737
2738     if (!ofpbuf_size(msg)) {
2739         return EOF;
2740     } else if (raw == OFPRAW_OFPST11_FLOW_REPLY
2741                || raw == OFPRAW_OFPST13_FLOW_REPLY) {
2742         const struct ofp11_flow_stats *ofs;
2743         size_t length;
2744         uint16_t padded_match_len;
2745
2746         ofs = ofpbuf_try_pull(msg, sizeof *ofs);
2747         if (!ofs) {
2748             VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_FLOW reply has %"PRIu32" leftover "
2749                          "bytes at end", ofpbuf_size(msg));
2750             return EINVAL;
2751         }
2752
2753         length = ntohs(ofs->length);
2754         if (length < sizeof *ofs) {
2755             VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_FLOW reply claims invalid "
2756                          "length %"PRIuSIZE, length);
2757             return EINVAL;
2758         }
2759
2760         if (ofputil_pull_ofp11_match(msg, &fs->match, &padded_match_len)) {
2761             VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_FLOW reply bad match");
2762             return EINVAL;
2763         }
2764
2765         if (ofpacts_pull_openflow_instructions(msg, length - sizeof *ofs -
2766                                                padded_match_len, oh->version,
2767                                                ofpacts)) {
2768             VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_FLOW reply bad instructions");
2769             return EINVAL;
2770         }
2771
2772         fs->priority = ntohs(ofs->priority);
2773         fs->table_id = ofs->table_id;
2774         fs->duration_sec = ntohl(ofs->duration_sec);
2775         fs->duration_nsec = ntohl(ofs->duration_nsec);
2776         fs->idle_timeout = ntohs(ofs->idle_timeout);
2777         fs->hard_timeout = ntohs(ofs->hard_timeout);
2778         if (raw == OFPRAW_OFPST13_FLOW_REPLY) {
2779             error = ofputil_decode_flow_mod_flags(ofs->flags, -1, oh->version,
2780                                                   &fs->flags);
2781             if (error) {
2782                 return error;
2783             }
2784         } else {
2785             fs->flags = 0;
2786         }
2787         fs->idle_age = -1;
2788         fs->hard_age = -1;
2789         fs->cookie = ofs->cookie;
2790         fs->packet_count = ntohll(ofs->packet_count);
2791         fs->byte_count = ntohll(ofs->byte_count);
2792     } else if (raw == OFPRAW_OFPST10_FLOW_REPLY) {
2793         const struct ofp10_flow_stats *ofs;
2794         size_t length;
2795
2796         ofs = ofpbuf_try_pull(msg, sizeof *ofs);
2797         if (!ofs) {
2798             VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_FLOW reply has %"PRIu32" leftover "
2799                          "bytes at end", ofpbuf_size(msg));
2800             return EINVAL;
2801         }
2802
2803         length = ntohs(ofs->length);
2804         if (length < sizeof *ofs) {
2805             VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_FLOW reply claims invalid "
2806                          "length %"PRIuSIZE, length);
2807             return EINVAL;
2808         }
2809
2810         if (ofpacts_pull_openflow_actions(msg, length - sizeof *ofs,
2811                                           oh->version, ofpacts)) {
2812             return EINVAL;
2813         }
2814
2815         fs->cookie = get_32aligned_be64(&ofs->cookie);
2816         ofputil_match_from_ofp10_match(&ofs->match, &fs->match);
2817         fs->priority = ntohs(ofs->priority);
2818         fs->table_id = ofs->table_id;
2819         fs->duration_sec = ntohl(ofs->duration_sec);
2820         fs->duration_nsec = ntohl(ofs->duration_nsec);
2821         fs->idle_timeout = ntohs(ofs->idle_timeout);
2822         fs->hard_timeout = ntohs(ofs->hard_timeout);
2823         fs->idle_age = -1;
2824         fs->hard_age = -1;
2825         fs->packet_count = ntohll(get_32aligned_be64(&ofs->packet_count));
2826         fs->byte_count = ntohll(get_32aligned_be64(&ofs->byte_count));
2827         fs->flags = 0;
2828     } else if (raw == OFPRAW_NXST_FLOW_REPLY) {
2829         const struct nx_flow_stats *nfs;
2830         size_t match_len, actions_len, length;
2831
2832         nfs = ofpbuf_try_pull(msg, sizeof *nfs);
2833         if (!nfs) {
2834             VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW reply has %"PRIu32" leftover "
2835                          "bytes at end", ofpbuf_size(msg));
2836             return EINVAL;
2837         }
2838
2839         length = ntohs(nfs->length);
2840         match_len = ntohs(nfs->match_len);
2841         if (length < sizeof *nfs + ROUND_UP(match_len, 8)) {
2842             VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW reply with match_len=%"PRIuSIZE" "
2843                          "claims invalid length %"PRIuSIZE, match_len, length);
2844             return EINVAL;
2845         }
2846         if (nx_pull_match(msg, match_len, &fs->match, NULL, NULL)) {
2847             return EINVAL;
2848         }
2849
2850         actions_len = length - sizeof *nfs - ROUND_UP(match_len, 8);
2851         if (ofpacts_pull_openflow_actions(msg, actions_len, oh->version,
2852                                           ofpacts)) {
2853             return EINVAL;
2854         }
2855
2856         fs->cookie = nfs->cookie;
2857         fs->table_id = nfs->table_id;
2858         fs->duration_sec = ntohl(nfs->duration_sec);
2859         fs->duration_nsec = ntohl(nfs->duration_nsec);
2860         fs->priority = ntohs(nfs->priority);
2861         fs->idle_timeout = ntohs(nfs->idle_timeout);
2862         fs->hard_timeout = ntohs(nfs->hard_timeout);
2863         fs->idle_age = -1;
2864         fs->hard_age = -1;
2865         if (flow_age_extension) {
2866             if (nfs->idle_age) {
2867                 fs->idle_age = ntohs(nfs->idle_age) - 1;
2868             }
2869             if (nfs->hard_age) {
2870                 fs->hard_age = ntohs(nfs->hard_age) - 1;
2871             }
2872         }
2873         fs->packet_count = ntohll(nfs->packet_count);
2874         fs->byte_count = ntohll(nfs->byte_count);
2875         fs->flags = 0;
2876     } else {
2877         OVS_NOT_REACHED();
2878     }
2879
2880     fs->ofpacts = ofpbuf_data(ofpacts);
2881     fs->ofpacts_len = ofpbuf_size(ofpacts);
2882
2883     return 0;
2884 }
2885
2886 /* Returns 'count' unchanged except that UINT64_MAX becomes 0.
2887  *
2888  * We use this in situations where OVS internally uses UINT64_MAX to mean
2889  * "value unknown" but OpenFlow 1.0 does not define any unknown value. */
2890 static uint64_t
2891 unknown_to_zero(uint64_t count)
2892 {
2893     return count != UINT64_MAX ? count : 0;
2894 }
2895
2896 /* Appends an OFPST_FLOW or NXST_FLOW reply that contains the data in 'fs' to
2897  * those already present in the list of ofpbufs in 'replies'.  'replies' should
2898  * have been initialized with ofpmp_init(). */
2899 void
2900 ofputil_append_flow_stats_reply(const struct ofputil_flow_stats *fs,
2901                                 struct list *replies)
2902 {
2903     struct ofpbuf *reply = ofpbuf_from_list(list_back(replies));
2904     size_t start_ofs = ofpbuf_size(reply);
2905     enum ofp_version version = ofpmp_version(replies);
2906     enum ofpraw raw = ofpmp_decode_raw(replies);
2907
2908     if (raw == OFPRAW_OFPST11_FLOW_REPLY || raw == OFPRAW_OFPST13_FLOW_REPLY) {
2909         struct ofp11_flow_stats *ofs;
2910
2911         ofpbuf_put_uninit(reply, sizeof *ofs);
2912         oxm_put_match(reply, &fs->match);
2913         ofpacts_put_openflow_instructions(fs->ofpacts, fs->ofpacts_len, reply,
2914                                           version);
2915
2916         ofs = ofpbuf_at_assert(reply, start_ofs, sizeof *ofs);
2917         ofs->length = htons(ofpbuf_size(reply) - start_ofs);
2918         ofs->table_id = fs->table_id;
2919         ofs->pad = 0;
2920         ofs->duration_sec = htonl(fs->duration_sec);
2921         ofs->duration_nsec = htonl(fs->duration_nsec);
2922         ofs->priority = htons(fs->priority);
2923         ofs->idle_timeout = htons(fs->idle_timeout);
2924         ofs->hard_timeout = htons(fs->hard_timeout);
2925         if (raw == OFPRAW_OFPST13_FLOW_REPLY) {
2926             ofs->flags = ofputil_encode_flow_mod_flags(fs->flags, version);
2927         } else {
2928             ofs->flags = 0;
2929         }
2930         memset(ofs->pad2, 0, sizeof ofs->pad2);
2931         ofs->cookie = fs->cookie;
2932         ofs->packet_count = htonll(unknown_to_zero(fs->packet_count));
2933         ofs->byte_count = htonll(unknown_to_zero(fs->byte_count));
2934     } else if (raw == OFPRAW_OFPST10_FLOW_REPLY) {
2935         struct ofp10_flow_stats *ofs;
2936
2937         ofpbuf_put_uninit(reply, sizeof *ofs);
2938         ofpacts_put_openflow_actions(fs->ofpacts, fs->ofpacts_len, reply,
2939                                      version);
2940         ofs = ofpbuf_at_assert(reply, start_ofs, sizeof *ofs);
2941         ofs->length = htons(ofpbuf_size(reply) - start_ofs);
2942         ofs->table_id = fs->table_id;
2943         ofs->pad = 0;
2944         ofputil_match_to_ofp10_match(&fs->match, &ofs->match);
2945         ofs->duration_sec = htonl(fs->duration_sec);
2946         ofs->duration_nsec = htonl(fs->duration_nsec);
2947         ofs->priority = htons(fs->priority);
2948         ofs->idle_timeout = htons(fs->idle_timeout);
2949         ofs->hard_timeout = htons(fs->hard_timeout);
2950         memset(ofs->pad2, 0, sizeof ofs->pad2);
2951         put_32aligned_be64(&ofs->cookie, fs->cookie);
2952         put_32aligned_be64(&ofs->packet_count,
2953                            htonll(unknown_to_zero(fs->packet_count)));
2954         put_32aligned_be64(&ofs->byte_count,
2955                            htonll(unknown_to_zero(fs->byte_count)));
2956     } else if (raw == OFPRAW_NXST_FLOW_REPLY) {
2957         struct nx_flow_stats *nfs;
2958         int match_len;
2959
2960         ofpbuf_put_uninit(reply, sizeof *nfs);
2961         match_len = nx_put_match(reply, &fs->match, 0, 0);
2962         ofpacts_put_openflow_actions(fs->ofpacts, fs->ofpacts_len, reply,
2963                                      version);
2964         nfs = ofpbuf_at_assert(reply, start_ofs, sizeof *nfs);
2965         nfs->length = htons(ofpbuf_size(reply) - start_ofs);
2966         nfs->table_id = fs->table_id;
2967         nfs->pad = 0;
2968         nfs->duration_sec = htonl(fs->duration_sec);
2969         nfs->duration_nsec = htonl(fs->duration_nsec);
2970         nfs->priority = htons(fs->priority);
2971         nfs->idle_timeout = htons(fs->idle_timeout);
2972         nfs->hard_timeout = htons(fs->hard_timeout);
2973         nfs->idle_age = htons(fs->idle_age < 0 ? 0
2974                               : fs->idle_age < UINT16_MAX ? fs->idle_age + 1
2975                               : UINT16_MAX);
2976         nfs->hard_age = htons(fs->hard_age < 0 ? 0
2977                               : fs->hard_age < UINT16_MAX ? fs->hard_age + 1
2978                               : UINT16_MAX);
2979         nfs->match_len = htons(match_len);
2980         nfs->cookie = fs->cookie;
2981         nfs->packet_count = htonll(fs->packet_count);
2982         nfs->byte_count = htonll(fs->byte_count);
2983     } else {
2984         OVS_NOT_REACHED();
2985     }
2986
2987     ofpmp_postappend(replies, start_ofs);
2988 }
2989
2990 /* Converts abstract ofputil_aggregate_stats 'stats' into an OFPST_AGGREGATE or
2991  * NXST_AGGREGATE reply matching 'request', and returns the message. */
2992 struct ofpbuf *
2993 ofputil_encode_aggregate_stats_reply(
2994     const struct ofputil_aggregate_stats *stats,
2995     const struct ofp_header *request)
2996 {
2997     struct ofp_aggregate_stats_reply *asr;
2998     uint64_t packet_count;
2999     uint64_t byte_count;
3000     struct ofpbuf *msg;
3001     enum ofpraw raw;
3002
3003     ofpraw_decode(&raw, request);
3004     if (raw == OFPRAW_OFPST10_AGGREGATE_REQUEST) {
3005         packet_count = unknown_to_zero(stats->packet_count);
3006         byte_count = unknown_to_zero(stats->byte_count);
3007     } else {
3008         packet_count = stats->packet_count;
3009         byte_count = stats->byte_count;
3010     }
3011
3012     msg = ofpraw_alloc_stats_reply(request, 0);
3013     asr = ofpbuf_put_zeros(msg, sizeof *asr);
3014     put_32aligned_be64(&asr->packet_count, htonll(packet_count));
3015     put_32aligned_be64(&asr->byte_count, htonll(byte_count));
3016     asr->flow_count = htonl(stats->flow_count);
3017
3018     return msg;
3019 }
3020
3021 enum ofperr
3022 ofputil_decode_aggregate_stats_reply(struct ofputil_aggregate_stats *stats,
3023                                      const struct ofp_header *reply)
3024 {
3025     struct ofp_aggregate_stats_reply *asr;
3026     struct ofpbuf msg;
3027
3028     ofpbuf_use_const(&msg, reply, ntohs(reply->length));
3029     ofpraw_pull_assert(&msg);
3030
3031     asr = ofpbuf_l3(&msg);
3032     stats->packet_count = ntohll(get_32aligned_be64(&asr->packet_count));
3033     stats->byte_count = ntohll(get_32aligned_be64(&asr->byte_count));
3034     stats->flow_count = ntohl(asr->flow_count);
3035
3036     return 0;
3037 }
3038
3039 /* Converts an OFPT_FLOW_REMOVED or NXT_FLOW_REMOVED message 'oh' into an
3040  * abstract ofputil_flow_removed in 'fr'.  Returns 0 if successful, otherwise
3041  * an OpenFlow error code. */
3042 enum ofperr
3043 ofputil_decode_flow_removed(struct ofputil_flow_removed *fr,
3044                             const struct ofp_header *oh)
3045 {
3046     enum ofpraw raw;
3047     struct ofpbuf b;
3048
3049     ofpbuf_use_const(&b, oh, ntohs(oh->length));
3050     raw = ofpraw_pull_assert(&b);
3051     if (raw == OFPRAW_OFPT11_FLOW_REMOVED) {
3052         const struct ofp12_flow_removed *ofr;
3053         enum ofperr error;
3054
3055         ofr = ofpbuf_pull(&b, sizeof *ofr);
3056
3057         error = ofputil_pull_ofp11_match(&b, &fr->match, NULL);
3058         if (error) {
3059             return error;
3060         }
3061
3062         fr->priority = ntohs(ofr->priority);
3063         fr->cookie = ofr->cookie;
3064         fr->reason = ofr->reason;
3065         fr->table_id = ofr->table_id;
3066         fr->duration_sec = ntohl(ofr->duration_sec);
3067         fr->duration_nsec = ntohl(ofr->duration_nsec);
3068         fr->idle_timeout = ntohs(ofr->idle_timeout);
3069         fr->hard_timeout = ntohs(ofr->hard_timeout);
3070         fr->packet_count = ntohll(ofr->packet_count);
3071         fr->byte_count = ntohll(ofr->byte_count);
3072     } else if (raw == OFPRAW_OFPT10_FLOW_REMOVED) {
3073         const struct ofp10_flow_removed *ofr;
3074
3075         ofr = ofpbuf_pull(&b, sizeof *ofr);
3076
3077         ofputil_match_from_ofp10_match(&ofr->match, &fr->match);
3078         fr->priority = ntohs(ofr->priority);
3079         fr->cookie = ofr->cookie;
3080         fr->reason = ofr->reason;
3081         fr->table_id = 255;
3082         fr->duration_sec = ntohl(ofr->duration_sec);
3083         fr->duration_nsec = ntohl(ofr->duration_nsec);
3084         fr->idle_timeout = ntohs(ofr->idle_timeout);
3085         fr->hard_timeout = 0;
3086         fr->packet_count = ntohll(ofr->packet_count);
3087         fr->byte_count = ntohll(ofr->byte_count);
3088     } else if (raw == OFPRAW_NXT_FLOW_REMOVED) {
3089         struct nx_flow_removed *nfr;
3090         enum ofperr error;
3091
3092         nfr = ofpbuf_pull(&b, sizeof *nfr);
3093         error = nx_pull_match(&b, ntohs(nfr->match_len), &fr->match,
3094                               NULL, NULL);
3095         if (error) {
3096             return error;
3097         }
3098         if (ofpbuf_size(&b)) {
3099             return OFPERR_OFPBRC_BAD_LEN;
3100         }
3101
3102         fr->priority = ntohs(nfr->priority);
3103         fr->cookie = nfr->cookie;
3104         fr->reason = nfr->reason;
3105         fr->table_id = nfr->table_id ? nfr->table_id - 1 : 255;
3106         fr->duration_sec = ntohl(nfr->duration_sec);
3107         fr->duration_nsec = ntohl(nfr->duration_nsec);
3108         fr->idle_timeout = ntohs(nfr->idle_timeout);
3109         fr->hard_timeout = 0;
3110         fr->packet_count = ntohll(nfr->packet_count);
3111         fr->byte_count = ntohll(nfr->byte_count);
3112     } else {
3113         OVS_NOT_REACHED();
3114     }
3115
3116     return 0;
3117 }
3118
3119 /* Converts abstract ofputil_flow_removed 'fr' into an OFPT_FLOW_REMOVED or
3120  * NXT_FLOW_REMOVED message 'oh' according to 'protocol', and returns the
3121  * message. */
3122 struct ofpbuf *
3123 ofputil_encode_flow_removed(const struct ofputil_flow_removed *fr,
3124                             enum ofputil_protocol protocol)
3125 {
3126     struct ofpbuf *msg;
3127
3128     switch (protocol) {
3129     case OFPUTIL_P_OF11_STD:
3130     case OFPUTIL_P_OF12_OXM:
3131     case OFPUTIL_P_OF13_OXM:
3132     case OFPUTIL_P_OF14_OXM: {
3133         struct ofp12_flow_removed *ofr;
3134
3135         msg = ofpraw_alloc_xid(OFPRAW_OFPT11_FLOW_REMOVED,
3136                                ofputil_protocol_to_ofp_version(protocol),
3137                                htonl(0),
3138                                ofputil_match_typical_len(protocol));
3139         ofr = ofpbuf_put_zeros(msg, sizeof *ofr);
3140         ofr->cookie = fr->cookie;
3141         ofr->priority = htons(fr->priority);
3142         ofr->reason = fr->reason;
3143         ofr->table_id = fr->table_id;
3144         ofr->duration_sec = htonl(fr->duration_sec);
3145         ofr->duration_nsec = htonl(fr->duration_nsec);
3146         ofr->idle_timeout = htons(fr->idle_timeout);
3147         ofr->hard_timeout = htons(fr->hard_timeout);
3148         ofr->packet_count = htonll(fr->packet_count);
3149         ofr->byte_count = htonll(fr->byte_count);
3150         ofputil_put_ofp11_match(msg, &fr->match, protocol);
3151         break;
3152     }
3153
3154     case OFPUTIL_P_OF10_STD:
3155     case OFPUTIL_P_OF10_STD_TID: {
3156         struct ofp10_flow_removed *ofr;
3157
3158         msg = ofpraw_alloc_xid(OFPRAW_OFPT10_FLOW_REMOVED, OFP10_VERSION,
3159                                htonl(0), 0);
3160         ofr = ofpbuf_put_zeros(msg, sizeof *ofr);
3161         ofputil_match_to_ofp10_match(&fr->match, &ofr->match);
3162         ofr->cookie = fr->cookie;
3163         ofr->priority = htons(fr->priority);
3164         ofr->reason = fr->reason;
3165         ofr->duration_sec = htonl(fr->duration_sec);
3166         ofr->duration_nsec = htonl(fr->duration_nsec);
3167         ofr->idle_timeout = htons(fr->idle_timeout);
3168         ofr->packet_count = htonll(unknown_to_zero(fr->packet_count));
3169         ofr->byte_count = htonll(unknown_to_zero(fr->byte_count));
3170         break;
3171     }
3172
3173     case OFPUTIL_P_OF10_NXM:
3174     case OFPUTIL_P_OF10_NXM_TID: {
3175         struct nx_flow_removed *nfr;
3176         int match_len;
3177
3178         msg = ofpraw_alloc_xid(OFPRAW_NXT_FLOW_REMOVED, OFP10_VERSION,
3179                                htonl(0), NXM_TYPICAL_LEN);
3180         nfr = ofpbuf_put_zeros(msg, sizeof *nfr);
3181         match_len = nx_put_match(msg, &fr->match, 0, 0);
3182
3183         nfr = ofpbuf_l3(msg);
3184         nfr->cookie = fr->cookie;
3185         nfr->priority = htons(fr->priority);
3186         nfr->reason = fr->reason;
3187         nfr->table_id = fr->table_id + 1;
3188         nfr->duration_sec = htonl(fr->duration_sec);
3189         nfr->duration_nsec = htonl(fr->duration_nsec);
3190         nfr->idle_timeout = htons(fr->idle_timeout);
3191         nfr->match_len = htons(match_len);
3192         nfr->packet_count = htonll(fr->packet_count);
3193         nfr->byte_count = htonll(fr->byte_count);
3194         break;
3195     }
3196
3197     default:
3198         OVS_NOT_REACHED();
3199     }
3200
3201     return msg;
3202 }
3203
3204 static void
3205 ofputil_decode_packet_in_finish(struct ofputil_packet_in *pin,
3206                                 struct match *match, struct ofpbuf *b)
3207 {
3208     pin->packet = ofpbuf_data(b);
3209     pin->packet_len = ofpbuf_size(b);
3210
3211     pin->fmd.in_port = match->flow.in_port.ofp_port;
3212     pin->fmd.tun_id = match->flow.tunnel.tun_id;
3213     pin->fmd.tun_src = match->flow.tunnel.ip_src;
3214     pin->fmd.tun_dst = match->flow.tunnel.ip_dst;
3215     pin->fmd.metadata = match->flow.metadata;
3216     memcpy(pin->fmd.regs, match->flow.regs, sizeof pin->fmd.regs);
3217     pin->fmd.pkt_mark = match->flow.pkt_mark;
3218 }
3219
3220 enum ofperr
3221 ofputil_decode_packet_in(struct ofputil_packet_in *pin,
3222                          const struct ofp_header *oh)
3223 {
3224     enum ofpraw raw;
3225     struct ofpbuf b;
3226
3227     memset(pin, 0, sizeof *pin);
3228     pin->cookie = OVS_BE64_MAX;
3229
3230     ofpbuf_use_const(&b, oh, ntohs(oh->length));
3231     raw = ofpraw_pull_assert(&b);
3232     if (raw == OFPRAW_OFPT13_PACKET_IN || raw == OFPRAW_OFPT12_PACKET_IN) {
3233         const struct ofp13_packet_in *opi;
3234         struct match match;
3235         int error;
3236         size_t packet_in_size;
3237
3238         if (raw == OFPRAW_OFPT12_PACKET_IN) {
3239             packet_in_size = sizeof (struct ofp12_packet_in);
3240         } else {
3241             packet_in_size = sizeof (struct ofp13_packet_in);
3242         }
3243
3244         opi = ofpbuf_pull(&b, packet_in_size);
3245         error = oxm_pull_match_loose(&b, &match);
3246         if (error) {
3247             return error;
3248         }
3249
3250         if (!ofpbuf_try_pull(&b, 2)) {
3251             return OFPERR_OFPBRC_BAD_LEN;
3252         }
3253
3254         pin->reason = opi->pi.reason;
3255         pin->table_id = opi->pi.table_id;
3256         pin->buffer_id = ntohl(opi->pi.buffer_id);
3257         pin->total_len = ntohs(opi->pi.total_len);
3258
3259         if (raw == OFPRAW_OFPT13_PACKET_IN) {
3260             pin->cookie = opi->cookie;
3261         }
3262
3263         ofputil_decode_packet_in_finish(pin, &match, &b);
3264     } else if (raw == OFPRAW_OFPT10_PACKET_IN) {
3265         const struct ofp10_packet_in *opi;
3266
3267         opi = ofpbuf_pull(&b, offsetof(struct ofp10_packet_in, data));
3268
3269         pin->packet = opi->data;
3270         pin->packet_len = ofpbuf_size(&b);
3271
3272         pin->fmd.in_port = u16_to_ofp(ntohs(opi->in_port));
3273         pin->reason = opi->reason;
3274         pin->buffer_id = ntohl(opi->buffer_id);
3275         pin->total_len = ntohs(opi->total_len);
3276     } else if (raw == OFPRAW_OFPT11_PACKET_IN) {
3277         const struct ofp11_packet_in *opi;
3278         enum ofperr error;
3279
3280         opi = ofpbuf_pull(&b, sizeof *opi);
3281
3282         pin->packet = ofpbuf_data(&b);
3283         pin->packet_len = ofpbuf_size(&b);
3284
3285         pin->buffer_id = ntohl(opi->buffer_id);
3286         error = ofputil_port_from_ofp11(opi->in_port, &pin->fmd.in_port);
3287         if (error) {
3288             return error;
3289         }
3290         pin->total_len = ntohs(opi->total_len);
3291         pin->reason = opi->reason;
3292         pin->table_id = opi->table_id;
3293     } else if (raw == OFPRAW_NXT_PACKET_IN) {
3294         const struct nx_packet_in *npi;
3295         struct match match;
3296         int error;
3297
3298         npi = ofpbuf_pull(&b, sizeof *npi);
3299         error = nx_pull_match_loose(&b, ntohs(npi->match_len), &match, NULL,
3300                                     NULL);
3301         if (error) {
3302             return error;
3303         }
3304
3305         if (!ofpbuf_try_pull(&b, 2)) {
3306             return OFPERR_OFPBRC_BAD_LEN;
3307         }
3308
3309         pin->reason = npi->reason;
3310         pin->table_id = npi->table_id;
3311         pin->cookie = npi->cookie;
3312
3313         pin->buffer_id = ntohl(npi->buffer_id);
3314         pin->total_len = ntohs(npi->total_len);
3315
3316         ofputil_decode_packet_in_finish(pin, &match, &b);
3317     } else {
3318         OVS_NOT_REACHED();
3319     }
3320
3321     return 0;
3322 }
3323
3324 static void
3325 ofputil_packet_in_to_match(const struct ofputil_packet_in *pin,
3326                            struct match *match)
3327 {
3328     int i;
3329
3330     match_init_catchall(match);
3331     if (pin->fmd.tun_id != htonll(0)) {
3332         match_set_tun_id(match, pin->fmd.tun_id);
3333     }
3334     if (pin->fmd.tun_src != htonl(0)) {
3335         match_set_tun_src(match, pin->fmd.tun_src);
3336     }
3337     if (pin->fmd.tun_dst != htonl(0)) {
3338         match_set_tun_dst(match, pin->fmd.tun_dst);
3339     }
3340     if (pin->fmd.metadata != htonll(0)) {
3341         match_set_metadata(match, pin->fmd.metadata);
3342     }
3343
3344     for (i = 0; i < FLOW_N_REGS; i++) {
3345         if (pin->fmd.regs[i]) {
3346             match_set_reg(match, i, pin->fmd.regs[i]);
3347         }
3348     }
3349
3350     if (pin->fmd.pkt_mark != 0) {
3351         match_set_pkt_mark(match, pin->fmd.pkt_mark);
3352     }
3353
3354     match_set_in_port(match, pin->fmd.in_port);
3355 }
3356
3357 static struct ofpbuf *
3358 ofputil_encode_ofp10_packet_in(const struct ofputil_packet_in *pin)
3359 {
3360     struct ofp10_packet_in *opi;
3361     struct ofpbuf *packet;
3362
3363     packet = ofpraw_alloc_xid(OFPRAW_OFPT10_PACKET_IN, OFP10_VERSION,
3364                               htonl(0), pin->packet_len);
3365     opi = ofpbuf_put_zeros(packet, offsetof(struct ofp10_packet_in, data));
3366     opi->total_len = htons(pin->total_len);
3367     opi->in_port = htons(ofp_to_u16(pin->fmd.in_port));
3368     opi->reason = pin->reason;
3369     opi->buffer_id = htonl(pin->buffer_id);
3370
3371     ofpbuf_put(packet, pin->packet, pin->packet_len);
3372
3373     return packet;
3374 }
3375
3376 static struct ofpbuf *
3377 ofputil_encode_nx_packet_in(const struct ofputil_packet_in *pin)
3378 {
3379     struct nx_packet_in *npi;
3380     struct ofpbuf *packet;
3381     struct match match;
3382     size_t match_len;
3383
3384     ofputil_packet_in_to_match(pin, &match);
3385
3386     /* The final argument is just an estimate of the space required. */
3387     packet = ofpraw_alloc_xid(OFPRAW_NXT_PACKET_IN, OFP10_VERSION,
3388                               htonl(0), (sizeof(struct flow_metadata) * 2
3389                                          + 2 + pin->packet_len));
3390     ofpbuf_put_zeros(packet, sizeof *npi);
3391     match_len = nx_put_match(packet, &match, 0, 0);
3392     ofpbuf_put_zeros(packet, 2);
3393     ofpbuf_put(packet, pin->packet, pin->packet_len);
3394
3395     npi = ofpbuf_l3(packet);
3396     npi->buffer_id = htonl(pin->buffer_id);
3397     npi->total_len = htons(pin->total_len);
3398     npi->reason = pin->reason;
3399     npi->table_id = pin->table_id;
3400     npi->cookie = pin->cookie;
3401     npi->match_len = htons(match_len);
3402
3403     return packet;
3404 }
3405
3406 static struct ofpbuf *
3407 ofputil_encode_ofp11_packet_in(const struct ofputil_packet_in *pin)
3408 {
3409     struct ofp11_packet_in *opi;
3410     struct ofpbuf *packet;
3411
3412     packet = ofpraw_alloc_xid(OFPRAW_OFPT11_PACKET_IN, OFP11_VERSION,
3413                               htonl(0), pin->packet_len);
3414     opi = ofpbuf_put_zeros(packet, sizeof *opi);
3415     opi->buffer_id = htonl(pin->buffer_id);
3416     opi->in_port = ofputil_port_to_ofp11(pin->fmd.in_port);
3417     opi->in_phy_port = opi->in_port;
3418     opi->total_len = htons(pin->total_len);
3419     opi->reason = pin->reason;
3420     opi->table_id = pin->table_id;
3421
3422     ofpbuf_put(packet, pin->packet, pin->packet_len);
3423
3424     return packet;
3425 }
3426
3427 static struct ofpbuf *
3428 ofputil_encode_ofp12_packet_in(const struct ofputil_packet_in *pin,
3429                                enum ofputil_protocol protocol)
3430 {
3431     struct ofp13_packet_in *opi;
3432     struct match match;
3433     enum ofpraw packet_in_raw;
3434     enum ofp_version packet_in_version;
3435     size_t packet_in_size;
3436     struct ofpbuf *packet;
3437
3438     if (protocol == OFPUTIL_P_OF12_OXM) {
3439         packet_in_raw = OFPRAW_OFPT12_PACKET_IN;
3440         packet_in_version = OFP12_VERSION;
3441         packet_in_size = sizeof (struct ofp12_packet_in);
3442     } else {
3443         packet_in_raw = OFPRAW_OFPT13_PACKET_IN;
3444         packet_in_version = OFP13_VERSION;
3445         packet_in_size = sizeof (struct ofp13_packet_in);
3446     }
3447
3448     ofputil_packet_in_to_match(pin, &match);
3449
3450     /* The final argument is just an estimate of the space required. */
3451     packet = ofpraw_alloc_xid(packet_in_raw, packet_in_version,
3452                               htonl(0), (sizeof(struct flow_metadata) * 2
3453                                          + 2 + pin->packet_len));
3454     ofpbuf_put_zeros(packet, packet_in_size);
3455     oxm_put_match(packet, &match);
3456     ofpbuf_put_zeros(packet, 2);
3457     ofpbuf_put(packet, pin->packet, pin->packet_len);
3458
3459     opi = ofpbuf_l3(packet);
3460     opi->pi.buffer_id = htonl(pin->buffer_id);
3461     opi->pi.total_len = htons(pin->total_len);
3462     opi->pi.reason = pin->reason;
3463     opi->pi.table_id = pin->table_id;
3464     if (protocol == OFPUTIL_P_OF13_OXM) {
3465         opi->cookie = pin->cookie;
3466     }
3467
3468     return packet;
3469 }
3470
3471 /* Converts abstract ofputil_packet_in 'pin' into a PACKET_IN message
3472  * in the format specified by 'packet_in_format'.  */
3473 struct ofpbuf *
3474 ofputil_encode_packet_in(const struct ofputil_packet_in *pin,
3475                          enum ofputil_protocol protocol,
3476                          enum nx_packet_in_format packet_in_format)
3477 {
3478     struct ofpbuf *packet;
3479
3480     switch (protocol) {
3481     case OFPUTIL_P_OF10_STD:
3482     case OFPUTIL_P_OF10_STD_TID:
3483     case OFPUTIL_P_OF10_NXM:
3484     case OFPUTIL_P_OF10_NXM_TID:
3485         packet = (packet_in_format == NXPIF_NXM
3486                   ? ofputil_encode_nx_packet_in(pin)
3487                   : ofputil_encode_ofp10_packet_in(pin));
3488         break;
3489
3490     case OFPUTIL_P_OF11_STD:
3491         packet = ofputil_encode_ofp11_packet_in(pin);
3492         break;
3493
3494     case OFPUTIL_P_OF12_OXM:
3495     case OFPUTIL_P_OF13_OXM:
3496     case OFPUTIL_P_OF14_OXM:
3497         packet = ofputil_encode_ofp12_packet_in(pin, protocol);
3498         break;
3499
3500     default:
3501         OVS_NOT_REACHED();
3502     }
3503
3504     ofpmsg_update_length(packet);
3505     return packet;
3506 }
3507
3508 /* Returns a string form of 'reason'.  The return value is either a statically
3509  * allocated constant string or the 'bufsize'-byte buffer 'reasonbuf'.
3510  * 'bufsize' should be at least OFPUTIL_PACKET_IN_REASON_BUFSIZE. */
3511 const char *
3512 ofputil_packet_in_reason_to_string(enum ofp_packet_in_reason reason,
3513                                    char *reasonbuf, size_t bufsize)
3514 {
3515     switch (reason) {
3516     case OFPR_NO_MATCH:
3517         return "no_match";
3518     case OFPR_ACTION:
3519         return "action";
3520     case OFPR_INVALID_TTL:
3521         return "invalid_ttl";
3522
3523     case OFPR_N_REASONS:
3524     default:
3525         snprintf(reasonbuf, bufsize, "%d", (int) reason);
3526         return reasonbuf;
3527     }
3528 }
3529
3530 bool
3531 ofputil_packet_in_reason_from_string(const char *s,
3532                                      enum ofp_packet_in_reason *reason)
3533 {
3534     int i;
3535
3536     for (i = 0; i < OFPR_N_REASONS; i++) {
3537         char reasonbuf[OFPUTIL_PACKET_IN_REASON_BUFSIZE];
3538         const char *reason_s;
3539
3540         reason_s = ofputil_packet_in_reason_to_string(i, reasonbuf,
3541                                                       sizeof reasonbuf);
3542         if (!strcasecmp(s, reason_s)) {
3543             *reason = i;
3544             return true;
3545         }
3546     }
3547     return false;
3548 }
3549
3550 /* Converts an OFPT_PACKET_OUT in 'opo' into an abstract ofputil_packet_out in
3551  * 'po'.
3552  *
3553  * Uses 'ofpacts' to store the abstract OFPACT_* version of the packet out
3554  * message's actions.  The caller must initialize 'ofpacts' and retains
3555  * ownership of it.  'po->ofpacts' will point into the 'ofpacts' buffer.
3556  *
3557  * Returns 0 if successful, otherwise an OFPERR_* value. */
3558 enum ofperr
3559 ofputil_decode_packet_out(struct ofputil_packet_out *po,
3560                           const struct ofp_header *oh,
3561                           struct ofpbuf *ofpacts)
3562 {
3563     enum ofpraw raw;
3564     struct ofpbuf b;
3565
3566     ofpbuf_use_const(&b, oh, ntohs(oh->length));
3567     raw = ofpraw_pull_assert(&b);
3568
3569     if (raw == OFPRAW_OFPT11_PACKET_OUT) {
3570         enum ofperr error;
3571         const struct ofp11_packet_out *opo = ofpbuf_pull(&b, sizeof *opo);
3572
3573         po->buffer_id = ntohl(opo->buffer_id);
3574         error = ofputil_port_from_ofp11(opo->in_port, &po->in_port);
3575         if (error) {
3576             return error;
3577         }
3578
3579         error = ofpacts_pull_openflow_actions(&b, ntohs(opo->actions_len),
3580                                               oh->version, ofpacts);
3581         if (error) {
3582             return error;
3583         }
3584     } else if (raw == OFPRAW_OFPT10_PACKET_OUT) {
3585         enum ofperr error;
3586         const struct ofp10_packet_out *opo = ofpbuf_pull(&b, sizeof *opo);
3587
3588         po->buffer_id = ntohl(opo->buffer_id);
3589         po->in_port = u16_to_ofp(ntohs(opo->in_port));
3590
3591         error = ofpacts_pull_openflow_actions(&b, ntohs(opo->actions_len),
3592                                               oh->version, ofpacts);
3593         if (error) {
3594             return error;
3595         }
3596     } else {
3597         OVS_NOT_REACHED();
3598     }
3599
3600     if (ofp_to_u16(po->in_port) >= ofp_to_u16(OFPP_MAX)
3601         && po->in_port != OFPP_LOCAL
3602         && po->in_port != OFPP_NONE && po->in_port != OFPP_CONTROLLER) {
3603         VLOG_WARN_RL(&bad_ofmsg_rl, "packet-out has bad input port %#"PRIx16,
3604                      po->in_port);
3605         return OFPERR_OFPBRC_BAD_PORT;
3606     }
3607
3608     po->ofpacts = ofpbuf_data(ofpacts);
3609     po->ofpacts_len = ofpbuf_size(ofpacts);
3610
3611     if (po->buffer_id == UINT32_MAX) {
3612         po->packet = ofpbuf_data(&b);
3613         po->packet_len = ofpbuf_size(&b);
3614     } else {
3615         po->packet = NULL;
3616         po->packet_len = 0;
3617     }
3618
3619     return 0;
3620 }
3621 \f
3622 /* ofputil_phy_port */
3623
3624 /* NETDEV_F_* to and from OFPPF_* and OFPPF10_*. */
3625 BUILD_ASSERT_DECL((int) NETDEV_F_10MB_HD    == OFPPF_10MB_HD);  /* bit 0 */
3626 BUILD_ASSERT_DECL((int) NETDEV_F_10MB_FD    == OFPPF_10MB_FD);  /* bit 1 */
3627 BUILD_ASSERT_DECL((int) NETDEV_F_100MB_HD   == OFPPF_100MB_HD); /* bit 2 */
3628 BUILD_ASSERT_DECL((int) NETDEV_F_100MB_FD   == OFPPF_100MB_FD); /* bit 3 */
3629 BUILD_ASSERT_DECL((int) NETDEV_F_1GB_HD     == OFPPF_1GB_HD);   /* bit 4 */
3630 BUILD_ASSERT_DECL((int) NETDEV_F_1GB_FD     == OFPPF_1GB_FD);   /* bit 5 */
3631 BUILD_ASSERT_DECL((int) NETDEV_F_10GB_FD    == OFPPF_10GB_FD);  /* bit 6 */
3632
3633 /* NETDEV_F_ bits 11...15 are OFPPF10_ bits 7...11: */
3634 BUILD_ASSERT_DECL((int) NETDEV_F_COPPER == (OFPPF10_COPPER << 4));
3635 BUILD_ASSERT_DECL((int) NETDEV_F_FIBER == (OFPPF10_FIBER << 4));
3636 BUILD_ASSERT_DECL((int) NETDEV_F_AUTONEG == (OFPPF10_AUTONEG << 4));
3637 BUILD_ASSERT_DECL((int) NETDEV_F_PAUSE == (OFPPF10_PAUSE << 4));
3638 BUILD_ASSERT_DECL((int) NETDEV_F_PAUSE_ASYM == (OFPPF10_PAUSE_ASYM << 4));
3639
3640 static enum netdev_features
3641 netdev_port_features_from_ofp10(ovs_be32 ofp10_)
3642 {
3643     uint32_t ofp10 = ntohl(ofp10_);
3644     return (ofp10 & 0x7f) | ((ofp10 & 0xf80) << 4);
3645 }
3646
3647 static ovs_be32
3648 netdev_port_features_to_ofp10(enum netdev_features features)
3649 {
3650     return htonl((features & 0x7f) | ((features & 0xf800) >> 4));
3651 }
3652
3653 BUILD_ASSERT_DECL((int) NETDEV_F_10MB_HD    == OFPPF_10MB_HD);     /* bit 0 */
3654 BUILD_ASSERT_DECL((int) NETDEV_F_10MB_FD    == OFPPF_10MB_FD);     /* bit 1 */
3655 BUILD_ASSERT_DECL((int) NETDEV_F_100MB_HD   == OFPPF_100MB_HD);    /* bit 2 */
3656 BUILD_ASSERT_DECL((int) NETDEV_F_100MB_FD   == OFPPF_100MB_FD);    /* bit 3 */
3657 BUILD_ASSERT_DECL((int) NETDEV_F_1GB_HD     == OFPPF_1GB_HD);      /* bit 4 */
3658 BUILD_ASSERT_DECL((int) NETDEV_F_1GB_FD     == OFPPF_1GB_FD);      /* bit 5 */
3659 BUILD_ASSERT_DECL((int) NETDEV_F_10GB_FD    == OFPPF_10GB_FD);     /* bit 6 */
3660 BUILD_ASSERT_DECL((int) NETDEV_F_40GB_FD    == OFPPF11_40GB_FD);   /* bit 7 */
3661 BUILD_ASSERT_DECL((int) NETDEV_F_100GB_FD   == OFPPF11_100GB_FD);  /* bit 8 */
3662 BUILD_ASSERT_DECL((int) NETDEV_F_1TB_FD     == OFPPF11_1TB_FD);    /* bit 9 */
3663 BUILD_ASSERT_DECL((int) NETDEV_F_OTHER      == OFPPF11_OTHER);     /* bit 10 */
3664 BUILD_ASSERT_DECL((int) NETDEV_F_COPPER     == OFPPF11_COPPER);    /* bit 11 */
3665 BUILD_ASSERT_DECL((int) NETDEV_F_FIBER      == OFPPF11_FIBER);     /* bit 12 */
3666 BUILD_ASSERT_DECL((int) NETDEV_F_AUTONEG    == OFPPF11_AUTONEG);   /* bit 13 */
3667 BUILD_ASSERT_DECL((int) NETDEV_F_PAUSE      == OFPPF11_PAUSE);     /* bit 14 */
3668 BUILD_ASSERT_DECL((int) NETDEV_F_PAUSE_ASYM == OFPPF11_PAUSE_ASYM);/* bit 15 */
3669
3670 static enum netdev_features
3671 netdev_port_features_from_ofp11(ovs_be32 ofp11)
3672 {
3673     return ntohl(ofp11) & 0xffff;
3674 }
3675
3676 static ovs_be32
3677 netdev_port_features_to_ofp11(enum netdev_features features)
3678 {
3679     return htonl(features & 0xffff);
3680 }
3681
3682 static enum ofperr
3683 ofputil_decode_ofp10_phy_port(struct ofputil_phy_port *pp,
3684                               const struct ofp10_phy_port *opp)
3685 {
3686     pp->port_no = u16_to_ofp(ntohs(opp->port_no));
3687     memcpy(pp->hw_addr, opp->hw_addr, OFP_ETH_ALEN);
3688     ovs_strlcpy(pp->name, opp->name, OFP_MAX_PORT_NAME_LEN);
3689
3690     pp->config = ntohl(opp->config) & OFPPC10_ALL;
3691     pp->state = ntohl(opp->state) & OFPPS10_ALL;
3692
3693     pp->curr = netdev_port_features_from_ofp10(opp->curr);
3694     pp->advertised = netdev_port_features_from_ofp10(opp->advertised);
3695     pp->supported = netdev_port_features_from_ofp10(opp->supported);
3696     pp->peer = netdev_port_features_from_ofp10(opp->peer);
3697
3698     pp->curr_speed = netdev_features_to_bps(pp->curr, 0) / 1000;
3699     pp->max_speed = netdev_features_to_bps(pp->supported, 0) / 1000;
3700
3701     return 0;
3702 }
3703
3704 static enum ofperr
3705 ofputil_decode_ofp11_port(struct ofputil_phy_port *pp,
3706                           const struct ofp11_port *op)
3707 {
3708     enum ofperr error;
3709
3710     error = ofputil_port_from_ofp11(op->port_no, &pp->port_no);
3711     if (error) {
3712         return error;
3713     }
3714     memcpy(pp->hw_addr, op->hw_addr, OFP_ETH_ALEN);
3715     ovs_strlcpy(pp->name, op->name, OFP_MAX_PORT_NAME_LEN);
3716
3717     pp->config = ntohl(op->config) & OFPPC11_ALL;
3718     pp->state = ntohl(op->state) & OFPPS11_ALL;
3719
3720     pp->curr = netdev_port_features_from_ofp11(op->curr);
3721     pp->advertised = netdev_port_features_from_ofp11(op->advertised);
3722     pp->supported = netdev_port_features_from_ofp11(op->supported);
3723     pp->peer = netdev_port_features_from_ofp11(op->peer);
3724
3725     pp->curr_speed = ntohl(op->curr_speed);
3726     pp->max_speed = ntohl(op->max_speed);
3727
3728     return 0;
3729 }
3730
3731 static enum ofperr
3732 parse_ofp14_port_ethernet_property(const struct ofpbuf *payload,
3733                                    struct ofputil_phy_port *pp)
3734 {
3735     struct ofp14_port_desc_prop_ethernet *eth = ofpbuf_data(payload);
3736
3737     if (ofpbuf_size(payload) != sizeof *eth) {
3738         return OFPERR_OFPBPC_BAD_LEN;
3739     }
3740
3741     pp->curr = netdev_port_features_from_ofp11(eth->curr);
3742     pp->advertised = netdev_port_features_from_ofp11(eth->advertised);
3743     pp->supported = netdev_port_features_from_ofp11(eth->supported);
3744     pp->peer = netdev_port_features_from_ofp11(eth->peer);
3745
3746     pp->curr_speed = ntohl(eth->curr_speed);
3747     pp->max_speed = ntohl(eth->max_speed);
3748
3749     return 0;
3750 }
3751
3752 static enum ofperr
3753 ofputil_pull_ofp14_port(struct ofputil_phy_port *pp, struct ofpbuf *msg)
3754 {
3755     struct ofpbuf properties;
3756     struct ofp14_port *op;
3757     enum ofperr error;
3758     size_t len;
3759
3760     op = ofpbuf_try_pull(msg, sizeof *op);
3761     if (!op) {
3762         return OFPERR_OFPBRC_BAD_LEN;
3763     }
3764
3765     len = ntohs(op->length);
3766     if (len < sizeof *op || len - sizeof *op > ofpbuf_size(msg)) {
3767         return OFPERR_OFPBRC_BAD_LEN;
3768     }
3769     len -= sizeof *op;
3770     ofpbuf_use_const(&properties, ofpbuf_pull(msg, len), len);
3771
3772     error = ofputil_port_from_ofp11(op->port_no, &pp->port_no);
3773     if (error) {
3774         return error;
3775     }
3776     memcpy(pp->hw_addr, op->hw_addr, OFP_ETH_ALEN);
3777     ovs_strlcpy(pp->name, op->name, OFP_MAX_PORT_NAME_LEN);
3778
3779     pp->config = ntohl(op->config) & OFPPC11_ALL;
3780     pp->state = ntohl(op->state) & OFPPS11_ALL;
3781
3782     while (ofpbuf_size(&properties) > 0) {
3783         struct ofpbuf payload;
3784         enum ofperr error;
3785         uint16_t type;
3786
3787         error = ofputil_pull_property(&properties, &payload, &type);
3788         if (error) {
3789             return error;
3790         }
3791
3792         switch (type) {
3793         case OFPPDPT14_ETHERNET:
3794             error = parse_ofp14_port_ethernet_property(&payload, pp);
3795             break;
3796
3797         default:
3798             log_property(true, "unknown port property %"PRIu16, type);
3799             error = 0;
3800             break;
3801         }
3802
3803         if (error) {
3804             return error;
3805         }
3806     }
3807
3808     return 0;
3809 }
3810
3811 static void
3812 ofputil_encode_ofp10_phy_port(const struct ofputil_phy_port *pp,
3813                               struct ofp10_phy_port *opp)
3814 {
3815     memset(opp, 0, sizeof *opp);
3816
3817     opp->port_no = htons(ofp_to_u16(pp->port_no));
3818     memcpy(opp->hw_addr, pp->hw_addr, ETH_ADDR_LEN);
3819     ovs_strlcpy(opp->name, pp->name, OFP_MAX_PORT_NAME_LEN);
3820
3821     opp->config = htonl(pp->config & OFPPC10_ALL);
3822     opp->state = htonl(pp->state & OFPPS10_ALL);
3823
3824     opp->curr = netdev_port_features_to_ofp10(pp->curr);
3825     opp->advertised = netdev_port_features_to_ofp10(pp->advertised);
3826     opp->supported = netdev_port_features_to_ofp10(pp->supported);
3827     opp->peer = netdev_port_features_to_ofp10(pp->peer);
3828 }
3829
3830 static void
3831 ofputil_encode_ofp11_port(const struct ofputil_phy_port *pp,
3832                           struct ofp11_port *op)
3833 {
3834     memset(op, 0, sizeof *op);
3835
3836     op->port_no = ofputil_port_to_ofp11(pp->port_no);
3837     memcpy(op->hw_addr, pp->hw_addr, ETH_ADDR_LEN);
3838     ovs_strlcpy(op->name, pp->name, OFP_MAX_PORT_NAME_LEN);
3839
3840     op->config = htonl(pp->config & OFPPC11_ALL);
3841     op->state = htonl(pp->state & OFPPS11_ALL);
3842
3843     op->curr = netdev_port_features_to_ofp11(pp->curr);
3844     op->advertised = netdev_port_features_to_ofp11(pp->advertised);
3845     op->supported = netdev_port_features_to_ofp11(pp->supported);
3846     op->peer = netdev_port_features_to_ofp11(pp->peer);
3847
3848     op->curr_speed = htonl(pp->curr_speed);
3849     op->max_speed = htonl(pp->max_speed);
3850 }
3851
3852 static void
3853 ofputil_put_ofp14_port(const struct ofputil_phy_port *pp,
3854                        struct ofpbuf *b)
3855 {
3856     struct ofp14_port *op;
3857     struct ofp14_port_desc_prop_ethernet *eth;
3858
3859     ofpbuf_prealloc_tailroom(b, sizeof *op + sizeof *eth);
3860
3861     op = ofpbuf_put_zeros(b, sizeof *op);
3862     op->port_no = ofputil_port_to_ofp11(pp->port_no);
3863     op->length = htons(sizeof *op + sizeof *eth);
3864     memcpy(op->hw_addr, pp->hw_addr, ETH_ADDR_LEN);
3865     ovs_strlcpy(op->name, pp->name, sizeof op->name);
3866     op->config = htonl(pp->config & OFPPC11_ALL);
3867     op->state = htonl(pp->state & OFPPS11_ALL);
3868
3869     eth = ofpbuf_put_zeros(b, sizeof *eth);
3870     eth->type = htons(OFPPDPT14_ETHERNET);
3871     eth->length = htons(sizeof *eth);
3872     eth->curr = netdev_port_features_to_ofp11(pp->curr);
3873     eth->advertised = netdev_port_features_to_ofp11(pp->advertised);
3874     eth->supported = netdev_port_features_to_ofp11(pp->supported);
3875     eth->peer = netdev_port_features_to_ofp11(pp->peer);
3876     eth->curr_speed = htonl(pp->curr_speed);
3877     eth->max_speed = htonl(pp->max_speed);
3878 }
3879
3880 static void
3881 ofputil_put_phy_port(enum ofp_version ofp_version,
3882                      const struct ofputil_phy_port *pp, struct ofpbuf *b)
3883 {
3884     switch (ofp_version) {
3885     case OFP10_VERSION: {
3886         struct ofp10_phy_port *opp = ofpbuf_put_uninit(b, sizeof *opp);
3887         ofputil_encode_ofp10_phy_port(pp, opp);
3888         break;
3889     }
3890
3891     case OFP11_VERSION:
3892     case OFP12_VERSION:
3893     case OFP13_VERSION: {
3894         struct ofp11_port *op = ofpbuf_put_uninit(b, sizeof *op);
3895         ofputil_encode_ofp11_port(pp, op);
3896         break;
3897     }
3898
3899     case OFP14_VERSION:
3900         ofputil_put_ofp14_port(pp, b);
3901         break;
3902
3903     default:
3904         OVS_NOT_REACHED();
3905     }
3906 }
3907
3908 void
3909 ofputil_append_port_desc_stats_reply(const struct ofputil_phy_port *pp,
3910                                      struct list *replies)
3911 {
3912     struct ofpbuf *reply = ofpbuf_from_list(list_back(replies));
3913     size_t start_ofs = ofpbuf_size(reply);
3914
3915     ofputil_put_phy_port(ofpmp_version(replies), pp, reply);
3916     ofpmp_postappend(replies, start_ofs);
3917 }
3918 \f
3919 /* ofputil_switch_features */
3920
3921 #define OFPC_COMMON (OFPC_FLOW_STATS | OFPC_TABLE_STATS | OFPC_PORT_STATS | \
3922                      OFPC_IP_REASM | OFPC_QUEUE_STATS)
3923 BUILD_ASSERT_DECL((int) OFPUTIL_C_FLOW_STATS == OFPC_FLOW_STATS);
3924 BUILD_ASSERT_DECL((int) OFPUTIL_C_TABLE_STATS == OFPC_TABLE_STATS);
3925 BUILD_ASSERT_DECL((int) OFPUTIL_C_PORT_STATS == OFPC_PORT_STATS);
3926 BUILD_ASSERT_DECL((int) OFPUTIL_C_IP_REASM == OFPC_IP_REASM);
3927 BUILD_ASSERT_DECL((int) OFPUTIL_C_QUEUE_STATS == OFPC_QUEUE_STATS);
3928 BUILD_ASSERT_DECL((int) OFPUTIL_C_ARP_MATCH_IP == OFPC_ARP_MATCH_IP);
3929
3930 struct ofputil_action_bit_translation {
3931     enum ofputil_action_bitmap ofputil_bit;
3932     int of_bit;
3933 };
3934
3935 static const struct ofputil_action_bit_translation of10_action_bits[] = {
3936     { OFPUTIL_A_OUTPUT,       OFPAT10_OUTPUT },
3937     { OFPUTIL_A_SET_VLAN_VID, OFPAT10_SET_VLAN_VID },
3938     { OFPUTIL_A_SET_VLAN_PCP, OFPAT10_SET_VLAN_PCP },
3939     { OFPUTIL_A_STRIP_VLAN,   OFPAT10_STRIP_VLAN },
3940     { OFPUTIL_A_SET_DL_SRC,   OFPAT10_SET_DL_SRC },
3941     { OFPUTIL_A_SET_DL_DST,   OFPAT10_SET_DL_DST },
3942     { OFPUTIL_A_SET_NW_SRC,   OFPAT10_SET_NW_SRC },
3943     { OFPUTIL_A_SET_NW_DST,   OFPAT10_SET_NW_DST },
3944     { OFPUTIL_A_SET_NW_TOS,   OFPAT10_SET_NW_TOS },
3945     { OFPUTIL_A_SET_TP_SRC,   OFPAT10_SET_TP_SRC },
3946     { OFPUTIL_A_SET_TP_DST,   OFPAT10_SET_TP_DST },
3947     { OFPUTIL_A_ENQUEUE,      OFPAT10_ENQUEUE },
3948     { 0, 0 },
3949 };
3950
3951 static enum ofputil_action_bitmap
3952 decode_action_bits(ovs_be32 of_actions,
3953                    const struct ofputil_action_bit_translation *x)
3954 {
3955     enum ofputil_action_bitmap ofputil_actions;
3956
3957     ofputil_actions = 0;
3958     for (; x->ofputil_bit; x++) {
3959         if (of_actions & htonl(1u << x->of_bit)) {
3960             ofputil_actions |= x->ofputil_bit;
3961         }
3962     }
3963     return ofputil_actions;
3964 }
3965
3966 static uint32_t
3967 ofputil_capabilities_mask(enum ofp_version ofp_version)
3968 {
3969     /* Handle capabilities whose bit is unique for all Open Flow versions */
3970     switch (ofp_version) {
3971     case OFP10_VERSION:
3972     case OFP11_VERSION:
3973         return OFPC_COMMON | OFPC_ARP_MATCH_IP;
3974     case OFP12_VERSION:
3975     case OFP13_VERSION:
3976     case OFP14_VERSION:
3977         return OFPC_COMMON | OFPC12_PORT_BLOCKED;
3978     default:
3979         /* Caller needs to check osf->header.version itself */
3980         return 0;
3981     }
3982 }
3983
3984 /* Decodes an OpenFlow 1.0 or 1.1 "switch_features" structure 'osf' into an
3985  * abstract representation in '*features'.  Initializes '*b' to iterate over
3986  * the OpenFlow port structures following 'osf' with later calls to
3987  * ofputil_pull_phy_port().  Returns 0 if successful, otherwise an
3988  * OFPERR_* value.  */
3989 enum ofperr
3990 ofputil_decode_switch_features(const struct ofp_header *oh,
3991                                struct ofputil_switch_features *features,
3992                                struct ofpbuf *b)
3993 {
3994     const struct ofp_switch_features *osf;
3995     enum ofpraw raw;
3996
3997     ofpbuf_use_const(b, oh, ntohs(oh->length));
3998     raw = ofpraw_pull_assert(b);
3999
4000     osf = ofpbuf_pull(b, sizeof *osf);
4001     features->datapath_id = ntohll(osf->datapath_id);
4002     features->n_buffers = ntohl(osf->n_buffers);
4003     features->n_tables = osf->n_tables;
4004     features->auxiliary_id = 0;
4005
4006     features->capabilities = ntohl(osf->capabilities) &
4007         ofputil_capabilities_mask(oh->version);
4008
4009     if (raw == OFPRAW_OFPT10_FEATURES_REPLY) {
4010         if (osf->capabilities & htonl(OFPC10_STP)) {
4011             features->capabilities |= OFPUTIL_C_STP;
4012         }
4013         features->actions = decode_action_bits(osf->actions, of10_action_bits);
4014     } else if (raw == OFPRAW_OFPT11_FEATURES_REPLY
4015                || raw == OFPRAW_OFPT13_FEATURES_REPLY) {
4016         if (osf->capabilities & htonl(OFPC11_GROUP_STATS)) {
4017             features->capabilities |= OFPUTIL_C_GROUP_STATS;
4018         }
4019         features->actions = 0;
4020         if (raw == OFPRAW_OFPT13_FEATURES_REPLY) {
4021             features->auxiliary_id = osf->auxiliary_id;
4022         }
4023     } else {
4024         return OFPERR_OFPBRC_BAD_VERSION;
4025     }
4026
4027     return 0;
4028 }
4029
4030 /* In OpenFlow 1.0, 1.1, and 1.2, an OFPT_FEATURES_REPLY message lists all the
4031  * switch's ports, unless there are too many to fit.  In OpenFlow 1.3 and
4032  * later, an OFPT_FEATURES_REPLY does not list ports at all.
4033  *
4034  * Given a buffer 'b' that contains a Features Reply message, this message
4035  * checks if it contains a complete list of the switch's ports.  Returns true,
4036  * if so.  Returns false if the list is missing (OF1.3+) or incomplete
4037  * (OF1.0/1.1/1.2), and in the latter case removes all of the ports from the
4038  * message.
4039  *
4040  * When this function returns false, the caller should send an OFPST_PORT_DESC
4041  * stats request to get the ports. */
4042 bool
4043 ofputil_switch_features_has_ports(struct ofpbuf *b)
4044 {
4045     struct ofp_header *oh = ofpbuf_data(b);
4046     size_t phy_port_size;
4047
4048     if (oh->version >= OFP13_VERSION) {
4049         /* OpenFlow 1.3+ never has ports in the feature reply. */
4050         return false;
4051     }
4052
4053     phy_port_size = (oh->version == OFP10_VERSION
4054                      ? sizeof(struct ofp10_phy_port)
4055                      : sizeof(struct ofp11_port));
4056     if (ntohs(oh->length) + phy_port_size <= UINT16_MAX) {
4057         /* There's room for additional ports in the feature reply.
4058          * Assume that the list is complete. */
4059         return true;
4060     }
4061
4062     /* The feature reply has no room for more ports.  Probably the list is
4063      * truncated.  Drop the ports and tell the caller to retrieve them with
4064      * OFPST_PORT_DESC. */
4065     ofpbuf_set_size(b, sizeof *oh + sizeof(struct ofp_switch_features));
4066     ofpmsg_update_length(b);
4067     return false;
4068 }
4069
4070 static ovs_be32
4071 encode_action_bits(enum ofputil_action_bitmap ofputil_actions,
4072                    const struct ofputil_action_bit_translation *x)
4073 {
4074     uint32_t of_actions;
4075
4076     of_actions = 0;
4077     for (; x->ofputil_bit; x++) {
4078         if (ofputil_actions & x->ofputil_bit) {
4079             of_actions |= 1 << x->of_bit;
4080         }
4081     }
4082     return htonl(of_actions);
4083 }
4084
4085 /* Returns a buffer owned by the caller that encodes 'features' in the format
4086  * required by 'protocol' with the given 'xid'.  The caller should append port
4087  * information to the buffer with subsequent calls to
4088  * ofputil_put_switch_features_port(). */
4089 struct ofpbuf *
4090 ofputil_encode_switch_features(const struct ofputil_switch_features *features,
4091                                enum ofputil_protocol protocol, ovs_be32 xid)
4092 {
4093     struct ofp_switch_features *osf;
4094     struct ofpbuf *b;
4095     enum ofp_version version;
4096     enum ofpraw raw;
4097
4098     version = ofputil_protocol_to_ofp_version(protocol);
4099     switch (version) {
4100     case OFP10_VERSION:
4101         raw = OFPRAW_OFPT10_FEATURES_REPLY;
4102         break;
4103     case OFP11_VERSION:
4104     case OFP12_VERSION:
4105         raw = OFPRAW_OFPT11_FEATURES_REPLY;
4106         break;
4107     case OFP13_VERSION:
4108     case OFP14_VERSION:
4109         raw = OFPRAW_OFPT13_FEATURES_REPLY;
4110         break;
4111     default:
4112         OVS_NOT_REACHED();
4113     }
4114     b = ofpraw_alloc_xid(raw, version, xid, 0);
4115     osf = ofpbuf_put_zeros(b, sizeof *osf);
4116     osf->datapath_id = htonll(features->datapath_id);
4117     osf->n_buffers = htonl(features->n_buffers);
4118     osf->n_tables = features->n_tables;
4119
4120     osf->capabilities = htonl(features->capabilities & OFPC_COMMON);
4121     osf->capabilities = htonl(features->capabilities &
4122                               ofputil_capabilities_mask(version));
4123     switch (version) {
4124     case OFP10_VERSION:
4125         if (features->capabilities & OFPUTIL_C_STP) {
4126             osf->capabilities |= htonl(OFPC10_STP);
4127         }
4128         osf->actions = encode_action_bits(features->actions, of10_action_bits);
4129         break;
4130     case OFP13_VERSION:
4131     case OFP14_VERSION:
4132         osf->auxiliary_id = features->auxiliary_id;
4133         /* fall through */
4134     case OFP11_VERSION:
4135     case OFP12_VERSION:
4136         if (features->capabilities & OFPUTIL_C_GROUP_STATS) {
4137             osf->capabilities |= htonl(OFPC11_GROUP_STATS);
4138         }
4139         break;
4140     default:
4141         OVS_NOT_REACHED();
4142     }
4143
4144     return b;
4145 }
4146
4147 /* Encodes 'pp' into the format required by the switch_features message already
4148  * in 'b', which should have been returned by ofputil_encode_switch_features(),
4149  * and appends the encoded version to 'b'. */
4150 void
4151 ofputil_put_switch_features_port(const struct ofputil_phy_port *pp,
4152                                  struct ofpbuf *b)
4153 {
4154     const struct ofp_header *oh = ofpbuf_data(b);
4155
4156     if (oh->version < OFP13_VERSION) {
4157         /* Try adding a port description to the message, but drop it again if
4158          * the buffer overflows.  (This possibility for overflow is why
4159          * OpenFlow 1.3+ moved port descriptions into a multipart message.)  */
4160         size_t start_ofs = ofpbuf_size(b);
4161         ofputil_put_phy_port(oh->version, pp, b);
4162         if (ofpbuf_size(b) > UINT16_MAX) {
4163             ofpbuf_set_size(b, start_ofs);
4164         }
4165     }
4166 }
4167 \f
4168 /* ofputil_port_status */
4169
4170 /* Decodes the OpenFlow "port status" message in '*ops' into an abstract form
4171  * in '*ps'.  Returns 0 if successful, otherwise an OFPERR_* value. */
4172 enum ofperr
4173 ofputil_decode_port_status(const struct ofp_header *oh,
4174                            struct ofputil_port_status *ps)
4175 {
4176     const struct ofp_port_status *ops;
4177     struct ofpbuf b;
4178     int retval;
4179
4180     ofpbuf_use_const(&b, oh, ntohs(oh->length));
4181     ofpraw_pull_assert(&b);
4182     ops = ofpbuf_pull(&b, sizeof *ops);
4183
4184     if (ops->reason != OFPPR_ADD &&
4185         ops->reason != OFPPR_DELETE &&
4186         ops->reason != OFPPR_MODIFY) {
4187         return OFPERR_NXBRC_BAD_REASON;
4188     }
4189     ps->reason = ops->reason;
4190
4191     retval = ofputil_pull_phy_port(oh->version, &b, &ps->desc);
4192     ovs_assert(retval != EOF);
4193     return retval;
4194 }
4195
4196 /* Converts the abstract form of a "port status" message in '*ps' into an
4197  * OpenFlow message suitable for 'protocol', and returns that encoded form in
4198  * a buffer owned by the caller. */
4199 struct ofpbuf *
4200 ofputil_encode_port_status(const struct ofputil_port_status *ps,
4201                            enum ofputil_protocol protocol)
4202 {
4203     struct ofp_port_status *ops;
4204     struct ofpbuf *b;
4205     enum ofp_version version;
4206     enum ofpraw raw;
4207
4208     version = ofputil_protocol_to_ofp_version(protocol);
4209     switch (version) {
4210     case OFP10_VERSION:
4211         raw = OFPRAW_OFPT10_PORT_STATUS;
4212         break;
4213
4214     case OFP11_VERSION:
4215     case OFP12_VERSION:
4216     case OFP13_VERSION:
4217         raw = OFPRAW_OFPT11_PORT_STATUS;
4218         break;
4219
4220     case OFP14_VERSION:
4221         raw = OFPRAW_OFPT14_PORT_STATUS;
4222         break;
4223
4224     default:
4225         OVS_NOT_REACHED();
4226     }
4227
4228     b = ofpraw_alloc_xid(raw, version, htonl(0), 0);
4229     ops = ofpbuf_put_zeros(b, sizeof *ops);
4230     ops->reason = ps->reason;
4231     ofputil_put_phy_port(version, &ps->desc, b);
4232     ofpmsg_update_length(b);
4233     return b;
4234 }
4235
4236 /* ofputil_port_mod */
4237
4238 static enum ofperr
4239 parse_port_mod_ethernet_property(struct ofpbuf *property,
4240                                  struct ofputil_port_mod *pm)
4241 {
4242     struct ofp14_port_mod_prop_ethernet *eth = ofpbuf_data(property);
4243
4244     if (ofpbuf_size(property) != sizeof *eth) {
4245         return OFPERR_OFPBRC_BAD_LEN;
4246     }
4247
4248     pm->advertise = netdev_port_features_from_ofp11(eth->advertise);
4249     return 0;
4250 }
4251
4252 /* Decodes the OpenFlow "port mod" message in '*oh' into an abstract form in
4253  * '*pm'.  Returns 0 if successful, otherwise an OFPERR_* value. */
4254 enum ofperr
4255 ofputil_decode_port_mod(const struct ofp_header *oh,
4256                         struct ofputil_port_mod *pm, bool loose)
4257 {
4258     enum ofpraw raw;
4259     struct ofpbuf b;
4260
4261     ofpbuf_use_const(&b, oh, ntohs(oh->length));
4262     raw = ofpraw_pull_assert(&b);
4263
4264     if (raw == OFPRAW_OFPT10_PORT_MOD) {
4265         const struct ofp10_port_mod *opm = ofpbuf_data(&b);
4266
4267         pm->port_no = u16_to_ofp(ntohs(opm->port_no));
4268         memcpy(pm->hw_addr, opm->hw_addr, ETH_ADDR_LEN);
4269         pm->config = ntohl(opm->config) & OFPPC10_ALL;
4270         pm->mask = ntohl(opm->mask) & OFPPC10_ALL;
4271         pm->advertise = netdev_port_features_from_ofp10(opm->advertise);
4272     } else if (raw == OFPRAW_OFPT11_PORT_MOD) {
4273         const struct ofp11_port_mod *opm = ofpbuf_data(&b);
4274         enum ofperr error;
4275
4276         error = ofputil_port_from_ofp11(opm->port_no, &pm->port_no);
4277         if (error) {
4278             return error;
4279         }
4280
4281         memcpy(pm->hw_addr, opm->hw_addr, ETH_ADDR_LEN);
4282         pm->config = ntohl(opm->config) & OFPPC11_ALL;
4283         pm->mask = ntohl(opm->mask) & OFPPC11_ALL;
4284         pm->advertise = netdev_port_features_from_ofp11(opm->advertise);
4285     } else if (raw == OFPRAW_OFPT14_PORT_MOD) {
4286         const struct ofp14_port_mod *opm = ofpbuf_pull(&b, sizeof *opm);
4287         enum ofperr error;
4288
4289         memset(pm, 0, sizeof *pm);
4290
4291         error = ofputil_port_from_ofp11(opm->port_no, &pm->port_no);
4292         if (error) {
4293             return error;
4294         }
4295
4296         memcpy(pm->hw_addr, opm->hw_addr, ETH_ADDR_LEN);
4297         pm->config = ntohl(opm->config) & OFPPC11_ALL;
4298         pm->mask = ntohl(opm->mask) & OFPPC11_ALL;
4299
4300         while (ofpbuf_size(&b) > 0) {
4301             struct ofpbuf property;
4302             enum ofperr error;
4303             uint16_t type;
4304
4305             error = ofputil_pull_property(&b, &property, &type);
4306             if (error) {
4307                 return error;
4308             }
4309
4310             switch (type) {
4311             case OFPPMPT14_ETHERNET:
4312                 error = parse_port_mod_ethernet_property(&property, pm);
4313                 break;
4314
4315             default:
4316                 log_property(loose, "unknown port_mod property %"PRIu16, type);
4317                 if (loose) {
4318                     error = 0;
4319                 } else if (type == OFPPMPT14_EXPERIMENTER) {
4320                     error = OFPERR_OFPBPC_BAD_EXPERIMENTER;
4321                 } else {
4322                     error = OFPERR_OFPBRC_BAD_TYPE;
4323                 }
4324                 break;
4325             }
4326
4327             if (error) {
4328                 return error;
4329             }
4330         }
4331     } else {
4332         return OFPERR_OFPBRC_BAD_TYPE;
4333     }
4334
4335     pm->config &= pm->mask;
4336     return 0;
4337 }
4338
4339 /* Converts the abstract form of a "port mod" message in '*pm' into an OpenFlow
4340  * message suitable for 'protocol', and returns that encoded form in a buffer
4341  * owned by the caller. */
4342 struct ofpbuf *
4343 ofputil_encode_port_mod(const struct ofputil_port_mod *pm,
4344                         enum ofputil_protocol protocol)
4345 {
4346     enum ofp_version ofp_version = ofputil_protocol_to_ofp_version(protocol);
4347     struct ofpbuf *b;
4348
4349     switch (ofp_version) {
4350     case OFP10_VERSION: {
4351         struct ofp10_port_mod *opm;
4352
4353         b = ofpraw_alloc(OFPRAW_OFPT10_PORT_MOD, ofp_version, 0);
4354         opm = ofpbuf_put_zeros(b, sizeof *opm);
4355         opm->port_no = htons(ofp_to_u16(pm->port_no));
4356         memcpy(opm->hw_addr, pm->hw_addr, ETH_ADDR_LEN);
4357         opm->config = htonl(pm->config & OFPPC10_ALL);
4358         opm->mask = htonl(pm->mask & OFPPC10_ALL);
4359         opm->advertise = netdev_port_features_to_ofp10(pm->advertise);
4360         break;
4361     }
4362
4363     case OFP11_VERSION:
4364     case OFP12_VERSION:
4365     case OFP13_VERSION: {
4366         struct ofp11_port_mod *opm;
4367
4368         b = ofpraw_alloc(OFPRAW_OFPT11_PORT_MOD, ofp_version, 0);
4369         opm = ofpbuf_put_zeros(b, sizeof *opm);
4370         opm->port_no = ofputil_port_to_ofp11(pm->port_no);
4371         memcpy(opm->hw_addr, pm->hw_addr, ETH_ADDR_LEN);
4372         opm->config = htonl(pm->config & OFPPC11_ALL);
4373         opm->mask = htonl(pm->mask & OFPPC11_ALL);
4374         opm->advertise = netdev_port_features_to_ofp11(pm->advertise);
4375         break;
4376     }
4377     case OFP14_VERSION: {
4378         struct ofp14_port_mod_prop_ethernet *eth;
4379         struct ofp14_port_mod *opm;
4380
4381         b = ofpraw_alloc(OFPRAW_OFPT14_PORT_MOD, ofp_version, sizeof *eth);
4382         opm = ofpbuf_put_zeros(b, sizeof *opm);
4383         opm->port_no = ofputil_port_to_ofp11(pm->port_no);
4384         memcpy(opm->hw_addr, pm->hw_addr, ETH_ADDR_LEN);
4385         opm->config = htonl(pm->config & OFPPC11_ALL);
4386         opm->mask = htonl(pm->mask & OFPPC11_ALL);
4387
4388         if (pm->advertise) {
4389             eth = ofpbuf_put_zeros(b, sizeof *eth);
4390             eth->type = htons(OFPPMPT14_ETHERNET);
4391             eth->length = htons(sizeof *eth);
4392             eth->advertise = netdev_port_features_to_ofp11(pm->advertise);
4393         }
4394         break;
4395     }
4396     default:
4397         OVS_NOT_REACHED();
4398     }
4399
4400     return b;
4401 }
4402
4403 static enum ofperr
4404 pull_table_feature_property(struct ofpbuf *msg, struct ofpbuf *payload,
4405                         uint16_t *typep)
4406 {
4407     enum ofperr error;
4408
4409     error = ofputil_pull_property(msg, payload, typep);
4410     if (payload && !error) {
4411         ofpbuf_pull(payload, sizeof(struct ofp_prop_header));
4412     }
4413     return error;
4414 }
4415
4416 static enum ofperr
4417 parse_table_ids(struct ofpbuf *payload, uint32_t *ids)
4418 {
4419     uint16_t type;
4420
4421     *ids = 0;
4422     while (ofpbuf_size(payload) > 0) {
4423         enum ofperr error = pull_table_feature_property(payload, NULL, &type);
4424         if (error) {
4425             return error;
4426         }
4427         if (type < CHAR_BIT * sizeof *ids) {
4428             *ids |= 1u << type;
4429         }
4430     }
4431     return 0;
4432 }
4433
4434 static enum ofperr
4435 parse_instruction_ids(struct ofpbuf *payload, bool loose, uint32_t *insts)
4436 {
4437     *insts = 0;
4438     while (ofpbuf_size(payload) > 0) {
4439         enum ovs_instruction_type inst;
4440         enum ofperr error;
4441         uint16_t ofpit;
4442
4443         error = pull_table_feature_property(payload, NULL, &ofpit);
4444         if (error) {
4445             return error;
4446         }
4447
4448         error = ovs_instruction_type_from_inst_type(&inst, ofpit);
4449         if (!error) {
4450             *insts |= 1u << inst;
4451         } else if (!loose) {
4452             return error;
4453         }
4454     }
4455     return 0;
4456 }
4457
4458 static enum ofperr
4459 parse_table_features_next_table(struct ofpbuf *payload,
4460                                 unsigned long int *next_tables)
4461 {
4462     size_t i;
4463
4464     memset(next_tables, 0, bitmap_n_bytes(255));
4465     for (i = 0; i < ofpbuf_size(payload); i++) {
4466         uint8_t id = ((const uint8_t *) ofpbuf_data(payload))[i];
4467         if (id >= 255) {
4468             return OFPERR_OFPBPC_BAD_VALUE;
4469         }
4470         bitmap_set1(next_tables, id);
4471     }
4472     return 0;
4473 }
4474
4475 static enum ofperr
4476 parse_oxm(struct ofpbuf *b, bool loose,
4477           const struct mf_field **fieldp, bool *hasmask)
4478 {
4479     ovs_be32 *oxmp;
4480     uint32_t oxm;
4481
4482     oxmp = ofpbuf_try_pull(b, sizeof *oxmp);
4483     if (!oxmp) {
4484         return OFPERR_OFPBPC_BAD_LEN;
4485     }
4486     oxm = ntohl(*oxmp);
4487
4488     /* Determine '*hasmask'.  If 'oxm' is masked, convert it to the equivalent
4489      * unmasked version, because the table of OXM fields we support only has
4490      * masked versions of fields that we support with masks, but we should be
4491      * able to parse the masked versions of those here. */
4492     *hasmask = NXM_HASMASK(oxm);
4493     if (*hasmask) {
4494         if (NXM_LENGTH(oxm) & 1) {
4495             return OFPERR_OFPBPC_BAD_VALUE;
4496         }
4497         oxm = NXM_HEADER(NXM_VENDOR(oxm), NXM_FIELD(oxm), NXM_LENGTH(oxm) / 2);
4498     }
4499
4500     *fieldp = mf_from_nxm_header(oxm);
4501     if (!*fieldp) {
4502         log_property(loose, "unknown OXM field %#"PRIx32, ntohl(*oxmp));
4503     }
4504     return *fieldp ? 0 : OFPERR_OFPBMC_BAD_FIELD;
4505 }
4506
4507 static enum ofperr
4508 parse_oxms(struct ofpbuf *payload, bool loose,
4509            uint64_t *exactp, uint64_t *maskedp)
4510 {
4511     uint64_t exact, masked;
4512
4513     exact = masked = 0;
4514     while (ofpbuf_size(payload) > 0) {
4515         const struct mf_field *field;
4516         enum ofperr error;
4517         bool hasmask;
4518
4519         error = parse_oxm(payload, loose, &field, &hasmask);
4520         if (!error) {
4521             if (hasmask) {
4522                 masked |= UINT64_C(1) << field->id;
4523             } else {
4524                 exact |= UINT64_C(1) << field->id;
4525             }
4526         } else if (error != OFPERR_OFPBMC_BAD_FIELD || !loose) {
4527             return error;
4528         }
4529     }
4530     if (exactp) {
4531         *exactp = exact;
4532     } else if (exact) {
4533         return OFPERR_OFPBMC_BAD_MASK;
4534     }
4535     if (maskedp) {
4536         *maskedp = masked;
4537     } else if (masked) {
4538         return OFPERR_OFPBMC_BAD_MASK;
4539     }
4540     return 0;
4541 }
4542
4543 /* Converts an OFPMP_TABLE_FEATURES request or reply in 'msg' into an abstract
4544  * ofputil_table_features in 'tf'.
4545  *
4546  * If 'loose' is true, this function ignores properties and values that it does
4547  * not understand, as a controller would want to do when interpreting
4548  * capabilities provided by a switch.  If 'loose' is false, this function
4549  * treats unknown properties and values as an error, as a switch would want to
4550  * do when interpreting a configuration request made by a controller.
4551  *
4552  * A single OpenFlow message can specify features for multiple tables.  Calling
4553  * this function multiple times for a single 'msg' iterates through the tables
4554  * in the message.  The caller must initially leave 'msg''s layer pointers null
4555  * and not modify them between calls.
4556  *
4557  * Returns 0 if successful, EOF if no tables were left in this 'msg', otherwise
4558  * a positive "enum ofperr" value. */
4559 int
4560 ofputil_decode_table_features(struct ofpbuf *msg,
4561                               struct ofputil_table_features *tf, bool loose)
4562 {
4563     struct ofp13_table_features *otf;
4564     unsigned int len;
4565
4566     if (!msg->frame) {
4567         ofpraw_pull_assert(msg);
4568     }
4569
4570     if (!ofpbuf_size(msg)) {
4571         return EOF;
4572     }
4573
4574     if (ofpbuf_size(msg) < sizeof *otf) {
4575         return OFPERR_OFPBPC_BAD_LEN;
4576     }
4577
4578     otf = ofpbuf_data(msg);
4579     len = ntohs(otf->length);
4580     if (len < sizeof *otf || len % 8 || len > ofpbuf_size(msg)) {
4581         return OFPERR_OFPBPC_BAD_LEN;
4582     }
4583     ofpbuf_pull(msg, sizeof *otf);
4584
4585     tf->table_id = otf->table_id;
4586     if (tf->table_id == OFPTT_ALL) {
4587         return OFPERR_OFPTFFC_BAD_TABLE;
4588     }
4589
4590     ovs_strlcpy(tf->name, otf->name, OFP_MAX_TABLE_NAME_LEN);
4591     tf->metadata_match = otf->metadata_match;
4592     tf->metadata_write = otf->metadata_write;
4593     tf->config = ntohl(otf->config);
4594     tf->max_entries = ntohl(otf->max_entries);
4595
4596     while (ofpbuf_size(msg) > 0) {
4597         struct ofpbuf payload;
4598         enum ofperr error;
4599         uint16_t type;
4600
4601         error = pull_table_feature_property(msg, &payload, &type);
4602         if (error) {
4603             return error;
4604         }
4605
4606         switch ((enum ofp13_table_feature_prop_type) type) {
4607         case OFPTFPT13_INSTRUCTIONS:
4608             error = parse_instruction_ids(&payload, loose,
4609                                           &tf->nonmiss.instructions);
4610             break;
4611         case OFPTFPT13_INSTRUCTIONS_MISS:
4612             error = parse_instruction_ids(&payload, loose,
4613                                           &tf->miss.instructions);
4614             break;
4615
4616         case OFPTFPT13_NEXT_TABLES:
4617             error = parse_table_features_next_table(&payload,
4618                                                     tf->nonmiss.next);
4619             break;
4620         case OFPTFPT13_NEXT_TABLES_MISS:
4621             error = parse_table_features_next_table(&payload, tf->miss.next);
4622             break;
4623
4624         case OFPTFPT13_WRITE_ACTIONS:
4625             error = parse_table_ids(&payload, &tf->nonmiss.write.actions);
4626             break;
4627         case OFPTFPT13_WRITE_ACTIONS_MISS:
4628             error = parse_table_ids(&payload, &tf->miss.write.actions);
4629             break;
4630
4631         case OFPTFPT13_APPLY_ACTIONS:
4632             error = parse_table_ids(&payload, &tf->nonmiss.apply.actions);
4633             break;
4634         case OFPTFPT13_APPLY_ACTIONS_MISS:
4635             error = parse_table_ids(&payload, &tf->miss.apply.actions);
4636             break;
4637
4638         case OFPTFPT13_MATCH:
4639             error = parse_oxms(&payload, loose, &tf->match, &tf->mask);
4640             break;
4641         case OFPTFPT13_WILDCARDS:
4642             error = parse_oxms(&payload, loose, &tf->wildcard, NULL);
4643             break;
4644
4645         case OFPTFPT13_WRITE_SETFIELD:
4646             error = parse_oxms(&payload, loose,
4647                                &tf->nonmiss.write.set_fields, NULL);
4648             break;
4649         case OFPTFPT13_WRITE_SETFIELD_MISS:
4650             error = parse_oxms(&payload, loose,
4651                                &tf->miss.write.set_fields, NULL);
4652             break;
4653         case OFPTFPT13_APPLY_SETFIELD:
4654             error = parse_oxms(&payload, loose,
4655                                &tf->nonmiss.apply.set_fields, NULL);
4656             break;
4657         case OFPTFPT13_APPLY_SETFIELD_MISS:
4658             error = parse_oxms(&payload, loose,
4659                                &tf->miss.apply.set_fields, NULL);
4660             break;
4661
4662         case OFPTFPT13_EXPERIMENTER:
4663         case OFPTFPT13_EXPERIMENTER_MISS:
4664         default:
4665             log_property(loose, "unknown table features property %"PRIu16,
4666                          type);
4667             error = loose ? 0 : OFPERR_OFPBPC_BAD_TYPE;
4668             break;
4669         }
4670         if (error) {
4671             return error;
4672         }
4673     }
4674
4675     /* Fix inconsistencies:
4676      *
4677      *     - Turn off 'mask' and 'wildcard' bits that are not in 'match',
4678      *       because a field must be matchable to be masked or wildcarded.
4679      *
4680      *     - Turn on 'wildcard' bits that are set in 'mask', because a field
4681      *       that is arbitrarily maskable can be wildcarded entirely. */
4682     tf->mask &= tf->match;
4683     tf->wildcard &= tf->match;
4684
4685     tf->wildcard |= tf->mask;
4686
4687     return 0;
4688 }
4689
4690 /* Encodes and returns a request to obtain the table features of a switch.
4691  * The message is encoded for OpenFlow version 'ofp_version'. */
4692 struct ofpbuf *
4693 ofputil_encode_table_features_request(enum ofp_version ofp_version)
4694 {
4695     struct ofpbuf *request = NULL;
4696
4697     switch (ofp_version) {
4698     case OFP10_VERSION:
4699     case OFP11_VERSION:
4700     case OFP12_VERSION:
4701         ovs_fatal(0, "dump-table-features needs OpenFlow 1.3 or later "
4702                      "(\'-O OpenFlow13\')");
4703     case OFP13_VERSION:
4704     case OFP14_VERSION:
4705         request = ofpraw_alloc(OFPRAW_OFPST13_TABLE_FEATURES_REQUEST,
4706                                ofp_version, 0);
4707         break;
4708     default:
4709         OVS_NOT_REACHED();
4710     }
4711
4712     return request;
4713 }
4714
4715 /* ofputil_table_mod */
4716
4717 /* Decodes the OpenFlow "table mod" message in '*oh' into an abstract form in
4718  * '*pm'.  Returns 0 if successful, otherwise an OFPERR_* value. */
4719 enum ofperr
4720 ofputil_decode_table_mod(const struct ofp_header *oh,
4721                          struct ofputil_table_mod *pm)
4722 {
4723     enum ofpraw raw;
4724     struct ofpbuf b;
4725
4726     ofpbuf_use_const(&b, oh, ntohs(oh->length));
4727     raw = ofpraw_pull_assert(&b);
4728
4729     if (raw == OFPRAW_OFPT11_TABLE_MOD) {
4730         const struct ofp11_table_mod *otm = ofpbuf_data(&b);
4731
4732         pm->table_id = otm->table_id;
4733         pm->config = ntohl(otm->config);
4734     } else if (raw == OFPRAW_OFPT14_TABLE_MOD) {
4735         const struct ofp14_table_mod *otm = ofpbuf_pull(&b, sizeof *otm);
4736
4737         pm->table_id = otm->table_id;
4738         pm->config = ntohl(otm->config);
4739         /* We do not understand any properties yet, so we do not bother
4740          * parsing them. */
4741     } else {
4742         return OFPERR_OFPBRC_BAD_TYPE;
4743     }
4744
4745     return 0;
4746 }
4747
4748 /* Converts the abstract form of a "table mod" message in '*pm' into an OpenFlow
4749  * message suitable for 'protocol', and returns that encoded form in a buffer
4750  * owned by the caller. */
4751 struct ofpbuf *
4752 ofputil_encode_table_mod(const struct ofputil_table_mod *pm,
4753                         enum ofputil_protocol protocol)
4754 {
4755     enum ofp_version ofp_version = ofputil_protocol_to_ofp_version(protocol);
4756     struct ofpbuf *b;
4757
4758     switch (ofp_version) {
4759     case OFP10_VERSION: {
4760         ovs_fatal(0, "table mod needs OpenFlow 1.1 or later "
4761                      "(\'-O OpenFlow11\')");
4762         break;
4763     }
4764     case OFP11_VERSION:
4765     case OFP12_VERSION:
4766     case OFP13_VERSION: {
4767         struct ofp11_table_mod *otm;
4768
4769         b = ofpraw_alloc(OFPRAW_OFPT11_TABLE_MOD, ofp_version, 0);
4770         otm = ofpbuf_put_zeros(b, sizeof *otm);
4771         otm->table_id = pm->table_id;
4772         otm->config = htonl(pm->config);
4773         break;
4774     }
4775     case OFP14_VERSION: {
4776         struct ofp14_table_mod *otm;
4777
4778         b = ofpraw_alloc(OFPRAW_OFPT14_TABLE_MOD, ofp_version, 0);
4779         otm = ofpbuf_put_zeros(b, sizeof *otm);
4780         otm->table_id = pm->table_id;
4781         otm->config = htonl(pm->config);
4782         break;
4783     }
4784     default:
4785         OVS_NOT_REACHED();
4786     }
4787
4788     return b;
4789 }
4790 \f
4791 /* ofputil_role_request */
4792
4793 /* Decodes the OpenFlow "role request" or "role reply" message in '*oh' into
4794  * an abstract form in '*rr'.  Returns 0 if successful, otherwise an
4795  * OFPERR_* value. */
4796 enum ofperr
4797 ofputil_decode_role_message(const struct ofp_header *oh,
4798                             struct ofputil_role_request *rr)
4799 {
4800     struct ofpbuf b;
4801     enum ofpraw raw;
4802
4803     ofpbuf_use_const(&b, oh, ntohs(oh->length));
4804     raw = ofpraw_pull_assert(&b);
4805
4806     if (raw == OFPRAW_OFPT12_ROLE_REQUEST ||
4807         raw == OFPRAW_OFPT12_ROLE_REPLY) {
4808         const struct ofp12_role_request *orr = ofpbuf_l3(&b);
4809
4810         if (orr->role != htonl(OFPCR12_ROLE_NOCHANGE) &&
4811             orr->role != htonl(OFPCR12_ROLE_EQUAL) &&
4812             orr->role != htonl(OFPCR12_ROLE_MASTER) &&
4813             orr->role != htonl(OFPCR12_ROLE_SLAVE)) {
4814             return OFPERR_OFPRRFC_BAD_ROLE;
4815         }
4816
4817         rr->role = ntohl(orr->role);
4818         if (raw == OFPRAW_OFPT12_ROLE_REQUEST
4819             ? orr->role == htonl(OFPCR12_ROLE_NOCHANGE)
4820             : orr->generation_id == OVS_BE64_MAX) {
4821             rr->have_generation_id = false;
4822             rr->generation_id = 0;
4823         } else {
4824             rr->have_generation_id = true;
4825             rr->generation_id = ntohll(orr->generation_id);
4826         }
4827     } else if (raw == OFPRAW_NXT_ROLE_REQUEST ||
4828                raw == OFPRAW_NXT_ROLE_REPLY) {
4829         const struct nx_role_request *nrr = ofpbuf_l3(&b);
4830
4831         BUILD_ASSERT(NX_ROLE_OTHER + 1 == OFPCR12_ROLE_EQUAL);
4832         BUILD_ASSERT(NX_ROLE_MASTER + 1 == OFPCR12_ROLE_MASTER);
4833         BUILD_ASSERT(NX_ROLE_SLAVE + 1 == OFPCR12_ROLE_SLAVE);
4834
4835         if (nrr->role != htonl(NX_ROLE_OTHER) &&
4836             nrr->role != htonl(NX_ROLE_MASTER) &&
4837             nrr->role != htonl(NX_ROLE_SLAVE)) {
4838             return OFPERR_OFPRRFC_BAD_ROLE;
4839         }
4840
4841         rr->role = ntohl(nrr->role) + 1;
4842         rr->have_generation_id = false;
4843         rr->generation_id = 0;
4844     } else {
4845         OVS_NOT_REACHED();
4846     }
4847
4848     return 0;
4849 }
4850
4851 /* Returns an encoded form of a role reply suitable for the "request" in a
4852  * buffer owned by the caller. */
4853 struct ofpbuf *
4854 ofputil_encode_role_reply(const struct ofp_header *request,
4855                           const struct ofputil_role_request *rr)
4856 {
4857     struct ofpbuf *buf;
4858     enum ofpraw raw;
4859
4860     raw = ofpraw_decode_assert(request);
4861     if (raw == OFPRAW_OFPT12_ROLE_REQUEST) {
4862         struct ofp12_role_request *orr;
4863
4864         buf = ofpraw_alloc_reply(OFPRAW_OFPT12_ROLE_REPLY, request, 0);
4865         orr = ofpbuf_put_zeros(buf, sizeof *orr);
4866
4867         orr->role = htonl(rr->role);
4868         orr->generation_id = htonll(rr->have_generation_id
4869                                     ? rr->generation_id
4870                                     : UINT64_MAX);
4871     } else if (raw == OFPRAW_NXT_ROLE_REQUEST) {
4872         struct nx_role_request *nrr;
4873
4874         BUILD_ASSERT(NX_ROLE_OTHER == OFPCR12_ROLE_EQUAL - 1);
4875         BUILD_ASSERT(NX_ROLE_MASTER == OFPCR12_ROLE_MASTER - 1);
4876         BUILD_ASSERT(NX_ROLE_SLAVE == OFPCR12_ROLE_SLAVE - 1);
4877
4878         buf = ofpraw_alloc_reply(OFPRAW_NXT_ROLE_REPLY, request, 0);
4879         nrr = ofpbuf_put_zeros(buf, sizeof *nrr);
4880         nrr->role = htonl(rr->role - 1);
4881     } else {
4882         OVS_NOT_REACHED();
4883     }
4884
4885     return buf;
4886 }
4887 \f
4888 struct ofpbuf *
4889 ofputil_encode_role_status(const struct ofputil_role_status *status,
4890                            enum ofputil_protocol protocol)
4891 {
4892     struct ofpbuf *buf;
4893     enum ofp_version version;
4894     struct ofp14_role_status *rstatus;
4895
4896     version = ofputil_protocol_to_ofp_version(protocol);
4897     buf = ofpraw_alloc_xid(OFPRAW_OFPT14_ROLE_STATUS, version, htonl(0), 0);
4898     rstatus = ofpbuf_put_zeros(buf, sizeof *rstatus);
4899     rstatus->role = htonl(status->role);
4900     rstatus->reason = status->reason;
4901     rstatus->generation_id = htonll(status->generation_id);
4902
4903     return buf;
4904 }
4905
4906 enum ofperr
4907 ofputil_decode_role_status(const struct ofp_header *oh,
4908                            struct ofputil_role_status *rs)
4909 {
4910     struct ofpbuf b;
4911     enum ofpraw raw;
4912     const struct ofp14_role_status *r;
4913
4914     ofpbuf_use_const(&b, oh, ntohs(oh->length));
4915     raw = ofpraw_pull_assert(&b);
4916     ovs_assert(raw == OFPRAW_OFPT14_ROLE_STATUS);
4917
4918     r = ofpbuf_l3(&b);
4919     if (r->role != htonl(OFPCR12_ROLE_NOCHANGE) &&
4920         r->role != htonl(OFPCR12_ROLE_EQUAL) &&
4921         r->role != htonl(OFPCR12_ROLE_MASTER) &&
4922         r->role != htonl(OFPCR12_ROLE_SLAVE)) {
4923         return OFPERR_OFPRRFC_BAD_ROLE;
4924     }
4925
4926     rs->role = ntohl(r->role);
4927     rs->generation_id = ntohll(r->generation_id);
4928     rs->reason = r->reason;
4929
4930     return 0;
4931 }
4932
4933 /* Table stats. */
4934
4935 static void
4936 ofputil_put_ofp10_table_stats(const struct ofp12_table_stats *in,
4937                               struct ofpbuf *buf)
4938 {
4939     struct wc_map {
4940         enum ofp10_flow_wildcards wc10;
4941         enum oxm12_ofb_match_fields mf12;
4942     };
4943
4944     static const struct wc_map wc_map[] = {
4945         { OFPFW10_IN_PORT,     OFPXMT12_OFB_IN_PORT },
4946         { OFPFW10_DL_VLAN,     OFPXMT12_OFB_VLAN_VID },
4947         { OFPFW10_DL_SRC,      OFPXMT12_OFB_ETH_SRC },
4948         { OFPFW10_DL_DST,      OFPXMT12_OFB_ETH_DST},
4949         { OFPFW10_DL_TYPE,     OFPXMT12_OFB_ETH_TYPE },
4950         { OFPFW10_NW_PROTO,    OFPXMT12_OFB_IP_PROTO },
4951         { OFPFW10_TP_SRC,      OFPXMT12_OFB_TCP_SRC },
4952         { OFPFW10_TP_DST,      OFPXMT12_OFB_TCP_DST },
4953         { OFPFW10_NW_SRC_MASK, OFPXMT12_OFB_IPV4_SRC },
4954         { OFPFW10_NW_DST_MASK, OFPXMT12_OFB_IPV4_DST },
4955         { OFPFW10_DL_VLAN_PCP, OFPXMT12_OFB_VLAN_PCP },
4956         { OFPFW10_NW_TOS,      OFPXMT12_OFB_IP_DSCP },
4957     };
4958
4959     struct ofp10_table_stats *out;
4960     const struct wc_map *p;
4961
4962     out = ofpbuf_put_zeros(buf, sizeof *out);
4963     out->table_id = in->table_id;
4964     ovs_strlcpy(out->name, in->name, sizeof out->name);
4965     out->wildcards = 0;
4966     for (p = wc_map; p < &wc_map[ARRAY_SIZE(wc_map)]; p++) {
4967         if (in->wildcards & htonll(1ULL << p->mf12)) {
4968             out->wildcards |= htonl(p->wc10);
4969         }
4970     }
4971     out->max_entries = in->max_entries;
4972     out->active_count = in->active_count;
4973     put_32aligned_be64(&out->lookup_count, in->lookup_count);
4974     put_32aligned_be64(&out->matched_count, in->matched_count);
4975 }
4976
4977 static ovs_be32
4978 oxm12_to_ofp11_flow_match_fields(ovs_be64 oxm12)
4979 {
4980     struct map {
4981         enum ofp11_flow_match_fields fmf11;
4982         enum oxm12_ofb_match_fields mf12;
4983     };
4984
4985     static const struct map map[] = {
4986         { OFPFMF11_IN_PORT,     OFPXMT12_OFB_IN_PORT },
4987         { OFPFMF11_DL_VLAN,     OFPXMT12_OFB_VLAN_VID },
4988         { OFPFMF11_DL_VLAN_PCP, OFPXMT12_OFB_VLAN_PCP },
4989         { OFPFMF11_DL_TYPE,     OFPXMT12_OFB_ETH_TYPE },
4990         { OFPFMF11_NW_TOS,      OFPXMT12_OFB_IP_DSCP },
4991         { OFPFMF11_NW_PROTO,    OFPXMT12_OFB_IP_PROTO },
4992         { OFPFMF11_TP_SRC,      OFPXMT12_OFB_TCP_SRC },
4993         { OFPFMF11_TP_DST,      OFPXMT12_OFB_TCP_DST },
4994         { OFPFMF11_MPLS_LABEL,  OFPXMT12_OFB_MPLS_LABEL },
4995         { OFPFMF11_MPLS_TC,     OFPXMT12_OFB_MPLS_TC },
4996         /* I don't know what OFPFMF11_TYPE means. */
4997         { OFPFMF11_DL_SRC,      OFPXMT12_OFB_ETH_SRC },
4998         { OFPFMF11_DL_DST,      OFPXMT12_OFB_ETH_DST },
4999         { OFPFMF11_NW_SRC,      OFPXMT12_OFB_IPV4_SRC },
5000         { OFPFMF11_NW_DST,      OFPXMT12_OFB_IPV4_DST },
5001         { OFPFMF11_METADATA,    OFPXMT12_OFB_METADATA },
5002     };
5003
5004     const struct map *p;
5005     uint32_t fmf11;
5006
5007     fmf11 = 0;
5008     for (p = map; p < &map[ARRAY_SIZE(map)]; p++) {
5009         if (oxm12 & htonll(1ULL << p->mf12)) {
5010             fmf11 |= p->fmf11;
5011         }
5012     }
5013     return htonl(fmf11);
5014 }
5015
5016 static void
5017 ofputil_put_ofp11_table_stats(const struct ofp12_table_stats *in,
5018                               struct ofpbuf *buf)
5019 {
5020     struct ofp11_table_stats *out;
5021
5022     out = ofpbuf_put_zeros(buf, sizeof *out);
5023     out->table_id = in->table_id;
5024     ovs_strlcpy(out->name, in->name, sizeof out->name);
5025     out->wildcards = oxm12_to_ofp11_flow_match_fields(in->wildcards);
5026     out->match = oxm12_to_ofp11_flow_match_fields(in->match);
5027     out->instructions = in->instructions;
5028     out->write_actions = in->write_actions;
5029     out->apply_actions = in->apply_actions;
5030     out->config = in->config;
5031     out->max_entries = in->max_entries;
5032     out->active_count = in->active_count;
5033     out->lookup_count = in->lookup_count;
5034     out->matched_count = in->matched_count;
5035 }
5036
5037 static void
5038 ofputil_put_ofp12_table_stats(const struct ofp12_table_stats *in,
5039                               struct ofpbuf *buf)
5040 {
5041     struct ofp12_table_stats *out = ofpbuf_put(buf, in, sizeof *in);
5042
5043     /* Trim off OF1.3-only capabilities. */
5044     out->match &= htonll(OFPXMT12_MASK);
5045     out->wildcards &= htonll(OFPXMT12_MASK);
5046     out->write_setfields &= htonll(OFPXMT12_MASK);
5047     out->apply_setfields &= htonll(OFPXMT12_MASK);
5048 }
5049
5050 static void
5051 ofputil_put_ofp13_table_stats(const struct ofp12_table_stats *in,
5052                               struct ofpbuf *buf)
5053 {
5054     struct ofp13_table_stats *out;
5055
5056     /* OF 1.3 splits table features off the ofp_table_stats,
5057      * so there is not much here. */
5058
5059     out = ofpbuf_put_uninit(buf, sizeof *out);
5060     out->table_id = in->table_id;
5061     out->active_count = in->active_count;
5062     out->lookup_count = in->lookup_count;
5063     out->matched_count = in->matched_count;
5064 }
5065
5066 struct ofpbuf *
5067 ofputil_encode_table_stats_reply(const struct ofp12_table_stats stats[], int n,
5068                                  const struct ofp_header *request)
5069 {
5070     struct ofpbuf *reply;
5071     int i;
5072
5073     reply = ofpraw_alloc_stats_reply(request, n * sizeof *stats);
5074
5075     for (i = 0; i < n; i++) {
5076         switch ((enum ofp_version) request->version) {
5077         case OFP10_VERSION:
5078             ofputil_put_ofp10_table_stats(&stats[i], reply);
5079             break;
5080
5081         case OFP11_VERSION:
5082             ofputil_put_ofp11_table_stats(&stats[i], reply);
5083             break;
5084
5085         case OFP12_VERSION:
5086             ofputil_put_ofp12_table_stats(&stats[i], reply);
5087             break;
5088
5089         case OFP13_VERSION:
5090         case OFP14_VERSION:
5091             ofputil_put_ofp13_table_stats(&stats[i], reply);
5092             break;
5093
5094         default:
5095             OVS_NOT_REACHED();
5096         }
5097     }
5098
5099     return reply;
5100 }
5101 \f
5102 /* ofputil_flow_monitor_request */
5103
5104 /* Converts an NXST_FLOW_MONITOR request in 'msg' into an abstract
5105  * ofputil_flow_monitor_request in 'rq'.
5106  *
5107  * Multiple NXST_FLOW_MONITOR requests can be packed into a single OpenFlow
5108  * message.  Calling this function multiple times for a single 'msg' iterates
5109  * through the requests.  The caller must initially leave 'msg''s layer
5110  * pointers null and not modify them between calls.
5111  *
5112  * Returns 0 if successful, EOF if no requests were left in this 'msg',
5113  * otherwise an OFPERR_* value. */
5114 int
5115 ofputil_decode_flow_monitor_request(struct ofputil_flow_monitor_request *rq,
5116                                     struct ofpbuf *msg)
5117 {
5118     struct nx_flow_monitor_request *nfmr;
5119     uint16_t flags;
5120
5121     if (!msg->frame) {
5122         ofpraw_pull_assert(msg);
5123     }
5124
5125     if (!ofpbuf_size(msg)) {
5126         return EOF;
5127     }
5128
5129     nfmr = ofpbuf_try_pull(msg, sizeof *nfmr);
5130     if (!nfmr) {
5131         VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW_MONITOR request has %"PRIu32" "
5132                      "leftover bytes at end", ofpbuf_size(msg));
5133         return OFPERR_OFPBRC_BAD_LEN;
5134     }
5135
5136     flags = ntohs(nfmr->flags);
5137     if (!(flags & (NXFMF_ADD | NXFMF_DELETE | NXFMF_MODIFY))
5138         || flags & ~(NXFMF_INITIAL | NXFMF_ADD | NXFMF_DELETE
5139                      | NXFMF_MODIFY | NXFMF_ACTIONS | NXFMF_OWN)) {
5140         VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW_MONITOR has bad flags %#"PRIx16,
5141                      flags);
5142         return OFPERR_NXBRC_FM_BAD_FLAGS;
5143     }
5144
5145     if (!is_all_zeros(nfmr->zeros, sizeof nfmr->zeros)) {
5146         return OFPERR_NXBRC_MUST_BE_ZERO;
5147     }
5148
5149     rq->id = ntohl(nfmr->id);
5150     rq->flags = flags;
5151     rq->out_port = u16_to_ofp(ntohs(nfmr->out_port));
5152     rq->table_id = nfmr->table_id;
5153
5154     return nx_pull_match(msg, ntohs(nfmr->match_len), &rq->match, NULL, NULL);
5155 }
5156
5157 void
5158 ofputil_append_flow_monitor_request(
5159     const struct ofputil_flow_monitor_request *rq, struct ofpbuf *msg)
5160 {
5161     struct nx_flow_monitor_request *nfmr;
5162     size_t start_ofs;
5163     int match_len;
5164
5165     if (!ofpbuf_size(msg)) {
5166         ofpraw_put(OFPRAW_NXST_FLOW_MONITOR_REQUEST, OFP10_VERSION, msg);
5167     }
5168
5169     start_ofs = ofpbuf_size(msg);
5170     ofpbuf_put_zeros(msg, sizeof *nfmr);
5171     match_len = nx_put_match(msg, &rq->match, htonll(0), htonll(0));
5172
5173     nfmr = ofpbuf_at_assert(msg, start_ofs, sizeof *nfmr);
5174     nfmr->id = htonl(rq->id);
5175     nfmr->flags = htons(rq->flags);
5176     nfmr->out_port = htons(ofp_to_u16(rq->out_port));
5177     nfmr->match_len = htons(match_len);
5178     nfmr->table_id = rq->table_id;
5179 }
5180
5181 /* Converts an NXST_FLOW_MONITOR reply (also known as a flow update) in 'msg'
5182  * into an abstract ofputil_flow_update in 'update'.  The caller must have
5183  * initialized update->match to point to space allocated for a match.
5184  *
5185  * Uses 'ofpacts' to store the abstract OFPACT_* version of the update's
5186  * actions (except for NXFME_ABBREV, which never includes actions).  The caller
5187  * must initialize 'ofpacts' and retains ownership of it.  'update->ofpacts'
5188  * will point into the 'ofpacts' buffer.
5189  *
5190  * Multiple flow updates can be packed into a single OpenFlow message.  Calling
5191  * this function multiple times for a single 'msg' iterates through the
5192  * updates.  The caller must initially leave 'msg''s layer pointers null and
5193  * not modify them between calls.
5194  *
5195  * Returns 0 if successful, EOF if no updates were left in this 'msg',
5196  * otherwise an OFPERR_* value. */
5197 int
5198 ofputil_decode_flow_update(struct ofputil_flow_update *update,
5199                            struct ofpbuf *msg, struct ofpbuf *ofpacts)
5200 {
5201     struct nx_flow_update_header *nfuh;
5202     unsigned int length;
5203     struct ofp_header *oh;
5204
5205     if (!msg->frame) {
5206         ofpraw_pull_assert(msg);
5207     }
5208
5209     if (!ofpbuf_size(msg)) {
5210         return EOF;
5211     }
5212
5213     if (ofpbuf_size(msg) < sizeof(struct nx_flow_update_header)) {
5214         goto bad_len;
5215     }
5216
5217     oh = msg->frame;
5218
5219     nfuh = ofpbuf_data(msg);
5220     update->event = ntohs(nfuh->event);
5221     length = ntohs(nfuh->length);
5222     if (length > ofpbuf_size(msg) || length % 8) {
5223         goto bad_len;
5224     }
5225
5226     if (update->event == NXFME_ABBREV) {
5227         struct nx_flow_update_abbrev *nfua;
5228
5229         if (length != sizeof *nfua) {
5230             goto bad_len;
5231         }
5232
5233         nfua = ofpbuf_pull(msg, sizeof *nfua);
5234         update->xid = nfua->xid;
5235         return 0;
5236     } else if (update->event == NXFME_ADDED
5237                || update->event == NXFME_DELETED
5238                || update->event == NXFME_MODIFIED) {
5239         struct nx_flow_update_full *nfuf;
5240         unsigned int actions_len;
5241         unsigned int match_len;
5242         enum ofperr error;
5243
5244         if (length < sizeof *nfuf) {
5245             goto bad_len;
5246         }
5247
5248         nfuf = ofpbuf_pull(msg, sizeof *nfuf);
5249         match_len = ntohs(nfuf->match_len);
5250         if (sizeof *nfuf + match_len > length) {
5251             goto bad_len;
5252         }
5253
5254         update->reason = ntohs(nfuf->reason);
5255         update->idle_timeout = ntohs(nfuf->idle_timeout);
5256         update->hard_timeout = ntohs(nfuf->hard_timeout);
5257         update->table_id = nfuf->table_id;
5258         update->cookie = nfuf->cookie;
5259         update->priority = ntohs(nfuf->priority);
5260
5261         error = nx_pull_match(msg, match_len, update->match, NULL, NULL);
5262         if (error) {
5263             return error;
5264         }
5265
5266         actions_len = length - sizeof *nfuf - ROUND_UP(match_len, 8);
5267         error = ofpacts_pull_openflow_actions(msg, actions_len, oh->version,
5268                                               ofpacts);
5269         if (error) {
5270             return error;
5271         }
5272
5273         update->ofpacts = ofpbuf_data(ofpacts);
5274         update->ofpacts_len = ofpbuf_size(ofpacts);
5275         return 0;
5276     } else {
5277         VLOG_WARN_RL(&bad_ofmsg_rl,
5278                      "NXST_FLOW_MONITOR reply has bad event %"PRIu16,
5279                      ntohs(nfuh->event));
5280         return OFPERR_NXBRC_FM_BAD_EVENT;
5281     }
5282
5283 bad_len:
5284     VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW_MONITOR reply has %"PRIu32" "
5285                  "leftover bytes at end", ofpbuf_size(msg));
5286     return OFPERR_OFPBRC_BAD_LEN;
5287 }
5288
5289 uint32_t
5290 ofputil_decode_flow_monitor_cancel(const struct ofp_header *oh)
5291 {
5292     const struct nx_flow_monitor_cancel *cancel = ofpmsg_body(oh);
5293
5294     return ntohl(cancel->id);
5295 }
5296
5297 struct ofpbuf *
5298 ofputil_encode_flow_monitor_cancel(uint32_t id)
5299 {
5300     struct nx_flow_monitor_cancel *nfmc;
5301     struct ofpbuf *msg;
5302
5303     msg = ofpraw_alloc(OFPRAW_NXT_FLOW_MONITOR_CANCEL, OFP10_VERSION, 0);
5304     nfmc = ofpbuf_put_uninit(msg, sizeof *nfmc);
5305     nfmc->id = htonl(id);
5306     return msg;
5307 }
5308
5309 void
5310 ofputil_start_flow_update(struct list *replies)
5311 {
5312     struct ofpbuf *msg;
5313
5314     msg = ofpraw_alloc_xid(OFPRAW_NXST_FLOW_MONITOR_REPLY, OFP10_VERSION,
5315                            htonl(0), 1024);
5316
5317     list_init(replies);
5318     list_push_back(replies, &msg->list_node);
5319 }
5320
5321 void
5322 ofputil_append_flow_update(const struct ofputil_flow_update *update,
5323                            struct list *replies)
5324 {
5325     enum ofp_version version = ofpmp_version(replies);
5326     struct nx_flow_update_header *nfuh;
5327     struct ofpbuf *msg;
5328     size_t start_ofs;
5329
5330     msg = ofpbuf_from_list(list_back(replies));
5331     start_ofs = ofpbuf_size(msg);
5332
5333     if (update->event == NXFME_ABBREV) {
5334         struct nx_flow_update_abbrev *nfua;
5335
5336         nfua = ofpbuf_put_zeros(msg, sizeof *nfua);
5337         nfua->xid = update->xid;
5338     } else {
5339         struct nx_flow_update_full *nfuf;
5340         int match_len;
5341
5342         ofpbuf_put_zeros(msg, sizeof *nfuf);
5343         match_len = nx_put_match(msg, update->match, htonll(0), htonll(0));
5344         ofpacts_put_openflow_actions(update->ofpacts, update->ofpacts_len, msg,
5345                                      version);
5346         nfuf = ofpbuf_at_assert(msg, start_ofs, sizeof *nfuf);
5347         nfuf->reason = htons(update->reason);
5348         nfuf->priority = htons(update->priority);
5349         nfuf->idle_timeout = htons(update->idle_timeout);
5350         nfuf->hard_timeout = htons(update->hard_timeout);
5351         nfuf->match_len = htons(match_len);
5352         nfuf->table_id = update->table_id;
5353         nfuf->cookie = update->cookie;
5354     }
5355
5356     nfuh = ofpbuf_at_assert(msg, start_ofs, sizeof *nfuh);
5357     nfuh->length = htons(ofpbuf_size(msg) - start_ofs);
5358     nfuh->event = htons(update->event);
5359
5360     ofpmp_postappend(replies, start_ofs);
5361 }
5362 \f
5363 struct ofpbuf *
5364 ofputil_encode_packet_out(const struct ofputil_packet_out *po,
5365                           enum ofputil_protocol protocol)
5366 {
5367     enum ofp_version ofp_version = ofputil_protocol_to_ofp_version(protocol);
5368     struct ofpbuf *msg;
5369     size_t size;
5370
5371     size = po->ofpacts_len;
5372     if (po->buffer_id == UINT32_MAX) {
5373         size += po->packet_len;
5374     }
5375
5376     switch (ofp_version) {
5377     case OFP10_VERSION: {
5378         struct ofp10_packet_out *opo;
5379         size_t actions_ofs;
5380
5381         msg = ofpraw_alloc(OFPRAW_OFPT10_PACKET_OUT, OFP10_VERSION, size);
5382         ofpbuf_put_zeros(msg, sizeof *opo);
5383         actions_ofs = ofpbuf_size(msg);
5384         ofpacts_put_openflow_actions(po->ofpacts, po->ofpacts_len, msg,
5385                                      ofp_version);
5386
5387         opo = ofpbuf_l3(msg);
5388         opo->buffer_id = htonl(po->buffer_id);
5389         opo->in_port = htons(ofp_to_u16(po->in_port));
5390         opo->actions_len = htons(ofpbuf_size(msg) - actions_ofs);
5391         break;
5392     }
5393
5394     case OFP11_VERSION:
5395     case OFP12_VERSION:
5396     case OFP13_VERSION:
5397     case OFP14_VERSION:{
5398         struct ofp11_packet_out *opo;
5399         size_t len;
5400
5401         msg = ofpraw_alloc(OFPRAW_OFPT11_PACKET_OUT, ofp_version, size);
5402         ofpbuf_put_zeros(msg, sizeof *opo);
5403         len = ofpacts_put_openflow_actions(po->ofpacts, po->ofpacts_len, msg,
5404                                            ofp_version);
5405         opo = ofpbuf_l3(msg);
5406         opo->buffer_id = htonl(po->buffer_id);
5407         opo->in_port = ofputil_port_to_ofp11(po->in_port);
5408         opo->actions_len = htons(len);
5409         break;
5410     }
5411
5412     default:
5413         OVS_NOT_REACHED();
5414     }
5415
5416     if (po->buffer_id == UINT32_MAX) {
5417         ofpbuf_put(msg, po->packet, po->packet_len);
5418     }
5419
5420     ofpmsg_update_length(msg);
5421
5422     return msg;
5423 }
5424 \f
5425 /* Creates and returns an OFPT_ECHO_REQUEST message with an empty payload. */
5426 struct ofpbuf *
5427 make_echo_request(enum ofp_version ofp_version)
5428 {
5429     return ofpraw_alloc_xid(OFPRAW_OFPT_ECHO_REQUEST, ofp_version,
5430                             htonl(0), 0);
5431 }
5432
5433 /* Creates and returns an OFPT_ECHO_REPLY message matching the
5434  * OFPT_ECHO_REQUEST message in 'rq'. */
5435 struct ofpbuf *
5436 make_echo_reply(const struct ofp_header *rq)
5437 {
5438     struct ofpbuf rq_buf;
5439     struct ofpbuf *reply;
5440
5441     ofpbuf_use_const(&rq_buf, rq, ntohs(rq->length));
5442     ofpraw_pull_assert(&rq_buf);
5443
5444     reply = ofpraw_alloc_reply(OFPRAW_OFPT_ECHO_REPLY, rq, ofpbuf_size(&rq_buf));
5445     ofpbuf_put(reply, ofpbuf_data(&rq_buf), ofpbuf_size(&rq_buf));
5446     return reply;
5447 }
5448
5449 struct ofpbuf *
5450 ofputil_encode_barrier_request(enum ofp_version ofp_version)
5451 {
5452     enum ofpraw type;
5453
5454     switch (ofp_version) {
5455     case OFP14_VERSION:
5456     case OFP13_VERSION:
5457     case OFP12_VERSION:
5458     case OFP11_VERSION:
5459         type = OFPRAW_OFPT11_BARRIER_REQUEST;
5460         break;
5461
5462     case OFP10_VERSION:
5463         type = OFPRAW_OFPT10_BARRIER_REQUEST;
5464         break;
5465
5466     default:
5467         OVS_NOT_REACHED();
5468     }
5469
5470     return ofpraw_alloc(type, ofp_version, 0);
5471 }
5472
5473 const char *
5474 ofputil_frag_handling_to_string(enum ofp_config_flags flags)
5475 {
5476     switch (flags & OFPC_FRAG_MASK) {
5477     case OFPC_FRAG_NORMAL:   return "normal";
5478     case OFPC_FRAG_DROP:     return "drop";
5479     case OFPC_FRAG_REASM:    return "reassemble";
5480     case OFPC_FRAG_NX_MATCH: return "nx-match";
5481     }
5482
5483     OVS_NOT_REACHED();
5484 }
5485
5486 bool
5487 ofputil_frag_handling_from_string(const char *s, enum ofp_config_flags *flags)
5488 {
5489     if (!strcasecmp(s, "normal")) {
5490         *flags = OFPC_FRAG_NORMAL;
5491     } else if (!strcasecmp(s, "drop")) {
5492         *flags = OFPC_FRAG_DROP;
5493     } else if (!strcasecmp(s, "reassemble")) {
5494         *flags = OFPC_FRAG_REASM;
5495     } else if (!strcasecmp(s, "nx-match")) {
5496         *flags = OFPC_FRAG_NX_MATCH;
5497     } else {
5498         return false;
5499     }
5500     return true;
5501 }
5502
5503 /* Converts the OpenFlow 1.1+ port number 'ofp11_port' into an OpenFlow 1.0
5504  * port number and stores the latter in '*ofp10_port', for the purpose of
5505  * decoding OpenFlow 1.1+ protocol messages.  Returns 0 if successful,
5506  * otherwise an OFPERR_* number.  On error, stores OFPP_NONE in '*ofp10_port'.
5507  *
5508  * See the definition of OFP11_MAX for an explanation of the mapping. */
5509 enum ofperr
5510 ofputil_port_from_ofp11(ovs_be32 ofp11_port, ofp_port_t *ofp10_port)
5511 {
5512     uint32_t ofp11_port_h = ntohl(ofp11_port);
5513
5514     if (ofp11_port_h < ofp_to_u16(OFPP_MAX)) {
5515         *ofp10_port = u16_to_ofp(ofp11_port_h);
5516         return 0;
5517     } else if (ofp11_port_h >= ofp11_to_u32(OFPP11_MAX)) {
5518         *ofp10_port = u16_to_ofp(ofp11_port_h - OFPP11_OFFSET);
5519         return 0;
5520     } else {
5521         *ofp10_port = OFPP_NONE;
5522         VLOG_WARN_RL(&bad_ofmsg_rl, "port %"PRIu32" is outside the supported "
5523                      "range 0 through %d or 0x%"PRIx32" through 0x%"PRIx32,
5524                      ofp11_port_h, ofp_to_u16(OFPP_MAX) - 1,
5525                      ofp11_to_u32(OFPP11_MAX), UINT32_MAX);
5526         return OFPERR_OFPBAC_BAD_OUT_PORT;
5527     }
5528 }
5529
5530 /* Returns the OpenFlow 1.1+ port number equivalent to the OpenFlow 1.0 port
5531  * number 'ofp10_port', for encoding OpenFlow 1.1+ protocol messages.
5532  *
5533  * See the definition of OFP11_MAX for an explanation of the mapping. */
5534 ovs_be32
5535 ofputil_port_to_ofp11(ofp_port_t ofp10_port)
5536 {
5537     return htonl(ofp_to_u16(ofp10_port) < ofp_to_u16(OFPP_MAX)
5538                  ? ofp_to_u16(ofp10_port)
5539                  : ofp_to_u16(ofp10_port) + OFPP11_OFFSET);
5540 }
5541
5542 #define OFPUTIL_NAMED_PORTS                     \
5543         OFPUTIL_NAMED_PORT(IN_PORT)             \
5544         OFPUTIL_NAMED_PORT(TABLE)               \
5545         OFPUTIL_NAMED_PORT(NORMAL)              \
5546         OFPUTIL_NAMED_PORT(FLOOD)               \
5547         OFPUTIL_NAMED_PORT(ALL)                 \
5548         OFPUTIL_NAMED_PORT(CONTROLLER)          \
5549         OFPUTIL_NAMED_PORT(LOCAL)               \
5550         OFPUTIL_NAMED_PORT(ANY)
5551
5552 /* For backwards compatibility, so that "none" is recognized as OFPP_ANY */
5553 #define OFPUTIL_NAMED_PORTS_WITH_NONE           \
5554         OFPUTIL_NAMED_PORTS                     \
5555         OFPUTIL_NAMED_PORT(NONE)
5556
5557 /* Stores the port number represented by 's' into '*portp'.  's' may be an
5558  * integer or, for reserved ports, the standard OpenFlow name for the port
5559  * (e.g. "LOCAL").
5560  *
5561  * Returns true if successful, false if 's' is not a valid OpenFlow port number
5562  * or name.  The caller should issue an error message in this case, because
5563  * this function usually does not.  (This gives the caller an opportunity to
5564  * look up the port name another way, e.g. by contacting the switch and listing
5565  * the names of all its ports).
5566  *
5567  * This function accepts OpenFlow 1.0 port numbers.  It also accepts a subset
5568  * of OpenFlow 1.1+ port numbers, mapping those port numbers into the 16-bit
5569  * range as described in include/openflow/openflow-1.1.h. */
5570 bool
5571 ofputil_port_from_string(const char *s, ofp_port_t *portp)
5572 {
5573     unsigned int port32; /* int is at least 32 bits wide. */
5574
5575     if (*s == '-') {
5576         VLOG_WARN("Negative value %s is not a valid port number.", s);
5577         return false;
5578     }
5579     *portp = 0;
5580     if (str_to_uint(s, 10, &port32)) {
5581         if (port32 < ofp_to_u16(OFPP_MAX)) {
5582             /* Pass. */
5583         } else if (port32 < ofp_to_u16(OFPP_FIRST_RESV)) {
5584             VLOG_WARN("port %u is a reserved OF1.0 port number that will "
5585                       "be translated to %u when talking to an OF1.1 or "
5586                       "later controller", port32, port32 + OFPP11_OFFSET);
5587         } else if (port32 <= ofp_to_u16(OFPP_LAST_RESV)) {
5588             char name[OFP_MAX_PORT_NAME_LEN];
5589
5590             ofputil_port_to_string(u16_to_ofp(port32), name, sizeof name);
5591             VLOG_WARN_ONCE("referring to port %s as %"PRIu32" is deprecated "
5592                            "for compatibility with OpenFlow 1.1 and later",
5593                            name, port32);
5594         } else if (port32 < ofp11_to_u32(OFPP11_MAX)) {
5595             VLOG_WARN("port %u is outside the supported range 0 through "
5596                       "%"PRIx16" or 0x%x through 0x%"PRIx32, port32,
5597                       UINT16_MAX, ofp11_to_u32(OFPP11_MAX), UINT32_MAX);
5598             return false;
5599         } else {
5600             port32 -= OFPP11_OFFSET;
5601         }
5602
5603         *portp = u16_to_ofp(port32);
5604         return true;
5605     } else {
5606         struct pair {
5607             const char *name;
5608             ofp_port_t value;
5609         };
5610         static const struct pair pairs[] = {
5611 #define OFPUTIL_NAMED_PORT(NAME) {#NAME, OFPP_##NAME},
5612             OFPUTIL_NAMED_PORTS_WITH_NONE
5613 #undef OFPUTIL_NAMED_PORT
5614         };
5615         const struct pair *p;
5616
5617         for (p = pairs; p < &pairs[ARRAY_SIZE(pairs)]; p++) {
5618             if (!strcasecmp(s, p->name)) {
5619                 *portp = p->value;
5620                 return true;
5621             }
5622         }
5623         return false;
5624     }
5625 }
5626
5627 /* Appends to 's' a string representation of the OpenFlow port number 'port'.
5628  * Most ports' string representation is just the port number, but for special
5629  * ports, e.g. OFPP_LOCAL, it is the name, e.g. "LOCAL". */
5630 void
5631 ofputil_format_port(ofp_port_t port, struct ds *s)
5632 {
5633     char name[OFP_MAX_PORT_NAME_LEN];
5634
5635     ofputil_port_to_string(port, name, sizeof name);
5636     ds_put_cstr(s, name);
5637 }
5638
5639 /* Puts in the 'bufsize' byte in 'namebuf' a null-terminated string
5640  * representation of OpenFlow port number 'port'.  Most ports are represented
5641  * as just the port number, but special ports, e.g. OFPP_LOCAL, are represented
5642  * by name, e.g. "LOCAL". */
5643 void
5644 ofputil_port_to_string(ofp_port_t port,
5645                        char namebuf[OFP_MAX_PORT_NAME_LEN], size_t bufsize)
5646 {
5647     switch (port) {
5648 #define OFPUTIL_NAMED_PORT(NAME)                        \
5649         case OFPP_##NAME:                               \
5650             ovs_strlcpy(namebuf, #NAME, bufsize);       \
5651             break;
5652         OFPUTIL_NAMED_PORTS
5653 #undef OFPUTIL_NAMED_PORT
5654
5655     default:
5656         snprintf(namebuf, bufsize, "%"PRIu16, port);
5657         break;
5658     }
5659 }
5660
5661 /* Stores the group id represented by 's' into '*group_idp'.  's' may be an
5662  * integer or, for reserved group IDs, the standard OpenFlow name for the group
5663  * (either "ANY" or "ALL").
5664  *
5665  * Returns true if successful, false if 's' is not a valid OpenFlow group ID or
5666  * name. */
5667 bool
5668 ofputil_group_from_string(const char *s, uint32_t *group_idp)
5669 {
5670     if (!strcasecmp(s, "any")) {
5671         *group_idp = OFPG11_ANY;
5672     } else if (!strcasecmp(s, "all")) {
5673         *group_idp = OFPG11_ALL;
5674     } else if (!str_to_uint(s, 10, group_idp)) {
5675         VLOG_WARN("%s is not a valid group ID.  (Valid group IDs are "
5676                   "32-bit nonnegative integers or the keywords ANY or "
5677                   "ALL.)", s);
5678         return false;
5679     }
5680
5681     return true;
5682 }
5683
5684 /* Appends to 's' a string representation of the OpenFlow group ID 'group_id'.
5685  * Most groups' string representation is just the number, but for special
5686  * groups, e.g. OFPG11_ALL, it is the name, e.g. "ALL". */
5687 void
5688 ofputil_format_group(uint32_t group_id, struct ds *s)
5689 {
5690     char name[MAX_GROUP_NAME_LEN];
5691
5692     ofputil_group_to_string(group_id, name, sizeof name);
5693     ds_put_cstr(s, name);
5694 }
5695
5696
5697 /* Puts in the 'bufsize' byte in 'namebuf' a null-terminated string
5698  * representation of OpenFlow group ID 'group_id'.  Most group are represented
5699  * as just their number, but special groups, e.g. OFPG11_ALL, are represented
5700  * by name, e.g. "ALL". */
5701 void
5702 ofputil_group_to_string(uint32_t group_id,
5703                         char namebuf[MAX_GROUP_NAME_LEN + 1], size_t bufsize)
5704 {
5705     switch (group_id) {
5706     case OFPG11_ALL:
5707         ovs_strlcpy(namebuf, "ALL", bufsize);
5708         break;
5709
5710     case OFPG11_ANY:
5711         ovs_strlcpy(namebuf, "ANY", bufsize);
5712         break;
5713
5714     default:
5715         snprintf(namebuf, bufsize, "%"PRIu32, group_id);
5716         break;
5717     }
5718 }
5719
5720 /* Given a buffer 'b' that contains an array of OpenFlow ports of type
5721  * 'ofp_version', tries to pull the first element from the array.  If
5722  * successful, initializes '*pp' with an abstract representation of the
5723  * port and returns 0.  If no ports remain to be decoded, returns EOF.
5724  * On an error, returns a positive OFPERR_* value. */
5725 int
5726 ofputil_pull_phy_port(enum ofp_version ofp_version, struct ofpbuf *b,
5727                       struct ofputil_phy_port *pp)
5728 {
5729     memset(pp, 0, sizeof *pp);
5730
5731     switch (ofp_version) {
5732     case OFP10_VERSION: {
5733         const struct ofp10_phy_port *opp = ofpbuf_try_pull(b, sizeof *opp);
5734         return opp ? ofputil_decode_ofp10_phy_port(pp, opp) : EOF;
5735     }
5736     case OFP11_VERSION:
5737     case OFP12_VERSION:
5738     case OFP13_VERSION: {
5739         const struct ofp11_port *op = ofpbuf_try_pull(b, sizeof *op);
5740         return op ? ofputil_decode_ofp11_port(pp, op) : EOF;
5741     }
5742     case OFP14_VERSION:
5743         return ofpbuf_size(b) ? ofputil_pull_ofp14_port(pp, b) : EOF;
5744     default:
5745         OVS_NOT_REACHED();
5746     }
5747 }
5748
5749 /* ofp-util.def lists the mapping from names to action. */
5750 static const char *const names[OFPUTIL_N_ACTIONS] = {
5751     NULL,
5752 #define OFPAT10_ACTION(ENUM, STRUCT, NAME)             NAME,
5753 #define OFPAT11_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) NAME,
5754 #define OFPAT13_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) NAME,
5755 #define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME)   NAME,
5756 #include "ofp-util.def"
5757 };
5758
5759 /* Returns the 'enum ofputil_action_code' corresponding to 'name' (e.g. if
5760  * 'name' is "output" then the return value is OFPUTIL_OFPAT10_OUTPUT), or -1
5761  * if 'name' is not the name of any action. */
5762 int
5763 ofputil_action_code_from_name(const char *name)
5764 {
5765     const char *const *p;
5766
5767     for (p = names; p < &names[ARRAY_SIZE(names)]; p++) {
5768         if (*p && !strcasecmp(name, *p)) {
5769             return p - names;
5770         }
5771     }
5772     return -1;
5773 }
5774
5775 /* Returns name corresponding to the 'enum ofputil_action_code',
5776  * or "Unkonwn action", if the name is not available. */
5777 const char *
5778 ofputil_action_name_from_code(enum ofputil_action_code code)
5779 {
5780     return code < (int)OFPUTIL_N_ACTIONS && names[code] ? names[code]
5781         : "Unknown action";
5782 }
5783
5784 enum ofputil_action_code
5785 ofputil_action_code_from_ofp13_action(enum ofp13_action_type type)
5786 {
5787     switch (type) {
5788
5789 #define OFPAT13_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME)  \
5790     case ENUM:                                          \
5791         return OFPUTIL_##ENUM;
5792 #include "ofp-util.def"
5793
5794     default:
5795         return OFPUTIL_ACTION_INVALID;
5796     }
5797 }
5798
5799 /* Appends an action of the type specified by 'code' to 'buf' and returns the
5800  * action.  Initializes the parts of 'action' that identify it as having type
5801  * <ENUM> and length 'sizeof *action' and zeros the rest.  For actions that
5802  * have variable length, the length used and cleared is that of struct
5803  * <STRUCT>.  */
5804 void *
5805 ofputil_put_action(enum ofputil_action_code code, struct ofpbuf *buf)
5806 {
5807     switch (code) {
5808     case OFPUTIL_ACTION_INVALID:
5809 #define OFPAT13_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) case OFPUTIL_##ENUM:
5810 #include "ofp-util.def"
5811         OVS_NOT_REACHED();
5812
5813 #define OFPAT10_ACTION(ENUM, STRUCT, NAME)                  \
5814     case OFPUTIL_##ENUM: return ofputil_put_##ENUM(buf);
5815 #define OFPAT11_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME)      \
5816     case OFPUTIL_##ENUM: return ofputil_put_##ENUM(buf);
5817 #define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME)        \
5818     case OFPUTIL_##ENUM: return ofputil_put_##ENUM(buf);
5819 #include "ofp-util.def"
5820     }
5821     OVS_NOT_REACHED();
5822 }
5823
5824 #define OFPAT10_ACTION(ENUM, STRUCT, NAME)                        \
5825     void                                                        \
5826     ofputil_init_##ENUM(struct STRUCT *s)                       \
5827     {                                                           \
5828         memset(s, 0, sizeof *s);                                \
5829         s->type = htons(ENUM);                                  \
5830         s->len = htons(sizeof *s);                              \
5831     }                                                           \
5832                                                                 \
5833     struct STRUCT *                                             \
5834     ofputil_put_##ENUM(struct ofpbuf *buf)                      \
5835     {                                                           \
5836         struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s);   \
5837         ofputil_init_##ENUM(s);                                 \
5838         return s;                                               \
5839     }
5840 #define OFPAT11_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) \
5841     OFPAT10_ACTION(ENUM, STRUCT, NAME)
5842 #define OFPAT13_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) \
5843     OFPAT10_ACTION(ENUM, STRUCT, NAME)
5844 #define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME)            \
5845     void                                                        \
5846     ofputil_init_##ENUM(struct STRUCT *s)                       \
5847     {                                                           \
5848         memset(s, 0, sizeof *s);                                \
5849         s->type = htons(OFPAT10_VENDOR);                        \
5850         s->len = htons(sizeof *s);                              \
5851         s->vendor = htonl(NX_VENDOR_ID);                        \
5852         s->subtype = htons(ENUM);                               \
5853     }                                                           \
5854                                                                 \
5855     struct STRUCT *                                             \
5856     ofputil_put_##ENUM(struct ofpbuf *buf)                      \
5857     {                                                           \
5858         struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s);   \
5859         ofputil_init_##ENUM(s);                                 \
5860         return s;                                               \
5861     }
5862 #include "ofp-util.def"
5863
5864 static void
5865 ofputil_normalize_match__(struct match *match, bool may_log)
5866 {
5867     enum {
5868         MAY_NW_ADDR     = 1 << 0, /* nw_src, nw_dst */
5869         MAY_TP_ADDR     = 1 << 1, /* tp_src, tp_dst */
5870         MAY_NW_PROTO    = 1 << 2, /* nw_proto */
5871         MAY_IPVx        = 1 << 3, /* tos, frag, ttl */
5872         MAY_ARP_SHA     = 1 << 4, /* arp_sha */
5873         MAY_ARP_THA     = 1 << 5, /* arp_tha */
5874         MAY_IPV6        = 1 << 6, /* ipv6_src, ipv6_dst, ipv6_label */
5875         MAY_ND_TARGET   = 1 << 7, /* nd_target */
5876         MAY_MPLS        = 1 << 8, /* mpls label and tc */
5877     } may_match;
5878
5879     struct flow_wildcards wc;
5880
5881     /* Figure out what fields may be matched. */
5882     if (match->flow.dl_type == htons(ETH_TYPE_IP)) {
5883         may_match = MAY_NW_PROTO | MAY_IPVx | MAY_NW_ADDR;
5884         if (match->flow.nw_proto == IPPROTO_TCP ||
5885             match->flow.nw_proto == IPPROTO_UDP ||
5886             match->flow.nw_proto == IPPROTO_SCTP ||
5887             match->flow.nw_proto == IPPROTO_ICMP) {
5888             may_match |= MAY_TP_ADDR;
5889         }
5890     } else if (match->flow.dl_type == htons(ETH_TYPE_IPV6)) {
5891         may_match = MAY_NW_PROTO | MAY_IPVx | MAY_IPV6;
5892         if (match->flow.nw_proto == IPPROTO_TCP ||
5893             match->flow.nw_proto == IPPROTO_UDP ||
5894             match->flow.nw_proto == IPPROTO_SCTP) {
5895             may_match |= MAY_TP_ADDR;
5896         } else if (match->flow.nw_proto == IPPROTO_ICMPV6) {
5897             may_match |= MAY_TP_ADDR;
5898             if (match->flow.tp_src == htons(ND_NEIGHBOR_SOLICIT)) {
5899                 may_match |= MAY_ND_TARGET | MAY_ARP_SHA;
5900             } else if (match->flow.tp_src == htons(ND_NEIGHBOR_ADVERT)) {
5901                 may_match |= MAY_ND_TARGET | MAY_ARP_THA;
5902             }
5903         }
5904     } else if (match->flow.dl_type == htons(ETH_TYPE_ARP) ||
5905                match->flow.dl_type == htons(ETH_TYPE_RARP)) {
5906         may_match = MAY_NW_PROTO | MAY_NW_ADDR | MAY_ARP_SHA | MAY_ARP_THA;
5907     } else if (eth_type_mpls(match->flow.dl_type)) {
5908         may_match = MAY_MPLS;
5909     } else {
5910         may_match = 0;
5911     }
5912
5913     /* Clear the fields that may not be matched. */
5914     wc = match->wc;
5915     if (!(may_match & MAY_NW_ADDR)) {
5916         wc.masks.nw_src = wc.masks.nw_dst = htonl(0);
5917     }
5918     if (!(may_match & MAY_TP_ADDR)) {
5919         wc.masks.tp_src = wc.masks.tp_dst = htons(0);
5920     }
5921     if (!(may_match & MAY_NW_PROTO)) {
5922         wc.masks.nw_proto = 0;
5923     }
5924     if (!(may_match & MAY_IPVx)) {
5925         wc.masks.nw_tos = 0;
5926         wc.masks.nw_ttl = 0;
5927     }
5928     if (!(may_match & MAY_ARP_SHA)) {
5929         memset(wc.masks.arp_sha, 0, ETH_ADDR_LEN);
5930     }
5931     if (!(may_match & MAY_ARP_THA)) {
5932         memset(wc.masks.arp_tha, 0, ETH_ADDR_LEN);
5933     }
5934     if (!(may_match & MAY_IPV6)) {
5935         wc.masks.ipv6_src = wc.masks.ipv6_dst = in6addr_any;
5936         wc.masks.ipv6_label = htonl(0);
5937     }
5938     if (!(may_match & MAY_ND_TARGET)) {
5939         wc.masks.nd_target = in6addr_any;
5940     }
5941     if (!(may_match & MAY_MPLS)) {
5942         memset(wc.masks.mpls_lse, 0, sizeof wc.masks.mpls_lse);
5943     }
5944
5945     /* Log any changes. */
5946     if (!flow_wildcards_equal(&wc, &match->wc)) {
5947         bool log = may_log && !VLOG_DROP_INFO(&bad_ofmsg_rl);
5948         char *pre = log ? match_to_string(match, OFP_DEFAULT_PRIORITY) : NULL;
5949
5950         match->wc = wc;
5951         match_zero_wildcarded_fields(match);
5952
5953         if (log) {
5954             char *post = match_to_string(match, OFP_DEFAULT_PRIORITY);
5955             VLOG_INFO("normalization changed ofp_match, details:");
5956             VLOG_INFO(" pre: %s", pre);
5957             VLOG_INFO("post: %s", post);
5958             free(pre);
5959             free(post);
5960         }
5961     }
5962 }
5963
5964 /* "Normalizes" the wildcards in 'match'.  That means:
5965  *
5966  *    1. If the type of level N is known, then only the valid fields for that
5967  *       level may be specified.  For example, ARP does not have a TOS field,
5968  *       so nw_tos must be wildcarded if 'match' specifies an ARP flow.
5969  *       Similarly, IPv4 does not have any IPv6 addresses, so ipv6_src and
5970  *       ipv6_dst (and other fields) must be wildcarded if 'match' specifies an
5971  *       IPv4 flow.
5972  *
5973  *    2. If the type of level N is not known (or not understood by Open
5974  *       vSwitch), then no fields at all for that level may be specified.  For
5975  *       example, Open vSwitch does not understand SCTP, an L4 protocol, so the
5976  *       L4 fields tp_src and tp_dst must be wildcarded if 'match' specifies an
5977  *       SCTP flow.
5978  *
5979  * If this function changes 'match', it logs a rate-limited informational
5980  * message. */
5981 void
5982 ofputil_normalize_match(struct match *match)
5983 {
5984     ofputil_normalize_match__(match, true);
5985 }
5986
5987 /* Same as ofputil_normalize_match() without the logging.  Thus, this function
5988  * is suitable for a program's internal use, whereas ofputil_normalize_match()
5989  * sense for use on flows received from elsewhere (so that a bug in the program
5990  * that sent them can be reported and corrected). */
5991 void
5992 ofputil_normalize_match_quiet(struct match *match)
5993 {
5994     ofputil_normalize_match__(match, false);
5995 }
5996
5997 /* Parses a key or a key-value pair from '*stringp'.
5998  *
5999  * On success: Stores the key into '*keyp'.  Stores the value, if present, into
6000  * '*valuep', otherwise an empty string.  Advances '*stringp' past the end of
6001  * the key-value pair, preparing it for another call.  '*keyp' and '*valuep'
6002  * are substrings of '*stringp' created by replacing some of its bytes by null
6003  * terminators.  Returns true.
6004  *
6005  * If '*stringp' is just white space or commas, sets '*keyp' and '*valuep' to
6006  * NULL and returns false. */
6007 bool
6008 ofputil_parse_key_value(char **stringp, char **keyp, char **valuep)
6009 {
6010     char *pos, *key, *value;
6011     size_t key_len;
6012
6013     pos = *stringp;
6014     pos += strspn(pos, ", \t\r\n");
6015     if (*pos == '\0') {
6016         *keyp = *valuep = NULL;
6017         return false;
6018     }
6019
6020     key = pos;
6021     key_len = strcspn(pos, ":=(, \t\r\n");
6022     if (key[key_len] == ':' || key[key_len] == '=') {
6023         /* The value can be separated by a colon. */
6024         size_t value_len;
6025
6026         value = key + key_len + 1;
6027         value_len = strcspn(value, ", \t\r\n");
6028         pos = value + value_len + (value[value_len] != '\0');
6029         value[value_len] = '\0';
6030     } else if (key[key_len] == '(') {
6031         /* The value can be surrounded by balanced parentheses.  The outermost
6032          * set of parentheses is removed. */
6033         int level = 1;
6034         size_t value_len;
6035
6036         value = key + key_len + 1;
6037         for (value_len = 0; level > 0; value_len++) {
6038             switch (value[value_len]) {
6039             case '\0':
6040                 level = 0;
6041                 break;
6042
6043             case '(':
6044                 level++;
6045                 break;
6046
6047             case ')':
6048                 level--;
6049                 break;
6050             }
6051         }
6052         value[value_len - 1] = '\0';
6053         pos = value + value_len;
6054     } else {
6055         /* There might be no value at all. */
6056         value = key + key_len;  /* Will become the empty string below. */
6057         pos = key + key_len + (key[key_len] != '\0');
6058     }
6059     key[key_len] = '\0';
6060
6061     *stringp = pos;
6062     *keyp = key;
6063     *valuep = value;
6064     return true;
6065 }
6066
6067 /* Encode a dump ports request for 'port', the encoded message
6068  * will be for Open Flow version 'ofp_version'. Returns message
6069  * as a struct ofpbuf. Returns encoded message on success, NULL on error */
6070 struct ofpbuf *
6071 ofputil_encode_dump_ports_request(enum ofp_version ofp_version, ofp_port_t port)
6072 {
6073     struct ofpbuf *request;
6074
6075     switch (ofp_version) {
6076     case OFP10_VERSION: {
6077         struct ofp10_port_stats_request *req;
6078         request = ofpraw_alloc(OFPRAW_OFPST10_PORT_REQUEST, ofp_version, 0);
6079         req = ofpbuf_put_zeros(request, sizeof *req);
6080         req->port_no = htons(ofp_to_u16(port));
6081         break;
6082     }
6083     case OFP11_VERSION:
6084     case OFP12_VERSION:
6085     case OFP13_VERSION:
6086     case OFP14_VERSION:{
6087         struct ofp11_port_stats_request *req;
6088         request = ofpraw_alloc(OFPRAW_OFPST11_PORT_REQUEST, ofp_version, 0);
6089         req = ofpbuf_put_zeros(request, sizeof *req);
6090         req->port_no = ofputil_port_to_ofp11(port);
6091         break;
6092     }
6093     default:
6094         OVS_NOT_REACHED();
6095     }
6096
6097     return request;
6098 }
6099
6100 static void
6101 ofputil_port_stats_to_ofp10(const struct ofputil_port_stats *ops,
6102                             struct ofp10_port_stats *ps10)
6103 {
6104     ps10->port_no = htons(ofp_to_u16(ops->port_no));
6105     memset(ps10->pad, 0, sizeof ps10->pad);
6106     put_32aligned_be64(&ps10->rx_packets, htonll(ops->stats.rx_packets));
6107     put_32aligned_be64(&ps10->tx_packets, htonll(ops->stats.tx_packets));
6108     put_32aligned_be64(&ps10->rx_bytes, htonll(ops->stats.rx_bytes));
6109     put_32aligned_be64(&ps10->tx_bytes, htonll(ops->stats.tx_bytes));
6110     put_32aligned_be64(&ps10->rx_dropped, htonll(ops->stats.rx_dropped));
6111     put_32aligned_be64(&ps10->tx_dropped, htonll(ops->stats.tx_dropped));
6112     put_32aligned_be64(&ps10->rx_errors, htonll(ops->stats.rx_errors));
6113     put_32aligned_be64(&ps10->tx_errors, htonll(ops->stats.tx_errors));
6114     put_32aligned_be64(&ps10->rx_frame_err, htonll(ops->stats.rx_frame_errors));
6115     put_32aligned_be64(&ps10->rx_over_err, htonll(ops->stats.rx_over_errors));
6116     put_32aligned_be64(&ps10->rx_crc_err, htonll(ops->stats.rx_crc_errors));
6117     put_32aligned_be64(&ps10->collisions, htonll(ops->stats.collisions));
6118 }
6119
6120 static void
6121 ofputil_port_stats_to_ofp11(const struct ofputil_port_stats *ops,
6122                             struct ofp11_port_stats *ps11)
6123 {
6124     ps11->port_no = ofputil_port_to_ofp11(ops->port_no);
6125     memset(ps11->pad, 0, sizeof ps11->pad);
6126     ps11->rx_packets = htonll(ops->stats.rx_packets);
6127     ps11->tx_packets = htonll(ops->stats.tx_packets);
6128     ps11->rx_bytes = htonll(ops->stats.rx_bytes);
6129     ps11->tx_bytes = htonll(ops->stats.tx_bytes);
6130     ps11->rx_dropped = htonll(ops->stats.rx_dropped);
6131     ps11->tx_dropped = htonll(ops->stats.tx_dropped);
6132     ps11->rx_errors = htonll(ops->stats.rx_errors);
6133     ps11->tx_errors = htonll(ops->stats.tx_errors);
6134     ps11->rx_frame_err = htonll(ops->stats.rx_frame_errors);
6135     ps11->rx_over_err = htonll(ops->stats.rx_over_errors);
6136     ps11->rx_crc_err = htonll(ops->stats.rx_crc_errors);
6137     ps11->collisions = htonll(ops->stats.collisions);
6138 }
6139
6140 static void
6141 ofputil_port_stats_to_ofp13(const struct ofputil_port_stats *ops,
6142                             struct ofp13_port_stats *ps13)
6143 {
6144     ofputil_port_stats_to_ofp11(ops, &ps13->ps);
6145     ps13->duration_sec = htonl(ops->duration_sec);
6146     ps13->duration_nsec = htonl(ops->duration_nsec);
6147 }
6148
6149 static void
6150 ofputil_append_ofp14_port_stats(const struct ofputil_port_stats *ops,
6151                                 struct list *replies)
6152 {
6153     struct ofp14_port_stats_prop_ethernet *eth;
6154     struct ofp14_port_stats *ps14;
6155     struct ofpbuf *reply;
6156
6157     reply = ofpmp_reserve(replies, sizeof *ps14 + sizeof *eth);
6158
6159     ps14 = ofpbuf_put_uninit(reply, sizeof *ps14);
6160     ps14->length = htons(sizeof *ps14 + sizeof *eth);
6161     memset(ps14->pad, 0, sizeof ps14->pad);
6162     ps14->port_no = ofputil_port_to_ofp11(ops->port_no);
6163     ps14->duration_sec = htonl(ops->duration_sec);
6164     ps14->duration_nsec = htonl(ops->duration_nsec);
6165     ps14->rx_packets = htonll(ops->stats.rx_packets);
6166     ps14->tx_packets = htonll(ops->stats.tx_packets);
6167     ps14->rx_bytes = htonll(ops->stats.rx_bytes);
6168     ps14->tx_bytes = htonll(ops->stats.tx_bytes);
6169     ps14->rx_dropped = htonll(ops->stats.rx_dropped);
6170     ps14->tx_dropped = htonll(ops->stats.tx_dropped);
6171     ps14->rx_errors = htonll(ops->stats.rx_errors);
6172     ps14->tx_errors = htonll(ops->stats.tx_errors);
6173
6174     eth = ofpbuf_put_uninit(reply, sizeof *eth);
6175     eth->type = htons(OFPPSPT14_ETHERNET);
6176     eth->length = htons(sizeof *eth);
6177     memset(eth->pad, 0, sizeof eth->pad);
6178     eth->rx_frame_err = htonll(ops->stats.rx_frame_errors);
6179     eth->rx_over_err = htonll(ops->stats.rx_over_errors);
6180     eth->rx_crc_err = htonll(ops->stats.rx_crc_errors);
6181     eth->collisions = htonll(ops->stats.collisions);
6182 }
6183
6184 /* Encode a ports stat for 'ops' and append it to 'replies'. */
6185 void
6186 ofputil_append_port_stat(struct list *replies,
6187                          const struct ofputil_port_stats *ops)
6188 {
6189     switch (ofpmp_version(replies)) {
6190     case OFP13_VERSION: {
6191         struct ofp13_port_stats *reply = ofpmp_append(replies, sizeof *reply);
6192         ofputil_port_stats_to_ofp13(ops, reply);
6193         break;
6194     }
6195     case OFP12_VERSION:
6196     case OFP11_VERSION: {
6197         struct ofp11_port_stats *reply = ofpmp_append(replies, sizeof *reply);
6198         ofputil_port_stats_to_ofp11(ops, reply);
6199         break;
6200     }
6201
6202     case OFP10_VERSION: {
6203         struct ofp10_port_stats *reply = ofpmp_append(replies, sizeof *reply);
6204         ofputil_port_stats_to_ofp10(ops, reply);
6205         break;
6206     }
6207
6208     case OFP14_VERSION:
6209         ofputil_append_ofp14_port_stats(ops, replies);
6210         break;
6211
6212     default:
6213         OVS_NOT_REACHED();
6214     }
6215 }
6216
6217 static enum ofperr
6218 ofputil_port_stats_from_ofp10(struct ofputil_port_stats *ops,
6219                               const struct ofp10_port_stats *ps10)
6220 {
6221     memset(ops, 0, sizeof *ops);
6222
6223     ops->port_no = u16_to_ofp(ntohs(ps10->port_no));
6224     ops->stats.rx_packets = ntohll(get_32aligned_be64(&ps10->rx_packets));
6225     ops->stats.tx_packets = ntohll(get_32aligned_be64(&ps10->tx_packets));
6226     ops->stats.rx_bytes = ntohll(get_32aligned_be64(&ps10->rx_bytes));
6227     ops->stats.tx_bytes = ntohll(get_32aligned_be64(&ps10->tx_bytes));
6228     ops->stats.rx_dropped = ntohll(get_32aligned_be64(&ps10->rx_dropped));
6229     ops->stats.tx_dropped = ntohll(get_32aligned_be64(&ps10->tx_dropped));
6230     ops->stats.rx_errors = ntohll(get_32aligned_be64(&ps10->rx_errors));
6231     ops->stats.tx_errors = ntohll(get_32aligned_be64(&ps10->tx_errors));
6232     ops->stats.rx_frame_errors =
6233         ntohll(get_32aligned_be64(&ps10->rx_frame_err));
6234     ops->stats.rx_over_errors = ntohll(get_32aligned_be64(&ps10->rx_over_err));
6235     ops->stats.rx_crc_errors = ntohll(get_32aligned_be64(&ps10->rx_crc_err));
6236     ops->stats.collisions = ntohll(get_32aligned_be64(&ps10->collisions));
6237     ops->duration_sec = ops->duration_nsec = UINT32_MAX;
6238
6239     return 0;
6240 }
6241
6242 static enum ofperr
6243 ofputil_port_stats_from_ofp11(struct ofputil_port_stats *ops,
6244                               const struct ofp11_port_stats *ps11)
6245 {
6246     enum ofperr error;
6247
6248     memset(ops, 0, sizeof *ops);
6249     error = ofputil_port_from_ofp11(ps11->port_no, &ops->port_no);
6250     if (error) {
6251         return error;
6252     }
6253
6254     ops->stats.rx_packets = ntohll(ps11->rx_packets);
6255     ops->stats.tx_packets = ntohll(ps11->tx_packets);
6256     ops->stats.rx_bytes = ntohll(ps11->rx_bytes);
6257     ops->stats.tx_bytes = ntohll(ps11->tx_bytes);
6258     ops->stats.rx_dropped = ntohll(ps11->rx_dropped);
6259     ops->stats.tx_dropped = ntohll(ps11->tx_dropped);
6260     ops->stats.rx_errors = ntohll(ps11->rx_errors);
6261     ops->stats.tx_errors = ntohll(ps11->tx_errors);
6262     ops->stats.rx_frame_errors = ntohll(ps11->rx_frame_err);
6263     ops->stats.rx_over_errors = ntohll(ps11->rx_over_err);
6264     ops->stats.rx_crc_errors = ntohll(ps11->rx_crc_err);
6265     ops->stats.collisions = ntohll(ps11->collisions);
6266     ops->duration_sec = ops->duration_nsec = UINT32_MAX;
6267
6268     return 0;
6269 }
6270
6271 static enum ofperr
6272 ofputil_port_stats_from_ofp13(struct ofputil_port_stats *ops,
6273                               const struct ofp13_port_stats *ps13)
6274 {
6275     enum ofperr error = ofputil_port_stats_from_ofp11(ops, &ps13->ps);
6276     if (!error) {
6277         ops->duration_sec = ntohl(ps13->duration_sec);
6278         ops->duration_nsec = ntohl(ps13->duration_nsec);
6279     }
6280     return error;
6281 }
6282
6283 static enum ofperr
6284 parse_ofp14_port_stats_ethernet_property(const struct ofpbuf *payload,
6285                                          struct ofputil_port_stats *ops)
6286 {
6287     const struct ofp14_port_stats_prop_ethernet *eth = ofpbuf_data(payload);
6288
6289     if (ofpbuf_size(payload) != sizeof *eth) {
6290         return OFPERR_OFPBPC_BAD_LEN;
6291     }
6292
6293     ops->stats.rx_frame_errors = ntohll(eth->rx_frame_err);
6294     ops->stats.rx_over_errors = ntohll(eth->rx_over_err);
6295     ops->stats.rx_crc_errors = ntohll(eth->rx_crc_err);
6296     ops->stats.collisions = ntohll(eth->collisions);
6297
6298     return 0;
6299 }
6300
6301 static enum ofperr
6302 ofputil_pull_ofp14_port_stats(struct ofputil_port_stats *ops,
6303                               struct ofpbuf *msg)
6304 {
6305     const struct ofp14_port_stats *ps14;
6306     struct ofpbuf properties;
6307     enum ofperr error;
6308     size_t len;
6309
6310     ps14 = ofpbuf_try_pull(msg, sizeof *ps14);
6311     if (!ps14) {
6312         return OFPERR_OFPBRC_BAD_LEN;
6313     }
6314
6315     len = ntohs(ps14->length);
6316     if (len < sizeof *ps14 || len - sizeof *ps14 > ofpbuf_size(msg)) {
6317         return OFPERR_OFPBRC_BAD_LEN;
6318     }
6319     len -= sizeof *ps14;
6320     ofpbuf_use_const(&properties, ofpbuf_pull(msg, len), len);
6321
6322     error = ofputil_port_from_ofp11(ps14->port_no, &ops->port_no);
6323     if (error) {
6324         return error;
6325     }
6326
6327     ops->duration_sec = ntohl(ps14->duration_sec);
6328     ops->duration_nsec = ntohl(ps14->duration_nsec);
6329     ops->stats.rx_packets = ntohll(ps14->rx_packets);
6330     ops->stats.tx_packets = ntohll(ps14->tx_packets);
6331     ops->stats.rx_bytes = ntohll(ps14->rx_bytes);
6332     ops->stats.tx_bytes = ntohll(ps14->tx_bytes);
6333     ops->stats.rx_dropped = ntohll(ps14->rx_dropped);
6334     ops->stats.tx_dropped = ntohll(ps14->tx_dropped);
6335     ops->stats.rx_errors = ntohll(ps14->rx_errors);
6336     ops->stats.tx_errors = ntohll(ps14->tx_errors);
6337     ops->stats.rx_frame_errors = UINT64_MAX;
6338     ops->stats.rx_over_errors = UINT64_MAX;
6339     ops->stats.rx_crc_errors = UINT64_MAX;
6340     ops->stats.collisions = UINT64_MAX;
6341
6342     while (ofpbuf_size(&properties) > 0) {
6343         struct ofpbuf payload;
6344         enum ofperr error;
6345         uint16_t type;
6346
6347         error = ofputil_pull_property(&properties, &payload, &type);
6348         if (error) {
6349             return error;
6350         }
6351
6352         switch (type) {
6353         case OFPPSPT14_ETHERNET:
6354             error = parse_ofp14_port_stats_ethernet_property(&payload, ops);
6355             break;
6356
6357         default:
6358             log_property(true, "unknown port stats property %"PRIu16, type);
6359             error = 0;
6360             break;
6361         }
6362
6363         if (error) {
6364             return error;
6365         }
6366     }
6367
6368     return 0;
6369 }
6370
6371 /* Returns the number of port stats elements in OFPTYPE_PORT_STATS_REPLY
6372  * message 'oh'. */
6373 size_t
6374 ofputil_count_port_stats(const struct ofp_header *oh)
6375 {
6376     struct ofputil_port_stats ps;
6377     struct ofpbuf b;
6378     size_t n = 0;
6379
6380     ofpbuf_use_const(&b, oh, ntohs(oh->length));
6381     ofpraw_pull_assert(&b);
6382     while (!ofputil_decode_port_stats(&ps, &b)) {
6383         n++;
6384     }
6385     return n;
6386 }
6387
6388 /* Converts an OFPST_PORT_STATS reply in 'msg' into an abstract
6389  * ofputil_port_stats in 'ps'.
6390  *
6391  * Multiple OFPST_PORT_STATS replies can be packed into a single OpenFlow
6392  * message.  Calling this function multiple times for a single 'msg' iterates
6393  * through the replies.  The caller must initially leave 'msg''s layer pointers
6394  * null and not modify them between calls.
6395  *
6396  * Returns 0 if successful, EOF if no replies were left in this 'msg',
6397  * otherwise a positive errno value. */
6398 int
6399 ofputil_decode_port_stats(struct ofputil_port_stats *ps, struct ofpbuf *msg)
6400 {
6401     enum ofperr error;
6402     enum ofpraw raw;
6403
6404     error = (msg->frame
6405              ? ofpraw_decode(&raw, msg->frame)
6406              : ofpraw_pull(&raw, msg));
6407     if (error) {
6408         return error;
6409     }
6410
6411     if (!ofpbuf_size(msg)) {
6412         return EOF;
6413     } else if (raw == OFPRAW_OFPST14_PORT_REPLY) {
6414         return ofputil_pull_ofp14_port_stats(ps, msg);
6415     } else if (raw == OFPRAW_OFPST13_PORT_REPLY) {
6416         const struct ofp13_port_stats *ps13;
6417
6418         ps13 = ofpbuf_try_pull(msg, sizeof *ps13);
6419         if (!ps13) {
6420             goto bad_len;
6421         }
6422         return ofputil_port_stats_from_ofp13(ps, ps13);
6423     } else if (raw == OFPRAW_OFPST11_PORT_REPLY) {
6424         const struct ofp11_port_stats *ps11;
6425
6426         ps11 = ofpbuf_try_pull(msg, sizeof *ps11);
6427         if (!ps11) {
6428             goto bad_len;
6429         }
6430         return ofputil_port_stats_from_ofp11(ps, ps11);
6431     } else if (raw == OFPRAW_OFPST10_PORT_REPLY) {
6432         const struct ofp10_port_stats *ps10;
6433
6434         ps10 = ofpbuf_try_pull(msg, sizeof *ps10);
6435         if (!ps10) {
6436             goto bad_len;
6437         }
6438         return ofputil_port_stats_from_ofp10(ps, ps10);
6439     } else {
6440         OVS_NOT_REACHED();
6441     }
6442
6443  bad_len:
6444     VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_PORT reply has %"PRIu32" leftover "
6445                  "bytes at end", ofpbuf_size(msg));
6446     return OFPERR_OFPBRC_BAD_LEN;
6447 }
6448
6449 /* Parse a port status request message into a 16 bit OpenFlow 1.0
6450  * port number and stores the latter in '*ofp10_port'.
6451  * Returns 0 if successful, otherwise an OFPERR_* number. */
6452 enum ofperr
6453 ofputil_decode_port_stats_request(const struct ofp_header *request,
6454                                   ofp_port_t *ofp10_port)
6455 {
6456     switch ((enum ofp_version)request->version) {
6457     case OFP14_VERSION:
6458     case OFP13_VERSION:
6459     case OFP12_VERSION:
6460     case OFP11_VERSION: {
6461         const struct ofp11_port_stats_request *psr11 = ofpmsg_body(request);
6462         return ofputil_port_from_ofp11(psr11->port_no, ofp10_port);
6463     }
6464
6465     case OFP10_VERSION: {
6466         const struct ofp10_port_stats_request *psr10 = ofpmsg_body(request);
6467         *ofp10_port = u16_to_ofp(ntohs(psr10->port_no));
6468         return 0;
6469     }
6470
6471     default:
6472         OVS_NOT_REACHED();
6473     }
6474 }
6475
6476 /* Frees all of the "struct ofputil_bucket"s in the 'buckets' list. */
6477 void
6478 ofputil_bucket_list_destroy(struct list *buckets)
6479 {
6480     struct ofputil_bucket *bucket, *next_bucket;
6481
6482     LIST_FOR_EACH_SAFE (bucket, next_bucket, list_node, buckets) {
6483         list_remove(&bucket->list_node);
6484         free(bucket->ofpacts);
6485         free(bucket);
6486     }
6487 }
6488
6489 /* Returns an OpenFlow group stats request for OpenFlow version 'ofp_version',
6490  * that requests stats for group 'group_id'.  (Use OFPG_ALL to request stats
6491  * for all groups.)
6492  *
6493  * Group statistics include packet and byte counts for each group. */
6494 struct ofpbuf *
6495 ofputil_encode_group_stats_request(enum ofp_version ofp_version,
6496                                    uint32_t group_id)
6497 {
6498     struct ofpbuf *request;
6499
6500     switch (ofp_version) {
6501     case OFP10_VERSION:
6502         ovs_fatal(0, "dump-group-stats needs OpenFlow 1.1 or later "
6503                      "(\'-O OpenFlow11\')");
6504     case OFP11_VERSION:
6505     case OFP12_VERSION:
6506     case OFP13_VERSION:
6507     case OFP14_VERSION: {
6508         struct ofp11_group_stats_request *req;
6509         request = ofpraw_alloc(OFPRAW_OFPST11_GROUP_REQUEST, ofp_version, 0);
6510         req = ofpbuf_put_zeros(request, sizeof *req);
6511         req->group_id = htonl(group_id);
6512         break;
6513     }
6514     default:
6515         OVS_NOT_REACHED();
6516     }
6517
6518     return request;
6519 }
6520
6521 /* Returns an OpenFlow group description request for OpenFlow version
6522  * 'ofp_version', that requests stats for group 'group_id'.  (Use OFPG_ALL to
6523  * request stats for all groups.)
6524  *
6525  * Group descriptions include the bucket and action configuration for each
6526  * group. */
6527 struct ofpbuf *
6528 ofputil_encode_group_desc_request(enum ofp_version ofp_version)
6529 {
6530     struct ofpbuf *request;
6531
6532     switch (ofp_version) {
6533     case OFP10_VERSION:
6534         ovs_fatal(0, "dump-groups needs OpenFlow 1.1 or later "
6535                      "(\'-O OpenFlow11\')");
6536     case OFP11_VERSION:
6537     case OFP12_VERSION:
6538     case OFP13_VERSION:
6539     case OFP14_VERSION:
6540         request = ofpraw_alloc(OFPRAW_OFPST11_GROUP_DESC_REQUEST, ofp_version, 0);
6541         break;
6542     default:
6543         OVS_NOT_REACHED();
6544     }
6545
6546     return request;
6547 }
6548
6549 static void
6550 ofputil_group_bucket_counters_to_ofp11(const struct ofputil_group_stats *gs,
6551                                     struct ofp11_bucket_counter bucket_cnts[])
6552 {
6553     int i;
6554
6555     for (i = 0; i < gs->n_buckets; i++) {
6556        bucket_cnts[i].packet_count = htonll(gs->bucket_stats[i].packet_count);
6557        bucket_cnts[i].byte_count = htonll(gs->bucket_stats[i].byte_count);
6558     }
6559 }
6560
6561 static void
6562 ofputil_group_stats_to_ofp11(const struct ofputil_group_stats *gs,
6563                              struct ofp11_group_stats *gs11, size_t length,
6564                              struct ofp11_bucket_counter bucket_cnts[])
6565 {
6566     memset(gs11, 0, sizeof *gs11);
6567     gs11->length = htons(length);
6568     gs11->group_id = htonl(gs->group_id);
6569     gs11->ref_count = htonl(gs->ref_count);
6570     gs11->packet_count = htonll(gs->packet_count);
6571     gs11->byte_count = htonll(gs->byte_count);
6572     ofputil_group_bucket_counters_to_ofp11(gs, bucket_cnts);
6573 }
6574
6575 static void
6576 ofputil_group_stats_to_ofp13(const struct ofputil_group_stats *gs,
6577                              struct ofp13_group_stats *gs13, size_t length,
6578                              struct ofp11_bucket_counter bucket_cnts[])
6579 {
6580     ofputil_group_stats_to_ofp11(gs, &gs13->gs, length, bucket_cnts);
6581     gs13->duration_sec = htonl(gs->duration_sec);
6582     gs13->duration_nsec = htonl(gs->duration_nsec);
6583
6584 }
6585
6586 /* Encodes 'gs' properly for the format of the list of group statistics
6587  * replies already begun in 'replies' and appends it to the list.  'replies'
6588  * must have originally been initialized with ofpmp_init(). */
6589 void
6590 ofputil_append_group_stats(struct list *replies,
6591                            const struct ofputil_group_stats *gs)
6592 {
6593     size_t bucket_counter_size;
6594     struct ofp11_bucket_counter *bucket_counters;
6595     size_t length;
6596
6597     bucket_counter_size = gs->n_buckets * sizeof(struct ofp11_bucket_counter);
6598
6599     switch (ofpmp_version(replies)) {
6600     case OFP11_VERSION:
6601     case OFP12_VERSION:{
6602             struct ofp11_group_stats *gs11;
6603
6604             length = sizeof *gs11 + bucket_counter_size;
6605             gs11 = ofpmp_append(replies, length);
6606             bucket_counters = (struct ofp11_bucket_counter *)(gs11 + 1);
6607             ofputil_group_stats_to_ofp11(gs, gs11, length, bucket_counters);
6608             break;
6609         }
6610
6611     case OFP13_VERSION:
6612     case OFP14_VERSION:{
6613             struct ofp13_group_stats *gs13;
6614
6615             length = sizeof *gs13 + bucket_counter_size;
6616             gs13 = ofpmp_append(replies, length);
6617             bucket_counters = (struct ofp11_bucket_counter *)(gs13 + 1);
6618             ofputil_group_stats_to_ofp13(gs, gs13, length, bucket_counters);
6619             break;
6620         }
6621
6622     case OFP10_VERSION:
6623     default:
6624         OVS_NOT_REACHED();
6625     }
6626 }
6627 /* Returns an OpenFlow group features request for OpenFlow version
6628  * 'ofp_version'. */
6629 struct ofpbuf *
6630 ofputil_encode_group_features_request(enum ofp_version ofp_version)
6631 {
6632     struct ofpbuf *request = NULL;
6633
6634     switch (ofp_version) {
6635     case OFP10_VERSION:
6636     case OFP11_VERSION:
6637         ovs_fatal(0, "dump-group-features needs OpenFlow 1.2 or later "
6638                      "(\'-O OpenFlow12\')");
6639     case OFP12_VERSION:
6640     case OFP13_VERSION:
6641     case OFP14_VERSION:
6642         request = ofpraw_alloc(OFPRAW_OFPST12_GROUP_FEATURES_REQUEST,
6643                                ofp_version, 0);
6644         break;
6645     default:
6646         OVS_NOT_REACHED();
6647     }
6648
6649     return request;
6650 }
6651
6652 /* Returns a OpenFlow message that encodes 'features' properly as a reply to
6653  * group features request 'request'. */
6654 struct ofpbuf *
6655 ofputil_encode_group_features_reply(
6656     const struct ofputil_group_features *features,
6657     const struct ofp_header *request)
6658 {
6659     struct ofp12_group_features_stats *ogf;
6660     struct ofpbuf *reply;
6661
6662     reply = ofpraw_alloc_xid(OFPRAW_OFPST12_GROUP_FEATURES_REPLY,
6663                              request->version, request->xid, 0);
6664     ogf = ofpbuf_put_zeros(reply, sizeof *ogf);
6665     ogf->types = htonl(features->types);
6666     ogf->capabilities = htonl(features->capabilities);
6667     ogf->max_groups[0] = htonl(features->max_groups[0]);
6668     ogf->max_groups[1] = htonl(features->max_groups[1]);
6669     ogf->max_groups[2] = htonl(features->max_groups[2]);
6670     ogf->max_groups[3] = htonl(features->max_groups[3]);
6671     ogf->actions[0] = htonl(features->actions[0]);
6672     ogf->actions[1] = htonl(features->actions[1]);
6673     ogf->actions[2] = htonl(features->actions[2]);
6674     ogf->actions[3] = htonl(features->actions[3]);
6675
6676     return reply;
6677 }
6678
6679 /* Decodes group features reply 'oh' into 'features'. */
6680 void
6681 ofputil_decode_group_features_reply(const struct ofp_header *oh,
6682                                     struct ofputil_group_features *features)
6683 {
6684     const struct ofp12_group_features_stats *ogf = ofpmsg_body(oh);
6685
6686     features->types = ntohl(ogf->types);
6687     features->capabilities = ntohl(ogf->capabilities);
6688     features->max_groups[0] = ntohl(ogf->max_groups[0]);
6689     features->max_groups[1] = ntohl(ogf->max_groups[1]);
6690     features->max_groups[2] = ntohl(ogf->max_groups[2]);
6691     features->max_groups[3] = ntohl(ogf->max_groups[3]);
6692     features->actions[0] = ntohl(ogf->actions[0]);
6693     features->actions[1] = ntohl(ogf->actions[1]);
6694     features->actions[2] = ntohl(ogf->actions[2]);
6695     features->actions[3] = ntohl(ogf->actions[3]);
6696 }
6697
6698 /* Parse a group status request message into a 32 bit OpenFlow 1.1
6699  * group ID and stores the latter in '*group_id'.
6700  * Returns 0 if successful, otherwise an OFPERR_* number. */
6701 enum ofperr
6702 ofputil_decode_group_stats_request(const struct ofp_header *request,
6703                                    uint32_t *group_id)
6704 {
6705     const struct ofp11_group_stats_request *gsr11 = ofpmsg_body(request);
6706     *group_id = ntohl(gsr11->group_id);
6707     return 0;
6708 }
6709
6710 /* Converts a group stats reply in 'msg' into an abstract ofputil_group_stats
6711  * in 'gs'.  Assigns freshly allocated memory to gs->bucket_stats for the
6712  * caller to eventually free.
6713  *
6714  * Multiple group stats replies can be packed into a single OpenFlow message.
6715  * Calling this function multiple times for a single 'msg' iterates through the
6716  * replies.  The caller must initially leave 'msg''s layer pointers null and
6717  * not modify them between calls.
6718  *
6719  * Returns 0 if successful, EOF if no replies were left in this 'msg',
6720  * otherwise a positive errno value. */
6721 int
6722 ofputil_decode_group_stats_reply(struct ofpbuf *msg,
6723                                  struct ofputil_group_stats *gs)
6724 {
6725     struct ofp11_bucket_counter *obc;
6726     struct ofp11_group_stats *ogs11;
6727     enum ofpraw raw;
6728     enum ofperr error;
6729     size_t base_len;
6730     size_t length;
6731     size_t i;
6732
6733     gs->bucket_stats = NULL;
6734     error = (msg->frame
6735              ? ofpraw_decode(&raw, msg->frame)
6736              : ofpraw_pull(&raw, msg));
6737     if (error) {
6738         return error;
6739     }
6740
6741     if (!ofpbuf_size(msg)) {
6742         return EOF;
6743     }
6744
6745     if (raw == OFPRAW_OFPST11_GROUP_REPLY) {
6746         base_len = sizeof *ogs11;
6747         ogs11 = ofpbuf_try_pull(msg, sizeof *ogs11);
6748         gs->duration_sec = gs->duration_nsec = UINT32_MAX;
6749     } else if (raw == OFPRAW_OFPST13_GROUP_REPLY) {
6750         struct ofp13_group_stats *ogs13;
6751
6752         base_len = sizeof *ogs13;
6753         ogs13 = ofpbuf_try_pull(msg, sizeof *ogs13);
6754         if (ogs13) {
6755             ogs11 = &ogs13->gs;
6756             gs->duration_sec = ntohl(ogs13->duration_sec);
6757             gs->duration_nsec = ntohl(ogs13->duration_nsec);
6758         } else {
6759             ogs11 = NULL;
6760         }
6761     } else {
6762         OVS_NOT_REACHED();
6763     }
6764
6765     if (!ogs11) {
6766         VLOG_WARN_RL(&bad_ofmsg_rl, "%s reply has %"PRIu32" leftover bytes at end",
6767                      ofpraw_get_name(raw), ofpbuf_size(msg));
6768         return OFPERR_OFPBRC_BAD_LEN;
6769     }
6770     length = ntohs(ogs11->length);
6771     if (length < sizeof base_len) {
6772         VLOG_WARN_RL(&bad_ofmsg_rl, "%s reply claims invalid length %"PRIuSIZE,
6773                      ofpraw_get_name(raw), length);
6774         return OFPERR_OFPBRC_BAD_LEN;
6775     }
6776
6777     gs->group_id = ntohl(ogs11->group_id);
6778     gs->ref_count = ntohl(ogs11->ref_count);
6779     gs->packet_count = ntohll(ogs11->packet_count);
6780     gs->byte_count = ntohll(ogs11->byte_count);
6781
6782     gs->n_buckets = (length - base_len) / sizeof *obc;
6783     obc = ofpbuf_try_pull(msg, gs->n_buckets * sizeof *obc);
6784     if (!obc) {
6785         VLOG_WARN_RL(&bad_ofmsg_rl, "%s reply has %"PRIu32" leftover bytes at end",
6786                      ofpraw_get_name(raw), ofpbuf_size(msg));
6787         return OFPERR_OFPBRC_BAD_LEN;
6788     }
6789
6790     gs->bucket_stats = xmalloc(gs->n_buckets * sizeof *gs->bucket_stats);
6791     for (i = 0; i < gs->n_buckets; i++) {
6792         gs->bucket_stats[i].packet_count = ntohll(obc[i].packet_count);
6793         gs->bucket_stats[i].byte_count = ntohll(obc[i].byte_count);
6794     }
6795
6796     return 0;
6797 }
6798
6799 /* Appends a group stats reply that contains the data in 'gds' to those already
6800  * present in the list of ofpbufs in 'replies'.  'replies' should have been
6801  * initialized with ofpmp_init(). */
6802 void
6803 ofputil_append_group_desc_reply(const struct ofputil_group_desc *gds,
6804                                 struct list *buckets,
6805                                 struct list *replies)
6806 {
6807     struct ofpbuf *reply = ofpbuf_from_list(list_back(replies));
6808     enum ofp_version version = ofpmp_version(replies);
6809     struct ofp11_group_desc_stats *ogds;
6810     struct ofputil_bucket *bucket;
6811     size_t start_ogds;
6812
6813     start_ogds = ofpbuf_size(reply);
6814     ofpbuf_put_zeros(reply, sizeof *ogds);
6815     LIST_FOR_EACH (bucket, list_node, buckets) {
6816         struct ofp11_bucket *ob;
6817         size_t start_ob;
6818
6819         start_ob = ofpbuf_size(reply);
6820         ofpbuf_put_zeros(reply, sizeof *ob);
6821         ofpacts_put_openflow_actions(bucket->ofpacts, bucket->ofpacts_len,
6822                                      reply, version);
6823         ob = ofpbuf_at_assert(reply, start_ob, sizeof *ob);
6824         ob->len = htons(ofpbuf_size(reply) - start_ob);
6825         ob->weight = htons(bucket->weight);
6826         ob->watch_port = ofputil_port_to_ofp11(bucket->watch_port);
6827         ob->watch_group = htonl(bucket->watch_group);
6828     }
6829     ogds = ofpbuf_at_assert(reply, start_ogds, sizeof *ogds);
6830     ogds->length = htons(ofpbuf_size(reply) - start_ogds);
6831     ogds->type = gds->type;
6832     ogds->group_id = htonl(gds->group_id);
6833
6834     ofpmp_postappend(replies, start_ogds);
6835 }
6836
6837 static enum ofperr
6838 ofputil_pull_buckets(struct ofpbuf *msg, size_t buckets_length,
6839                      enum ofp_version version, struct list *buckets)
6840 {
6841     struct ofp11_bucket *ob;
6842
6843     list_init(buckets);
6844     while (buckets_length > 0) {
6845         struct ofputil_bucket *bucket;
6846         struct ofpbuf ofpacts;
6847         enum ofperr error;
6848         size_t ob_len;
6849
6850         ob = (buckets_length >= sizeof *ob
6851               ? ofpbuf_try_pull(msg, sizeof *ob)
6852               : NULL);
6853         if (!ob) {
6854             VLOG_WARN_RL(&bad_ofmsg_rl, "buckets end with %"PRIuSIZE" leftover bytes",
6855                          buckets_length);
6856         }
6857
6858         ob_len = ntohs(ob->len);
6859         if (ob_len < sizeof *ob) {
6860             VLOG_WARN_RL(&bad_ofmsg_rl, "OpenFlow message bucket length "
6861                          "%"PRIuSIZE" is not valid", ob_len);
6862             return OFPERR_OFPGMFC_BAD_BUCKET;
6863         } else if (ob_len > buckets_length) {
6864             VLOG_WARN_RL(&bad_ofmsg_rl, "OpenFlow message bucket length "
6865                          "%"PRIuSIZE" exceeds remaining buckets data size %"PRIuSIZE,
6866                          ob_len, buckets_length);
6867             return OFPERR_OFPGMFC_BAD_BUCKET;
6868         }
6869         buckets_length -= ob_len;
6870
6871         ofpbuf_init(&ofpacts, 0);
6872         error = ofpacts_pull_openflow_actions(msg, ob_len - sizeof *ob,
6873                                               version, &ofpacts);
6874         if (error) {
6875             ofpbuf_uninit(&ofpacts);
6876             ofputil_bucket_list_destroy(buckets);
6877             return error;
6878         }
6879
6880         bucket = xzalloc(sizeof *bucket);
6881         bucket->weight = ntohs(ob->weight);
6882         error = ofputil_port_from_ofp11(ob->watch_port, &bucket->watch_port);
6883         if (error) {
6884             ofpbuf_uninit(&ofpacts);
6885             ofputil_bucket_list_destroy(buckets);
6886             return OFPERR_OFPGMFC_BAD_WATCH;
6887         }
6888         bucket->watch_group = ntohl(ob->watch_group);
6889         bucket->ofpacts = ofpbuf_steal_data(&ofpacts);
6890         bucket->ofpacts_len = ofpbuf_size(&ofpacts);
6891         list_push_back(buckets, &bucket->list_node);
6892     }
6893
6894     return 0;
6895 }
6896
6897 /* Converts a group description reply in 'msg' into an abstract
6898  * ofputil_group_desc in 'gd'.
6899  *
6900  * Multiple group description replies can be packed into a single OpenFlow
6901  * message.  Calling this function multiple times for a single 'msg' iterates
6902  * through the replies.  The caller must initially leave 'msg''s layer pointers
6903  * null and not modify them between calls.
6904  *
6905  * Returns 0 if successful, EOF if no replies were left in this 'msg',
6906  * otherwise a positive errno value. */
6907 int
6908 ofputil_decode_group_desc_reply(struct ofputil_group_desc *gd,
6909                                 struct ofpbuf *msg, enum ofp_version version)
6910 {
6911     struct ofp11_group_desc_stats *ogds;
6912     size_t length;
6913
6914     if (!msg->frame) {
6915         ofpraw_pull_assert(msg);
6916     }
6917
6918     if (!ofpbuf_size(msg)) {
6919         return EOF;
6920     }
6921
6922     ogds = ofpbuf_try_pull(msg, sizeof *ogds);
6923     if (!ogds) {
6924         VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST11_GROUP_DESC reply has %"PRIu32" "
6925                      "leftover bytes at end", ofpbuf_size(msg));
6926         return OFPERR_OFPBRC_BAD_LEN;
6927     }
6928     gd->type = ogds->type;
6929     gd->group_id = ntohl(ogds->group_id);
6930
6931     length = ntohs(ogds->length);
6932     if (length < sizeof *ogds || length - sizeof *ogds > ofpbuf_size(msg)) {
6933         VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST11_GROUP_DESC reply claims invalid "
6934                      "length %"PRIuSIZE, length);
6935         return OFPERR_OFPBRC_BAD_LEN;
6936     }
6937
6938     return ofputil_pull_buckets(msg, length - sizeof *ogds, version,
6939                                 &gd->buckets);
6940 }
6941
6942 /* Converts abstract group mod 'gm' into a message for OpenFlow version
6943  * 'ofp_version' and returns the message. */
6944 struct ofpbuf *
6945 ofputil_encode_group_mod(enum ofp_version ofp_version,
6946                          const struct ofputil_group_mod *gm)
6947 {
6948     struct ofpbuf *b;
6949     struct ofp11_group_mod *ogm;
6950     size_t start_ogm;
6951     size_t start_bucket;
6952     struct ofputil_bucket *bucket;
6953     struct ofp11_bucket *ob;
6954
6955     switch (ofp_version) {
6956     case OFP10_VERSION: {
6957         if (gm->command == OFPGC11_ADD) {
6958             ovs_fatal(0, "add-group needs OpenFlow 1.1 or later "
6959                          "(\'-O OpenFlow11\')");
6960         } else if (gm->command == OFPGC11_MODIFY) {
6961             ovs_fatal(0, "mod-group needs OpenFlow 1.1 or later "
6962                          "(\'-O OpenFlow11\')");
6963         } else {
6964             ovs_fatal(0, "del-groups needs OpenFlow 1.1 or later "
6965                          "(\'-O OpenFlow11\')");
6966         }
6967     }
6968
6969     case OFP11_VERSION:
6970     case OFP12_VERSION:
6971     case OFP13_VERSION:
6972     case OFP14_VERSION:
6973         b = ofpraw_alloc(OFPRAW_OFPT11_GROUP_MOD, ofp_version, 0);
6974         start_ogm = ofpbuf_size(b);
6975         ofpbuf_put_zeros(b, sizeof *ogm);
6976
6977         LIST_FOR_EACH (bucket, list_node, &gm->buckets) {
6978             start_bucket = ofpbuf_size(b);
6979             ofpbuf_put_zeros(b, sizeof *ob);
6980             if (bucket->ofpacts && bucket->ofpacts_len) {
6981                 ofpacts_put_openflow_actions(bucket->ofpacts,
6982                                              bucket->ofpacts_len, b,
6983                                              ofp_version);
6984             }
6985             ob = ofpbuf_at_assert(b, start_bucket, sizeof *ob);
6986             ob->len = htons(ofpbuf_size(b) - start_bucket);;
6987             ob->weight = htons(bucket->weight);
6988             ob->watch_port = ofputil_port_to_ofp11(bucket->watch_port);
6989             ob->watch_group = htonl(bucket->watch_group);
6990         }
6991         ogm = ofpbuf_at_assert(b, start_ogm, sizeof *ogm);
6992         ogm->command = htons(gm->command);
6993         ogm->type = gm->type;
6994         ogm->group_id = htonl(gm->group_id);
6995
6996         break;
6997
6998     default:
6999         OVS_NOT_REACHED();
7000     }
7001
7002     return b;
7003 }
7004
7005 /* Converts OpenFlow group mod message 'oh' into an abstract group mod in
7006  * 'gm'.  Returns 0 if successful, otherwise an OpenFlow error code. */
7007 enum ofperr
7008 ofputil_decode_group_mod(const struct ofp_header *oh,
7009                          struct ofputil_group_mod *gm)
7010 {
7011     const struct ofp11_group_mod *ogm;
7012     struct ofpbuf msg;
7013     struct ofputil_bucket *bucket;
7014     enum ofperr err;
7015
7016     ofpbuf_use_const(&msg, oh, ntohs(oh->length));
7017     ofpraw_pull_assert(&msg);
7018
7019     ogm = ofpbuf_pull(&msg, sizeof *ogm);
7020     gm->command = ntohs(ogm->command);
7021     gm->type = ogm->type;
7022     gm->group_id = ntohl(ogm->group_id);
7023
7024     err = ofputil_pull_buckets(&msg, ofpbuf_size(&msg), oh->version, &gm->buckets);
7025     if (err) {
7026         return err;
7027     }
7028
7029     LIST_FOR_EACH (bucket, list_node, &gm->buckets) {
7030         switch (gm->type) {
7031         case OFPGT11_ALL:
7032         case OFPGT11_INDIRECT:
7033             if (ofputil_bucket_has_liveness(bucket)) {
7034                 return OFPERR_OFPGMFC_WATCH_UNSUPPORTED;
7035             }
7036             break;
7037         case OFPGT11_SELECT:
7038             break;
7039         case OFPGT11_FF:
7040             if (!ofputil_bucket_has_liveness(bucket)) {
7041                 return OFPERR_OFPGMFC_INVALID_GROUP;
7042             }
7043             break;
7044         default:
7045             OVS_NOT_REACHED();
7046         }
7047     }
7048
7049     return 0;
7050 }
7051
7052 /* Parse a queue status request message into 'oqsr'.
7053  * Returns 0 if successful, otherwise an OFPERR_* number. */
7054 enum ofperr
7055 ofputil_decode_queue_stats_request(const struct ofp_header *request,
7056                                    struct ofputil_queue_stats_request *oqsr)
7057 {
7058     switch ((enum ofp_version)request->version) {
7059     case OFP14_VERSION:
7060     case OFP13_VERSION:
7061     case OFP12_VERSION:
7062     case OFP11_VERSION: {
7063         const struct ofp11_queue_stats_request *qsr11 = ofpmsg_body(request);
7064         oqsr->queue_id = ntohl(qsr11->queue_id);
7065         return ofputil_port_from_ofp11(qsr11->port_no, &oqsr->port_no);
7066     }
7067
7068     case OFP10_VERSION: {
7069         const struct ofp10_queue_stats_request *qsr10 = ofpmsg_body(request);
7070         oqsr->queue_id = ntohl(qsr10->queue_id);
7071         oqsr->port_no = u16_to_ofp(ntohs(qsr10->port_no));
7072         /* OF 1.0 uses OFPP_ALL for OFPP_ANY */
7073         if (oqsr->port_no == OFPP_ALL) {
7074             oqsr->port_no = OFPP_ANY;
7075         }
7076         return 0;
7077     }
7078
7079     default:
7080         OVS_NOT_REACHED();
7081     }
7082 }
7083
7084 /* Encode a queue statsrequest for 'oqsr', the encoded message
7085  * will be fore Open Flow version 'ofp_version'. Returns message
7086  * as a struct ofpbuf. Returns encoded message on success, NULL on error */
7087 struct ofpbuf *
7088 ofputil_encode_queue_stats_request(enum ofp_version ofp_version,
7089                                    const struct ofputil_queue_stats_request *oqsr)
7090 {
7091     struct ofpbuf *request;
7092
7093     switch (ofp_version) {
7094     case OFP11_VERSION:
7095     case OFP12_VERSION:
7096     case OFP13_VERSION:
7097     case OFP14_VERSION: {
7098         struct ofp11_queue_stats_request *req;
7099         request = ofpraw_alloc(OFPRAW_OFPST11_QUEUE_REQUEST, ofp_version, 0);
7100         req = ofpbuf_put_zeros(request, sizeof *req);
7101         req->port_no = ofputil_port_to_ofp11(oqsr->port_no);
7102         req->queue_id = htonl(oqsr->queue_id);
7103         break;
7104     }
7105     case OFP10_VERSION: {
7106         struct ofp10_queue_stats_request *req;
7107         request = ofpraw_alloc(OFPRAW_OFPST10_QUEUE_REQUEST, ofp_version, 0);
7108         req = ofpbuf_put_zeros(request, sizeof *req);
7109         /* OpenFlow 1.0 needs OFPP_ALL instead of OFPP_ANY */
7110         req->port_no = htons(ofp_to_u16(oqsr->port_no == OFPP_ANY
7111                                         ? OFPP_ALL : oqsr->port_no));
7112         req->queue_id = htonl(oqsr->queue_id);
7113         break;
7114     }
7115     default:
7116         OVS_NOT_REACHED();
7117     }
7118
7119     return request;
7120 }
7121
7122 /* Returns the number of queue stats elements in OFPTYPE_QUEUE_STATS_REPLY
7123  * message 'oh'. */
7124 size_t
7125 ofputil_count_queue_stats(const struct ofp_header *oh)
7126 {
7127     struct ofputil_queue_stats qs;
7128     struct ofpbuf b;
7129     size_t n = 0;
7130
7131     ofpbuf_use_const(&b, oh, ntohs(oh->length));
7132     ofpraw_pull_assert(&b);
7133     while (!ofputil_decode_queue_stats(&qs, &b)) {
7134         n++;
7135     }
7136     return n;
7137 }
7138
7139 static enum ofperr
7140 ofputil_queue_stats_from_ofp10(struct ofputil_queue_stats *oqs,
7141                                const struct ofp10_queue_stats *qs10)
7142 {
7143     oqs->port_no = u16_to_ofp(ntohs(qs10->port_no));
7144     oqs->queue_id = ntohl(qs10->queue_id);
7145     oqs->tx_bytes = ntohll(get_32aligned_be64(&qs10->tx_bytes));
7146     oqs->tx_packets = ntohll(get_32aligned_be64(&qs10->tx_packets));
7147     oqs->tx_errors = ntohll(get_32aligned_be64(&qs10->tx_errors));
7148     oqs->duration_sec = oqs->duration_nsec = UINT32_MAX;
7149
7150     return 0;
7151 }
7152
7153 static enum ofperr
7154 ofputil_queue_stats_from_ofp11(struct ofputil_queue_stats *oqs,
7155                                const struct ofp11_queue_stats *qs11)
7156 {
7157     enum ofperr error;
7158
7159     error = ofputil_port_from_ofp11(qs11->port_no, &oqs->port_no);
7160     if (error) {
7161         return error;
7162     }
7163
7164     oqs->queue_id = ntohl(qs11->queue_id);
7165     oqs->tx_bytes = ntohll(qs11->tx_bytes);
7166     oqs->tx_packets = ntohll(qs11->tx_packets);
7167     oqs->tx_errors = ntohll(qs11->tx_errors);
7168     oqs->duration_sec = oqs->duration_nsec = UINT32_MAX;
7169
7170     return 0;
7171 }
7172
7173 static enum ofperr
7174 ofputil_queue_stats_from_ofp13(struct ofputil_queue_stats *oqs,
7175                                const struct ofp13_queue_stats *qs13)
7176 {
7177     enum ofperr error = ofputil_queue_stats_from_ofp11(oqs, &qs13->qs);
7178     if (!error) {
7179         oqs->duration_sec = ntohl(qs13->duration_sec);
7180         oqs->duration_nsec = ntohl(qs13->duration_nsec);
7181     }
7182
7183     return error;
7184 }
7185
7186 static enum ofperr
7187 ofputil_pull_ofp14_queue_stats(struct ofputil_queue_stats *oqs,
7188                                struct ofpbuf *msg)
7189 {
7190     const struct ofp14_queue_stats *qs14;
7191     size_t len;
7192
7193     qs14 = ofpbuf_try_pull(msg, sizeof *qs14);
7194     if (!qs14) {
7195         return OFPERR_OFPBRC_BAD_LEN;
7196     }
7197
7198     len = ntohs(qs14->length);
7199     if (len < sizeof *qs14 || len - sizeof *qs14 > ofpbuf_size(msg)) {
7200         return OFPERR_OFPBRC_BAD_LEN;
7201     }
7202     ofpbuf_pull(msg, len - sizeof *qs14);
7203
7204     /* No properties yet defined, so ignore them for now. */
7205
7206     return ofputil_queue_stats_from_ofp13(oqs, &qs14->qs);
7207 }
7208
7209 /* Converts an OFPST_QUEUE_STATS reply in 'msg' into an abstract
7210  * ofputil_queue_stats in 'qs'.
7211  *
7212  * Multiple OFPST_QUEUE_STATS replies can be packed into a single OpenFlow
7213  * message.  Calling this function multiple times for a single 'msg' iterates
7214  * through the replies.  The caller must initially leave 'msg''s layer pointers
7215  * null and not modify them between calls.
7216  *
7217  * Returns 0 if successful, EOF if no replies were left in this 'msg',
7218  * otherwise a positive errno value. */
7219 int
7220 ofputil_decode_queue_stats(struct ofputil_queue_stats *qs, struct ofpbuf *msg)
7221 {
7222     enum ofperr error;
7223     enum ofpraw raw;
7224
7225     error = (msg->frame
7226              ? ofpraw_decode(&raw, msg->frame)
7227              : ofpraw_pull(&raw, msg));
7228     if (error) {
7229         return error;
7230     }
7231
7232     if (!ofpbuf_size(msg)) {
7233         return EOF;
7234     } else if (raw == OFPRAW_OFPST14_QUEUE_REPLY) {
7235         return ofputil_pull_ofp14_queue_stats(qs, msg);
7236     } else if (raw == OFPRAW_OFPST13_QUEUE_REPLY) {
7237         const struct ofp13_queue_stats *qs13;
7238
7239         qs13 = ofpbuf_try_pull(msg, sizeof *qs13);
7240         if (!qs13) {
7241             goto bad_len;
7242         }
7243         return ofputil_queue_stats_from_ofp13(qs, qs13);
7244     } else if (raw == OFPRAW_OFPST11_QUEUE_REPLY) {
7245         const struct ofp11_queue_stats *qs11;
7246
7247         qs11 = ofpbuf_try_pull(msg, sizeof *qs11);
7248         if (!qs11) {
7249             goto bad_len;
7250         }
7251         return ofputil_queue_stats_from_ofp11(qs, qs11);
7252     } else if (raw == OFPRAW_OFPST10_QUEUE_REPLY) {
7253         const struct ofp10_queue_stats *qs10;
7254
7255         qs10 = ofpbuf_try_pull(msg, sizeof *qs10);
7256         if (!qs10) {
7257             goto bad_len;
7258         }
7259         return ofputil_queue_stats_from_ofp10(qs, qs10);
7260     } else {
7261         OVS_NOT_REACHED();
7262     }
7263
7264  bad_len:
7265     VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_QUEUE reply has %"PRIu32" leftover "
7266                  "bytes at end", ofpbuf_size(msg));
7267     return OFPERR_OFPBRC_BAD_LEN;
7268 }
7269
7270 static void
7271 ofputil_queue_stats_to_ofp10(const struct ofputil_queue_stats *oqs,
7272                              struct ofp10_queue_stats *qs10)
7273 {
7274     qs10->port_no = htons(ofp_to_u16(oqs->port_no));
7275     memset(qs10->pad, 0, sizeof qs10->pad);
7276     qs10->queue_id = htonl(oqs->queue_id);
7277     put_32aligned_be64(&qs10->tx_bytes, htonll(oqs->tx_bytes));
7278     put_32aligned_be64(&qs10->tx_packets, htonll(oqs->tx_packets));
7279     put_32aligned_be64(&qs10->tx_errors, htonll(oqs->tx_errors));
7280 }
7281
7282 static void
7283 ofputil_queue_stats_to_ofp11(const struct ofputil_queue_stats *oqs,
7284                              struct ofp11_queue_stats *qs11)
7285 {
7286     qs11->port_no = ofputil_port_to_ofp11(oqs->port_no);
7287     qs11->queue_id = htonl(oqs->queue_id);
7288     qs11->tx_bytes = htonll(oqs->tx_bytes);
7289     qs11->tx_packets = htonll(oqs->tx_packets);
7290     qs11->tx_errors = htonll(oqs->tx_errors);
7291 }
7292
7293 static void
7294 ofputil_queue_stats_to_ofp13(const struct ofputil_queue_stats *oqs,
7295                              struct ofp13_queue_stats *qs13)
7296 {
7297     ofputil_queue_stats_to_ofp11(oqs, &qs13->qs);
7298     if (oqs->duration_sec != UINT32_MAX) {
7299         qs13->duration_sec = htonl(oqs->duration_sec);
7300         qs13->duration_nsec = htonl(oqs->duration_nsec);
7301     } else {
7302         qs13->duration_sec = OVS_BE32_MAX;
7303         qs13->duration_nsec = OVS_BE32_MAX;
7304     }
7305 }
7306
7307 static void
7308 ofputil_queue_stats_to_ofp14(const struct ofputil_queue_stats *oqs,
7309                              struct ofp14_queue_stats *qs14)
7310 {
7311     qs14->length = htons(sizeof *qs14);
7312     memset(qs14->pad, 0, sizeof qs14->pad);
7313     ofputil_queue_stats_to_ofp13(oqs, &qs14->qs);
7314 }
7315
7316
7317 /* Encode a queue stat for 'oqs' and append it to 'replies'. */
7318 void
7319 ofputil_append_queue_stat(struct list *replies,
7320                           const struct ofputil_queue_stats *oqs)
7321 {
7322     switch (ofpmp_version(replies)) {
7323     case OFP13_VERSION: {
7324         struct ofp13_queue_stats *reply = ofpmp_append(replies, sizeof *reply);
7325         ofputil_queue_stats_to_ofp13(oqs, reply);
7326         break;
7327     }
7328
7329     case OFP12_VERSION:
7330     case OFP11_VERSION: {
7331         struct ofp11_queue_stats *reply = ofpmp_append(replies, sizeof *reply);
7332         ofputil_queue_stats_to_ofp11(oqs, reply);
7333         break;
7334     }
7335
7336     case OFP10_VERSION: {
7337         struct ofp10_queue_stats *reply = ofpmp_append(replies, sizeof *reply);
7338         ofputil_queue_stats_to_ofp10(oqs, reply);
7339         break;
7340     }
7341
7342     case OFP14_VERSION: {
7343         struct ofp14_queue_stats *reply = ofpmp_append(replies, sizeof *reply);
7344         ofputil_queue_stats_to_ofp14(oqs, reply);
7345         break;
7346     }
7347
7348     default:
7349         OVS_NOT_REACHED();
7350     }
7351 }
7352
7353 enum ofperr
7354 ofputil_decode_bundle_ctrl(const struct ofp_header *oh,
7355                            struct ofputil_bundle_ctrl_msg *msg)
7356 {
7357     struct ofpbuf b;
7358     enum ofpraw raw;
7359     const struct ofp14_bundle_ctrl_msg *m;
7360
7361     ofpbuf_use_const(&b, oh, ntohs(oh->length));
7362     raw = ofpraw_pull_assert(&b);
7363     ovs_assert(raw == OFPRAW_OFPT14_BUNDLE_CONTROL);
7364
7365     m = ofpbuf_l3(&b);
7366     msg->bundle_id = ntohl(m->bundle_id);
7367     msg->type = ntohs(m->type);
7368     msg->flags = ntohs(m->flags);
7369
7370     return 0;
7371 }
7372
7373 struct ofpbuf *
7374 ofputil_encode_bundle_ctrl_reply(const struct ofp_header *oh,
7375                                  struct ofputil_bundle_ctrl_msg *msg)
7376 {
7377     struct ofpbuf *buf;
7378     struct ofp14_bundle_ctrl_msg *m;
7379
7380     buf = ofpraw_alloc_reply(OFPRAW_OFPT14_BUNDLE_CONTROL, oh, 0);
7381     m = ofpbuf_put_zeros(buf, sizeof *m);
7382
7383     m->bundle_id = htonl(msg->bundle_id);
7384     m->type = htons(msg->type);
7385     m->flags = htons(msg->flags);
7386
7387     return buf;
7388 }
7389
7390 enum ofperr
7391 ofputil_decode_bundle_add(const struct ofp_header *oh,
7392                           struct ofputil_bundle_add_msg *msg)
7393 {
7394     const struct ofp14_bundle_ctrl_msg *m;
7395     struct ofpbuf b;
7396     enum ofpraw raw;
7397     size_t inner_len;
7398
7399     ofpbuf_use_const(&b, oh, ntohs(oh->length));
7400     raw = ofpraw_pull_assert(&b);
7401     ovs_assert(raw == OFPRAW_OFPT14_BUNDLE_ADD_MESSAGE);
7402
7403     m = ofpbuf_pull(&b, sizeof *m);
7404     msg->bundle_id = ntohl(m->bundle_id);
7405     msg->flags = ntohs(m->flags);
7406
7407     msg->msg = ofpbuf_data(&b);
7408     inner_len = ntohs(msg->msg->length);
7409     if (inner_len < sizeof(struct ofp_header) || inner_len > ofpbuf_size(&b)) {
7410         return OFPERR_OFPBFC_MSG_BAD_LEN;
7411     }
7412
7413     return 0;
7414 }
7415
7416 struct ofpbuf *
7417 ofputil_encode_bundle_add(enum ofp_version ofp_version,
7418                           struct ofputil_bundle_add_msg *msg)
7419 {
7420     struct ofpbuf *request;
7421     struct ofp14_bundle_ctrl_msg *m;
7422
7423     request = ofpraw_alloc(OFPRAW_OFPT14_BUNDLE_ADD_MESSAGE, ofp_version, 0);
7424     m = ofpbuf_put_zeros(request, sizeof *m);
7425
7426     m->bundle_id = htonl(msg->bundle_id);
7427     m->flags = htons(msg->flags);
7428     ofpbuf_put(request, msg->msg, ntohs(msg->msg->length));
7429
7430     return request;
7431 }