ofp-util: Simplify struct ofputil_role_request.
[sliver-openvswitch.git] / lib / ofp-util.c
1 /*
2  * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #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
46 VLOG_DEFINE_THIS_MODULE(ofp_util);
47
48 /* Rate limit for OpenFlow message parse errors.  These always indicate a bug
49  * in the peer and so there's not much point in showing a lot of them. */
50 static struct vlog_rate_limit bad_ofmsg_rl = VLOG_RATE_LIMIT_INIT(1, 5);
51
52 /* Given the wildcard bit count in the least-significant 6 of 'wcbits', returns
53  * an IP netmask with a 1 in each bit that must match and a 0 in each bit that
54  * is wildcarded.
55  *
56  * The bits in 'wcbits' are in the format used in enum ofp_flow_wildcards: 0
57  * is exact match, 1 ignores the LSB, 2 ignores the 2 least-significant bits,
58  * ..., 32 and higher wildcard the entire field.  This is the *opposite* of the
59  * usual convention where e.g. /24 indicates that 8 bits (not 24 bits) are
60  * wildcarded. */
61 ovs_be32
62 ofputil_wcbits_to_netmask(int wcbits)
63 {
64     wcbits &= 0x3f;
65     return wcbits < 32 ? htonl(~((1u << wcbits) - 1)) : 0;
66 }
67
68 /* Given the IP netmask 'netmask', returns the number of bits of the IP address
69  * that it wildcards, that is, the number of 0-bits in 'netmask', a number
70  * between 0 and 32 inclusive.
71  *
72  * If 'netmask' is not a CIDR netmask (see ip_is_cidr()), the return value will
73  * still be in the valid range but isn't otherwise meaningful. */
74 int
75 ofputil_netmask_to_wcbits(ovs_be32 netmask)
76 {
77     return 32 - ip_count_cidr_bits(netmask);
78 }
79
80 /* Converts the OpenFlow 1.0 wildcards in 'ofpfw' (OFPFW10_*) into a
81  * flow_wildcards in 'wc' for use in struct match.  It is the caller's
82  * responsibility to handle the special case where the flow match's dl_vlan is
83  * set to OFP_VLAN_NONE. */
84 void
85 ofputil_wildcard_from_ofpfw10(uint32_t ofpfw, struct flow_wildcards *wc)
86 {
87     BUILD_ASSERT_DECL(FLOW_WC_SEQ == 19);
88
89     /* Initialize most of wc. */
90     flow_wildcards_init_catchall(wc);
91
92     if (!(ofpfw & OFPFW10_IN_PORT)) {
93         wc->masks.in_port = UINT16_MAX;
94     }
95
96     if (!(ofpfw & OFPFW10_NW_TOS)) {
97         wc->masks.nw_tos |= IP_DSCP_MASK;
98     }
99
100     if (!(ofpfw & OFPFW10_NW_PROTO)) {
101         wc->masks.nw_proto = UINT8_MAX;
102     }
103     wc->masks.nw_src = ofputil_wcbits_to_netmask(ofpfw
104                                                  >> OFPFW10_NW_SRC_SHIFT);
105     wc->masks.nw_dst = ofputil_wcbits_to_netmask(ofpfw
106                                                  >> OFPFW10_NW_DST_SHIFT);
107
108     if (!(ofpfw & OFPFW10_TP_SRC)) {
109         wc->masks.tp_src = htons(UINT16_MAX);
110     }
111     if (!(ofpfw & OFPFW10_TP_DST)) {
112         wc->masks.tp_dst = htons(UINT16_MAX);
113     }
114
115     if (!(ofpfw & OFPFW10_DL_SRC)) {
116         memset(wc->masks.dl_src, 0xff, ETH_ADDR_LEN);
117     }
118     if (!(ofpfw & OFPFW10_DL_DST)) {
119         memset(wc->masks.dl_dst, 0xff, ETH_ADDR_LEN);
120     }
121     if (!(ofpfw & OFPFW10_DL_TYPE)) {
122         wc->masks.dl_type = htons(UINT16_MAX);
123     }
124
125     /* VLAN TCI mask. */
126     if (!(ofpfw & OFPFW10_DL_VLAN_PCP)) {
127         wc->masks.vlan_tci |= htons(VLAN_PCP_MASK | VLAN_CFI);
128     }
129     if (!(ofpfw & OFPFW10_DL_VLAN)) {
130         wc->masks.vlan_tci |= htons(VLAN_VID_MASK | VLAN_CFI);
131     }
132 }
133
134 /* Converts the ofp10_match in 'ofmatch' into a struct match in 'match'. */
135 void
136 ofputil_match_from_ofp10_match(const struct ofp10_match *ofmatch,
137                                struct match *match)
138 {
139     uint32_t ofpfw = ntohl(ofmatch->wildcards) & OFPFW10_ALL;
140
141     /* Initialize match->wc. */
142     memset(&match->flow, 0, sizeof match->flow);
143     ofputil_wildcard_from_ofpfw10(ofpfw, &match->wc);
144
145     /* Initialize most of match->flow. */
146     match->flow.nw_src = ofmatch->nw_src;
147     match->flow.nw_dst = ofmatch->nw_dst;
148     match->flow.in_port = ntohs(ofmatch->in_port);
149     match->flow.dl_type = ofputil_dl_type_from_openflow(ofmatch->dl_type);
150     match->flow.tp_src = ofmatch->tp_src;
151     match->flow.tp_dst = ofmatch->tp_dst;
152     memcpy(match->flow.dl_src, ofmatch->dl_src, ETH_ADDR_LEN);
153     memcpy(match->flow.dl_dst, ofmatch->dl_dst, ETH_ADDR_LEN);
154     match->flow.nw_tos = ofmatch->nw_tos & IP_DSCP_MASK;
155     match->flow.nw_proto = ofmatch->nw_proto;
156
157     /* Translate VLANs. */
158     if (!(ofpfw & OFPFW10_DL_VLAN) &&
159         ofmatch->dl_vlan == htons(OFP10_VLAN_NONE)) {
160         /* Match only packets without 802.1Q header.
161          *
162          * When OFPFW10_DL_VLAN_PCP is wildcarded, this is obviously correct.
163          *
164          * If OFPFW10_DL_VLAN_PCP is matched, the flow match is contradictory,
165          * because we can't have a specific PCP without an 802.1Q header.
166          * However, older versions of OVS treated this as matching packets
167          * withut an 802.1Q header, so we do here too. */
168         match->flow.vlan_tci = htons(0);
169         match->wc.masks.vlan_tci = htons(0xffff);
170     } else {
171         ovs_be16 vid, pcp, tci;
172
173         vid = ofmatch->dl_vlan & htons(VLAN_VID_MASK);
174         pcp = htons((ofmatch->dl_vlan_pcp << VLAN_PCP_SHIFT) & VLAN_PCP_MASK);
175         tci = vid | pcp | htons(VLAN_CFI);
176         match->flow.vlan_tci = tci & match->wc.masks.vlan_tci;
177     }
178
179     /* Clean up. */
180     match_zero_wildcarded_fields(match);
181 }
182
183 /* Convert 'match' into the OpenFlow 1.0 match structure 'ofmatch'. */
184 void
185 ofputil_match_to_ofp10_match(const struct match *match,
186                              struct ofp10_match *ofmatch)
187 {
188     const struct flow_wildcards *wc = &match->wc;
189     uint32_t ofpfw;
190
191     /* Figure out most OpenFlow wildcards. */
192     ofpfw = 0;
193     if (!wc->masks.in_port) {
194         ofpfw |= OFPFW10_IN_PORT;
195     }
196     if (!wc->masks.dl_type) {
197         ofpfw |= OFPFW10_DL_TYPE;
198     }
199     if (!wc->masks.nw_proto) {
200         ofpfw |= OFPFW10_NW_PROTO;
201     }
202     ofpfw |= (ofputil_netmask_to_wcbits(wc->masks.nw_src)
203               << OFPFW10_NW_SRC_SHIFT);
204     ofpfw |= (ofputil_netmask_to_wcbits(wc->masks.nw_dst)
205               << OFPFW10_NW_DST_SHIFT);
206     if (!(wc->masks.nw_tos & IP_DSCP_MASK)) {
207         ofpfw |= OFPFW10_NW_TOS;
208     }
209     if (!wc->masks.tp_src) {
210         ofpfw |= OFPFW10_TP_SRC;
211     }
212     if (!wc->masks.tp_dst) {
213         ofpfw |= OFPFW10_TP_DST;
214     }
215     if (eth_addr_is_zero(wc->masks.dl_src)) {
216         ofpfw |= OFPFW10_DL_SRC;
217     }
218     if (eth_addr_is_zero(wc->masks.dl_dst)) {
219         ofpfw |= OFPFW10_DL_DST;
220     }
221
222     /* Translate VLANs. */
223     ofmatch->dl_vlan = htons(0);
224     ofmatch->dl_vlan_pcp = 0;
225     if (match->wc.masks.vlan_tci == htons(0)) {
226         ofpfw |= OFPFW10_DL_VLAN | OFPFW10_DL_VLAN_PCP;
227     } else if (match->wc.masks.vlan_tci & htons(VLAN_CFI)
228                && !(match->flow.vlan_tci & htons(VLAN_CFI))) {
229         ofmatch->dl_vlan = htons(OFP10_VLAN_NONE);
230         ofpfw |= OFPFW10_DL_VLAN_PCP;
231     } else {
232         if (!(match->wc.masks.vlan_tci & htons(VLAN_VID_MASK))) {
233             ofpfw |= OFPFW10_DL_VLAN;
234         } else {
235             ofmatch->dl_vlan = htons(vlan_tci_to_vid(match->flow.vlan_tci));
236         }
237
238         if (!(match->wc.masks.vlan_tci & htons(VLAN_PCP_MASK))) {
239             ofpfw |= OFPFW10_DL_VLAN_PCP;
240         } else {
241             ofmatch->dl_vlan_pcp = vlan_tci_to_pcp(match->flow.vlan_tci);
242         }
243     }
244
245     /* Compose most of the match structure. */
246     ofmatch->wildcards = htonl(ofpfw);
247     ofmatch->in_port = htons(match->flow.in_port);
248     memcpy(ofmatch->dl_src, match->flow.dl_src, ETH_ADDR_LEN);
249     memcpy(ofmatch->dl_dst, match->flow.dl_dst, ETH_ADDR_LEN);
250     ofmatch->dl_type = ofputil_dl_type_to_openflow(match->flow.dl_type);
251     ofmatch->nw_src = match->flow.nw_src;
252     ofmatch->nw_dst = match->flow.nw_dst;
253     ofmatch->nw_tos = match->flow.nw_tos & IP_DSCP_MASK;
254     ofmatch->nw_proto = match->flow.nw_proto;
255     ofmatch->tp_src = match->flow.tp_src;
256     ofmatch->tp_dst = match->flow.tp_dst;
257     memset(ofmatch->pad1, '\0', sizeof ofmatch->pad1);
258     memset(ofmatch->pad2, '\0', sizeof ofmatch->pad2);
259 }
260
261 enum ofperr
262 ofputil_pull_ofp11_match(struct ofpbuf *buf, struct match *match,
263                          uint16_t *padded_match_len)
264 {
265     struct ofp11_match_header *omh = buf->data;
266     uint16_t match_len;
267
268     if (buf->size < sizeof *omh) {
269         return OFPERR_OFPBMC_BAD_LEN;
270     }
271
272     match_len = ntohs(omh->length);
273
274     switch (ntohs(omh->type)) {
275     case OFPMT_STANDARD: {
276         struct ofp11_match *om;
277
278         if (match_len != sizeof *om || buf->size < sizeof *om) {
279             return OFPERR_OFPBMC_BAD_LEN;
280         }
281         om = ofpbuf_pull(buf, sizeof *om);
282         if (padded_match_len) {
283             *padded_match_len = match_len;
284         }
285         return ofputil_match_from_ofp11_match(om, match);
286     }
287
288     case OFPMT_OXM:
289         if (padded_match_len) {
290             *padded_match_len = ROUND_UP(match_len, 8);
291         }
292         return oxm_pull_match(buf, match);
293
294     default:
295         return OFPERR_OFPBMC_BAD_TYPE;
296     }
297 }
298
299 /* Converts the ofp11_match in 'match' into a struct match in 'match.  Returns
300  * 0 if successful, otherwise an OFPERR_* value. */
301 enum ofperr
302 ofputil_match_from_ofp11_match(const struct ofp11_match *ofmatch,
303                                struct match *match)
304 {
305     uint16_t wc = ntohl(ofmatch->wildcards);
306     uint8_t dl_src_mask[ETH_ADDR_LEN];
307     uint8_t dl_dst_mask[ETH_ADDR_LEN];
308     bool ipv4, arp, rarp;
309     int i;
310
311     match_init_catchall(match);
312
313     if (!(wc & OFPFW11_IN_PORT)) {
314         uint16_t ofp_port;
315         enum ofperr error;
316
317         error = ofputil_port_from_ofp11(ofmatch->in_port, &ofp_port);
318         if (error) {
319             return OFPERR_OFPBMC_BAD_VALUE;
320         }
321         match_set_in_port(match, ofp_port);
322     }
323
324     for (i = 0; i < ETH_ADDR_LEN; i++) {
325         dl_src_mask[i] = ~ofmatch->dl_src_mask[i];
326     }
327     match_set_dl_src_masked(match, ofmatch->dl_src, dl_src_mask);
328
329     for (i = 0; i < ETH_ADDR_LEN; i++) {
330         dl_dst_mask[i] = ~ofmatch->dl_dst_mask[i];
331     }
332     match_set_dl_dst_masked(match, ofmatch->dl_dst, dl_dst_mask);
333
334     if (!(wc & OFPFW11_DL_VLAN)) {
335         if (ofmatch->dl_vlan == htons(OFPVID11_NONE)) {
336             /* Match only packets without a VLAN tag. */
337             match->flow.vlan_tci = htons(0);
338             match->wc.masks.vlan_tci = htons(UINT16_MAX);
339         } else {
340             if (ofmatch->dl_vlan == htons(OFPVID11_ANY)) {
341                 /* Match any packet with a VLAN tag regardless of VID. */
342                 match->flow.vlan_tci = htons(VLAN_CFI);
343                 match->wc.masks.vlan_tci = htons(VLAN_CFI);
344             } else if (ntohs(ofmatch->dl_vlan) < 4096) {
345                 /* Match only packets with the specified VLAN VID. */
346                 match->flow.vlan_tci = htons(VLAN_CFI) | ofmatch->dl_vlan;
347                 match->wc.masks.vlan_tci = htons(VLAN_CFI | VLAN_VID_MASK);
348             } else {
349                 /* Invalid VID. */
350                 return OFPERR_OFPBMC_BAD_VALUE;
351             }
352
353             if (!(wc & OFPFW11_DL_VLAN_PCP)) {
354                 if (ofmatch->dl_vlan_pcp <= 7) {
355                     match->flow.vlan_tci |= htons(ofmatch->dl_vlan_pcp
356                                                   << VLAN_PCP_SHIFT);
357                     match->wc.masks.vlan_tci |= htons(VLAN_PCP_MASK);
358                 } else {
359                     /* Invalid PCP. */
360                     return OFPERR_OFPBMC_BAD_VALUE;
361                 }
362             }
363         }
364     }
365
366     if (!(wc & OFPFW11_DL_TYPE)) {
367         match_set_dl_type(match,
368                           ofputil_dl_type_from_openflow(ofmatch->dl_type));
369     }
370
371     ipv4 = match->flow.dl_type == htons(ETH_TYPE_IP);
372     arp = match->flow.dl_type == htons(ETH_TYPE_ARP);
373     rarp = match->flow.dl_type == htons(ETH_TYPE_RARP);
374
375     if (ipv4 && !(wc & OFPFW11_NW_TOS)) {
376         if (ofmatch->nw_tos & ~IP_DSCP_MASK) {
377             /* Invalid TOS. */
378             return OFPERR_OFPBMC_BAD_VALUE;
379         }
380
381         match_set_nw_dscp(match, ofmatch->nw_tos);
382     }
383
384     if (ipv4 || arp || rarp) {
385         if (!(wc & OFPFW11_NW_PROTO)) {
386             match_set_nw_proto(match, ofmatch->nw_proto);
387         }
388         match_set_nw_src_masked(match, ofmatch->nw_src, ~ofmatch->nw_src_mask);
389         match_set_nw_dst_masked(match, ofmatch->nw_dst, ~ofmatch->nw_dst_mask);
390     }
391
392 #define OFPFW11_TP_ALL (OFPFW11_TP_SRC | OFPFW11_TP_DST)
393     if (ipv4 && (wc & OFPFW11_TP_ALL) != OFPFW11_TP_ALL) {
394         switch (match->flow.nw_proto) {
395         case IPPROTO_ICMP:
396             /* "A.2.3 Flow Match Structures" in OF1.1 says:
397              *
398              *    The tp_src and tp_dst fields will be ignored unless the
399              *    network protocol specified is as TCP, UDP or SCTP.
400              *
401              * but I'm pretty sure we should support ICMP too, otherwise
402              * that's a regression from OF1.0. */
403             if (!(wc & OFPFW11_TP_SRC)) {
404                 uint16_t icmp_type = ntohs(ofmatch->tp_src);
405                 if (icmp_type < 0x100) {
406                     match_set_icmp_type(match, icmp_type);
407                 } else {
408                     return OFPERR_OFPBMC_BAD_FIELD;
409                 }
410             }
411             if (!(wc & OFPFW11_TP_DST)) {
412                 uint16_t icmp_code = ntohs(ofmatch->tp_dst);
413                 if (icmp_code < 0x100) {
414                     match_set_icmp_code(match, icmp_code);
415                 } else {
416                     return OFPERR_OFPBMC_BAD_FIELD;
417                 }
418             }
419             break;
420
421         case IPPROTO_TCP:
422         case IPPROTO_UDP:
423             if (!(wc & (OFPFW11_TP_SRC))) {
424                 match_set_tp_src(match, ofmatch->tp_src);
425             }
426             if (!(wc & (OFPFW11_TP_DST))) {
427                 match_set_tp_dst(match, ofmatch->tp_dst);
428             }
429             break;
430
431         case IPPROTO_SCTP:
432             /* We don't support SCTP and it seems that we should tell the
433              * controller, since OF1.1 implementations are supposed to. */
434             return OFPERR_OFPBMC_BAD_FIELD;
435
436         default:
437             /* OF1.1 says explicitly to ignore this. */
438             break;
439         }
440     }
441
442     if (eth_type_mpls(match->flow.dl_type)) {
443         enum { OFPFW11_MPLS_ALL = OFPFW11_MPLS_LABEL | OFPFW11_MPLS_TC };
444
445         if ((wc & OFPFW11_MPLS_ALL) != OFPFW11_MPLS_ALL) {
446             /* MPLS not supported. */
447             return OFPERR_OFPBMC_BAD_TAG;
448         }
449     }
450
451     match_set_metadata_masked(match, ofmatch->metadata,
452                               ~ofmatch->metadata_mask);
453
454     return 0;
455 }
456
457 /* Convert 'match' into the OpenFlow 1.1 match structure 'ofmatch'. */
458 void
459 ofputil_match_to_ofp11_match(const struct match *match,
460                              struct ofp11_match *ofmatch)
461 {
462     uint32_t wc = 0;
463     int i;
464
465     memset(ofmatch, 0, sizeof *ofmatch);
466     ofmatch->omh.type = htons(OFPMT_STANDARD);
467     ofmatch->omh.length = htons(OFPMT11_STANDARD_LENGTH);
468
469     if (!match->wc.masks.in_port) {
470         wc |= OFPFW11_IN_PORT;
471     } else {
472         ofmatch->in_port = ofputil_port_to_ofp11(match->flow.in_port);
473     }
474
475     memcpy(ofmatch->dl_src, match->flow.dl_src, ETH_ADDR_LEN);
476     for (i = 0; i < ETH_ADDR_LEN; i++) {
477         ofmatch->dl_src_mask[i] = ~match->wc.masks.dl_src[i];
478     }
479
480     memcpy(ofmatch->dl_dst, match->flow.dl_dst, ETH_ADDR_LEN);
481     for (i = 0; i < ETH_ADDR_LEN; i++) {
482         ofmatch->dl_dst_mask[i] = ~match->wc.masks.dl_dst[i];
483     }
484
485     if (match->wc.masks.vlan_tci == htons(0)) {
486         wc |= OFPFW11_DL_VLAN | OFPFW11_DL_VLAN_PCP;
487     } else if (match->wc.masks.vlan_tci & htons(VLAN_CFI)
488                && !(match->flow.vlan_tci & htons(VLAN_CFI))) {
489         ofmatch->dl_vlan = htons(OFPVID11_NONE);
490         wc |= OFPFW11_DL_VLAN_PCP;
491     } else {
492         if (!(match->wc.masks.vlan_tci & htons(VLAN_VID_MASK))) {
493             ofmatch->dl_vlan = htons(OFPVID11_ANY);
494         } else {
495             ofmatch->dl_vlan = htons(vlan_tci_to_vid(match->flow.vlan_tci));
496         }
497
498         if (!(match->wc.masks.vlan_tci & htons(VLAN_PCP_MASK))) {
499             wc |= OFPFW11_DL_VLAN_PCP;
500         } else {
501             ofmatch->dl_vlan_pcp = vlan_tci_to_pcp(match->flow.vlan_tci);
502         }
503     }
504
505     if (!match->wc.masks.dl_type) {
506         wc |= OFPFW11_DL_TYPE;
507     } else {
508         ofmatch->dl_type = ofputil_dl_type_to_openflow(match->flow.dl_type);
509     }
510
511     if (!(match->wc.masks.nw_tos & IP_DSCP_MASK)) {
512         wc |= OFPFW11_NW_TOS;
513     } else {
514         ofmatch->nw_tos = match->flow.nw_tos & IP_DSCP_MASK;
515     }
516
517     if (!match->wc.masks.nw_proto) {
518         wc |= OFPFW11_NW_PROTO;
519     } else {
520         ofmatch->nw_proto = match->flow.nw_proto;
521     }
522
523     ofmatch->nw_src = match->flow.nw_src;
524     ofmatch->nw_src_mask = ~match->wc.masks.nw_src;
525     ofmatch->nw_dst = match->flow.nw_dst;
526     ofmatch->nw_dst_mask = ~match->wc.masks.nw_dst;
527
528     if (!match->wc.masks.tp_src) {
529         wc |= OFPFW11_TP_SRC;
530     } else {
531         ofmatch->tp_src = match->flow.tp_src;
532     }
533
534     if (!match->wc.masks.tp_dst) {
535         wc |= OFPFW11_TP_DST;
536     } else {
537         ofmatch->tp_dst = match->flow.tp_dst;
538     }
539
540     /* MPLS not supported. */
541     wc |= OFPFW11_MPLS_LABEL;
542     wc |= OFPFW11_MPLS_TC;
543
544     ofmatch->metadata = match->flow.metadata;
545     ofmatch->metadata_mask = ~match->wc.masks.metadata;
546
547     ofmatch->wildcards = htonl(wc);
548 }
549
550 /* Given a 'dl_type' value in the format used in struct flow, returns the
551  * corresponding 'dl_type' value for use in an ofp10_match or ofp11_match
552  * structure. */
553 ovs_be16
554 ofputil_dl_type_to_openflow(ovs_be16 flow_dl_type)
555 {
556     return (flow_dl_type == htons(FLOW_DL_TYPE_NONE)
557             ? htons(OFP_DL_TYPE_NOT_ETH_TYPE)
558             : flow_dl_type);
559 }
560
561 /* Given a 'dl_type' value in the format used in an ofp10_match or ofp11_match
562  * structure, returns the corresponding 'dl_type' value for use in struct
563  * flow. */
564 ovs_be16
565 ofputil_dl_type_from_openflow(ovs_be16 ofp_dl_type)
566 {
567     return (ofp_dl_type == htons(OFP_DL_TYPE_NOT_ETH_TYPE)
568             ? htons(FLOW_DL_TYPE_NONE)
569             : ofp_dl_type);
570 }
571 \f
572 /* Protocols. */
573
574 struct proto_abbrev {
575     enum ofputil_protocol protocol;
576     const char *name;
577 };
578
579 /* Most users really don't care about some of the differences between
580  * protocols.  These abbreviations help with that. */
581 static const struct proto_abbrev proto_abbrevs[] = {
582     { OFPUTIL_P_ANY,          "any" },
583     { OFPUTIL_P_OF10_STD_ANY, "OpenFlow10" },
584     { OFPUTIL_P_OF10_NXM_ANY, "NXM" },
585     { OFPUTIL_P_ANY_OXM,      "OXM" },
586 };
587 #define N_PROTO_ABBREVS ARRAY_SIZE(proto_abbrevs)
588
589 enum ofputil_protocol ofputil_flow_dump_protocols[] = {
590     OFPUTIL_P_OF13_OXM,
591     OFPUTIL_P_OF12_OXM,
592     OFPUTIL_P_OF10_NXM,
593     OFPUTIL_P_OF10_STD,
594 };
595 size_t ofputil_n_flow_dump_protocols = ARRAY_SIZE(ofputil_flow_dump_protocols);
596
597 /* Returns the set of ofputil_protocols that are supported with the given
598  * OpenFlow 'version'.  'version' should normally be an 8-bit OpenFlow version
599  * identifier (e.g. 0x01 for OpenFlow 1.0, 0x02 for OpenFlow 1.1).  Returns 0
600  * if 'version' is not supported or outside the valid range.  */
601 enum ofputil_protocol
602 ofputil_protocols_from_ofp_version(enum ofp_version version)
603 {
604     switch (version) {
605     case OFP10_VERSION:
606         return OFPUTIL_P_OF10_STD_ANY | OFPUTIL_P_OF10_NXM_ANY;
607     case OFP12_VERSION:
608         return OFPUTIL_P_OF12_OXM;
609     case OFP13_VERSION:
610         return OFPUTIL_P_OF13_OXM;
611     case OFP11_VERSION:
612     default:
613         return 0;
614     }
615 }
616
617 /* Returns the ofputil_protocol that is initially in effect on an OpenFlow
618  * connection that has negotiated the given 'version'.  'version' should
619  * normally be an 8-bit OpenFlow version identifier (e.g. 0x01 for OpenFlow
620  * 1.0, 0x02 for OpenFlow 1.1).  Returns 0 if 'version' is not supported or
621  * outside the valid range.  */
622 enum ofputil_protocol
623 ofputil_protocol_from_ofp_version(enum ofp_version version)
624 {
625     return rightmost_1bit(ofputil_protocols_from_ofp_version(version));
626 }
627
628 /* Returns the OpenFlow protocol version number (e.g. OFP10_VERSION,
629  * etc.) that corresponds to 'protocol'. */
630 enum ofp_version
631 ofputil_protocol_to_ofp_version(enum ofputil_protocol protocol)
632 {
633     switch (protocol) {
634     case OFPUTIL_P_OF10_STD:
635     case OFPUTIL_P_OF10_STD_TID:
636     case OFPUTIL_P_OF10_NXM:
637     case OFPUTIL_P_OF10_NXM_TID:
638         return OFP10_VERSION;
639     case OFPUTIL_P_OF12_OXM:
640         return OFP12_VERSION;
641     case OFPUTIL_P_OF13_OXM:
642         return OFP13_VERSION;
643     }
644
645     NOT_REACHED();
646 }
647
648 /* Returns a bitmap of OpenFlow versions that are supported by at
649  * least one of the 'protocols'. */
650 uint32_t
651 ofputil_protocols_to_version_bitmap(enum ofputil_protocol protocols)
652 {
653     uint32_t bitmap = 0;
654
655     for (; protocols; protocols = zero_rightmost_1bit(protocols)) {
656         enum ofputil_protocol protocol = rightmost_1bit(protocols);
657
658         bitmap |= 1u << ofputil_protocol_to_ofp_version(protocol);
659     }
660
661     return bitmap;
662 }
663
664 /* Returns the set of protocols that are supported on top of the
665  * OpenFlow versions included in 'bitmap'. */
666 enum ofputil_protocol
667 ofputil_protocols_from_version_bitmap(uint32_t bitmap)
668 {
669     enum ofputil_protocol protocols = 0;
670
671     for (; bitmap; bitmap = zero_rightmost_1bit(bitmap)) {
672         enum ofp_version version = rightmost_1bit_idx(bitmap);
673
674         protocols |= ofputil_protocols_from_ofp_version(version);
675     }
676
677     return protocols;
678 }
679
680 /* Returns true if 'protocol' is a single OFPUTIL_P_* value, false
681  * otherwise. */
682 bool
683 ofputil_protocol_is_valid(enum ofputil_protocol protocol)
684 {
685     return protocol & OFPUTIL_P_ANY && is_pow2(protocol);
686 }
687
688 /* Returns the equivalent of 'protocol' with the Nicira flow_mod_table_id
689  * extension turned on or off if 'enable' is true or false, respectively.
690  *
691  * This extension is only useful for protocols whose "standard" version does
692  * not allow specific tables to be modified.  In particular, this is true of
693  * OpenFlow 1.0.  In later versions of OpenFlow, a flow_mod request always
694  * specifies a table ID and so there is no need for such an extension.  When
695  * 'protocol' is such a protocol that doesn't need a flow_mod_table_id
696  * extension, this function just returns its 'protocol' argument unchanged
697  * regardless of the value of 'enable'.  */
698 enum ofputil_protocol
699 ofputil_protocol_set_tid(enum ofputil_protocol protocol, bool enable)
700 {
701     switch (protocol) {
702     case OFPUTIL_P_OF10_STD:
703     case OFPUTIL_P_OF10_STD_TID:
704         return enable ? OFPUTIL_P_OF10_STD_TID : OFPUTIL_P_OF10_STD;
705
706     case OFPUTIL_P_OF10_NXM:
707     case OFPUTIL_P_OF10_NXM_TID:
708         return enable ? OFPUTIL_P_OF10_NXM_TID : OFPUTIL_P_OF10_NXM;
709
710     case OFPUTIL_P_OF12_OXM:
711         return OFPUTIL_P_OF12_OXM;
712
713     case OFPUTIL_P_OF13_OXM:
714         return OFPUTIL_P_OF13_OXM;
715
716     default:
717         NOT_REACHED();
718     }
719 }
720
721 /* Returns the "base" version of 'protocol'.  That is, if 'protocol' includes
722  * some extension to a standard protocol version, the return value is the
723  * standard version of that protocol without any extension.  If 'protocol' is a
724  * standard protocol version, returns 'protocol' unchanged. */
725 enum ofputil_protocol
726 ofputil_protocol_to_base(enum ofputil_protocol protocol)
727 {
728     return ofputil_protocol_set_tid(protocol, false);
729 }
730
731 /* Returns 'new_base' with any extensions taken from 'cur'. */
732 enum ofputil_protocol
733 ofputil_protocol_set_base(enum ofputil_protocol cur,
734                           enum ofputil_protocol new_base)
735 {
736     bool tid = (cur & OFPUTIL_P_TID) != 0;
737
738     switch (new_base) {
739     case OFPUTIL_P_OF10_STD:
740     case OFPUTIL_P_OF10_STD_TID:
741         return ofputil_protocol_set_tid(OFPUTIL_P_OF10_STD, tid);
742
743     case OFPUTIL_P_OF10_NXM:
744     case OFPUTIL_P_OF10_NXM_TID:
745         return ofputil_protocol_set_tid(OFPUTIL_P_OF10_NXM, tid);
746
747     case OFPUTIL_P_OF12_OXM:
748         return ofputil_protocol_set_tid(OFPUTIL_P_OF12_OXM, tid);
749
750     case OFPUTIL_P_OF13_OXM:
751         return ofputil_protocol_set_tid(OFPUTIL_P_OF13_OXM, tid);
752
753     default:
754         NOT_REACHED();
755     }
756 }
757
758 /* Returns a string form of 'protocol', if a simple form exists (that is, if
759  * 'protocol' is either a single protocol or it is a combination of protocols
760  * that have a single abbreviation).  Otherwise, returns NULL. */
761 const char *
762 ofputil_protocol_to_string(enum ofputil_protocol protocol)
763 {
764     const struct proto_abbrev *p;
765
766     /* Use a "switch" statement for single-bit names so that we get a compiler
767      * warning if we forget any. */
768     switch (protocol) {
769     case OFPUTIL_P_OF10_NXM:
770         return "NXM-table_id";
771
772     case OFPUTIL_P_OF10_NXM_TID:
773         return "NXM+table_id";
774
775     case OFPUTIL_P_OF10_STD:
776         return "OpenFlow10-table_id";
777
778     case OFPUTIL_P_OF10_STD_TID:
779         return "OpenFlow10+table_id";
780
781     case OFPUTIL_P_OF12_OXM:
782         return "OXM-OpenFlow12";
783
784     case OFPUTIL_P_OF13_OXM:
785         return "OXM-OpenFlow13";
786     }
787
788     /* Check abbreviations. */
789     for (p = proto_abbrevs; p < &proto_abbrevs[N_PROTO_ABBREVS]; p++) {
790         if (protocol == p->protocol) {
791             return p->name;
792         }
793     }
794
795     return NULL;
796 }
797
798 /* Returns a string that represents 'protocols'.  The return value might be a
799  * comma-separated list if 'protocols' doesn't have a simple name.  The return
800  * value is "none" if 'protocols' is 0.
801  *
802  * The caller must free the returned string (with free()). */
803 char *
804 ofputil_protocols_to_string(enum ofputil_protocol protocols)
805 {
806     struct ds s;
807
808     ovs_assert(!(protocols & ~OFPUTIL_P_ANY));
809     if (protocols == 0) {
810         return xstrdup("none");
811     }
812
813     ds_init(&s);
814     while (protocols) {
815         const struct proto_abbrev *p;
816         int i;
817
818         if (s.length) {
819             ds_put_char(&s, ',');
820         }
821
822         for (p = proto_abbrevs; p < &proto_abbrevs[N_PROTO_ABBREVS]; p++) {
823             if ((protocols & p->protocol) == p->protocol) {
824                 ds_put_cstr(&s, p->name);
825                 protocols &= ~p->protocol;
826                 goto match;
827             }
828         }
829
830         for (i = 0; i < CHAR_BIT * sizeof(enum ofputil_protocol); i++) {
831             enum ofputil_protocol bit = 1u << i;
832
833             if (protocols & bit) {
834                 ds_put_cstr(&s, ofputil_protocol_to_string(bit));
835                 protocols &= ~bit;
836                 goto match;
837             }
838         }
839         NOT_REACHED();
840
841     match: ;
842     }
843     return ds_steal_cstr(&s);
844 }
845
846 static enum ofputil_protocol
847 ofputil_protocol_from_string__(const char *s, size_t n)
848 {
849     const struct proto_abbrev *p;
850     int i;
851
852     for (i = 0; i < CHAR_BIT * sizeof(enum ofputil_protocol); i++) {
853         enum ofputil_protocol bit = 1u << i;
854         const char *name = ofputil_protocol_to_string(bit);
855
856         if (name && n == strlen(name) && !strncasecmp(s, name, n)) {
857             return bit;
858         }
859     }
860
861     for (p = proto_abbrevs; p < &proto_abbrevs[N_PROTO_ABBREVS]; p++) {
862         if (n == strlen(p->name) && !strncasecmp(s, p->name, n)) {
863             return p->protocol;
864         }
865     }
866
867     return 0;
868 }
869
870 /* Returns the nonempty set of protocols represented by 's', which can be a
871  * single protocol name or abbreviation or a comma-separated list of them.
872  *
873  * Aborts the program with an error message if 's' is invalid. */
874 enum ofputil_protocol
875 ofputil_protocols_from_string(const char *s)
876 {
877     const char *orig_s = s;
878     enum ofputil_protocol protocols;
879
880     protocols = 0;
881     while (*s) {
882         enum ofputil_protocol p;
883         size_t n;
884
885         n = strcspn(s, ",");
886         if (n == 0) {
887             s++;
888             continue;
889         }
890
891         p = ofputil_protocol_from_string__(s, n);
892         if (!p) {
893             ovs_fatal(0, "%.*s: unknown flow protocol", (int) n, s);
894         }
895         protocols |= p;
896
897         s += n;
898     }
899
900     if (!protocols) {
901         ovs_fatal(0, "%s: no flow protocol specified", orig_s);
902     }
903     return protocols;
904 }
905
906 static int
907 ofputil_version_from_string(const char *s)
908 {
909     if (!strcasecmp(s, "OpenFlow10")) {
910         return OFP10_VERSION;
911     }
912     if (!strcasecmp(s, "OpenFlow11")) {
913         return OFP11_VERSION;
914     }
915     if (!strcasecmp(s, "OpenFlow12")) {
916         return OFP12_VERSION;
917     }
918     if (!strcasecmp(s, "OpenFlow13")) {
919         return OFP13_VERSION;
920     }
921     return 0;
922 }
923
924 static bool
925 is_delimiter(char c)
926 {
927     return isspace(c) || c == ',';
928 }
929
930 uint32_t
931 ofputil_versions_from_string(const char *s)
932 {
933     size_t i = 0;
934     uint32_t bitmap = 0;
935
936     while (s[i]) {
937         size_t j;
938         int version;
939         char *key;
940
941         if (is_delimiter(s[i])) {
942             i++;
943             continue;
944         }
945         j = 0;
946         while (s[i + j] && !is_delimiter(s[i + j])) {
947             j++;
948         }
949         key = xmemdup0(s + i, j);
950         version = ofputil_version_from_string(key);
951         if (!version) {
952             VLOG_FATAL("Unknown OpenFlow version: \"%s\"", key);
953         }
954         free(key);
955         bitmap |= 1u << version;
956         i += j;
957     }
958
959     return bitmap;
960 }
961
962 uint32_t
963 ofputil_versions_from_strings(char ** const s, size_t count)
964 {
965     uint32_t bitmap = 0;
966
967     while (count--) {
968         int version = ofputil_version_from_string(s[count]);
969         if (!version) {
970             VLOG_WARN("Unknown OpenFlow version: \"%s\"", s[count]);
971         } else {
972             bitmap |= 1u << version;
973         }
974     }
975
976     return bitmap;
977 }
978
979 const char *
980 ofputil_version_to_string(enum ofp_version ofp_version)
981 {
982     switch (ofp_version) {
983     case OFP10_VERSION:
984         return "OpenFlow10";
985     case OFP11_VERSION:
986         return "OpenFlow11";
987     case OFP12_VERSION:
988         return "OpenFlow12";
989     case OFP13_VERSION:
990         return "OpenFlow13";
991     default:
992         NOT_REACHED();
993     }
994 }
995
996 bool
997 ofputil_packet_in_format_is_valid(enum nx_packet_in_format packet_in_format)
998 {
999     switch (packet_in_format) {
1000     case NXPIF_OPENFLOW10:
1001     case NXPIF_NXM:
1002         return true;
1003     }
1004
1005     return false;
1006 }
1007
1008 const char *
1009 ofputil_packet_in_format_to_string(enum nx_packet_in_format packet_in_format)
1010 {
1011     switch (packet_in_format) {
1012     case NXPIF_OPENFLOW10:
1013         return "openflow10";
1014     case NXPIF_NXM:
1015         return "nxm";
1016     default:
1017         NOT_REACHED();
1018     }
1019 }
1020
1021 int
1022 ofputil_packet_in_format_from_string(const char *s)
1023 {
1024     return (!strcmp(s, "openflow10") ? NXPIF_OPENFLOW10
1025             : !strcmp(s, "nxm") ? NXPIF_NXM
1026             : -1);
1027 }
1028
1029 static bool
1030 regs_fully_wildcarded(const struct flow_wildcards *wc)
1031 {
1032     int i;
1033
1034     for (i = 0; i < FLOW_N_REGS; i++) {
1035         if (wc->masks.regs[i] != 0) {
1036             return false;
1037         }
1038     }
1039     return true;
1040 }
1041
1042 static bool
1043 tun_parms_fully_wildcarded(const struct flow_wildcards *wc)
1044 {
1045     return (!wc->masks.tunnel.ip_src &&
1046             !wc->masks.tunnel.ip_dst &&
1047             !wc->masks.tunnel.ip_ttl &&
1048             !wc->masks.tunnel.ip_tos &&
1049             !wc->masks.tunnel.flags);
1050 }
1051
1052 /* Returns a bit-mask of ofputil_protocols that can be used for sending 'match'
1053  * to a switch (e.g. to add or remove a flow).  Only NXM can handle tunnel IDs,
1054  * registers, or fixing the Ethernet multicast bit.  Otherwise, it's better to
1055  * use OpenFlow 1.0 protocol for backward compatibility. */
1056 enum ofputil_protocol
1057 ofputil_usable_protocols(const struct match *match)
1058 {
1059     const struct flow_wildcards *wc = &match->wc;
1060
1061     BUILD_ASSERT_DECL(FLOW_WC_SEQ == 19);
1062
1063     /* tunnel params other than tun_id can't be sent in a flow_mod */
1064     if (!tun_parms_fully_wildcarded(wc)) {
1065         return OFPUTIL_P_NONE;
1066     }
1067
1068     /* skb_mark and skb_priority can't be sent in a flow_mod */
1069     if (wc->masks.skb_mark || wc->masks.skb_priority) {
1070         return OFPUTIL_P_NONE;
1071     }
1072
1073     /* NXM, OXM, and OF1.1 support bitwise matching on ethernet addresses. */
1074     if (!eth_mask_is_exact(wc->masks.dl_src)
1075         && !eth_addr_is_zero(wc->masks.dl_src)) {
1076         return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1077             | OFPUTIL_P_OF13_OXM;
1078     }
1079     if (!eth_mask_is_exact(wc->masks.dl_dst)
1080         && !eth_addr_is_zero(wc->masks.dl_dst)) {
1081         return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1082             | OFPUTIL_P_OF13_OXM;
1083     }
1084
1085     /* NXM, OXM, and OF1.1+ support matching metadata. */
1086     if (wc->masks.metadata != htonll(0)) {
1087         return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1088             | OFPUTIL_P_OF13_OXM;
1089     }
1090
1091     /* NXM and OXM support matching ARP hardware addresses. */
1092     if (!eth_addr_is_zero(wc->masks.arp_sha) ||
1093         !eth_addr_is_zero(wc->masks.arp_tha)) {
1094         return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1095             | OFPUTIL_P_OF13_OXM;
1096     }
1097
1098     /* NXM and OXM support matching IPv6 traffic. */
1099     if (match->flow.dl_type == htons(ETH_TYPE_IPV6)) {
1100         return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1101             | OFPUTIL_P_OF13_OXM;
1102     }
1103
1104     /* NXM and OXM support matching registers. */
1105     if (!regs_fully_wildcarded(wc)) {
1106         return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1107             | OFPUTIL_P_OF13_OXM;
1108     }
1109
1110     /* NXM and OXM support matching tun_id. */
1111     if (wc->masks.tunnel.tun_id != htonll(0)) {
1112         return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1113             | OFPUTIL_P_OF13_OXM;
1114     }
1115
1116     /* NXM and OXM support matching fragments. */
1117     if (wc->masks.nw_frag) {
1118         return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1119             | OFPUTIL_P_OF13_OXM;
1120     }
1121
1122     /* NXM and OXM support matching IPv6 flow label. */
1123     if (wc->masks.ipv6_label) {
1124         return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1125             | OFPUTIL_P_OF13_OXM;
1126     }
1127
1128     /* NXM and OXM support matching IP ECN bits. */
1129     if (wc->masks.nw_tos & IP_ECN_MASK) {
1130         return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1131             | OFPUTIL_P_OF13_OXM;
1132     }
1133
1134     /* NXM and OXM support matching IP TTL/hop limit. */
1135     if (wc->masks.nw_ttl) {
1136         return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1137             | OFPUTIL_P_OF13_OXM;
1138     }
1139
1140     /* NXM and OXM support non-CIDR IPv4 address masks. */
1141     if (!ip_is_cidr(wc->masks.nw_src) || !ip_is_cidr(wc->masks.nw_dst)) {
1142         return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1143             | OFPUTIL_P_OF13_OXM;
1144     }
1145
1146     /* NXM and OXM support bitwise matching on transport port. */
1147     if ((wc->masks.tp_src && wc->masks.tp_src != htons(UINT16_MAX)) ||
1148         (wc->masks.tp_dst && wc->masks.tp_dst != htons(UINT16_MAX))) {
1149         return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1150             | OFPUTIL_P_OF13_OXM;
1151     }
1152
1153     /* NXM and OF1.1+ support matching MPLS label */
1154     if (wc->masks.mpls_lse & htonl(MPLS_LABEL_MASK)) {
1155         return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1156             | OFPUTIL_P_OF13_OXM;
1157     }
1158
1159     /* NXM and OF1.1+ support matching MPLS TC */
1160     if (wc->masks.mpls_lse & htonl(MPLS_TC_MASK)) {
1161         return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1162             | OFPUTIL_P_OF13_OXM;
1163     }
1164
1165     /* NXM and OF1.3+ support matching MPLS stack flag */
1166     /* Allow for OF1.2 as there doesn't seem to be a
1167      * particularly good reason not to */
1168     if (wc->masks.mpls_lse & htonl(MPLS_BOS_MASK)) {
1169         return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1170             | OFPUTIL_P_OF13_OXM;
1171     }
1172
1173     /* Other formats can express this rule. */
1174     return OFPUTIL_P_ANY;
1175 }
1176
1177 void
1178 ofputil_format_version(struct ds *msg, enum ofp_version version)
1179 {
1180     ds_put_format(msg, "0x%02x", version);
1181 }
1182
1183 void
1184 ofputil_format_version_name(struct ds *msg, enum ofp_version version)
1185 {
1186     ds_put_cstr(msg, ofputil_version_to_string(version));
1187 }
1188
1189 static void
1190 ofputil_format_version_bitmap__(struct ds *msg, uint32_t bitmap,
1191                                 void (*format_version)(struct ds *msg,
1192                                                        enum ofp_version))
1193 {
1194     while (bitmap) {
1195         format_version(msg, raw_ctz(bitmap));
1196         bitmap = zero_rightmost_1bit(bitmap);
1197         if (bitmap) {
1198             ds_put_cstr(msg, ", ");
1199         }
1200     }
1201 }
1202
1203 void
1204 ofputil_format_version_bitmap(struct ds *msg, uint32_t bitmap)
1205 {
1206     ofputil_format_version_bitmap__(msg, bitmap, ofputil_format_version);
1207 }
1208
1209 void
1210 ofputil_format_version_bitmap_names(struct ds *msg, uint32_t bitmap)
1211 {
1212     ofputil_format_version_bitmap__(msg, bitmap, ofputil_format_version_name);
1213 }
1214
1215 static bool
1216 ofputil_decode_hello_bitmap(const struct ofp_hello_elem_header *oheh,
1217                             uint32_t *allowed_versionsp)
1218 {
1219     uint16_t bitmap_len = ntohs(oheh->length) - sizeof *oheh;
1220     const ovs_be32 *bitmap = (const ovs_be32 *) (oheh + 1);
1221     uint32_t allowed_versions;
1222
1223     if (!bitmap_len || bitmap_len % sizeof *bitmap) {
1224         return false;
1225     }
1226
1227     /* Only use the first 32-bit element of the bitmap as that is all the
1228      * current implementation supports.  Subsequent elements are ignored which
1229      * should have no effect on session negotiation until Open vSwtich supports
1230      * wire-protocol versions greater than 31.
1231      */
1232     allowed_versions = ntohl(bitmap[0]);
1233
1234     if (allowed_versions & 1) {
1235         /* There's no OpenFlow version 0. */
1236         VLOG_WARN_RL(&bad_ofmsg_rl, "peer claims to support invalid OpenFlow "
1237                      "version 0x00");
1238         allowed_versions &= ~1u;
1239     }
1240
1241     if (!allowed_versions) {
1242         VLOG_WARN_RL(&bad_ofmsg_rl, "peer does not support any OpenFlow "
1243                      "version (between 0x01 and 0x1f)");
1244         return false;
1245     }
1246
1247     *allowed_versionsp = allowed_versions;
1248     return true;
1249 }
1250
1251 static uint32_t
1252 version_bitmap_from_version(uint8_t ofp_version)
1253 {
1254     return ((ofp_version < 32 ? 1u << ofp_version : 0) - 1) << 1;
1255 }
1256
1257 /* Decodes OpenFlow OFPT_HELLO message 'oh', storing into '*allowed_versions'
1258  * the set of OpenFlow versions for which 'oh' announces support.
1259  *
1260  * Because of how OpenFlow defines OFPT_HELLO messages, this function is always
1261  * successful, and thus '*allowed_versions' is always initialized.  However, it
1262  * returns false if 'oh' contains some data that could not be fully understood,
1263  * true if 'oh' was completely parsed. */
1264 bool
1265 ofputil_decode_hello(const struct ofp_header *oh, uint32_t *allowed_versions)
1266 {
1267     struct ofpbuf msg;
1268     bool ok = true;
1269
1270     ofpbuf_use_const(&msg, oh, ntohs(oh->length));
1271     ofpbuf_pull(&msg, sizeof *oh);
1272
1273     *allowed_versions = version_bitmap_from_version(oh->version);
1274     while (msg.size) {
1275         const struct ofp_hello_elem_header *oheh;
1276         unsigned int len;
1277
1278         if (msg.size < sizeof *oheh) {
1279             return false;
1280         }
1281
1282         oheh = msg.data;
1283         len = ntohs(oheh->length);
1284         if (len < sizeof *oheh || !ofpbuf_try_pull(&msg, ROUND_UP(len, 8))) {
1285             return false;
1286         }
1287
1288         if (oheh->type != htons(OFPHET_VERSIONBITMAP)
1289             || !ofputil_decode_hello_bitmap(oheh, allowed_versions)) {
1290             ok = false;
1291         }
1292     }
1293
1294     return ok;
1295 }
1296
1297 /* Returns true if 'allowed_versions' needs to be accompanied by a version
1298  * bitmap to be correctly expressed in an OFPT_HELLO message. */
1299 static inline bool
1300 should_send_version_bitmap(uint32_t allowed_versions)
1301 {
1302     return !is_pow2((allowed_versions >> 1) + 1);
1303 }
1304
1305 /* Create an OFPT_HELLO message that expresses support for the OpenFlow
1306  * versions in the 'allowed_versions' bitmaps and returns the message. */
1307 struct ofpbuf *
1308 ofputil_encode_hello(uint32_t allowed_versions)
1309 {
1310     enum ofp_version ofp_version;
1311     struct ofpbuf *msg;
1312
1313     ofp_version = leftmost_1bit_idx(allowed_versions);
1314     msg = ofpraw_alloc(OFPRAW_OFPT_HELLO, ofp_version, 0);
1315
1316     if (should_send_version_bitmap(allowed_versions)) {
1317         struct ofp_hello_elem_header *oheh;
1318         uint16_t map_len;
1319
1320         map_len = sizeof allowed_versions;
1321         oheh = ofpbuf_put_zeros(msg, ROUND_UP(map_len + sizeof *oheh, 8));
1322         oheh->type = htons(OFPHET_VERSIONBITMAP);
1323         oheh->length = htons(map_len + sizeof *oheh);
1324         *(ovs_be32 *)(oheh + 1) = htonl(allowed_versions);
1325
1326         ofpmsg_update_length(msg);
1327     }
1328
1329     return msg;
1330 }
1331
1332 /* Returns an OpenFlow message that, sent on an OpenFlow connection whose
1333  * protocol is 'current', at least partly transitions the protocol to 'want'.
1334  * Stores in '*next' the protocol that will be in effect on the OpenFlow
1335  * connection if the switch processes the returned message correctly.  (If
1336  * '*next != want' then the caller will have to iterate.)
1337  *
1338  * If 'current == want', or if it is not possible to transition from 'current'
1339  * to 'want' (because, for example, 'current' and 'want' use different OpenFlow
1340  * protocol versions), returns NULL and stores 'current' in '*next'. */
1341 struct ofpbuf *
1342 ofputil_encode_set_protocol(enum ofputil_protocol current,
1343                             enum ofputil_protocol want,
1344                             enum ofputil_protocol *next)
1345 {
1346     enum ofp_version cur_version, want_version;
1347     enum ofputil_protocol cur_base, want_base;
1348     bool cur_tid, want_tid;
1349
1350     cur_version = ofputil_protocol_to_ofp_version(current);
1351     want_version = ofputil_protocol_to_ofp_version(want);
1352     if (cur_version != want_version) {
1353         *next = current;
1354         return NULL;
1355     }
1356
1357     cur_base = ofputil_protocol_to_base(current);
1358     want_base = ofputil_protocol_to_base(want);
1359     if (cur_base != want_base) {
1360         *next = ofputil_protocol_set_base(current, want_base);
1361
1362         switch (want_base) {
1363         case OFPUTIL_P_OF10_NXM:
1364             return ofputil_encode_nx_set_flow_format(NXFF_NXM);
1365
1366         case OFPUTIL_P_OF10_STD:
1367             return ofputil_encode_nx_set_flow_format(NXFF_OPENFLOW10);
1368
1369         case OFPUTIL_P_OF12_OXM:
1370         case OFPUTIL_P_OF13_OXM:
1371             /* There are only one of each OpenFlow 1.2+ protocols and we already
1372              * verified above that we're not trying to change versions. */
1373             NOT_REACHED();
1374
1375         case OFPUTIL_P_OF10_STD_TID:
1376         case OFPUTIL_P_OF10_NXM_TID:
1377             NOT_REACHED();
1378         }
1379     }
1380
1381     cur_tid = (current & OFPUTIL_P_TID) != 0;
1382     want_tid = (want & OFPUTIL_P_TID) != 0;
1383     if (cur_tid != want_tid) {
1384         *next = ofputil_protocol_set_tid(current, want_tid);
1385         return ofputil_make_flow_mod_table_id(want_tid);
1386     }
1387
1388     ovs_assert(current == want);
1389
1390     *next = current;
1391     return NULL;
1392 }
1393
1394 /* Returns an NXT_SET_FLOW_FORMAT message that can be used to set the flow
1395  * format to 'nxff'.  */
1396 struct ofpbuf *
1397 ofputil_encode_nx_set_flow_format(enum nx_flow_format nxff)
1398 {
1399     struct nx_set_flow_format *sff;
1400     struct ofpbuf *msg;
1401
1402     ovs_assert(ofputil_nx_flow_format_is_valid(nxff));
1403
1404     msg = ofpraw_alloc(OFPRAW_NXT_SET_FLOW_FORMAT, OFP10_VERSION, 0);
1405     sff = ofpbuf_put_zeros(msg, sizeof *sff);
1406     sff->format = htonl(nxff);
1407
1408     return msg;
1409 }
1410
1411 /* Returns the base protocol if 'flow_format' is a valid NXFF_* value, false
1412  * otherwise. */
1413 enum ofputil_protocol
1414 ofputil_nx_flow_format_to_protocol(enum nx_flow_format flow_format)
1415 {
1416     switch (flow_format) {
1417     case NXFF_OPENFLOW10:
1418         return OFPUTIL_P_OF10_STD;
1419
1420     case NXFF_NXM:
1421         return OFPUTIL_P_OF10_NXM;
1422
1423     default:
1424         return 0;
1425     }
1426 }
1427
1428 /* Returns true if 'flow_format' is a valid NXFF_* value, false otherwise. */
1429 bool
1430 ofputil_nx_flow_format_is_valid(enum nx_flow_format flow_format)
1431 {
1432     return ofputil_nx_flow_format_to_protocol(flow_format) != 0;
1433 }
1434
1435 /* Returns a string version of 'flow_format', which must be a valid NXFF_*
1436  * value. */
1437 const char *
1438 ofputil_nx_flow_format_to_string(enum nx_flow_format flow_format)
1439 {
1440     switch (flow_format) {
1441     case NXFF_OPENFLOW10:
1442         return "openflow10";
1443     case NXFF_NXM:
1444         return "nxm";
1445     default:
1446         NOT_REACHED();
1447     }
1448 }
1449
1450 struct ofpbuf *
1451 ofputil_make_set_packet_in_format(enum ofp_version ofp_version,
1452                                   enum nx_packet_in_format packet_in_format)
1453 {
1454     struct nx_set_packet_in_format *spif;
1455     struct ofpbuf *msg;
1456
1457     msg = ofpraw_alloc(OFPRAW_NXT_SET_PACKET_IN_FORMAT, ofp_version, 0);
1458     spif = ofpbuf_put_zeros(msg, sizeof *spif);
1459     spif->format = htonl(packet_in_format);
1460
1461     return msg;
1462 }
1463
1464 /* Returns an OpenFlow message that can be used to turn the flow_mod_table_id
1465  * extension on or off (according to 'flow_mod_table_id'). */
1466 struct ofpbuf *
1467 ofputil_make_flow_mod_table_id(bool flow_mod_table_id)
1468 {
1469     struct nx_flow_mod_table_id *nfmti;
1470     struct ofpbuf *msg;
1471
1472     msg = ofpraw_alloc(OFPRAW_NXT_FLOW_MOD_TABLE_ID, OFP10_VERSION, 0);
1473     nfmti = ofpbuf_put_zeros(msg, sizeof *nfmti);
1474     nfmti->set = flow_mod_table_id;
1475     return msg;
1476 }
1477
1478 /* Converts an OFPT_FLOW_MOD or NXT_FLOW_MOD message 'oh' into an abstract
1479  * flow_mod in 'fm'.  Returns 0 if successful, otherwise an OpenFlow error
1480  * code.
1481  *
1482  * Uses 'ofpacts' to store the abstract OFPACT_* version of 'oh''s actions.
1483  * The caller must initialize 'ofpacts' and retains ownership of it.
1484  * 'fm->ofpacts' will point into the 'ofpacts' buffer.
1485  *
1486  * Does not validate the flow_mod actions.  The caller should do that, with
1487  * ofpacts_check(). */
1488 enum ofperr
1489 ofputil_decode_flow_mod(struct ofputil_flow_mod *fm,
1490                         const struct ofp_header *oh,
1491                         enum ofputil_protocol protocol,
1492                         struct ofpbuf *ofpacts)
1493 {
1494     uint16_t command;
1495     struct ofpbuf b;
1496     enum ofpraw raw;
1497
1498     ofpbuf_use_const(&b, oh, ntohs(oh->length));
1499     raw = ofpraw_pull_assert(&b);
1500     if (raw == OFPRAW_OFPT11_FLOW_MOD) {
1501         /* Standard OpenFlow 1.1 flow_mod. */
1502         const struct ofp11_flow_mod *ofm;
1503         enum ofperr error;
1504
1505         ofm = ofpbuf_pull(&b, sizeof *ofm);
1506
1507         error = ofputil_pull_ofp11_match(&b, &fm->match, NULL);
1508         if (error) {
1509             return error;
1510         }
1511
1512         error = ofpacts_pull_openflow11_instructions(&b, b.size, ofpacts);
1513         if (error) {
1514             return error;
1515         }
1516
1517         /* Translate the message. */
1518         fm->priority = ntohs(ofm->priority);
1519         if (ofm->command == OFPFC_ADD) {
1520             fm->cookie = htonll(0);
1521             fm->cookie_mask = htonll(0);
1522             fm->new_cookie = ofm->cookie;
1523         } else {
1524             fm->cookie = ofm->cookie;
1525             fm->cookie_mask = ofm->cookie_mask;
1526             fm->new_cookie = htonll(UINT64_MAX);
1527         }
1528         fm->command = ofm->command;
1529         fm->table_id = ofm->table_id;
1530         fm->idle_timeout = ntohs(ofm->idle_timeout);
1531         fm->hard_timeout = ntohs(ofm->hard_timeout);
1532         fm->buffer_id = ntohl(ofm->buffer_id);
1533         error = ofputil_port_from_ofp11(ofm->out_port, &fm->out_port);
1534         if (error) {
1535             return error;
1536         }
1537         if ((ofm->command == OFPFC_DELETE
1538              || ofm->command == OFPFC_DELETE_STRICT)
1539             && ofm->out_group != htonl(OFPG_ANY)) {
1540             return OFPERR_OFPFMFC_UNKNOWN;
1541         }
1542         fm->flags = ntohs(ofm->flags);
1543     } else {
1544         if (raw == OFPRAW_OFPT10_FLOW_MOD) {
1545             /* Standard OpenFlow 1.0 flow_mod. */
1546             const struct ofp10_flow_mod *ofm;
1547             enum ofperr error;
1548
1549             /* Get the ofp10_flow_mod. */
1550             ofm = ofpbuf_pull(&b, sizeof *ofm);
1551
1552             /* Translate the rule. */
1553             ofputil_match_from_ofp10_match(&ofm->match, &fm->match);
1554             ofputil_normalize_match(&fm->match);
1555
1556             /* Now get the actions. */
1557             error = ofpacts_pull_openflow10(&b, b.size, ofpacts);
1558             if (error) {
1559                 return error;
1560             }
1561
1562             /* OpenFlow 1.0 says that exact-match rules have to have the
1563              * highest possible priority. */
1564             fm->priority = (ofm->match.wildcards & htonl(OFPFW10_ALL)
1565                             ? ntohs(ofm->priority)
1566                             : UINT16_MAX);
1567
1568             /* Translate the message. */
1569             command = ntohs(ofm->command);
1570             fm->cookie = htonll(0);
1571             fm->cookie_mask = htonll(0);
1572             fm->new_cookie = ofm->cookie;
1573             fm->idle_timeout = ntohs(ofm->idle_timeout);
1574             fm->hard_timeout = ntohs(ofm->hard_timeout);
1575             fm->buffer_id = ntohl(ofm->buffer_id);
1576             fm->out_port = ntohs(ofm->out_port);
1577             fm->flags = ntohs(ofm->flags);
1578         } else if (raw == OFPRAW_NXT_FLOW_MOD) {
1579             /* Nicira extended flow_mod. */
1580             const struct nx_flow_mod *nfm;
1581             enum ofperr error;
1582
1583             /* Dissect the message. */
1584             nfm = ofpbuf_pull(&b, sizeof *nfm);
1585             error = nx_pull_match(&b, ntohs(nfm->match_len),
1586                                   &fm->match, &fm->cookie, &fm->cookie_mask);
1587             if (error) {
1588                 return error;
1589             }
1590             error = ofpacts_pull_openflow10(&b, b.size, ofpacts);
1591             if (error) {
1592                 return error;
1593             }
1594
1595             /* Translate the message. */
1596             command = ntohs(nfm->command);
1597             if ((command & 0xff) == OFPFC_ADD && fm->cookie_mask) {
1598                 /* Flow additions may only set a new cookie, not match an
1599                  * existing cookie. */
1600                 return OFPERR_NXBRC_NXM_INVALID;
1601             }
1602             fm->priority = ntohs(nfm->priority);
1603             fm->new_cookie = nfm->cookie;
1604             fm->idle_timeout = ntohs(nfm->idle_timeout);
1605             fm->hard_timeout = ntohs(nfm->hard_timeout);
1606             fm->buffer_id = ntohl(nfm->buffer_id);
1607             fm->out_port = ntohs(nfm->out_port);
1608             fm->flags = ntohs(nfm->flags);
1609         } else {
1610             NOT_REACHED();
1611         }
1612
1613         if (fm->flags & OFPFF10_EMERG) {
1614             /* We do not support the OpenFlow 1.0 emergency flow cache, which
1615              * is not required in OpenFlow 1.0.1 and removed from OpenFlow 1.1.
1616              *
1617              * OpenFlow 1.0 specifies the error code to use when idle_timeout
1618              * or hard_timeout is nonzero.  Otherwise, there is no good error
1619              * code, so just state that the flow table is full. */
1620             return (fm->hard_timeout || fm->idle_timeout
1621                     ? OFPERR_OFPFMFC_BAD_EMERG_TIMEOUT
1622                     : OFPERR_OFPFMFC_TABLE_FULL);
1623         }
1624
1625         if (protocol & OFPUTIL_P_TID) {
1626             fm->command = command & 0xff;
1627             fm->table_id = command >> 8;
1628         } else {
1629             fm->command = command;
1630             fm->table_id = 0xff;
1631         }
1632     }
1633
1634     fm->ofpacts = ofpacts->data;
1635     fm->ofpacts_len = ofpacts->size;
1636
1637     return 0;
1638 }
1639
1640 static ovs_be16
1641 ofputil_tid_command(const struct ofputil_flow_mod *fm,
1642                     enum ofputil_protocol protocol)
1643 {
1644     return htons(protocol & OFPUTIL_P_TID
1645                  ? (fm->command & 0xff) | (fm->table_id << 8)
1646                  : fm->command);
1647 }
1648
1649 /* Converts 'fm' into an OFPT_FLOW_MOD or NXT_FLOW_MOD message according to
1650  * 'protocol' and returns the message. */
1651 struct ofpbuf *
1652 ofputil_encode_flow_mod(const struct ofputil_flow_mod *fm,
1653                         enum ofputil_protocol protocol)
1654 {
1655     struct ofpbuf *msg;
1656
1657     switch (protocol) {
1658     case OFPUTIL_P_OF12_OXM:
1659     case OFPUTIL_P_OF13_OXM: {
1660         struct ofp11_flow_mod *ofm;
1661
1662         msg = ofpraw_alloc(OFPRAW_OFPT11_FLOW_MOD, 
1663                            ofputil_protocol_to_ofp_version(protocol),
1664                            NXM_TYPICAL_LEN + fm->ofpacts_len);
1665         ofm = ofpbuf_put_zeros(msg, sizeof *ofm);
1666         if (fm->command == OFPFC_ADD) {
1667             ofm->cookie = fm->new_cookie;
1668         } else {
1669             ofm->cookie = fm->cookie;
1670         }
1671         ofm->cookie_mask = fm->cookie_mask;
1672         ofm->table_id = fm->table_id;
1673         ofm->command = fm->command;
1674         ofm->idle_timeout = htons(fm->idle_timeout);
1675         ofm->hard_timeout = htons(fm->hard_timeout);
1676         ofm->priority = htons(fm->priority);
1677         ofm->buffer_id = htonl(fm->buffer_id);
1678         ofm->out_port = ofputil_port_to_ofp11(fm->out_port);
1679         ofm->out_group = htonl(OFPG11_ANY);
1680         ofm->flags = htons(fm->flags);
1681         oxm_put_match(msg, &fm->match);
1682         ofpacts_put_openflow11_instructions(fm->ofpacts, fm->ofpacts_len, msg);
1683         break;
1684     }
1685
1686     case OFPUTIL_P_OF10_STD:
1687     case OFPUTIL_P_OF10_STD_TID: {
1688         struct ofp10_flow_mod *ofm;
1689
1690         msg = ofpraw_alloc(OFPRAW_OFPT10_FLOW_MOD, OFP10_VERSION,
1691                            fm->ofpacts_len);
1692         ofm = ofpbuf_put_zeros(msg, sizeof *ofm);
1693         ofputil_match_to_ofp10_match(&fm->match, &ofm->match);
1694         ofm->cookie = fm->new_cookie;
1695         ofm->command = ofputil_tid_command(fm, protocol);
1696         ofm->idle_timeout = htons(fm->idle_timeout);
1697         ofm->hard_timeout = htons(fm->hard_timeout);
1698         ofm->priority = htons(fm->priority);
1699         ofm->buffer_id = htonl(fm->buffer_id);
1700         ofm->out_port = htons(fm->out_port);
1701         ofm->flags = htons(fm->flags);
1702         ofpacts_put_openflow10(fm->ofpacts, fm->ofpacts_len, msg);
1703         break;
1704     }
1705
1706     case OFPUTIL_P_OF10_NXM:
1707     case OFPUTIL_P_OF10_NXM_TID: {
1708         struct nx_flow_mod *nfm;
1709         int match_len;
1710
1711         msg = ofpraw_alloc(OFPRAW_NXT_FLOW_MOD, OFP10_VERSION,
1712                            NXM_TYPICAL_LEN + fm->ofpacts_len);
1713         nfm = ofpbuf_put_zeros(msg, sizeof *nfm);
1714         nfm->command = ofputil_tid_command(fm, protocol);
1715         nfm->cookie = fm->new_cookie;
1716         match_len = nx_put_match(msg, &fm->match, fm->cookie, fm->cookie_mask);
1717         nfm = msg->l3;
1718         nfm->idle_timeout = htons(fm->idle_timeout);
1719         nfm->hard_timeout = htons(fm->hard_timeout);
1720         nfm->priority = htons(fm->priority);
1721         nfm->buffer_id = htonl(fm->buffer_id);
1722         nfm->out_port = htons(fm->out_port);
1723         nfm->flags = htons(fm->flags);
1724         nfm->match_len = htons(match_len);
1725         ofpacts_put_openflow10(fm->ofpacts, fm->ofpacts_len, msg);
1726         break;
1727     }
1728
1729     default:
1730         NOT_REACHED();
1731     }
1732
1733     ofpmsg_update_length(msg);
1734     return msg;
1735 }
1736
1737 /* Returns a bitmask with a 1-bit for each protocol that could be used to
1738  * send all of the 'n_fm's flow table modification requests in 'fms', and a
1739  * 0-bit for each protocol that is inadequate.
1740  *
1741  * (The return value will have at least one 1-bit.) */
1742 enum ofputil_protocol
1743 ofputil_flow_mod_usable_protocols(const struct ofputil_flow_mod *fms,
1744                                   size_t n_fms)
1745 {
1746     enum ofputil_protocol usable_protocols;
1747     size_t i;
1748
1749     usable_protocols = OFPUTIL_P_ANY;
1750     for (i = 0; i < n_fms; i++) {
1751         const struct ofputil_flow_mod *fm = &fms[i];
1752
1753         usable_protocols &= ofputil_usable_protocols(&fm->match);
1754         if (fm->table_id != 0xff) {
1755             usable_protocols &= OFPUTIL_P_TID;
1756         }
1757
1758         /* Matching of the cookie is only supported through NXM or OF1.1+. */
1759         if (fm->cookie_mask != htonll(0)) {
1760             usable_protocols &= OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1761                 | OFPUTIL_P_OF13_OXM;
1762         }
1763     }
1764
1765     return usable_protocols;
1766 }
1767
1768 static enum ofperr
1769 ofputil_decode_ofpst10_flow_request(struct ofputil_flow_stats_request *fsr,
1770                                     const struct ofp10_flow_stats_request *ofsr,
1771                                     bool aggregate)
1772 {
1773     fsr->aggregate = aggregate;
1774     ofputil_match_from_ofp10_match(&ofsr->match, &fsr->match);
1775     fsr->out_port = ntohs(ofsr->out_port);
1776     fsr->table_id = ofsr->table_id;
1777     fsr->cookie = fsr->cookie_mask = htonll(0);
1778
1779     return 0;
1780 }
1781
1782 static enum ofperr
1783 ofputil_decode_ofpst11_flow_request(struct ofputil_flow_stats_request *fsr,
1784                                     struct ofpbuf *b, bool aggregate)
1785 {
1786     const struct ofp11_flow_stats_request *ofsr;
1787     enum ofperr error;
1788
1789     ofsr = ofpbuf_pull(b, sizeof *ofsr);
1790     fsr->aggregate = aggregate;
1791     fsr->table_id = ofsr->table_id;
1792     error = ofputil_port_from_ofp11(ofsr->out_port, &fsr->out_port);
1793     if (error) {
1794         return error;
1795     }
1796     if (ofsr->out_group != htonl(OFPG11_ANY)) {
1797         return OFPERR_OFPFMFC_UNKNOWN;
1798     }
1799     fsr->cookie = ofsr->cookie;
1800     fsr->cookie_mask = ofsr->cookie_mask;
1801     error = ofputil_pull_ofp11_match(b, &fsr->match, NULL);
1802     if (error) {
1803         return error;
1804     }
1805
1806     return 0;
1807 }
1808
1809 static enum ofperr
1810 ofputil_decode_nxst_flow_request(struct ofputil_flow_stats_request *fsr,
1811                                  struct ofpbuf *b, bool aggregate)
1812 {
1813     const struct nx_flow_stats_request *nfsr;
1814     enum ofperr error;
1815
1816     nfsr = ofpbuf_pull(b, sizeof *nfsr);
1817     error = nx_pull_match(b, ntohs(nfsr->match_len), &fsr->match,
1818                           &fsr->cookie, &fsr->cookie_mask);
1819     if (error) {
1820         return error;
1821     }
1822     if (b->size) {
1823         return OFPERR_OFPBRC_BAD_LEN;
1824     }
1825
1826     fsr->aggregate = aggregate;
1827     fsr->out_port = ntohs(nfsr->out_port);
1828     fsr->table_id = nfsr->table_id;
1829
1830     return 0;
1831 }
1832
1833 /* Converts an OFPST_FLOW, OFPST_AGGREGATE, NXST_FLOW, or NXST_AGGREGATE
1834  * request 'oh', into an abstract flow_stats_request in 'fsr'.  Returns 0 if
1835  * successful, otherwise an OpenFlow error code. */
1836 enum ofperr
1837 ofputil_decode_flow_stats_request(struct ofputil_flow_stats_request *fsr,
1838                                   const struct ofp_header *oh)
1839 {
1840     enum ofpraw raw;
1841     struct ofpbuf b;
1842
1843     ofpbuf_use_const(&b, oh, ntohs(oh->length));
1844     raw = ofpraw_pull_assert(&b);
1845     switch ((int) raw) {
1846     case OFPRAW_OFPST10_FLOW_REQUEST:
1847         return ofputil_decode_ofpst10_flow_request(fsr, b.data, false);
1848
1849     case OFPRAW_OFPST10_AGGREGATE_REQUEST:
1850         return ofputil_decode_ofpst10_flow_request(fsr, b.data, true);
1851
1852     case OFPRAW_OFPST11_FLOW_REQUEST:
1853         return ofputil_decode_ofpst11_flow_request(fsr, &b, false);
1854
1855     case OFPRAW_OFPST11_AGGREGATE_REQUEST:
1856         return ofputil_decode_ofpst11_flow_request(fsr, &b, true);
1857
1858     case OFPRAW_NXST_FLOW_REQUEST:
1859         return ofputil_decode_nxst_flow_request(fsr, &b, false);
1860
1861     case OFPRAW_NXST_AGGREGATE_REQUEST:
1862         return ofputil_decode_nxst_flow_request(fsr, &b, true);
1863
1864     default:
1865         /* Hey, the caller lied. */
1866         NOT_REACHED();
1867     }
1868 }
1869
1870 /* Converts abstract flow_stats_request 'fsr' into an OFPST_FLOW,
1871  * OFPST_AGGREGATE, NXST_FLOW, or NXST_AGGREGATE request 'oh' according to
1872  * 'protocol', and returns the message. */
1873 struct ofpbuf *
1874 ofputil_encode_flow_stats_request(const struct ofputil_flow_stats_request *fsr,
1875                                   enum ofputil_protocol protocol)
1876 {
1877     struct ofpbuf *msg;
1878     enum ofpraw raw;
1879
1880     switch (protocol) {
1881     case OFPUTIL_P_OF12_OXM:
1882     case OFPUTIL_P_OF13_OXM: {
1883         struct ofp11_flow_stats_request *ofsr;
1884
1885         raw = (fsr->aggregate
1886                ? OFPRAW_OFPST11_AGGREGATE_REQUEST
1887                : OFPRAW_OFPST11_FLOW_REQUEST);
1888         msg = ofpraw_alloc(raw, ofputil_protocol_to_ofp_version(protocol),
1889                            NXM_TYPICAL_LEN);
1890         ofsr = ofpbuf_put_zeros(msg, sizeof *ofsr);
1891         ofsr->table_id = fsr->table_id;
1892         ofsr->out_port = ofputil_port_to_ofp11(fsr->out_port);
1893         ofsr->out_group = htonl(OFPG11_ANY);
1894         ofsr->cookie = fsr->cookie;
1895         ofsr->cookie_mask = fsr->cookie_mask;
1896         oxm_put_match(msg, &fsr->match);
1897         break;
1898     }
1899
1900     case OFPUTIL_P_OF10_STD:
1901     case OFPUTIL_P_OF10_STD_TID: {
1902         struct ofp10_flow_stats_request *ofsr;
1903
1904         raw = (fsr->aggregate
1905                ? OFPRAW_OFPST10_AGGREGATE_REQUEST
1906                : OFPRAW_OFPST10_FLOW_REQUEST);
1907         msg = ofpraw_alloc(raw, OFP10_VERSION, 0);
1908         ofsr = ofpbuf_put_zeros(msg, sizeof *ofsr);
1909         ofputil_match_to_ofp10_match(&fsr->match, &ofsr->match);
1910         ofsr->table_id = fsr->table_id;
1911         ofsr->out_port = htons(fsr->out_port);
1912         break;
1913     }
1914
1915     case OFPUTIL_P_OF10_NXM:
1916     case OFPUTIL_P_OF10_NXM_TID: {
1917         struct nx_flow_stats_request *nfsr;
1918         int match_len;
1919
1920         raw = (fsr->aggregate
1921                ? OFPRAW_NXST_AGGREGATE_REQUEST
1922                : OFPRAW_NXST_FLOW_REQUEST);
1923         msg = ofpraw_alloc(raw, OFP10_VERSION, NXM_TYPICAL_LEN);
1924         ofpbuf_put_zeros(msg, sizeof *nfsr);
1925         match_len = nx_put_match(msg, &fsr->match,
1926                                  fsr->cookie, fsr->cookie_mask);
1927
1928         nfsr = msg->l3;
1929         nfsr->out_port = htons(fsr->out_port);
1930         nfsr->match_len = htons(match_len);
1931         nfsr->table_id = fsr->table_id;
1932         break;
1933     }
1934
1935     default:
1936         NOT_REACHED();
1937     }
1938
1939     return msg;
1940 }
1941
1942 /* Returns a bitmask with a 1-bit for each protocol that could be used to
1943  * accurately encode 'fsr', and a 0-bit for each protocol that is inadequate.
1944  *
1945  * (The return value will have at least one 1-bit.) */
1946 enum ofputil_protocol
1947 ofputil_flow_stats_request_usable_protocols(
1948     const struct ofputil_flow_stats_request *fsr)
1949 {
1950     enum ofputil_protocol usable_protocols;
1951
1952     usable_protocols = ofputil_usable_protocols(&fsr->match);
1953     if (fsr->cookie_mask != htonll(0)) {
1954         usable_protocols &= OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1955             | OFPUTIL_P_OF13_OXM;
1956     }
1957     return usable_protocols;
1958 }
1959
1960 /* Converts an OFPST_FLOW or NXST_FLOW reply in 'msg' into an abstract
1961  * ofputil_flow_stats in 'fs'.
1962  *
1963  * Multiple OFPST_FLOW or NXST_FLOW replies can be packed into a single
1964  * OpenFlow message.  Calling this function multiple times for a single 'msg'
1965  * iterates through the replies.  The caller must initially leave 'msg''s layer
1966  * pointers null and not modify them between calls.
1967  *
1968  * Most switches don't send the values needed to populate fs->idle_age and
1969  * fs->hard_age, so those members will usually be set to 0.  If the switch from
1970  * which 'msg' originated is known to implement NXT_FLOW_AGE, then pass
1971  * 'flow_age_extension' as true so that the contents of 'msg' determine the
1972  * 'idle_age' and 'hard_age' members in 'fs'.
1973  *
1974  * Uses 'ofpacts' to store the abstract OFPACT_* version of the flow stats
1975  * reply's actions.  The caller must initialize 'ofpacts' and retains ownership
1976  * of it.  'fs->ofpacts' will point into the 'ofpacts' buffer.
1977  *
1978  * Returns 0 if successful, EOF if no replies were left in this 'msg',
1979  * otherwise a positive errno value. */
1980 int
1981 ofputil_decode_flow_stats_reply(struct ofputil_flow_stats *fs,
1982                                 struct ofpbuf *msg,
1983                                 bool flow_age_extension,
1984                                 struct ofpbuf *ofpacts)
1985 {
1986     enum ofperr error;
1987     enum ofpraw raw;
1988
1989     error = (msg->l2
1990              ? ofpraw_decode(&raw, msg->l2)
1991              : ofpraw_pull(&raw, msg));
1992     if (error) {
1993         return error;
1994     }
1995
1996     if (!msg->size) {
1997         return EOF;
1998     } else if (raw == OFPRAW_OFPST11_FLOW_REPLY
1999                || raw == OFPRAW_OFPST13_FLOW_REPLY) {
2000         const struct ofp11_flow_stats *ofs;
2001         size_t length;
2002         uint16_t padded_match_len;
2003
2004         ofs = ofpbuf_try_pull(msg, sizeof *ofs);
2005         if (!ofs) {
2006             VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_FLOW reply has %zu leftover "
2007                          "bytes at end", msg->size);
2008             return EINVAL;
2009         }
2010
2011         length = ntohs(ofs->length);
2012         if (length < sizeof *ofs) {
2013             VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_FLOW reply claims invalid "
2014                          "length %zu", length);
2015             return EINVAL;
2016         }
2017
2018         if (ofputil_pull_ofp11_match(msg, &fs->match, &padded_match_len)) {
2019             VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_FLOW reply bad match");
2020             return EINVAL;
2021         }
2022
2023         if (ofpacts_pull_openflow11_instructions(msg, length - sizeof *ofs -
2024                                                  padded_match_len, ofpacts)) {
2025             VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_FLOW reply bad instructions");
2026             return EINVAL;
2027         }
2028
2029         fs->priority = ntohs(ofs->priority);
2030         fs->table_id = ofs->table_id;
2031         fs->duration_sec = ntohl(ofs->duration_sec);
2032         fs->duration_nsec = ntohl(ofs->duration_nsec);
2033         fs->idle_timeout = ntohs(ofs->idle_timeout);
2034         fs->hard_timeout = ntohs(ofs->hard_timeout);
2035         fs->flags = (raw == OFPRAW_OFPST13_FLOW_REPLY) ? ntohs(ofs->flags) : 0;
2036         fs->idle_age = -1;
2037         fs->hard_age = -1;
2038         fs->cookie = ofs->cookie;
2039         fs->packet_count = ntohll(ofs->packet_count);
2040         fs->byte_count = ntohll(ofs->byte_count);
2041     } else if (raw == OFPRAW_OFPST10_FLOW_REPLY) {
2042         const struct ofp10_flow_stats *ofs;
2043         size_t length;
2044
2045         ofs = ofpbuf_try_pull(msg, sizeof *ofs);
2046         if (!ofs) {
2047             VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_FLOW reply has %zu leftover "
2048                          "bytes at end", msg->size);
2049             return EINVAL;
2050         }
2051
2052         length = ntohs(ofs->length);
2053         if (length < sizeof *ofs) {
2054             VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_FLOW reply claims invalid "
2055                          "length %zu", length);
2056             return EINVAL;
2057         }
2058
2059         if (ofpacts_pull_openflow10(msg, length - sizeof *ofs, ofpacts)) {
2060             return EINVAL;
2061         }
2062
2063         fs->cookie = get_32aligned_be64(&ofs->cookie);
2064         ofputil_match_from_ofp10_match(&ofs->match, &fs->match);
2065         fs->priority = ntohs(ofs->priority);
2066         fs->table_id = ofs->table_id;
2067         fs->duration_sec = ntohl(ofs->duration_sec);
2068         fs->duration_nsec = ntohl(ofs->duration_nsec);
2069         fs->idle_timeout = ntohs(ofs->idle_timeout);
2070         fs->hard_timeout = ntohs(ofs->hard_timeout);
2071         fs->idle_age = -1;
2072         fs->hard_age = -1;
2073         fs->packet_count = ntohll(get_32aligned_be64(&ofs->packet_count));
2074         fs->byte_count = ntohll(get_32aligned_be64(&ofs->byte_count));
2075         fs->flags = 0;
2076     } else if (raw == OFPRAW_NXST_FLOW_REPLY) {
2077         const struct nx_flow_stats *nfs;
2078         size_t match_len, actions_len, length;
2079
2080         nfs = ofpbuf_try_pull(msg, sizeof *nfs);
2081         if (!nfs) {
2082             VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW reply has %zu leftover "
2083                          "bytes at end", msg->size);
2084             return EINVAL;
2085         }
2086
2087         length = ntohs(nfs->length);
2088         match_len = ntohs(nfs->match_len);
2089         if (length < sizeof *nfs + ROUND_UP(match_len, 8)) {
2090             VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW reply with match_len=%zu "
2091                          "claims invalid length %zu", match_len, length);
2092             return EINVAL;
2093         }
2094         if (nx_pull_match(msg, match_len, &fs->match, NULL, NULL)) {
2095             return EINVAL;
2096         }
2097
2098         actions_len = length - sizeof *nfs - ROUND_UP(match_len, 8);
2099         if (ofpacts_pull_openflow10(msg, actions_len, ofpacts)) {
2100             return EINVAL;
2101         }
2102
2103         fs->cookie = nfs->cookie;
2104         fs->table_id = nfs->table_id;
2105         fs->duration_sec = ntohl(nfs->duration_sec);
2106         fs->duration_nsec = ntohl(nfs->duration_nsec);
2107         fs->priority = ntohs(nfs->priority);
2108         fs->idle_timeout = ntohs(nfs->idle_timeout);
2109         fs->hard_timeout = ntohs(nfs->hard_timeout);
2110         fs->idle_age = -1;
2111         fs->hard_age = -1;
2112         if (flow_age_extension) {
2113             if (nfs->idle_age) {
2114                 fs->idle_age = ntohs(nfs->idle_age) - 1;
2115             }
2116             if (nfs->hard_age) {
2117                 fs->hard_age = ntohs(nfs->hard_age) - 1;
2118             }
2119         }
2120         fs->packet_count = ntohll(nfs->packet_count);
2121         fs->byte_count = ntohll(nfs->byte_count);
2122         fs->flags = 0;
2123     } else {
2124         NOT_REACHED();
2125     }
2126
2127     fs->ofpacts = ofpacts->data;
2128     fs->ofpacts_len = ofpacts->size;
2129
2130     return 0;
2131 }
2132
2133 /* Returns 'count' unchanged except that UINT64_MAX becomes 0.
2134  *
2135  * We use this in situations where OVS internally uses UINT64_MAX to mean
2136  * "value unknown" but OpenFlow 1.0 does not define any unknown value. */
2137 static uint64_t
2138 unknown_to_zero(uint64_t count)
2139 {
2140     return count != UINT64_MAX ? count : 0;
2141 }
2142
2143 /* Appends an OFPST_FLOW or NXST_FLOW reply that contains the data in 'fs' to
2144  * those already present in the list of ofpbufs in 'replies'.  'replies' should
2145  * have been initialized with ofputil_start_stats_reply(). */
2146 void
2147 ofputil_append_flow_stats_reply(const struct ofputil_flow_stats *fs,
2148                                 struct list *replies)
2149 {
2150     struct ofpbuf *reply = ofpbuf_from_list(list_back(replies));
2151     size_t start_ofs = reply->size;
2152     enum ofpraw raw;
2153
2154     ofpraw_decode_partial(&raw, reply->data, reply->size);
2155     if (raw == OFPRAW_OFPST11_FLOW_REPLY || raw == OFPRAW_OFPST13_FLOW_REPLY) {
2156         struct ofp11_flow_stats *ofs;
2157
2158         ofpbuf_put_uninit(reply, sizeof *ofs);
2159         oxm_put_match(reply, &fs->match);
2160         ofpacts_put_openflow11_instructions(fs->ofpacts, fs->ofpacts_len,
2161                                             reply);
2162
2163         ofs = ofpbuf_at_assert(reply, start_ofs, sizeof *ofs);
2164         ofs->length = htons(reply->size - start_ofs);
2165         ofs->table_id = fs->table_id;
2166         ofs->pad = 0;
2167         ofs->duration_sec = htonl(fs->duration_sec);
2168         ofs->duration_nsec = htonl(fs->duration_nsec);
2169         ofs->priority = htons(fs->priority);
2170         ofs->idle_timeout = htons(fs->idle_timeout);
2171         ofs->hard_timeout = htons(fs->hard_timeout);
2172         ofs->flags = (raw == OFPRAW_OFPST13_FLOW_REPLY) ? htons(fs->flags) : 0;
2173         memset(ofs->pad2, 0, sizeof ofs->pad2);
2174         ofs->cookie = fs->cookie;
2175         ofs->packet_count = htonll(unknown_to_zero(fs->packet_count));
2176         ofs->byte_count = htonll(unknown_to_zero(fs->byte_count));
2177     } else if (raw == OFPRAW_OFPST10_FLOW_REPLY) {
2178         struct ofp10_flow_stats *ofs;
2179
2180         ofpbuf_put_uninit(reply, sizeof *ofs);
2181         ofpacts_put_openflow10(fs->ofpacts, fs->ofpacts_len, reply);
2182
2183         ofs = ofpbuf_at_assert(reply, start_ofs, sizeof *ofs);
2184         ofs->length = htons(reply->size - start_ofs);
2185         ofs->table_id = fs->table_id;
2186         ofs->pad = 0;
2187         ofputil_match_to_ofp10_match(&fs->match, &ofs->match);
2188         ofs->duration_sec = htonl(fs->duration_sec);
2189         ofs->duration_nsec = htonl(fs->duration_nsec);
2190         ofs->priority = htons(fs->priority);
2191         ofs->idle_timeout = htons(fs->idle_timeout);
2192         ofs->hard_timeout = htons(fs->hard_timeout);
2193         memset(ofs->pad2, 0, sizeof ofs->pad2);
2194         put_32aligned_be64(&ofs->cookie, fs->cookie);
2195         put_32aligned_be64(&ofs->packet_count,
2196                            htonll(unknown_to_zero(fs->packet_count)));
2197         put_32aligned_be64(&ofs->byte_count,
2198                            htonll(unknown_to_zero(fs->byte_count)));
2199     } else if (raw == OFPRAW_NXST_FLOW_REPLY) {
2200         struct nx_flow_stats *nfs;
2201         int match_len;
2202
2203         ofpbuf_put_uninit(reply, sizeof *nfs);
2204         match_len = nx_put_match(reply, &fs->match, 0, 0);
2205         ofpacts_put_openflow10(fs->ofpacts, fs->ofpacts_len, reply);
2206
2207         nfs = ofpbuf_at_assert(reply, start_ofs, sizeof *nfs);
2208         nfs->length = htons(reply->size - start_ofs);
2209         nfs->table_id = fs->table_id;
2210         nfs->pad = 0;
2211         nfs->duration_sec = htonl(fs->duration_sec);
2212         nfs->duration_nsec = htonl(fs->duration_nsec);
2213         nfs->priority = htons(fs->priority);
2214         nfs->idle_timeout = htons(fs->idle_timeout);
2215         nfs->hard_timeout = htons(fs->hard_timeout);
2216         nfs->idle_age = htons(fs->idle_age < 0 ? 0
2217                               : fs->idle_age < UINT16_MAX ? fs->idle_age + 1
2218                               : UINT16_MAX);
2219         nfs->hard_age = htons(fs->hard_age < 0 ? 0
2220                               : fs->hard_age < UINT16_MAX ? fs->hard_age + 1
2221                               : UINT16_MAX);
2222         nfs->match_len = htons(match_len);
2223         nfs->cookie = fs->cookie;
2224         nfs->packet_count = htonll(fs->packet_count);
2225         nfs->byte_count = htonll(fs->byte_count);
2226     } else {
2227         NOT_REACHED();
2228     }
2229
2230     ofpmp_postappend(replies, start_ofs);
2231 }
2232
2233 /* Converts abstract ofputil_aggregate_stats 'stats' into an OFPST_AGGREGATE or
2234  * NXST_AGGREGATE reply matching 'request', and returns the message. */
2235 struct ofpbuf *
2236 ofputil_encode_aggregate_stats_reply(
2237     const struct ofputil_aggregate_stats *stats,
2238     const struct ofp_header *request)
2239 {
2240     struct ofp_aggregate_stats_reply *asr;
2241     uint64_t packet_count;
2242     uint64_t byte_count;
2243     struct ofpbuf *msg;
2244     enum ofpraw raw;
2245
2246     ofpraw_decode(&raw, request);
2247     if (raw == OFPRAW_OFPST10_AGGREGATE_REQUEST) {
2248         packet_count = unknown_to_zero(stats->packet_count);
2249         byte_count = unknown_to_zero(stats->byte_count);
2250     } else {
2251         packet_count = stats->packet_count;
2252         byte_count = stats->byte_count;
2253     }
2254
2255     msg = ofpraw_alloc_stats_reply(request, 0);
2256     asr = ofpbuf_put_zeros(msg, sizeof *asr);
2257     put_32aligned_be64(&asr->packet_count, htonll(packet_count));
2258     put_32aligned_be64(&asr->byte_count, htonll(byte_count));
2259     asr->flow_count = htonl(stats->flow_count);
2260
2261     return msg;
2262 }
2263
2264 enum ofperr
2265 ofputil_decode_aggregate_stats_reply(struct ofputil_aggregate_stats *stats,
2266                                      const struct ofp_header *reply)
2267 {
2268     struct ofp_aggregate_stats_reply *asr;
2269     struct ofpbuf msg;
2270
2271     ofpbuf_use_const(&msg, reply, ntohs(reply->length));
2272     ofpraw_pull_assert(&msg);
2273
2274     asr = msg.l3;
2275     stats->packet_count = ntohll(get_32aligned_be64(&asr->packet_count));
2276     stats->byte_count = ntohll(get_32aligned_be64(&asr->byte_count));
2277     stats->flow_count = ntohl(asr->flow_count);
2278
2279     return 0;
2280 }
2281
2282 /* Converts an OFPT_FLOW_REMOVED or NXT_FLOW_REMOVED message 'oh' into an
2283  * abstract ofputil_flow_removed in 'fr'.  Returns 0 if successful, otherwise
2284  * an OpenFlow error code. */
2285 enum ofperr
2286 ofputil_decode_flow_removed(struct ofputil_flow_removed *fr,
2287                             const struct ofp_header *oh)
2288 {
2289     enum ofpraw raw;
2290     struct ofpbuf b;
2291
2292     ofpbuf_use_const(&b, oh, ntohs(oh->length));
2293     raw = ofpraw_pull_assert(&b);
2294     if (raw == OFPRAW_OFPT11_FLOW_REMOVED) {
2295         const struct ofp12_flow_removed *ofr;
2296         enum ofperr error;
2297
2298         ofr = ofpbuf_pull(&b, sizeof *ofr);
2299
2300         error = ofputil_pull_ofp11_match(&b, &fr->match, NULL);
2301         if (error) {
2302             return error;
2303         }
2304
2305         fr->priority = ntohs(ofr->priority);
2306         fr->cookie = ofr->cookie;
2307         fr->reason = ofr->reason;
2308         fr->table_id = ofr->table_id;
2309         fr->duration_sec = ntohl(ofr->duration_sec);
2310         fr->duration_nsec = ntohl(ofr->duration_nsec);
2311         fr->idle_timeout = ntohs(ofr->idle_timeout);
2312         fr->hard_timeout = ntohs(ofr->hard_timeout);
2313         fr->packet_count = ntohll(ofr->packet_count);
2314         fr->byte_count = ntohll(ofr->byte_count);
2315     } else if (raw == OFPRAW_OFPT10_FLOW_REMOVED) {
2316         const struct ofp10_flow_removed *ofr;
2317
2318         ofr = ofpbuf_pull(&b, sizeof *ofr);
2319
2320         ofputil_match_from_ofp10_match(&ofr->match, &fr->match);
2321         fr->priority = ntohs(ofr->priority);
2322         fr->cookie = ofr->cookie;
2323         fr->reason = ofr->reason;
2324         fr->table_id = 255;
2325         fr->duration_sec = ntohl(ofr->duration_sec);
2326         fr->duration_nsec = ntohl(ofr->duration_nsec);
2327         fr->idle_timeout = ntohs(ofr->idle_timeout);
2328         fr->hard_timeout = 0;
2329         fr->packet_count = ntohll(ofr->packet_count);
2330         fr->byte_count = ntohll(ofr->byte_count);
2331     } else if (raw == OFPRAW_NXT_FLOW_REMOVED) {
2332         struct nx_flow_removed *nfr;
2333         enum ofperr error;
2334
2335         nfr = ofpbuf_pull(&b, sizeof *nfr);
2336         error = nx_pull_match(&b, ntohs(nfr->match_len), &fr->match,
2337                               NULL, NULL);
2338         if (error) {
2339             return error;
2340         }
2341         if (b.size) {
2342             return OFPERR_OFPBRC_BAD_LEN;
2343         }
2344
2345         fr->priority = ntohs(nfr->priority);
2346         fr->cookie = nfr->cookie;
2347         fr->reason = nfr->reason;
2348         fr->table_id = 255;
2349         fr->duration_sec = ntohl(nfr->duration_sec);
2350         fr->duration_nsec = ntohl(nfr->duration_nsec);
2351         fr->idle_timeout = ntohs(nfr->idle_timeout);
2352         fr->hard_timeout = 0;
2353         fr->packet_count = ntohll(nfr->packet_count);
2354         fr->byte_count = ntohll(nfr->byte_count);
2355     } else {
2356         NOT_REACHED();
2357     }
2358
2359     return 0;
2360 }
2361
2362 /* Converts abstract ofputil_flow_removed 'fr' into an OFPT_FLOW_REMOVED or
2363  * NXT_FLOW_REMOVED message 'oh' according to 'protocol', and returns the
2364  * message. */
2365 struct ofpbuf *
2366 ofputil_encode_flow_removed(const struct ofputil_flow_removed *fr,
2367                             enum ofputil_protocol protocol)
2368 {
2369     struct ofpbuf *msg;
2370
2371     switch (protocol) {
2372     case OFPUTIL_P_OF12_OXM:
2373     case OFPUTIL_P_OF13_OXM: {
2374         struct ofp12_flow_removed *ofr;
2375
2376         msg = ofpraw_alloc_xid(OFPRAW_OFPT11_FLOW_REMOVED,
2377                                ofputil_protocol_to_ofp_version(protocol),
2378                                htonl(0), NXM_TYPICAL_LEN);
2379         ofr = ofpbuf_put_zeros(msg, sizeof *ofr);
2380         ofr->cookie = fr->cookie;
2381         ofr->priority = htons(fr->priority);
2382         ofr->reason = fr->reason;
2383         ofr->table_id = fr->table_id;
2384         ofr->duration_sec = htonl(fr->duration_sec);
2385         ofr->duration_nsec = htonl(fr->duration_nsec);
2386         ofr->idle_timeout = htons(fr->idle_timeout);
2387         ofr->hard_timeout = htons(fr->hard_timeout);
2388         ofr->packet_count = htonll(fr->packet_count);
2389         ofr->byte_count = htonll(fr->byte_count);
2390         oxm_put_match(msg, &fr->match);
2391         break;
2392     }
2393
2394     case OFPUTIL_P_OF10_STD:
2395     case OFPUTIL_P_OF10_STD_TID: {
2396         struct ofp10_flow_removed *ofr;
2397
2398         msg = ofpraw_alloc_xid(OFPRAW_OFPT10_FLOW_REMOVED, OFP10_VERSION,
2399                                htonl(0), 0);
2400         ofr = ofpbuf_put_zeros(msg, sizeof *ofr);
2401         ofputil_match_to_ofp10_match(&fr->match, &ofr->match);
2402         ofr->cookie = fr->cookie;
2403         ofr->priority = htons(fr->priority);
2404         ofr->reason = fr->reason;
2405         ofr->duration_sec = htonl(fr->duration_sec);
2406         ofr->duration_nsec = htonl(fr->duration_nsec);
2407         ofr->idle_timeout = htons(fr->idle_timeout);
2408         ofr->packet_count = htonll(unknown_to_zero(fr->packet_count));
2409         ofr->byte_count = htonll(unknown_to_zero(fr->byte_count));
2410         break;
2411     }
2412
2413     case OFPUTIL_P_OF10_NXM:
2414     case OFPUTIL_P_OF10_NXM_TID: {
2415         struct nx_flow_removed *nfr;
2416         int match_len;
2417
2418         msg = ofpraw_alloc_xid(OFPRAW_NXT_FLOW_REMOVED, OFP10_VERSION,
2419                                htonl(0), NXM_TYPICAL_LEN);
2420         nfr = ofpbuf_put_zeros(msg, sizeof *nfr);
2421         match_len = nx_put_match(msg, &fr->match, 0, 0);
2422
2423         nfr = msg->l3;
2424         nfr->cookie = fr->cookie;
2425         nfr->priority = htons(fr->priority);
2426         nfr->reason = fr->reason;
2427         nfr->duration_sec = htonl(fr->duration_sec);
2428         nfr->duration_nsec = htonl(fr->duration_nsec);
2429         nfr->idle_timeout = htons(fr->idle_timeout);
2430         nfr->match_len = htons(match_len);
2431         nfr->packet_count = htonll(fr->packet_count);
2432         nfr->byte_count = htonll(fr->byte_count);
2433         break;
2434     }
2435
2436     default:
2437         NOT_REACHED();
2438     }
2439
2440     return msg;
2441 }
2442
2443 static void
2444 ofputil_decode_packet_in_finish(struct ofputil_packet_in *pin,
2445                                 struct match *match, struct ofpbuf *b)
2446 {
2447     pin->packet = b->data;
2448     pin->packet_len = b->size;
2449
2450     pin->fmd.in_port = match->flow.in_port;
2451     pin->fmd.tun_id = match->flow.tunnel.tun_id;
2452     pin->fmd.metadata = match->flow.metadata;
2453     memcpy(pin->fmd.regs, match->flow.regs, sizeof pin->fmd.regs);
2454 }
2455
2456 enum ofperr
2457 ofputil_decode_packet_in(struct ofputil_packet_in *pin,
2458                          const struct ofp_header *oh)
2459 {
2460     enum ofpraw raw;
2461     struct ofpbuf b;
2462
2463     memset(pin, 0, sizeof *pin);
2464
2465     ofpbuf_use_const(&b, oh, ntohs(oh->length));
2466     raw = ofpraw_pull_assert(&b);
2467     if (raw == OFPRAW_OFPT13_PACKET_IN || raw == OFPRAW_OFPT12_PACKET_IN) {
2468         const struct ofp13_packet_in *opi;
2469         struct match match;
2470         int error;
2471         size_t packet_in_size;
2472
2473         if (raw == OFPRAW_OFPT12_PACKET_IN) {
2474             packet_in_size = sizeof (struct ofp12_packet_in);
2475         } else {
2476             packet_in_size = sizeof (struct ofp13_packet_in);
2477         }
2478
2479         opi = ofpbuf_pull(&b, packet_in_size);
2480         error = oxm_pull_match_loose(&b, &match);
2481         if (error) {
2482             return error;
2483         }
2484
2485         if (!ofpbuf_try_pull(&b, 2)) {
2486             return OFPERR_OFPBRC_BAD_LEN;
2487         }
2488
2489         pin->reason = opi->pi.reason;
2490         pin->table_id = opi->pi.table_id;
2491         pin->buffer_id = ntohl(opi->pi.buffer_id);
2492         pin->total_len = ntohs(opi->pi.total_len);
2493
2494         if (raw == OFPRAW_OFPT13_PACKET_IN) {
2495             pin->cookie = opi->cookie;
2496         }
2497
2498         ofputil_decode_packet_in_finish(pin, &match, &b);
2499     } else if (raw == OFPRAW_OFPT10_PACKET_IN) {
2500         const struct ofp10_packet_in *opi;
2501
2502         opi = ofpbuf_pull(&b, offsetof(struct ofp10_packet_in, data));
2503
2504         pin->packet = opi->data;
2505         pin->packet_len = b.size;
2506
2507         pin->fmd.in_port = ntohs(opi->in_port);
2508         pin->reason = opi->reason;
2509         pin->buffer_id = ntohl(opi->buffer_id);
2510         pin->total_len = ntohs(opi->total_len);
2511     } else if (raw == OFPRAW_NXT_PACKET_IN) {
2512         const struct nx_packet_in *npi;
2513         struct match match;
2514         int error;
2515
2516         npi = ofpbuf_pull(&b, sizeof *npi);
2517         error = nx_pull_match_loose(&b, ntohs(npi->match_len), &match, NULL,
2518                                     NULL);
2519         if (error) {
2520             return error;
2521         }
2522
2523         if (!ofpbuf_try_pull(&b, 2)) {
2524             return OFPERR_OFPBRC_BAD_LEN;
2525         }
2526
2527         pin->reason = npi->reason;
2528         pin->table_id = npi->table_id;
2529         pin->cookie = npi->cookie;
2530
2531         pin->buffer_id = ntohl(npi->buffer_id);
2532         pin->total_len = ntohs(npi->total_len);
2533
2534         ofputil_decode_packet_in_finish(pin, &match, &b);
2535     } else {
2536         NOT_REACHED();
2537     }
2538
2539     return 0;
2540 }
2541
2542 static void
2543 ofputil_packet_in_to_match(const struct ofputil_packet_in *pin,
2544                            struct match *match)
2545 {
2546     int i;
2547
2548     match_init_catchall(match);
2549     if (pin->fmd.tun_id != htonll(0)) {
2550         match_set_tun_id(match, pin->fmd.tun_id);
2551     }
2552     if (pin->fmd.metadata != htonll(0)) {
2553         match_set_metadata(match, pin->fmd.metadata);
2554     }
2555
2556     for (i = 0; i < FLOW_N_REGS; i++) {
2557         if (pin->fmd.regs[i]) {
2558             match_set_reg(match, i, pin->fmd.regs[i]);
2559         }
2560     }
2561
2562     match_set_in_port(match, pin->fmd.in_port);
2563 }
2564
2565 /* Converts abstract ofputil_packet_in 'pin' into a PACKET_IN message
2566  * in the format specified by 'packet_in_format'.  */
2567 struct ofpbuf *
2568 ofputil_encode_packet_in(const struct ofputil_packet_in *pin,
2569                          enum ofputil_protocol protocol,
2570                          enum nx_packet_in_format packet_in_format)
2571 {
2572     size_t send_len = MIN(pin->send_len, pin->packet_len);
2573     struct ofpbuf *packet;
2574
2575     /* Add OFPT_PACKET_IN. */
2576     if (protocol == OFPUTIL_P_OF13_OXM || protocol == OFPUTIL_P_OF12_OXM) {
2577         struct ofp13_packet_in *opi;
2578         struct match match;
2579         enum ofpraw packet_in_raw;
2580         enum ofp_version packet_in_version;
2581         size_t packet_in_size;
2582
2583         if (protocol == OFPUTIL_P_OF12_OXM) {
2584             packet_in_raw = OFPRAW_OFPT12_PACKET_IN;
2585             packet_in_version = OFP12_VERSION;
2586             packet_in_size = sizeof (struct ofp12_packet_in);
2587         } else {
2588             packet_in_raw = OFPRAW_OFPT13_PACKET_IN;
2589             packet_in_version = OFP13_VERSION;
2590             packet_in_size = sizeof (struct ofp13_packet_in);
2591         }
2592
2593         ofputil_packet_in_to_match(pin, &match);
2594
2595         /* The final argument is just an estimate of the space required. */
2596         packet = ofpraw_alloc_xid(packet_in_raw, packet_in_version,
2597                                   htonl(0), (sizeof(struct flow_metadata) * 2
2598                                              + 2 + send_len));
2599         ofpbuf_put_zeros(packet, packet_in_size);
2600         oxm_put_match(packet, &match);
2601         ofpbuf_put_zeros(packet, 2);
2602         ofpbuf_put(packet, pin->packet, send_len);
2603
2604         opi = packet->l3;
2605         opi->pi.buffer_id = htonl(pin->buffer_id);
2606         opi->pi.total_len = htons(pin->total_len);
2607         opi->pi.reason = pin->reason;
2608         opi->pi.table_id = pin->table_id;
2609         if (protocol == OFPUTIL_P_OF13_OXM) {
2610             opi->cookie = pin->cookie;
2611         }
2612     } else if (packet_in_format == NXPIF_OPENFLOW10) {
2613         struct ofp10_packet_in *opi;
2614
2615         packet = ofpraw_alloc_xid(OFPRAW_OFPT10_PACKET_IN, OFP10_VERSION,
2616                                   htonl(0), send_len);
2617         opi = ofpbuf_put_zeros(packet, offsetof(struct ofp10_packet_in, data));
2618         opi->total_len = htons(pin->total_len);
2619         opi->in_port = htons(pin->fmd.in_port);
2620         opi->reason = pin->reason;
2621         opi->buffer_id = htonl(pin->buffer_id);
2622
2623         ofpbuf_put(packet, pin->packet, send_len);
2624     } else if (packet_in_format == NXPIF_NXM) {
2625         struct nx_packet_in *npi;
2626         struct match match;
2627         size_t match_len;
2628
2629         ofputil_packet_in_to_match(pin, &match);
2630
2631         /* The final argument is just an estimate of the space required. */
2632         packet = ofpraw_alloc_xid(OFPRAW_NXT_PACKET_IN, OFP10_VERSION,
2633                                   htonl(0), (sizeof(struct flow_metadata) * 2
2634                                              + 2 + send_len));
2635         ofpbuf_put_zeros(packet, sizeof *npi);
2636         match_len = nx_put_match(packet, &match, 0, 0);
2637         ofpbuf_put_zeros(packet, 2);
2638         ofpbuf_put(packet, pin->packet, send_len);
2639
2640         npi = packet->l3;
2641         npi->buffer_id = htonl(pin->buffer_id);
2642         npi->total_len = htons(pin->total_len);
2643         npi->reason = pin->reason;
2644         npi->table_id = pin->table_id;
2645         npi->cookie = pin->cookie;
2646         npi->match_len = htons(match_len);
2647     } else {
2648         NOT_REACHED();
2649     }
2650     ofpmsg_update_length(packet);
2651
2652     return packet;
2653 }
2654
2655 const char *
2656 ofputil_packet_in_reason_to_string(enum ofp_packet_in_reason reason)
2657 {
2658     static char s[INT_STRLEN(int) + 1];
2659
2660     switch (reason) {
2661     case OFPR_NO_MATCH:
2662         return "no_match";
2663     case OFPR_ACTION:
2664         return "action";
2665     case OFPR_INVALID_TTL:
2666         return "invalid_ttl";
2667
2668     case OFPR_N_REASONS:
2669     default:
2670         sprintf(s, "%d", (int) reason);
2671         return s;
2672     }
2673 }
2674
2675 bool
2676 ofputil_packet_in_reason_from_string(const char *s,
2677                                      enum ofp_packet_in_reason *reason)
2678 {
2679     int i;
2680
2681     for (i = 0; i < OFPR_N_REASONS; i++) {
2682         if (!strcasecmp(s, ofputil_packet_in_reason_to_string(i))) {
2683             *reason = i;
2684             return true;
2685         }
2686     }
2687     return false;
2688 }
2689
2690 /* Converts an OFPT_PACKET_OUT in 'opo' into an abstract ofputil_packet_out in
2691  * 'po'.
2692  *
2693  * Uses 'ofpacts' to store the abstract OFPACT_* version of the packet out
2694  * message's actions.  The caller must initialize 'ofpacts' and retains
2695  * ownership of it.  'po->ofpacts' will point into the 'ofpacts' buffer.
2696  *
2697  * Returns 0 if successful, otherwise an OFPERR_* value. */
2698 enum ofperr
2699 ofputil_decode_packet_out(struct ofputil_packet_out *po,
2700                           const struct ofp_header *oh,
2701                           struct ofpbuf *ofpacts)
2702 {
2703     enum ofpraw raw;
2704     struct ofpbuf b;
2705
2706     ofpbuf_use_const(&b, oh, ntohs(oh->length));
2707     raw = ofpraw_pull_assert(&b);
2708
2709     if (raw == OFPRAW_OFPT11_PACKET_OUT) {
2710         enum ofperr error;
2711         const struct ofp11_packet_out *opo = ofpbuf_pull(&b, sizeof *opo);
2712
2713         po->buffer_id = ntohl(opo->buffer_id);
2714         error = ofputil_port_from_ofp11(opo->in_port, &po->in_port);
2715         if (error) {
2716             return error;
2717         }
2718
2719         error = ofpacts_pull_openflow11_actions(&b, ntohs(opo->actions_len),
2720                                                 ofpacts);
2721         if (error) {
2722             return error;
2723         }
2724     } else if (raw == OFPRAW_OFPT10_PACKET_OUT) {
2725         enum ofperr error;
2726         const struct ofp10_packet_out *opo = ofpbuf_pull(&b, sizeof *opo);
2727
2728         po->buffer_id = ntohl(opo->buffer_id);
2729         po->in_port = ntohs(opo->in_port);
2730
2731         error = ofpacts_pull_openflow10(&b, ntohs(opo->actions_len), ofpacts);
2732         if (error) {
2733             return error;
2734         }
2735     } else {
2736         NOT_REACHED();
2737     }
2738
2739     if (po->in_port >= OFPP_MAX && po->in_port != OFPP_LOCAL
2740         && po->in_port != OFPP_NONE && po->in_port != OFPP_CONTROLLER) {
2741         VLOG_WARN_RL(&bad_ofmsg_rl, "packet-out has bad input port %#"PRIx16,
2742                      po->in_port);
2743         return OFPERR_OFPBRC_BAD_PORT;
2744     }
2745
2746     po->ofpacts = ofpacts->data;
2747     po->ofpacts_len = ofpacts->size;
2748
2749     if (po->buffer_id == UINT32_MAX) {
2750         po->packet = b.data;
2751         po->packet_len = b.size;
2752     } else {
2753         po->packet = NULL;
2754         po->packet_len = 0;
2755     }
2756
2757     return 0;
2758 }
2759 \f
2760 /* ofputil_phy_port */
2761
2762 /* NETDEV_F_* to and from OFPPF_* and OFPPF10_*. */
2763 BUILD_ASSERT_DECL((int) NETDEV_F_10MB_HD    == OFPPF_10MB_HD);  /* bit 0 */
2764 BUILD_ASSERT_DECL((int) NETDEV_F_10MB_FD    == OFPPF_10MB_FD);  /* bit 1 */
2765 BUILD_ASSERT_DECL((int) NETDEV_F_100MB_HD   == OFPPF_100MB_HD); /* bit 2 */
2766 BUILD_ASSERT_DECL((int) NETDEV_F_100MB_FD   == OFPPF_100MB_FD); /* bit 3 */
2767 BUILD_ASSERT_DECL((int) NETDEV_F_1GB_HD     == OFPPF_1GB_HD);   /* bit 4 */
2768 BUILD_ASSERT_DECL((int) NETDEV_F_1GB_FD     == OFPPF_1GB_FD);   /* bit 5 */
2769 BUILD_ASSERT_DECL((int) NETDEV_F_10GB_FD    == OFPPF_10GB_FD);  /* bit 6 */
2770
2771 /* NETDEV_F_ bits 11...15 are OFPPF10_ bits 7...11: */
2772 BUILD_ASSERT_DECL((int) NETDEV_F_COPPER == (OFPPF10_COPPER << 4));
2773 BUILD_ASSERT_DECL((int) NETDEV_F_FIBER == (OFPPF10_FIBER << 4));
2774 BUILD_ASSERT_DECL((int) NETDEV_F_AUTONEG == (OFPPF10_AUTONEG << 4));
2775 BUILD_ASSERT_DECL((int) NETDEV_F_PAUSE == (OFPPF10_PAUSE << 4));
2776 BUILD_ASSERT_DECL((int) NETDEV_F_PAUSE_ASYM == (OFPPF10_PAUSE_ASYM << 4));
2777
2778 static enum netdev_features
2779 netdev_port_features_from_ofp10(ovs_be32 ofp10_)
2780 {
2781     uint32_t ofp10 = ntohl(ofp10_);
2782     return (ofp10 & 0x7f) | ((ofp10 & 0xf80) << 4);
2783 }
2784
2785 static ovs_be32
2786 netdev_port_features_to_ofp10(enum netdev_features features)
2787 {
2788     return htonl((features & 0x7f) | ((features & 0xf800) >> 4));
2789 }
2790
2791 BUILD_ASSERT_DECL((int) NETDEV_F_10MB_HD    == OFPPF_10MB_HD);     /* bit 0 */
2792 BUILD_ASSERT_DECL((int) NETDEV_F_10MB_FD    == OFPPF_10MB_FD);     /* bit 1 */
2793 BUILD_ASSERT_DECL((int) NETDEV_F_100MB_HD   == OFPPF_100MB_HD);    /* bit 2 */
2794 BUILD_ASSERT_DECL((int) NETDEV_F_100MB_FD   == OFPPF_100MB_FD);    /* bit 3 */
2795 BUILD_ASSERT_DECL((int) NETDEV_F_1GB_HD     == OFPPF_1GB_HD);      /* bit 4 */
2796 BUILD_ASSERT_DECL((int) NETDEV_F_1GB_FD     == OFPPF_1GB_FD);      /* bit 5 */
2797 BUILD_ASSERT_DECL((int) NETDEV_F_10GB_FD    == OFPPF_10GB_FD);     /* bit 6 */
2798 BUILD_ASSERT_DECL((int) NETDEV_F_40GB_FD    == OFPPF11_40GB_FD);   /* bit 7 */
2799 BUILD_ASSERT_DECL((int) NETDEV_F_100GB_FD   == OFPPF11_100GB_FD);  /* bit 8 */
2800 BUILD_ASSERT_DECL((int) NETDEV_F_1TB_FD     == OFPPF11_1TB_FD);    /* bit 9 */
2801 BUILD_ASSERT_DECL((int) NETDEV_F_OTHER      == OFPPF11_OTHER);     /* bit 10 */
2802 BUILD_ASSERT_DECL((int) NETDEV_F_COPPER     == OFPPF11_COPPER);    /* bit 11 */
2803 BUILD_ASSERT_DECL((int) NETDEV_F_FIBER      == OFPPF11_FIBER);     /* bit 12 */
2804 BUILD_ASSERT_DECL((int) NETDEV_F_AUTONEG    == OFPPF11_AUTONEG);   /* bit 13 */
2805 BUILD_ASSERT_DECL((int) NETDEV_F_PAUSE      == OFPPF11_PAUSE);     /* bit 14 */
2806 BUILD_ASSERT_DECL((int) NETDEV_F_PAUSE_ASYM == OFPPF11_PAUSE_ASYM);/* bit 15 */
2807
2808 static enum netdev_features
2809 netdev_port_features_from_ofp11(ovs_be32 ofp11)
2810 {
2811     return ntohl(ofp11) & 0xffff;
2812 }
2813
2814 static ovs_be32
2815 netdev_port_features_to_ofp11(enum netdev_features features)
2816 {
2817     return htonl(features & 0xffff);
2818 }
2819
2820 static enum ofperr
2821 ofputil_decode_ofp10_phy_port(struct ofputil_phy_port *pp,
2822                               const struct ofp10_phy_port *opp)
2823 {
2824     memset(pp, 0, sizeof *pp);
2825
2826     pp->port_no = ntohs(opp->port_no);
2827     memcpy(pp->hw_addr, opp->hw_addr, OFP_ETH_ALEN);
2828     ovs_strlcpy(pp->name, opp->name, OFP_MAX_PORT_NAME_LEN);
2829
2830     pp->config = ntohl(opp->config) & OFPPC10_ALL;
2831     pp->state = ntohl(opp->state) & OFPPS10_ALL;
2832
2833     pp->curr = netdev_port_features_from_ofp10(opp->curr);
2834     pp->advertised = netdev_port_features_from_ofp10(opp->advertised);
2835     pp->supported = netdev_port_features_from_ofp10(opp->supported);
2836     pp->peer = netdev_port_features_from_ofp10(opp->peer);
2837
2838     pp->curr_speed = netdev_features_to_bps(pp->curr, 0) / 1000;
2839     pp->max_speed = netdev_features_to_bps(pp->supported, 0) / 1000;
2840
2841     return 0;
2842 }
2843
2844 static enum ofperr
2845 ofputil_decode_ofp11_port(struct ofputil_phy_port *pp,
2846                           const struct ofp11_port *op)
2847 {
2848     enum ofperr error;
2849
2850     memset(pp, 0, sizeof *pp);
2851
2852     error = ofputil_port_from_ofp11(op->port_no, &pp->port_no);
2853     if (error) {
2854         return error;
2855     }
2856     memcpy(pp->hw_addr, op->hw_addr, OFP_ETH_ALEN);
2857     ovs_strlcpy(pp->name, op->name, OFP_MAX_PORT_NAME_LEN);
2858
2859     pp->config = ntohl(op->config) & OFPPC11_ALL;
2860     pp->state = ntohl(op->state) & OFPPC11_ALL;
2861
2862     pp->curr = netdev_port_features_from_ofp11(op->curr);
2863     pp->advertised = netdev_port_features_from_ofp11(op->advertised);
2864     pp->supported = netdev_port_features_from_ofp11(op->supported);
2865     pp->peer = netdev_port_features_from_ofp11(op->peer);
2866
2867     pp->curr_speed = ntohl(op->curr_speed);
2868     pp->max_speed = ntohl(op->max_speed);
2869
2870     return 0;
2871 }
2872
2873 static size_t
2874 ofputil_get_phy_port_size(enum ofp_version ofp_version)
2875 {
2876     switch (ofp_version) {
2877     case OFP10_VERSION:
2878         return sizeof(struct ofp10_phy_port);
2879     case OFP11_VERSION:
2880     case OFP12_VERSION:
2881     case OFP13_VERSION:
2882         return sizeof(struct ofp11_port);
2883     default:
2884         NOT_REACHED();
2885     }
2886 }
2887
2888 static void
2889 ofputil_encode_ofp10_phy_port(const struct ofputil_phy_port *pp,
2890                               struct ofp10_phy_port *opp)
2891 {
2892     memset(opp, 0, sizeof *opp);
2893
2894     opp->port_no = htons(pp->port_no);
2895     memcpy(opp->hw_addr, pp->hw_addr, ETH_ADDR_LEN);
2896     ovs_strlcpy(opp->name, pp->name, OFP_MAX_PORT_NAME_LEN);
2897
2898     opp->config = htonl(pp->config & OFPPC10_ALL);
2899     opp->state = htonl(pp->state & OFPPS10_ALL);
2900
2901     opp->curr = netdev_port_features_to_ofp10(pp->curr);
2902     opp->advertised = netdev_port_features_to_ofp10(pp->advertised);
2903     opp->supported = netdev_port_features_to_ofp10(pp->supported);
2904     opp->peer = netdev_port_features_to_ofp10(pp->peer);
2905 }
2906
2907 static void
2908 ofputil_encode_ofp11_port(const struct ofputil_phy_port *pp,
2909                           struct ofp11_port *op)
2910 {
2911     memset(op, 0, sizeof *op);
2912
2913     op->port_no = ofputil_port_to_ofp11(pp->port_no);
2914     memcpy(op->hw_addr, pp->hw_addr, ETH_ADDR_LEN);
2915     ovs_strlcpy(op->name, pp->name, OFP_MAX_PORT_NAME_LEN);
2916
2917     op->config = htonl(pp->config & OFPPC11_ALL);
2918     op->state = htonl(pp->state & OFPPS11_ALL);
2919
2920     op->curr = netdev_port_features_to_ofp11(pp->curr);
2921     op->advertised = netdev_port_features_to_ofp11(pp->advertised);
2922     op->supported = netdev_port_features_to_ofp11(pp->supported);
2923     op->peer = netdev_port_features_to_ofp11(pp->peer);
2924
2925     op->curr_speed = htonl(pp->curr_speed);
2926     op->max_speed = htonl(pp->max_speed);
2927 }
2928
2929 static void
2930 ofputil_put_phy_port(enum ofp_version ofp_version,
2931                      const struct ofputil_phy_port *pp, struct ofpbuf *b)
2932 {
2933     switch (ofp_version) {
2934     case OFP10_VERSION: {
2935         struct ofp10_phy_port *opp;
2936         if (b->size + sizeof *opp <= UINT16_MAX) {
2937             opp = ofpbuf_put_uninit(b, sizeof *opp);
2938             ofputil_encode_ofp10_phy_port(pp, opp);
2939         }
2940         break;
2941     }
2942
2943     case OFP11_VERSION:
2944     case OFP12_VERSION:
2945     case OFP13_VERSION: {
2946         struct ofp11_port *op;
2947         if (b->size + sizeof *op <= UINT16_MAX) {
2948             op = ofpbuf_put_uninit(b, sizeof *op);
2949             ofputil_encode_ofp11_port(pp, op);
2950         }
2951         break;
2952     }
2953
2954     default:
2955         NOT_REACHED();
2956     }
2957 }
2958
2959 void
2960 ofputil_append_port_desc_stats_reply(enum ofp_version ofp_version,
2961                                      const struct ofputil_phy_port *pp,
2962                                      struct list *replies)
2963 {
2964     switch (ofp_version) {
2965     case OFP10_VERSION: {
2966         struct ofp10_phy_port *opp;
2967
2968         opp = ofpmp_append(replies, sizeof *opp);
2969         ofputil_encode_ofp10_phy_port(pp, opp);
2970         break;
2971     }
2972
2973     case OFP11_VERSION:
2974     case OFP12_VERSION:
2975     case OFP13_VERSION: {
2976         struct ofp11_port *op;
2977
2978         op = ofpmp_append(replies, sizeof *op);
2979         ofputil_encode_ofp11_port(pp, op);
2980         break;
2981     }
2982
2983     default:
2984       NOT_REACHED();
2985     }
2986 }
2987 \f
2988 /* ofputil_switch_features */
2989
2990 #define OFPC_COMMON (OFPC_FLOW_STATS | OFPC_TABLE_STATS | OFPC_PORT_STATS | \
2991                      OFPC_IP_REASM | OFPC_QUEUE_STATS)
2992 BUILD_ASSERT_DECL((int) OFPUTIL_C_FLOW_STATS == OFPC_FLOW_STATS);
2993 BUILD_ASSERT_DECL((int) OFPUTIL_C_TABLE_STATS == OFPC_TABLE_STATS);
2994 BUILD_ASSERT_DECL((int) OFPUTIL_C_PORT_STATS == OFPC_PORT_STATS);
2995 BUILD_ASSERT_DECL((int) OFPUTIL_C_IP_REASM == OFPC_IP_REASM);
2996 BUILD_ASSERT_DECL((int) OFPUTIL_C_QUEUE_STATS == OFPC_QUEUE_STATS);
2997 BUILD_ASSERT_DECL((int) OFPUTIL_C_ARP_MATCH_IP == OFPC_ARP_MATCH_IP);
2998
2999 struct ofputil_action_bit_translation {
3000     enum ofputil_action_bitmap ofputil_bit;
3001     int of_bit;
3002 };
3003
3004 static const struct ofputil_action_bit_translation of10_action_bits[] = {
3005     { OFPUTIL_A_OUTPUT,       OFPAT10_OUTPUT },
3006     { OFPUTIL_A_SET_VLAN_VID, OFPAT10_SET_VLAN_VID },
3007     { OFPUTIL_A_SET_VLAN_PCP, OFPAT10_SET_VLAN_PCP },
3008     { OFPUTIL_A_STRIP_VLAN,   OFPAT10_STRIP_VLAN },
3009     { OFPUTIL_A_SET_DL_SRC,   OFPAT10_SET_DL_SRC },
3010     { OFPUTIL_A_SET_DL_DST,   OFPAT10_SET_DL_DST },
3011     { OFPUTIL_A_SET_NW_SRC,   OFPAT10_SET_NW_SRC },
3012     { OFPUTIL_A_SET_NW_DST,   OFPAT10_SET_NW_DST },
3013     { OFPUTIL_A_SET_NW_TOS,   OFPAT10_SET_NW_TOS },
3014     { OFPUTIL_A_SET_TP_SRC,   OFPAT10_SET_TP_SRC },
3015     { OFPUTIL_A_SET_TP_DST,   OFPAT10_SET_TP_DST },
3016     { OFPUTIL_A_ENQUEUE,      OFPAT10_ENQUEUE },
3017     { 0, 0 },
3018 };
3019
3020 static enum ofputil_action_bitmap
3021 decode_action_bits(ovs_be32 of_actions,
3022                    const struct ofputil_action_bit_translation *x)
3023 {
3024     enum ofputil_action_bitmap ofputil_actions;
3025
3026     ofputil_actions = 0;
3027     for (; x->ofputil_bit; x++) {
3028         if (of_actions & htonl(1u << x->of_bit)) {
3029             ofputil_actions |= x->ofputil_bit;
3030         }
3031     }
3032     return ofputil_actions;
3033 }
3034
3035 static uint32_t
3036 ofputil_capabilities_mask(enum ofp_version ofp_version)
3037 {
3038     /* Handle capabilities whose bit is unique for all Open Flow versions */
3039     switch (ofp_version) {
3040     case OFP10_VERSION:
3041     case OFP11_VERSION:
3042         return OFPC_COMMON | OFPC_ARP_MATCH_IP;
3043     case OFP12_VERSION:
3044     case OFP13_VERSION:
3045         return OFPC_COMMON | OFPC12_PORT_BLOCKED;
3046     default:
3047         /* Caller needs to check osf->header.version itself */
3048         return 0;
3049     }
3050 }
3051
3052 /* Decodes an OpenFlow 1.0 or 1.1 "switch_features" structure 'osf' into an
3053  * abstract representation in '*features'.  Initializes '*b' to iterate over
3054  * the OpenFlow port structures following 'osf' with later calls to
3055  * ofputil_pull_phy_port().  Returns 0 if successful, otherwise an
3056  * OFPERR_* value.  */
3057 enum ofperr
3058 ofputil_decode_switch_features(const struct ofp_header *oh,
3059                                struct ofputil_switch_features *features,
3060                                struct ofpbuf *b)
3061 {
3062     const struct ofp_switch_features *osf;
3063     enum ofpraw raw;
3064
3065     ofpbuf_use_const(b, oh, ntohs(oh->length));
3066     raw = ofpraw_pull_assert(b);
3067
3068     osf = ofpbuf_pull(b, sizeof *osf);
3069     features->datapath_id = ntohll(osf->datapath_id);
3070     features->n_buffers = ntohl(osf->n_buffers);
3071     features->n_tables = osf->n_tables;
3072     features->auxiliary_id = 0;
3073
3074     features->capabilities = ntohl(osf->capabilities) &
3075         ofputil_capabilities_mask(oh->version);
3076
3077     if (b->size % ofputil_get_phy_port_size(oh->version)) {
3078         return OFPERR_OFPBRC_BAD_LEN;
3079     }
3080
3081     if (raw == OFPRAW_OFPT10_FEATURES_REPLY) {
3082         if (osf->capabilities & htonl(OFPC10_STP)) {
3083             features->capabilities |= OFPUTIL_C_STP;
3084         }
3085         features->actions = decode_action_bits(osf->actions, of10_action_bits);
3086     } else if (raw == OFPRAW_OFPT11_FEATURES_REPLY
3087                || raw == OFPRAW_OFPT13_FEATURES_REPLY) {
3088         if (osf->capabilities & htonl(OFPC11_GROUP_STATS)) {
3089             features->capabilities |= OFPUTIL_C_GROUP_STATS;
3090         }
3091         features->actions = 0;
3092         if (raw == OFPRAW_OFPT13_FEATURES_REPLY) {
3093             features->auxiliary_id = osf->auxiliary_id;
3094         }
3095     } else {
3096         return OFPERR_OFPBRC_BAD_VERSION;
3097     }
3098
3099     return 0;
3100 }
3101
3102 /* Returns true if the maximum number of ports are in 'oh'. */
3103 static bool
3104 max_ports_in_features(const struct ofp_header *oh)
3105 {
3106     size_t pp_size = ofputil_get_phy_port_size(oh->version);
3107     return ntohs(oh->length) + pp_size > UINT16_MAX;
3108 }
3109
3110 /* Given a buffer 'b' that contains a Features Reply message, checks if
3111  * it contains the maximum number of ports that will fit.  If so, it
3112  * returns true and removes the ports from the message.  The caller
3113  * should then send an OFPST_PORT_DESC stats request to get the ports,
3114  * since the switch may have more ports than could be represented in the
3115  * Features Reply.  Otherwise, returns false.
3116  */
3117 bool
3118 ofputil_switch_features_ports_trunc(struct ofpbuf *b)
3119 {
3120     struct ofp_header *oh = b->data;
3121
3122     if (max_ports_in_features(oh)) {
3123         /* Remove all the ports. */
3124         b->size = (sizeof(struct ofp_header)
3125                    + sizeof(struct ofp_switch_features));
3126         ofpmsg_update_length(b);
3127
3128         return true;
3129     }
3130
3131     return false;
3132 }
3133
3134 static ovs_be32
3135 encode_action_bits(enum ofputil_action_bitmap ofputil_actions,
3136                    const struct ofputil_action_bit_translation *x)
3137 {
3138     uint32_t of_actions;
3139
3140     of_actions = 0;
3141     for (; x->ofputil_bit; x++) {
3142         if (ofputil_actions & x->ofputil_bit) {
3143             of_actions |= 1 << x->of_bit;
3144         }
3145     }
3146     return htonl(of_actions);
3147 }
3148
3149 /* Returns a buffer owned by the caller that encodes 'features' in the format
3150  * required by 'protocol' with the given 'xid'.  The caller should append port
3151  * information to the buffer with subsequent calls to
3152  * ofputil_put_switch_features_port(). */
3153 struct ofpbuf *
3154 ofputil_encode_switch_features(const struct ofputil_switch_features *features,
3155                                enum ofputil_protocol protocol, ovs_be32 xid)
3156 {
3157     struct ofp_switch_features *osf;
3158     struct ofpbuf *b;
3159     enum ofp_version version;
3160     enum ofpraw raw;
3161
3162     version = ofputil_protocol_to_ofp_version(protocol);
3163     switch (version) {
3164     case OFP10_VERSION:
3165         raw = OFPRAW_OFPT10_FEATURES_REPLY;
3166         break;
3167     case OFP11_VERSION:
3168     case OFP12_VERSION:
3169         raw = OFPRAW_OFPT11_FEATURES_REPLY;
3170         break;
3171     case OFP13_VERSION:
3172         raw = OFPRAW_OFPT13_FEATURES_REPLY;
3173         break;
3174     default:
3175         NOT_REACHED();
3176     }
3177     b = ofpraw_alloc_xid(raw, version, xid, 0);
3178     osf = ofpbuf_put_zeros(b, sizeof *osf);
3179     osf->datapath_id = htonll(features->datapath_id);
3180     osf->n_buffers = htonl(features->n_buffers);
3181     osf->n_tables = features->n_tables;
3182
3183     osf->capabilities = htonl(features->capabilities & OFPC_COMMON);
3184     osf->capabilities = htonl(features->capabilities &
3185                               ofputil_capabilities_mask(version));
3186     switch (version) {
3187     case OFP10_VERSION:
3188         if (features->capabilities & OFPUTIL_C_STP) {
3189             osf->capabilities |= htonl(OFPC10_STP);
3190         }
3191         osf->actions = encode_action_bits(features->actions, of10_action_bits);
3192         break;
3193     case OFP13_VERSION:
3194         osf->auxiliary_id = features->auxiliary_id;
3195         /* fall through */
3196     case OFP11_VERSION:
3197     case OFP12_VERSION:
3198         if (features->capabilities & OFPUTIL_C_GROUP_STATS) {
3199             osf->capabilities |= htonl(OFPC11_GROUP_STATS);
3200         }
3201         break;
3202     default:
3203         NOT_REACHED();
3204     }
3205
3206     return b;
3207 }
3208
3209 /* Encodes 'pp' into the format required by the switch_features message already
3210  * in 'b', which should have been returned by ofputil_encode_switch_features(),
3211  * and appends the encoded version to 'b'. */
3212 void
3213 ofputil_put_switch_features_port(const struct ofputil_phy_port *pp,
3214                                  struct ofpbuf *b)
3215 {
3216     const struct ofp_header *oh = b->data;
3217
3218     if (oh->version < OFP13_VERSION) {
3219         ofputil_put_phy_port(oh->version, pp, b);
3220     }
3221 }
3222 \f
3223 /* ofputil_port_status */
3224
3225 /* Decodes the OpenFlow "port status" message in '*ops' into an abstract form
3226  * in '*ps'.  Returns 0 if successful, otherwise an OFPERR_* value. */
3227 enum ofperr
3228 ofputil_decode_port_status(const struct ofp_header *oh,
3229                            struct ofputil_port_status *ps)
3230 {
3231     const struct ofp_port_status *ops;
3232     struct ofpbuf b;
3233     int retval;
3234
3235     ofpbuf_use_const(&b, oh, ntohs(oh->length));
3236     ofpraw_pull_assert(&b);
3237     ops = ofpbuf_pull(&b, sizeof *ops);
3238
3239     if (ops->reason != OFPPR_ADD &&
3240         ops->reason != OFPPR_DELETE &&
3241         ops->reason != OFPPR_MODIFY) {
3242         return OFPERR_NXBRC_BAD_REASON;
3243     }
3244     ps->reason = ops->reason;
3245
3246     retval = ofputil_pull_phy_port(oh->version, &b, &ps->desc);
3247     ovs_assert(retval != EOF);
3248     return retval;
3249 }
3250
3251 /* Converts the abstract form of a "port status" message in '*ps' into an
3252  * OpenFlow message suitable for 'protocol', and returns that encoded form in
3253  * a buffer owned by the caller. */
3254 struct ofpbuf *
3255 ofputil_encode_port_status(const struct ofputil_port_status *ps,
3256                            enum ofputil_protocol protocol)
3257 {
3258     struct ofp_port_status *ops;
3259     struct ofpbuf *b;
3260     enum ofp_version version;
3261     enum ofpraw raw;
3262
3263     version = ofputil_protocol_to_ofp_version(protocol);
3264     switch (version) {
3265     case OFP10_VERSION:
3266         raw = OFPRAW_OFPT10_PORT_STATUS;
3267         break;
3268
3269     case OFP11_VERSION:
3270     case OFP12_VERSION:
3271     case OFP13_VERSION:
3272         raw = OFPRAW_OFPT11_PORT_STATUS;
3273         break;
3274
3275     default:
3276         NOT_REACHED();
3277     }
3278
3279     b = ofpraw_alloc_xid(raw, version, htonl(0), 0);
3280     ops = ofpbuf_put_zeros(b, sizeof *ops);
3281     ops->reason = ps->reason;
3282     ofputil_put_phy_port(version, &ps->desc, b);
3283     ofpmsg_update_length(b);
3284     return b;
3285 }
3286 \f
3287 /* ofputil_port_mod */
3288
3289 /* Decodes the OpenFlow "port mod" message in '*oh' into an abstract form in
3290  * '*pm'.  Returns 0 if successful, otherwise an OFPERR_* value. */
3291 enum ofperr
3292 ofputil_decode_port_mod(const struct ofp_header *oh,
3293                         struct ofputil_port_mod *pm)
3294 {
3295     enum ofpraw raw;
3296     struct ofpbuf b;
3297
3298     ofpbuf_use_const(&b, oh, ntohs(oh->length));
3299     raw = ofpraw_pull_assert(&b);
3300
3301     if (raw == OFPRAW_OFPT10_PORT_MOD) {
3302         const struct ofp10_port_mod *opm = b.data;
3303
3304         pm->port_no = ntohs(opm->port_no);
3305         memcpy(pm->hw_addr, opm->hw_addr, ETH_ADDR_LEN);
3306         pm->config = ntohl(opm->config) & OFPPC10_ALL;
3307         pm->mask = ntohl(opm->mask) & OFPPC10_ALL;
3308         pm->advertise = netdev_port_features_from_ofp10(opm->advertise);
3309     } else if (raw == OFPRAW_OFPT11_PORT_MOD) {
3310         const struct ofp11_port_mod *opm = b.data;
3311         enum ofperr error;
3312
3313         error = ofputil_port_from_ofp11(opm->port_no, &pm->port_no);
3314         if (error) {
3315             return error;
3316         }
3317
3318         memcpy(pm->hw_addr, opm->hw_addr, ETH_ADDR_LEN);
3319         pm->config = ntohl(opm->config) & OFPPC11_ALL;
3320         pm->mask = ntohl(opm->mask) & OFPPC11_ALL;
3321         pm->advertise = netdev_port_features_from_ofp11(opm->advertise);
3322     } else {
3323         return OFPERR_OFPBRC_BAD_TYPE;
3324     }
3325
3326     pm->config &= pm->mask;
3327     return 0;
3328 }
3329
3330 /* Converts the abstract form of a "port mod" message in '*pm' into an OpenFlow
3331  * message suitable for 'protocol', and returns that encoded form in a buffer
3332  * owned by the caller. */
3333 struct ofpbuf *
3334 ofputil_encode_port_mod(const struct ofputil_port_mod *pm,
3335                         enum ofputil_protocol protocol)
3336 {
3337     enum ofp_version ofp_version = ofputil_protocol_to_ofp_version(protocol);
3338     struct ofpbuf *b;
3339
3340     switch (ofp_version) {
3341     case OFP10_VERSION: {
3342         struct ofp10_port_mod *opm;
3343
3344         b = ofpraw_alloc(OFPRAW_OFPT10_PORT_MOD, ofp_version, 0);
3345         opm = ofpbuf_put_zeros(b, sizeof *opm);
3346         opm->port_no = htons(pm->port_no);
3347         memcpy(opm->hw_addr, pm->hw_addr, ETH_ADDR_LEN);
3348         opm->config = htonl(pm->config & OFPPC10_ALL);
3349         opm->mask = htonl(pm->mask & OFPPC10_ALL);
3350         opm->advertise = netdev_port_features_to_ofp10(pm->advertise);
3351         break;
3352     }
3353
3354     case OFP11_VERSION:
3355     case OFP12_VERSION:
3356     case OFP13_VERSION: {
3357         struct ofp11_port_mod *opm;
3358
3359         b = ofpraw_alloc(OFPRAW_OFPT11_PORT_MOD, ofp_version, 0);
3360         opm = ofpbuf_put_zeros(b, sizeof *opm);
3361         opm->port_no = ofputil_port_to_ofp11(pm->port_no);
3362         memcpy(opm->hw_addr, pm->hw_addr, ETH_ADDR_LEN);
3363         opm->config = htonl(pm->config & OFPPC11_ALL);
3364         opm->mask = htonl(pm->mask & OFPPC11_ALL);
3365         opm->advertise = netdev_port_features_to_ofp11(pm->advertise);
3366         break;
3367     }
3368
3369     default:
3370         NOT_REACHED();
3371     }
3372
3373     return b;
3374 }
3375 \f
3376 /* ofputil_role_request */
3377
3378 /* Decodes the OpenFlow "role request" or "role reply" message in '*oh' into
3379  * an abstract form in '*rr'.  Returns 0 if successful, otherwise an
3380  * OFPERR_* value. */
3381 enum ofperr
3382 ofputil_decode_role_message(const struct ofp_header *oh,
3383                             struct ofputil_role_request *rr)
3384 {
3385     struct ofpbuf b;
3386     enum ofpraw raw;
3387
3388     ofpbuf_use_const(&b, oh, ntohs(oh->length));
3389     raw = ofpraw_pull_assert(&b);
3390
3391     if (raw == OFPRAW_OFPT12_ROLE_REQUEST ||
3392         raw == OFPRAW_OFPT12_ROLE_REPLY) {
3393         const struct ofp12_role_request *orr = b.l3;
3394
3395         if (orr->role != htonl(OFPCR12_ROLE_NOCHANGE) &&
3396             orr->role != htonl(OFPCR12_ROLE_EQUAL) &&
3397             orr->role != htonl(OFPCR12_ROLE_MASTER) &&
3398             orr->role != htonl(OFPCR12_ROLE_SLAVE)) {
3399             return OFPERR_OFPRRFC_BAD_ROLE;
3400         }
3401
3402         rr->role = ntohl(orr->role);
3403         if (raw == OFPRAW_OFPT12_ROLE_REPLY
3404             || orr->role == htonl(OFPCR12_ROLE_NOCHANGE)) {
3405             rr->have_generation_id = false;
3406             rr->generation_id = 0;
3407         } else {
3408             rr->have_generation_id = true;
3409             rr->generation_id = ntohll(orr->generation_id);
3410         }
3411     } else if (raw == OFPRAW_NXT_ROLE_REQUEST ||
3412                raw == OFPRAW_NXT_ROLE_REPLY) {
3413         const struct nx_role_request *nrr = b.l3;
3414
3415         BUILD_ASSERT(NX_ROLE_OTHER + 1 == OFPCR12_ROLE_EQUAL);
3416         BUILD_ASSERT(NX_ROLE_MASTER + 1 == OFPCR12_ROLE_MASTER);
3417         BUILD_ASSERT(NX_ROLE_SLAVE + 1 == OFPCR12_ROLE_SLAVE);
3418
3419         if (nrr->role != htonl(NX_ROLE_OTHER) &&
3420             nrr->role != htonl(NX_ROLE_MASTER) &&
3421             nrr->role != htonl(NX_ROLE_SLAVE)) {
3422             return OFPERR_OFPRRFC_BAD_ROLE;
3423         }
3424
3425         rr->role = ntohl(nrr->role) + 1;
3426         rr->have_generation_id = false;
3427         rr->generation_id = 0;
3428     } else {
3429         NOT_REACHED();
3430     }
3431
3432     return 0;
3433 }
3434
3435 /* Returns an encoded form of a role reply suitable for the "request" in a
3436  * buffer owned by the caller. */
3437 struct ofpbuf *
3438 ofputil_encode_role_reply(const struct ofp_header *request,
3439                           const struct ofputil_role_request *rr)
3440 {
3441     struct ofpbuf *buf;
3442     enum ofpraw raw;
3443
3444     raw = ofpraw_decode_assert(request);
3445     if (raw == OFPRAW_OFPT12_ROLE_REQUEST) {
3446         struct ofp12_role_request *orr;
3447
3448         buf = ofpraw_alloc_reply(OFPRAW_OFPT12_ROLE_REPLY, request, 0);
3449         orr = ofpbuf_put_zeros(buf, sizeof *orr);
3450         orr->role = htonl(rr->role);
3451
3452         /*
3453          * OpenFlow specification does not specify use of generation_id field
3454          * on reply messages.  Intuitively, it would seem a good idea to return
3455          * the current value.  However, the current value is undefined
3456          * initially, and there is no way to insert an undefined value in the
3457          * message.  Therefore we leave the generation_id zeroed on reply
3458          * messages.
3459          *
3460          * A request for clarification has been filed with the Open Networking
3461          * Foundation as EXT-272.
3462          */
3463         orr->generation_id = htonll(0);
3464     } else if (raw == OFPRAW_NXT_ROLE_REQUEST) {
3465         struct nx_role_request *nrr;
3466
3467         BUILD_ASSERT(NX_ROLE_OTHER == OFPCR12_ROLE_EQUAL - 1);
3468         BUILD_ASSERT(NX_ROLE_MASTER == OFPCR12_ROLE_MASTER - 1);
3469         BUILD_ASSERT(NX_ROLE_SLAVE == OFPCR12_ROLE_SLAVE - 1);
3470
3471         buf = ofpraw_alloc_reply(OFPRAW_NXT_ROLE_REPLY, request, 0);
3472         nrr = ofpbuf_put_zeros(buf, sizeof *nrr);
3473         nrr->role = htonl(rr->role - 1);
3474     } else {
3475         NOT_REACHED();
3476     }
3477
3478     return buf;
3479 }
3480 \f
3481 /* Table stats. */
3482
3483 static void
3484 ofputil_put_ofp10_table_stats(const struct ofp12_table_stats *in,
3485                               struct ofpbuf *buf)
3486 {
3487     struct wc_map {
3488         enum ofp10_flow_wildcards wc10;
3489         enum oxm12_ofb_match_fields mf12;
3490     };
3491
3492     static const struct wc_map wc_map[] = {
3493         { OFPFW10_IN_PORT,     OFPXMT12_OFB_IN_PORT },
3494         { OFPFW10_DL_VLAN,     OFPXMT12_OFB_VLAN_VID },
3495         { OFPFW10_DL_SRC,      OFPXMT12_OFB_ETH_SRC },
3496         { OFPFW10_DL_DST,      OFPXMT12_OFB_ETH_DST},
3497         { OFPFW10_DL_TYPE,     OFPXMT12_OFB_ETH_TYPE },
3498         { OFPFW10_NW_PROTO,    OFPXMT12_OFB_IP_PROTO },
3499         { OFPFW10_TP_SRC,      OFPXMT12_OFB_TCP_SRC },
3500         { OFPFW10_TP_DST,      OFPXMT12_OFB_TCP_DST },
3501         { OFPFW10_NW_SRC_MASK, OFPXMT12_OFB_IPV4_SRC },
3502         { OFPFW10_NW_DST_MASK, OFPXMT12_OFB_IPV4_DST },
3503         { OFPFW10_DL_VLAN_PCP, OFPXMT12_OFB_VLAN_PCP },
3504         { OFPFW10_NW_TOS,      OFPXMT12_OFB_IP_DSCP },
3505     };
3506
3507     struct ofp10_table_stats *out;
3508     const struct wc_map *p;
3509
3510     out = ofpbuf_put_zeros(buf, sizeof *out);
3511     out->table_id = in->table_id;
3512     ovs_strlcpy(out->name, in->name, sizeof out->name);
3513     out->wildcards = 0;
3514     for (p = wc_map; p < &wc_map[ARRAY_SIZE(wc_map)]; p++) {
3515         if (in->wildcards & htonll(1ULL << p->mf12)) {
3516             out->wildcards |= htonl(p->wc10);
3517         }
3518     }
3519     out->max_entries = in->max_entries;
3520     out->active_count = in->active_count;
3521     put_32aligned_be64(&out->lookup_count, in->lookup_count);
3522     put_32aligned_be64(&out->matched_count, in->matched_count);
3523 }
3524
3525 static ovs_be32
3526 oxm12_to_ofp11_flow_match_fields(ovs_be64 oxm12)
3527 {
3528     struct map {
3529         enum ofp11_flow_match_fields fmf11;
3530         enum oxm12_ofb_match_fields mf12;
3531     };
3532
3533     static const struct map map[] = {
3534         { OFPFMF11_IN_PORT,     OFPXMT12_OFB_IN_PORT },
3535         { OFPFMF11_DL_VLAN,     OFPXMT12_OFB_VLAN_VID },
3536         { OFPFMF11_DL_VLAN_PCP, OFPXMT12_OFB_VLAN_PCP },
3537         { OFPFMF11_DL_TYPE,     OFPXMT12_OFB_ETH_TYPE },
3538         { OFPFMF11_NW_TOS,      OFPXMT12_OFB_IP_DSCP },
3539         { OFPFMF11_NW_PROTO,    OFPXMT12_OFB_IP_PROTO },
3540         { OFPFMF11_TP_SRC,      OFPXMT12_OFB_TCP_SRC },
3541         { OFPFMF11_TP_DST,      OFPXMT12_OFB_TCP_DST },
3542         { OFPFMF11_MPLS_LABEL,  OFPXMT12_OFB_MPLS_LABEL },
3543         { OFPFMF11_MPLS_TC,     OFPXMT12_OFB_MPLS_TC },
3544         /* I don't know what OFPFMF11_TYPE means. */
3545         { OFPFMF11_DL_SRC,      OFPXMT12_OFB_ETH_SRC },
3546         { OFPFMF11_DL_DST,      OFPXMT12_OFB_ETH_DST },
3547         { OFPFMF11_NW_SRC,      OFPXMT12_OFB_IPV4_SRC },
3548         { OFPFMF11_NW_DST,      OFPXMT12_OFB_IPV4_DST },
3549         { OFPFMF11_METADATA,    OFPXMT12_OFB_METADATA },
3550     };
3551
3552     const struct map *p;
3553     uint32_t fmf11;
3554
3555     fmf11 = 0;
3556     for (p = map; p < &map[ARRAY_SIZE(map)]; p++) {
3557         if (oxm12 & htonll(1ULL << p->mf12)) {
3558             fmf11 |= p->fmf11;
3559         }
3560     }
3561     return htonl(fmf11);
3562 }
3563
3564 static void
3565 ofputil_put_ofp11_table_stats(const struct ofp12_table_stats *in,
3566                               struct ofpbuf *buf)
3567 {
3568     struct ofp11_table_stats *out;
3569
3570     out = ofpbuf_put_zeros(buf, sizeof *out);
3571     out->table_id = in->table_id;
3572     ovs_strlcpy(out->name, in->name, sizeof out->name);
3573     out->wildcards = oxm12_to_ofp11_flow_match_fields(in->wildcards);
3574     out->match = oxm12_to_ofp11_flow_match_fields(in->match);
3575     out->instructions = in->instructions;
3576     out->write_actions = in->write_actions;
3577     out->apply_actions = in->apply_actions;
3578     out->config = in->config;
3579     out->max_entries = in->max_entries;
3580     out->active_count = in->active_count;
3581     out->lookup_count = in->lookup_count;
3582     out->matched_count = in->matched_count;
3583 }
3584
3585 static void
3586 ofputil_put_ofp13_table_stats(const struct ofp12_table_stats *in,
3587                               struct ofpbuf *buf)
3588 {
3589     struct ofp13_table_stats *out;
3590
3591     /* OF 1.3 splits table features off the ofp_table_stats,
3592      * so there is not much here. */
3593
3594     out = ofpbuf_put_uninit(buf, sizeof *out);
3595     out->table_id = in->table_id;
3596     out->active_count = in->active_count;
3597     out->lookup_count = in->lookup_count;
3598     out->matched_count = in->matched_count;
3599 }
3600
3601 struct ofpbuf *
3602 ofputil_encode_table_stats_reply(const struct ofp12_table_stats stats[], int n,
3603                                  const struct ofp_header *request)
3604 {
3605     struct ofpbuf *reply;
3606     int i;
3607
3608     reply = ofpraw_alloc_stats_reply(request, n * sizeof *stats);
3609
3610     switch ((enum ofp_version) request->version) {
3611     case OFP10_VERSION:
3612         for (i = 0; i < n; i++) {
3613             ofputil_put_ofp10_table_stats(&stats[i], reply);
3614         }
3615         break;
3616
3617     case OFP11_VERSION:
3618         for (i = 0; i < n; i++) {
3619             ofputil_put_ofp11_table_stats(&stats[i], reply);
3620         }
3621         break;
3622
3623     case OFP12_VERSION:
3624         ofpbuf_put(reply, stats, n * sizeof *stats);
3625         break;
3626
3627     case OFP13_VERSION:
3628         for (i = 0; i < n; i++) {
3629             ofputil_put_ofp13_table_stats(&stats[i], reply);
3630         }
3631         break;
3632
3633     default:
3634         NOT_REACHED();
3635     }
3636
3637     return reply;
3638 }
3639 \f
3640 /* ofputil_flow_monitor_request */
3641
3642 /* Converts an NXST_FLOW_MONITOR request in 'msg' into an abstract
3643  * ofputil_flow_monitor_request in 'rq'.
3644  *
3645  * Multiple NXST_FLOW_MONITOR requests can be packed into a single OpenFlow
3646  * message.  Calling this function multiple times for a single 'msg' iterates
3647  * through the requests.  The caller must initially leave 'msg''s layer
3648  * pointers null and not modify them between calls.
3649  *
3650  * Returns 0 if successful, EOF if no requests were left in this 'msg',
3651  * otherwise an OFPERR_* value. */
3652 int
3653 ofputil_decode_flow_monitor_request(struct ofputil_flow_monitor_request *rq,
3654                                     struct ofpbuf *msg)
3655 {
3656     struct nx_flow_monitor_request *nfmr;
3657     uint16_t flags;
3658
3659     if (!msg->l2) {
3660         msg->l2 = msg->data;
3661         ofpraw_pull_assert(msg);
3662     }
3663
3664     if (!msg->size) {
3665         return EOF;
3666     }
3667
3668     nfmr = ofpbuf_try_pull(msg, sizeof *nfmr);
3669     if (!nfmr) {
3670         VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW_MONITOR request has %zu "
3671                      "leftover bytes at end", msg->size);
3672         return OFPERR_OFPBRC_BAD_LEN;
3673     }
3674
3675     flags = ntohs(nfmr->flags);
3676     if (!(flags & (NXFMF_ADD | NXFMF_DELETE | NXFMF_MODIFY))
3677         || flags & ~(NXFMF_INITIAL | NXFMF_ADD | NXFMF_DELETE
3678                      | NXFMF_MODIFY | NXFMF_ACTIONS | NXFMF_OWN)) {
3679         VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW_MONITOR has bad flags %#"PRIx16,
3680                      flags);
3681         return OFPERR_NXBRC_FM_BAD_FLAGS;
3682     }
3683
3684     if (!is_all_zeros(nfmr->zeros, sizeof nfmr->zeros)) {
3685         return OFPERR_NXBRC_MUST_BE_ZERO;
3686     }
3687
3688     rq->id = ntohl(nfmr->id);
3689     rq->flags = flags;
3690     rq->out_port = ntohs(nfmr->out_port);
3691     rq->table_id = nfmr->table_id;
3692
3693     return nx_pull_match(msg, ntohs(nfmr->match_len), &rq->match, NULL, NULL);
3694 }
3695
3696 void
3697 ofputil_append_flow_monitor_request(
3698     const struct ofputil_flow_monitor_request *rq, struct ofpbuf *msg)
3699 {
3700     struct nx_flow_monitor_request *nfmr;
3701     size_t start_ofs;
3702     int match_len;
3703
3704     if (!msg->size) {
3705         ofpraw_put(OFPRAW_NXST_FLOW_MONITOR_REQUEST, OFP10_VERSION, msg);
3706     }
3707
3708     start_ofs = msg->size;
3709     ofpbuf_put_zeros(msg, sizeof *nfmr);
3710     match_len = nx_put_match(msg, &rq->match, htonll(0), htonll(0));
3711
3712     nfmr = ofpbuf_at_assert(msg, start_ofs, sizeof *nfmr);
3713     nfmr->id = htonl(rq->id);
3714     nfmr->flags = htons(rq->flags);
3715     nfmr->out_port = htons(rq->out_port);
3716     nfmr->match_len = htons(match_len);
3717     nfmr->table_id = rq->table_id;
3718 }
3719
3720 /* Converts an NXST_FLOW_MONITOR reply (also known as a flow update) in 'msg'
3721  * into an abstract ofputil_flow_update in 'update'.  The caller must have
3722  * initialized update->match to point to space allocated for a match.
3723  *
3724  * Uses 'ofpacts' to store the abstract OFPACT_* version of the update's
3725  * actions (except for NXFME_ABBREV, which never includes actions).  The caller
3726  * must initialize 'ofpacts' and retains ownership of it.  'update->ofpacts'
3727  * will point into the 'ofpacts' buffer.
3728  *
3729  * Multiple flow updates can be packed into a single OpenFlow message.  Calling
3730  * this function multiple times for a single 'msg' iterates through the
3731  * updates.  The caller must initially leave 'msg''s layer pointers null and
3732  * not modify them between calls.
3733  *
3734  * Returns 0 if successful, EOF if no updates were left in this 'msg',
3735  * otherwise an OFPERR_* value. */
3736 int
3737 ofputil_decode_flow_update(struct ofputil_flow_update *update,
3738                            struct ofpbuf *msg, struct ofpbuf *ofpacts)
3739 {
3740     struct nx_flow_update_header *nfuh;
3741     unsigned int length;
3742
3743     if (!msg->l2) {
3744         msg->l2 = msg->data;
3745         ofpraw_pull_assert(msg);
3746     }
3747
3748     if (!msg->size) {
3749         return EOF;
3750     }
3751
3752     if (msg->size < sizeof(struct nx_flow_update_header)) {
3753         goto bad_len;
3754     }
3755
3756     nfuh = msg->data;
3757     update->event = ntohs(nfuh->event);
3758     length = ntohs(nfuh->length);
3759     if (length > msg->size || length % 8) {
3760         goto bad_len;
3761     }
3762
3763     if (update->event == NXFME_ABBREV) {
3764         struct nx_flow_update_abbrev *nfua;
3765
3766         if (length != sizeof *nfua) {
3767             goto bad_len;
3768         }
3769
3770         nfua = ofpbuf_pull(msg, sizeof *nfua);
3771         update->xid = nfua->xid;
3772         return 0;
3773     } else if (update->event == NXFME_ADDED
3774                || update->event == NXFME_DELETED
3775                || update->event == NXFME_MODIFIED) {
3776         struct nx_flow_update_full *nfuf;
3777         unsigned int actions_len;
3778         unsigned int match_len;
3779         enum ofperr error;
3780
3781         if (length < sizeof *nfuf) {
3782             goto bad_len;
3783         }
3784
3785         nfuf = ofpbuf_pull(msg, sizeof *nfuf);
3786         match_len = ntohs(nfuf->match_len);
3787         if (sizeof *nfuf + match_len > length) {
3788             goto bad_len;
3789         }
3790
3791         update->reason = ntohs(nfuf->reason);
3792         update->idle_timeout = ntohs(nfuf->idle_timeout);
3793         update->hard_timeout = ntohs(nfuf->hard_timeout);
3794         update->table_id = nfuf->table_id;
3795         update->cookie = nfuf->cookie;
3796         update->priority = ntohs(nfuf->priority);
3797
3798         error = nx_pull_match(msg, match_len, update->match, NULL, NULL);
3799         if (error) {
3800             return error;
3801         }
3802
3803         actions_len = length - sizeof *nfuf - ROUND_UP(match_len, 8);
3804         error = ofpacts_pull_openflow10(msg, actions_len, ofpacts);
3805         if (error) {
3806             return error;
3807         }
3808
3809         update->ofpacts = ofpacts->data;
3810         update->ofpacts_len = ofpacts->size;
3811         return 0;
3812     } else {
3813         VLOG_WARN_RL(&bad_ofmsg_rl,
3814                      "NXST_FLOW_MONITOR reply has bad event %"PRIu16,
3815                      ntohs(nfuh->event));
3816         return OFPERR_NXBRC_FM_BAD_EVENT;
3817     }
3818
3819 bad_len:
3820     VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW_MONITOR reply has %zu "
3821                  "leftover bytes at end", msg->size);
3822     return OFPERR_OFPBRC_BAD_LEN;
3823 }
3824
3825 uint32_t
3826 ofputil_decode_flow_monitor_cancel(const struct ofp_header *oh)
3827 {
3828     const struct nx_flow_monitor_cancel *cancel = ofpmsg_body(oh);
3829
3830     return ntohl(cancel->id);
3831 }
3832
3833 struct ofpbuf *
3834 ofputil_encode_flow_monitor_cancel(uint32_t id)
3835 {
3836     struct nx_flow_monitor_cancel *nfmc;
3837     struct ofpbuf *msg;
3838
3839     msg = ofpraw_alloc(OFPRAW_NXT_FLOW_MONITOR_CANCEL, OFP10_VERSION, 0);
3840     nfmc = ofpbuf_put_uninit(msg, sizeof *nfmc);
3841     nfmc->id = htonl(id);
3842     return msg;
3843 }
3844
3845 void
3846 ofputil_start_flow_update(struct list *replies)
3847 {
3848     struct ofpbuf *msg;
3849
3850     msg = ofpraw_alloc_xid(OFPRAW_NXST_FLOW_MONITOR_REPLY, OFP10_VERSION,
3851                            htonl(0), 1024);
3852
3853     list_init(replies);
3854     list_push_back(replies, &msg->list_node);
3855 }
3856
3857 void
3858 ofputil_append_flow_update(const struct ofputil_flow_update *update,
3859                            struct list *replies)
3860 {
3861     struct nx_flow_update_header *nfuh;
3862     struct ofpbuf *msg;
3863     size_t start_ofs;
3864
3865     msg = ofpbuf_from_list(list_back(replies));
3866     start_ofs = msg->size;
3867
3868     if (update->event == NXFME_ABBREV) {
3869         struct nx_flow_update_abbrev *nfua;
3870
3871         nfua = ofpbuf_put_zeros(msg, sizeof *nfua);
3872         nfua->xid = update->xid;
3873     } else {
3874         struct nx_flow_update_full *nfuf;
3875         int match_len;
3876
3877         ofpbuf_put_zeros(msg, sizeof *nfuf);
3878         match_len = nx_put_match(msg, update->match, htonll(0), htonll(0));
3879         ofpacts_put_openflow10(update->ofpacts, update->ofpacts_len, msg);
3880
3881         nfuf = ofpbuf_at_assert(msg, start_ofs, sizeof *nfuf);
3882         nfuf->reason = htons(update->reason);
3883         nfuf->priority = htons(update->priority);
3884         nfuf->idle_timeout = htons(update->idle_timeout);
3885         nfuf->hard_timeout = htons(update->hard_timeout);
3886         nfuf->match_len = htons(match_len);
3887         nfuf->table_id = update->table_id;
3888         nfuf->cookie = update->cookie;
3889     }
3890
3891     nfuh = ofpbuf_at_assert(msg, start_ofs, sizeof *nfuh);
3892     nfuh->length = htons(msg->size - start_ofs);
3893     nfuh->event = htons(update->event);
3894
3895     ofpmp_postappend(replies, start_ofs);
3896 }
3897 \f
3898 struct ofpbuf *
3899 ofputil_encode_packet_out(const struct ofputil_packet_out *po,
3900                           enum ofputil_protocol protocol)
3901 {
3902     enum ofp_version ofp_version = ofputil_protocol_to_ofp_version(protocol);
3903     struct ofpbuf *msg;
3904     size_t size;
3905
3906     size = po->ofpacts_len;
3907     if (po->buffer_id == UINT32_MAX) {
3908         size += po->packet_len;
3909     }
3910
3911     switch (ofp_version) {
3912     case OFP10_VERSION: {
3913         struct ofp10_packet_out *opo;
3914         size_t actions_ofs;
3915
3916         msg = ofpraw_alloc(OFPRAW_OFPT10_PACKET_OUT, OFP10_VERSION, size);
3917         ofpbuf_put_zeros(msg, sizeof *opo);
3918         actions_ofs = msg->size;
3919         ofpacts_put_openflow10(po->ofpacts, po->ofpacts_len, msg);
3920
3921         opo = msg->l3;
3922         opo->buffer_id = htonl(po->buffer_id);
3923         opo->in_port = htons(po->in_port);
3924         opo->actions_len = htons(msg->size - actions_ofs);
3925         break;
3926     }
3927
3928     case OFP11_VERSION:
3929     case OFP12_VERSION:
3930     case OFP13_VERSION: {
3931         struct ofp11_packet_out *opo;
3932         size_t len;
3933
3934         msg = ofpraw_alloc(OFPRAW_OFPT11_PACKET_OUT, ofp_version, size);
3935         ofpbuf_put_zeros(msg, sizeof *opo);
3936         len = ofpacts_put_openflow11_actions(po->ofpacts, po->ofpacts_len, msg);
3937
3938         opo = msg->l3;
3939         opo->buffer_id = htonl(po->buffer_id);
3940         opo->in_port = ofputil_port_to_ofp11(po->in_port);
3941         opo->actions_len = htons(len);
3942         break;
3943     }
3944
3945     default:
3946         NOT_REACHED();
3947     }
3948
3949     if (po->buffer_id == UINT32_MAX) {
3950         ofpbuf_put(msg, po->packet, po->packet_len);
3951     }
3952
3953     ofpmsg_update_length(msg);
3954
3955     return msg;
3956 }
3957 \f
3958 /* Creates and returns an OFPT_ECHO_REQUEST message with an empty payload. */
3959 struct ofpbuf *
3960 make_echo_request(enum ofp_version ofp_version)
3961 {
3962     return ofpraw_alloc_xid(OFPRAW_OFPT_ECHO_REQUEST, ofp_version,
3963                             htonl(0), 0);
3964 }
3965
3966 /* Creates and returns an OFPT_ECHO_REPLY message matching the
3967  * OFPT_ECHO_REQUEST message in 'rq'. */
3968 struct ofpbuf *
3969 make_echo_reply(const struct ofp_header *rq)
3970 {
3971     struct ofpbuf rq_buf;
3972     struct ofpbuf *reply;
3973
3974     ofpbuf_use_const(&rq_buf, rq, ntohs(rq->length));
3975     ofpraw_pull_assert(&rq_buf);
3976
3977     reply = ofpraw_alloc_reply(OFPRAW_OFPT_ECHO_REPLY, rq, rq_buf.size);
3978     ofpbuf_put(reply, rq_buf.data, rq_buf.size);
3979     return reply;
3980 }
3981
3982 struct ofpbuf *
3983 ofputil_encode_barrier_request(enum ofp_version ofp_version)
3984 {
3985     enum ofpraw type;
3986
3987     switch (ofp_version) {
3988     case OFP13_VERSION:
3989     case OFP12_VERSION:
3990     case OFP11_VERSION:
3991         type = OFPRAW_OFPT11_BARRIER_REQUEST;
3992         break;
3993
3994     case OFP10_VERSION:
3995         type = OFPRAW_OFPT10_BARRIER_REQUEST;
3996         break;
3997
3998     default:
3999         NOT_REACHED();
4000     }
4001
4002     return ofpraw_alloc(type, ofp_version, 0);
4003 }
4004
4005 const char *
4006 ofputil_frag_handling_to_string(enum ofp_config_flags flags)
4007 {
4008     switch (flags & OFPC_FRAG_MASK) {
4009     case OFPC_FRAG_NORMAL:   return "normal";
4010     case OFPC_FRAG_DROP:     return "drop";
4011     case OFPC_FRAG_REASM:    return "reassemble";
4012     case OFPC_FRAG_NX_MATCH: return "nx-match";
4013     }
4014
4015     NOT_REACHED();
4016 }
4017
4018 bool
4019 ofputil_frag_handling_from_string(const char *s, enum ofp_config_flags *flags)
4020 {
4021     if (!strcasecmp(s, "normal")) {
4022         *flags = OFPC_FRAG_NORMAL;
4023     } else if (!strcasecmp(s, "drop")) {
4024         *flags = OFPC_FRAG_DROP;
4025     } else if (!strcasecmp(s, "reassemble")) {
4026         *flags = OFPC_FRAG_REASM;
4027     } else if (!strcasecmp(s, "nx-match")) {
4028         *flags = OFPC_FRAG_NX_MATCH;
4029     } else {
4030         return false;
4031     }
4032     return true;
4033 }
4034
4035 /* Converts the OpenFlow 1.1+ port number 'ofp11_port' into an OpenFlow 1.0
4036  * port number and stores the latter in '*ofp10_port', for the purpose of
4037  * decoding OpenFlow 1.1+ protocol messages.  Returns 0 if successful,
4038  * otherwise an OFPERR_* number.
4039  *
4040  * See the definition of OFP11_MAX for an explanation of the mapping. */
4041 enum ofperr
4042 ofputil_port_from_ofp11(ovs_be32 ofp11_port, uint16_t *ofp10_port)
4043 {
4044     uint32_t ofp11_port_h = ntohl(ofp11_port);
4045
4046     if (ofp11_port_h < OFPP_MAX) {
4047         *ofp10_port = ofp11_port_h;
4048         return 0;
4049     } else if (ofp11_port_h >= OFPP11_MAX) {
4050         *ofp10_port = ofp11_port_h - OFPP11_OFFSET;
4051         return 0;
4052     } else {
4053         VLOG_WARN_RL(&bad_ofmsg_rl, "port %"PRIu32" is outside the supported "
4054                      "range 0 through %d or 0x%"PRIx32" through 0x%"PRIx32,
4055                      ofp11_port_h, OFPP_MAX - 1,
4056                      (uint32_t) OFPP11_MAX, UINT32_MAX);
4057         return OFPERR_OFPBAC_BAD_OUT_PORT;
4058     }
4059 }
4060
4061 /* Returns the OpenFlow 1.1+ port number equivalent to the OpenFlow 1.0 port
4062  * number 'ofp10_port', for encoding OpenFlow 1.1+ protocol messages.
4063  *
4064  * See the definition of OFP11_MAX for an explanation of the mapping. */
4065 ovs_be32
4066 ofputil_port_to_ofp11(uint16_t ofp10_port)
4067 {
4068     return htonl(ofp10_port < OFPP_MAX
4069                  ? ofp10_port
4070                  : ofp10_port + OFPP11_OFFSET);
4071 }
4072
4073 /* Checks that 'port' is a valid output port for the OFPAT10_OUTPUT action, given
4074  * that the switch will never have more than 'max_ports' ports.  Returns 0 if
4075  * 'port' is valid, otherwise an OpenFlow return code. */
4076 enum ofperr
4077 ofputil_check_output_port(uint16_t port, int max_ports)
4078 {
4079     switch (port) {
4080     case OFPP_IN_PORT:
4081     case OFPP_TABLE:
4082     case OFPP_NORMAL:
4083     case OFPP_FLOOD:
4084     case OFPP_ALL:
4085     case OFPP_CONTROLLER:
4086     case OFPP_NONE:
4087     case OFPP_LOCAL:
4088         return 0;
4089
4090     default:
4091         if (port < max_ports) {
4092             return 0;
4093         }
4094         return OFPERR_OFPBAC_BAD_OUT_PORT;
4095     }
4096 }
4097
4098 #define OFPUTIL_NAMED_PORTS                     \
4099         OFPUTIL_NAMED_PORT(IN_PORT)             \
4100         OFPUTIL_NAMED_PORT(TABLE)               \
4101         OFPUTIL_NAMED_PORT(NORMAL)              \
4102         OFPUTIL_NAMED_PORT(FLOOD)               \
4103         OFPUTIL_NAMED_PORT(ALL)                 \
4104         OFPUTIL_NAMED_PORT(CONTROLLER)          \
4105         OFPUTIL_NAMED_PORT(LOCAL)               \
4106         OFPUTIL_NAMED_PORT(ANY)
4107
4108 /* For backwards compatibility, so that "none" is recognized as OFPP_ANY */
4109 #define OFPUTIL_NAMED_PORTS_WITH_NONE           \
4110         OFPUTIL_NAMED_PORTS                     \
4111         OFPUTIL_NAMED_PORT(NONE)
4112
4113 /* Stores the port number represented by 's' into '*portp'.  's' may be an
4114  * integer or, for reserved ports, the standard OpenFlow name for the port
4115  * (e.g. "LOCAL").
4116  *
4117  * Returns true if successful, false if 's' is not a valid OpenFlow port number
4118  * or name.  The caller should issue an error message in this case, because
4119  * this function usually does not.  (This gives the caller an opportunity to
4120  * look up the port name another way, e.g. by contacting the switch and listing
4121  * the names of all its ports).
4122  *
4123  * This function accepts OpenFlow 1.0 port numbers.  It also accepts a subset
4124  * of OpenFlow 1.1+ port numbers, mapping those port numbers into the 16-bit
4125  * range as described in include/openflow/openflow-1.1.h. */
4126 bool
4127 ofputil_port_from_string(const char *s, uint16_t *portp)
4128 {
4129     unsigned int port32;
4130
4131     *portp = 0;
4132     if (str_to_uint(s, 10, &port32)) {
4133         if (port32 < OFPP_MAX) {
4134             *portp = port32;
4135             return true;
4136         } else if (port32 < OFPP_FIRST_RESV) {
4137             VLOG_WARN("port %u is a reserved OF1.0 port number that will "
4138                       "be translated to %u when talking to an OF1.1 or "
4139                       "later controller", port32, port32 + OFPP11_OFFSET);
4140             *portp = port32;
4141             return true;
4142         } else if (port32 <= OFPP_LAST_RESV) {
4143             struct ds msg;
4144
4145             ds_init(&msg);
4146             ofputil_format_port(port32, &msg);
4147             VLOG_WARN_ONCE("referring to port %s as %u is deprecated for "
4148                            "compatibility with future versions of OpenFlow",
4149                            ds_cstr(&msg), port32);
4150             ds_destroy(&msg);
4151
4152             *portp = port32;
4153             return true;
4154         } else if (port32 < OFPP11_MAX) {
4155             VLOG_WARN("port %u is outside the supported range 0 through "
4156                       "%"PRIx16" or 0x%x through 0x%"PRIx32, port32,
4157                       UINT16_MAX, (unsigned int) OFPP11_MAX, UINT32_MAX);
4158             return false;
4159         } else {
4160             *portp = port32 - OFPP11_OFFSET;
4161             return true;
4162         }
4163     } else {
4164         struct pair {
4165             const char *name;
4166             uint16_t value;
4167         };
4168         static const struct pair pairs[] = {
4169 #define OFPUTIL_NAMED_PORT(NAME) {#NAME, OFPP_##NAME},
4170             OFPUTIL_NAMED_PORTS_WITH_NONE
4171 #undef OFPUTIL_NAMED_PORT
4172         };
4173         const struct pair *p;
4174
4175         for (p = pairs; p < &pairs[ARRAY_SIZE(pairs)]; p++) {
4176             if (!strcasecmp(s, p->name)) {
4177                 *portp = p->value;
4178                 return true;
4179             }
4180         }
4181         return false;
4182     }
4183 }
4184
4185 /* Appends to 's' a string representation of the OpenFlow port number 'port'.
4186  * Most ports' string representation is just the port number, but for special
4187  * ports, e.g. OFPP_LOCAL, it is the name, e.g. "LOCAL". */
4188 void
4189 ofputil_format_port(uint16_t port, struct ds *s)
4190 {
4191     const char *name;
4192
4193     switch (port) {
4194 #define OFPUTIL_NAMED_PORT(NAME) case OFPP_##NAME: name = #NAME; break;
4195         OFPUTIL_NAMED_PORTS
4196 #undef OFPUTIL_NAMED_PORT
4197
4198     default:
4199         ds_put_format(s, "%"PRIu16, port);
4200         return;
4201     }
4202     ds_put_cstr(s, name);
4203 }
4204
4205 /* Given a buffer 'b' that contains an array of OpenFlow ports of type
4206  * 'ofp_version', tries to pull the first element from the array.  If
4207  * successful, initializes '*pp' with an abstract representation of the
4208  * port and returns 0.  If no ports remain to be decoded, returns EOF.
4209  * On an error, returns a positive OFPERR_* value. */
4210 int
4211 ofputil_pull_phy_port(enum ofp_version ofp_version, struct ofpbuf *b,
4212                       struct ofputil_phy_port *pp)
4213 {
4214     switch (ofp_version) {
4215     case OFP10_VERSION: {
4216         const struct ofp10_phy_port *opp = ofpbuf_try_pull(b, sizeof *opp);
4217         return opp ? ofputil_decode_ofp10_phy_port(pp, opp) : EOF;
4218     }
4219     case OFP11_VERSION:
4220     case OFP12_VERSION:
4221     case OFP13_VERSION: {
4222         const struct ofp11_port *op = ofpbuf_try_pull(b, sizeof *op);
4223         return op ? ofputil_decode_ofp11_port(pp, op) : EOF;
4224     }
4225     default:
4226         NOT_REACHED();
4227     }
4228 }
4229
4230 /* Given a buffer 'b' that contains an array of OpenFlow ports of type
4231  * 'ofp_version', returns the number of elements. */
4232 size_t ofputil_count_phy_ports(uint8_t ofp_version, struct ofpbuf *b)
4233 {
4234     return b->size / ofputil_get_phy_port_size(ofp_version);
4235 }
4236
4237 /* Returns the 'enum ofputil_action_code' corresponding to 'name' (e.g. if
4238  * 'name' is "output" then the return value is OFPUTIL_OFPAT10_OUTPUT), or -1 if
4239  * 'name' is not the name of any action.
4240  *
4241  * ofp-util.def lists the mapping from names to action. */
4242 int
4243 ofputil_action_code_from_name(const char *name)
4244 {
4245     static const char *names[OFPUTIL_N_ACTIONS] = {
4246         NULL,
4247 #define OFPAT10_ACTION(ENUM, STRUCT, NAME)             NAME,
4248 #define OFPAT11_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) NAME,
4249 #define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME)   NAME,
4250 #include "ofp-util.def"
4251     };
4252
4253     const char **p;
4254
4255     for (p = names; p < &names[ARRAY_SIZE(names)]; p++) {
4256         if (*p && !strcasecmp(name, *p)) {
4257             return p - names;
4258         }
4259     }
4260     return -1;
4261 }
4262
4263 /* Appends an action of the type specified by 'code' to 'buf' and returns the
4264  * action.  Initializes the parts of 'action' that identify it as having type
4265  * <ENUM> and length 'sizeof *action' and zeros the rest.  For actions that
4266  * have variable length, the length used and cleared is that of struct
4267  * <STRUCT>.  */
4268 void *
4269 ofputil_put_action(enum ofputil_action_code code, struct ofpbuf *buf)
4270 {
4271     switch (code) {
4272     case OFPUTIL_ACTION_INVALID:
4273         NOT_REACHED();
4274
4275 #define OFPAT10_ACTION(ENUM, STRUCT, NAME)                  \
4276     case OFPUTIL_##ENUM: return ofputil_put_##ENUM(buf);
4277 #define OFPAT11_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME)      \
4278     case OFPUTIL_##ENUM: return ofputil_put_##ENUM(buf);
4279 #define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME)        \
4280     case OFPUTIL_##ENUM: return ofputil_put_##ENUM(buf);
4281 #include "ofp-util.def"
4282     }
4283     NOT_REACHED();
4284 }
4285
4286 #define OFPAT10_ACTION(ENUM, STRUCT, NAME)                        \
4287     void                                                        \
4288     ofputil_init_##ENUM(struct STRUCT *s)                       \
4289     {                                                           \
4290         memset(s, 0, sizeof *s);                                \
4291         s->type = htons(ENUM);                                  \
4292         s->len = htons(sizeof *s);                              \
4293     }                                                           \
4294                                                                 \
4295     struct STRUCT *                                             \
4296     ofputil_put_##ENUM(struct ofpbuf *buf)                      \
4297     {                                                           \
4298         struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s);   \
4299         ofputil_init_##ENUM(s);                                 \
4300         return s;                                               \
4301     }
4302 #define OFPAT11_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) \
4303     OFPAT10_ACTION(ENUM, STRUCT, NAME)
4304 #define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME)            \
4305     void                                                        \
4306     ofputil_init_##ENUM(struct STRUCT *s)                       \
4307     {                                                           \
4308         memset(s, 0, sizeof *s);                                \
4309         s->type = htons(OFPAT10_VENDOR);                        \
4310         s->len = htons(sizeof *s);                              \
4311         s->vendor = htonl(NX_VENDOR_ID);                        \
4312         s->subtype = htons(ENUM);                               \
4313     }                                                           \
4314                                                                 \
4315     struct STRUCT *                                             \
4316     ofputil_put_##ENUM(struct ofpbuf *buf)                      \
4317     {                                                           \
4318         struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s);   \
4319         ofputil_init_##ENUM(s);                                 \
4320         return s;                                               \
4321     }
4322 #include "ofp-util.def"
4323
4324 static void
4325 ofputil_normalize_match__(struct match *match, bool may_log)
4326 {
4327     enum {
4328         MAY_NW_ADDR     = 1 << 0, /* nw_src, nw_dst */
4329         MAY_TP_ADDR     = 1 << 1, /* tp_src, tp_dst */
4330         MAY_NW_PROTO    = 1 << 2, /* nw_proto */
4331         MAY_IPVx        = 1 << 3, /* tos, frag, ttl */
4332         MAY_ARP_SHA     = 1 << 4, /* arp_sha */
4333         MAY_ARP_THA     = 1 << 5, /* arp_tha */
4334         MAY_IPV6        = 1 << 6, /* ipv6_src, ipv6_dst, ipv6_label */
4335         MAY_ND_TARGET   = 1 << 7, /* nd_target */
4336         MAY_MPLS        = 1 << 8, /* mpls label and tc */
4337     } may_match;
4338
4339     struct flow_wildcards wc;
4340
4341     /* Figure out what fields may be matched. */
4342     if (match->flow.dl_type == htons(ETH_TYPE_IP)) {
4343         may_match = MAY_NW_PROTO | MAY_IPVx | MAY_NW_ADDR;
4344         if (match->flow.nw_proto == IPPROTO_TCP ||
4345             match->flow.nw_proto == IPPROTO_UDP ||
4346             match->flow.nw_proto == IPPROTO_ICMP) {
4347             may_match |= MAY_TP_ADDR;
4348         }
4349     } else if (match->flow.dl_type == htons(ETH_TYPE_IPV6)) {
4350         may_match = MAY_NW_PROTO | MAY_IPVx | MAY_IPV6;
4351         if (match->flow.nw_proto == IPPROTO_TCP ||
4352             match->flow.nw_proto == IPPROTO_UDP) {
4353             may_match |= MAY_TP_ADDR;
4354         } else if (match->flow.nw_proto == IPPROTO_ICMPV6) {
4355             may_match |= MAY_TP_ADDR;
4356             if (match->flow.tp_src == htons(ND_NEIGHBOR_SOLICIT)) {
4357                 may_match |= MAY_ND_TARGET | MAY_ARP_SHA;
4358             } else if (match->flow.tp_src == htons(ND_NEIGHBOR_ADVERT)) {
4359                 may_match |= MAY_ND_TARGET | MAY_ARP_THA;
4360             }
4361         }
4362     } else if (match->flow.dl_type == htons(ETH_TYPE_ARP) ||
4363                match->flow.dl_type == htons(ETH_TYPE_RARP)) {
4364         may_match = MAY_NW_PROTO | MAY_NW_ADDR | MAY_ARP_SHA | MAY_ARP_THA;
4365     } else if (eth_type_mpls(match->flow.dl_type)) {
4366         may_match = MAY_MPLS;
4367     } else {
4368         may_match = 0;
4369     }
4370
4371     /* Clear the fields that may not be matched. */
4372     wc = match->wc;
4373     if (!(may_match & MAY_NW_ADDR)) {
4374         wc.masks.nw_src = wc.masks.nw_dst = htonl(0);
4375     }
4376     if (!(may_match & MAY_TP_ADDR)) {
4377         wc.masks.tp_src = wc.masks.tp_dst = htons(0);
4378     }
4379     if (!(may_match & MAY_NW_PROTO)) {
4380         wc.masks.nw_proto = 0;
4381     }
4382     if (!(may_match & MAY_IPVx)) {
4383         wc.masks.nw_tos = 0;
4384         wc.masks.nw_ttl = 0;
4385     }
4386     if (!(may_match & MAY_ARP_SHA)) {
4387         memset(wc.masks.arp_sha, 0, ETH_ADDR_LEN);
4388     }
4389     if (!(may_match & MAY_ARP_THA)) {
4390         memset(wc.masks.arp_tha, 0, ETH_ADDR_LEN);
4391     }
4392     if (!(may_match & MAY_IPV6)) {
4393         wc.masks.ipv6_src = wc.masks.ipv6_dst = in6addr_any;
4394         wc.masks.ipv6_label = htonl(0);
4395     }
4396     if (!(may_match & MAY_ND_TARGET)) {
4397         wc.masks.nd_target = in6addr_any;
4398     }
4399     if (!(may_match & MAY_MPLS)) {
4400         wc.masks.mpls_lse = htonl(0);
4401         wc.masks.mpls_depth = 0;
4402     }
4403
4404     /* Log any changes. */
4405     if (!flow_wildcards_equal(&wc, &match->wc)) {
4406         bool log = may_log && !VLOG_DROP_INFO(&bad_ofmsg_rl);
4407         char *pre = log ? match_to_string(match, OFP_DEFAULT_PRIORITY) : NULL;
4408
4409         match->wc = wc;
4410         match_zero_wildcarded_fields(match);
4411
4412         if (log) {
4413             char *post = match_to_string(match, OFP_DEFAULT_PRIORITY);
4414             VLOG_INFO("normalization changed ofp_match, details:");
4415             VLOG_INFO(" pre: %s", pre);
4416             VLOG_INFO("post: %s", post);
4417             free(pre);
4418             free(post);
4419         }
4420     }
4421 }
4422
4423 /* "Normalizes" the wildcards in 'match'.  That means:
4424  *
4425  *    1. If the type of level N is known, then only the valid fields for that
4426  *       level may be specified.  For example, ARP does not have a TOS field,
4427  *       so nw_tos must be wildcarded if 'match' specifies an ARP flow.
4428  *       Similarly, IPv4 does not have any IPv6 addresses, so ipv6_src and
4429  *       ipv6_dst (and other fields) must be wildcarded if 'match' specifies an
4430  *       IPv4 flow.
4431  *
4432  *    2. If the type of level N is not known (or not understood by Open
4433  *       vSwitch), then no fields at all for that level may be specified.  For
4434  *       example, Open vSwitch does not understand SCTP, an L4 protocol, so the
4435  *       L4 fields tp_src and tp_dst must be wildcarded if 'match' specifies an
4436  *       SCTP flow.
4437  *
4438  * If this function changes 'match', it logs a rate-limited informational
4439  * message. */
4440 void
4441 ofputil_normalize_match(struct match *match)
4442 {
4443     ofputil_normalize_match__(match, true);
4444 }
4445
4446 /* Same as ofputil_normalize_match() without the logging.  Thus, this function
4447  * is suitable for a program's internal use, whereas ofputil_normalize_match()
4448  * sense for use on flows received from elsewhere (so that a bug in the program
4449  * that sent them can be reported and corrected). */
4450 void
4451 ofputil_normalize_match_quiet(struct match *match)
4452 {
4453     ofputil_normalize_match__(match, false);
4454 }
4455
4456 /* Parses a key or a key-value pair from '*stringp'.
4457  *
4458  * On success: Stores the key into '*keyp'.  Stores the value, if present, into
4459  * '*valuep', otherwise an empty string.  Advances '*stringp' past the end of
4460  * the key-value pair, preparing it for another call.  '*keyp' and '*valuep'
4461  * are substrings of '*stringp' created by replacing some of its bytes by null
4462  * terminators.  Returns true.
4463  *
4464  * If '*stringp' is just white space or commas, sets '*keyp' and '*valuep' to
4465  * NULL and returns false. */
4466 bool
4467 ofputil_parse_key_value(char **stringp, char **keyp, char **valuep)
4468 {
4469     char *pos, *key, *value;
4470     size_t key_len;
4471
4472     pos = *stringp;
4473     pos += strspn(pos, ", \t\r\n");
4474     if (*pos == '\0') {
4475         *keyp = *valuep = NULL;
4476         return false;
4477     }
4478
4479     key = pos;
4480     key_len = strcspn(pos, ":=(, \t\r\n");
4481     if (key[key_len] == ':' || key[key_len] == '=') {
4482         /* The value can be separated by a colon. */
4483         size_t value_len;
4484
4485         value = key + key_len + 1;
4486         value_len = strcspn(value, ", \t\r\n");
4487         pos = value + value_len + (value[value_len] != '\0');
4488         value[value_len] = '\0';
4489     } else if (key[key_len] == '(') {
4490         /* The value can be surrounded by balanced parentheses.  The outermost
4491          * set of parentheses is removed. */
4492         int level = 1;
4493         size_t value_len;
4494
4495         value = key + key_len + 1;
4496         for (value_len = 0; level > 0; value_len++) {
4497             switch (value[value_len]) {
4498             case '\0':
4499                 level = 0;
4500                 break;
4501
4502             case '(':
4503                 level++;
4504                 break;
4505
4506             case ')':
4507                 level--;
4508                 break;
4509             }
4510         }
4511         value[value_len - 1] = '\0';
4512         pos = value + value_len;
4513     } else {
4514         /* There might be no value at all. */
4515         value = key + key_len;  /* Will become the empty string below. */
4516         pos = key + key_len + (key[key_len] != '\0');
4517     }
4518     key[key_len] = '\0';
4519
4520     *stringp = pos;
4521     *keyp = key;
4522     *valuep = value;
4523     return true;
4524 }
4525
4526 /* Encode a dump ports request for 'port', the encoded message
4527  * will be for Open Flow version 'ofp_version'. Returns message
4528  * as a struct ofpbuf. Returns encoded message on success, NULL on error */
4529 struct ofpbuf *
4530 ofputil_encode_dump_ports_request(enum ofp_version ofp_version, int16_t port)
4531 {
4532     struct ofpbuf *request;
4533
4534     switch (ofp_version) {
4535     case OFP10_VERSION: {
4536         struct ofp10_port_stats_request *req;
4537         request = ofpraw_alloc(OFPRAW_OFPST10_PORT_REQUEST, ofp_version, 0);
4538         req = ofpbuf_put_zeros(request, sizeof *req);
4539         req->port_no = htons(port);
4540         break;
4541     }
4542     case OFP11_VERSION:
4543     case OFP12_VERSION:
4544     case OFP13_VERSION: {
4545         struct ofp11_port_stats_request *req;
4546         request = ofpraw_alloc(OFPRAW_OFPST11_PORT_REQUEST, ofp_version, 0);
4547         req = ofpbuf_put_zeros(request, sizeof *req);
4548         req->port_no = ofputil_port_to_ofp11(port);
4549         break;
4550     }
4551     default:
4552         NOT_REACHED();
4553     }
4554
4555     return request;
4556 }
4557
4558 static void
4559 ofputil_port_stats_to_ofp10(const struct ofputil_port_stats *ops,
4560                             struct ofp10_port_stats *ps10)
4561 {
4562     ps10->port_no = htons(ops->port_no);
4563     memset(ps10->pad, 0, sizeof ps10->pad);
4564     put_32aligned_be64(&ps10->rx_packets, htonll(ops->stats.rx_packets));
4565     put_32aligned_be64(&ps10->tx_packets, htonll(ops->stats.tx_packets));
4566     put_32aligned_be64(&ps10->rx_bytes, htonll(ops->stats.rx_bytes));
4567     put_32aligned_be64(&ps10->tx_bytes, htonll(ops->stats.tx_bytes));
4568     put_32aligned_be64(&ps10->rx_dropped, htonll(ops->stats.rx_dropped));
4569     put_32aligned_be64(&ps10->tx_dropped, htonll(ops->stats.tx_dropped));
4570     put_32aligned_be64(&ps10->rx_errors, htonll(ops->stats.rx_errors));
4571     put_32aligned_be64(&ps10->tx_errors, htonll(ops->stats.tx_errors));
4572     put_32aligned_be64(&ps10->rx_frame_err, htonll(ops->stats.rx_frame_errors));
4573     put_32aligned_be64(&ps10->rx_over_err, htonll(ops->stats.rx_over_errors));
4574     put_32aligned_be64(&ps10->rx_crc_err, htonll(ops->stats.rx_crc_errors));
4575     put_32aligned_be64(&ps10->collisions, htonll(ops->stats.collisions));
4576 }
4577
4578 static void
4579 ofputil_port_stats_to_ofp11(const struct ofputil_port_stats *ops,
4580                             struct ofp11_port_stats *ps11)
4581 {
4582     ps11->port_no = ofputil_port_to_ofp11(ops->port_no);
4583     memset(ps11->pad, 0, sizeof ps11->pad);
4584     ps11->rx_packets = htonll(ops->stats.rx_packets);
4585     ps11->tx_packets = htonll(ops->stats.tx_packets);
4586     ps11->rx_bytes = htonll(ops->stats.rx_bytes);
4587     ps11->tx_bytes = htonll(ops->stats.tx_bytes);
4588     ps11->rx_dropped = htonll(ops->stats.rx_dropped);
4589     ps11->tx_dropped = htonll(ops->stats.tx_dropped);
4590     ps11->rx_errors = htonll(ops->stats.rx_errors);
4591     ps11->tx_errors = htonll(ops->stats.tx_errors);
4592     ps11->rx_frame_err = htonll(ops->stats.rx_frame_errors);
4593     ps11->rx_over_err = htonll(ops->stats.rx_over_errors);
4594     ps11->rx_crc_err = htonll(ops->stats.rx_crc_errors);
4595     ps11->collisions = htonll(ops->stats.collisions);
4596 }
4597
4598 static void
4599 ofputil_port_stats_to_ofp13(const struct ofputil_port_stats *ops,
4600                             struct ofp13_port_stats *ps13)
4601 {
4602     ofputil_port_stats_to_ofp11(ops, &ps13->ps);
4603
4604     /* OF 1.3 adds duration fields */
4605     /* FIXME: Need to implement port alive duration (sec + nsec) */
4606     ps13->duration_sec = htonl(~0);
4607     ps13->duration_nsec = htonl(~0);
4608 }
4609
4610
4611 /* Encode a ports stat for 'ops' and append it to 'replies'. */
4612 void
4613 ofputil_append_port_stat(struct list *replies,
4614                          const struct ofputil_port_stats *ops)
4615 {
4616     struct ofpbuf *msg = ofpbuf_from_list(list_back(replies));
4617     struct ofp_header *oh = msg->data;
4618
4619     switch ((enum ofp_version)oh->version) {
4620     case OFP13_VERSION: {
4621         struct ofp13_port_stats *reply = ofpmp_append(replies, sizeof *reply);
4622         ofputil_port_stats_to_ofp13(ops, reply);
4623         break;
4624     }
4625     case OFP12_VERSION:
4626     case OFP11_VERSION: {
4627         struct ofp11_port_stats *reply = ofpmp_append(replies, sizeof *reply);
4628         ofputil_port_stats_to_ofp11(ops, reply);
4629         break;
4630     }
4631
4632     case OFP10_VERSION: {
4633         struct ofp10_port_stats *reply = ofpmp_append(replies, sizeof *reply);
4634         ofputil_port_stats_to_ofp10(ops, reply);
4635         break;
4636     }
4637
4638     default:
4639         NOT_REACHED();
4640     }
4641 }
4642
4643 static enum ofperr
4644 ofputil_port_stats_from_ofp10(struct ofputil_port_stats *ops,
4645                               const struct ofp10_port_stats *ps10)
4646 {
4647     memset(ops, 0, sizeof *ops);
4648
4649     ops->port_no = ntohs(ps10->port_no);
4650     ops->stats.rx_packets = ntohll(get_32aligned_be64(&ps10->rx_packets));
4651     ops->stats.tx_packets = ntohll(get_32aligned_be64(&ps10->tx_packets));
4652     ops->stats.rx_bytes = ntohll(get_32aligned_be64(&ps10->rx_bytes));
4653     ops->stats.tx_bytes = ntohll(get_32aligned_be64(&ps10->tx_bytes));
4654     ops->stats.rx_dropped = ntohll(get_32aligned_be64(&ps10->rx_dropped));
4655     ops->stats.tx_dropped = ntohll(get_32aligned_be64(&ps10->tx_dropped));
4656     ops->stats.rx_errors = ntohll(get_32aligned_be64(&ps10->rx_errors));
4657     ops->stats.tx_errors = ntohll(get_32aligned_be64(&ps10->tx_errors));
4658     ops->stats.rx_frame_errors =
4659         ntohll(get_32aligned_be64(&ps10->rx_frame_err));
4660     ops->stats.rx_over_errors = ntohll(get_32aligned_be64(&ps10->rx_over_err));
4661     ops->stats.rx_crc_errors = ntohll(get_32aligned_be64(&ps10->rx_crc_err));
4662     ops->stats.collisions = ntohll(get_32aligned_be64(&ps10->collisions));
4663
4664     return 0;
4665 }
4666
4667 static enum ofperr
4668 ofputil_port_stats_from_ofp11(struct ofputil_port_stats *ops,
4669                               const struct ofp11_port_stats *ps11)
4670 {
4671     enum ofperr error;
4672
4673     memset(ops, 0, sizeof *ops);
4674     error = ofputil_port_from_ofp11(ps11->port_no, &ops->port_no);
4675     if (error) {
4676         return error;
4677     }
4678
4679     ops->stats.rx_packets = ntohll(ps11->rx_packets);
4680     ops->stats.tx_packets = ntohll(ps11->tx_packets);
4681     ops->stats.rx_bytes = ntohll(ps11->rx_bytes);
4682     ops->stats.tx_bytes = ntohll(ps11->tx_bytes);
4683     ops->stats.rx_dropped = ntohll(ps11->rx_dropped);
4684     ops->stats.tx_dropped = ntohll(ps11->tx_dropped);
4685     ops->stats.rx_errors = ntohll(ps11->rx_errors);
4686     ops->stats.tx_errors = ntohll(ps11->tx_errors);
4687     ops->stats.rx_frame_errors = ntohll(ps11->rx_frame_err);
4688     ops->stats.rx_over_errors = ntohll(ps11->rx_over_err);
4689     ops->stats.rx_crc_errors = ntohll(ps11->rx_crc_err);
4690     ops->stats.collisions = ntohll(ps11->collisions);
4691
4692     return 0;
4693 }
4694
4695 static enum ofperr
4696 ofputil_port_stats_from_ofp13(struct ofputil_port_stats *ops,
4697                               const struct ofp13_port_stats *ps13)
4698 {
4699     enum ofperr error =
4700         ofputil_port_stats_from_ofp11(ops, &ps13->ps);
4701     if (!error) {
4702         /* FIXME: Get ps13->duration_sec and ps13->duration_nsec,
4703          * Add to netdev_stats? */
4704     }
4705
4706     return error;
4707 }
4708
4709
4710 /* Returns the number of port stats elements in OFPTYPE_PORT_STATS_REPLY
4711  * message 'oh'. */
4712 size_t
4713 ofputil_count_port_stats(const struct ofp_header *oh)
4714 {
4715     struct ofpbuf b;
4716
4717     ofpbuf_use_const(&b, oh, ntohs(oh->length));
4718     ofpraw_pull_assert(&b);
4719
4720     BUILD_ASSERT(sizeof(struct ofp10_port_stats) ==
4721                  sizeof(struct ofp11_port_stats));
4722     return b.size / sizeof(struct ofp10_port_stats);
4723 }
4724
4725 /* Converts an OFPST_PORT_STATS reply in 'msg' into an abstract
4726  * ofputil_port_stats in 'ps'.
4727  *
4728  * Multiple OFPST_PORT_STATS replies can be packed into a single OpenFlow
4729  * message.  Calling this function multiple times for a single 'msg' iterates
4730  * through the replies.  The caller must initially leave 'msg''s layer pointers
4731  * null and not modify them between calls.
4732  *
4733  * Returns 0 if successful, EOF if no replies were left in this 'msg',
4734  * otherwise a positive errno value. */
4735 int
4736 ofputil_decode_port_stats(struct ofputil_port_stats *ps, struct ofpbuf *msg)
4737 {
4738     enum ofperr error;
4739     enum ofpraw raw;
4740
4741     error = (msg->l2
4742              ? ofpraw_decode(&raw, msg->l2)
4743              : ofpraw_pull(&raw, msg));
4744     if (error) {
4745         return error;
4746     }
4747
4748     if (!msg->size) {
4749         return EOF;
4750     } else if (raw == OFPRAW_OFPST13_PORT_REPLY) {
4751         const struct ofp13_port_stats *ps13;
4752
4753         ps13 = ofpbuf_try_pull(msg, sizeof *ps13);
4754         if (!ps13) {
4755             goto bad_len;
4756         }
4757         return ofputil_port_stats_from_ofp13(ps, ps13);
4758     } else if (raw == OFPRAW_OFPST11_PORT_REPLY) {
4759         const struct ofp11_port_stats *ps11;
4760
4761         ps11 = ofpbuf_try_pull(msg, sizeof *ps11);
4762         if (!ps11) {
4763             goto bad_len;
4764         }
4765         return ofputil_port_stats_from_ofp11(ps, ps11);
4766     } else if (raw == OFPRAW_OFPST10_PORT_REPLY) {
4767         const struct ofp10_port_stats *ps10;
4768
4769         ps10 = ofpbuf_try_pull(msg, sizeof *ps10);
4770         if (!ps10) {
4771             goto bad_len;
4772         }
4773         return ofputil_port_stats_from_ofp10(ps, ps10);
4774     } else {
4775         NOT_REACHED();
4776     }
4777
4778  bad_len:
4779     VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_PORT reply has %zu leftover "
4780                  "bytes at end", msg->size);
4781     return OFPERR_OFPBRC_BAD_LEN;
4782 }
4783
4784 /* Parse a port status request message into a 16 bit OpenFlow 1.0
4785  * port number and stores the latter in '*ofp10_port'.
4786  * Returns 0 if successful, otherwise an OFPERR_* number. */
4787 enum ofperr
4788 ofputil_decode_port_stats_request(const struct ofp_header *request,
4789                                   uint16_t *ofp10_port)
4790 {
4791     switch ((enum ofp_version)request->version) {
4792     case OFP13_VERSION:
4793     case OFP12_VERSION:
4794     case OFP11_VERSION: {
4795         const struct ofp11_port_stats_request *psr11 = ofpmsg_body(request);
4796         return ofputil_port_from_ofp11(psr11->port_no, ofp10_port);
4797     }
4798
4799     case OFP10_VERSION: {
4800         const struct ofp10_port_stats_request *psr10 = ofpmsg_body(request);
4801         *ofp10_port = ntohs(psr10->port_no);
4802         return 0;
4803     }
4804
4805     default:
4806         NOT_REACHED();
4807     }
4808 }
4809
4810 /* Parse a queue status request message into 'oqsr'.
4811  * Returns 0 if successful, otherwise an OFPERR_* number. */
4812 enum ofperr
4813 ofputil_decode_queue_stats_request(const struct ofp_header *request,
4814                                    struct ofputil_queue_stats_request *oqsr)
4815 {
4816     switch ((enum ofp_version)request->version) {
4817     case OFP13_VERSION:
4818     case OFP12_VERSION:
4819     case OFP11_VERSION: {
4820         const struct ofp11_queue_stats_request *qsr11 = ofpmsg_body(request);
4821         oqsr->queue_id = ntohl(qsr11->queue_id);
4822         return ofputil_port_from_ofp11(qsr11->port_no, &oqsr->port_no);
4823     }
4824
4825     case OFP10_VERSION: {
4826         const struct ofp10_queue_stats_request *qsr10 = ofpmsg_body(request);
4827         oqsr->queue_id = ntohl(qsr10->queue_id);
4828         oqsr->port_no = ntohs(qsr10->port_no);
4829         /* OF 1.0 uses OFPP_ALL for OFPP_ANY */
4830         if (oqsr->port_no == OFPP_ALL) {
4831             oqsr->port_no = OFPP_ANY;
4832         }
4833         return 0;
4834     }
4835
4836     default:
4837         NOT_REACHED();
4838     }
4839 }
4840
4841 /* Encode a queue statsrequest for 'oqsr', the encoded message
4842  * will be fore Open Flow version 'ofp_version'. Returns message
4843  * as a struct ofpbuf. Returns encoded message on success, NULL on error */
4844 struct ofpbuf *
4845 ofputil_encode_queue_stats_request(enum ofp_version ofp_version,
4846                                    const struct ofputil_queue_stats_request *oqsr)
4847 {
4848     struct ofpbuf *request;
4849
4850     switch (ofp_version) {
4851     case OFP11_VERSION:
4852     case OFP12_VERSION:
4853     case OFP13_VERSION: {
4854         struct ofp11_queue_stats_request *req;
4855         request = ofpraw_alloc(OFPRAW_OFPST11_QUEUE_REQUEST, ofp_version, 0);
4856         req = ofpbuf_put_zeros(request, sizeof *req);
4857         req->port_no = ofputil_port_to_ofp11(oqsr->port_no);
4858         req->queue_id = htonl(oqsr->queue_id);
4859         break;
4860     }
4861     case OFP10_VERSION: {
4862         struct ofp10_queue_stats_request *req;
4863         request = ofpraw_alloc(OFPRAW_OFPST10_QUEUE_REQUEST, ofp_version, 0);
4864         req = ofpbuf_put_zeros(request, sizeof *req);
4865         /* OpenFlow 1.0 needs OFPP_ALL instead of OFPP_ANY */
4866         req->port_no = htons(oqsr->port_no == OFPP_ANY
4867                              ? OFPP_ALL : oqsr->port_no);
4868         req->queue_id = htonl(oqsr->queue_id);
4869         break;
4870     }
4871     default:
4872         NOT_REACHED();
4873     }
4874
4875     return request;
4876 }
4877
4878 /* Returns the number of queue stats elements in OFPTYPE_QUEUE_STATS_REPLY
4879  * message 'oh'. */
4880 size_t
4881 ofputil_count_queue_stats(const struct ofp_header *oh)
4882 {
4883     struct ofpbuf b;
4884
4885     ofpbuf_use_const(&b, oh, ntohs(oh->length));
4886     ofpraw_pull_assert(&b);
4887
4888     BUILD_ASSERT(sizeof(struct ofp10_queue_stats) ==
4889                  sizeof(struct ofp11_queue_stats));
4890     return b.size / sizeof(struct ofp10_queue_stats);
4891 }
4892
4893 static enum ofperr
4894 ofputil_queue_stats_from_ofp10(struct ofputil_queue_stats *oqs,
4895                                const struct ofp10_queue_stats *qs10)
4896 {
4897     oqs->port_no = ntohs(qs10->port_no);
4898     oqs->queue_id = ntohl(qs10->queue_id);
4899     oqs->stats.tx_bytes = ntohll(get_32aligned_be64(&qs10->tx_bytes));
4900     oqs->stats.tx_packets = ntohll(get_32aligned_be64(&qs10->tx_packets));
4901     oqs->stats.tx_errors = ntohll(get_32aligned_be64(&qs10->tx_errors));
4902
4903     return 0;
4904 }
4905
4906 static enum ofperr
4907 ofputil_queue_stats_from_ofp11(struct ofputil_queue_stats *oqs,
4908                                const struct ofp11_queue_stats *qs11)
4909 {
4910     enum ofperr error;
4911
4912     error = ofputil_port_from_ofp11(qs11->port_no, &oqs->port_no);
4913     if (error) {
4914         return error;
4915     }
4916
4917     oqs->queue_id = ntohl(qs11->queue_id);
4918     oqs->stats.tx_bytes = ntohll(qs11->tx_bytes);
4919     oqs->stats.tx_packets = ntohll(qs11->tx_packets);
4920     oqs->stats.tx_errors = ntohll(qs11->tx_errors);
4921
4922     return 0;
4923 }
4924
4925 static enum ofperr
4926 ofputil_queue_stats_from_ofp13(struct ofputil_queue_stats *oqs,
4927                                const struct ofp13_queue_stats *qs13)
4928 {
4929     enum ofperr error
4930         = ofputil_queue_stats_from_ofp11(oqs, &qs13->qs);
4931     if (!error) {
4932         /* FIXME: Get qs13->duration_sec and qs13->duration_nsec,
4933          * Add to netdev_queue_stats? */
4934     }
4935
4936     return error;
4937 }
4938
4939 /* Converts an OFPST_QUEUE_STATS reply in 'msg' into an abstract
4940  * ofputil_queue_stats in 'qs'.
4941  *
4942  * Multiple OFPST_QUEUE_STATS replies can be packed into a single OpenFlow
4943  * message.  Calling this function multiple times for a single 'msg' iterates
4944  * through the replies.  The caller must initially leave 'msg''s layer pointers
4945  * null and not modify them between calls.
4946  *
4947  * Returns 0 if successful, EOF if no replies were left in this 'msg',
4948  * otherwise a positive errno value. */
4949 int
4950 ofputil_decode_queue_stats(struct ofputil_queue_stats *qs, struct ofpbuf *msg)
4951 {
4952     enum ofperr error;
4953     enum ofpraw raw;
4954
4955     error = (msg->l2
4956              ? ofpraw_decode(&raw, msg->l2)
4957              : ofpraw_pull(&raw, msg));
4958     if (error) {
4959         return error;
4960     }
4961
4962     if (!msg->size) {
4963         return EOF;
4964     } else if (raw == OFPRAW_OFPST13_QUEUE_REPLY) {
4965         const struct ofp13_queue_stats *qs13;
4966
4967         qs13 = ofpbuf_try_pull(msg, sizeof *qs13);
4968         if (!qs13) {
4969             goto bad_len;
4970         }
4971         return ofputil_queue_stats_from_ofp13(qs, qs13);
4972     } else if (raw == OFPRAW_OFPST11_QUEUE_REPLY) {
4973         const struct ofp11_queue_stats *qs11;
4974
4975         qs11 = ofpbuf_try_pull(msg, sizeof *qs11);
4976         if (!qs11) {
4977             goto bad_len;
4978         }
4979         return ofputil_queue_stats_from_ofp11(qs, qs11);
4980     } else if (raw == OFPRAW_OFPST10_QUEUE_REPLY) {
4981         const struct ofp10_queue_stats *qs10;
4982
4983         qs10 = ofpbuf_try_pull(msg, sizeof *qs10);
4984         if (!qs10) {
4985             goto bad_len;
4986         }
4987         return ofputil_queue_stats_from_ofp10(qs, qs10);
4988     } else {
4989         NOT_REACHED();
4990     }
4991
4992  bad_len:
4993     VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_QUEUE reply has %zu leftover "
4994                  "bytes at end", msg->size);
4995     return OFPERR_OFPBRC_BAD_LEN;
4996 }
4997
4998 static void
4999 ofputil_queue_stats_to_ofp10(const struct ofputil_queue_stats *oqs,
5000                              struct ofp10_queue_stats *qs10)
5001 {
5002     qs10->port_no = htons(oqs->port_no);
5003     memset(qs10->pad, 0, sizeof qs10->pad);
5004     qs10->queue_id = htonl(oqs->queue_id);
5005     put_32aligned_be64(&qs10->tx_bytes, htonll(oqs->stats.tx_bytes));
5006     put_32aligned_be64(&qs10->tx_packets, htonll(oqs->stats.tx_packets));
5007     put_32aligned_be64(&qs10->tx_errors, htonll(oqs->stats.tx_errors));
5008 }
5009
5010 static void
5011 ofputil_queue_stats_to_ofp11(const struct ofputil_queue_stats *oqs,
5012                              struct ofp11_queue_stats *qs11)
5013 {
5014     qs11->port_no = ofputil_port_to_ofp11(oqs->port_no);
5015     qs11->queue_id = htonl(oqs->queue_id);
5016     qs11->tx_bytes = htonll(oqs->stats.tx_bytes);
5017     qs11->tx_packets = htonll(oqs->stats.tx_packets);
5018     qs11->tx_errors = htonll(oqs->stats.tx_errors);
5019 }
5020
5021 static void
5022 ofputil_queue_stats_to_ofp13(const struct ofputil_queue_stats *oqs,
5023                              struct ofp13_queue_stats *qs13)
5024 {
5025     ofputil_queue_stats_to_ofp11(oqs, &qs13->qs);
5026     /* OF 1.3 adds duration fields */
5027     /* FIXME: Need to implement queue alive duration (sec + nsec) */
5028     qs13->duration_sec = htonl(~0);
5029     qs13->duration_nsec = htonl(~0);
5030 }
5031
5032 /* Encode a queue stat for 'oqs' and append it to 'replies'. */
5033 void
5034 ofputil_append_queue_stat(struct list *replies,
5035                           const struct ofputil_queue_stats *oqs)
5036 {
5037     struct ofpbuf *msg = ofpbuf_from_list(list_back(replies));
5038     struct ofp_header *oh = msg->data;
5039
5040     switch ((enum ofp_version)oh->version) {
5041     case OFP13_VERSION: {
5042         struct ofp13_queue_stats *reply = ofpmp_append(replies, sizeof *reply);
5043         ofputil_queue_stats_to_ofp13(oqs, reply);
5044         break;
5045     }
5046
5047     case OFP12_VERSION:
5048     case OFP11_VERSION: {
5049         struct ofp11_queue_stats *reply = ofpmp_append(replies, sizeof *reply);
5050         ofputil_queue_stats_to_ofp11(oqs, reply);
5051         break;
5052     }
5053
5054     case OFP10_VERSION: {
5055         struct ofp10_queue_stats *reply = ofpmp_append(replies, sizeof *reply);
5056         ofputil_queue_stats_to_ofp10(oqs, reply);
5057         break;
5058     }
5059
5060     default:
5061         NOT_REACHED();
5062     }
5063 }