]> git.proxmox.com Git - mirror_ovs.git/blame - lib/ofp-util.c
Use updated dl_type when checking actions that use fields
[mirror_ovs.git] / lib / ofp-util.c
CommitLineData
fa37b408 1/*
cb22974d 2 * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
fa37b408
BP
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"
03e1125c 19#include <ctype.h>
dc4762ed 20#include <errno.h>
fa37b408 21#include <inttypes.h>
6ca00f6f
ETN
22#include <sys/types.h>
23#include <netinet/in.h>
b459a924 24#include <netinet/icmp6.h>
fa37b408 25#include <stdlib.h>
daff3353 26#include "bundle.h"
10a24935 27#include "byte-order.h"
d8ae4d67 28#include "classifier.h"
dc4762ed 29#include "dynamic-string.h"
75a75043 30#include "learn.h"
816fd533 31#include "meta-flow.h"
9e1fd49b 32#include "multipath.h"
6c038611 33#include "netdev.h"
b6c9e612 34#include "nx-match.h"
f25d0cf3 35#include "ofp-actions.h"
dc4762ed 36#include "ofp-errors.h"
982697a4 37#include "ofp-msgs.h"
fa37b408
BP
38#include "ofp-util.h"
39#include "ofpbuf.h"
40#include "packets.h"
41#include "random.h"
4ffd1b43 42#include "unaligned.h"
e41a9130 43#include "type-props.h"
5136ce49 44#include "vlog.h"
fa37b408 45
d98e6007 46VLOG_DEFINE_THIS_MODULE(ofp_util);
fa37b408
BP
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. */
50static struct vlog_rate_limit bad_ofmsg_rl = VLOG_RATE_LIMIT_INIT(1, 5);
51
0596e897
BP
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. */
61ovs_be32
62ofputil_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
c08201d6
BP
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. */
0596e897
BP
74int
75ofputil_netmask_to_wcbits(ovs_be32 netmask)
76{
aad29cd1 77 return 32 - ip_count_cidr_bits(netmask);
0596e897
BP
78}
79
eec25dc1 80/* Converts the OpenFlow 1.0 wildcards in 'ofpfw' (OFPFW10_*) into a
81a76618 81 * flow_wildcards in 'wc' for use in struct match. It is the caller's
eec25dc1
BP
82 * responsibility to handle the special case where the flow match's dl_vlan is
83 * set to OFP_VLAN_NONE. */
7286b1e1 84void
eec25dc1 85ofputil_wildcard_from_ofpfw10(uint32_t ofpfw, struct flow_wildcards *wc)
d8ae4d67 86{
cff78c88 87 BUILD_ASSERT_DECL(FLOW_WC_SEQ == 20);
a877206f 88
81a76618 89 /* Initialize most of wc. */
f9ba8dad 90 flow_wildcards_init_catchall(wc);
bad68a99 91
0bdc4bec 92 if (!(ofpfw & OFPFW10_IN_PORT)) {
26720e24 93 wc->masks.in_port = UINT16_MAX;
27cafc5f 94 }
5d9499c4
BP
95
96 if (!(ofpfw & OFPFW10_NW_TOS)) {
26720e24 97 wc->masks.nw_tos |= IP_DSCP_MASK;
d8ae4d67 98 }
7257b535 99
851d3105 100 if (!(ofpfw & OFPFW10_NW_PROTO)) {
26720e24 101 wc->masks.nw_proto = UINT8_MAX;
851d3105 102 }
26720e24
BP
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);
d8ae4d67 107
eec25dc1 108 if (!(ofpfw & OFPFW10_TP_SRC)) {
26720e24 109 wc->masks.tp_src = htons(UINT16_MAX);
73f33563 110 }
eec25dc1 111 if (!(ofpfw & OFPFW10_TP_DST)) {
26720e24 112 wc->masks.tp_dst = htons(UINT16_MAX);
73f33563
BP
113 }
114
eec25dc1 115 if (!(ofpfw & OFPFW10_DL_SRC)) {
26720e24 116 memset(wc->masks.dl_src, 0xff, ETH_ADDR_LEN);
73c0ce34 117 }
eec25dc1 118 if (!(ofpfw & OFPFW10_DL_DST)) {
26720e24 119 memset(wc->masks.dl_dst, 0xff, ETH_ADDR_LEN);
d8ae4d67 120 }
e2170cff 121 if (!(ofpfw & OFPFW10_DL_TYPE)) {
26720e24 122 wc->masks.dl_type = htons(UINT16_MAX);
e2170cff 123 }
d8ae4d67 124
eb6f28db 125 /* VLAN TCI mask. */
eec25dc1 126 if (!(ofpfw & OFPFW10_DL_VLAN_PCP)) {
26720e24 127 wc->masks.vlan_tci |= htons(VLAN_PCP_MASK | VLAN_CFI);
eb6f28db 128 }
eec25dc1 129 if (!(ofpfw & OFPFW10_DL_VLAN)) {
26720e24 130 wc->masks.vlan_tci |= htons(VLAN_VID_MASK | VLAN_CFI);
eb6f28db
BP
131 }
132}
133
81a76618 134/* Converts the ofp10_match in 'ofmatch' into a struct match in 'match'. */
eb6f28db 135void
81a76618
BP
136ofputil_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. */
296e07ac 142 memset(&match->flow, 0, sizeof match->flow);
81a76618
BP
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;
d8ae4d67 156
66642cb4 157 /* Translate VLANs. */
0c436519 158 if (!(ofpfw & OFPFW10_DL_VLAN) &&
81a76618 159 ofmatch->dl_vlan == htons(OFP10_VLAN_NONE)) {
47271d0d
BP
160 /* Match only packets without 802.1Q header.
161 *
eec25dc1 162 * When OFPFW10_DL_VLAN_PCP is wildcarded, this is obviously correct.
47271d0d 163 *
eec25dc1 164 * If OFPFW10_DL_VLAN_PCP is matched, the flow match is contradictory,
47271d0d
BP
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. */
81a76618
BP
168 match->flow.vlan_tci = htons(0);
169 match->wc.masks.vlan_tci = htons(0xffff);
47271d0d
BP
170 } else {
171 ovs_be16 vid, pcp, tci;
172
81a76618
BP
173 vid = ofmatch->dl_vlan & htons(VLAN_VID_MASK);
174 pcp = htons((ofmatch->dl_vlan_pcp << VLAN_PCP_SHIFT) & VLAN_PCP_MASK);
47271d0d 175 tci = vid | pcp | htons(VLAN_CFI);
81a76618 176 match->flow.vlan_tci = tci & match->wc.masks.vlan_tci;
66642cb4
BP
177 }
178
d8ae4d67 179 /* Clean up. */
81a76618 180 match_zero_wildcarded_fields(match);
d8ae4d67
BP
181}
182
81a76618 183/* Convert 'match' into the OpenFlow 1.0 match structure 'ofmatch'. */
d8ae4d67 184void
81a76618
BP
185ofputil_match_to_ofp10_match(const struct match *match,
186 struct ofp10_match *ofmatch)
d8ae4d67 187{
81a76618 188 const struct flow_wildcards *wc = &match->wc;
eeba8e4f 189 uint32_t ofpfw;
d8ae4d67 190
66642cb4 191 /* Figure out most OpenFlow wildcards. */
27cafc5f 192 ofpfw = 0;
26720e24 193 if (!wc->masks.in_port) {
27cafc5f
BP
194 ofpfw |= OFPFW10_IN_PORT;
195 }
26720e24 196 if (!wc->masks.dl_type) {
27cafc5f
BP
197 ofpfw |= OFPFW10_DL_TYPE;
198 }
26720e24 199 if (!wc->masks.nw_proto) {
27cafc5f
BP
200 ofpfw |= OFPFW10_NW_PROTO;
201 }
26720e24 202 ofpfw |= (ofputil_netmask_to_wcbits(wc->masks.nw_src)
eec25dc1 203 << OFPFW10_NW_SRC_SHIFT);
26720e24 204 ofpfw |= (ofputil_netmask_to_wcbits(wc->masks.nw_dst)
eec25dc1 205 << OFPFW10_NW_DST_SHIFT);
26720e24 206 if (!(wc->masks.nw_tos & IP_DSCP_MASK)) {
eec25dc1 207 ofpfw |= OFPFW10_NW_TOS;
d8ae4d67 208 }
26720e24 209 if (!wc->masks.tp_src) {
eec25dc1 210 ofpfw |= OFPFW10_TP_SRC;
73f33563 211 }
26720e24 212 if (!wc->masks.tp_dst) {
eec25dc1 213 ofpfw |= OFPFW10_TP_DST;
73f33563 214 }
26720e24 215 if (eth_addr_is_zero(wc->masks.dl_src)) {
eec25dc1 216 ofpfw |= OFPFW10_DL_SRC;
73c0ce34 217 }
26720e24 218 if (eth_addr_is_zero(wc->masks.dl_dst)) {
eec25dc1 219 ofpfw |= OFPFW10_DL_DST;
73c0ce34 220 }
ff9d3826 221
66642cb4 222 /* Translate VLANs. */
81a76618
BP
223 ofmatch->dl_vlan = htons(0);
224 ofmatch->dl_vlan_pcp = 0;
225 if (match->wc.masks.vlan_tci == htons(0)) {
eec25dc1 226 ofpfw |= OFPFW10_DL_VLAN | OFPFW10_DL_VLAN_PCP;
81a76618
BP
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);
41ca9a1e 230 ofpfw |= OFPFW10_DL_VLAN_PCP;
66642cb4 231 } else {
81a76618 232 if (!(match->wc.masks.vlan_tci & htons(VLAN_VID_MASK))) {
eec25dc1 233 ofpfw |= OFPFW10_DL_VLAN;
66642cb4 234 } else {
81a76618 235 ofmatch->dl_vlan = htons(vlan_tci_to_vid(match->flow.vlan_tci));
66642cb4
BP
236 }
237
81a76618 238 if (!(match->wc.masks.vlan_tci & htons(VLAN_PCP_MASK))) {
eec25dc1 239 ofpfw |= OFPFW10_DL_VLAN_PCP;
66642cb4 240 } else {
81a76618 241 ofmatch->dl_vlan_pcp = vlan_tci_to_pcp(match->flow.vlan_tci);
66642cb4
BP
242 }
243 }
244
245 /* Compose most of the match structure. */
81a76618
BP
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);
d8ae4d67
BP
259}
260
aa319503 261enum ofperr
81a76618
BP
262ofputil_pull_ofp11_match(struct ofpbuf *buf, struct match *match,
263 uint16_t *padded_match_len)
aa319503 264{
36a16881
SH
265 struct ofp11_match_header *omh = buf->data;
266 uint16_t match_len;
aa319503 267
36a16881 268 if (buf->size < sizeof *omh) {
aa319503
BP
269 return OFPERR_OFPBMC_BAD_LEN;
270 }
271
36a16881
SH
272 match_len = ntohs(omh->length);
273
aa319503 274 switch (ntohs(omh->type)) {
36a16881
SH
275 case OFPMT_STANDARD: {
276 struct ofp11_match *om;
277
278 if (match_len != sizeof *om || buf->size < sizeof *om) {
aa319503
BP
279 return OFPERR_OFPBMC_BAD_LEN;
280 }
281 om = ofpbuf_pull(buf, sizeof *om);
36a16881
SH
282 if (padded_match_len) {
283 *padded_match_len = match_len;
284 }
81a76618 285 return ofputil_match_from_ofp11_match(om, match);
36a16881
SH
286 }
287
288 case OFPMT_OXM:
289 if (padded_match_len) {
290 *padded_match_len = ROUND_UP(match_len, 8);
291 }
81a76618 292 return oxm_pull_match(buf, match);
aa319503
BP
293
294 default:
295 return OFPERR_OFPBMC_BAD_TYPE;
296 }
297}
298
81a76618
BP
299/* Converts the ofp11_match in 'match' into a struct match in 'match. Returns
300 * 0 if successful, otherwise an OFPERR_* value. */
410698cf 301enum ofperr
81a76618
BP
302ofputil_match_from_ofp11_match(const struct ofp11_match *ofmatch,
303 struct match *match)
410698cf 304{
81a76618 305 uint16_t wc = ntohl(ofmatch->wildcards);
410698cf
BP
306 uint8_t dl_src_mask[ETH_ADDR_LEN];
307 uint8_t dl_dst_mask[ETH_ADDR_LEN];
8087f5ff 308 bool ipv4, arp, rarp;
410698cf
BP
309 int i;
310
81a76618 311 match_init_catchall(match);
410698cf
BP
312
313 if (!(wc & OFPFW11_IN_PORT)) {
314 uint16_t ofp_port;
315 enum ofperr error;
316
81a76618 317 error = ofputil_port_from_ofp11(ofmatch->in_port, &ofp_port);
410698cf
BP
318 if (error) {
319 return OFPERR_OFPBMC_BAD_VALUE;
320 }
81a76618 321 match_set_in_port(match, ofp_port);
410698cf
BP
322 }
323
324 for (i = 0; i < ETH_ADDR_LEN; i++) {
81a76618 325 dl_src_mask[i] = ~ofmatch->dl_src_mask[i];
410698cf 326 }
81a76618 327 match_set_dl_src_masked(match, ofmatch->dl_src, dl_src_mask);
410698cf
BP
328
329 for (i = 0; i < ETH_ADDR_LEN; i++) {
81a76618 330 dl_dst_mask[i] = ~ofmatch->dl_dst_mask[i];
410698cf 331 }
81a76618 332 match_set_dl_dst_masked(match, ofmatch->dl_dst, dl_dst_mask);
410698cf
BP
333
334 if (!(wc & OFPFW11_DL_VLAN)) {
81a76618 335 if (ofmatch->dl_vlan == htons(OFPVID11_NONE)) {
410698cf 336 /* Match only packets without a VLAN tag. */
81a76618
BP
337 match->flow.vlan_tci = htons(0);
338 match->wc.masks.vlan_tci = htons(UINT16_MAX);
410698cf 339 } else {
81a76618 340 if (ofmatch->dl_vlan == htons(OFPVID11_ANY)) {
410698cf 341 /* Match any packet with a VLAN tag regardless of VID. */
81a76618
BP
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) {
410698cf 345 /* Match only packets with the specified VLAN VID. */
81a76618
BP
346 match->flow.vlan_tci = htons(VLAN_CFI) | ofmatch->dl_vlan;
347 match->wc.masks.vlan_tci = htons(VLAN_CFI | VLAN_VID_MASK);
410698cf
BP
348 } else {
349 /* Invalid VID. */
350 return OFPERR_OFPBMC_BAD_VALUE;
351 }
352
353 if (!(wc & OFPFW11_DL_VLAN_PCP)) {
81a76618
BP
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);
410698cf
BP
358 } else {
359 /* Invalid PCP. */
360 return OFPERR_OFPBMC_BAD_VALUE;
361 }
362 }
363 }
364 }
365
366 if (!(wc & OFPFW11_DL_TYPE)) {
81a76618
BP
367 match_set_dl_type(match,
368 ofputil_dl_type_from_openflow(ofmatch->dl_type));
410698cf
BP
369 }
370
81a76618
BP
371 ipv4 = match->flow.dl_type == htons(ETH_TYPE_IP);
372 arp = match->flow.dl_type == htons(ETH_TYPE_ARP);
8087f5ff 373 rarp = match->flow.dl_type == htons(ETH_TYPE_RARP);
410698cf
BP
374
375 if (ipv4 && !(wc & OFPFW11_NW_TOS)) {
81a76618 376 if (ofmatch->nw_tos & ~IP_DSCP_MASK) {
410698cf
BP
377 /* Invalid TOS. */
378 return OFPERR_OFPBMC_BAD_VALUE;
379 }
380
81a76618 381 match_set_nw_dscp(match, ofmatch->nw_tos);
410698cf
BP
382 }
383
8087f5ff 384 if (ipv4 || arp || rarp) {
410698cf 385 if (!(wc & OFPFW11_NW_PROTO)) {
81a76618 386 match_set_nw_proto(match, ofmatch->nw_proto);
410698cf 387 }
81a76618
BP
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);
410698cf
BP
390 }
391
392#define OFPFW11_TP_ALL (OFPFW11_TP_SRC | OFPFW11_TP_DST)
393 if (ipv4 && (wc & OFPFW11_TP_ALL) != OFPFW11_TP_ALL) {
81a76618 394 switch (match->flow.nw_proto) {
410698cf
BP
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)) {
81a76618 404 uint16_t icmp_type = ntohs(ofmatch->tp_src);
410698cf 405 if (icmp_type < 0x100) {
81a76618 406 match_set_icmp_type(match, icmp_type);
410698cf
BP
407 } else {
408 return OFPERR_OFPBMC_BAD_FIELD;
409 }
410 }
411 if (!(wc & OFPFW11_TP_DST)) {
81a76618 412 uint16_t icmp_code = ntohs(ofmatch->tp_dst);
410698cf 413 if (icmp_code < 0x100) {
81a76618 414 match_set_icmp_code(match, icmp_code);
410698cf
BP
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))) {
81a76618 424 match_set_tp_src(match, ofmatch->tp_src);
410698cf
BP
425 }
426 if (!(wc & (OFPFW11_TP_DST))) {
81a76618 427 match_set_tp_dst(match, ofmatch->tp_dst);
410698cf
BP
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
b02475c5 442 if (eth_type_mpls(match->flow.dl_type)) {
410698cf
BP
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
81a76618
BP
451 match_set_metadata_masked(match, ofmatch->metadata,
452 ~ofmatch->metadata_mask);
410698cf
BP
453
454 return 0;
455}
456
81a76618 457/* Convert 'match' into the OpenFlow 1.1 match structure 'ofmatch'. */
410698cf 458void
81a76618
BP
459ofputil_match_to_ofp11_match(const struct match *match,
460 struct ofp11_match *ofmatch)
410698cf
BP
461{
462 uint32_t wc = 0;
463 int i;
464
81a76618
BP
465 memset(ofmatch, 0, sizeof *ofmatch);
466 ofmatch->omh.type = htons(OFPMT_STANDARD);
467 ofmatch->omh.length = htons(OFPMT11_STANDARD_LENGTH);
410698cf 468
81a76618 469 if (!match->wc.masks.in_port) {
410698cf
BP
470 wc |= OFPFW11_IN_PORT;
471 } else {
81a76618 472 ofmatch->in_port = ofputil_port_to_ofp11(match->flow.in_port);
410698cf
BP
473 }
474
81a76618 475 memcpy(ofmatch->dl_src, match->flow.dl_src, ETH_ADDR_LEN);
410698cf 476 for (i = 0; i < ETH_ADDR_LEN; i++) {
81a76618 477 ofmatch->dl_src_mask[i] = ~match->wc.masks.dl_src[i];
410698cf
BP
478 }
479
81a76618 480 memcpy(ofmatch->dl_dst, match->flow.dl_dst, ETH_ADDR_LEN);
410698cf 481 for (i = 0; i < ETH_ADDR_LEN; i++) {
81a76618 482 ofmatch->dl_dst_mask[i] = ~match->wc.masks.dl_dst[i];
410698cf
BP
483 }
484
81a76618 485 if (match->wc.masks.vlan_tci == htons(0)) {
410698cf 486 wc |= OFPFW11_DL_VLAN | OFPFW11_DL_VLAN_PCP;
81a76618
BP
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);
410698cf
BP
490 wc |= OFPFW11_DL_VLAN_PCP;
491 } else {
81a76618
BP
492 if (!(match->wc.masks.vlan_tci & htons(VLAN_VID_MASK))) {
493 ofmatch->dl_vlan = htons(OFPVID11_ANY);
410698cf 494 } else {
81a76618 495 ofmatch->dl_vlan = htons(vlan_tci_to_vid(match->flow.vlan_tci));
410698cf
BP
496 }
497
81a76618 498 if (!(match->wc.masks.vlan_tci & htons(VLAN_PCP_MASK))) {
410698cf
BP
499 wc |= OFPFW11_DL_VLAN_PCP;
500 } else {
81a76618 501 ofmatch->dl_vlan_pcp = vlan_tci_to_pcp(match->flow.vlan_tci);
410698cf
BP
502 }
503 }
504
81a76618 505 if (!match->wc.masks.dl_type) {
410698cf
BP
506 wc |= OFPFW11_DL_TYPE;
507 } else {
81a76618 508 ofmatch->dl_type = ofputil_dl_type_to_openflow(match->flow.dl_type);
410698cf
BP
509 }
510
81a76618 511 if (!(match->wc.masks.nw_tos & IP_DSCP_MASK)) {
410698cf
BP
512 wc |= OFPFW11_NW_TOS;
513 } else {
81a76618 514 ofmatch->nw_tos = match->flow.nw_tos & IP_DSCP_MASK;
410698cf
BP
515 }
516
81a76618 517 if (!match->wc.masks.nw_proto) {
410698cf
BP
518 wc |= OFPFW11_NW_PROTO;
519 } else {
81a76618 520 ofmatch->nw_proto = match->flow.nw_proto;
410698cf
BP
521 }
522
81a76618
BP
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;
410698cf 527
81a76618 528 if (!match->wc.masks.tp_src) {
410698cf
BP
529 wc |= OFPFW11_TP_SRC;
530 } else {
81a76618 531 ofmatch->tp_src = match->flow.tp_src;
410698cf
BP
532 }
533
81a76618 534 if (!match->wc.masks.tp_dst) {
410698cf
BP
535 wc |= OFPFW11_TP_DST;
536 } else {
81a76618 537 ofmatch->tp_dst = match->flow.tp_dst;
410698cf
BP
538 }
539
540 /* MPLS not supported. */
541 wc |= OFPFW11_MPLS_LABEL;
542 wc |= OFPFW11_MPLS_TC;
543
81a76618
BP
544 ofmatch->metadata = match->flow.metadata;
545 ofmatch->metadata_mask = ~match->wc.masks.metadata;
410698cf 546
81a76618 547 ofmatch->wildcards = htonl(wc);
410698cf
BP
548}
549
36956a7d 550/* Given a 'dl_type' value in the format used in struct flow, returns the
eec25dc1
BP
551 * corresponding 'dl_type' value for use in an ofp10_match or ofp11_match
552 * structure. */
36956a7d
BP
553ovs_be16
554ofputil_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
eec25dc1 561/* Given a 'dl_type' value in the format used in an ofp10_match or ofp11_match
36956a7d
BP
562 * structure, returns the corresponding 'dl_type' value for use in struct
563 * flow. */
564ovs_be16
565ofputil_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}
2e4f5fcf 571\f
27527aa0 572/* Protocols. */
7fa91113 573
27527aa0
BP
574struct 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. */
581static const struct proto_abbrev proto_abbrevs[] = {
85813857
BP
582 { OFPUTIL_P_ANY, "any" },
583 { OFPUTIL_P_OF10_STD_ANY, "OpenFlow10" },
6d2c051a 584 { OFPUTIL_P_OF10_NXM_ANY, "NXM" },
e71bff1b 585 { OFPUTIL_P_ANY_OXM, "OXM" },
27527aa0
BP
586};
587#define N_PROTO_ABBREVS ARRAY_SIZE(proto_abbrevs)
588
589enum ofputil_protocol ofputil_flow_dump_protocols[] = {
2e1ae200 590 OFPUTIL_P_OF13_OXM,
8d7785bd 591 OFPUTIL_P_OF12_OXM,
85813857
BP
592 OFPUTIL_P_OF10_NXM,
593 OFPUTIL_P_OF10_STD,
27527aa0
BP
594};
595size_t ofputil_n_flow_dump_protocols = ARRAY_SIZE(ofputil_flow_dump_protocols);
596
4f13da56
BP
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. */
27527aa0 601enum ofputil_protocol
4f13da56 602ofputil_protocols_from_ofp_version(enum ofp_version version)
27527aa0
BP
603{
604 switch (version) {
2e3fa633 605 case OFP10_VERSION:
4f13da56 606 return OFPUTIL_P_OF10_STD_ANY | OFPUTIL_P_OF10_NXM_ANY;
2e3fa633 607 case OFP12_VERSION:
85813857 608 return OFPUTIL_P_OF12_OXM;
2e1ae200
JR
609 case OFP13_VERSION:
610 return OFPUTIL_P_OF13_OXM;
2e3fa633
SH
611 case OFP11_VERSION:
612 default:
613 return 0;
27527aa0
BP
614 }
615}
616
4f13da56
BP
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. */
622enum ofputil_protocol
623ofputil_protocol_from_ofp_version(enum ofp_version version)
624{
625 return rightmost_1bit(ofputil_protocols_from_ofp_version(version));
626}
627
44d3732d 628/* Returns the OpenFlow protocol version number (e.g. OFP10_VERSION,
2e1ae200 629 * etc.) that corresponds to 'protocol'. */
2e3fa633 630enum ofp_version
9e1fd49b
BP
631ofputil_protocol_to_ofp_version(enum ofputil_protocol protocol)
632{
633 switch (protocol) {
85813857
BP
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:
9e1fd49b 638 return OFP10_VERSION;
85813857 639 case OFPUTIL_P_OF12_OXM:
44d3732d 640 return OFP12_VERSION;
2e1ae200
JR
641 case OFPUTIL_P_OF13_OXM:
642 return OFP13_VERSION;
9e1fd49b
BP
643 }
644
645 NOT_REACHED();
646}
647
4f13da56
BP
648/* Returns a bitmap of OpenFlow versions that are supported by at
649 * least one of the 'protocols'. */
650uint32_t
651ofputil_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'. */
666enum ofputil_protocol
667ofputil_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
27527aa0
BP
680/* Returns true if 'protocol' is a single OFPUTIL_P_* value, false
681 * otherwise. */
7fa91113 682bool
27527aa0 683ofputil_protocol_is_valid(enum ofputil_protocol protocol)
7fa91113 684{
27527aa0
BP
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'. */
698enum ofputil_protocol
699ofputil_protocol_set_tid(enum ofputil_protocol protocol, bool enable)
700{
701 switch (protocol) {
85813857
BP
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;
27527aa0 705
85813857
BP
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;
27527aa0 709
85813857
BP
710 case OFPUTIL_P_OF12_OXM:
711 return OFPUTIL_P_OF12_OXM;
44d3732d 712
2e1ae200
JR
713 case OFPUTIL_P_OF13_OXM:
714 return OFPUTIL_P_OF13_OXM;
715
27527aa0
BP
716 default:
717 NOT_REACHED();
7fa91113 718 }
27527aa0 719}
7fa91113 720
27527aa0
BP
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. */
725enum ofputil_protocol
726ofputil_protocol_to_base(enum ofputil_protocol protocol)
727{
728 return ofputil_protocol_set_tid(protocol, false);
7fa91113
BP
729}
730
27527aa0
BP
731/* Returns 'new_base' with any extensions taken from 'cur'. */
732enum ofputil_protocol
733ofputil_protocol_set_base(enum ofputil_protocol cur,
734 enum ofputil_protocol new_base)
7fa91113 735{
27527aa0
BP
736 bool tid = (cur & OFPUTIL_P_TID) != 0;
737
738 switch (new_base) {
85813857
BP
739 case OFPUTIL_P_OF10_STD:
740 case OFPUTIL_P_OF10_STD_TID:
741 return ofputil_protocol_set_tid(OFPUTIL_P_OF10_STD, tid);
27527aa0 742
85813857
BP
743 case OFPUTIL_P_OF10_NXM:
744 case OFPUTIL_P_OF10_NXM_TID:
745 return ofputil_protocol_set_tid(OFPUTIL_P_OF10_NXM, tid);
27527aa0 746
85813857
BP
747 case OFPUTIL_P_OF12_OXM:
748 return ofputil_protocol_set_tid(OFPUTIL_P_OF12_OXM, tid);
44d3732d 749
2e1ae200
JR
750 case OFPUTIL_P_OF13_OXM:
751 return ofputil_protocol_set_tid(OFPUTIL_P_OF13_OXM, tid);
752
7fa91113
BP
753 default:
754 NOT_REACHED();
755 }
756}
757
27527aa0
BP
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. */
761const char *
762ofputil_protocol_to_string(enum ofputil_protocol protocol)
88ca35ee 763{
27527aa0
BP
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) {
85813857 769 case OFPUTIL_P_OF10_NXM:
27527aa0
BP
770 return "NXM-table_id";
771
85813857 772 case OFPUTIL_P_OF10_NXM_TID:
27527aa0
BP
773 return "NXM+table_id";
774
85813857 775 case OFPUTIL_P_OF10_STD:
27527aa0
BP
776 return "OpenFlow10-table_id";
777
85813857 778 case OFPUTIL_P_OF10_STD_TID:
27527aa0 779 return "OpenFlow10+table_id";
44d3732d 780
85813857 781 case OFPUTIL_P_OF12_OXM:
e71bff1b 782 return "OXM-OpenFlow12";
2e1ae200
JR
783
784 case OFPUTIL_P_OF13_OXM:
e71bff1b 785 return "OXM-OpenFlow13";
27527aa0
BP
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()). */
803char *
804ofputil_protocols_to_string(enum ofputil_protocol protocols)
805{
806 struct ds s;
807
cb22974d 808 ovs_assert(!(protocols & ~OFPUTIL_P_ANY));
27527aa0
BP
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
846static enum ofputil_protocol
847ofputil_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. */
874enum ofputil_protocol
875ofputil_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;
88ca35ee
BP
904}
905
7beaa082 906static int
03e1125c
SH
907ofputil_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 }
2e1ae200
JR
918 if (!strcasecmp(s, "OpenFlow13")) {
919 return OFP13_VERSION;
920 }
7beaa082 921 return 0;
03e1125c
SH
922}
923
924static bool
e091ef84 925is_delimiter(unsigned char c)
03e1125c
SH
926{
927 return isspace(c) || c == ',';
928}
929
930uint32_t
931ofputil_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;
7beaa082 938 int version;
03e1125c
SH
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);
7beaa082
SH
951 if (!version) {
952 VLOG_FATAL("Unknown OpenFlow version: \"%s\"", key);
953 }
03e1125c
SH
954 free(key);
955 bitmap |= 1u << version;
956 i += j;
957 }
958
959 return bitmap;
960}
961
7beaa082
SH
962uint32_t
963ofputil_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
03e1125c
SH
979const char *
980ofputil_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";
2e1ae200
JR
989 case OFP13_VERSION:
990 return "OpenFlow13";
03e1125c
SH
991 default:
992 NOT_REACHED();
993 }
994}
995
54834960
EJ
996bool
997ofputil_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
1008const char *
1009ofputil_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
1021int
1022ofputil_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
88ca35ee
BP
1029static bool
1030regs_fully_wildcarded(const struct flow_wildcards *wc)
1031{
1032 int i;
1033
1034 for (i = 0; i < FLOW_N_REGS; i++) {
26720e24 1035 if (wc->masks.regs[i] != 0) {
88ca35ee
BP
1036 return false;
1037 }
1038 }
1039 return true;
1040}
1041
4fe3445a
PS
1042static bool
1043tun_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
81a76618 1052/* Returns a bit-mask of ofputil_protocols that can be used for sending 'match'
27527aa0
BP
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. */
1056enum ofputil_protocol
81a76618 1057ofputil_usable_protocols(const struct match *match)
8368c090 1058{
81a76618 1059 const struct flow_wildcards *wc = &match->wc;
8368c090 1060
cff78c88 1061 BUILD_ASSERT_DECL(FLOW_WC_SEQ == 20);
a877206f 1062
4fe3445a
PS
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
1b567fb9
AA
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
7cd90356 1073 /* NXM, OXM, and OF1.1 support bitwise matching on ethernet addresses. */
26720e24
BP
1074 if (!eth_mask_is_exact(wc->masks.dl_src)
1075 && !eth_addr_is_zero(wc->masks.dl_src)) {
2e1ae200
JR
1076 return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1077 | OFPUTIL_P_OF13_OXM;
73c0ce34 1078 }
26720e24
BP
1079 if (!eth_mask_is_exact(wc->masks.dl_dst)
1080 && !eth_addr_is_zero(wc->masks.dl_dst)) {
2e1ae200
JR
1081 return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1082 | OFPUTIL_P_OF13_OXM;
8368c090
BP
1083 }
1084
7cd90356 1085 /* NXM, OXM, and OF1.1+ support matching metadata. */
26720e24 1086 if (wc->masks.metadata != htonll(0)) {
2e1ae200
JR
1087 return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1088 | OFPUTIL_P_OF13_OXM;
969fc56c
JS
1089 }
1090
7cd90356 1091 /* NXM and OXM support matching ARP hardware addresses. */
26720e24
BP
1092 if (!eth_addr_is_zero(wc->masks.arp_sha) ||
1093 !eth_addr_is_zero(wc->masks.arp_tha)) {
2e1ae200
JR
1094 return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1095 | OFPUTIL_P_OF13_OXM;
bad68a99
JP
1096 }
1097
7cd90356 1098 /* NXM and OXM support matching IPv6 traffic. */
81a76618 1099 if (match->flow.dl_type == htons(ETH_TYPE_IPV6)) {
2e1ae200
JR
1100 return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1101 | OFPUTIL_P_OF13_OXM;
d31f1109
JP
1102 }
1103
7cd90356 1104 /* NXM and OXM support matching registers. */
8368c090 1105 if (!regs_fully_wildcarded(wc)) {
2e1ae200
JR
1106 return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1107 | OFPUTIL_P_OF13_OXM;
8368c090
BP
1108 }
1109
7cd90356 1110 /* NXM and OXM support matching tun_id. */
296e07ac 1111 if (wc->masks.tunnel.tun_id != htonll(0)) {
2e1ae200
JR
1112 return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1113 | OFPUTIL_P_OF13_OXM;
8368c090
BP
1114 }
1115
7cd90356 1116 /* NXM and OXM support matching fragments. */
26720e24 1117 if (wc->masks.nw_frag) {
2e1ae200
JR
1118 return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1119 | OFPUTIL_P_OF13_OXM;
7257b535
BP
1120 }
1121
7cd90356 1122 /* NXM and OXM support matching IPv6 flow label. */
26720e24 1123 if (wc->masks.ipv6_label) {
2e1ae200
JR
1124 return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1125 | OFPUTIL_P_OF13_OXM;
fa8223b7
JP
1126 }
1127
7cd90356 1128 /* NXM and OXM support matching IP ECN bits. */
26720e24 1129 if (wc->masks.nw_tos & IP_ECN_MASK) {
2e1ae200
JR
1130 return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1131 | OFPUTIL_P_OF13_OXM;
530180fd
JP
1132 }
1133
7cd90356 1134 /* NXM and OXM support matching IP TTL/hop limit. */
26720e24 1135 if (wc->masks.nw_ttl) {
2e1ae200
JR
1136 return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1137 | OFPUTIL_P_OF13_OXM;
a61680c6
JP
1138 }
1139
7cd90356 1140 /* NXM and OXM support non-CIDR IPv4 address masks. */
26720e24 1141 if (!ip_is_cidr(wc->masks.nw_src) || !ip_is_cidr(wc->masks.nw_dst)) {
2e1ae200
JR
1142 return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1143 | OFPUTIL_P_OF13_OXM;
c08201d6
BP
1144 }
1145
7cd90356 1146 /* NXM and OXM support bitwise matching on transport port. */
26720e24
BP
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))) {
2e1ae200
JR
1149 return OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1150 | OFPUTIL_P_OF13_OXM;
73f33563
BP
1151 }
1152
b02475c5
SH
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
8368c090 1173 /* Other formats can express this rule. */
27527aa0
BP
1174 return OFPUTIL_P_ANY;
1175}
1176
03e1125c
SH
1177void
1178ofputil_format_version(struct ds *msg, enum ofp_version version)
1179{
8989046d 1180 ds_put_format(msg, "0x%02x", version);
03e1125c
SH
1181}
1182
1183void
1184ofputil_format_version_name(struct ds *msg, enum ofp_version version)
1185{
1186 ds_put_cstr(msg, ofputil_version_to_string(version));
1187}
1188
1189static void
1190ofputil_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
1203void
1204ofputil_format_version_bitmap(struct ds *msg, uint32_t bitmap)
1205{
1206 ofputil_format_version_bitmap__(msg, bitmap, ofputil_format_version);
1207}
1208
1209void
1210ofputil_format_version_bitmap_names(struct ds *msg, uint32_t bitmap)
1211{
1212 ofputil_format_version_bitmap__(msg, bitmap, ofputil_format_version_name);
1213}
1214
de6c85b0
SH
1215static bool
1216ofputil_decode_hello_bitmap(const struct ofp_hello_elem_header *oheh,
0935de41 1217 uint32_t *allowed_versionsp)
de6c85b0
SH
1218{
1219 uint16_t bitmap_len = ntohs(oheh->length) - sizeof *oheh;
1220 const ovs_be32 *bitmap = (const ovs_be32 *) (oheh + 1);
0935de41 1221 uint32_t allowed_versions;
de6c85b0
SH
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 */
0935de41 1232 allowed_versions = ntohl(bitmap[0]);
de6c85b0 1233
0935de41 1234 if (allowed_versions & 1) {
de6c85b0
SH
1235 /* There's no OpenFlow version 0. */
1236 VLOG_WARN_RL(&bad_ofmsg_rl, "peer claims to support invalid OpenFlow "
1237 "version 0x00");
0935de41 1238 allowed_versions &= ~1u;
de6c85b0
SH
1239 }
1240
0935de41 1241 if (!allowed_versions) {
de6c85b0
SH
1242 VLOG_WARN_RL(&bad_ofmsg_rl, "peer does not support any OpenFlow "
1243 "version (between 0x01 and 0x1f)");
1244 return false;
1245 }
1246
0935de41 1247 *allowed_versionsp = allowed_versions;
de6c85b0
SH
1248 return true;
1249}
1250
1251static uint32_t
1252version_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. */
1264bool
1265ofputil_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. */
1299static inline bool
1300should_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. */
1307struct ofpbuf *
1308ofputil_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
74c4b9c1 1320 map_len = sizeof allowed_versions;
de6c85b0
SH
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);
1804d25a
BP
1325
1326 ofpmsg_update_length(msg);
de6c85b0
SH
1327 }
1328
1329 return msg;
1330}
1331
27527aa0
BP
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 *
e43928f2
BP
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'. */
27527aa0
BP
1341struct ofpbuf *
1342ofputil_encode_set_protocol(enum ofputil_protocol current,
1343 enum ofputil_protocol want,
1344 enum ofputil_protocol *next)
1345{
e43928f2 1346 enum ofp_version cur_version, want_version;
27527aa0
BP
1347 enum ofputil_protocol cur_base, want_base;
1348 bool cur_tid, want_tid;
1349
e43928f2
BP
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
27527aa0
BP
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) {
85813857 1363 case OFPUTIL_P_OF10_NXM:
27527aa0
BP
1364 return ofputil_encode_nx_set_flow_format(NXFF_NXM);
1365
85813857 1366 case OFPUTIL_P_OF10_STD:
27527aa0
BP
1367 return ofputil_encode_nx_set_flow_format(NXFF_OPENFLOW10);
1368
85813857 1369 case OFPUTIL_P_OF12_OXM:
2e1ae200
JR
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. */
310f3699 1373 NOT_REACHED();
44d3732d 1374
85813857
BP
1375 case OFPUTIL_P_OF10_STD_TID:
1376 case OFPUTIL_P_OF10_NXM_TID:
27527aa0
BP
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
cb22974d 1388 ovs_assert(current == want);
27527aa0
BP
1389
1390 *next = current;
1391 return NULL;
88ca35ee
BP
1392}
1393
27527aa0
BP
1394/* Returns an NXT_SET_FLOW_FORMAT message that can be used to set the flow
1395 * format to 'nxff'. */
88ca35ee 1396struct ofpbuf *
27527aa0 1397ofputil_encode_nx_set_flow_format(enum nx_flow_format nxff)
88ca35ee 1398{
73dbf4ab 1399 struct nx_set_flow_format *sff;
88ca35ee
BP
1400 struct ofpbuf *msg;
1401
cb22974d 1402 ovs_assert(ofputil_nx_flow_format_is_valid(nxff));
27527aa0 1403
982697a4
BP
1404 msg = ofpraw_alloc(OFPRAW_NXT_SET_FLOW_FORMAT, OFP10_VERSION, 0);
1405 sff = ofpbuf_put_zeros(msg, sizeof *sff);
27527aa0 1406 sff->format = htonl(nxff);
88ca35ee
BP
1407
1408 return msg;
1409}
1410
27527aa0
BP
1411/* Returns the base protocol if 'flow_format' is a valid NXFF_* value, false
1412 * otherwise. */
1413enum ofputil_protocol
1414ofputil_nx_flow_format_to_protocol(enum nx_flow_format flow_format)
1415{
1416 switch (flow_format) {
1417 case NXFF_OPENFLOW10:
85813857 1418 return OFPUTIL_P_OF10_STD;
27527aa0
BP
1419
1420 case NXFF_NXM:
85813857 1421 return OFPUTIL_P_OF10_NXM;
27527aa0
BP
1422
1423 default:
1424 return 0;
1425 }
1426}
1427
1428/* Returns true if 'flow_format' is a valid NXFF_* value, false otherwise. */
1429bool
1430ofputil_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. */
1437const char *
1438ofputil_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
54834960 1450struct ofpbuf *
3f4a1939
SH
1451ofputil_make_set_packet_in_format(enum ofp_version ofp_version,
1452 enum nx_packet_in_format packet_in_format)
54834960 1453{
73dbf4ab 1454 struct nx_set_packet_in_format *spif;
54834960
EJ
1455 struct ofpbuf *msg;
1456
3f4a1939 1457 msg = ofpraw_alloc(OFPRAW_NXT_SET_PACKET_IN_FORMAT, ofp_version, 0);
982697a4 1458 spif = ofpbuf_put_zeros(msg, sizeof *spif);
54834960
EJ
1459 spif->format = htonl(packet_in_format);
1460
1461 return msg;
1462}
1463
6c1491fb
BP
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'). */
1466struct ofpbuf *
1467ofputil_make_flow_mod_table_id(bool flow_mod_table_id)
1468{
73dbf4ab 1469 struct nx_flow_mod_table_id *nfmti;
6c1491fb
BP
1470 struct ofpbuf *msg;
1471
982697a4
BP
1472 msg = ofpraw_alloc(OFPRAW_NXT_FLOW_MOD_TABLE_ID, OFP10_VERSION, 0);
1473 nfmti = ofpbuf_put_zeros(msg, sizeof *nfmti);
6c1491fb
BP
1474 nfmti->set = flow_mod_table_id;
1475 return msg;
1476}
1477
7fa91113
BP
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 *
f25d0cf3
BP
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(). */
90bf1e07 1488enum ofperr
a9a2da38 1489ofputil_decode_flow_mod(struct ofputil_flow_mod *fm,
27527aa0 1490 const struct ofp_header *oh,
f25d0cf3
BP
1491 enum ofputil_protocol protocol,
1492 struct ofpbuf *ofpacts)
2e4f5fcf 1493{
6c1491fb 1494 uint16_t command;
2e4f5fcf 1495 struct ofpbuf b;
982697a4 1496 enum ofpraw raw;
2e4f5fcf 1497
2013493b 1498 ofpbuf_use_const(&b, oh, ntohs(oh->length));
982697a4 1499 raw = ofpraw_pull_assert(&b);
aa319503 1500 if (raw == OFPRAW_OFPT11_FLOW_MOD) {
982697a4 1501 /* Standard OpenFlow 1.1 flow_mod. */
aa319503 1502 const struct ofp11_flow_mod *ofm;
90bf1e07 1503 enum ofperr error;
2e4f5fcf 1504
bbc32a88 1505 ofm = ofpbuf_pull(&b, sizeof *ofm);
2e4f5fcf 1506
81a76618 1507 error = ofputil_pull_ofp11_match(&b, &fm->match, NULL);
aa319503
BP
1508 if (error) {
1509 return error;
1c0b7503
BP
1510 }
1511
aa319503 1512 error = ofpacts_pull_openflow11_instructions(&b, b.size, ofpacts);
f25d0cf3
BP
1513 if (error) {
1514 return error;
1515 }
1516
2e4f5fcf 1517 /* Translate the message. */
81a76618 1518 fm->priority = ntohs(ofm->priority);
aa319503
BP
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 {
aa319503
BP
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;
2e4f5fcf
BP
1530 fm->idle_timeout = ntohs(ofm->idle_timeout);
1531 fm->hard_timeout = ntohs(ofm->hard_timeout);
1532 fm->buffer_id = ntohl(ofm->buffer_id);
aa319503 1533 error = ofputil_port_from_ofp11(ofm->out_port, &fm->out_port);
2e4f5fcf
BP
1534 if (error) {
1535 return error;
1536 }
09861c3f
JR
1537 if ((ofm->command == OFPFC_DELETE
1538 || ofm->command == OFPFC_DELETE_STRICT)
1539 && ofm->out_group != htonl(OFPG_ANY)) {
fb9515e1 1540 return OFPERR_OFPFMFC_UNKNOWN;
2e4f5fcf 1541 }
aa319503
BP
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;
aa319503
BP
1547 enum ofperr error;
1548
1549 /* Get the ofp10_flow_mod. */
1550 ofm = ofpbuf_pull(&b, sizeof *ofm);
1551
aa319503 1552 /* Translate the rule. */
81a76618
BP
1553 ofputil_match_from_ofp10_match(&ofm->match, &fm->match);
1554 ofputil_normalize_match(&fm->match);
aa319503
BP
1555
1556 /* Now get the actions. */
1557 error = ofpacts_pull_openflow10(&b, b.size, ofpacts);
1558 if (error) {
1559 return error;
1560 }
1561
81a76618
BP
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
aa319503
BP
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);
81a76618
BP
1585 error = nx_pull_match(&b, ntohs(nfm->match_len),
1586 &fm->match, &fm->cookie, &fm->cookie_mask);
aa319503
BP
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 }
81a76618 1602 fm->priority = ntohs(nfm->priority);
aa319503
BP
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
2e1ae200
JR
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.
b5bf17dd
BP
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);
2e1ae200
JR
1623 }
1624
aa319503
BP
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;
e729e793 1631 }
2e4f5fcf
BP
1632 }
1633
f25d0cf3
BP
1634 fm->ofpacts = ofpacts->data;
1635 fm->ofpacts_len = ofpacts->size;
6c1491fb 1636
2e4f5fcf
BP
1637 return 0;
1638}
1639
aa6305ea
SH
1640static ovs_be16
1641ofputil_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
2e4f5fcf 1649/* Converts 'fm' into an OFPT_FLOW_MOD or NXT_FLOW_MOD message according to
6cbe2c0f 1650 * 'protocol' and returns the message. */
2e4f5fcf 1651struct ofpbuf *
a9a2da38 1652ofputil_encode_flow_mod(const struct ofputil_flow_mod *fm,
27527aa0 1653 enum ofputil_protocol protocol)
2e4f5fcf 1654{
2e4f5fcf
BP
1655 struct ofpbuf *msg;
1656
27527aa0 1657 switch (protocol) {
2e1ae200
JR
1658 case OFPUTIL_P_OF12_OXM:
1659 case OFPUTIL_P_OF13_OXM: {
aa6305ea
SH
1660 struct ofp11_flow_mod *ofm;
1661
2e1ae200
JR
1662 msg = ofpraw_alloc(OFPRAW_OFPT11_FLOW_MOD,
1663 ofputil_protocol_to_ofp_version(protocol),
aa6305ea
SH
1664 NXM_TYPICAL_LEN + fm->ofpacts_len);
1665 ofm = ofpbuf_put_zeros(msg, sizeof *ofm);
a5ff8823
SH
1666 if (fm->command == OFPFC_ADD) {
1667 ofm->cookie = fm->new_cookie;
1668 } else {
1669 ofm->cookie = fm->cookie;
1670 }
aa6305ea
SH
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);
81a76618 1676 ofm->priority = htons(fm->priority);
aa6305ea
SH
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);
81a76618 1681 oxm_put_match(msg, &fm->match);
5b289eaf 1682 ofpacts_put_openflow11_instructions(fm->ofpacts, fm->ofpacts_len, msg);
aa6305ea
SH
1683 break;
1684 }
1685
85813857
BP
1686 case OFPUTIL_P_OF10_STD:
1687 case OFPUTIL_P_OF10_STD_TID: {
3f192f23
SH
1688 struct ofp10_flow_mod *ofm;
1689
982697a4
BP
1690 msg = ofpraw_alloc(OFPRAW_OFPT10_FLOW_MOD, OFP10_VERSION,
1691 fm->ofpacts_len);
1692 ofm = ofpbuf_put_zeros(msg, sizeof *ofm);
81a76618 1693 ofputil_match_to_ofp10_match(&fm->match, &ofm->match);
623e1caf 1694 ofm->cookie = fm->new_cookie;
aa6305ea 1695 ofm->command = ofputil_tid_command(fm, protocol);
2e4f5fcf
BP
1696 ofm->idle_timeout = htons(fm->idle_timeout);
1697 ofm->hard_timeout = htons(fm->hard_timeout);
81a76618 1698 ofm->priority = htons(fm->priority);
2e4f5fcf
BP
1699 ofm->buffer_id = htonl(fm->buffer_id);
1700 ofm->out_port = htons(fm->out_port);
1701 ofm->flags = htons(fm->flags);
5b289eaf 1702 ofpacts_put_openflow10(fm->ofpacts, fm->ofpacts_len, msg);
27527aa0 1703 break;
3f192f23 1704 }
2e4f5fcf 1705
85813857
BP
1706 case OFPUTIL_P_OF10_NXM:
1707 case OFPUTIL_P_OF10_NXM_TID: {
3f192f23
SH
1708 struct nx_flow_mod *nfm;
1709 int match_len;
1710
982697a4
BP
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);
aa6305ea 1714 nfm->command = ofputil_tid_command(fm, protocol);
623e1caf 1715 nfm->cookie = fm->new_cookie;
81a76618 1716 match_len = nx_put_match(msg, &fm->match, fm->cookie, fm->cookie_mask);
982697a4 1717 nfm = msg->l3;
2e4f5fcf
BP
1718 nfm->idle_timeout = htons(fm->idle_timeout);
1719 nfm->hard_timeout = htons(fm->hard_timeout);
81a76618 1720 nfm->priority = htons(fm->priority);
2e4f5fcf
BP
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);
5b289eaf 1725 ofpacts_put_openflow10(fm->ofpacts, fm->ofpacts_len, msg);
27527aa0 1726 break;
3f192f23 1727 }
27527aa0
BP
1728
1729 default:
2e4f5fcf
BP
1730 NOT_REACHED();
1731 }
1732
982697a4 1733 ofpmsg_update_length(msg);
2e4f5fcf
BP
1734 return msg;
1735}
1736
27527aa0
BP
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.) */
1742enum ofputil_protocol
1743ofputil_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
81a76618 1753 usable_protocols &= ofputil_usable_protocols(&fm->match);
27527aa0
BP
1754 if (fm->table_id != 0xff) {
1755 usable_protocols &= OFPUTIL_P_TID;
1756 }
623e1caf 1757
7cd90356 1758 /* Matching of the cookie is only supported through NXM or OF1.1+. */
623e1caf 1759 if (fm->cookie_mask != htonll(0)) {
2e1ae200
JR
1760 usable_protocols &= OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1761 | OFPUTIL_P_OF13_OXM;
27527aa0
BP
1762 }
1763 }
27527aa0
BP
1764
1765 return usable_protocols;
1766}
1767
90bf1e07 1768static enum ofperr
0157ad3a
SH
1769ofputil_decode_ofpst10_flow_request(struct ofputil_flow_stats_request *fsr,
1770 const struct ofp10_flow_stats_request *ofsr,
1771 bool aggregate)
2e4f5fcf 1772{
2e4f5fcf 1773 fsr->aggregate = aggregate;
81a76618 1774 ofputil_match_from_ofp10_match(&ofsr->match, &fsr->match);
2e4f5fcf
BP
1775 fsr->out_port = ntohs(ofsr->out_port);
1776 fsr->table_id = ofsr->table_id;
e729e793 1777 fsr->cookie = fsr->cookie_mask = htonll(0);
2e4f5fcf
BP
1778
1779 return 0;
1780}
1781
0157ad3a
SH
1782static enum ofperr
1783ofputil_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)) {
fb9515e1 1797 return OFPERR_OFPFMFC_UNKNOWN;
0157ad3a
SH
1798 }
1799 fsr->cookie = ofsr->cookie;
1800 fsr->cookie_mask = ofsr->cookie_mask;
81a76618 1801 error = ofputil_pull_ofp11_match(b, &fsr->match, NULL);
0157ad3a
SH
1802 if (error) {
1803 return error;
1804 }
1805
1806 return 0;
1807}
1808
90bf1e07 1809static enum ofperr
81d1ea94 1810ofputil_decode_nxst_flow_request(struct ofputil_flow_stats_request *fsr,
982697a4 1811 struct ofpbuf *b, bool aggregate)
2e4f5fcf
BP
1812{
1813 const struct nx_flow_stats_request *nfsr;
90bf1e07 1814 enum ofperr error;
2e4f5fcf 1815
982697a4 1816 nfsr = ofpbuf_pull(b, sizeof *nfsr);
81a76618 1817 error = nx_pull_match(b, ntohs(nfsr->match_len), &fsr->match,
e729e793 1818 &fsr->cookie, &fsr->cookie_mask);
2e4f5fcf
BP
1819 if (error) {
1820 return error;
1821 }
982697a4 1822 if (b->size) {
90bf1e07 1823 return OFPERR_OFPBRC_BAD_LEN;
2e4f5fcf
BP
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
b78f6b77
BP
1834 * request 'oh', into an abstract flow_stats_request in 'fsr'. Returns 0 if
1835 * successful, otherwise an OpenFlow error code. */
90bf1e07 1836enum ofperr
81d1ea94 1837ofputil_decode_flow_stats_request(struct ofputil_flow_stats_request *fsr,
b78f6b77 1838 const struct ofp_header *oh)
2e4f5fcf 1839{
982697a4 1840 enum ofpraw raw;
2e4f5fcf 1841 struct ofpbuf b;
2e4f5fcf 1842
2013493b 1843 ofpbuf_use_const(&b, oh, ntohs(oh->length));
982697a4
BP
1844 raw = ofpraw_pull_assert(&b);
1845 switch ((int) raw) {
cfc23141 1846 case OFPRAW_OFPST10_FLOW_REQUEST:
0157ad3a 1847 return ofputil_decode_ofpst10_flow_request(fsr, b.data, false);
2e4f5fcf 1848
617da9cd 1849 case OFPRAW_OFPST10_AGGREGATE_REQUEST:
0157ad3a
SH
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);
2e4f5fcf 1854
617da9cd
SH
1855 case OFPRAW_OFPST11_AGGREGATE_REQUEST:
1856 return ofputil_decode_ofpst11_flow_request(fsr, &b, true);
1857
982697a4
BP
1858 case OFPRAW_NXST_FLOW_REQUEST:
1859 return ofputil_decode_nxst_flow_request(fsr, &b, false);
2e4f5fcf 1860
982697a4
BP
1861 case OFPRAW_NXST_AGGREGATE_REQUEST:
1862 return ofputil_decode_nxst_flow_request(fsr, &b, true);
2e4f5fcf
BP
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,
4ffd1b43 1871 * OFPST_AGGREGATE, NXST_FLOW, or NXST_AGGREGATE request 'oh' according to
27527aa0 1872 * 'protocol', and returns the message. */
2e4f5fcf 1873struct ofpbuf *
81d1ea94 1874ofputil_encode_flow_stats_request(const struct ofputil_flow_stats_request *fsr,
27527aa0 1875 enum ofputil_protocol protocol)
2e4f5fcf
BP
1876{
1877 struct ofpbuf *msg;
982697a4 1878 enum ofpraw raw;
2e4f5fcf 1879
27527aa0 1880 switch (protocol) {
2e1ae200
JR
1881 case OFPUTIL_P_OF12_OXM:
1882 case OFPUTIL_P_OF13_OXM: {
06516c65
SH
1883 struct ofp11_flow_stats_request *ofsr;
1884
1885 raw = (fsr->aggregate
617da9cd 1886 ? OFPRAW_OFPST11_AGGREGATE_REQUEST
cfc23141 1887 : OFPRAW_OFPST11_FLOW_REQUEST);
2e1ae200
JR
1888 msg = ofpraw_alloc(raw, ofputil_protocol_to_ofp_version(protocol),
1889 NXM_TYPICAL_LEN);
06516c65
SH
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
85813857
BP
1900 case OFPUTIL_P_OF10_STD:
1901 case OFPUTIL_P_OF10_STD_TID: {
e2b9ac44 1902 struct ofp10_flow_stats_request *ofsr;
2e4f5fcf 1903
982697a4 1904 raw = (fsr->aggregate
617da9cd 1905 ? OFPRAW_OFPST10_AGGREGATE_REQUEST
cfc23141 1906 : OFPRAW_OFPST10_FLOW_REQUEST);
982697a4
BP
1907 msg = ofpraw_alloc(raw, OFP10_VERSION, 0);
1908 ofsr = ofpbuf_put_zeros(msg, sizeof *ofsr);
81a76618 1909 ofputil_match_to_ofp10_match(&fsr->match, &ofsr->match);
2e4f5fcf
BP
1910 ofsr->table_id = fsr->table_id;
1911 ofsr->out_port = htons(fsr->out_port);
27527aa0
BP
1912 break;
1913 }
1914
85813857
BP
1915 case OFPUTIL_P_OF10_NXM:
1916 case OFPUTIL_P_OF10_NXM_TID: {
2e4f5fcf
BP
1917 struct nx_flow_stats_request *nfsr;
1918 int match_len;
1919
982697a4
BP
1920 raw = (fsr->aggregate
1921 ? OFPRAW_NXST_AGGREGATE_REQUEST
1922 : OFPRAW_NXST_FLOW_REQUEST);
06516c65 1923 msg = ofpraw_alloc(raw, OFP10_VERSION, NXM_TYPICAL_LEN);
982697a4 1924 ofpbuf_put_zeros(msg, sizeof *nfsr);
7623f4dd 1925 match_len = nx_put_match(msg, &fsr->match,
e729e793 1926 fsr->cookie, fsr->cookie_mask);
2e4f5fcf 1927
982697a4 1928 nfsr = msg->l3;
2e4f5fcf
BP
1929 nfsr->out_port = htons(fsr->out_port);
1930 nfsr->match_len = htons(match_len);
1931 nfsr->table_id = fsr->table_id;
27527aa0
BP
1932 break;
1933 }
1934
1935 default:
2e4f5fcf
BP
1936 NOT_REACHED();
1937 }
1938
1939 return msg;
1940}
d1e2cf21 1941
27527aa0
BP
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.) */
1946enum ofputil_protocol
1947ofputil_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)) {
2e1ae200
JR
1954 usable_protocols &= OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF12_OXM
1955 | OFPUTIL_P_OF13_OXM;
27527aa0
BP
1956 }
1957 return usable_protocols;
1958}
1959
4ffd1b43 1960/* Converts an OFPST_FLOW or NXST_FLOW reply in 'msg' into an abstract
b78f6b77 1961 * ofputil_flow_stats in 'fs'.
4ffd1b43
BP
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 *
f27f2134
BP
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 *
f25d0cf3
BP
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 *
4ffd1b43
BP
1978 * Returns 0 if successful, EOF if no replies were left in this 'msg',
1979 * otherwise a positive errno value. */
1980int
1981ofputil_decode_flow_stats_reply(struct ofputil_flow_stats *fs,
f27f2134 1982 struct ofpbuf *msg,
f25d0cf3
BP
1983 bool flow_age_extension,
1984 struct ofpbuf *ofpacts)
4ffd1b43 1985{
982697a4
BP
1986 enum ofperr error;
1987 enum ofpraw raw;
4ffd1b43 1988
982697a4
BP
1989 error = (msg->l2
1990 ? ofpraw_decode(&raw, msg->l2)
1991 : ofpraw_pull(&raw, msg));
1992 if (error) {
1993 return error;
4ffd1b43
BP
1994 }
1995
1996 if (!msg->size) {
1997 return EOF;
2e1ae200
JR
1998 } else if (raw == OFPRAW_OFPST11_FLOW_REPLY
1999 || raw == OFPRAW_OFPST13_FLOW_REPLY) {
6ec5f0c5
SH
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
81a76618 2018 if (ofputil_pull_ofp11_match(msg, &fs->match, &padded_match_len)) {
6ec5f0c5
SH
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
81a76618 2029 fs->priority = ntohs(ofs->priority);
6ec5f0c5
SH
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);
2e1ae200 2035 fs->flags = (raw == OFPRAW_OFPST13_FLOW_REPLY) ? ntohs(ofs->flags) : 0;
6ec5f0c5
SH
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);
cfc23141 2041 } else if (raw == OFPRAW_OFPST10_FLOW_REPLY) {
e2b9ac44 2042 const struct ofp10_flow_stats *ofs;
4ffd1b43
BP
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
d01c980f 2059 if (ofpacts_pull_openflow10(msg, length - sizeof *ofs, ofpacts)) {
4ffd1b43
BP
2060 return EINVAL;
2061 }
2062
2063 fs->cookie = get_32aligned_be64(&ofs->cookie);
81a76618
BP
2064 ofputil_match_from_ofp10_match(&ofs->match, &fs->match);
2065 fs->priority = ntohs(ofs->priority);
4ffd1b43
BP
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);
f27f2134
BP
2071 fs->idle_age = -1;
2072 fs->hard_age = -1;
4ffd1b43
BP
2073 fs->packet_count = ntohll(get_32aligned_be64(&ofs->packet_count));
2074 fs->byte_count = ntohll(get_32aligned_be64(&ofs->byte_count));
2e1ae200 2075 fs->flags = 0;
982697a4 2076 } else if (raw == OFPRAW_NXST_FLOW_REPLY) {
4ffd1b43 2077 const struct nx_flow_stats *nfs;
f25d0cf3 2078 size_t match_len, actions_len, length;
4ffd1b43
BP
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 }
81a76618 2094 if (nx_pull_match(msg, match_len, &fs->match, NULL, NULL)) {
4ffd1b43
BP
2095 return EINVAL;
2096 }
2097
f25d0cf3 2098 actions_len = length - sizeof *nfs - ROUND_UP(match_len, 8);
d01c980f 2099 if (ofpacts_pull_openflow10(msg, actions_len, ofpacts)) {
4ffd1b43
BP
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);
81a76618 2107 fs->priority = ntohs(nfs->priority);
4ffd1b43
BP
2108 fs->idle_timeout = ntohs(nfs->idle_timeout);
2109 fs->hard_timeout = ntohs(nfs->hard_timeout);
f27f2134
BP
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 }
4ffd1b43
BP
2120 fs->packet_count = ntohll(nfs->packet_count);
2121 fs->byte_count = ntohll(nfs->byte_count);
2e1ae200 2122 fs->flags = 0;
4ffd1b43
BP
2123 } else {
2124 NOT_REACHED();
2125 }
2126
f25d0cf3
BP
2127 fs->ofpacts = ofpacts->data;
2128 fs->ofpacts_len = ofpacts->size;
2129
4ffd1b43
BP
2130 return 0;
2131}
2132
5e9d0469
BP
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. */
2137static uint64_t
2138unknown_to_zero(uint64_t count)
2139{
2140 return count != UINT64_MAX ? count : 0;
2141}
2142
349adfb2
BP
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(). */
2146void
2147ofputil_append_flow_stats_reply(const struct ofputil_flow_stats *fs,
2148 struct list *replies)
2149{
f25d0cf3 2150 struct ofpbuf *reply = ofpbuf_from_list(list_back(replies));
f25d0cf3 2151 size_t start_ofs = reply->size;
982697a4 2152 enum ofpraw raw;
349adfb2 2153
982697a4 2154 ofpraw_decode_partial(&raw, reply->data, reply->size);
2e1ae200 2155 if (raw == OFPRAW_OFPST11_FLOW_REPLY || raw == OFPRAW_OFPST13_FLOW_REPLY) {
22a86f18
SH
2156 struct ofp11_flow_stats *ofs;
2157
2158 ofpbuf_put_uninit(reply, sizeof *ofs);
81a76618 2159 oxm_put_match(reply, &fs->match);
22a86f18
SH
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);
81a76618 2169 ofs->priority = htons(fs->priority);
22a86f18
SH
2170 ofs->idle_timeout = htons(fs->idle_timeout);
2171 ofs->hard_timeout = htons(fs->hard_timeout);
2e1ae200 2172 ofs->flags = (raw == OFPRAW_OFPST13_FLOW_REPLY) ? htons(fs->flags) : 0;
22a86f18
SH
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) {
e2b9ac44 2178 struct ofp10_flow_stats *ofs;
349adfb2 2179
1a59dc2c
BP
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);
349adfb2
BP
2185 ofs->table_id = fs->table_id;
2186 ofs->pad = 0;
81a76618 2187 ofputil_match_to_ofp10_match(&fs->match, &ofs->match);
349adfb2
BP
2188 ofs->duration_sec = htonl(fs->duration_sec);
2189 ofs->duration_nsec = htonl(fs->duration_nsec);
81a76618 2190 ofs->priority = htons(fs->priority);
349adfb2
BP
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);
5e9d0469
BP
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)));
982697a4 2199 } else if (raw == OFPRAW_NXST_FLOW_REPLY) {
349adfb2 2200 struct nx_flow_stats *nfs;
1a59dc2c 2201 int match_len;
349adfb2 2202
1a59dc2c 2203 ofpbuf_put_uninit(reply, sizeof *nfs);
81a76618 2204 match_len = nx_put_match(reply, &fs->match, 0, 0);
1a59dc2c
BP
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);
349adfb2
BP
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);
81a76618 2213 nfs->priority = htons(fs->priority);
349adfb2
BP
2214 nfs->idle_timeout = htons(fs->idle_timeout);
2215 nfs->hard_timeout = htons(fs->hard_timeout);
f27f2134
BP
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);
1a59dc2c 2222 nfs->match_len = htons(match_len);
349adfb2
BP
2223 nfs->cookie = fs->cookie;
2224 nfs->packet_count = htonll(fs->packet_count);
2225 nfs->byte_count = htonll(fs->byte_count);
349adfb2
BP
2226 } else {
2227 NOT_REACHED();
2228 }
f25d0cf3 2229
982697a4 2230 ofpmp_postappend(replies, start_ofs);
349adfb2
BP
2231}
2232
76c93b22 2233/* Converts abstract ofputil_aggregate_stats 'stats' into an OFPST_AGGREGATE or
a814ba0f 2234 * NXST_AGGREGATE reply matching 'request', and returns the message. */
76c93b22
BP
2235struct ofpbuf *
2236ofputil_encode_aggregate_stats_reply(
2237 const struct ofputil_aggregate_stats *stats,
982697a4 2238 const struct ofp_header *request)
76c93b22 2239{
a814ba0f
BP
2240 struct ofp_aggregate_stats_reply *asr;
2241 uint64_t packet_count;
2242 uint64_t byte_count;
76c93b22 2243 struct ofpbuf *msg;
982697a4 2244 enum ofpraw raw;
76c93b22 2245
982697a4 2246 ofpraw_decode(&raw, request);
617da9cd 2247 if (raw == OFPRAW_OFPST10_AGGREGATE_REQUEST) {
a814ba0f
BP
2248 packet_count = unknown_to_zero(stats->packet_count);
2249 byte_count = unknown_to_zero(stats->byte_count);
76c93b22 2250 } else {
a814ba0f
BP
2251 packet_count = stats->packet_count;
2252 byte_count = stats->byte_count;
76c93b22
BP
2253 }
2254
a814ba0f
BP
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
76c93b22
BP
2261 return msg;
2262}
2263
982697a4
BP
2264enum ofperr
2265ofputil_decode_aggregate_stats_reply(struct ofputil_aggregate_stats *stats,
2266 const struct ofp_header *reply)
2267{
a814ba0f 2268 struct ofp_aggregate_stats_reply *asr;
982697a4 2269 struct ofpbuf msg;
982697a4
BP
2270
2271 ofpbuf_use_const(&msg, reply, ntohs(reply->length));
a814ba0f
BP
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);
982697a4
BP
2278
2279 return 0;
2280}
2281
b78f6b77
BP
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. */
90bf1e07 2285enum ofperr
9b045a0c 2286ofputil_decode_flow_removed(struct ofputil_flow_removed *fr,
b78f6b77 2287 const struct ofp_header *oh)
9b045a0c 2288{
982697a4
BP
2289 enum ofpraw raw;
2290 struct ofpbuf b;
9b045a0c 2291
982697a4
BP
2292 ofpbuf_use_const(&b, oh, ntohs(oh->length));
2293 raw = ofpraw_pull_assert(&b);
eefbf181
SH
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
81a76618 2300 error = ofputil_pull_ofp11_match(&b, &fr->match, NULL);
eefbf181
SH
2301 if (error) {
2302 return error;
2303 }
2304
81a76618 2305 fr->priority = ntohs(ofr->priority);
eefbf181
SH
2306 fr->cookie = ofr->cookie;
2307 fr->reason = ofr->reason;
95216219 2308 fr->table_id = ofr->table_id;
eefbf181
SH
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) {
31a9e63f 2316 const struct ofp10_flow_removed *ofr;
9b045a0c 2317
982697a4
BP
2318 ofr = ofpbuf_pull(&b, sizeof *ofr);
2319
81a76618
BP
2320 ofputil_match_from_ofp10_match(&ofr->match, &fr->match);
2321 fr->priority = ntohs(ofr->priority);
9b045a0c
BP
2322 fr->cookie = ofr->cookie;
2323 fr->reason = ofr->reason;
95216219 2324 fr->table_id = 255;
9b045a0c
BP
2325 fr->duration_sec = ntohl(ofr->duration_sec);
2326 fr->duration_nsec = ntohl(ofr->duration_nsec);
2327 fr->idle_timeout = ntohs(ofr->idle_timeout);
fa2bad0f 2328 fr->hard_timeout = 0;
9b045a0c
BP
2329 fr->packet_count = ntohll(ofr->packet_count);
2330 fr->byte_count = ntohll(ofr->byte_count);
982697a4 2331 } else if (raw == OFPRAW_NXT_FLOW_REMOVED) {
9b045a0c 2332 struct nx_flow_removed *nfr;
c2725b60 2333 enum ofperr error;
9b045a0c 2334
9b045a0c 2335 nfr = ofpbuf_pull(&b, sizeof *nfr);
81a76618
BP
2336 error = nx_pull_match(&b, ntohs(nfr->match_len), &fr->match,
2337 NULL, NULL);
9b045a0c
BP
2338 if (error) {
2339 return error;
2340 }
2341 if (b.size) {
90bf1e07 2342 return OFPERR_OFPBRC_BAD_LEN;
9b045a0c
BP
2343 }
2344
81a76618 2345 fr->priority = ntohs(nfr->priority);
9b045a0c
BP
2346 fr->cookie = nfr->cookie;
2347 fr->reason = nfr->reason;
745bfd5e 2348 fr->table_id = nfr->table_id ? nfr->table_id - 1 : 255;
9b045a0c
BP
2349 fr->duration_sec = ntohl(nfr->duration_sec);
2350 fr->duration_nsec = ntohl(nfr->duration_nsec);
2351 fr->idle_timeout = ntohs(nfr->idle_timeout);
fa2bad0f 2352 fr->hard_timeout = 0;
9b045a0c
BP
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
588cd7b5 2362/* Converts abstract ofputil_flow_removed 'fr' into an OFPT_FLOW_REMOVED or
27527aa0 2363 * NXT_FLOW_REMOVED message 'oh' according to 'protocol', and returns the
588cd7b5
BP
2364 * message. */
2365struct ofpbuf *
2366ofputil_encode_flow_removed(const struct ofputil_flow_removed *fr,
27527aa0 2367 enum ofputil_protocol protocol)
588cd7b5
BP
2368{
2369 struct ofpbuf *msg;
2370
27527aa0 2371 switch (protocol) {
2e1ae200
JR
2372 case OFPUTIL_P_OF12_OXM:
2373 case OFPUTIL_P_OF13_OXM: {
83974732
SH
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;
81a76618 2381 ofr->priority = htons(fr->priority);
83974732 2382 ofr->reason = fr->reason;
95216219 2383 ofr->table_id = fr->table_id;
83974732
SH
2384 ofr->duration_sec = htonl(fr->duration_sec);
2385 ofr->duration_nsec = htonl(fr->duration_nsec);
2386 ofr->idle_timeout = htons(fr->idle_timeout);
fa2bad0f 2387 ofr->hard_timeout = htons(fr->hard_timeout);
83974732
SH
2388 ofr->packet_count = htonll(fr->packet_count);
2389 ofr->byte_count = htonll(fr->byte_count);
81a76618 2390 oxm_put_match(msg, &fr->match);
83974732
SH
2391 break;
2392 }
2393
85813857
BP
2394 case OFPUTIL_P_OF10_STD:
2395 case OFPUTIL_P_OF10_STD_TID: {
31a9e63f 2396 struct ofp10_flow_removed *ofr;
588cd7b5 2397
982697a4
BP
2398 msg = ofpraw_alloc_xid(OFPRAW_OFPT10_FLOW_REMOVED, OFP10_VERSION,
2399 htonl(0), 0);
2400 ofr = ofpbuf_put_zeros(msg, sizeof *ofr);
81a76618 2401 ofputil_match_to_ofp10_match(&fr->match, &ofr->match);
7fb563b9 2402 ofr->cookie = fr->cookie;
81a76618 2403 ofr->priority = htons(fr->priority);
588cd7b5
BP
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);
5e9d0469
BP
2408 ofr->packet_count = htonll(unknown_to_zero(fr->packet_count));
2409 ofr->byte_count = htonll(unknown_to_zero(fr->byte_count));
27527aa0
BP
2410 break;
2411 }
2412
85813857
BP
2413 case OFPUTIL_P_OF10_NXM:
2414 case OFPUTIL_P_OF10_NXM_TID: {
588cd7b5
BP
2415 struct nx_flow_removed *nfr;
2416 int match_len;
2417
982697a4
BP
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);
81a76618 2421 match_len = nx_put_match(msg, &fr->match, 0, 0);
588cd7b5 2422
982697a4 2423 nfr = msg->l3;
588cd7b5 2424 nfr->cookie = fr->cookie;
81a76618 2425 nfr->priority = htons(fr->priority);
588cd7b5 2426 nfr->reason = fr->reason;
745bfd5e 2427 nfr->table_id = fr->table_id + 1;
588cd7b5
BP
2428 nfr->duration_sec = htonl(fr->duration_sec);
2429 nfr->duration_nsec = htonl(fr->duration_nsec);
2430 nfr->idle_timeout = htons(fr->idle_timeout);
2431 nfr->match_len = htons(match_len);
2432 nfr->packet_count = htonll(fr->packet_count);
2433 nfr->byte_count = htonll(fr->byte_count);
27527aa0
BP
2434 break;
2435 }
2436
2437 default:
588cd7b5
BP
2438 NOT_REACHED();
2439 }
2440
2441 return msg;
2442}
2443
7cfb9651
SH
2444static void
2445ofputil_decode_packet_in_finish(struct ofputil_packet_in *pin,
81a76618 2446 struct match *match, struct ofpbuf *b)
7cfb9651
SH
2447{
2448 pin->packet = b->data;
2449 pin->packet_len = b->size;
2450
81a76618 2451 pin->fmd.in_port = match->flow.in_port;
296e07ac 2452 pin->fmd.tun_id = match->flow.tunnel.tun_id;
81a76618
BP
2453 pin->fmd.metadata = match->flow.metadata;
2454 memcpy(pin->fmd.regs, match->flow.regs, sizeof pin->fmd.regs);
7cfb9651
SH
2455}
2456
f7cc6bd8 2457enum ofperr
65120a8a
EJ
2458ofputil_decode_packet_in(struct ofputil_packet_in *pin,
2459 const struct ofp_header *oh)
2460{
982697a4
BP
2461 enum ofpraw raw;
2462 struct ofpbuf b;
65120a8a 2463
65120a8a
EJ
2464 memset(pin, 0, sizeof *pin);
2465
982697a4
BP
2466 ofpbuf_use_const(&b, oh, ntohs(oh->length));
2467 raw = ofpraw_pull_assert(&b);
2e1ae200
JR
2468 if (raw == OFPRAW_OFPT13_PACKET_IN || raw == OFPRAW_OFPT12_PACKET_IN) {
2469 const struct ofp13_packet_in *opi;
81a76618 2470 struct match match;
7cfb9651 2471 int error;
2e1ae200
JR
2472 size_t packet_in_size;
2473
2474 if (raw == OFPRAW_OFPT12_PACKET_IN) {
2475 packet_in_size = sizeof (struct ofp12_packet_in);
2476 } else {
2477 packet_in_size = sizeof (struct ofp13_packet_in);
2478 }
7cfb9651 2479
2e1ae200 2480 opi = ofpbuf_pull(&b, packet_in_size);
81a76618 2481 error = oxm_pull_match_loose(&b, &match);
7cfb9651
SH
2482 if (error) {
2483 return error;
2484 }
2485
2486 if (!ofpbuf_try_pull(&b, 2)) {
2487 return OFPERR_OFPBRC_BAD_LEN;
2488 }
2489
2e1ae200
JR
2490 pin->reason = opi->pi.reason;
2491 pin->table_id = opi->pi.table_id;
2492 pin->buffer_id = ntohl(opi->pi.buffer_id);
2493 pin->total_len = ntohs(opi->pi.total_len);
7cfb9651 2494
2e1ae200
JR
2495 if (raw == OFPRAW_OFPT13_PACKET_IN) {
2496 pin->cookie = opi->cookie;
2497 }
7cfb9651 2498
81a76618 2499 ofputil_decode_packet_in_finish(pin, &match, &b);
7cfb9651 2500 } else if (raw == OFPRAW_OFPT10_PACKET_IN) {
31a9e63f 2501 const struct ofp10_packet_in *opi;
982697a4 2502
31a9e63f 2503 opi = ofpbuf_pull(&b, offsetof(struct ofp10_packet_in, data));
65120a8a
EJ
2504
2505 pin->packet = opi->data;
982697a4 2506 pin->packet_len = b.size;
65120a8a 2507
5d6c3af0 2508 pin->fmd.in_port = ntohs(opi->in_port);
65120a8a
EJ
2509 pin->reason = opi->reason;
2510 pin->buffer_id = ntohl(opi->buffer_id);
2511 pin->total_len = ntohs(opi->total_len);
982697a4 2512 } else if (raw == OFPRAW_NXT_PACKET_IN) {
73dbf4ab 2513 const struct nx_packet_in *npi;
81a76618 2514 struct match match;
54834960
EJ
2515 int error;
2516
54834960 2517 npi = ofpbuf_pull(&b, sizeof *npi);
81a76618 2518 error = nx_pull_match_loose(&b, ntohs(npi->match_len), &match, NULL,
b5ae8913 2519 NULL);
54834960
EJ
2520 if (error) {
2521 return error;
2522 }
2523
2524 if (!ofpbuf_try_pull(&b, 2)) {
90bf1e07 2525 return OFPERR_OFPBRC_BAD_LEN;
54834960
EJ
2526 }
2527
54834960
EJ
2528 pin->reason = npi->reason;
2529 pin->table_id = npi->table_id;
2530 pin->cookie = npi->cookie;
2531
54834960
EJ
2532 pin->buffer_id = ntohl(npi->buffer_id);
2533 pin->total_len = ntohs(npi->total_len);
7cfb9651 2534
81a76618 2535 ofputil_decode_packet_in_finish(pin, &match, &b);
65120a8a
EJ
2536 } else {
2537 NOT_REACHED();
2538 }
2539
2540 return 0;
2541}
2542
d94240ec 2543static void
81a76618
BP
2544ofputil_packet_in_to_match(const struct ofputil_packet_in *pin,
2545 struct match *match)
d94240ec
SH
2546{
2547 int i;
2548
81a76618 2549 match_init_catchall(match);
42edbe39 2550 if (pin->fmd.tun_id != htonll(0)) {
81a76618 2551 match_set_tun_id(match, pin->fmd.tun_id);
42edbe39
BP
2552 }
2553 if (pin->fmd.metadata != htonll(0)) {
81a76618 2554 match_set_metadata(match, pin->fmd.metadata);
42edbe39 2555 }
d94240ec
SH
2556
2557 for (i = 0; i < FLOW_N_REGS; i++) {
42edbe39 2558 if (pin->fmd.regs[i]) {
81a76618 2559 match_set_reg(match, i, pin->fmd.regs[i]);
42edbe39 2560 }
d94240ec
SH
2561 }
2562
81a76618 2563 match_set_in_port(match, pin->fmd.in_port);
d94240ec
SH
2564}
2565
54834960
EJ
2566/* Converts abstract ofputil_packet_in 'pin' into a PACKET_IN message
2567 * in the format specified by 'packet_in_format'. */
ebb57021 2568struct ofpbuf *
54834960 2569ofputil_encode_packet_in(const struct ofputil_packet_in *pin,
d94240ec 2570 enum ofputil_protocol protocol,
54834960 2571 enum nx_packet_in_format packet_in_format)
ebb57021 2572{
54834960
EJ
2573 size_t send_len = MIN(pin->send_len, pin->packet_len);
2574 struct ofpbuf *packet;
ebb57021
BP
2575
2576 /* Add OFPT_PACKET_IN. */
2e1ae200
JR
2577 if (protocol == OFPUTIL_P_OF13_OXM || protocol == OFPUTIL_P_OF12_OXM) {
2578 struct ofp13_packet_in *opi;
81a76618 2579 struct match match;
2e1ae200
JR
2580 enum ofpraw packet_in_raw;
2581 enum ofp_version packet_in_version;
2582 size_t packet_in_size;
2583
2584 if (protocol == OFPUTIL_P_OF12_OXM) {
2585 packet_in_raw = OFPRAW_OFPT12_PACKET_IN;
2586 packet_in_version = OFP12_VERSION;
2587 packet_in_size = sizeof (struct ofp12_packet_in);
2588 } else {
2589 packet_in_raw = OFPRAW_OFPT13_PACKET_IN;
2590 packet_in_version = OFP13_VERSION;
2591 packet_in_size = sizeof (struct ofp13_packet_in);
2592 }
d94240ec 2593
81a76618 2594 ofputil_packet_in_to_match(pin, &match);
d94240ec
SH
2595
2596 /* The final argument is just an estimate of the space required. */
2e1ae200 2597 packet = ofpraw_alloc_xid(packet_in_raw, packet_in_version,
d94240ec
SH
2598 htonl(0), (sizeof(struct flow_metadata) * 2
2599 + 2 + send_len));
2e1ae200 2600 ofpbuf_put_zeros(packet, packet_in_size);
81a76618 2601 oxm_put_match(packet, &match);
d94240ec
SH
2602 ofpbuf_put_zeros(packet, 2);
2603 ofpbuf_put(packet, pin->packet, send_len);
2604
2605 opi = packet->l3;
2e1ae200
JR
2606 opi->pi.buffer_id = htonl(pin->buffer_id);
2607 opi->pi.total_len = htons(pin->total_len);
2608 opi->pi.reason = pin->reason;
2609 opi->pi.table_id = pin->table_id;
2610 if (protocol == OFPUTIL_P_OF13_OXM) {
2611 opi->cookie = pin->cookie;
2612 }
2613 } else if (packet_in_format == NXPIF_OPENFLOW10) {
31a9e63f 2614 struct ofp10_packet_in *opi;
54834960 2615
982697a4
BP
2616 packet = ofpraw_alloc_xid(OFPRAW_OFPT10_PACKET_IN, OFP10_VERSION,
2617 htonl(0), send_len);
31a9e63f 2618 opi = ofpbuf_put_zeros(packet, offsetof(struct ofp10_packet_in, data));
54834960
EJ
2619 opi->total_len = htons(pin->total_len);
2620 opi->in_port = htons(pin->fmd.in_port);
2621 opi->reason = pin->reason;
2622 opi->buffer_id = htonl(pin->buffer_id);
2623
2624 ofpbuf_put(packet, pin->packet, send_len);
2625 } else if (packet_in_format == NXPIF_NXM) {
73dbf4ab 2626 struct nx_packet_in *npi;
81a76618 2627 struct match match;
54834960 2628 size_t match_len;
54834960 2629
81a76618 2630 ofputil_packet_in_to_match(pin, &match);
54834960 2631
982697a4
BP
2632 /* The final argument is just an estimate of the space required. */
2633 packet = ofpraw_alloc_xid(OFPRAW_NXT_PACKET_IN, OFP10_VERSION,
2634 htonl(0), (sizeof(struct flow_metadata) * 2
2635 + 2 + send_len));
54834960 2636 ofpbuf_put_zeros(packet, sizeof *npi);
81a76618 2637 match_len = nx_put_match(packet, &match, 0, 0);
54834960
EJ
2638 ofpbuf_put_zeros(packet, 2);
2639 ofpbuf_put(packet, pin->packet, send_len);
2640
982697a4 2641 npi = packet->l3;
54834960
EJ
2642 npi->buffer_id = htonl(pin->buffer_id);
2643 npi->total_len = htons(pin->total_len);
2644 npi->reason = pin->reason;
2645 npi->table_id = pin->table_id;
2646 npi->cookie = pin->cookie;
2647 npi->match_len = htons(match_len);
2648 } else {
2649 NOT_REACHED();
2650 }
982697a4 2651 ofpmsg_update_length(packet);
54834960
EJ
2652
2653 return packet;
ebb57021
BP
2654}
2655
7c1a76a4
BP
2656const char *
2657ofputil_packet_in_reason_to_string(enum ofp_packet_in_reason reason)
2658{
2659 static char s[INT_STRLEN(int) + 1];
2660
2661 switch (reason) {
2662 case OFPR_NO_MATCH:
2663 return "no_match";
2664 case OFPR_ACTION:
2665 return "action";
2666 case OFPR_INVALID_TTL:
2667 return "invalid_ttl";
2668
2669 case OFPR_N_REASONS:
2670 default:
2671 sprintf(s, "%d", (int) reason);
2672 return s;
2673 }
2674}
2675
2676bool
2677ofputil_packet_in_reason_from_string(const char *s,
2678 enum ofp_packet_in_reason *reason)
2679{
2680 int i;
2681
2682 for (i = 0; i < OFPR_N_REASONS; i++) {
2683 if (!strcasecmp(s, ofputil_packet_in_reason_to_string(i))) {
2684 *reason = i;
2685 return true;
2686 }
2687 }
2688 return false;
2689}
2690
f25d0cf3
BP
2691/* Converts an OFPT_PACKET_OUT in 'opo' into an abstract ofputil_packet_out in
2692 * 'po'.
2693 *
2694 * Uses 'ofpacts' to store the abstract OFPACT_* version of the packet out
2695 * message's actions. The caller must initialize 'ofpacts' and retains
2696 * ownership of it. 'po->ofpacts' will point into the 'ofpacts' buffer.
2697 *
2698 * Returns 0 if successful, otherwise an OFPERR_* value. */
c6a93eb7
BP
2699enum ofperr
2700ofputil_decode_packet_out(struct ofputil_packet_out *po,
982697a4 2701 const struct ofp_header *oh,
f25d0cf3 2702 struct ofpbuf *ofpacts)
c6a93eb7 2703{
982697a4 2704 enum ofpraw raw;
c6a93eb7
BP
2705 struct ofpbuf b;
2706
982697a4
BP
2707 ofpbuf_use_const(&b, oh, ntohs(oh->length));
2708 raw = ofpraw_pull_assert(&b);
982697a4 2709
eb5ee596
SH
2710 if (raw == OFPRAW_OFPT11_PACKET_OUT) {
2711 enum ofperr error;
2712 const struct ofp11_packet_out *opo = ofpbuf_pull(&b, sizeof *opo);
2713
2714 po->buffer_id = ntohl(opo->buffer_id);
2715 error = ofputil_port_from_ofp11(opo->in_port, &po->in_port);
2716 if (error) {
2717 return error;
2718 }
2719
2720 error = ofpacts_pull_openflow11_actions(&b, ntohs(opo->actions_len),
2721 ofpacts);
2722 if (error) {
2723 return error;
2724 }
eb5ee596 2725 } else if (raw == OFPRAW_OFPT10_PACKET_OUT) {
8a6bc7cd 2726 enum ofperr error;
31a9e63f 2727 const struct ofp10_packet_out *opo = ofpbuf_pull(&b, sizeof *opo);
8a6bc7cd
SH
2728
2729 po->buffer_id = ntohl(opo->buffer_id);
2730 po->in_port = ntohs(opo->in_port);
2731
2732 error = ofpacts_pull_openflow10(&b, ntohs(opo->actions_len), ofpacts);
2733 if (error) {
2734 return error;
2735 }
2736 } else {
2737 NOT_REACHED();
2738 }
2739
c6a93eb7 2740 if (po->in_port >= OFPP_MAX && po->in_port != OFPP_LOCAL
751c7785 2741 && po->in_port != OFPP_NONE && po->in_port != OFPP_CONTROLLER) {
c6a93eb7
BP
2742 VLOG_WARN_RL(&bad_ofmsg_rl, "packet-out has bad input port %#"PRIx16,
2743 po->in_port);
2e1bfcb6 2744 return OFPERR_OFPBRC_BAD_PORT;
c6a93eb7
BP
2745 }
2746
f25d0cf3
BP
2747 po->ofpacts = ofpacts->data;
2748 po->ofpacts_len = ofpacts->size;
c6a93eb7
BP
2749
2750 if (po->buffer_id == UINT32_MAX) {
2751 po->packet = b.data;
2752 po->packet_len = b.size;
2753 } else {
2754 po->packet = NULL;
2755 po->packet_len = 0;
2756 }
2757
2758 return 0;
2759}
6c038611
BP
2760\f
2761/* ofputil_phy_port */
2762
2763/* NETDEV_F_* to and from OFPPF_* and OFPPF10_*. */
2764BUILD_ASSERT_DECL((int) NETDEV_F_10MB_HD == OFPPF_10MB_HD); /* bit 0 */
2765BUILD_ASSERT_DECL((int) NETDEV_F_10MB_FD == OFPPF_10MB_FD); /* bit 1 */
2766BUILD_ASSERT_DECL((int) NETDEV_F_100MB_HD == OFPPF_100MB_HD); /* bit 2 */
2767BUILD_ASSERT_DECL((int) NETDEV_F_100MB_FD == OFPPF_100MB_FD); /* bit 3 */
2768BUILD_ASSERT_DECL((int) NETDEV_F_1GB_HD == OFPPF_1GB_HD); /* bit 4 */
2769BUILD_ASSERT_DECL((int) NETDEV_F_1GB_FD == OFPPF_1GB_FD); /* bit 5 */
2770BUILD_ASSERT_DECL((int) NETDEV_F_10GB_FD == OFPPF_10GB_FD); /* bit 6 */
2771
2772/* NETDEV_F_ bits 11...15 are OFPPF10_ bits 7...11: */
9e1fd49b
BP
2773BUILD_ASSERT_DECL((int) NETDEV_F_COPPER == (OFPPF10_COPPER << 4));
2774BUILD_ASSERT_DECL((int) NETDEV_F_FIBER == (OFPPF10_FIBER << 4));
2775BUILD_ASSERT_DECL((int) NETDEV_F_AUTONEG == (OFPPF10_AUTONEG << 4));
2776BUILD_ASSERT_DECL((int) NETDEV_F_PAUSE == (OFPPF10_PAUSE << 4));
2777BUILD_ASSERT_DECL((int) NETDEV_F_PAUSE_ASYM == (OFPPF10_PAUSE_ASYM << 4));
6c038611 2778
9e1fd49b
BP
2779static enum netdev_features
2780netdev_port_features_from_ofp10(ovs_be32 ofp10_)
6c038611
BP
2781{
2782 uint32_t ofp10 = ntohl(ofp10_);
2783 return (ofp10 & 0x7f) | ((ofp10 & 0xf80) << 4);
2784}
2785
9e1fd49b
BP
2786static ovs_be32
2787netdev_port_features_to_ofp10(enum netdev_features features)
6c038611
BP
2788{
2789 return htonl((features & 0x7f) | ((features & 0xf800) >> 4));
2790}
c6a93eb7 2791
9e1fd49b
BP
2792BUILD_ASSERT_DECL((int) NETDEV_F_10MB_HD == OFPPF_10MB_HD); /* bit 0 */
2793BUILD_ASSERT_DECL((int) NETDEV_F_10MB_FD == OFPPF_10MB_FD); /* bit 1 */
2794BUILD_ASSERT_DECL((int) NETDEV_F_100MB_HD == OFPPF_100MB_HD); /* bit 2 */
2795BUILD_ASSERT_DECL((int) NETDEV_F_100MB_FD == OFPPF_100MB_FD); /* bit 3 */
2796BUILD_ASSERT_DECL((int) NETDEV_F_1GB_HD == OFPPF_1GB_HD); /* bit 4 */
2797BUILD_ASSERT_DECL((int) NETDEV_F_1GB_FD == OFPPF_1GB_FD); /* bit 5 */
2798BUILD_ASSERT_DECL((int) NETDEV_F_10GB_FD == OFPPF_10GB_FD); /* bit 6 */
2799BUILD_ASSERT_DECL((int) NETDEV_F_40GB_FD == OFPPF11_40GB_FD); /* bit 7 */
2800BUILD_ASSERT_DECL((int) NETDEV_F_100GB_FD == OFPPF11_100GB_FD); /* bit 8 */
2801BUILD_ASSERT_DECL((int) NETDEV_F_1TB_FD == OFPPF11_1TB_FD); /* bit 9 */
2802BUILD_ASSERT_DECL((int) NETDEV_F_OTHER == OFPPF11_OTHER); /* bit 10 */
2803BUILD_ASSERT_DECL((int) NETDEV_F_COPPER == OFPPF11_COPPER); /* bit 11 */
2804BUILD_ASSERT_DECL((int) NETDEV_F_FIBER == OFPPF11_FIBER); /* bit 12 */
2805BUILD_ASSERT_DECL((int) NETDEV_F_AUTONEG == OFPPF11_AUTONEG); /* bit 13 */
2806BUILD_ASSERT_DECL((int) NETDEV_F_PAUSE == OFPPF11_PAUSE); /* bit 14 */
2807BUILD_ASSERT_DECL((int) NETDEV_F_PAUSE_ASYM == OFPPF11_PAUSE_ASYM);/* bit 15 */
2808
2809static enum netdev_features
2810netdev_port_features_from_ofp11(ovs_be32 ofp11)
2811{
2812 return ntohl(ofp11) & 0xffff;
2813}
2814
2815static ovs_be32
2816netdev_port_features_to_ofp11(enum netdev_features features)
2817{
2818 return htonl(features & 0xffff);
2819}
2820
2821static enum ofperr
2822ofputil_decode_ofp10_phy_port(struct ofputil_phy_port *pp,
2823 const struct ofp10_phy_port *opp)
2824{
2825 memset(pp, 0, sizeof *pp);
2826
2827 pp->port_no = ntohs(opp->port_no);
2828 memcpy(pp->hw_addr, opp->hw_addr, OFP_ETH_ALEN);
2829 ovs_strlcpy(pp->name, opp->name, OFP_MAX_PORT_NAME_LEN);
2830
2831 pp->config = ntohl(opp->config) & OFPPC10_ALL;
2832 pp->state = ntohl(opp->state) & OFPPS10_ALL;
2833
2834 pp->curr = netdev_port_features_from_ofp10(opp->curr);
2835 pp->advertised = netdev_port_features_from_ofp10(opp->advertised);
2836 pp->supported = netdev_port_features_from_ofp10(opp->supported);
2837 pp->peer = netdev_port_features_from_ofp10(opp->peer);
2838
d02a5f8e
BP
2839 pp->curr_speed = netdev_features_to_bps(pp->curr, 0) / 1000;
2840 pp->max_speed = netdev_features_to_bps(pp->supported, 0) / 1000;
9e1fd49b
BP
2841
2842 return 0;
2843}
2844
2845static enum ofperr
2846ofputil_decode_ofp11_port(struct ofputil_phy_port *pp,
2847 const struct ofp11_port *op)
2848{
2849 enum ofperr error;
2850
2851 memset(pp, 0, sizeof *pp);
2852
2853 error = ofputil_port_from_ofp11(op->port_no, &pp->port_no);
2854 if (error) {
2855 return error;
2856 }
2857 memcpy(pp->hw_addr, op->hw_addr, OFP_ETH_ALEN);
2858 ovs_strlcpy(pp->name, op->name, OFP_MAX_PORT_NAME_LEN);
2859
2860 pp->config = ntohl(op->config) & OFPPC11_ALL;
2861 pp->state = ntohl(op->state) & OFPPC11_ALL;
2862
2863 pp->curr = netdev_port_features_from_ofp11(op->curr);
2864 pp->advertised = netdev_port_features_from_ofp11(op->advertised);
2865 pp->supported = netdev_port_features_from_ofp11(op->supported);
2866 pp->peer = netdev_port_features_from_ofp11(op->peer);
2867
2868 pp->curr_speed = ntohl(op->curr_speed);
2869 pp->max_speed = ntohl(op->max_speed);
2870
2871 return 0;
2872}
2873
5b5a3a67 2874static size_t
2e3fa633
SH
2875ofputil_get_phy_port_size(enum ofp_version ofp_version)
2876{
2877 switch (ofp_version) {
2878 case OFP10_VERSION:
2879 return sizeof(struct ofp10_phy_port);
2880 case OFP11_VERSION:
2881 case OFP12_VERSION:
2e1ae200 2882 case OFP13_VERSION:
2e3fa633
SH
2883 return sizeof(struct ofp11_port);
2884 default:
2885 NOT_REACHED();
2886 }
5b5a3a67
JP
2887}
2888
9e1fd49b
BP
2889static void
2890ofputil_encode_ofp10_phy_port(const struct ofputil_phy_port *pp,
2891 struct ofp10_phy_port *opp)
2892{
2893 memset(opp, 0, sizeof *opp);
2894
2895 opp->port_no = htons(pp->port_no);
2896 memcpy(opp->hw_addr, pp->hw_addr, ETH_ADDR_LEN);
2897 ovs_strlcpy(opp->name, pp->name, OFP_MAX_PORT_NAME_LEN);
2898
2899 opp->config = htonl(pp->config & OFPPC10_ALL);
2900 opp->state = htonl(pp->state & OFPPS10_ALL);
2901
2902 opp->curr = netdev_port_features_to_ofp10(pp->curr);
2903 opp->advertised = netdev_port_features_to_ofp10(pp->advertised);
2904 opp->supported = netdev_port_features_to_ofp10(pp->supported);
2905 opp->peer = netdev_port_features_to_ofp10(pp->peer);
2906}
2907
2908static void
2909ofputil_encode_ofp11_port(const struct ofputil_phy_port *pp,
2910 struct ofp11_port *op)
2911{
2912 memset(op, 0, sizeof *op);
2913
2914 op->port_no = ofputil_port_to_ofp11(pp->port_no);
2915 memcpy(op->hw_addr, pp->hw_addr, ETH_ADDR_LEN);
2916 ovs_strlcpy(op->name, pp->name, OFP_MAX_PORT_NAME_LEN);
2917
2918 op->config = htonl(pp->config & OFPPC11_ALL);
2919 op->state = htonl(pp->state & OFPPS11_ALL);
2920
2921 op->curr = netdev_port_features_to_ofp11(pp->curr);
2922 op->advertised = netdev_port_features_to_ofp11(pp->advertised);
2923 op->supported = netdev_port_features_to_ofp11(pp->supported);
2924 op->peer = netdev_port_features_to_ofp11(pp->peer);
2925
2926 op->curr_speed = htonl(pp->curr_speed);
2927 op->max_speed = htonl(pp->max_speed);
2928}
2929
2930static void
2e3fa633
SH
2931ofputil_put_phy_port(enum ofp_version ofp_version,
2932 const struct ofputil_phy_port *pp, struct ofpbuf *b)
9e1fd49b 2933{
2e3fa633
SH
2934 switch (ofp_version) {
2935 case OFP10_VERSION: {
9e1fd49b
BP
2936 struct ofp10_phy_port *opp;
2937 if (b->size + sizeof *opp <= UINT16_MAX) {
2938 opp = ofpbuf_put_uninit(b, sizeof *opp);
2939 ofputil_encode_ofp10_phy_port(pp, opp);
2940 }
2e3fa633
SH
2941 break;
2942 }
2943
2944 case OFP11_VERSION:
2e1ae200
JR
2945 case OFP12_VERSION:
2946 case OFP13_VERSION: {
9e1fd49b
BP
2947 struct ofp11_port *op;
2948 if (b->size + sizeof *op <= UINT16_MAX) {
2949 op = ofpbuf_put_uninit(b, sizeof *op);
2950 ofputil_encode_ofp11_port(pp, op);
2951 }
2e3fa633
SH
2952 break;
2953 }
2954
2955 default:
2956 NOT_REACHED();
9e1fd49b
BP
2957 }
2958}
2be393ed
JP
2959
2960void
2e3fa633 2961ofputil_append_port_desc_stats_reply(enum ofp_version ofp_version,
2be393ed
JP
2962 const struct ofputil_phy_port *pp,
2963 struct list *replies)
2964{
2e3fa633
SH
2965 switch (ofp_version) {
2966 case OFP10_VERSION: {
2be393ed
JP
2967 struct ofp10_phy_port *opp;
2968
982697a4 2969 opp = ofpmp_append(replies, sizeof *opp);
2be393ed 2970 ofputil_encode_ofp10_phy_port(pp, opp);
2e3fa633
SH
2971 break;
2972 }
2973
2974 case OFP11_VERSION:
2e1ae200
JR
2975 case OFP12_VERSION:
2976 case OFP13_VERSION: {
2be393ed
JP
2977 struct ofp11_port *op;
2978
982697a4 2979 op = ofpmp_append(replies, sizeof *op);
2be393ed 2980 ofputil_encode_ofp11_port(pp, op);
2e3fa633
SH
2981 break;
2982 }
2983
2984 default:
2985 NOT_REACHED();
2be393ed
JP
2986 }
2987}
9e1fd49b
BP
2988\f
2989/* ofputil_switch_features */
2990
2991#define OFPC_COMMON (OFPC_FLOW_STATS | OFPC_TABLE_STATS | OFPC_PORT_STATS | \
60202987 2992 OFPC_IP_REASM | OFPC_QUEUE_STATS)
9e1fd49b
BP
2993BUILD_ASSERT_DECL((int) OFPUTIL_C_FLOW_STATS == OFPC_FLOW_STATS);
2994BUILD_ASSERT_DECL((int) OFPUTIL_C_TABLE_STATS == OFPC_TABLE_STATS);
2995BUILD_ASSERT_DECL((int) OFPUTIL_C_PORT_STATS == OFPC_PORT_STATS);
2996BUILD_ASSERT_DECL((int) OFPUTIL_C_IP_REASM == OFPC_IP_REASM);
2997BUILD_ASSERT_DECL((int) OFPUTIL_C_QUEUE_STATS == OFPC_QUEUE_STATS);
2998BUILD_ASSERT_DECL((int) OFPUTIL_C_ARP_MATCH_IP == OFPC_ARP_MATCH_IP);
2999
3000struct ofputil_action_bit_translation {
3001 enum ofputil_action_bitmap ofputil_bit;
3002 int of_bit;
3003};
3004
3005static const struct ofputil_action_bit_translation of10_action_bits[] = {
3006 { OFPUTIL_A_OUTPUT, OFPAT10_OUTPUT },
3007 { OFPUTIL_A_SET_VLAN_VID, OFPAT10_SET_VLAN_VID },
3008 { OFPUTIL_A_SET_VLAN_PCP, OFPAT10_SET_VLAN_PCP },
3009 { OFPUTIL_A_STRIP_VLAN, OFPAT10_STRIP_VLAN },
3010 { OFPUTIL_A_SET_DL_SRC, OFPAT10_SET_DL_SRC },
3011 { OFPUTIL_A_SET_DL_DST, OFPAT10_SET_DL_DST },
3012 { OFPUTIL_A_SET_NW_SRC, OFPAT10_SET_NW_SRC },
3013 { OFPUTIL_A_SET_NW_DST, OFPAT10_SET_NW_DST },
3014 { OFPUTIL_A_SET_NW_TOS, OFPAT10_SET_NW_TOS },
3015 { OFPUTIL_A_SET_TP_SRC, OFPAT10_SET_TP_SRC },
3016 { OFPUTIL_A_SET_TP_DST, OFPAT10_SET_TP_DST },
3017 { OFPUTIL_A_ENQUEUE, OFPAT10_ENQUEUE },
3018 { 0, 0 },
3019};
3020
9e1fd49b
BP
3021static enum ofputil_action_bitmap
3022decode_action_bits(ovs_be32 of_actions,
3023 const struct ofputil_action_bit_translation *x)
3024{
3025 enum ofputil_action_bitmap ofputil_actions;
3026
3027 ofputil_actions = 0;
3028 for (; x->ofputil_bit; x++) {
3029 if (of_actions & htonl(1u << x->of_bit)) {
3030 ofputil_actions |= x->ofputil_bit;
3031 }
3032 }
3033 return ofputil_actions;
3034}
3035
60202987
SH
3036static uint32_t
3037ofputil_capabilities_mask(enum ofp_version ofp_version)
3038{
3039 /* Handle capabilities whose bit is unique for all Open Flow versions */
3040 switch (ofp_version) {
3041 case OFP10_VERSION:
3042 case OFP11_VERSION:
3043 return OFPC_COMMON | OFPC_ARP_MATCH_IP;
3044 case OFP12_VERSION:
2e1ae200 3045 case OFP13_VERSION:
60202987
SH
3046 return OFPC_COMMON | OFPC12_PORT_BLOCKED;
3047 default:
3048 /* Caller needs to check osf->header.version itself */
3049 return 0;
3050 }
3051}
3052
9e1fd49b
BP
3053/* Decodes an OpenFlow 1.0 or 1.1 "switch_features" structure 'osf' into an
3054 * abstract representation in '*features'. Initializes '*b' to iterate over
3055 * the OpenFlow port structures following 'osf' with later calls to
2be393ed 3056 * ofputil_pull_phy_port(). Returns 0 if successful, otherwise an
9e1fd49b
BP
3057 * OFPERR_* value. */
3058enum ofperr
982697a4 3059ofputil_decode_switch_features(const struct ofp_header *oh,
9e1fd49b
BP
3060 struct ofputil_switch_features *features,
3061 struct ofpbuf *b)
3062{
982697a4
BP
3063 const struct ofp_switch_features *osf;
3064 enum ofpraw raw;
3065
3066 ofpbuf_use_const(b, oh, ntohs(oh->length));
3067 raw = ofpraw_pull_assert(b);
9e1fd49b 3068
982697a4 3069 osf = ofpbuf_pull(b, sizeof *osf);
9e1fd49b
BP
3070 features->datapath_id = ntohll(osf->datapath_id);
3071 features->n_buffers = ntohl(osf->n_buffers);
3072 features->n_tables = osf->n_tables;
2e1ae200 3073 features->auxiliary_id = 0;
9e1fd49b 3074
60202987
SH
3075 features->capabilities = ntohl(osf->capabilities) &
3076 ofputil_capabilities_mask(oh->version);
9e1fd49b 3077
982697a4 3078 if (b->size % ofputil_get_phy_port_size(oh->version)) {
5b5a3a67
JP
3079 return OFPERR_OFPBRC_BAD_LEN;
3080 }
3081
982697a4 3082 if (raw == OFPRAW_OFPT10_FEATURES_REPLY) {
9e1fd49b
BP
3083 if (osf->capabilities & htonl(OFPC10_STP)) {
3084 features->capabilities |= OFPUTIL_C_STP;
3085 }
3086 features->actions = decode_action_bits(osf->actions, of10_action_bits);
2e1ae200
JR
3087 } else if (raw == OFPRAW_OFPT11_FEATURES_REPLY
3088 || raw == OFPRAW_OFPT13_FEATURES_REPLY) {
9e1fd49b
BP
3089 if (osf->capabilities & htonl(OFPC11_GROUP_STATS)) {
3090 features->capabilities |= OFPUTIL_C_GROUP_STATS;
3091 }
34b28fc7 3092 features->actions = 0;
2e1ae200
JR
3093 if (raw == OFPRAW_OFPT13_FEATURES_REPLY) {
3094 features->auxiliary_id = osf->auxiliary_id;
3095 }
9e1fd49b
BP
3096 } else {
3097 return OFPERR_OFPBRC_BAD_VERSION;
3098 }
3099
3100 return 0;
3101}
3102
982697a4 3103/* Returns true if the maximum number of ports are in 'oh'. */
347b7ac4 3104static bool
982697a4 3105max_ports_in_features(const struct ofp_header *oh)
347b7ac4 3106{
982697a4
BP
3107 size_t pp_size = ofputil_get_phy_port_size(oh->version);
3108 return ntohs(oh->length) + pp_size > UINT16_MAX;
347b7ac4
JP
3109}
3110
3111/* Given a buffer 'b' that contains a Features Reply message, checks if
3112 * it contains the maximum number of ports that will fit. If so, it
3113 * returns true and removes the ports from the message. The caller
3114 * should then send an OFPST_PORT_DESC stats request to get the ports,
3115 * since the switch may have more ports than could be represented in the
3116 * Features Reply. Otherwise, returns false.
3117 */
3118bool
3119ofputil_switch_features_ports_trunc(struct ofpbuf *b)
3120{
982697a4 3121 struct ofp_header *oh = b->data;
347b7ac4 3122
982697a4 3123 if (max_ports_in_features(oh)) {
347b7ac4 3124 /* Remove all the ports. */
982697a4
BP
3125 b->size = (sizeof(struct ofp_header)
3126 + sizeof(struct ofp_switch_features));
3127 ofpmsg_update_length(b);
347b7ac4
JP
3128
3129 return true;
3130 }
3131
3132 return false;
3133}
3134
9e1fd49b
BP
3135static ovs_be32
3136encode_action_bits(enum ofputil_action_bitmap ofputil_actions,
3137 const struct ofputil_action_bit_translation *x)
3138{
3139 uint32_t of_actions;
3140
3141 of_actions = 0;
3142 for (; x->ofputil_bit; x++) {
3143 if (ofputil_actions & x->ofputil_bit) {
3144 of_actions |= 1 << x->of_bit;
3145 }
3146 }
3147 return htonl(of_actions);
3148}
3149
3150/* Returns a buffer owned by the caller that encodes 'features' in the format
3151 * required by 'protocol' with the given 'xid'. The caller should append port
3152 * information to the buffer with subsequent calls to
3153 * ofputil_put_switch_features_port(). */
3154struct ofpbuf *
3155ofputil_encode_switch_features(const struct ofputil_switch_features *features,
3156 enum ofputil_protocol protocol, ovs_be32 xid)
3157{
3158 struct ofp_switch_features *osf;
3159 struct ofpbuf *b;
2e3fa633
SH
3160 enum ofp_version version;
3161 enum ofpraw raw;
982697a4
BP
3162
3163 version = ofputil_protocol_to_ofp_version(protocol);
2e3fa633
SH
3164 switch (version) {
3165 case OFP10_VERSION:
3166 raw = OFPRAW_OFPT10_FEATURES_REPLY;
3167 break;
3168 case OFP11_VERSION:
3169 case OFP12_VERSION:
3170 raw = OFPRAW_OFPT11_FEATURES_REPLY;
3171 break;
2e1ae200
JR
3172 case OFP13_VERSION:
3173 raw = OFPRAW_OFPT13_FEATURES_REPLY;
3174 break;
2e3fa633
SH
3175 default:
3176 NOT_REACHED();
3177 }
3178 b = ofpraw_alloc_xid(raw, version, xid, 0);
982697a4 3179 osf = ofpbuf_put_zeros(b, sizeof *osf);
9e1fd49b
BP
3180 osf->datapath_id = htonll(features->datapath_id);
3181 osf->n_buffers = htonl(features->n_buffers);
3182 osf->n_tables = features->n_tables;
3183
3184 osf->capabilities = htonl(features->capabilities & OFPC_COMMON);
60202987
SH
3185 osf->capabilities = htonl(features->capabilities &
3186 ofputil_capabilities_mask(version));
2e3fa633
SH
3187 switch (version) {
3188 case OFP10_VERSION:
9e1fd49b
BP
3189 if (features->capabilities & OFPUTIL_C_STP) {
3190 osf->capabilities |= htonl(OFPC10_STP);
3191 }
3192 osf->actions = encode_action_bits(features->actions, of10_action_bits);
2e3fa633 3193 break;
2e1ae200
JR
3194 case OFP13_VERSION:
3195 osf->auxiliary_id = features->auxiliary_id;
3196 /* fall through */
2e3fa633
SH
3197 case OFP11_VERSION:
3198 case OFP12_VERSION:
9e1fd49b
BP
3199 if (features->capabilities & OFPUTIL_C_GROUP_STATS) {
3200 osf->capabilities |= htonl(OFPC11_GROUP_STATS);
3201 }
2e3fa633
SH
3202 break;
3203 default:
3204 NOT_REACHED();
9e1fd49b
BP
3205 }
3206
3207 return b;
3208}
3209
3210/* Encodes 'pp' into the format required by the switch_features message already
3211 * in 'b', which should have been returned by ofputil_encode_switch_features(),
3212 * and appends the encoded version to 'b'. */
3213void
3214ofputil_put_switch_features_port(const struct ofputil_phy_port *pp,
3215 struct ofpbuf *b)
3216{
982697a4 3217 const struct ofp_header *oh = b->data;
9e1fd49b 3218
e0c91c0c
SK
3219 if (oh->version < OFP13_VERSION) {
3220 ofputil_put_phy_port(oh->version, pp, b);
3221 }
9e1fd49b
BP
3222}
3223\f
3224/* ofputil_port_status */
3225
3226/* Decodes the OpenFlow "port status" message in '*ops' into an abstract form
3227 * in '*ps'. Returns 0 if successful, otherwise an OFPERR_* value. */
3228enum ofperr
982697a4 3229ofputil_decode_port_status(const struct ofp_header *oh,
9e1fd49b
BP
3230 struct ofputil_port_status *ps)
3231{
982697a4 3232 const struct ofp_port_status *ops;
9e1fd49b
BP
3233 struct ofpbuf b;
3234 int retval;
3235
982697a4
BP
3236 ofpbuf_use_const(&b, oh, ntohs(oh->length));
3237 ofpraw_pull_assert(&b);
3238 ops = ofpbuf_pull(&b, sizeof *ops);
3239
9e1fd49b
BP
3240 if (ops->reason != OFPPR_ADD &&
3241 ops->reason != OFPPR_DELETE &&
3242 ops->reason != OFPPR_MODIFY) {
3243 return OFPERR_NXBRC_BAD_REASON;
3244 }
3245 ps->reason = ops->reason;
3246
982697a4 3247 retval = ofputil_pull_phy_port(oh->version, &b, &ps->desc);
cb22974d 3248 ovs_assert(retval != EOF);
9e1fd49b
BP
3249 return retval;
3250}
3251
3252/* Converts the abstract form of a "port status" message in '*ps' into an
3253 * OpenFlow message suitable for 'protocol', and returns that encoded form in
3254 * a buffer owned by the caller. */
3255struct ofpbuf *
3256ofputil_encode_port_status(const struct ofputil_port_status *ps,
3257 enum ofputil_protocol protocol)
3258{
3259 struct ofp_port_status *ops;
3260 struct ofpbuf *b;
2e3fa633
SH
3261 enum ofp_version version;
3262 enum ofpraw raw;
982697a4
BP
3263
3264 version = ofputil_protocol_to_ofp_version(protocol);
2e3fa633
SH
3265 switch (version) {
3266 case OFP10_VERSION:
3267 raw = OFPRAW_OFPT10_PORT_STATUS;
3268 break;
3269
3270 case OFP11_VERSION:
3271 case OFP12_VERSION:
2e1ae200 3272 case OFP13_VERSION:
2e3fa633
SH
3273 raw = OFPRAW_OFPT11_PORT_STATUS;
3274 break;
3275
3276 default:
3277 NOT_REACHED();
3278 }
3279
3280 b = ofpraw_alloc_xid(raw, version, htonl(0), 0);
982697a4 3281 ops = ofpbuf_put_zeros(b, sizeof *ops);
9e1fd49b 3282 ops->reason = ps->reason;
982697a4
BP
3283 ofputil_put_phy_port(version, &ps->desc, b);
3284 ofpmsg_update_length(b);
9e1fd49b
BP
3285 return b;
3286}
3287\f
3288/* ofputil_port_mod */
3289
3290/* Decodes the OpenFlow "port mod" message in '*oh' into an abstract form in
3291 * '*pm'. Returns 0 if successful, otherwise an OFPERR_* value. */
3292enum ofperr
3293ofputil_decode_port_mod(const struct ofp_header *oh,
3294 struct ofputil_port_mod *pm)
3295{
982697a4
BP
3296 enum ofpraw raw;
3297 struct ofpbuf b;
9e1fd49b 3298
982697a4
BP
3299 ofpbuf_use_const(&b, oh, ntohs(oh->length));
3300 raw = ofpraw_pull_assert(&b);
3301
3302 if (raw == OFPRAW_OFPT10_PORT_MOD) {
3303 const struct ofp10_port_mod *opm = b.data;
9e1fd49b
BP
3304
3305 pm->port_no = ntohs(opm->port_no);
3306 memcpy(pm->hw_addr, opm->hw_addr, ETH_ADDR_LEN);
3307 pm->config = ntohl(opm->config) & OFPPC10_ALL;
3308 pm->mask = ntohl(opm->mask) & OFPPC10_ALL;
3309 pm->advertise = netdev_port_features_from_ofp10(opm->advertise);
982697a4
BP
3310 } else if (raw == OFPRAW_OFPT11_PORT_MOD) {
3311 const struct ofp11_port_mod *opm = b.data;
9e1fd49b
BP
3312 enum ofperr error;
3313
9e1fd49b
BP
3314 error = ofputil_port_from_ofp11(opm->port_no, &pm->port_no);
3315 if (error) {
3316 return error;
3317 }
3318
3319 memcpy(pm->hw_addr, opm->hw_addr, ETH_ADDR_LEN);
3320 pm->config = ntohl(opm->config) & OFPPC11_ALL;
3321 pm->mask = ntohl(opm->mask) & OFPPC11_ALL;
3322 pm->advertise = netdev_port_features_from_ofp11(opm->advertise);
3323 } else {
982697a4 3324 return OFPERR_OFPBRC_BAD_TYPE;
9e1fd49b
BP
3325 }
3326
3327 pm->config &= pm->mask;
3328 return 0;
3329}
3330
3331/* Converts the abstract form of a "port mod" message in '*pm' into an OpenFlow
3332 * message suitable for 'protocol', and returns that encoded form in a buffer
3333 * owned by the caller. */
3334struct ofpbuf *
3335ofputil_encode_port_mod(const struct ofputil_port_mod *pm,
3336 enum ofputil_protocol protocol)
3337{
2e3fa633 3338 enum ofp_version ofp_version = ofputil_protocol_to_ofp_version(protocol);
9e1fd49b
BP
3339 struct ofpbuf *b;
3340
2e3fa633
SH
3341 switch (ofp_version) {
3342 case OFP10_VERSION: {
9e1fd49b
BP
3343 struct ofp10_port_mod *opm;
3344
982697a4
BP
3345 b = ofpraw_alloc(OFPRAW_OFPT10_PORT_MOD, ofp_version, 0);
3346 opm = ofpbuf_put_zeros(b, sizeof *opm);
9e1fd49b
BP
3347 opm->port_no = htons(pm->port_no);
3348 memcpy(opm->hw_addr, pm->hw_addr, ETH_ADDR_LEN);
3349 opm->config = htonl(pm->config & OFPPC10_ALL);
3350 opm->mask = htonl(pm->mask & OFPPC10_ALL);
3351 opm->advertise = netdev_port_features_to_ofp10(pm->advertise);
2e3fa633
SH
3352 break;
3353 }
3354
5fe7c919 3355 case OFP11_VERSION:
2e1ae200
JR
3356 case OFP12_VERSION:
3357 case OFP13_VERSION: {
9e1fd49b
BP
3358 struct ofp11_port_mod *opm;
3359
982697a4
BP
3360 b = ofpraw_alloc(OFPRAW_OFPT11_PORT_MOD, ofp_version, 0);
3361 opm = ofpbuf_put_zeros(b, sizeof *opm);
026a5179 3362 opm->port_no = ofputil_port_to_ofp11(pm->port_no);
9e1fd49b
BP
3363 memcpy(opm->hw_addr, pm->hw_addr, ETH_ADDR_LEN);
3364 opm->config = htonl(pm->config & OFPPC11_ALL);
3365 opm->mask = htonl(pm->mask & OFPPC11_ALL);
3366 opm->advertise = netdev_port_features_to_ofp11(pm->advertise);
2e3fa633
SH
3367 break;
3368 }
3369
2e3fa633 3370 default:
9e1fd49b
BP
3371 NOT_REACHED();
3372 }
3373
3374 return b;
3375}
2b07c8b1 3376\f
6ea4776b
JR
3377/* ofputil_role_request */
3378
3379/* Decodes the OpenFlow "role request" or "role reply" message in '*oh' into
3380 * an abstract form in '*rr'. Returns 0 if successful, otherwise an
3381 * OFPERR_* value. */
3382enum ofperr
3383ofputil_decode_role_message(const struct ofp_header *oh,
3384 struct ofputil_role_request *rr)
3385{
6ea4776b
JR
3386 struct ofpbuf b;
3387 enum ofpraw raw;
3388
6ea4776b
JR
3389 ofpbuf_use_const(&b, oh, ntohs(oh->length));
3390 raw = ofpraw_pull_assert(&b);
3391
f4f1ea7e
BP
3392 if (raw == OFPRAW_OFPT12_ROLE_REQUEST ||
3393 raw == OFPRAW_OFPT12_ROLE_REPLY) {
3394 const struct ofp12_role_request *orr = b.l3;
6ea4776b 3395
f4f1ea7e
BP
3396 if (orr->role != htonl(OFPCR12_ROLE_NOCHANGE) &&
3397 orr->role != htonl(OFPCR12_ROLE_EQUAL) &&
3398 orr->role != htonl(OFPCR12_ROLE_MASTER) &&
3399 orr->role != htonl(OFPCR12_ROLE_SLAVE)) {
3400 return OFPERR_OFPRRFC_BAD_ROLE;
6ea4776b
JR
3401 }
3402
f4f1ea7e 3403 rr->role = ntohl(orr->role);
147cc9d3
BP
3404 if (raw == OFPRAW_OFPT12_ROLE_REQUEST
3405 ? orr->role == htonl(OFPCR12_ROLE_NOCHANGE)
3406 : orr->generation_id == htonll(UINT64_MAX)) {
f4f1ea7e
BP
3407 rr->have_generation_id = false;
3408 rr->generation_id = 0;
3409 } else {
3410 rr->have_generation_id = true;
3411 rr->generation_id = ntohll(orr->generation_id);
3412 }
3413 } else if (raw == OFPRAW_NXT_ROLE_REQUEST ||
3414 raw == OFPRAW_NXT_ROLE_REPLY) {
3415 const struct nx_role_request *nrr = b.l3;
3416
3417 BUILD_ASSERT(NX_ROLE_OTHER + 1 == OFPCR12_ROLE_EQUAL);
3418 BUILD_ASSERT(NX_ROLE_MASTER + 1 == OFPCR12_ROLE_MASTER);
3419 BUILD_ASSERT(NX_ROLE_SLAVE + 1 == OFPCR12_ROLE_SLAVE);
3420
3421 if (nrr->role != htonl(NX_ROLE_OTHER) &&
3422 nrr->role != htonl(NX_ROLE_MASTER) &&
3423 nrr->role != htonl(NX_ROLE_SLAVE)) {
3424 return OFPERR_OFPRRFC_BAD_ROLE;
3425 }
6ea4776b 3426
f4f1ea7e
BP
3427 rr->role = ntohl(nrr->role) + 1;
3428 rr->have_generation_id = false;
3429 rr->generation_id = 0;
3430 } else {
3431 NOT_REACHED();
6ea4776b
JR
3432 }
3433
6ea4776b
JR
3434 return 0;
3435}
3436
3437/* Returns an encoded form of a role reply suitable for the "request" in a
3438 * buffer owned by the caller. */
3439struct ofpbuf *
3440ofputil_encode_role_reply(const struct ofp_header *request,
f4f1ea7e 3441 const struct ofputil_role_request *rr)
6ea4776b 3442{
6ea4776b 3443 struct ofpbuf *buf;
6ea4776b
JR
3444 enum ofpraw raw;
3445
f4f1ea7e 3446 raw = ofpraw_decode_assert(request);
6ea4776b 3447 if (raw == OFPRAW_OFPT12_ROLE_REQUEST) {
f4f1ea7e 3448 struct ofp12_role_request *orr;
6ea4776b 3449
f4f1ea7e
BP
3450 buf = ofpraw_alloc_reply(OFPRAW_OFPT12_ROLE_REPLY, request, 0);
3451 orr = ofpbuf_put_zeros(buf, sizeof *orr);
6ea4776b 3452
147cc9d3
BP
3453 orr->role = htonl(rr->role);
3454 orr->generation_id = htonll(rr->have_generation_id
3455 ? rr->generation_id
3456 : UINT64_MAX);
f4f1ea7e
BP
3457 } else if (raw == OFPRAW_NXT_ROLE_REQUEST) {
3458 struct nx_role_request *nrr;
3459
3460 BUILD_ASSERT(NX_ROLE_OTHER == OFPCR12_ROLE_EQUAL - 1);
3461 BUILD_ASSERT(NX_ROLE_MASTER == OFPCR12_ROLE_MASTER - 1);
3462 BUILD_ASSERT(NX_ROLE_SLAVE == OFPCR12_ROLE_SLAVE - 1);
3463
3464 buf = ofpraw_alloc_reply(OFPRAW_NXT_ROLE_REPLY, request, 0);
3465 nrr = ofpbuf_put_zeros(buf, sizeof *nrr);
3466 nrr->role = htonl(rr->role - 1);
3467 } else {
3468 NOT_REACHED();
6ea4776b 3469 }
6ea4776b
JR
3470
3471 return buf;
3472}
3473\f
307975da
SH
3474/* Table stats. */
3475
3476static void
3477ofputil_put_ofp10_table_stats(const struct ofp12_table_stats *in,
3478 struct ofpbuf *buf)
3479{
3480 struct wc_map {
31a9e63f 3481 enum ofp10_flow_wildcards wc10;
307975da
SH
3482 enum oxm12_ofb_match_fields mf12;
3483 };
3484
3485 static const struct wc_map wc_map[] = {
3486 { OFPFW10_IN_PORT, OFPXMT12_OFB_IN_PORT },
3487 { OFPFW10_DL_VLAN, OFPXMT12_OFB_VLAN_VID },
3488 { OFPFW10_DL_SRC, OFPXMT12_OFB_ETH_SRC },
3489 { OFPFW10_DL_DST, OFPXMT12_OFB_ETH_DST},
3490 { OFPFW10_DL_TYPE, OFPXMT12_OFB_ETH_TYPE },
3491 { OFPFW10_NW_PROTO, OFPXMT12_OFB_IP_PROTO },
3492 { OFPFW10_TP_SRC, OFPXMT12_OFB_TCP_SRC },
3493 { OFPFW10_TP_DST, OFPXMT12_OFB_TCP_DST },
3494 { OFPFW10_NW_SRC_MASK, OFPXMT12_OFB_IPV4_SRC },
3495 { OFPFW10_NW_DST_MASK, OFPXMT12_OFB_IPV4_DST },
3496 { OFPFW10_DL_VLAN_PCP, OFPXMT12_OFB_VLAN_PCP },
3497 { OFPFW10_NW_TOS, OFPXMT12_OFB_IP_DSCP },
3498 };
3499
3500 struct ofp10_table_stats *out;
3501 const struct wc_map *p;
3502
3bdc692b 3503 out = ofpbuf_put_zeros(buf, sizeof *out);
307975da 3504 out->table_id = in->table_id;
3bdc692b 3505 ovs_strlcpy(out->name, in->name, sizeof out->name);
307975da
SH
3506 out->wildcards = 0;
3507 for (p = wc_map; p < &wc_map[ARRAY_SIZE(wc_map)]; p++) {
3508 if (in->wildcards & htonll(1ULL << p->mf12)) {
3509 out->wildcards |= htonl(p->wc10);
3510 }
3511 }
3512 out->max_entries = in->max_entries;
3513 out->active_count = in->active_count;
3514 put_32aligned_be64(&out->lookup_count, in->lookup_count);
3515 put_32aligned_be64(&out->matched_count, in->matched_count);
3516}
3517
3518static ovs_be32
3519oxm12_to_ofp11_flow_match_fields(ovs_be64 oxm12)
3520{
3521 struct map {
3522 enum ofp11_flow_match_fields fmf11;
3523 enum oxm12_ofb_match_fields mf12;
3524 };
3525
3526 static const struct map map[] = {
3527 { OFPFMF11_IN_PORT, OFPXMT12_OFB_IN_PORT },
3528 { OFPFMF11_DL_VLAN, OFPXMT12_OFB_VLAN_VID },
3529 { OFPFMF11_DL_VLAN_PCP, OFPXMT12_OFB_VLAN_PCP },
3530 { OFPFMF11_DL_TYPE, OFPXMT12_OFB_ETH_TYPE },
3531 { OFPFMF11_NW_TOS, OFPXMT12_OFB_IP_DSCP },
3532 { OFPFMF11_NW_PROTO, OFPXMT12_OFB_IP_PROTO },
3533 { OFPFMF11_TP_SRC, OFPXMT12_OFB_TCP_SRC },
3534 { OFPFMF11_TP_DST, OFPXMT12_OFB_TCP_DST },
3535 { OFPFMF11_MPLS_LABEL, OFPXMT12_OFB_MPLS_LABEL },
3536 { OFPFMF11_MPLS_TC, OFPXMT12_OFB_MPLS_TC },
3537 /* I don't know what OFPFMF11_TYPE means. */
3538 { OFPFMF11_DL_SRC, OFPXMT12_OFB_ETH_SRC },
3539 { OFPFMF11_DL_DST, OFPXMT12_OFB_ETH_DST },
3540 { OFPFMF11_NW_SRC, OFPXMT12_OFB_IPV4_SRC },
3541 { OFPFMF11_NW_DST, OFPXMT12_OFB_IPV4_DST },
3542 { OFPFMF11_METADATA, OFPXMT12_OFB_METADATA },
3543 };
3544
3545 const struct map *p;
3546 uint32_t fmf11;
3547
3548 fmf11 = 0;
3549 for (p = map; p < &map[ARRAY_SIZE(map)]; p++) {
3550 if (oxm12 & htonll(1ULL << p->mf12)) {
3551 fmf11 |= p->fmf11;
3552 }
3553 }
3554 return htonl(fmf11);
3555}
3556
3557static void
3558ofputil_put_ofp11_table_stats(const struct ofp12_table_stats *in,
3559 struct ofpbuf *buf)
3560{
3561 struct ofp11_table_stats *out;
3562
3bdc692b 3563 out = ofpbuf_put_zeros(buf, sizeof *out);
307975da 3564 out->table_id = in->table_id;
3bdc692b 3565 ovs_strlcpy(out->name, in->name, sizeof out->name);
307975da
SH
3566 out->wildcards = oxm12_to_ofp11_flow_match_fields(in->wildcards);
3567 out->match = oxm12_to_ofp11_flow_match_fields(in->match);
3568 out->instructions = in->instructions;
3569 out->write_actions = in->write_actions;
3570 out->apply_actions = in->apply_actions;
3571 out->config = in->config;
3572 out->max_entries = in->max_entries;
3573 out->active_count = in->active_count;
3574 out->lookup_count = in->lookup_count;
3575 out->matched_count = in->matched_count;
3576}
3577
2e1ae200
JR
3578static void
3579ofputil_put_ofp13_table_stats(const struct ofp12_table_stats *in,
3580 struct ofpbuf *buf)
3581{
3582 struct ofp13_table_stats *out;
3583
3584 /* OF 1.3 splits table features off the ofp_table_stats,
3585 * so there is not much here. */
3586
3587 out = ofpbuf_put_uninit(buf, sizeof *out);
3588 out->table_id = in->table_id;
3589 out->active_count = in->active_count;
3590 out->lookup_count = in->lookup_count;
3591 out->matched_count = in->matched_count;
3592}
3593
307975da
SH
3594struct ofpbuf *
3595ofputil_encode_table_stats_reply(const struct ofp12_table_stats stats[], int n,
3596 const struct ofp_header *request)
3597{
3598 struct ofpbuf *reply;
3599 int i;
3600
3601 reply = ofpraw_alloc_stats_reply(request, n * sizeof *stats);
3602
3603 switch ((enum ofp_version) request->version) {
3604 case OFP10_VERSION:
3605 for (i = 0; i < n; i++) {
3606 ofputil_put_ofp10_table_stats(&stats[i], reply);
3607 }
3608 break;
3609
3610 case OFP11_VERSION:
3611 for (i = 0; i < n; i++) {
3612 ofputil_put_ofp11_table_stats(&stats[i], reply);
3613 }
3614 break;
3615
3616 case OFP12_VERSION:
3617 ofpbuf_put(reply, stats, n * sizeof *stats);
3618 break;
3619
2e1ae200
JR
3620 case OFP13_VERSION:
3621 for (i = 0; i < n; i++) {
3622 ofputil_put_ofp13_table_stats(&stats[i], reply);
3623 }
3624 break;
3625
307975da
SH
3626 default:
3627 NOT_REACHED();
3628 }
3629
3630 return reply;
3631}
3632\f
2b07c8b1
BP
3633/* ofputil_flow_monitor_request */
3634
3635/* Converts an NXST_FLOW_MONITOR request in 'msg' into an abstract
3636 * ofputil_flow_monitor_request in 'rq'.
3637 *
3638 * Multiple NXST_FLOW_MONITOR requests can be packed into a single OpenFlow
3639 * message. Calling this function multiple times for a single 'msg' iterates
3640 * through the requests. The caller must initially leave 'msg''s layer
3641 * pointers null and not modify them between calls.
3642 *
3643 * Returns 0 if successful, EOF if no requests were left in this 'msg',
3644 * otherwise an OFPERR_* value. */
3645int
3646ofputil_decode_flow_monitor_request(struct ofputil_flow_monitor_request *rq,
3647 struct ofpbuf *msg)
3648{
3649 struct nx_flow_monitor_request *nfmr;
3650 uint16_t flags;
3651
3652 if (!msg->l2) {
3653 msg->l2 = msg->data;
982697a4 3654 ofpraw_pull_assert(msg);
2b07c8b1
BP
3655 }
3656
3657 if (!msg->size) {
3658 return EOF;
3659 }
3660
3661 nfmr = ofpbuf_try_pull(msg, sizeof *nfmr);
3662 if (!nfmr) {
3663 VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW_MONITOR request has %zu "
3664 "leftover bytes at end", msg->size);
3665 return OFPERR_OFPBRC_BAD_LEN;
3666 }
3667
3668 flags = ntohs(nfmr->flags);
3669 if (!(flags & (NXFMF_ADD | NXFMF_DELETE | NXFMF_MODIFY))
3670 || flags & ~(NXFMF_INITIAL | NXFMF_ADD | NXFMF_DELETE
3671 | NXFMF_MODIFY | NXFMF_ACTIONS | NXFMF_OWN)) {
3672 VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW_MONITOR has bad flags %#"PRIx16,
3673 flags);
3674 return OFPERR_NXBRC_FM_BAD_FLAGS;
3675 }
3676
3677 if (!is_all_zeros(nfmr->zeros, sizeof nfmr->zeros)) {
3678 return OFPERR_NXBRC_MUST_BE_ZERO;
3679 }
3680
3681 rq->id = ntohl(nfmr->id);
3682 rq->flags = flags;
3683 rq->out_port = ntohs(nfmr->out_port);
3684 rq->table_id = nfmr->table_id;
3685
81a76618 3686 return nx_pull_match(msg, ntohs(nfmr->match_len), &rq->match, NULL, NULL);
2b07c8b1
BP
3687}
3688
3689void
3690ofputil_append_flow_monitor_request(
3691 const struct ofputil_flow_monitor_request *rq, struct ofpbuf *msg)
3692{
3693 struct nx_flow_monitor_request *nfmr;
3694 size_t start_ofs;
3695 int match_len;
3696
3697 if (!msg->size) {
982697a4 3698 ofpraw_put(OFPRAW_NXST_FLOW_MONITOR_REQUEST, OFP10_VERSION, msg);
2b07c8b1
BP
3699 }
3700
3701 start_ofs = msg->size;
3702 ofpbuf_put_zeros(msg, sizeof *nfmr);
7623f4dd 3703 match_len = nx_put_match(msg, &rq->match, htonll(0), htonll(0));
2b07c8b1
BP
3704
3705 nfmr = ofpbuf_at_assert(msg, start_ofs, sizeof *nfmr);
3706 nfmr->id = htonl(rq->id);
3707 nfmr->flags = htons(rq->flags);
3708 nfmr->out_port = htons(rq->out_port);
3709 nfmr->match_len = htons(match_len);
3710 nfmr->table_id = rq->table_id;
3711}
3712
3713/* Converts an NXST_FLOW_MONITOR reply (also known as a flow update) in 'msg'
3714 * into an abstract ofputil_flow_update in 'update'. The caller must have
81a76618 3715 * initialized update->match to point to space allocated for a match.
2b07c8b1
BP
3716 *
3717 * Uses 'ofpacts' to store the abstract OFPACT_* version of the update's
3718 * actions (except for NXFME_ABBREV, which never includes actions). The caller
3719 * must initialize 'ofpacts' and retains ownership of it. 'update->ofpacts'
3720 * will point into the 'ofpacts' buffer.
3721 *
3722 * Multiple flow updates can be packed into a single OpenFlow message. Calling
3723 * this function multiple times for a single 'msg' iterates through the
3724 * updates. The caller must initially leave 'msg''s layer pointers null and
3725 * not modify them between calls.
3726 *
3727 * Returns 0 if successful, EOF if no updates were left in this 'msg',
3728 * otherwise an OFPERR_* value. */
3729int
3730ofputil_decode_flow_update(struct ofputil_flow_update *update,
3731 struct ofpbuf *msg, struct ofpbuf *ofpacts)
3732{
3733 struct nx_flow_update_header *nfuh;
3734 unsigned int length;
3735
3736 if (!msg->l2) {
3737 msg->l2 = msg->data;
982697a4 3738 ofpraw_pull_assert(msg);
2b07c8b1
BP
3739 }
3740
3741 if (!msg->size) {
3742 return EOF;
3743 }
3744
3745 if (msg->size < sizeof(struct nx_flow_update_header)) {
3746 goto bad_len;
3747 }
3748
3749 nfuh = msg->data;
3750 update->event = ntohs(nfuh->event);
3751 length = ntohs(nfuh->length);
3752 if (length > msg->size || length % 8) {
3753 goto bad_len;
3754 }
3755
3756 if (update->event == NXFME_ABBREV) {
3757 struct nx_flow_update_abbrev *nfua;
3758
3759 if (length != sizeof *nfua) {
3760 goto bad_len;
3761 }
3762
3763 nfua = ofpbuf_pull(msg, sizeof *nfua);
3764 update->xid = nfua->xid;
3765 return 0;
3766 } else if (update->event == NXFME_ADDED
3767 || update->event == NXFME_DELETED
3768 || update->event == NXFME_MODIFIED) {
3769 struct nx_flow_update_full *nfuf;
3770 unsigned int actions_len;
3771 unsigned int match_len;
3772 enum ofperr error;
3773
3774 if (length < sizeof *nfuf) {
3775 goto bad_len;
3776 }
3777
3778 nfuf = ofpbuf_pull(msg, sizeof *nfuf);
3779 match_len = ntohs(nfuf->match_len);
3780 if (sizeof *nfuf + match_len > length) {
3781 goto bad_len;
3782 }
3783
3784 update->reason = ntohs(nfuf->reason);
3785 update->idle_timeout = ntohs(nfuf->idle_timeout);
3786 update->hard_timeout = ntohs(nfuf->hard_timeout);
3787 update->table_id = nfuf->table_id;
3788 update->cookie = nfuf->cookie;
81a76618 3789 update->priority = ntohs(nfuf->priority);
2b07c8b1 3790
81a76618 3791 error = nx_pull_match(msg, match_len, update->match, NULL, NULL);
2b07c8b1
BP
3792 if (error) {
3793 return error;
3794 }
3795
3796 actions_len = length - sizeof *nfuf - ROUND_UP(match_len, 8);
3797 error = ofpacts_pull_openflow10(msg, actions_len, ofpacts);
3798 if (error) {
3799 return error;
3800 }
3801
3802 update->ofpacts = ofpacts->data;
3803 update->ofpacts_len = ofpacts->size;
3804 return 0;
3805 } else {
3806 VLOG_WARN_RL(&bad_ofmsg_rl,
3807 "NXST_FLOW_MONITOR reply has bad event %"PRIu16,
3808 ntohs(nfuh->event));
15549878 3809 return OFPERR_NXBRC_FM_BAD_EVENT;
2b07c8b1
BP
3810 }
3811
3812bad_len:
3813 VLOG_WARN_RL(&bad_ofmsg_rl, "NXST_FLOW_MONITOR reply has %zu "
3814 "leftover bytes at end", msg->size);
3815 return OFPERR_OFPBRC_BAD_LEN;
3816}
3817
3818uint32_t
3819ofputil_decode_flow_monitor_cancel(const struct ofp_header *oh)
3820{
982697a4
BP
3821 const struct nx_flow_monitor_cancel *cancel = ofpmsg_body(oh);
3822
3823 return ntohl(cancel->id);
2b07c8b1 3824}
9e1fd49b 3825
2b07c8b1
BP
3826struct ofpbuf *
3827ofputil_encode_flow_monitor_cancel(uint32_t id)
3828{
3829 struct nx_flow_monitor_cancel *nfmc;
3830 struct ofpbuf *msg;
3831
982697a4
BP
3832 msg = ofpraw_alloc(OFPRAW_NXT_FLOW_MONITOR_CANCEL, OFP10_VERSION, 0);
3833 nfmc = ofpbuf_put_uninit(msg, sizeof *nfmc);
2b07c8b1
BP
3834 nfmc->id = htonl(id);
3835 return msg;
3836}
3837
3838void
3839ofputil_start_flow_update(struct list *replies)
3840{
3841 struct ofpbuf *msg;
3842
982697a4
BP
3843 msg = ofpraw_alloc_xid(OFPRAW_NXST_FLOW_MONITOR_REPLY, OFP10_VERSION,
3844 htonl(0), 1024);
2b07c8b1
BP
3845
3846 list_init(replies);
3847 list_push_back(replies, &msg->list_node);
3848}
3849
3850void
3851ofputil_append_flow_update(const struct ofputil_flow_update *update,
3852 struct list *replies)
3853{
3854 struct nx_flow_update_header *nfuh;
3855 struct ofpbuf *msg;
3856 size_t start_ofs;
3857
3858 msg = ofpbuf_from_list(list_back(replies));
3859 start_ofs = msg->size;
3860
3861 if (update->event == NXFME_ABBREV) {
3862 struct nx_flow_update_abbrev *nfua;
3863
3864 nfua = ofpbuf_put_zeros(msg, sizeof *nfua);
3865 nfua->xid = update->xid;
3866 } else {
3867 struct nx_flow_update_full *nfuf;
3868 int match_len;
3869
3870 ofpbuf_put_zeros(msg, sizeof *nfuf);
7623f4dd 3871 match_len = nx_put_match(msg, update->match, htonll(0), htonll(0));
2b07c8b1
BP
3872 ofpacts_put_openflow10(update->ofpacts, update->ofpacts_len, msg);
3873
3874 nfuf = ofpbuf_at_assert(msg, start_ofs, sizeof *nfuf);
3875 nfuf->reason = htons(update->reason);
81a76618 3876 nfuf->priority = htons(update->priority);
2b07c8b1
BP
3877 nfuf->idle_timeout = htons(update->idle_timeout);
3878 nfuf->hard_timeout = htons(update->hard_timeout);
3879 nfuf->match_len = htons(match_len);
3880 nfuf->table_id = update->table_id;
3881 nfuf->cookie = update->cookie;
3882 }
3883
3884 nfuh = ofpbuf_at_assert(msg, start_ofs, sizeof *nfuh);
3885 nfuh->length = htons(msg->size - start_ofs);
3886 nfuh->event = htons(update->event);
3887
982697a4 3888 ofpmp_postappend(replies, start_ofs);
2b07c8b1
BP
3889}
3890\f
c6a93eb7 3891struct ofpbuf *
de0f3156
SH
3892ofputil_encode_packet_out(const struct ofputil_packet_out *po,
3893 enum ofputil_protocol protocol)
c6a93eb7 3894{
de0f3156 3895 enum ofp_version ofp_version = ofputil_protocol_to_ofp_version(protocol);
c6a93eb7
BP
3896 struct ofpbuf *msg;
3897 size_t size;
3898
982697a4 3899 size = po->ofpacts_len;
c6a93eb7
BP
3900 if (po->buffer_id == UINT32_MAX) {
3901 size += po->packet_len;
3902 }
3903
de0f3156
SH
3904 switch (ofp_version) {
3905 case OFP10_VERSION: {
31a9e63f 3906 struct ofp10_packet_out *opo;
de0f3156
SH
3907 size_t actions_ofs;
3908
3909 msg = ofpraw_alloc(OFPRAW_OFPT10_PACKET_OUT, OFP10_VERSION, size);
3910 ofpbuf_put_zeros(msg, sizeof *opo);
3911 actions_ofs = msg->size;
3912 ofpacts_put_openflow10(po->ofpacts, po->ofpacts_len, msg);
3913
3914 opo = msg->l3;
3915 opo->buffer_id = htonl(po->buffer_id);
3916 opo->in_port = htons(po->in_port);
3917 opo->actions_len = htons(msg->size - actions_ofs);
3918 break;
3919 }
f25d0cf3 3920
de0f3156 3921 case OFP11_VERSION:
2e1ae200
JR
3922 case OFP12_VERSION:
3923 case OFP13_VERSION: {
7c1b1a0d
SH
3924 struct ofp11_packet_out *opo;
3925 size_t len;
3926
3927 msg = ofpraw_alloc(OFPRAW_OFPT11_PACKET_OUT, ofp_version, size);
3928 ofpbuf_put_zeros(msg, sizeof *opo);
3929 len = ofpacts_put_openflow11_actions(po->ofpacts, po->ofpacts_len, msg);
3930
3931 opo = msg->l3;
3932 opo->buffer_id = htonl(po->buffer_id);
3933 opo->in_port = ofputil_port_to_ofp11(po->in_port);
3934 opo->actions_len = htons(len);
3935 break;
3936 }
3937
de0f3156
SH
3938 default:
3939 NOT_REACHED();
3940 }
f25d0cf3 3941
c6a93eb7
BP
3942 if (po->buffer_id == UINT32_MAX) {
3943 ofpbuf_put(msg, po->packet, po->packet_len);
3944 }
f25d0cf3 3945
982697a4 3946 ofpmsg_update_length(msg);
c6a93eb7
BP
3947
3948 return msg;
3949}
d1e2cf21 3950\f
fa37b408
BP
3951/* Creates and returns an OFPT_ECHO_REQUEST message with an empty payload. */
3952struct ofpbuf *
1a126c0c 3953make_echo_request(enum ofp_version ofp_version)
fa37b408 3954{
1a126c0c 3955 return ofpraw_alloc_xid(OFPRAW_OFPT_ECHO_REQUEST, ofp_version,
982697a4 3956 htonl(0), 0);
fa37b408
BP
3957}
3958
3959/* Creates and returns an OFPT_ECHO_REPLY message matching the
3960 * OFPT_ECHO_REQUEST message in 'rq'. */
3961struct ofpbuf *
3962make_echo_reply(const struct ofp_header *rq)
3963{
982697a4
BP
3964 struct ofpbuf rq_buf;
3965 struct ofpbuf *reply;
3966
3967 ofpbuf_use_const(&rq_buf, rq, ntohs(rq->length));
3968 ofpraw_pull_assert(&rq_buf);
3969
3970 reply = ofpraw_alloc_reply(OFPRAW_OFPT_ECHO_REPLY, rq, rq_buf.size);
3971 ofpbuf_put(reply, rq_buf.data, rq_buf.size);
3972 return reply;
fa37b408
BP
3973}
3974
efb80167 3975struct ofpbuf *
a0ae0b6e 3976ofputil_encode_barrier_request(enum ofp_version ofp_version)
efb80167 3977{
a0ae0b6e
SH
3978 enum ofpraw type;
3979
3980 switch (ofp_version) {
2e1ae200 3981 case OFP13_VERSION:
a0ae0b6e
SH
3982 case OFP12_VERSION:
3983 case OFP11_VERSION:
3984 type = OFPRAW_OFPT11_BARRIER_REQUEST;
3985 break;
3986
3987 case OFP10_VERSION:
3988 type = OFPRAW_OFPT10_BARRIER_REQUEST;
3989 break;
3990
3991 default:
3992 NOT_REACHED();
3993 }
3994
3995 return ofpraw_alloc(type, ofp_version, 0);
efb80167
BP
3996}
3997
7257b535
BP
3998const char *
3999ofputil_frag_handling_to_string(enum ofp_config_flags flags)
4000{
4001 switch (flags & OFPC_FRAG_MASK) {
4002 case OFPC_FRAG_NORMAL: return "normal";
4003 case OFPC_FRAG_DROP: return "drop";
4004 case OFPC_FRAG_REASM: return "reassemble";
4005 case OFPC_FRAG_NX_MATCH: return "nx-match";
4006 }
4007
4008 NOT_REACHED();
4009}
4010
4011bool
4012ofputil_frag_handling_from_string(const char *s, enum ofp_config_flags *flags)
4013{
4014 if (!strcasecmp(s, "normal")) {
4015 *flags = OFPC_FRAG_NORMAL;
4016 } else if (!strcasecmp(s, "drop")) {
4017 *flags = OFPC_FRAG_DROP;
4018 } else if (!strcasecmp(s, "reassemble")) {
4019 *flags = OFPC_FRAG_REASM;
4020 } else if (!strcasecmp(s, "nx-match")) {
4021 *flags = OFPC_FRAG_NX_MATCH;
4022 } else {
4023 return false;
4024 }
4025 return true;
4026}
4027
7b7503ea
BP
4028/* Converts the OpenFlow 1.1+ port number 'ofp11_port' into an OpenFlow 1.0
4029 * port number and stores the latter in '*ofp10_port', for the purpose of
4030 * decoding OpenFlow 1.1+ protocol messages. Returns 0 if successful,
4031 * otherwise an OFPERR_* number.
4032 *
4033 * See the definition of OFP11_MAX for an explanation of the mapping. */
4034enum ofperr
4035ofputil_port_from_ofp11(ovs_be32 ofp11_port, uint16_t *ofp10_port)
4036{
4037 uint32_t ofp11_port_h = ntohl(ofp11_port);
4038
4039 if (ofp11_port_h < OFPP_MAX) {
4040 *ofp10_port = ofp11_port_h;
4041 return 0;
4042 } else if (ofp11_port_h >= OFPP11_MAX) {
4043 *ofp10_port = ofp11_port_h - OFPP11_OFFSET;
4044 return 0;
4045 } else {
4046 VLOG_WARN_RL(&bad_ofmsg_rl, "port %"PRIu32" is outside the supported "
4047 "range 0 through %d or 0x%"PRIx32" through 0x%"PRIx32,
4048 ofp11_port_h, OFPP_MAX - 1,
4049 (uint32_t) OFPP11_MAX, UINT32_MAX);
4050 return OFPERR_OFPBAC_BAD_OUT_PORT;
4051 }
4052}
4053
4054/* Returns the OpenFlow 1.1+ port number equivalent to the OpenFlow 1.0 port
4055 * number 'ofp10_port', for encoding OpenFlow 1.1+ protocol messages.
4056 *
4057 * See the definition of OFP11_MAX for an explanation of the mapping. */
4058ovs_be32
4059ofputil_port_to_ofp11(uint16_t ofp10_port)
4060{
4061 return htonl(ofp10_port < OFPP_MAX
4062 ? ofp10_port
4063 : ofp10_port + OFPP11_OFFSET);
4064}
4065
08f94c0e 4066/* Checks that 'port' is a valid output port for the OFPAT10_OUTPUT action, given
c1c9c9c4 4067 * that the switch will never have more than 'max_ports' ports. Returns 0 if
90bf1e07
BP
4068 * 'port' is valid, otherwise an OpenFlow return code. */
4069enum ofperr
77410139 4070ofputil_check_output_port(uint16_t port, int max_ports)
fa37b408
BP
4071{
4072 switch (port) {
4073 case OFPP_IN_PORT:
4074 case OFPP_TABLE:
4075 case OFPP_NORMAL:
4076 case OFPP_FLOOD:
4077 case OFPP_ALL:
4078 case OFPP_CONTROLLER:
0d193212 4079 case OFPP_NONE:
fa37b408
BP
4080 case OFPP_LOCAL:
4081 return 0;
4082
4083 default:
c1c9c9c4 4084 if (port < max_ports) {
fa37b408
BP
4085 return 0;
4086 }
90bf1e07 4087 return OFPERR_OFPBAC_BAD_OUT_PORT;
fa37b408
BP
4088 }
4089}
4090
39dc9082
BP
4091#define OFPUTIL_NAMED_PORTS \
4092 OFPUTIL_NAMED_PORT(IN_PORT) \
4093 OFPUTIL_NAMED_PORT(TABLE) \
4094 OFPUTIL_NAMED_PORT(NORMAL) \
4095 OFPUTIL_NAMED_PORT(FLOOD) \
4096 OFPUTIL_NAMED_PORT(ALL) \
4097 OFPUTIL_NAMED_PORT(CONTROLLER) \
4098 OFPUTIL_NAMED_PORT(LOCAL) \
7f05e7ab
JR
4099 OFPUTIL_NAMED_PORT(ANY)
4100
4101/* For backwards compatibility, so that "none" is recognized as OFPP_ANY */
4102#define OFPUTIL_NAMED_PORTS_WITH_NONE \
4103 OFPUTIL_NAMED_PORTS \
39dc9082
BP
4104 OFPUTIL_NAMED_PORT(NONE)
4105
8010100b
BP
4106/* Stores the port number represented by 's' into '*portp'. 's' may be an
4107 * integer or, for reserved ports, the standard OpenFlow name for the port
4108 * (e.g. "LOCAL").
c6100d92 4109 *
8010100b
BP
4110 * Returns true if successful, false if 's' is not a valid OpenFlow port number
4111 * or name. The caller should issue an error message in this case, because
4112 * this function usually does not. (This gives the caller an opportunity to
4113 * look up the port name another way, e.g. by contacting the switch and listing
4114 * the names of all its ports).
c6100d92
BP
4115 *
4116 * This function accepts OpenFlow 1.0 port numbers. It also accepts a subset
4117 * of OpenFlow 1.1+ port numbers, mapping those port numbers into the 16-bit
4118 * range as described in include/openflow/openflow-1.1.h. */
8010100b
BP
4119bool
4120ofputil_port_from_string(const char *s, uint16_t *portp)
39dc9082 4121{
c6100d92
BP
4122 unsigned int port32;
4123
8010100b 4124 *portp = 0;
c6100d92 4125 if (str_to_uint(s, 10, &port32)) {
e3432ee9 4126 if (port32 < OFPP_MAX) {
8010100b
BP
4127 *portp = port32;
4128 return true;
c6100d92
BP
4129 } else if (port32 < OFPP_FIRST_RESV) {
4130 VLOG_WARN("port %u is a reserved OF1.0 port number that will "
4131 "be translated to %u when talking to an OF1.1 or "
4132 "later controller", port32, port32 + OFPP11_OFFSET);
8010100b
BP
4133 *portp = port32;
4134 return true;
c6100d92 4135 } else if (port32 <= OFPP_LAST_RESV) {
a6b112a8 4136 struct ds msg;
c6100d92 4137
a6b112a8
BP
4138 ds_init(&msg);
4139 ofputil_format_port(port32, &msg);
fd38af85
BP
4140 VLOG_WARN_ONCE("referring to port %s as %u is deprecated for "
4141 "compatibility with future versions of OpenFlow",
a6b112a8
BP
4142 ds_cstr(&msg), port32);
4143 ds_destroy(&msg);
c6100d92 4144
8010100b
BP
4145 *portp = port32;
4146 return true;
c6100d92
BP
4147 } else if (port32 < OFPP11_MAX) {
4148 VLOG_WARN("port %u is outside the supported range 0 through "
d047fd17 4149 "%"PRIx16" or 0x%x through 0x%"PRIx32, port32,
c6100d92 4150 UINT16_MAX, (unsigned int) OFPP11_MAX, UINT32_MAX);
8010100b 4151 return false;
c6100d92 4152 } else {
8010100b
BP
4153 *portp = port32 - OFPP11_OFFSET;
4154 return true;
c6100d92
BP
4155 }
4156 } else {
4157 struct pair {
4158 const char *name;
4159 uint16_t value;
4160 };
4161 static const struct pair pairs[] = {
39dc9082 4162#define OFPUTIL_NAMED_PORT(NAME) {#NAME, OFPP_##NAME},
7f05e7ab 4163 OFPUTIL_NAMED_PORTS_WITH_NONE
39dc9082 4164#undef OFPUTIL_NAMED_PORT
c6100d92
BP
4165 };
4166 const struct pair *p;
39dc9082 4167
c6100d92
BP
4168 for (p = pairs; p < &pairs[ARRAY_SIZE(pairs)]; p++) {
4169 if (!strcasecmp(s, p->name)) {
8010100b
BP
4170 *portp = p->value;
4171 return true;
c6100d92 4172 }
39dc9082 4173 }
8010100b 4174 return false;
39dc9082 4175 }
39dc9082
BP
4176}
4177
4178/* Appends to 's' a string representation of the OpenFlow port number 'port'.
4179 * Most ports' string representation is just the port number, but for special
4180 * ports, e.g. OFPP_LOCAL, it is the name, e.g. "LOCAL". */
4181void
4182ofputil_format_port(uint16_t port, struct ds *s)
4183{
4184 const char *name;
4185
4186 switch (port) {
4187#define OFPUTIL_NAMED_PORT(NAME) case OFPP_##NAME: name = #NAME; break;
4188 OFPUTIL_NAMED_PORTS
4189#undef OFPUTIL_NAMED_PORT
4190
4191 default:
4192 ds_put_format(s, "%"PRIu16, port);
4193 return;
4194 }
4195 ds_put_cstr(s, name);
4196}
4197
2be393ed
JP
4198/* Given a buffer 'b' that contains an array of OpenFlow ports of type
4199 * 'ofp_version', tries to pull the first element from the array. If
4200 * successful, initializes '*pp' with an abstract representation of the
4201 * port and returns 0. If no ports remain to be decoded, returns EOF.
4202 * On an error, returns a positive OFPERR_* value. */
4203int
2e3fa633 4204ofputil_pull_phy_port(enum ofp_version ofp_version, struct ofpbuf *b,
2be393ed
JP
4205 struct ofputil_phy_port *pp)
4206{
2e3fa633
SH
4207 switch (ofp_version) {
4208 case OFP10_VERSION: {
2be393ed
JP
4209 const struct ofp10_phy_port *opp = ofpbuf_try_pull(b, sizeof *opp);
4210 return opp ? ofputil_decode_ofp10_phy_port(pp, opp) : EOF;
2e3fa633
SH
4211 }
4212 case OFP11_VERSION:
2e1ae200
JR
4213 case OFP12_VERSION:
4214 case OFP13_VERSION: {
2be393ed
JP
4215 const struct ofp11_port *op = ofpbuf_try_pull(b, sizeof *op);
4216 return op ? ofputil_decode_ofp11_port(pp, op) : EOF;
4217 }
2e3fa633
SH
4218 default:
4219 NOT_REACHED();
4220 }
2be393ed
JP
4221}
4222
4223/* Given a buffer 'b' that contains an array of OpenFlow ports of type
4224 * 'ofp_version', returns the number of elements. */
4225size_t ofputil_count_phy_ports(uint8_t ofp_version, struct ofpbuf *b)
4226{
5b5a3a67 4227 return b->size / ofputil_get_phy_port_size(ofp_version);
2be393ed
JP
4228}
4229
e23ae585 4230/* Returns the 'enum ofputil_action_code' corresponding to 'name' (e.g. if
08f94c0e 4231 * 'name' is "output" then the return value is OFPUTIL_OFPAT10_OUTPUT), or -1 if
e23ae585
BP
4232 * 'name' is not the name of any action.
4233 *
4234 * ofp-util.def lists the mapping from names to action. */
4235int
4236ofputil_action_code_from_name(const char *name)
4237{
a00d4bd0 4238 static const char *const names[OFPUTIL_N_ACTIONS] = {
690a61c5 4239 NULL,
3ddcaf2d
BP
4240#define OFPAT10_ACTION(ENUM, STRUCT, NAME) NAME,
4241#define OFPAT11_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) NAME,
4242#define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) NAME,
e23ae585
BP
4243#include "ofp-util.def"
4244 };
4245
a00d4bd0 4246 const char *const *p;
e23ae585
BP
4247
4248 for (p = names; p < &names[ARRAY_SIZE(names)]; p++) {
4249 if (*p && !strcasecmp(name, *p)) {
4250 return p - names;
4251 }
4252 }
4253 return -1;
4254}
4255
93996add
BP
4256/* Appends an action of the type specified by 'code' to 'buf' and returns the
4257 * action. Initializes the parts of 'action' that identify it as having type
4258 * <ENUM> and length 'sizeof *action' and zeros the rest. For actions that
4259 * have variable length, the length used and cleared is that of struct
4260 * <STRUCT>. */
4261void *
4262ofputil_put_action(enum ofputil_action_code code, struct ofpbuf *buf)
4263{
4264 switch (code) {
690a61c5
BP
4265 case OFPUTIL_ACTION_INVALID:
4266 NOT_REACHED();
4267
3ddcaf2d
BP
4268#define OFPAT10_ACTION(ENUM, STRUCT, NAME) \
4269 case OFPUTIL_##ENUM: return ofputil_put_##ENUM(buf);
4270#define OFPAT11_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) \
93996add
BP
4271 case OFPUTIL_##ENUM: return ofputil_put_##ENUM(buf);
4272#define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) \
4273 case OFPUTIL_##ENUM: return ofputil_put_##ENUM(buf);
4274#include "ofp-util.def"
4275 }
4276 NOT_REACHED();
4277}
4278
08f94c0e 4279#define OFPAT10_ACTION(ENUM, STRUCT, NAME) \
93996add
BP
4280 void \
4281 ofputil_init_##ENUM(struct STRUCT *s) \
4282 { \
4283 memset(s, 0, sizeof *s); \
4284 s->type = htons(ENUM); \
4285 s->len = htons(sizeof *s); \
4286 } \
4287 \
4288 struct STRUCT * \
4289 ofputil_put_##ENUM(struct ofpbuf *buf) \
4290 { \
4291 struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s); \
4292 ofputil_init_##ENUM(s); \
4293 return s; \
4294 }
3ddcaf2d
BP
4295#define OFPAT11_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) \
4296 OFPAT10_ACTION(ENUM, STRUCT, NAME)
93996add
BP
4297#define NXAST_ACTION(ENUM, STRUCT, EXTENSIBLE, NAME) \
4298 void \
4299 ofputil_init_##ENUM(struct STRUCT *s) \
4300 { \
4301 memset(s, 0, sizeof *s); \
08f94c0e 4302 s->type = htons(OFPAT10_VENDOR); \
93996add
BP
4303 s->len = htons(sizeof *s); \
4304 s->vendor = htonl(NX_VENDOR_ID); \
4305 s->subtype = htons(ENUM); \
4306 } \
4307 \
4308 struct STRUCT * \
4309 ofputil_put_##ENUM(struct ofpbuf *buf) \
4310 { \
4311 struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s); \
4312 ofputil_init_##ENUM(s); \
4313 return s; \
4314 }
4315#include "ofp-util.def"
4316
3cbd9931 4317static void
81a76618 4318ofputil_normalize_match__(struct match *match, bool may_log)
b459a924
BP
4319{
4320 enum {
4321 MAY_NW_ADDR = 1 << 0, /* nw_src, nw_dst */
4322 MAY_TP_ADDR = 1 << 1, /* tp_src, tp_dst */
4323 MAY_NW_PROTO = 1 << 2, /* nw_proto */
a61680c6 4324 MAY_IPVx = 1 << 3, /* tos, frag, ttl */
b459a924
BP
4325 MAY_ARP_SHA = 1 << 4, /* arp_sha */
4326 MAY_ARP_THA = 1 << 5, /* arp_tha */
d78477ec 4327 MAY_IPV6 = 1 << 6, /* ipv6_src, ipv6_dst, ipv6_label */
b02475c5
SH
4328 MAY_ND_TARGET = 1 << 7, /* nd_target */
4329 MAY_MPLS = 1 << 8, /* mpls label and tc */
b459a924
BP
4330 } may_match;
4331
4332 struct flow_wildcards wc;
4333
4334 /* Figure out what fields may be matched. */
81a76618 4335 if (match->flow.dl_type == htons(ETH_TYPE_IP)) {
9e44d715 4336 may_match = MAY_NW_PROTO | MAY_IPVx | MAY_NW_ADDR;
81a76618
BP
4337 if (match->flow.nw_proto == IPPROTO_TCP ||
4338 match->flow.nw_proto == IPPROTO_UDP ||
4339 match->flow.nw_proto == IPPROTO_ICMP) {
b459a924
BP
4340 may_match |= MAY_TP_ADDR;
4341 }
81a76618 4342 } else if (match->flow.dl_type == htons(ETH_TYPE_IPV6)) {
d78477ec 4343 may_match = MAY_NW_PROTO | MAY_IPVx | MAY_IPV6;
81a76618
BP
4344 if (match->flow.nw_proto == IPPROTO_TCP ||
4345 match->flow.nw_proto == IPPROTO_UDP) {
b459a924 4346 may_match |= MAY_TP_ADDR;
81a76618 4347 } else if (match->flow.nw_proto == IPPROTO_ICMPV6) {
b459a924 4348 may_match |= MAY_TP_ADDR;
81a76618 4349 if (match->flow.tp_src == htons(ND_NEIGHBOR_SOLICIT)) {
b459a924 4350 may_match |= MAY_ND_TARGET | MAY_ARP_SHA;
81a76618 4351 } else if (match->flow.tp_src == htons(ND_NEIGHBOR_ADVERT)) {
b459a924
BP
4352 may_match |= MAY_ND_TARGET | MAY_ARP_THA;
4353 }
4354 }
8087f5ff
MM
4355 } else if (match->flow.dl_type == htons(ETH_TYPE_ARP) ||
4356 match->flow.dl_type == htons(ETH_TYPE_RARP)) {
27527aa0 4357 may_match = MAY_NW_PROTO | MAY_NW_ADDR | MAY_ARP_SHA | MAY_ARP_THA;
b02475c5
SH
4358 } else if (eth_type_mpls(match->flow.dl_type)) {
4359 may_match = MAY_MPLS;
1c0b7503 4360 } else {
b459a924
BP
4361 may_match = 0;
4362 }
4363
4364 /* Clear the fields that may not be matched. */
81a76618 4365 wc = match->wc;
b459a924 4366 if (!(may_match & MAY_NW_ADDR)) {
26720e24 4367 wc.masks.nw_src = wc.masks.nw_dst = htonl(0);
b459a924
BP
4368 }
4369 if (!(may_match & MAY_TP_ADDR)) {
26720e24 4370 wc.masks.tp_src = wc.masks.tp_dst = htons(0);
b459a924
BP
4371 }
4372 if (!(may_match & MAY_NW_PROTO)) {
26720e24 4373 wc.masks.nw_proto = 0;
b459a924 4374 }
9e44d715 4375 if (!(may_match & MAY_IPVx)) {
26720e24
BP
4376 wc.masks.nw_tos = 0;
4377 wc.masks.nw_ttl = 0;
b459a924
BP
4378 }
4379 if (!(may_match & MAY_ARP_SHA)) {
26720e24 4380 memset(wc.masks.arp_sha, 0, ETH_ADDR_LEN);
b459a924
BP
4381 }
4382 if (!(may_match & MAY_ARP_THA)) {
26720e24 4383 memset(wc.masks.arp_tha, 0, ETH_ADDR_LEN);
b459a924 4384 }
d78477ec 4385 if (!(may_match & MAY_IPV6)) {
26720e24
BP
4386 wc.masks.ipv6_src = wc.masks.ipv6_dst = in6addr_any;
4387 wc.masks.ipv6_label = htonl(0);
b459a924
BP
4388 }
4389 if (!(may_match & MAY_ND_TARGET)) {
26720e24 4390 wc.masks.nd_target = in6addr_any;
b459a924 4391 }
b02475c5
SH
4392 if (!(may_match & MAY_MPLS)) {
4393 wc.masks.mpls_lse = htonl(0);
4394 wc.masks.mpls_depth = 0;
4395 }
b459a924
BP
4396
4397 /* Log any changes. */
81a76618 4398 if (!flow_wildcards_equal(&wc, &match->wc)) {
3cbd9931 4399 bool log = may_log && !VLOG_DROP_INFO(&bad_ofmsg_rl);
81a76618 4400 char *pre = log ? match_to_string(match, OFP_DEFAULT_PRIORITY) : NULL;
b459a924 4401
81a76618
BP
4402 match->wc = wc;
4403 match_zero_wildcarded_fields(match);
b459a924
BP
4404
4405 if (log) {
81a76618 4406 char *post = match_to_string(match, OFP_DEFAULT_PRIORITY);
b459a924
BP
4407 VLOG_INFO("normalization changed ofp_match, details:");
4408 VLOG_INFO(" pre: %s", pre);
4409 VLOG_INFO("post: %s", post);
4410 free(pre);
4411 free(post);
4412 }
fa37b408 4413 }
3f09c339 4414}
26c112c2 4415
81a76618 4416/* "Normalizes" the wildcards in 'match'. That means:
3cbd9931
BP
4417 *
4418 * 1. If the type of level N is known, then only the valid fields for that
4419 * level may be specified. For example, ARP does not have a TOS field,
81a76618 4420 * so nw_tos must be wildcarded if 'match' specifies an ARP flow.
3cbd9931 4421 * Similarly, IPv4 does not have any IPv6 addresses, so ipv6_src and
81a76618 4422 * ipv6_dst (and other fields) must be wildcarded if 'match' specifies an
3cbd9931
BP
4423 * IPv4 flow.
4424 *
4425 * 2. If the type of level N is not known (or not understood by Open
4426 * vSwitch), then no fields at all for that level may be specified. For
4427 * example, Open vSwitch does not understand SCTP, an L4 protocol, so the
81a76618 4428 * L4 fields tp_src and tp_dst must be wildcarded if 'match' specifies an
3cbd9931
BP
4429 * SCTP flow.
4430 *
81a76618 4431 * If this function changes 'match', it logs a rate-limited informational
3cbd9931
BP
4432 * message. */
4433void
81a76618 4434ofputil_normalize_match(struct match *match)
3cbd9931 4435{
81a76618 4436 ofputil_normalize_match__(match, true);
3cbd9931
BP
4437}
4438
81a76618
BP
4439/* Same as ofputil_normalize_match() without the logging. Thus, this function
4440 * is suitable for a program's internal use, whereas ofputil_normalize_match()
3cbd9931
BP
4441 * sense for use on flows received from elsewhere (so that a bug in the program
4442 * that sent them can be reported and corrected). */
4443void
81a76618 4444ofputil_normalize_match_quiet(struct match *match)
3cbd9931 4445{
81a76618 4446 ofputil_normalize_match__(match, false);
3cbd9931
BP
4447}
4448
0ff22822
BP
4449/* Parses a key or a key-value pair from '*stringp'.
4450 *
4451 * On success: Stores the key into '*keyp'. Stores the value, if present, into
4452 * '*valuep', otherwise an empty string. Advances '*stringp' past the end of
4453 * the key-value pair, preparing it for another call. '*keyp' and '*valuep'
4454 * are substrings of '*stringp' created by replacing some of its bytes by null
4455 * terminators. Returns true.
4456 *
4457 * If '*stringp' is just white space or commas, sets '*keyp' and '*valuep' to
4458 * NULL and returns false. */
4459bool
4460ofputil_parse_key_value(char **stringp, char **keyp, char **valuep)
4461{
4462 char *pos, *key, *value;
4463 size_t key_len;
4464
4465 pos = *stringp;
4466 pos += strspn(pos, ", \t\r\n");
4467 if (*pos == '\0') {
4468 *keyp = *valuep = NULL;
4469 return false;
4470 }
4471
4472 key = pos;
4473 key_len = strcspn(pos, ":=(, \t\r\n");
4474 if (key[key_len] == ':' || key[key_len] == '=') {
4475 /* The value can be separated by a colon. */
4476 size_t value_len;
4477
4478 value = key + key_len + 1;
4479 value_len = strcspn(value, ", \t\r\n");
4480 pos = value + value_len + (value[value_len] != '\0');
4481 value[value_len] = '\0';
4482 } else if (key[key_len] == '(') {
4483 /* The value can be surrounded by balanced parentheses. The outermost
4484 * set of parentheses is removed. */
4485 int level = 1;
4486 size_t value_len;
4487
4488 value = key + key_len + 1;
4489 for (value_len = 0; level > 0; value_len++) {
4490 switch (value[value_len]) {
4491 case '\0':
33cadc50
BP
4492 level = 0;
4493 break;
0ff22822
BP
4494
4495 case '(':
4496 level++;
4497 break;
4498
4499 case ')':
4500 level--;
4501 break;
4502 }
4503 }
4504 value[value_len - 1] = '\0';
4505 pos = value + value_len;
4506 } else {
4507 /* There might be no value at all. */
4508 value = key + key_len; /* Will become the empty string below. */
4509 pos = key + key_len + (key[key_len] != '\0');
4510 }
4511 key[key_len] = '\0';
4512
4513 *stringp = pos;
4514 *keyp = key;
4515 *valuep = value;
4516 return true;
4517}
f8e4867e
SH
4518
4519/* Encode a dump ports request for 'port', the encoded message
2e1ae200 4520 * will be for Open Flow version 'ofp_version'. Returns message
f8e4867e
SH
4521 * as a struct ofpbuf. Returns encoded message on success, NULL on error */
4522struct ofpbuf *
e94f17a7 4523ofputil_encode_dump_ports_request(enum ofp_version ofp_version, uint16_t port)
f8e4867e
SH
4524{
4525 struct ofpbuf *request;
4526
4527 switch (ofp_version) {
4528 case OFP10_VERSION: {
4529 struct ofp10_port_stats_request *req;
4530 request = ofpraw_alloc(OFPRAW_OFPST10_PORT_REQUEST, ofp_version, 0);
4531 req = ofpbuf_put_zeros(request, sizeof *req);
4532 req->port_no = htons(port);
4533 break;
4534 }
4535 case OFP11_VERSION:
2e1ae200
JR
4536 case OFP12_VERSION:
4537 case OFP13_VERSION: {
f8e4867e
SH
4538 struct ofp11_port_stats_request *req;
4539 request = ofpraw_alloc(OFPRAW_OFPST11_PORT_REQUEST, ofp_version, 0);
4540 req = ofpbuf_put_zeros(request, sizeof *req);
4541 req->port_no = ofputil_port_to_ofp11(port);
4542 break;
4543 }
4544 default:
4545 NOT_REACHED();
4546 }
4547
4548 return request;
4549}
4550
4551static void
4552ofputil_port_stats_to_ofp10(const struct ofputil_port_stats *ops,
4553 struct ofp10_port_stats *ps10)
4554{
4555 ps10->port_no = htons(ops->port_no);
4556 memset(ps10->pad, 0, sizeof ps10->pad);
4557 put_32aligned_be64(&ps10->rx_packets, htonll(ops->stats.rx_packets));
4558 put_32aligned_be64(&ps10->tx_packets, htonll(ops->stats.tx_packets));
4559 put_32aligned_be64(&ps10->rx_bytes, htonll(ops->stats.rx_bytes));
4560 put_32aligned_be64(&ps10->tx_bytes, htonll(ops->stats.tx_bytes));
4561 put_32aligned_be64(&ps10->rx_dropped, htonll(ops->stats.rx_dropped));
4562 put_32aligned_be64(&ps10->tx_dropped, htonll(ops->stats.tx_dropped));
4563 put_32aligned_be64(&ps10->rx_errors, htonll(ops->stats.rx_errors));
4564 put_32aligned_be64(&ps10->tx_errors, htonll(ops->stats.tx_errors));
4565 put_32aligned_be64(&ps10->rx_frame_err, htonll(ops->stats.rx_frame_errors));
4566 put_32aligned_be64(&ps10->rx_over_err, htonll(ops->stats.rx_over_errors));
4567 put_32aligned_be64(&ps10->rx_crc_err, htonll(ops->stats.rx_crc_errors));
4568 put_32aligned_be64(&ps10->collisions, htonll(ops->stats.collisions));
4569}
4570
4571static void
4572ofputil_port_stats_to_ofp11(const struct ofputil_port_stats *ops,
4573 struct ofp11_port_stats *ps11)
4574{
4575 ps11->port_no = ofputil_port_to_ofp11(ops->port_no);
4576 memset(ps11->pad, 0, sizeof ps11->pad);
4577 ps11->rx_packets = htonll(ops->stats.rx_packets);
4578 ps11->tx_packets = htonll(ops->stats.tx_packets);
4579 ps11->rx_bytes = htonll(ops->stats.rx_bytes);
4580 ps11->tx_bytes = htonll(ops->stats.tx_bytes);
4581 ps11->rx_dropped = htonll(ops->stats.rx_dropped);
4582 ps11->tx_dropped = htonll(ops->stats.tx_dropped);
4583 ps11->rx_errors = htonll(ops->stats.rx_errors);
4584 ps11->tx_errors = htonll(ops->stats.tx_errors);
4585 ps11->rx_frame_err = htonll(ops->stats.rx_frame_errors);
4586 ps11->rx_over_err = htonll(ops->stats.rx_over_errors);
4587 ps11->rx_crc_err = htonll(ops->stats.rx_crc_errors);
4588 ps11->collisions = htonll(ops->stats.collisions);
4589}
4590
2e1ae200
JR
4591static void
4592ofputil_port_stats_to_ofp13(const struct ofputil_port_stats *ops,
4593 struct ofp13_port_stats *ps13)
4594{
4595 ofputil_port_stats_to_ofp11(ops, &ps13->ps);
4596
4597 /* OF 1.3 adds duration fields */
4598 /* FIXME: Need to implement port alive duration (sec + nsec) */
4599 ps13->duration_sec = htonl(~0);
4600 ps13->duration_nsec = htonl(~0);
4601}
4602
4603
ad4c35fe 4604/* Encode a ports stat for 'ops' and append it to 'replies'. */
f8e4867e
SH
4605void
4606ofputil_append_port_stat(struct list *replies,
4607 const struct ofputil_port_stats *ops)
4608{
4609 struct ofpbuf *msg = ofpbuf_from_list(list_back(replies));
4610 struct ofp_header *oh = msg->data;
4611
4612 switch ((enum ofp_version)oh->version) {
2e1ae200
JR
4613 case OFP13_VERSION: {
4614 struct ofp13_port_stats *reply = ofpmp_append(replies, sizeof *reply);
4615 ofputil_port_stats_to_ofp13(ops, reply);
4616 break;
4617 }
f8e4867e
SH
4618 case OFP12_VERSION:
4619 case OFP11_VERSION: {
4620 struct ofp11_port_stats *reply = ofpmp_append(replies, sizeof *reply);
4621 ofputil_port_stats_to_ofp11(ops, reply);
4622 break;
4623 }
4624
4625 case OFP10_VERSION: {
4626 struct ofp10_port_stats *reply = ofpmp_append(replies, sizeof *reply);
4627 ofputil_port_stats_to_ofp10(ops, reply);
4628 break;
4629 }
4630
4631 default:
4632 NOT_REACHED();
4633 }
4634}
4635
4636static enum ofperr
4637ofputil_port_stats_from_ofp10(struct ofputil_port_stats *ops,
4638 const struct ofp10_port_stats *ps10)
4639{
4640 memset(ops, 0, sizeof *ops);
4641
4642 ops->port_no = ntohs(ps10->port_no);
4643 ops->stats.rx_packets = ntohll(get_32aligned_be64(&ps10->rx_packets));
4644 ops->stats.tx_packets = ntohll(get_32aligned_be64(&ps10->tx_packets));
4645 ops->stats.rx_bytes = ntohll(get_32aligned_be64(&ps10->rx_bytes));
4646 ops->stats.tx_bytes = ntohll(get_32aligned_be64(&ps10->tx_bytes));
4647 ops->stats.rx_dropped = ntohll(get_32aligned_be64(&ps10->rx_dropped));
4648 ops->stats.tx_dropped = ntohll(get_32aligned_be64(&ps10->tx_dropped));
4649 ops->stats.rx_errors = ntohll(get_32aligned_be64(&ps10->rx_errors));
4650 ops->stats.tx_errors = ntohll(get_32aligned_be64(&ps10->tx_errors));
4651 ops->stats.rx_frame_errors =
4652 ntohll(get_32aligned_be64(&ps10->rx_frame_err));
4653 ops->stats.rx_over_errors = ntohll(get_32aligned_be64(&ps10->rx_over_err));
4654 ops->stats.rx_crc_errors = ntohll(get_32aligned_be64(&ps10->rx_crc_err));
4655 ops->stats.collisions = ntohll(get_32aligned_be64(&ps10->collisions));
4656
4657 return 0;
4658}
4659
4660static enum ofperr
4661ofputil_port_stats_from_ofp11(struct ofputil_port_stats *ops,
4662 const struct ofp11_port_stats *ps11)
4663{
4664 enum ofperr error;
4665
4666 memset(ops, 0, sizeof *ops);
4667 error = ofputil_port_from_ofp11(ps11->port_no, &ops->port_no);
4668 if (error) {
4669 return error;
4670 }
4671
4672 ops->stats.rx_packets = ntohll(ps11->rx_packets);
4673 ops->stats.tx_packets = ntohll(ps11->tx_packets);
4674 ops->stats.rx_bytes = ntohll(ps11->rx_bytes);
4675 ops->stats.tx_bytes = ntohll(ps11->tx_bytes);
4676 ops->stats.rx_dropped = ntohll(ps11->rx_dropped);
4677 ops->stats.tx_dropped = ntohll(ps11->tx_dropped);
4678 ops->stats.rx_errors = ntohll(ps11->rx_errors);
4679 ops->stats.tx_errors = ntohll(ps11->tx_errors);
4680 ops->stats.rx_frame_errors = ntohll(ps11->rx_frame_err);
4681 ops->stats.rx_over_errors = ntohll(ps11->rx_over_err);
4682 ops->stats.rx_crc_errors = ntohll(ps11->rx_crc_err);
4683 ops->stats.collisions = ntohll(ps11->collisions);
4684
4685 return 0;
4686}
4687
2e1ae200
JR
4688static enum ofperr
4689ofputil_port_stats_from_ofp13(struct ofputil_port_stats *ops,
4690 const struct ofp13_port_stats *ps13)
4691{
4692 enum ofperr error =
4693 ofputil_port_stats_from_ofp11(ops, &ps13->ps);
4694 if (!error) {
4695 /* FIXME: Get ps13->duration_sec and ps13->duration_nsec,
4696 * Add to netdev_stats? */
4697 }
4698
4699 return error;
4700}
4701
4702
f8e4867e
SH
4703/* Returns the number of port stats elements in OFPTYPE_PORT_STATS_REPLY
4704 * message 'oh'. */
4705size_t
4706ofputil_count_port_stats(const struct ofp_header *oh)
4707{
4708 struct ofpbuf b;
4709
4710 ofpbuf_use_const(&b, oh, ntohs(oh->length));
4711 ofpraw_pull_assert(&b);
4712
4713 BUILD_ASSERT(sizeof(struct ofp10_port_stats) ==
4714 sizeof(struct ofp11_port_stats));
4715 return b.size / sizeof(struct ofp10_port_stats);
4716}
4717
4718/* Converts an OFPST_PORT_STATS reply in 'msg' into an abstract
4719 * ofputil_port_stats in 'ps'.
4720 *
4721 * Multiple OFPST_PORT_STATS replies can be packed into a single OpenFlow
4722 * message. Calling this function multiple times for a single 'msg' iterates
4723 * through the replies. The caller must initially leave 'msg''s layer pointers
4724 * null and not modify them between calls.
4725 *
4726 * Returns 0 if successful, EOF if no replies were left in this 'msg',
4727 * otherwise a positive errno value. */
4728int
4729ofputil_decode_port_stats(struct ofputil_port_stats *ps, struct ofpbuf *msg)
4730{
4731 enum ofperr error;
4732 enum ofpraw raw;
4733
4734 error = (msg->l2
4735 ? ofpraw_decode(&raw, msg->l2)
4736 : ofpraw_pull(&raw, msg));
4737 if (error) {
4738 return error;
4739 }
4740
4741 if (!msg->size) {
4742 return EOF;
2e1ae200
JR
4743 } else if (raw == OFPRAW_OFPST13_PORT_REPLY) {
4744 const struct ofp13_port_stats *ps13;
4745
4746 ps13 = ofpbuf_try_pull(msg, sizeof *ps13);
4747 if (!ps13) {
4748 goto bad_len;
4749 }
4750 return ofputil_port_stats_from_ofp13(ps, ps13);
f8e4867e
SH
4751 } else if (raw == OFPRAW_OFPST11_PORT_REPLY) {
4752 const struct ofp11_port_stats *ps11;
4753
4754 ps11 = ofpbuf_try_pull(msg, sizeof *ps11);
4755 if (!ps11) {
2e1ae200 4756 goto bad_len;
f8e4867e
SH
4757 }
4758 return ofputil_port_stats_from_ofp11(ps, ps11);
4759 } else if (raw == OFPRAW_OFPST10_PORT_REPLY) {
4760 const struct ofp10_port_stats *ps10;
4761
4762 ps10 = ofpbuf_try_pull(msg, sizeof *ps10);
4763 if (!ps10) {
2e1ae200 4764 goto bad_len;
f8e4867e
SH
4765 }
4766 return ofputil_port_stats_from_ofp10(ps, ps10);
4767 } else {
4768 NOT_REACHED();
4769 }
4770
2e1ae200
JR
4771 bad_len:
4772 VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_PORT reply has %zu leftover "
4773 "bytes at end", msg->size);
4774 return OFPERR_OFPBRC_BAD_LEN;
f8e4867e
SH
4775}
4776
4777/* Parse a port status request message into a 16 bit OpenFlow 1.0
4778 * port number and stores the latter in '*ofp10_port'.
4779 * Returns 0 if successful, otherwise an OFPERR_* number. */
4780enum ofperr
4781ofputil_decode_port_stats_request(const struct ofp_header *request,
4782 uint16_t *ofp10_port)
4783{
4784 switch ((enum ofp_version)request->version) {
2e1ae200 4785 case OFP13_VERSION:
f8e4867e
SH
4786 case OFP12_VERSION:
4787 case OFP11_VERSION: {
4788 const struct ofp11_port_stats_request *psr11 = ofpmsg_body(request);
4789 return ofputil_port_from_ofp11(psr11->port_no, ofp10_port);
4790 }
4791
4792 case OFP10_VERSION: {
4793 const struct ofp10_port_stats_request *psr10 = ofpmsg_body(request);
4794 *ofp10_port = ntohs(psr10->port_no);
4795 return 0;
4796 }
4797
4798 default:
4799 NOT_REACHED();
4800 }
4801}
64626975
SH
4802
4803/* Parse a queue status request message into 'oqsr'.
4804 * Returns 0 if successful, otherwise an OFPERR_* number. */
4805enum ofperr
4806ofputil_decode_queue_stats_request(const struct ofp_header *request,
4807 struct ofputil_queue_stats_request *oqsr)
4808{
4809 switch ((enum ofp_version)request->version) {
2e1ae200 4810 case OFP13_VERSION:
64626975
SH
4811 case OFP12_VERSION:
4812 case OFP11_VERSION: {
4813 const struct ofp11_queue_stats_request *qsr11 = ofpmsg_body(request);
4814 oqsr->queue_id = ntohl(qsr11->queue_id);
4815 return ofputil_port_from_ofp11(qsr11->port_no, &oqsr->port_no);
4816 }
4817
4818 case OFP10_VERSION: {
7f05e7ab
JR
4819 const struct ofp10_queue_stats_request *qsr10 = ofpmsg_body(request);
4820 oqsr->queue_id = ntohl(qsr10->queue_id);
4821 oqsr->port_no = ntohs(qsr10->port_no);
4822 /* OF 1.0 uses OFPP_ALL for OFPP_ANY */
4823 if (oqsr->port_no == OFPP_ALL) {
4824 oqsr->port_no = OFPP_ANY;
4825 }
64626975
SH
4826 return 0;
4827 }
4828
4829 default:
4830 NOT_REACHED();
4831 }
4832}
4833
4834/* Encode a queue statsrequest for 'oqsr', the encoded message
4835 * will be fore Open Flow version 'ofp_version'. Returns message
4836 * as a struct ofpbuf. Returns encoded message on success, NULL on error */
4837struct ofpbuf *
4838ofputil_encode_queue_stats_request(enum ofp_version ofp_version,
4839 const struct ofputil_queue_stats_request *oqsr)
4840{
4841 struct ofpbuf *request;
4842
4843 switch (ofp_version) {
4844 case OFP11_VERSION:
2e1ae200
JR
4845 case OFP12_VERSION:
4846 case OFP13_VERSION: {
64626975
SH
4847 struct ofp11_queue_stats_request *req;
4848 request = ofpraw_alloc(OFPRAW_OFPST11_QUEUE_REQUEST, ofp_version, 0);
4849 req = ofpbuf_put_zeros(request, sizeof *req);
4850 req->port_no = ofputil_port_to_ofp11(oqsr->port_no);
4851 req->queue_id = htonl(oqsr->queue_id);
4852 break;
4853 }
4854 case OFP10_VERSION: {
4855 struct ofp10_queue_stats_request *req;
4856 request = ofpraw_alloc(OFPRAW_OFPST10_QUEUE_REQUEST, ofp_version, 0);
4857 req = ofpbuf_put_zeros(request, sizeof *req);
7f05e7ab
JR
4858 /* OpenFlow 1.0 needs OFPP_ALL instead of OFPP_ANY */
4859 req->port_no = htons(oqsr->port_no == OFPP_ANY
4860 ? OFPP_ALL : oqsr->port_no);
64626975
SH
4861 req->queue_id = htonl(oqsr->queue_id);
4862 break;
4863 }
4864 default:
4865 NOT_REACHED();
4866 }
4867
4868 return request;
4869}
4870
4871/* Returns the number of queue stats elements in OFPTYPE_QUEUE_STATS_REPLY
4872 * message 'oh'. */
4873size_t
4874ofputil_count_queue_stats(const struct ofp_header *oh)
4875{
4876 struct ofpbuf b;
4877
4878 ofpbuf_use_const(&b, oh, ntohs(oh->length));
4879 ofpraw_pull_assert(&b);
4880
4881 BUILD_ASSERT(sizeof(struct ofp10_queue_stats) ==
4882 sizeof(struct ofp11_queue_stats));
4883 return b.size / sizeof(struct ofp10_queue_stats);
4884}
4885
4886static enum ofperr
4887ofputil_queue_stats_from_ofp10(struct ofputil_queue_stats *oqs,
4888 const struct ofp10_queue_stats *qs10)
4889{
4890 oqs->port_no = ntohs(qs10->port_no);
4891 oqs->queue_id = ntohl(qs10->queue_id);
4892 oqs->stats.tx_bytes = ntohll(get_32aligned_be64(&qs10->tx_bytes));
4893 oqs->stats.tx_packets = ntohll(get_32aligned_be64(&qs10->tx_packets));
4894 oqs->stats.tx_errors = ntohll(get_32aligned_be64(&qs10->tx_errors));
4895
4896 return 0;
4897}
4898
4899static enum ofperr
4900ofputil_queue_stats_from_ofp11(struct ofputil_queue_stats *oqs,
4901 const struct ofp11_queue_stats *qs11)
4902{
4903 enum ofperr error;
4904
4905 error = ofputil_port_from_ofp11(qs11->port_no, &oqs->port_no);
4906 if (error) {
4907 return error;
4908 }
4909
4910 oqs->queue_id = ntohl(qs11->queue_id);
4911 oqs->stats.tx_bytes = ntohll(qs11->tx_bytes);
4912 oqs->stats.tx_packets = ntohll(qs11->tx_packets);
4913 oqs->stats.tx_errors = ntohll(qs11->tx_errors);
4914
4915 return 0;
4916}
4917
2e1ae200
JR
4918static enum ofperr
4919ofputil_queue_stats_from_ofp13(struct ofputil_queue_stats *oqs,
4920 const struct ofp13_queue_stats *qs13)
4921{
4922 enum ofperr error
4923 = ofputil_queue_stats_from_ofp11(oqs, &qs13->qs);
4924 if (!error) {
4925 /* FIXME: Get qs13->duration_sec and qs13->duration_nsec,
4926 * Add to netdev_queue_stats? */
4927 }
4928
4929 return error;
4930}
4931
64626975
SH
4932/* Converts an OFPST_QUEUE_STATS reply in 'msg' into an abstract
4933 * ofputil_queue_stats in 'qs'.
4934 *
4935 * Multiple OFPST_QUEUE_STATS replies can be packed into a single OpenFlow
4936 * message. Calling this function multiple times for a single 'msg' iterates
4937 * through the replies. The caller must initially leave 'msg''s layer pointers
4938 * null and not modify them between calls.
4939 *
4940 * Returns 0 if successful, EOF if no replies were left in this 'msg',
4941 * otherwise a positive errno value. */
4942int
4943ofputil_decode_queue_stats(struct ofputil_queue_stats *qs, struct ofpbuf *msg)
4944{
4945 enum ofperr error;
4946 enum ofpraw raw;
4947
4948 error = (msg->l2
4949 ? ofpraw_decode(&raw, msg->l2)
4950 : ofpraw_pull(&raw, msg));
4951 if (error) {
4952 return error;
4953 }
4954
4955 if (!msg->size) {
4956 return EOF;
2e1ae200
JR
4957 } else if (raw == OFPRAW_OFPST13_QUEUE_REPLY) {
4958 const struct ofp13_queue_stats *qs13;
4959
4960 qs13 = ofpbuf_try_pull(msg, sizeof *qs13);
4961 if (!qs13) {
4962 goto bad_len;
4963 }
4964 return ofputil_queue_stats_from_ofp13(qs, qs13);
64626975
SH
4965 } else if (raw == OFPRAW_OFPST11_QUEUE_REPLY) {
4966 const struct ofp11_queue_stats *qs11;
4967
4968 qs11 = ofpbuf_try_pull(msg, sizeof *qs11);
4969 if (!qs11) {
2e1ae200 4970 goto bad_len;
64626975
SH
4971 }
4972 return ofputil_queue_stats_from_ofp11(qs, qs11);
4973 } else if (raw == OFPRAW_OFPST10_QUEUE_REPLY) {
4974 const struct ofp10_queue_stats *qs10;
4975
4976 qs10 = ofpbuf_try_pull(msg, sizeof *qs10);
4977 if (!qs10) {
2e1ae200 4978 goto bad_len;
64626975
SH
4979 }
4980 return ofputil_queue_stats_from_ofp10(qs, qs10);
4981 } else {
4982 NOT_REACHED();
4983 }
2e1ae200
JR
4984
4985 bad_len:
4986 VLOG_WARN_RL(&bad_ofmsg_rl, "OFPST_QUEUE reply has %zu leftover "
4987 "bytes at end", msg->size);
4988 return OFPERR_OFPBRC_BAD_LEN;
64626975
SH
4989}
4990
4991static void
4992ofputil_queue_stats_to_ofp10(const struct ofputil_queue_stats *oqs,
4993 struct ofp10_queue_stats *qs10)
4994{
4995 qs10->port_no = htons(oqs->port_no);
4996 memset(qs10->pad, 0, sizeof qs10->pad);
4997 qs10->queue_id = htonl(oqs->queue_id);
4998 put_32aligned_be64(&qs10->tx_bytes, htonll(oqs->stats.tx_bytes));
4999 put_32aligned_be64(&qs10->tx_packets, htonll(oqs->stats.tx_packets));
5000 put_32aligned_be64(&qs10->tx_errors, htonll(oqs->stats.tx_errors));
5001}
5002
5003static void
5004ofputil_queue_stats_to_ofp11(const struct ofputil_queue_stats *oqs,
5005 struct ofp11_queue_stats *qs11)
5006{
5007 qs11->port_no = ofputil_port_to_ofp11(oqs->port_no);
5008 qs11->queue_id = htonl(oqs->queue_id);
5009 qs11->tx_bytes = htonll(oqs->stats.tx_bytes);
5010 qs11->tx_packets = htonll(oqs->stats.tx_packets);
5011 qs11->tx_errors = htonll(oqs->stats.tx_errors);
5012}
5013
2e1ae200
JR
5014static void
5015ofputil_queue_stats_to_ofp13(const struct ofputil_queue_stats *oqs,
5016 struct ofp13_queue_stats *qs13)
5017{
5018 ofputil_queue_stats_to_ofp11(oqs, &qs13->qs);
5019 /* OF 1.3 adds duration fields */
5020 /* FIXME: Need to implement queue alive duration (sec + nsec) */
5021 qs13->duration_sec = htonl(~0);
5022 qs13->duration_nsec = htonl(~0);
5023}
5024
64626975
SH
5025/* Encode a queue stat for 'oqs' and append it to 'replies'. */
5026void
5027ofputil_append_queue_stat(struct list *replies,
5028 const struct ofputil_queue_stats *oqs)
5029{
5030 struct ofpbuf *msg = ofpbuf_from_list(list_back(replies));
5031 struct ofp_header *oh = msg->data;
5032
5033 switch ((enum ofp_version)oh->version) {
2e1ae200
JR
5034 case OFP13_VERSION: {
5035 struct ofp13_queue_stats *reply = ofpmp_append(replies, sizeof *reply);
5036 ofputil_queue_stats_to_ofp13(oqs, reply);
5037 break;
5038 }
5039
64626975
SH
5040 case OFP12_VERSION:
5041 case OFP11_VERSION: {
2e1ae200 5042 struct ofp11_queue_stats *reply = ofpmp_append(replies, sizeof *reply);
64626975
SH
5043 ofputil_queue_stats_to_ofp11(oqs, reply);
5044 break;
5045 }
5046
5047 case OFP10_VERSION: {
2e1ae200 5048 struct ofp10_queue_stats *reply = ofpmp_append(replies, sizeof *reply);
64626975
SH
5049 ofputil_queue_stats_to_ofp10(oqs, reply);
5050 break;
5051 }
5052
5053 default:
5054 NOT_REACHED();
5055 }
5056}