nicira-ext: Add Nicira actions NXAST_STACK_PUSH and NXAST_STACK_POP.
[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_REQUEST
3404             ? orr->role == htonl(OFPCR12_ROLE_NOCHANGE)
3405             : orr->generation_id == htonll(UINT64_MAX)) {
3406             rr->have_generation_id = false;
3407             rr->generation_id = 0;
3408         } else {
3409             rr->have_generation_id = true;
3410             rr->generation_id = ntohll(orr->generation_id);
3411         }
3412     } else if (raw == OFPRAW_NXT_ROLE_REQUEST ||
3413                raw == OFPRAW_NXT_ROLE_REPLY) {
3414         const struct nx_role_request *nrr = b.l3;
3415
3416         BUILD_ASSERT(NX_ROLE_OTHER + 1 == OFPCR12_ROLE_EQUAL);
3417         BUILD_ASSERT(NX_ROLE_MASTER + 1 == OFPCR12_ROLE_MASTER);
3418         BUILD_ASSERT(NX_ROLE_SLAVE + 1 == OFPCR12_ROLE_SLAVE);
3419
3420         if (nrr->role != htonl(NX_ROLE_OTHER) &&
3421             nrr->role != htonl(NX_ROLE_MASTER) &&
3422             nrr->role != htonl(NX_ROLE_SLAVE)) {
3423             return OFPERR_OFPRRFC_BAD_ROLE;
3424         }
3425
3426         rr->role = ntohl(nrr->role) + 1;
3427         rr->have_generation_id = false;
3428         rr->generation_id = 0;
3429     } else {
3430         NOT_REACHED();
3431     }
3432
3433     return 0;
3434 }
3435
3436 /* Returns an encoded form of a role reply suitable for the "request" in a
3437  * buffer owned by the caller. */
3438 struct ofpbuf *
3439 ofputil_encode_role_reply(const struct ofp_header *request,
3440                           const struct ofputil_role_request *rr)
3441 {
3442     struct ofpbuf *buf;
3443     enum ofpraw raw;
3444
3445     raw = ofpraw_decode_assert(request);
3446     if (raw == OFPRAW_OFPT12_ROLE_REQUEST) {
3447         struct ofp12_role_request *orr;
3448
3449         buf = ofpraw_alloc_reply(OFPRAW_OFPT12_ROLE_REPLY, request, 0);
3450         orr = ofpbuf_put_zeros(buf, sizeof *orr);
3451
3452         orr->role = htonl(rr->role);
3453         orr->generation_id = htonll(rr->have_generation_id
3454                                     ? rr->generation_id
3455                                     : UINT64_MAX);
3456     } else if (raw == OFPRAW_NXT_ROLE_REQUEST) {
3457         struct nx_role_request *nrr;
3458
3459         BUILD_ASSERT(NX_ROLE_OTHER == OFPCR12_ROLE_EQUAL - 1);
3460         BUILD_ASSERT(NX_ROLE_MASTER == OFPCR12_ROLE_MASTER - 1);
3461         BUILD_ASSERT(NX_ROLE_SLAVE == OFPCR12_ROLE_SLAVE - 1);
3462
3463         buf = ofpraw_alloc_reply(OFPRAW_NXT_ROLE_REPLY, request, 0);
3464         nrr = ofpbuf_put_zeros(buf, sizeof *nrr);
3465         nrr->role = htonl(rr->role - 1);
3466     } else {
3467         NOT_REACHED();
3468     }
3469
3470     return buf;
3471 }
3472 \f
3473 /* Table stats. */
3474
3475 static void
3476 ofputil_put_ofp10_table_stats(const struct ofp12_table_stats *in,
3477                               struct ofpbuf *buf)
3478 {
3479     struct wc_map {
3480         enum ofp10_flow_wildcards wc10;
3481         enum oxm12_ofb_match_fields mf12;
3482     };
3483
3484     static const struct wc_map wc_map[] = {
3485         { OFPFW10_IN_PORT,     OFPXMT12_OFB_IN_PORT },
3486         { OFPFW10_DL_VLAN,     OFPXMT12_OFB_VLAN_VID },
3487         { OFPFW10_DL_SRC,      OFPXMT12_OFB_ETH_SRC },
3488         { OFPFW10_DL_DST,      OFPXMT12_OFB_ETH_DST},
3489         { OFPFW10_DL_TYPE,     OFPXMT12_OFB_ETH_TYPE },
3490         { OFPFW10_NW_PROTO,    OFPXMT12_OFB_IP_PROTO },
3491         { OFPFW10_TP_SRC,      OFPXMT12_OFB_TCP_SRC },
3492         { OFPFW10_TP_DST,      OFPXMT12_OFB_TCP_DST },
3493         { OFPFW10_NW_SRC_MASK, OFPXMT12_OFB_IPV4_SRC },
3494         { OFPFW10_NW_DST_MASK, OFPXMT12_OFB_IPV4_DST },
3495         { OFPFW10_DL_VLAN_PCP, OFPXMT12_OFB_VLAN_PCP },
3496         { OFPFW10_NW_TOS,      OFPXMT12_OFB_IP_DSCP },
3497     };
3498
3499     struct ofp10_table_stats *out;
3500     const struct wc_map *p;
3501
3502     out = ofpbuf_put_zeros(buf, sizeof *out);
3503     out->table_id = in->table_id;
3504     ovs_strlcpy(out->name, in->name, sizeof out->name);
3505     out->wildcards = 0;
3506     for (p = wc_map; p < &wc_map[ARRAY_SIZE(wc_map)]; p++) {
3507         if (in->wildcards & htonll(1ULL << p->mf12)) {
3508             out->wildcards |= htonl(p->wc10);
3509         }
3510     }
3511     out->max_entries = in->max_entries;
3512     out->active_count = in->active_count;
3513     put_32aligned_be64(&out->lookup_count, in->lookup_count);
3514     put_32aligned_be64(&out->matched_count, in->matched_count);
3515 }
3516
3517 static ovs_be32
3518 oxm12_to_ofp11_flow_match_fields(ovs_be64 oxm12)
3519 {
3520     struct map {
3521         enum ofp11_flow_match_fields fmf11;
3522         enum oxm12_ofb_match_fields mf12;
3523     };
3524
3525     static const struct map map[] = {
3526         { OFPFMF11_IN_PORT,     OFPXMT12_OFB_IN_PORT },
3527         { OFPFMF11_DL_VLAN,     OFPXMT12_OFB_VLAN_VID },
3528         { OFPFMF11_DL_VLAN_PCP, OFPXMT12_OFB_VLAN_PCP },
3529         { OFPFMF11_DL_TYPE,     OFPXMT12_OFB_ETH_TYPE },
3530         { OFPFMF11_NW_TOS,      OFPXMT12_OFB_IP_DSCP },
3531         { OFPFMF11_NW_PROTO,    OFPXMT12_OFB_IP_PROTO },
3532         { OFPFMF11_TP_SRC,      OFPXMT12_OFB_TCP_SRC },
3533         { OFPFMF11_TP_DST,      OFPXMT12_OFB_TCP_DST },
3534         { OFPFMF11_MPLS_LABEL,  OFPXMT12_OFB_MPLS_LABEL },
3535         { OFPFMF11_MPLS_TC,     OFPXMT12_OFB_MPLS_TC },
3536         /* I don't know what OFPFMF11_TYPE means. */
3537         { OFPFMF11_DL_SRC,      OFPXMT12_OFB_ETH_SRC },
3538         { OFPFMF11_DL_DST,      OFPXMT12_OFB_ETH_DST },
3539         { OFPFMF11_NW_SRC,      OFPXMT12_OFB_IPV4_SRC },
3540         { OFPFMF11_NW_DST,      OFPXMT12_OFB_IPV4_DST },
3541         { OFPFMF11_METADATA,    OFPXMT12_OFB_METADATA },
3542     };
3543
3544     const struct map *p;
3545     uint32_t fmf11;
3546
3547     fmf11 = 0;
3548     for (p = map; p < &map[ARRAY_SIZE(map)]; p++) {
3549         if (oxm12 & htonll(1ULL << p->mf12)) {
3550             fmf11 |= p->fmf11;
3551         }
3552     }
3553     return htonl(fmf11);
3554 }
3555
3556 static void
3557 ofputil_put_ofp11_table_stats(const struct ofp12_table_stats *in,
3558                               struct ofpbuf *buf)
3559 {
3560     struct ofp11_table_stats *out;
3561
3562     out = ofpbuf_put_zeros(buf, sizeof *out);
3563     out->table_id = in->table_id;
3564     ovs_strlcpy(out->name, in->name, sizeof out->name);
3565     out->wildcards = oxm12_to_ofp11_flow_match_fields(in->wildcards);
3566     out->match = oxm12_to_ofp11_flow_match_fields(in->match);
3567     out->instructions = in->instructions;
3568     out->write_actions = in->write_actions;
3569     out->apply_actions = in->apply_actions;
3570     out->config = in->config;
3571     out->max_entries = in->max_entries;
3572     out->active_count = in->active_count;
3573     out->lookup_count = in->lookup_count;
3574     out->matched_count = in->matched_count;
3575 }
3576
3577 static void
3578 ofputil_put_ofp13_table_stats(const struct ofp12_table_stats *in,
3579                               struct ofpbuf *buf)
3580 {
3581     struct ofp13_table_stats *out;
3582
3583     /* OF 1.3 splits table features off the ofp_table_stats,
3584      * so there is not much here. */
3585
3586     out = ofpbuf_put_uninit(buf, sizeof *out);
3587     out->table_id = in->table_id;
3588     out->active_count = in->active_count;
3589     out->lookup_count = in->lookup_count;
3590     out->matched_count = in->matched_count;
3591 }
3592
3593 struct ofpbuf *
3594 ofputil_encode_table_stats_reply(const struct ofp12_table_stats stats[], int n,
3595                                  const struct ofp_header *request)
3596 {
3597     struct ofpbuf *reply;
3598     int i;
3599
3600     reply = ofpraw_alloc_stats_reply(request, n * sizeof *stats);
3601
3602     switch ((enum ofp_version) request->version) {
3603     case OFP10_VERSION:
3604         for (i = 0; i < n; i++) {
3605             ofputil_put_ofp10_table_stats(&stats[i], reply);
3606         }
3607         break;
3608
3609     case OFP11_VERSION:
3610         for (i = 0; i < n; i++) {
3611             ofputil_put_ofp11_table_stats(&stats[i], reply);
3612         }
3613         break;
3614
3615     case OFP12_VERSION:
3616         ofpbuf_put(reply, stats, n * sizeof *stats);
3617         break;
3618
3619     case OFP13_VERSION:
3620         for (i = 0; i < n; i++) {
3621             ofputil_put_ofp13_table_stats(&stats[i], reply);
3622         }
3623         break;
3624
3625     default:
3626         NOT_REACHED();
3627     }
3628
3629     return reply;
3630 }
3631 \f
3632 /* ofputil_flow_monitor_request */
3633
3634 /* Converts an NXST_FLOW_MONITOR request in 'msg' into an abstract
3635  * ofputil_flow_monitor_request in 'rq'.
3636  *
3637  * Multiple NXST_FLOW_MONITOR requests can be packed into a single OpenFlow
3638  * message.  Calling this function multiple times for a single 'msg' iterates
3639  * through the requests.  The caller must initially leave 'msg''s layer
3640  * pointers null and not modify them between calls.
3641  *
3642  * Returns 0 if successful, EOF if no requests were left in this 'msg',
3643  * otherwise an OFPERR_* value. */
3644 int
3645 ofputil_decode_flow_monitor_request(struct ofputil_flow_monitor_request *rq,
3646                                     struct ofpbuf *msg)
3647 {
3648     struct nx_flow_monitor_request *nfmr;
3649     uint16_t flags;
3650
3651     if (!msg->l2) {
3652         msg->l2 = msg->data;
3653         ofpraw_pull_assert(msg);
3654     }
3655
3656     if (!msg->size) {
3657         return EOF;
3658     }
3659
3660     nfmr = ofpbuf_try_pull(msg, sizeof *nfmr);
3661     if (!nfmr) {
3662         VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW_MONITOR request has %zu "
3663                      "leftover bytes at end", msg->size);
3664         return OFPERR_OFPBRC_BAD_LEN;
3665     }
3666
3667     flags = ntohs(nfmr->flags);
3668     if (!(flags & (NXFMF_ADD | NXFMF_DELETE | NXFMF_MODIFY))
3669         || flags & ~(NXFMF_INITIAL | NXFMF_ADD | NXFMF_DELETE
3670                      | NXFMF_MODIFY | NXFMF_ACTIONS | NXFMF_OWN)) {
3671         VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW_MONITOR has bad flags %#"PRIx16,
3672                      flags);
3673         return OFPERR_NXBRC_FM_BAD_FLAGS;
3674     }
3675
3676     if (!is_all_zeros(nfmr->zeros, sizeof nfmr->zeros)) {
3677         return OFPERR_NXBRC_MUST_BE_ZERO;
3678     }
3679
3680     rq->id = ntohl(nfmr->id);
3681     rq->flags = flags;
3682     rq->out_port = ntohs(nfmr->out_port);
3683     rq->table_id = nfmr->table_id;
3684
3685     return nx_pull_match(msg, ntohs(nfmr->match_len), &rq->match, NULL, NULL);
3686 }
3687
3688 void
3689 ofputil_append_flow_monitor_request(
3690     const struct ofputil_flow_monitor_request *rq, struct ofpbuf *msg)
3691 {
3692     struct nx_flow_monitor_request *nfmr;
3693     size_t start_ofs;
3694     int match_len;
3695
3696     if (!msg->size) {
3697         ofpraw_put(OFPRAW_NXST_FLOW_MONITOR_REQUEST, OFP10_VERSION, msg);
3698     }
3699
3700     start_ofs = msg->size;
3701     ofpbuf_put_zeros(msg, sizeof *nfmr);
3702     match_len = nx_put_match(msg, &rq->match, htonll(0), htonll(0));
3703
3704     nfmr = ofpbuf_at_assert(msg, start_ofs, sizeof *nfmr);
3705     nfmr->id = htonl(rq->id);
3706     nfmr->flags = htons(rq->flags);
3707     nfmr->out_port = htons(rq->out_port);
3708     nfmr->match_len = htons(match_len);
3709     nfmr->table_id = rq->table_id;
3710 }
3711
3712 /* Converts an NXST_FLOW_MONITOR reply (also known as a flow update) in 'msg'
3713  * into an abstract ofputil_flow_update in 'update'.  The caller must have
3714  * initialized update->match to point to space allocated for a match.
3715  *
3716  * Uses 'ofpacts' to store the abstract OFPACT_* version of the update's
3717  * actions (except for NXFME_ABBREV, which never includes actions).  The caller
3718  * must initialize 'ofpacts' and retains ownership of it.  'update->ofpacts'
3719  * will point into the 'ofpacts' buffer.
3720  *
3721  * Multiple flow updates can be packed into a single OpenFlow message.  Calling
3722  * this function multiple times for a single 'msg' iterates through the
3723  * updates.  The caller must initially leave 'msg''s layer pointers null and
3724  * not modify them between calls.
3725  *
3726  * Returns 0 if successful, EOF if no updates were left in this 'msg',
3727  * otherwise an OFPERR_* value. */
3728 int
3729 ofputil_decode_flow_update(struct ofputil_flow_update *update,
3730                            struct ofpbuf *msg, struct ofpbuf *ofpacts)
3731 {
3732     struct nx_flow_update_header *nfuh;
3733     unsigned int length;
3734
3735     if (!msg->l2) {
3736         msg->l2 = msg->data;
3737         ofpraw_pull_assert(msg);
3738     }
3739
3740     if (!msg->size) {
3741         return EOF;
3742     }
3743
3744     if (msg->size < sizeof(struct nx_flow_update_header)) {
3745         goto bad_len;
3746     }
3747
3748     nfuh = msg->data;
3749     update->event = ntohs(nfuh->event);
3750     length = ntohs(nfuh->length);
3751     if (length > msg->size || length % 8) {
3752         goto bad_len;
3753     }
3754
3755     if (update->event == NXFME_ABBREV) {
3756         struct nx_flow_update_abbrev *nfua;
3757
3758         if (length != sizeof *nfua) {
3759             goto bad_len;
3760         }
3761
3762         nfua = ofpbuf_pull(msg, sizeof *nfua);
3763         update->xid = nfua->xid;
3764         return 0;
3765     } else if (update->event == NXFME_ADDED
3766                || update->event == NXFME_DELETED
3767                || update->event == NXFME_MODIFIED) {
3768         struct nx_flow_update_full *nfuf;
3769         unsigned int actions_len;
3770         unsigned int match_len;
3771         enum ofperr error;
3772
3773         if (length < sizeof *nfuf) {
3774             goto bad_len;
3775         }
3776
3777         nfuf = ofpbuf_pull(msg, sizeof *nfuf);
3778         match_len = ntohs(nfuf->match_len);
3779         if (sizeof *nfuf + match_len > length) {
3780             goto bad_len;
3781         }
3782
3783         update->reason = ntohs(nfuf->reason);
3784         update->idle_timeout = ntohs(nfuf->idle_timeout);
3785         update->hard_timeout = ntohs(nfuf->hard_timeout);
3786         update->table_id = nfuf->table_id;
3787         update->cookie = nfuf->cookie;
3788         update->priority = ntohs(nfuf->priority);
3789
3790         error = nx_pull_match(msg, match_len, update->match, NULL, NULL);
3791         if (error) {
3792             return error;
3793         }
3794
3795         actions_len = length - sizeof *nfuf - ROUND_UP(match_len, 8);
3796         error = ofpacts_pull_openflow10(msg, actions_len, ofpacts);
3797         if (error) {
3798             return error;
3799         }
3800
3801         update->ofpacts = ofpacts->data;
3802         update->ofpacts_len = ofpacts->size;
3803         return 0;
3804     } else {
3805         VLOG_WARN_RL(&bad_ofmsg_rl,
3806                      "NXST_FLOW_MONITOR reply has bad event %"PRIu16,
3807                      ntohs(nfuh->event));
3808         return OFPERR_NXBRC_FM_BAD_EVENT;
3809     }
3810
3811 bad_len:
3812     VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW_MONITOR reply has %zu "
3813                  "leftover bytes at end", msg->size);
3814     return OFPERR_OFPBRC_BAD_LEN;
3815 }
3816
3817 uint32_t
3818 ofputil_decode_flow_monitor_cancel(const struct ofp_header *oh)
3819 {
3820     const struct nx_flow_monitor_cancel *cancel = ofpmsg_body(oh);
3821
3822     return ntohl(cancel->id);
3823 }
3824
3825 struct ofpbuf *
3826 ofputil_encode_flow_monitor_cancel(uint32_t id)
3827 {
3828     struct nx_flow_monitor_cancel *nfmc;
3829     struct ofpbuf *msg;
3830
3831     msg = ofpraw_alloc(OFPRAW_NXT_FLOW_MONITOR_CANCEL, OFP10_VERSION, 0);
3832     nfmc = ofpbuf_put_uninit(msg, sizeof *nfmc);
3833     nfmc->id = htonl(id);
3834     return msg;
3835 }
3836
3837 void
3838 ofputil_start_flow_update(struct list *replies)
3839 {
3840     struct ofpbuf *msg;
3841
3842     msg = ofpraw_alloc_xid(OFPRAW_NXST_FLOW_MONITOR_REPLY, OFP10_VERSION,
3843                            htonl(0), 1024);
3844
3845     list_init(replies);
3846     list_push_back(replies, &msg->list_node);
3847 }
3848
3849 void
3850 ofputil_append_flow_update(const struct ofputil_flow_update *update,
3851                            struct list *replies)
3852 {
3853     struct nx_flow_update_header *nfuh;
3854     struct ofpbuf *msg;
3855     size_t start_ofs;
3856
3857     msg = ofpbuf_from_list(list_back(replies));
3858     start_ofs = msg->size;
3859
3860     if (update->event == NXFME_ABBREV) {
3861         struct nx_flow_update_abbrev *nfua;
3862
3863         nfua = ofpbuf_put_zeros(msg, sizeof *nfua);
3864         nfua->xid = update->xid;
3865     } else {
3866         struct nx_flow_update_full *nfuf;
3867         int match_len;
3868
3869         ofpbuf_put_zeros(msg, sizeof *nfuf);
3870         match_len = nx_put_match(msg, update->match, htonll(0), htonll(0));
3871         ofpacts_put_openflow10(update->ofpacts, update->ofpacts_len, msg);
3872
3873         nfuf = ofpbuf_at_assert(msg, start_ofs, sizeof *nfuf);
3874         nfuf->reason = htons(update->reason);
3875         nfuf->priority = htons(update->priority);
3876         nfuf->idle_timeout = htons(update->idle_timeout);
3877         nfuf->hard_timeout = htons(update->hard_timeout);
3878         nfuf->match_len = htons(match_len);
3879         nfuf->table_id = update->table_id;
3880         nfuf->cookie = update->cookie;
3881     }
3882
3883     nfuh = ofpbuf_at_assert(msg, start_ofs, sizeof *nfuh);
3884     nfuh->length = htons(msg->size - start_ofs);
3885     nfuh->event = htons(update->event);
3886
3887     ofpmp_postappend(replies, start_ofs);
3888 }
3889 \f
3890 struct ofpbuf *
3891 ofputil_encode_packet_out(const struct ofputil_packet_out *po,
3892                           enum ofputil_protocol protocol)
3893 {
3894     enum ofp_version ofp_version = ofputil_protocol_to_ofp_version(protocol);
3895     struct ofpbuf *msg;
3896     size_t size;
3897
3898     size = po->ofpacts_len;
3899     if (po->buffer_id == UINT32_MAX) {
3900         size += po->packet_len;
3901     }
3902
3903     switch (ofp_version) {
3904     case OFP10_VERSION: {
3905         struct ofp10_packet_out *opo;
3906         size_t actions_ofs;
3907
3908         msg = ofpraw_alloc(OFPRAW_OFPT10_PACKET_OUT, OFP10_VERSION, size);
3909         ofpbuf_put_zeros(msg, sizeof *opo);
3910         actions_ofs = msg->size;
3911         ofpacts_put_openflow10(po->ofpacts, po->ofpacts_len, msg);
3912
3913         opo = msg->l3;
3914         opo->buffer_id = htonl(po->buffer_id);
3915         opo->in_port = htons(po->in_port);
3916         opo->actions_len = htons(msg->size - actions_ofs);
3917         break;
3918     }
3919
3920     case OFP11_VERSION:
3921     case OFP12_VERSION:
3922     case OFP13_VERSION: {
3923         struct ofp11_packet_out *opo;
3924         size_t len;
3925
3926         msg = ofpraw_alloc(OFPRAW_OFPT11_PACKET_OUT, ofp_version, size);
3927         ofpbuf_put_zeros(msg, sizeof *opo);
3928         len = ofpacts_put_openflow11_actions(po->ofpacts, po->ofpacts_len, msg);
3929
3930         opo = msg->l3;
3931         opo->buffer_id = htonl(po->buffer_id);
3932         opo->in_port = ofputil_port_to_ofp11(po->in_port);
3933         opo->actions_len = htons(len);
3934         break;
3935     }
3936
3937     default:
3938         NOT_REACHED();
3939     }
3940
3941     if (po->buffer_id == UINT32_MAX) {
3942         ofpbuf_put(msg, po->packet, po->packet_len);
3943     }
3944
3945     ofpmsg_update_length(msg);
3946
3947     return msg;
3948 }
3949 \f
3950 /* Creates and returns an OFPT_ECHO_REQUEST message with an empty payload. */
3951 struct ofpbuf *
3952 make_echo_request(enum ofp_version ofp_version)
3953 {
3954     return ofpraw_alloc_xid(OFPRAW_OFPT_ECHO_REQUEST, ofp_version,
3955                             htonl(0), 0);
3956 }
3957
3958 /* Creates and returns an OFPT_ECHO_REPLY message matching the
3959  * OFPT_ECHO_REQUEST message in 'rq'. */
3960 struct ofpbuf *
3961 make_echo_reply(const struct ofp_header *rq)
3962 {
3963     struct ofpbuf rq_buf;
3964     struct ofpbuf *reply;
3965
3966     ofpbuf_use_const(&rq_buf, rq, ntohs(rq->length));
3967     ofpraw_pull_assert(&rq_buf);
3968
3969     reply = ofpraw_alloc_reply(OFPRAW_OFPT_ECHO_REPLY, rq, rq_buf.size);
3970     ofpbuf_put(reply, rq_buf.data, rq_buf.size);
3971     return reply;
3972 }
3973
3974 struct ofpbuf *
3975 ofputil_encode_barrier_request(enum ofp_version ofp_version)
3976 {
3977     enum ofpraw type;
3978
3979     switch (ofp_version) {
3980     case OFP13_VERSION:
3981     case OFP12_VERSION:
3982     case OFP11_VERSION:
3983         type = OFPRAW_OFPT11_BARRIER_REQUEST;
3984         break;
3985
3986     case OFP10_VERSION:
3987         type = OFPRAW_OFPT10_BARRIER_REQUEST;
3988         break;
3989
3990     default:
3991         NOT_REACHED();
3992     }
3993
3994     return ofpraw_alloc(type, ofp_version, 0);
3995 }
3996
3997 const char *
3998 ofputil_frag_handling_to_string(enum ofp_config_flags flags)
3999 {
4000     switch (flags & OFPC_FRAG_MASK) {
4001     case OFPC_FRAG_NORMAL:   return "normal";
4002     case OFPC_FRAG_DROP:     return "drop";
4003     case OFPC_FRAG_REASM:    return "reassemble";
4004     case OFPC_FRAG_NX_MATCH: return "nx-match";
4005     }
4006
4007     NOT_REACHED();
4008 }
4009
4010 bool
4011 ofputil_frag_handling_from_string(const char *s, enum ofp_config_flags *flags)
4012 {
4013     if (!strcasecmp(s, "normal")) {
4014         *flags = OFPC_FRAG_NORMAL;
4015     } else if (!strcasecmp(s, "drop")) {
4016         *flags = OFPC_FRAG_DROP;
4017     } else if (!strcasecmp(s, "reassemble")) {
4018         *flags = OFPC_FRAG_REASM;
4019     } else if (!strcasecmp(s, "nx-match")) {
4020         *flags = OFPC_FRAG_NX_MATCH;
4021     } else {
4022         return false;
4023     }
4024     return true;
4025 }
4026
4027 /* Converts the OpenFlow 1.1+ port number 'ofp11_port' into an OpenFlow 1.0
4028  * port number and stores the latter in '*ofp10_port', for the purpose of
4029  * decoding OpenFlow 1.1+ protocol messages.  Returns 0 if successful,
4030  * otherwise an OFPERR_* number.
4031  *
4032  * See the definition of OFP11_MAX for an explanation of the mapping. */
4033 enum ofperr
4034 ofputil_port_from_ofp11(ovs_be32 ofp11_port, uint16_t *ofp10_port)
4035 {
4036     uint32_t ofp11_port_h = ntohl(ofp11_port);
4037
4038     if (ofp11_port_h < OFPP_MAX) {
4039         *ofp10_port = ofp11_port_h;
4040         return 0;
4041     } else if (ofp11_port_h >= OFPP11_MAX) {
4042         *ofp10_port = ofp11_port_h - OFPP11_OFFSET;
4043         return 0;
4044     } else {
4045         VLOG_WARN_RL(&bad_ofmsg_rl, "port %"PRIu32" is outside the supported "
4046                      "range 0 through %d or 0x%"PRIx32" through 0x%"PRIx32,
4047                      ofp11_port_h, OFPP_MAX - 1,
4048                      (uint32_t) OFPP11_MAX, UINT32_MAX);
4049         return OFPERR_OFPBAC_BAD_OUT_PORT;
4050     }
4051 }
4052
4053 /* Returns the OpenFlow 1.1+ port number equivalent to the OpenFlow 1.0 port
4054  * number 'ofp10_port', for encoding OpenFlow 1.1+ protocol messages.
4055  *
4056  * See the definition of OFP11_MAX for an explanation of the mapping. */
4057 ovs_be32
4058 ofputil_port_to_ofp11(uint16_t ofp10_port)
4059 {
4060     return htonl(ofp10_port < OFPP_MAX
4061                  ? ofp10_port
4062                  : ofp10_port + OFPP11_OFFSET);
4063 }
4064
4065 /* Checks that 'port' is a valid output port for the OFPAT10_OUTPUT action, given
4066  * that the switch will never have more than 'max_ports' ports.  Returns 0 if
4067  * 'port' is valid, otherwise an OpenFlow return code. */
4068 enum ofperr
4069 ofputil_check_output_port(uint16_t port, int max_ports)
4070 {
4071     switch (port) {
4072     case OFPP_IN_PORT:
4073     case OFPP_TABLE:
4074     case OFPP_NORMAL:
4075     case OFPP_FLOOD:
4076     case OFPP_ALL:
4077     case OFPP_CONTROLLER:
4078     case OFPP_NONE:
4079     case OFPP_LOCAL:
4080         return 0;
4081
4082     default:
4083         if (port < max_ports) {
4084             return 0;
4085         }
4086         return OFPERR_OFPBAC_BAD_OUT_PORT;
4087     }
4088 }
4089
4090 #define OFPUTIL_NAMED_PORTS                     \
4091         OFPUTIL_NAMED_PORT(IN_PORT)             \
4092         OFPUTIL_NAMED_PORT(TABLE)               \
4093         OFPUTIL_NAMED_PORT(NORMAL)              \
4094         OFPUTIL_NAMED_PORT(FLOOD)               \
4095         OFPUTIL_NAMED_PORT(ALL)                 \
4096         OFPUTIL_NAMED_PORT(CONTROLLER)          \
4097         OFPUTIL_NAMED_PORT(LOCAL)               \
4098         OFPUTIL_NAMED_PORT(ANY)
4099
4100 /* For backwards compatibility, so that "none" is recognized as OFPP_ANY */
4101 #define OFPUTIL_NAMED_PORTS_WITH_NONE           \
4102         OFPUTIL_NAMED_PORTS                     \
4103         OFPUTIL_NAMED_PORT(NONE)
4104
4105 /* Stores the port number represented by 's' into '*portp'.  's' may be an
4106  * integer or, for reserved ports, the standard OpenFlow name for the port
4107  * (e.g. "LOCAL").
4108  *
4109  * Returns true if successful, false if 's' is not a valid OpenFlow port number
4110  * or name.  The caller should issue an error message in this case, because
4111  * this function usually does not.  (This gives the caller an opportunity to
4112  * look up the port name another way, e.g. by contacting the switch and listing
4113  * the names of all its ports).
4114  *
4115  * This function accepts OpenFlow 1.0 port numbers.  It also accepts a subset
4116  * of OpenFlow 1.1+ port numbers, mapping those port numbers into the 16-bit
4117  * range as described in include/openflow/openflow-1.1.h. */
4118 bool
4119 ofputil_port_from_string(const char *s, uint16_t *portp)
4120 {
4121     unsigned int port32;
4122
4123     *portp = 0;
4124     if (str_to_uint(s, 10, &port32)) {
4125         if (port32 < OFPP_MAX) {
4126             *portp = port32;
4127             return true;
4128         } else if (port32 < OFPP_FIRST_RESV) {
4129             VLOG_WARN("port %u is a reserved OF1.0 port number that will "
4130                       "be translated to %u when talking to an OF1.1 or "
4131                       "later controller", port32, port32 + OFPP11_OFFSET);
4132             *portp = port32;
4133             return true;
4134         } else if (port32 <= OFPP_LAST_RESV) {
4135             struct ds msg;
4136
4137             ds_init(&msg);
4138             ofputil_format_port(port32, &msg);
4139             VLOG_WARN_ONCE("referring to port %s as %u is deprecated for "
4140                            "compatibility with future versions of OpenFlow",
4141                            ds_cstr(&msg), port32);
4142             ds_destroy(&msg);
4143
4144             *portp = port32;
4145             return true;
4146         } else if (port32 < OFPP11_MAX) {
4147             VLOG_WARN("port %u is outside the supported range 0 through "
4148                       "%"PRIx16" or 0x%x through 0x%"PRIx32, port32,
4149                       UINT16_MAX, (unsigned int) OFPP11_MAX, UINT32_MAX);
4150             return false;
4151         } else {
4152             *portp = port32 - OFPP11_OFFSET;
4153             return true;
4154         }
4155     } else {
4156         struct pair {
4157             const char *name;
4158             uint16_t value;
4159         };
4160         static const struct pair pairs[] = {
4161 #define OFPUTIL_NAMED_PORT(NAME) {#NAME, OFPP_##NAME},
4162             OFPUTIL_NAMED_PORTS_WITH_NONE
4163 #undef OFPUTIL_NAMED_PORT
4164         };
4165         const struct pair *p;
4166
4167         for (p = pairs; p < &pairs[ARRAY_SIZE(pairs)]; p++) {
4168             if (!strcasecmp(s, p->name)) {
4169                 *portp = p->value;
4170                 return true;
4171             }
4172         }
4173         return false;
4174     }
4175 }
4176
4177 /* Appends to 's' a string representation of the OpenFlow port number 'port'.
4178  * Most ports' string representation is just the port number, but for special
4179  * ports, e.g. OFPP_LOCAL, it is the name, e.g. "LOCAL". */
4180 void
4181 ofputil_format_port(uint16_t port, struct ds *s)
4182 {
4183     const char *name;
4184
4185     switch (port) {
4186 #define OFPUTIL_NAMED_PORT(NAME) case OFPP_##NAME: name = #NAME; break;
4187         OFPUTIL_NAMED_PORTS
4188 #undef OFPUTIL_NAMED_PORT
4189
4190     default:
4191         ds_put_format(s, "%"PRIu16, port);
4192         return;
4193     }
4194     ds_put_cstr(s, name);
4195 }
4196
4197 /* Given a buffer 'b' that contains an array of OpenFlow ports of type
4198  * 'ofp_version', tries to pull the first element from the array.  If
4199  * successful, initializes '*pp' with an abstract representation of the
4200  * port and returns 0.  If no ports remain to be decoded, returns EOF.
4201  * On an error, returns a positive OFPERR_* value. */
4202 int
4203 ofputil_pull_phy_port(enum ofp_version ofp_version, struct ofpbuf *b,
4204                       struct ofputil_phy_port *pp)
4205 {
4206     switch (ofp_version) {
4207     case OFP10_VERSION: {
4208         const struct ofp10_phy_port *opp = ofpbuf_try_pull(b, sizeof *opp);
4209         return opp ? ofputil_decode_ofp10_phy_port(pp, opp) : EOF;
4210     }
4211     case OFP11_VERSION:
4212     case OFP12_VERSION:
4213     case OFP13_VERSION: {
4214         const struct ofp11_port *op = ofpbuf_try_pull(b, sizeof *op);
4215         return op ? ofputil_decode_ofp11_port(pp, op) : EOF;
4216     }
4217     default:
4218         NOT_REACHED();
4219     }
4220 }
4221
4222 /* Given a buffer 'b' that contains an array of OpenFlow ports of type
4223  * 'ofp_version', returns the number of elements. */
4224 size_t ofputil_count_phy_ports(uint8_t ofp_version, struct ofpbuf *b)
4225 {
4226     return b->size / ofputil_get_phy_port_size(ofp_version);
4227 }
4228
4229 /* Returns the 'enum ofputil_action_code' corresponding to 'name' (e.g. if
4230  * 'name' is "output" then the return value is OFPUTIL_OFPAT10_OUTPUT), or -1 if
4231  * 'name' is not the name of any action.
4232  *
4233  * ofp-util.def lists the mapping from names to action. */
4234 int
4235 ofputil_action_code_from_name(const char *name)
4236 {
4237     static const char *names[OFPUTIL_N_ACTIONS] = {
4238         NULL,
4239 #define OFPAT10_ACTION(ENUM, STRUCT, NAME)             NAME,
4240 #define OFPAT11_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) NAME,
4241 #define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME)   NAME,
4242 #include "ofp-util.def"
4243     };
4244
4245     const char **p;
4246
4247     for (p = names; p < &names[ARRAY_SIZE(names)]; p++) {
4248         if (*p && !strcasecmp(name, *p)) {
4249             return p - names;
4250         }
4251     }
4252     return -1;
4253 }
4254
4255 /* Appends an action of the type specified by 'code' to 'buf' and returns the
4256  * action.  Initializes the parts of 'action' that identify it as having type
4257  * <ENUM> and length 'sizeof *action' and zeros the rest.  For actions that
4258  * have variable length, the length used and cleared is that of struct
4259  * <STRUCT>.  */
4260 void *
4261 ofputil_put_action(enum ofputil_action_code code, struct ofpbuf *buf)
4262 {
4263     switch (code) {
4264     case OFPUTIL_ACTION_INVALID:
4265         NOT_REACHED();
4266
4267 #define OFPAT10_ACTION(ENUM, STRUCT, NAME)                  \
4268     case OFPUTIL_##ENUM: return ofputil_put_##ENUM(buf);
4269 #define OFPAT11_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME)      \
4270     case OFPUTIL_##ENUM: return ofputil_put_##ENUM(buf);
4271 #define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME)        \
4272     case OFPUTIL_##ENUM: return ofputil_put_##ENUM(buf);
4273 #include "ofp-util.def"
4274     }
4275     NOT_REACHED();
4276 }
4277
4278 #define OFPAT10_ACTION(ENUM, STRUCT, NAME)                        \
4279     void                                                        \
4280     ofputil_init_##ENUM(struct STRUCT *s)                       \
4281     {                                                           \
4282         memset(s, 0, sizeof *s);                                \
4283         s->type = htons(ENUM);                                  \
4284         s->len = htons(sizeof *s);                              \
4285     }                                                           \
4286                                                                 \
4287     struct STRUCT *                                             \
4288     ofputil_put_##ENUM(struct ofpbuf *buf)                      \
4289     {                                                           \
4290         struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s);   \
4291         ofputil_init_##ENUM(s);                                 \
4292         return s;                                               \
4293     }
4294 #define OFPAT11_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) \
4295     OFPAT10_ACTION(ENUM, STRUCT, NAME)
4296 #define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME)            \
4297     void                                                        \
4298     ofputil_init_##ENUM(struct STRUCT *s)                       \
4299     {                                                           \
4300         memset(s, 0, sizeof *s);                                \
4301         s->type = htons(OFPAT10_VENDOR);                        \
4302         s->len = htons(sizeof *s);                              \
4303         s->vendor = htonl(NX_VENDOR_ID);                        \
4304         s->subtype = htons(ENUM);                               \
4305     }                                                           \
4306                                                                 \
4307     struct STRUCT *                                             \
4308     ofputil_put_##ENUM(struct ofpbuf *buf)                      \
4309     {                                                           \
4310         struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s);   \
4311         ofputil_init_##ENUM(s);                                 \
4312         return s;                                               \
4313     }
4314 #include "ofp-util.def"
4315
4316 static void
4317 ofputil_normalize_match__(struct match *match, bool may_log)
4318 {
4319     enum {
4320         MAY_NW_ADDR     = 1 << 0, /* nw_src, nw_dst */
4321         MAY_TP_ADDR     = 1 << 1, /* tp_src, tp_dst */
4322         MAY_NW_PROTO    = 1 << 2, /* nw_proto */
4323         MAY_IPVx        = 1 << 3, /* tos, frag, ttl */
4324         MAY_ARP_SHA     = 1 << 4, /* arp_sha */
4325         MAY_ARP_THA     = 1 << 5, /* arp_tha */
4326         MAY_IPV6        = 1 << 6, /* ipv6_src, ipv6_dst, ipv6_label */
4327         MAY_ND_TARGET   = 1 << 7, /* nd_target */
4328         MAY_MPLS        = 1 << 8, /* mpls label and tc */
4329     } may_match;
4330
4331     struct flow_wildcards wc;
4332
4333     /* Figure out what fields may be matched. */
4334     if (match->flow.dl_type == htons(ETH_TYPE_IP)) {
4335         may_match = MAY_NW_PROTO | MAY_IPVx | MAY_NW_ADDR;
4336         if (match->flow.nw_proto == IPPROTO_TCP ||
4337             match->flow.nw_proto == IPPROTO_UDP ||
4338             match->flow.nw_proto == IPPROTO_ICMP) {
4339             may_match |= MAY_TP_ADDR;
4340         }
4341     } else if (match->flow.dl_type == htons(ETH_TYPE_IPV6)) {
4342         may_match = MAY_NW_PROTO | MAY_IPVx | MAY_IPV6;
4343         if (match->flow.nw_proto == IPPROTO_TCP ||
4344             match->flow.nw_proto == IPPROTO_UDP) {
4345             may_match |= MAY_TP_ADDR;
4346         } else if (match->flow.nw_proto == IPPROTO_ICMPV6) {
4347             may_match |= MAY_TP_ADDR;
4348             if (match->flow.tp_src == htons(ND_NEIGHBOR_SOLICIT)) {
4349                 may_match |= MAY_ND_TARGET | MAY_ARP_SHA;
4350             } else if (match->flow.tp_src == htons(ND_NEIGHBOR_ADVERT)) {
4351                 may_match |= MAY_ND_TARGET | MAY_ARP_THA;
4352             }
4353         }
4354     } else if (match->flow.dl_type == htons(ETH_TYPE_ARP) ||
4355                match->flow.dl_type == htons(ETH_TYPE_RARP)) {
4356         may_match = MAY_NW_PROTO | MAY_NW_ADDR | MAY_ARP_SHA | MAY_ARP_THA;
4357     } else if (eth_type_mpls(match->flow.dl_type)) {
4358         may_match = MAY_MPLS;
4359     } else {
4360         may_match = 0;
4361     }
4362
4363     /* Clear the fields that may not be matched. */
4364     wc = match->wc;
4365     if (!(may_match & MAY_NW_ADDR)) {
4366         wc.masks.nw_src = wc.masks.nw_dst = htonl(0);
4367     }
4368     if (!(may_match & MAY_TP_ADDR)) {
4369         wc.masks.tp_src = wc.masks.tp_dst = htons(0);
4370     }
4371     if (!(may_match & MAY_NW_PROTO)) {
4372         wc.masks.nw_proto = 0;
4373     }
4374     if (!(may_match & MAY_IPVx)) {
4375         wc.masks.nw_tos = 0;
4376         wc.masks.nw_ttl = 0;
4377     }
4378     if (!(may_match & MAY_ARP_SHA)) {
4379         memset(wc.masks.arp_sha, 0, ETH_ADDR_LEN);
4380     }
4381     if (!(may_match & MAY_ARP_THA)) {
4382         memset(wc.masks.arp_tha, 0, ETH_ADDR_LEN);
4383     }
4384     if (!(may_match & MAY_IPV6)) {
4385         wc.masks.ipv6_src = wc.masks.ipv6_dst = in6addr_any;
4386         wc.masks.ipv6_label = htonl(0);
4387     }
4388     if (!(may_match & MAY_ND_TARGET)) {
4389         wc.masks.nd_target = in6addr_any;
4390     }
4391     if (!(may_match & MAY_MPLS)) {
4392         wc.masks.mpls_lse = htonl(0);
4393         wc.masks.mpls_depth = 0;
4394     }
4395
4396     /* Log any changes. */
4397     if (!flow_wildcards_equal(&wc, &match->wc)) {
4398         bool log = may_log && !VLOG_DROP_INFO(&bad_ofmsg_rl);
4399         char *pre = log ? match_to_string(match, OFP_DEFAULT_PRIORITY) : NULL;
4400
4401         match->wc = wc;
4402         match_zero_wildcarded_fields(match);
4403
4404         if (log) {
4405             char *post = match_to_string(match, OFP_DEFAULT_PRIORITY);
4406             VLOG_INFO("normalization changed ofp_match, details:");
4407             VLOG_INFO(" pre: %s", pre);
4408             VLOG_INFO("post: %s", post);
4409             free(pre);
4410             free(post);
4411         }
4412     }
4413 }
4414
4415 /* "Normalizes" the wildcards in 'match'.  That means:
4416  *
4417  *    1. If the type of level N is known, then only the valid fields for that
4418  *       level may be specified.  For example, ARP does not have a TOS field,
4419  *       so nw_tos must be wildcarded if 'match' specifies an ARP flow.
4420  *       Similarly, IPv4 does not have any IPv6 addresses, so ipv6_src and
4421  *       ipv6_dst (and other fields) must be wildcarded if 'match' specifies an
4422  *       IPv4 flow.
4423  *
4424  *    2. If the type of level N is not known (or not understood by Open
4425  *       vSwitch), then no fields at all for that level may be specified.  For
4426  *       example, Open vSwitch does not understand SCTP, an L4 protocol, so the
4427  *       L4 fields tp_src and tp_dst must be wildcarded if 'match' specifies an
4428  *       SCTP flow.
4429  *
4430  * If this function changes 'match', it logs a rate-limited informational
4431  * message. */
4432 void
4433 ofputil_normalize_match(struct match *match)
4434 {
4435     ofputil_normalize_match__(match, true);
4436 }
4437
4438 /* Same as ofputil_normalize_match() without the logging.  Thus, this function
4439  * is suitable for a program's internal use, whereas ofputil_normalize_match()
4440  * sense for use on flows received from elsewhere (so that a bug in the program
4441  * that sent them can be reported and corrected). */
4442 void
4443 ofputil_normalize_match_quiet(struct match *match)
4444 {
4445     ofputil_normalize_match__(match, false);
4446 }
4447
4448 /* Parses a key or a key-value pair from '*stringp'.
4449  *
4450  * On success: Stores the key into '*keyp'.  Stores the value, if present, into
4451  * '*valuep', otherwise an empty string.  Advances '*stringp' past the end of
4452  * the key-value pair, preparing it for another call.  '*keyp' and '*valuep'
4453  * are substrings of '*stringp' created by replacing some of its bytes by null
4454  * terminators.  Returns true.
4455  *
4456  * If '*stringp' is just white space or commas, sets '*keyp' and '*valuep' to
4457  * NULL and returns false. */
4458 bool
4459 ofputil_parse_key_value(char **stringp, char **keyp, char **valuep)
4460 {
4461     char *pos, *key, *value;
4462     size_t key_len;
4463
4464     pos = *stringp;
4465     pos += strspn(pos, ", \t\r\n");
4466     if (*pos == '\0') {
4467         *keyp = *valuep = NULL;
4468         return false;
4469     }
4470
4471     key = pos;
4472     key_len = strcspn(pos, ":=(, \t\r\n");
4473     if (key[key_len] == ':' || key[key_len] == '=') {
4474         /* The value can be separated by a colon. */
4475         size_t value_len;
4476
4477         value = key + key_len + 1;
4478         value_len = strcspn(value, ", \t\r\n");
4479         pos = value + value_len + (value[value_len] != '\0');
4480         value[value_len] = '\0';
4481     } else if (key[key_len] == '(') {
4482         /* The value can be surrounded by balanced parentheses.  The outermost
4483          * set of parentheses is removed. */
4484         int level = 1;
4485         size_t value_len;
4486
4487         value = key + key_len + 1;
4488         for (value_len = 0; level > 0; value_len++) {
4489             switch (value[value_len]) {
4490             case '\0':
4491                 level = 0;
4492                 break;
4493
4494             case '(':
4495                 level++;
4496                 break;
4497
4498             case ')':
4499                 level--;
4500                 break;
4501             }
4502         }
4503         value[value_len - 1] = '\0';
4504         pos = value + value_len;
4505     } else {
4506         /* There might be no value at all. */
4507         value = key + key_len;  /* Will become the empty string below. */
4508         pos = key + key_len + (key[key_len] != '\0');
4509     }
4510     key[key_len] = '\0';
4511
4512     *stringp = pos;
4513     *keyp = key;
4514     *valuep = value;
4515     return true;
4516 }
4517
4518 /* Encode a dump ports request for 'port', the encoded message
4519  * will be for Open Flow version 'ofp_version'. Returns message
4520  * as a struct ofpbuf. Returns encoded message on success, NULL on error */
4521 struct ofpbuf *
4522 ofputil_encode_dump_ports_request(enum ofp_version ofp_version, int16_t port)
4523 {
4524     struct ofpbuf *request;
4525
4526     switch (ofp_version) {
4527     case OFP10_VERSION: {
4528         struct ofp10_port_stats_request *req;
4529         request = ofpraw_alloc(OFPRAW_OFPST10_PORT_REQUEST, ofp_version, 0);
4530         req = ofpbuf_put_zeros(request, sizeof *req);
4531         req->port_no = htons(port);
4532         break;
4533     }
4534     case OFP11_VERSION:
4535     case OFP12_VERSION:
4536     case OFP13_VERSION: {
4537         struct ofp11_port_stats_request *req;
4538         request = ofpraw_alloc(OFPRAW_OFPST11_PORT_REQUEST, ofp_version, 0);
4539         req = ofpbuf_put_zeros(request, sizeof *req);
4540         req->port_no = ofputil_port_to_ofp11(port);
4541         break;
4542     }
4543     default:
4544         NOT_REACHED();
4545     }
4546
4547     return request;
4548 }
4549
4550 static void
4551 ofputil_port_stats_to_ofp10(const struct ofputil_port_stats *ops,
4552                             struct ofp10_port_stats *ps10)
4553 {
4554     ps10->port_no = htons(ops->port_no);
4555     memset(ps10->pad, 0, sizeof ps10->pad);
4556     put_32aligned_be64(&ps10->rx_packets, htonll(ops->stats.rx_packets));
4557     put_32aligned_be64(&ps10->tx_packets, htonll(ops->stats.tx_packets));
4558     put_32aligned_be64(&ps10->rx_bytes, htonll(ops->stats.rx_bytes));
4559     put_32aligned_be64(&ps10->tx_bytes, htonll(ops->stats.tx_bytes));
4560     put_32aligned_be64(&ps10->rx_dropped, htonll(ops->stats.rx_dropped));
4561     put_32aligned_be64(&ps10->tx_dropped, htonll(ops->stats.tx_dropped));
4562     put_32aligned_be64(&ps10->rx_errors, htonll(ops->stats.rx_errors));
4563     put_32aligned_be64(&ps10->tx_errors, htonll(ops->stats.tx_errors));
4564     put_32aligned_be64(&ps10->rx_frame_err, htonll(ops->stats.rx_frame_errors));
4565     put_32aligned_be64(&ps10->rx_over_err, htonll(ops->stats.rx_over_errors));
4566     put_32aligned_be64(&ps10->rx_crc_err, htonll(ops->stats.rx_crc_errors));
4567     put_32aligned_be64(&ps10->collisions, htonll(ops->stats.collisions));
4568 }
4569
4570 static void
4571 ofputil_port_stats_to_ofp11(const struct ofputil_port_stats *ops,
4572                             struct ofp11_port_stats *ps11)
4573 {
4574     ps11->port_no = ofputil_port_to_ofp11(ops->port_no);
4575     memset(ps11->pad, 0, sizeof ps11->pad);
4576     ps11->rx_packets = htonll(ops->stats.rx_packets);
4577     ps11->tx_packets = htonll(ops->stats.tx_packets);
4578     ps11->rx_bytes = htonll(ops->stats.rx_bytes);
4579     ps11->tx_bytes = htonll(ops->stats.tx_bytes);
4580     ps11->rx_dropped = htonll(ops->stats.rx_dropped);
4581     ps11->tx_dropped = htonll(ops->stats.tx_dropped);
4582     ps11->rx_errors = htonll(ops->stats.rx_errors);
4583     ps11->tx_errors = htonll(ops->stats.tx_errors);
4584     ps11->rx_frame_err = htonll(ops->stats.rx_frame_errors);
4585     ps11->rx_over_err = htonll(ops->stats.rx_over_errors);
4586     ps11->rx_crc_err = htonll(ops->stats.rx_crc_errors);
4587     ps11->collisions = htonll(ops->stats.collisions);
4588 }
4589
4590 static void
4591 ofputil_port_stats_to_ofp13(const struct ofputil_port_stats *ops,
4592                             struct ofp13_port_stats *ps13)
4593 {
4594     ofputil_port_stats_to_ofp11(ops, &ps13->ps);
4595
4596     /* OF 1.3 adds duration fields */
4597     /* FIXME: Need to implement port alive duration (sec + nsec) */
4598     ps13->duration_sec = htonl(~0);
4599     ps13->duration_nsec = htonl(~0);
4600 }
4601
4602
4603 /* Encode a ports stat for 'ops' and append it to 'replies'. */
4604 void
4605 ofputil_append_port_stat(struct list *replies,
4606                          const struct ofputil_port_stats *ops)
4607 {
4608     struct ofpbuf *msg = ofpbuf_from_list(list_back(replies));
4609     struct ofp_header *oh = msg->data;
4610
4611     switch ((enum ofp_version)oh->version) {
4612     case OFP13_VERSION: {
4613         struct ofp13_port_stats *reply = ofpmp_append(replies, sizeof *reply);
4614         ofputil_port_stats_to_ofp13(ops, reply);
4615         break;
4616     }
4617     case OFP12_VERSION:
4618     case OFP11_VERSION: {
4619         struct ofp11_port_stats *reply = ofpmp_append(replies, sizeof *reply);
4620         ofputil_port_stats_to_ofp11(ops, reply);
4621         break;
4622     }
4623
4624     case OFP10_VERSION: {
4625         struct ofp10_port_stats *reply = ofpmp_append(replies, sizeof *reply);
4626         ofputil_port_stats_to_ofp10(ops, reply);
4627         break;
4628     }
4629
4630     default:
4631         NOT_REACHED();
4632     }
4633 }
4634
4635 static enum ofperr
4636 ofputil_port_stats_from_ofp10(struct ofputil_port_stats *ops,
4637                               const struct ofp10_port_stats *ps10)
4638 {
4639     memset(ops, 0, sizeof *ops);
4640
4641     ops->port_no = ntohs(ps10->port_no);
4642     ops->stats.rx_packets = ntohll(get_32aligned_be64(&ps10->rx_packets));
4643     ops->stats.tx_packets = ntohll(get_32aligned_be64(&ps10->tx_packets));
4644     ops->stats.rx_bytes = ntohll(get_32aligned_be64(&ps10->rx_bytes));
4645     ops->stats.tx_bytes = ntohll(get_32aligned_be64(&ps10->tx_bytes));
4646     ops->stats.rx_dropped = ntohll(get_32aligned_be64(&ps10->rx_dropped));
4647     ops->stats.tx_dropped = ntohll(get_32aligned_be64(&ps10->tx_dropped));
4648     ops->stats.rx_errors = ntohll(get_32aligned_be64(&ps10->rx_errors));
4649     ops->stats.tx_errors = ntohll(get_32aligned_be64(&ps10->tx_errors));
4650     ops->stats.rx_frame_errors =
4651         ntohll(get_32aligned_be64(&ps10->rx_frame_err));
4652     ops->stats.rx_over_errors = ntohll(get_32aligned_be64(&ps10->rx_over_err));
4653     ops->stats.rx_crc_errors = ntohll(get_32aligned_be64(&ps10->rx_crc_err));
4654     ops->stats.collisions = ntohll(get_32aligned_be64(&ps10->collisions));
4655
4656     return 0;
4657 }
4658
4659 static enum ofperr
4660 ofputil_port_stats_from_ofp11(struct ofputil_port_stats *ops,
4661                               const struct ofp11_port_stats *ps11)
4662 {
4663     enum ofperr error;
4664
4665     memset(ops, 0, sizeof *ops);
4666     error = ofputil_port_from_ofp11(ps11->port_no, &ops->port_no);
4667     if (error) {
4668         return error;
4669     }
4670
4671     ops->stats.rx_packets = ntohll(ps11->rx_packets);
4672     ops->stats.tx_packets = ntohll(ps11->tx_packets);
4673     ops->stats.rx_bytes = ntohll(ps11->rx_bytes);
4674     ops->stats.tx_bytes = ntohll(ps11->tx_bytes);
4675     ops->stats.rx_dropped = ntohll(ps11->rx_dropped);
4676     ops->stats.tx_dropped = ntohll(ps11->tx_dropped);
4677     ops->stats.rx_errors = ntohll(ps11->rx_errors);
4678     ops->stats.tx_errors = ntohll(ps11->tx_errors);
4679     ops->stats.rx_frame_errors = ntohll(ps11->rx_frame_err);
4680     ops->stats.rx_over_errors = ntohll(ps11->rx_over_err);
4681     ops->stats.rx_crc_errors = ntohll(ps11->rx_crc_err);
4682     ops->stats.collisions = ntohll(ps11->collisions);
4683
4684     return 0;
4685 }
4686
4687 static enum ofperr
4688 ofputil_port_stats_from_ofp13(struct ofputil_port_stats *ops,
4689                               const struct ofp13_port_stats *ps13)
4690 {
4691     enum ofperr error =
4692         ofputil_port_stats_from_ofp11(ops, &ps13->ps);
4693     if (!error) {
4694         /* FIXME: Get ps13->duration_sec and ps13->duration_nsec,
4695          * Add to netdev_stats? */
4696     }
4697
4698     return error;
4699 }
4700
4701
4702 /* Returns the number of port stats elements in OFPTYPE_PORT_STATS_REPLY
4703  * message 'oh'. */
4704 size_t
4705 ofputil_count_port_stats(const struct ofp_header *oh)
4706 {
4707     struct ofpbuf b;
4708
4709     ofpbuf_use_const(&b, oh, ntohs(oh->length));
4710     ofpraw_pull_assert(&b);
4711
4712     BUILD_ASSERT(sizeof(struct ofp10_port_stats) ==
4713                  sizeof(struct ofp11_port_stats));
4714     return b.size / sizeof(struct ofp10_port_stats);
4715 }
4716
4717 /* Converts an OFPST_PORT_STATS reply in 'msg' into an abstract
4718  * ofputil_port_stats in 'ps'.
4719  *
4720  * Multiple OFPST_PORT_STATS replies can be packed into a single OpenFlow
4721  * message.  Calling this function multiple times for a single 'msg' iterates
4722  * through the replies.  The caller must initially leave 'msg''s layer pointers
4723  * null and not modify them between calls.
4724  *
4725  * Returns 0 if successful, EOF if no replies were left in this 'msg',
4726  * otherwise a positive errno value. */
4727 int
4728 ofputil_decode_port_stats(struct ofputil_port_stats *ps, struct ofpbuf *msg)
4729 {
4730     enum ofperr error;
4731     enum ofpraw raw;
4732
4733     error = (msg->l2
4734              ? ofpraw_decode(&raw, msg->l2)
4735              : ofpraw_pull(&raw, msg));
4736     if (error) {
4737         return error;
4738     }
4739
4740     if (!msg->size) {
4741         return EOF;
4742     } else if (raw == OFPRAW_OFPST13_PORT_REPLY) {
4743         const struct ofp13_port_stats *ps13;
4744
4745         ps13 = ofpbuf_try_pull(msg, sizeof *ps13);
4746         if (!ps13) {
4747             goto bad_len;
4748         }
4749         return ofputil_port_stats_from_ofp13(ps, ps13);
4750     } else if (raw == OFPRAW_OFPST11_PORT_REPLY) {
4751         const struct ofp11_port_stats *ps11;
4752
4753         ps11 = ofpbuf_try_pull(msg, sizeof *ps11);
4754         if (!ps11) {
4755             goto bad_len;
4756         }
4757         return ofputil_port_stats_from_ofp11(ps, ps11);
4758     } else if (raw == OFPRAW_OFPST10_PORT_REPLY) {
4759         const struct ofp10_port_stats *ps10;
4760
4761         ps10 = ofpbuf_try_pull(msg, sizeof *ps10);
4762         if (!ps10) {
4763             goto bad_len;
4764         }
4765         return ofputil_port_stats_from_ofp10(ps, ps10);
4766     } else {
4767         NOT_REACHED();
4768     }
4769
4770  bad_len:
4771     VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_PORT reply has %zu leftover "
4772                  "bytes at end", msg->size);
4773     return OFPERR_OFPBRC_BAD_LEN;
4774 }
4775
4776 /* Parse a port status request message into a 16 bit OpenFlow 1.0
4777  * port number and stores the latter in '*ofp10_port'.
4778  * Returns 0 if successful, otherwise an OFPERR_* number. */
4779 enum ofperr
4780 ofputil_decode_port_stats_request(const struct ofp_header *request,
4781                                   uint16_t *ofp10_port)
4782 {
4783     switch ((enum ofp_version)request->version) {
4784     case OFP13_VERSION:
4785     case OFP12_VERSION:
4786     case OFP11_VERSION: {
4787         const struct ofp11_port_stats_request *psr11 = ofpmsg_body(request);
4788         return ofputil_port_from_ofp11(psr11->port_no, ofp10_port);
4789     }
4790
4791     case OFP10_VERSION: {
4792         const struct ofp10_port_stats_request *psr10 = ofpmsg_body(request);
4793         *ofp10_port = ntohs(psr10->port_no);
4794         return 0;
4795     }
4796
4797     default:
4798         NOT_REACHED();
4799     }
4800 }
4801
4802 /* Parse a queue status request message into 'oqsr'.
4803  * Returns 0 if successful, otherwise an OFPERR_* number. */
4804 enum ofperr
4805 ofputil_decode_queue_stats_request(const struct ofp_header *request,
4806                                    struct ofputil_queue_stats_request *oqsr)
4807 {
4808     switch ((enum ofp_version)request->version) {
4809     case OFP13_VERSION:
4810     case OFP12_VERSION:
4811     case OFP11_VERSION: {
4812         const struct ofp11_queue_stats_request *qsr11 = ofpmsg_body(request);
4813         oqsr->queue_id = ntohl(qsr11->queue_id);
4814         return ofputil_port_from_ofp11(qsr11->port_no, &oqsr->port_no);
4815     }
4816
4817     case OFP10_VERSION: {
4818         const struct ofp10_queue_stats_request *qsr10 = ofpmsg_body(request);
4819         oqsr->queue_id = ntohl(qsr10->queue_id);
4820         oqsr->port_no = ntohs(qsr10->port_no);
4821         /* OF 1.0 uses OFPP_ALL for OFPP_ANY */
4822         if (oqsr->port_no == OFPP_ALL) {
4823             oqsr->port_no = OFPP_ANY;
4824         }
4825         return 0;
4826     }
4827
4828     default:
4829         NOT_REACHED();
4830     }
4831 }
4832
4833 /* Encode a queue statsrequest for 'oqsr', the encoded message
4834  * will be fore Open Flow version 'ofp_version'. Returns message
4835  * as a struct ofpbuf. Returns encoded message on success, NULL on error */
4836 struct ofpbuf *
4837 ofputil_encode_queue_stats_request(enum ofp_version ofp_version,
4838                                    const struct ofputil_queue_stats_request *oqsr)
4839 {
4840     struct ofpbuf *request;
4841
4842     switch (ofp_version) {
4843     case OFP11_VERSION:
4844     case OFP12_VERSION:
4845     case OFP13_VERSION: {
4846         struct ofp11_queue_stats_request *req;
4847         request = ofpraw_alloc(OFPRAW_OFPST11_QUEUE_REQUEST, ofp_version, 0);
4848         req = ofpbuf_put_zeros(request, sizeof *req);
4849         req->port_no = ofputil_port_to_ofp11(oqsr->port_no);
4850         req->queue_id = htonl(oqsr->queue_id);
4851         break;
4852     }
4853     case OFP10_VERSION: {
4854         struct ofp10_queue_stats_request *req;
4855         request = ofpraw_alloc(OFPRAW_OFPST10_QUEUE_REQUEST, ofp_version, 0);
4856         req = ofpbuf_put_zeros(request, sizeof *req);
4857         /* OpenFlow 1.0 needs OFPP_ALL instead of OFPP_ANY */
4858         req->port_no = htons(oqsr->port_no == OFPP_ANY
4859                              ? OFPP_ALL : oqsr->port_no);
4860         req->queue_id = htonl(oqsr->queue_id);
4861         break;
4862     }
4863     default:
4864         NOT_REACHED();
4865     }
4866
4867     return request;
4868 }
4869
4870 /* Returns the number of queue stats elements in OFPTYPE_QUEUE_STATS_REPLY
4871  * message 'oh'. */
4872 size_t
4873 ofputil_count_queue_stats(const struct ofp_header *oh)
4874 {
4875     struct ofpbuf b;
4876
4877     ofpbuf_use_const(&b, oh, ntohs(oh->length));
4878     ofpraw_pull_assert(&b);
4879
4880     BUILD_ASSERT(sizeof(struct ofp10_queue_stats) ==
4881                  sizeof(struct ofp11_queue_stats));
4882     return b.size / sizeof(struct ofp10_queue_stats);
4883 }
4884
4885 static enum ofperr
4886 ofputil_queue_stats_from_ofp10(struct ofputil_queue_stats *oqs,
4887                                const struct ofp10_queue_stats *qs10)
4888 {
4889     oqs->port_no = ntohs(qs10->port_no);
4890     oqs->queue_id = ntohl(qs10->queue_id);
4891     oqs->stats.tx_bytes = ntohll(get_32aligned_be64(&qs10->tx_bytes));
4892     oqs->stats.tx_packets = ntohll(get_32aligned_be64(&qs10->tx_packets));
4893     oqs->stats.tx_errors = ntohll(get_32aligned_be64(&qs10->tx_errors));
4894
4895     return 0;
4896 }
4897
4898 static enum ofperr
4899 ofputil_queue_stats_from_ofp11(struct ofputil_queue_stats *oqs,
4900                                const struct ofp11_queue_stats *qs11)
4901 {
4902     enum ofperr error;
4903
4904     error = ofputil_port_from_ofp11(qs11->port_no, &oqs->port_no);
4905     if (error) {
4906         return error;
4907     }
4908
4909     oqs->queue_id = ntohl(qs11->queue_id);
4910     oqs->stats.tx_bytes = ntohll(qs11->tx_bytes);
4911     oqs->stats.tx_packets = ntohll(qs11->tx_packets);
4912     oqs->stats.tx_errors = ntohll(qs11->tx_errors);
4913
4914     return 0;
4915 }
4916
4917 static enum ofperr
4918 ofputil_queue_stats_from_ofp13(struct ofputil_queue_stats *oqs,
4919                                const struct ofp13_queue_stats *qs13)
4920 {
4921     enum ofperr error
4922         = ofputil_queue_stats_from_ofp11(oqs, &qs13->qs);
4923     if (!error) {
4924         /* FIXME: Get qs13->duration_sec and qs13->duration_nsec,
4925          * Add to netdev_queue_stats? */
4926     }
4927
4928     return error;
4929 }
4930
4931 /* Converts an OFPST_QUEUE_STATS reply in 'msg' into an abstract
4932  * ofputil_queue_stats in 'qs'.
4933  *
4934  * Multiple OFPST_QUEUE_STATS replies can be packed into a single OpenFlow
4935  * message.  Calling this function multiple times for a single 'msg' iterates
4936  * through the replies.  The caller must initially leave 'msg''s layer pointers
4937  * null and not modify them between calls.
4938  *
4939  * Returns 0 if successful, EOF if no replies were left in this 'msg',
4940  * otherwise a positive errno value. */
4941 int
4942 ofputil_decode_queue_stats(struct ofputil_queue_stats *qs, struct ofpbuf *msg)
4943 {
4944     enum ofperr error;
4945     enum ofpraw raw;
4946
4947     error = (msg->l2
4948              ? ofpraw_decode(&raw, msg->l2)
4949              : ofpraw_pull(&raw, msg));
4950     if (error) {
4951         return error;
4952     }
4953
4954     if (!msg->size) {
4955         return EOF;
4956     } else if (raw == OFPRAW_OFPST13_QUEUE_REPLY) {
4957         const struct ofp13_queue_stats *qs13;
4958
4959         qs13 = ofpbuf_try_pull(msg, sizeof *qs13);
4960         if (!qs13) {
4961             goto bad_len;
4962         }
4963         return ofputil_queue_stats_from_ofp13(qs, qs13);
4964     } else if (raw == OFPRAW_OFPST11_QUEUE_REPLY) {
4965         const struct ofp11_queue_stats *qs11;
4966
4967         qs11 = ofpbuf_try_pull(msg, sizeof *qs11);
4968         if (!qs11) {
4969             goto bad_len;
4970         }
4971         return ofputil_queue_stats_from_ofp11(qs, qs11);
4972     } else if (raw == OFPRAW_OFPST10_QUEUE_REPLY) {
4973         const struct ofp10_queue_stats *qs10;
4974
4975         qs10 = ofpbuf_try_pull(msg, sizeof *qs10);
4976         if (!qs10) {
4977             goto bad_len;
4978         }
4979         return ofputil_queue_stats_from_ofp10(qs, qs10);
4980     } else {
4981         NOT_REACHED();
4982     }
4983
4984  bad_len:
4985     VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_QUEUE reply has %zu leftover "
4986                  "bytes at end", msg->size);
4987     return OFPERR_OFPBRC_BAD_LEN;
4988 }
4989
4990 static void
4991 ofputil_queue_stats_to_ofp10(const struct ofputil_queue_stats *oqs,
4992                              struct ofp10_queue_stats *qs10)
4993 {
4994     qs10->port_no = htons(oqs->port_no);
4995     memset(qs10->pad, 0, sizeof qs10->pad);
4996     qs10->queue_id = htonl(oqs->queue_id);
4997     put_32aligned_be64(&qs10->tx_bytes, htonll(oqs->stats.tx_bytes));
4998     put_32aligned_be64(&qs10->tx_packets, htonll(oqs->stats.tx_packets));
4999     put_32aligned_be64(&qs10->tx_errors, htonll(oqs->stats.tx_errors));
5000 }
5001
5002 static void
5003 ofputil_queue_stats_to_ofp11(const struct ofputil_queue_stats *oqs,
5004                              struct ofp11_queue_stats *qs11)
5005 {
5006     qs11->port_no = ofputil_port_to_ofp11(oqs->port_no);
5007     qs11->queue_id = htonl(oqs->queue_id);
5008     qs11->tx_bytes = htonll(oqs->stats.tx_bytes);
5009     qs11->tx_packets = htonll(oqs->stats.tx_packets);
5010     qs11->tx_errors = htonll(oqs->stats.tx_errors);
5011 }
5012
5013 static void
5014 ofputil_queue_stats_to_ofp13(const struct ofputil_queue_stats *oqs,
5015                              struct ofp13_queue_stats *qs13)
5016 {
5017     ofputil_queue_stats_to_ofp11(oqs, &qs13->qs);
5018     /* OF 1.3 adds duration fields */
5019     /* FIXME: Need to implement queue alive duration (sec + nsec) */
5020     qs13->duration_sec = htonl(~0);
5021     qs13->duration_nsec = htonl(~0);
5022 }
5023
5024 /* Encode a queue stat for 'oqs' and append it to 'replies'. */
5025 void
5026 ofputil_append_queue_stat(struct list *replies,
5027                           const struct ofputil_queue_stats *oqs)
5028 {
5029     struct ofpbuf *msg = ofpbuf_from_list(list_back(replies));
5030     struct ofp_header *oh = msg->data;
5031
5032     switch ((enum ofp_version)oh->version) {
5033     case OFP13_VERSION: {
5034         struct ofp13_queue_stats *reply = ofpmp_append(replies, sizeof *reply);
5035         ofputil_queue_stats_to_ofp13(oqs, reply);
5036         break;
5037     }
5038
5039     case OFP12_VERSION:
5040     case OFP11_VERSION: {
5041         struct ofp11_queue_stats *reply = ofpmp_append(replies, sizeof *reply);
5042         ofputil_queue_stats_to_ofp11(oqs, reply);
5043         break;
5044     }
5045
5046     case OFP10_VERSION: {
5047         struct ofp10_queue_stats *reply = ofpmp_append(replies, sizeof *reply);
5048         ofputil_queue_stats_to_ofp10(oqs, reply);
5049         break;
5050     }
5051
5052     default:
5053         NOT_REACHED();
5054     }
5055 }